From 35b95891613238426baa50c71e4014b2952b6057 Mon Sep 17 00:00:00 2001 From: BenjaSanchez Date: Tue, 18 Sep 2018 14:08:56 +0100 Subject: [PATCH 01/56] feat: memote config --- .travis.yml | 17 ++++++++++++ ComplementaryScripts/travis_deploy.sh | 39 +++++++++++++++++++++++++++ memote.ini | 6 +++++ 3 files changed, 62 insertions(+) create mode 100644 .travis.yml create mode 100644 ComplementaryScripts/travis_deploy.sh create mode 100644 memote.ini diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..876bf352 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: python +sudo: false +python: 3.5 +cache: + pip: true +git: + depth: false +branches: + except: + - gh-pages +before_install: +- pip install --upgrade pip setuptools wheel +install: +- pip install --upgrade memote +script: +- git checkout "${TRAVIS_BRANCH}" +- ./ComplementaryScripts/travis_deploy.sh diff --git a/ComplementaryScripts/travis_deploy.sh b/ComplementaryScripts/travis_deploy.sh new file mode 100644 index 00000000..7538c438 --- /dev/null +++ b/ComplementaryScripts/travis_deploy.sh @@ -0,0 +1,39 @@ +#!/usr/bin/env bash + +# Do NOT set -v or -x or your GitHub API token will be leaked! +set -ue # exit with nonzero exit code if anything fails + +echo "Parse memote.ini for values." +deployment=$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /deployment/) print $2}' memote.ini | tr -d ' ') +location=$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /location/) print $2}' memote.ini | tr -d ' ') + +echo "Configure Travis git user." +git config --global user.email "deploy@travis-ci.org" +git config --global user.name "Travis CI Deployment Bot" + +if [[ "${TRAVIS_PULL_REQUEST}" != "false" || "${TRAVIS_REPO_SLUG}" != "SysBioChalmers/yeast-GEM" ]]; then + echo "Untracked build." + memote run --ignore-git + echo "Skip deploy." + exit 0 +else + # Always need the deployment branch available locally for storing results. + git checkout "${deployment}" + git checkout "${TRAVIS_BRANCH}" + echo "Tracked build." + memote run + echo "Start deploy to ${deployment}..." +fi + +# Generate the history report on the deployment branch. +output="./results/history.html" +git checkout "${deployment}" +echo "Generating updated history report '${output}'." +memote report history --filename="${output}" + +# Add, commit and push the files. +git add "${output}" +git commit -m "Travis report #${TRAVIS_BUILD_NUMBER}" +git push --quiet "https://${GITHUB_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git" "${deployment}" > /dev/null + +echo "Your new report will be visible at http://sysbiochalmers.github.io/yeast-GEM/ in a moment." diff --git a/memote.ini b/memote.ini new file mode 100644 index 00000000..026d1377 --- /dev/null +++ b/memote.ini @@ -0,0 +1,6 @@ +[memote] +model = ModelFiles/xml/yeastGEM.xml +location = results +github_username = SysBioChalmers +github_repository = yeast-GEM +deployment = gh-pages From d2385fc93ccc7e524972fad273059c0524bc400e Mon Sep 17 00:00:00 2001 From: BenjaSanchez Date: Tue, 18 Sep 2018 14:13:07 +0100 Subject: [PATCH 02/56] fix: make travis_deploy.sh executable --- ComplementaryScripts/travis_deploy.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 ComplementaryScripts/travis_deploy.sh diff --git a/ComplementaryScripts/travis_deploy.sh b/ComplementaryScripts/travis_deploy.sh old mode 100644 new mode 100755 From 8578762db2c6caf4a1f54e307c7c517ac3eb6813 Mon Sep 17 00:00:00 2001 From: BenjaSanchez Date: Tue, 18 Sep 2018 14:40:10 +0100 Subject: [PATCH 03/56] fix: dos2unix travis_deploy.sh & memote.ini --- ComplementaryScripts/travis_deploy.sh | 78 +++++++++++++-------------- memote.ini | 12 ++--- 2 files changed, 45 insertions(+), 45 deletions(-) diff --git a/ComplementaryScripts/travis_deploy.sh b/ComplementaryScripts/travis_deploy.sh index 7538c438..013a85c4 100755 --- a/ComplementaryScripts/travis_deploy.sh +++ b/ComplementaryScripts/travis_deploy.sh @@ -1,39 +1,39 @@ -#!/usr/bin/env bash - -# Do NOT set -v or -x or your GitHub API token will be leaked! -set -ue # exit with nonzero exit code if anything fails - -echo "Parse memote.ini for values." -deployment=$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /deployment/) print $2}' memote.ini | tr -d ' ') -location=$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /location/) print $2}' memote.ini | tr -d ' ') - -echo "Configure Travis git user." -git config --global user.email "deploy@travis-ci.org" -git config --global user.name "Travis CI Deployment Bot" - -if [[ "${TRAVIS_PULL_REQUEST}" != "false" || "${TRAVIS_REPO_SLUG}" != "SysBioChalmers/yeast-GEM" ]]; then - echo "Untracked build." - memote run --ignore-git - echo "Skip deploy." - exit 0 -else - # Always need the deployment branch available locally for storing results. - git checkout "${deployment}" - git checkout "${TRAVIS_BRANCH}" - echo "Tracked build." - memote run - echo "Start deploy to ${deployment}..." -fi - -# Generate the history report on the deployment branch. -output="./results/history.html" -git checkout "${deployment}" -echo "Generating updated history report '${output}'." -memote report history --filename="${output}" - -# Add, commit and push the files. -git add "${output}" -git commit -m "Travis report #${TRAVIS_BUILD_NUMBER}" -git push --quiet "https://${GITHUB_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git" "${deployment}" > /dev/null - -echo "Your new report will be visible at http://sysbiochalmers.github.io/yeast-GEM/ in a moment." +#!/usr/bin/env bash + +# Do NOT set -v or -x or your GitHub API token will be leaked! +set -ue # exit with nonzero exit code if anything fails + +echo "Parse memote.ini for values." +deployment=$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /deployment/) print $2}' memote.ini | tr -d ' ') +location=$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /location/) print $2}' memote.ini | tr -d ' ') + +echo "Configure Travis git user." +git config --global user.email "deploy@travis-ci.org" +git config --global user.name "Travis CI Deployment Bot" + +if [[ "${TRAVIS_PULL_REQUEST}" != "false" || "${TRAVIS_REPO_SLUG}" != "SysBioChalmers/yeast-GEM" ]]; then + echo "Untracked build." + memote run --ignore-git + echo "Skip deploy." + exit 0 +else + # Always need the deployment branch available locally for storing results. + git checkout "${deployment}" + git checkout "${TRAVIS_BRANCH}" + echo "Tracked build." + memote run + echo "Start deploy to ${deployment}..." +fi + +# Generate the history report on the deployment branch. +output="./results/history.html" +git checkout "${deployment}" +echo "Generating updated history report '${output}'." +memote report history --filename="${output}" + +# Add, commit and push the files. +git add "${output}" +git commit -m "Travis report #${TRAVIS_BUILD_NUMBER}" +git push --quiet "https://${GITHUB_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git" "${deployment}" > /dev/null + +echo "Your new report will be visible at http://sysbiochalmers.github.io/yeast-GEM/ in a moment." diff --git a/memote.ini b/memote.ini index 026d1377..e3c8a9c9 100644 --- a/memote.ini +++ b/memote.ini @@ -1,6 +1,6 @@ -[memote] -model = ModelFiles/xml/yeastGEM.xml -location = results -github_username = SysBioChalmers -github_repository = yeast-GEM -deployment = gh-pages +[memote] +model = ModelFiles/xml/yeastGEM.xml +location = results +github_username = SysBioChalmers +github_repository = yeast-GEM +deployment = gh-pages From 16040022edffc99cdba5c8a5adb4f30733703f1e Mon Sep 17 00:00:00 2001 From: BenjaSanchez Date: Tue, 18 Sep 2018 15:06:24 +0100 Subject: [PATCH 04/56] feat: travis_wait for long builds --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 876bf352..6c59ce93 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,4 +14,4 @@ install: - pip install --upgrade memote script: - git checkout "${TRAVIS_BRANCH}" -- ./ComplementaryScripts/travis_deploy.sh +- travis_wait ./ComplementaryScripts/travis_deploy.sh From 7a15ca417172a18372d06771860d2d6656f78ff1 Mon Sep 17 00:00:00 2001 From: BenjaSanchez Date: Tue, 18 Sep 2018 15:33:19 +0100 Subject: [PATCH 05/56] fix: skip slow test --- .travis.yml | 2 +- memote.ini | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6c59ce93..876bf352 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,4 +14,4 @@ install: - pip install --upgrade memote script: - git checkout "${TRAVIS_BRANCH}" -- travis_wait ./ComplementaryScripts/travis_deploy.sh +- ./ComplementaryScripts/travis_deploy.sh diff --git a/memote.ini b/memote.ini index e3c8a9c9..235c3e25 100644 --- a/memote.ini +++ b/memote.ini @@ -4,3 +4,4 @@ location = results github_username = SysBioChalmers github_repository = yeast-GEM deployment = gh-pages +skip = test_find_metabolites_produced_with_closed_bounds From 0544cd8a20ad8342ec237970b2222f1b6d00bc96 Mon Sep 17 00:00:00 2001 From: BenjaSanchez Date: Tue, 18 Sep 2018 15:54:18 +0100 Subject: [PATCH 06/56] fix: skip 2nd slow test --- memote.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/memote.ini b/memote.ini index 235c3e25..e133f7d9 100644 --- a/memote.ini +++ b/memote.ini @@ -4,4 +4,6 @@ location = results github_username = SysBioChalmers github_repository = yeast-GEM deployment = gh-pages -skip = test_find_metabolites_produced_with_closed_bounds +skip = + test_find_metabolites_produced_with_closed_bounds + test_find_metabolites_consumed_with_closed_bounds From c48ef51d7e951062993e123ae167b642354176f6 Mon Sep 17 00:00:00 2001 From: BenjaSanchez Date: Wed, 19 Sep 2018 09:48:12 +0100 Subject: [PATCH 07/56] fix: skip 3rd slow test --- memote.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/memote.ini b/memote.ini index e133f7d9..0044ca90 100644 --- a/memote.ini +++ b/memote.ini @@ -7,3 +7,4 @@ deployment = gh-pages skip = test_find_metabolites_produced_with_closed_bounds test_find_metabolites_consumed_with_closed_bounds + test_find_metabolites_not_produced_with_open_bounds From 577e3d07815d36eb646781e1839d1f30f82f0d99 Mon Sep 17 00:00:00 2001 From: BenjaSanchez Date: Wed, 19 Sep 2018 10:02:26 +0100 Subject: [PATCH 08/56] fix: skip 4th slow test --- memote.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/memote.ini b/memote.ini index 0044ca90..32e8a715 100644 --- a/memote.ini +++ b/memote.ini @@ -8,3 +8,4 @@ skip = test_find_metabolites_produced_with_closed_bounds test_find_metabolites_consumed_with_closed_bounds test_find_metabolites_not_produced_with_open_bounds + test_find_metabolites_not_consumed_with_open_bounds From b65362a9aca1adb69cd53a377f6e67caa26268ba Mon Sep 17 00:00:00 2001 From: BenjaSanchez Date: Wed, 19 Sep 2018 12:34:20 +0100 Subject: [PATCH 09/56] fix: history report building --- ComplementaryScripts/travis_deploy.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ComplementaryScripts/travis_deploy.sh b/ComplementaryScripts/travis_deploy.sh index 013a85c4..bdfd2e23 100755 --- a/ComplementaryScripts/travis_deploy.sh +++ b/ComplementaryScripts/travis_deploy.sh @@ -27,9 +27,10 @@ fi # Generate the history report on the deployment branch. output="./results/history.html" -git checkout "${deployment}" echo "Generating updated history report '${output}'." -memote report history --filename="${output}" +memote report history --filename="/tmp/${output}" +git checkout "${deployment}" +mv "/tmp/${output}" ./ # Add, commit and push the files. git add "${output}" From 335366b8a45c2773e128293cc86429965d87b098 Mon Sep 17 00:00:00 2001 From: BenjaSanchez Date: Wed, 19 Sep 2018 14:22:04 +0100 Subject: [PATCH 10/56] fix: moving report file --- ComplementaryScripts/travis_deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ComplementaryScripts/travis_deploy.sh b/ComplementaryScripts/travis_deploy.sh index bdfd2e23..28dfce8a 100755 --- a/ComplementaryScripts/travis_deploy.sh +++ b/ComplementaryScripts/travis_deploy.sh @@ -30,7 +30,7 @@ output="./results/history.html" echo "Generating updated history report '${output}'." memote report history --filename="/tmp/${output}" git checkout "${deployment}" -mv "/tmp/${output}" ./ +mv "/tmp/${output}" "${output}" # Add, commit and push the files. git add "${output}" From 26294b35fad61971b1dc649d62934eb64b58d6c0 Mon Sep 17 00:00:00 2001 From: BenjaSanchez Date: Wed, 19 Sep 2018 16:31:58 +0100 Subject: [PATCH 11/56] fix: report location --- ComplementaryScripts/travis_deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ComplementaryScripts/travis_deploy.sh b/ComplementaryScripts/travis_deploy.sh index 28dfce8a..ace2ec94 100755 --- a/ComplementaryScripts/travis_deploy.sh +++ b/ComplementaryScripts/travis_deploy.sh @@ -26,15 +26,15 @@ else fi # Generate the history report on the deployment branch. -output="./results/history.html" +output="history_report.html" echo "Generating updated history report '${output}'." memote report history --filename="/tmp/${output}" git checkout "${deployment}" -mv "/tmp/${output}" "${output}" +mv "/tmp/${output}" ./ # Add, commit and push the files. git add "${output}" git commit -m "Travis report #${TRAVIS_BUILD_NUMBER}" git push --quiet "https://${GITHUB_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git" "${deployment}" > /dev/null -echo "Your new report will be visible at http://sysbiochalmers.github.io/yeast-GEM/ in a moment." +echo "Your new report will be available at http://sysbiochalmers.github.io/yeast-GEM/ in a moment." From 65ca98c0942a33b645d2d1978b3a80ce16d8081d Mon Sep 17 00:00:00 2001 From: benjasanchez Date: Wed, 19 Sep 2018 17:03:51 +0100 Subject: [PATCH 12/56] feat: new badges travis & memote --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc016b1d..98989911 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # yeast-GEM: The consensus genome-scale metabolic model of _Saccharomyces cerevisiae_ -[![GitHub version](https://badge.fury.io/gh/sysbiochalmers%2Fyeast-gem.svg)](https://badge.fury.io/gh/sysbiochalmers%2Fyeast-gem) [![Join the chat at https://gitter.im/SysBioChalmers/yeast-GEM](https://badges.gitter.im/SysBioChalmers/yeast-GEM.svg)](https://gitter.im/SysBioChalmers/yeast-GEM?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![GitHub version](https://badge.fury.io/gh/sysbiochalmers%2Fyeast-gem.svg)](https://badge.fury.io/gh/sysbiochalmers%2Fyeast-gem) [![Build Status](https://travis-ci.org/SysBioChalmers/yeast-GEM.svg?branch=master)](https://travis-ci.org/SysBioChalmers/yeast-GEM) [![memote history report](https://img.shields.io/badge/memote-tested-blue.svg)](https://SysBioChalmers.github.io/yeast-GEM/history_report.html) [![Join the chat at https://gitter.im/SysBioChalmers/yeast-GEM](https://badges.gitter.im/SysBioChalmers/yeast-GEM.svg)](https://gitter.im/SysBioChalmers/yeast-GEM?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) * Brief Model Description: From 22a30722a283b019a468e95ffd20959582116139 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjam=C3=ADn=20S=C3=A1nchez?= Date: Fri, 21 Sep 2018 15:31:04 +0100 Subject: [PATCH 13/56] fix: avoid switching branch --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 876bf352..654d4293 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,5 +13,4 @@ before_install: install: - pip install --upgrade memote script: -- git checkout "${TRAVIS_BRANCH}" - ./ComplementaryScripts/travis_deploy.sh From 95905cc585f17f94eb994a9a1dde1041f334a218 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjam=C3=ADn=20S=C3=A1nchez?= Date: Wed, 26 Sep 2018 10:01:16 +0200 Subject: [PATCH 14/56] fix: switch to SQLite as JSON files were too large for the repo --- memote.ini | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/memote.ini b/memote.ini index 32e8a715..5ebee233 100644 --- a/memote.ini +++ b/memote.ini @@ -1,11 +1,11 @@ [memote] model = ModelFiles/xml/yeastGEM.xml -location = results +location = sqlite:///results.db github_username = SysBioChalmers github_repository = yeast-GEM deployment = gh-pages skip = - test_find_metabolites_produced_with_closed_bounds - test_find_metabolites_consumed_with_closed_bounds - test_find_metabolites_not_produced_with_open_bounds - test_find_metabolites_not_consumed_with_open_bounds + test_find_metabolites_produced_with_closed_bounds + test_find_metabolites_consumed_with_closed_bounds + test_find_metabolites_not_produced_with_open_bounds + test_find_metabolites_not_consumed_with_open_bounds From 0c6bc04ad3ebf0fdd68fdafc30203f4c5d5c52d7 Mon Sep 17 00:00:00 2001 From: benjasanchez Date: Wed, 26 Sep 2018 15:21:10 +0200 Subject: [PATCH 15/56] test: SQLite --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98989911..577548c1 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This repository contains the current consensus genome-scale metabolic model of _ **GEM Category:** Species; **Utilisation:** predictive simulation, multi-omics integrative analysis, _in silico_ strain design, model template; **Field:** metabolic-network reconstruction; **Type of Model:** curated, reconstruction; **Model Source:** [Yeast 7.6](https://sourceforge.net/projects/yeast/); **Taxonomy:** _Saccharomyces cerevisiae_; **Metabolic System:** General Metabolism; **Condition:** aerobic, glucose-limited, defined media, maximization of growth. -* Last update: 2018-09-11 +* Last update: 2018-09-26 * Main Model Descriptors: From 085700bfa2d5ff8b9ebe7e8c28039627e38509c5 Mon Sep 17 00:00:00 2001 From: benjasanchez Date: Fri, 23 Nov 2018 15:17:55 +0100 Subject: [PATCH 16/56] fix: skip commits with no .xml changes memote 0.8.7 has now the --skip-unchanged flag for this --- ComplementaryScripts/travis_deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ComplementaryScripts/travis_deploy.sh b/ComplementaryScripts/travis_deploy.sh index ace2ec94..3abaff1e 100755 --- a/ComplementaryScripts/travis_deploy.sh +++ b/ComplementaryScripts/travis_deploy.sh @@ -21,7 +21,7 @@ else git checkout "${deployment}" git checkout "${TRAVIS_BRANCH}" echo "Tracked build." - memote run + memote run --skip-unchanged echo "Start deploy to ${deployment}..." fi From a0eb24c1c807f2ab6c527aff5ad76964f07ddc1e Mon Sep 17 00:00:00 2001 From: benjasanchez Date: Mon, 3 Dec 2018 14:02:10 +0100 Subject: [PATCH 17/56] fix: skip thermodynamic test test_find_incorrect_thermodynamic_reversibility is skipped as it takes more than 10 minutes to run --- memote.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/memote.ini b/memote.ini index 5ebee233..70d21cc2 100644 --- a/memote.ini +++ b/memote.ini @@ -9,3 +9,4 @@ skip = test_find_metabolites_consumed_with_closed_bounds test_find_metabolites_not_produced_with_open_bounds test_find_metabolites_not_consumed_with_open_bounds + test_find_incorrect_thermodynamic_reversibility From 5d4ef6a62a8259d246041c679d80618dd0a79f6d Mon Sep 17 00:00:00 2001 From: benjasanchez Date: Mon, 3 Dec 2018 14:05:47 +0100 Subject: [PATCH 18/56] doc: git lfs requirement --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 4806e716..e13a3817 100644 --- a/README.md +++ b/README.md @@ -37,11 +37,19 @@ This repository is administered by Benjamín J. Sánchez ([@BenjaSanchez](https: * The [RAVEN toolbox for MATLAB](https://github.com/SysBioChalmers/RAVEN). * A [git wrapper](https://github.com/manur/MATLAB-git) added to the search path. +**NOTE:** You also require [git lfs](https://git-lfs.github.com/) if you wish to run locally any of the following two [memote](https://github.com/opencobra/memote) commands: +* `memote run` +* `memote report history` + +This is because `results.db` (the database that stores all memote results) is tracked with git lfs. + ### Dependencies - Recommended Software: + * For Matlab, the [libSBML MATLAB API](https://sourceforge.net/projects/sbml/files/libsbml/MATLAB%20Interface/) (version 5.17.0 is recommended). * [Gurobi Optimizer](http://www.gurobi.com/registration/download-reg) for any simulations. ### Installation Instructions + * For users: Clone it from [`master`](https://github.com/SysBioChalmers/yeast-GEM) in the Github repo, or just download [the latest release](https://github.com/SysBioChalmers/yeast-GEM/releases). * For contributors: Fork it to your Github account, and create a new branch from [`devel`](https://github.com/SysBioChalmers/yeast-GEM/tree/devel). From e9b8ef1505587bbe79d3869c752dfd3636b28327 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Wed, 15 Jul 2020 10:50:03 +0200 Subject: [PATCH 19/56] feat: add yaml validation --- .github/workflows/yaml-validation.yml | 41 +++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/yaml-validation.yml diff --git a/.github/workflows/yaml-validation.yml b/.github/workflows/yaml-validation.yml new file mode 100644 index 00000000..e6d753a2 --- /dev/null +++ b/.github/workflows/yaml-validation.yml @@ -0,0 +1,41 @@ +name: YAML validation + +on: + push: + branches: [ devel ] + pull_request: + branches: [ master, devel ] + +jobs: + yaml-validation: + runs-on: ubuntu-latest + steps: + + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 1 + + - name: YAML Lint + uses: ibiqlik/action-yamllint@v1.0.0 + continue-on-error: true + with: + ## File(s) or Directory, separate by space if multiple files or folder are specified + file_or_dir: ModelFiles/ + ## Custom configuration (as YAML source) + config_data: "{extends: default, rules: {line-length: disable}}" + ## Format for parsing output [parsable,standard,colored,auto] + # format: # optional, default is colored + ## Return non-zero exit code on warnings as well as errors + # strict: # optional, default is false + + - name: Set up Python 3 + uses: actions/setup-python@v2 + with: + python-version: '3.x' + + - name: Import with cobrapy + continue-on-error: true + run: | + pip install cobra + python -c "import cobra ; cobra.io.load_yaml_model('ModelFiles/yml/yeastGEM.yml')" From 72e1c794eeae43b2e0c12fcfb039c2d9062e2975 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Fri, 17 Jul 2020 00:30:43 +0200 Subject: [PATCH 20/56] refactor: rely on ci-requirements --- .github/workflows/yaml-validation.yml | 2 +- requirements/ci-requirements.in | 3 + requirements/ci-requirements.txt | 120 ++++++++++++++++++++++++++ 3 files changed, 124 insertions(+), 1 deletion(-) create mode 100644 requirements/ci-requirements.in create mode 100644 requirements/ci-requirements.txt diff --git a/.github/workflows/yaml-validation.yml b/.github/workflows/yaml-validation.yml index e6d753a2..954ab87b 100644 --- a/.github/workflows/yaml-validation.yml +++ b/.github/workflows/yaml-validation.yml @@ -37,5 +37,5 @@ jobs: - name: Import with cobrapy continue-on-error: true run: | - pip install cobra + pip install -r requirements/ci-requirements.txt python -c "import cobra ; cobra.io.load_yaml_model('ModelFiles/yml/yeastGEM.yml')" diff --git a/requirements/ci-requirements.in b/requirements/ci-requirements.in new file mode 100644 index 00000000..36039b70 --- /dev/null +++ b/requirements/ci-requirements.in @@ -0,0 +1,3 @@ +# Requirements for GitHub Actions: +cobra +memote \ No newline at end of file diff --git a/requirements/ci-requirements.txt b/requirements/ci-requirements.txt new file mode 100644 index 00000000..c2abb5a2 --- /dev/null +++ b/requirements/ci-requirements.txt @@ -0,0 +1,120 @@ +# +# This file is autogenerated by pip-compile +# To update, run: +# +# pip-compile requirements/ci-requirements.in +# +alabaster==0.7.12 # via sphinx +arrow==0.15.7 # via jinja2-time +attrs==19.3.0 # via jsonschema, pytest +babel==2.8.0 # via sphinx +binaryornot==0.4.4 # via cookiecutter +boto3==1.14.22 # via tabulator +botocore==1.17.22 # via boto3, s3transfer +cached-property==1.5.1 # via tableschema +certifi==2020.6.20 # via requests +cffi==1.14.0 # via cryptography +chardet==3.0.4 # via binaryornot, datapackage, requests, tabulator +click-configfile==0.2.3 # via memote +click-default-group==1.2.2 # via goodtables +click-log==0.3.2 # via memote +click==7.1.2 # via click-configfile, click-default-group, click-log, cookiecutter, datapackage, goodtables, memote, nltk, tableschema, tabulator, travis-encrypt +cobra==0.18.1 # via -r requirements/ci-requirements.in, memote +configparser==5.0.0 # via click-configfile +cookiecutter==1.7.2 # via memote +cryptography==2.9.2 # via travis-encrypt +cycler==0.10.0 # via matplotlib +datapackage==1.14.1 # via goodtables +depinfo==1.5.4 # via cobra, memote +docutils==0.15.2 # via botocore, sphinx, statistics +equilibrator-api==0.1.26 # via memote +et-xmlfile==1.0.1 # via openpyxl +future==0.18.2 # via cobra, memote +gitdb==4.0.5 # via gitpython +gitpython==3.1.7 # via memote +goodtables==2.5.0 # via memote +idna==2.10 # via requests +ijson==3.1.post0 # via tabulator +imagesize==1.2.0 # via sphinx +importlib-metadata==1.7.0 # via jsonschema, pluggy, pytest +importlib-resources==3.0.0 # via equilibrator-api, memote +isodate==0.6.0 # via tableschema +jdcal==1.4.1 # via openpyxl +jinja2-time==0.2.0 # via cookiecutter +jinja2==2.11.2 # via cookiecutter, jinja2-time, memote, numpydoc, sphinx +jmespath==0.10.0 # via boto3, botocore +joblib==0.16.0 # via nltk +jsonlines==1.2.0 # via tabulator +jsonpointer==2.0 # via datapackage +jsonschema==3.2.0 # via datapackage, tableschema +kiwisolver==1.2.0 # via matplotlib +linear-tsv==1.1.0 # via tabulator +lxml==4.5.2 # via memote +markupsafe==1.1.1 # via cookiecutter, jinja2 +matplotlib==3.3.0 # via equilibrator-api +memote==0.11.0 # via -r requirements/ci-requirements.in +more-itertools==8.4.0 # via pytest +mpmath==1.1.0 # via sympy +nltk==3.5 # via equilibrator-api +numpy==1.19.0 # via cobra, equilibrator-api, matplotlib, pandas, scipy +numpydoc==1.1.0 # via memote +openpyxl==3.0.4 # via sbtab, tabulator +optlang==1.4.4 # via cobra, equilibrator-api +packaging==20.4 # via pytest, sphinx +pandas==1.0.5 # via cobra, equilibrator-api, memote +pillow==7.2.0 # via matplotlib +pipdeptree==1.0.0 # via depinfo +pluggy==0.13.1 # via pytest +poyo==0.5.0 # via cookiecutter +py==1.9.0 # via pytest +pycparser==2.20 # via cffi +pygments==2.6.1 # via sphinx +pylru==1.2.0 # via memote +pyparsing==2.4.7 # via equilibrator-api, matplotlib, packaging +pyperclip==1.6.0 # via travis-encrypt +pyrsistent==0.16.0 # via jsonschema +pytest==5.4.3 # via memote +python-dateutil==2.8.1 # via arrow, botocore, matplotlib, pandas, tableschema +python-libsbml-experimental==5.18.1 # via cobra +python-libsbml==5.18.0 # via sbtab +python-slugify==4.0.1 # via cookiecutter +pytz==2020.1 # via babel, pandas +pyyaml==5.3.1 # via travis-encrypt +regex==2020.7.14 # via nltk +requests==2.24.0 # via cookiecutter, datapackage, equilibrator-api, goodtables, memote, sphinx, tableschema, tabulator, travis-encrypt +rfc3986==1.4.0 # via tableschema +ruamel.yaml.clib==0.2.0 # via ruamel.yaml +ruamel.yaml==0.16.10 # via cobra, memote +s3transfer==0.3.3 # via boto3 +sbtab==0.9.73 # via equilibrator-api +scipy==1.5.1 # via equilibrator-api +simpleeval==0.9.10 # via goodtables +six==1.15.0 # via click-configfile, cobra, cookiecutter, cryptography, cycler, datapackage, goodtables, isodate, jsonlines, jsonschema, linear-tsv, memote, optlang, packaging, pyrsistent, python-dateutil, tableschema, tabulator +smmap==3.0.4 # via gitdb +snowballstemmer==2.0.0 # via sphinx +sphinx==3.1.2 # via numpydoc +sphinxcontrib-applehelp==1.0.2 # via sphinx +sphinxcontrib-devhelp==1.0.2 # via sphinx +sphinxcontrib-htmlhelp==1.0.3 # via sphinx +sphinxcontrib-jsmath==1.0.1 # via sphinx +sphinxcontrib-qthelp==1.0.3 # via sphinx +sphinxcontrib-serializinghtml==1.1.4 # via sphinx +sqlalchemy==1.3.18 # via memote, tabulator +statistics==1.0.3.5 # via goodtables +swiglpk==4.65.1 # via cobra, optlang +sympy==1.6.1 # via memote, optlang +tableschema==1.19.2 # via datapackage, goodtables +tablib==2.0.0 # via sbtab +tabulator==1.52.3 # via datapackage, goodtables, tableschema +text-unidecode==1.3 # via python-slugify +tqdm==4.48.0 # via nltk +travis-encrypt==1.1.2 # via memote +unicodecsv==0.14.1 # via datapackage, tableschema, tabulator +urllib3==1.25.9 # via botocore, requests +wcwidth==0.2.5 # via pytest +xlrd==1.2.0 # via tabulator +zipp==3.1.0 # via importlib-metadata, importlib-resources + +# The following packages are considered to be unsafe in a requirements file: +# pip +# setuptools \ No newline at end of file From c96cc1c9d959dff8b47a8fd06ab2ac15c193a264 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Fri, 17 Jul 2020 01:54:42 +0200 Subject: [PATCH 21/56] feat: from travis to gh actions --- .github/workflows/memote-history.yml | 56 ++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .github/workflows/memote-history.yml diff --git a/.github/workflows/memote-history.yml b/.github/workflows/memote-history.yml new file mode 100644 index 00000000..7dfa8472 --- /dev/null +++ b/.github/workflows/memote-history.yml @@ -0,0 +1,56 @@ +name: Memote history + +on: [push, pull_request] + +jobs: + memote-history: + runs-on: ubuntu-latest + steps: + + - name: Checkout + uses: actions/checkout@v2 + + - name: Set up Python 3 + uses: actions/setup-python@v2 + with: + python-version: '3.x' + + - name: Install memote + run: pip install -r requirements/ci-requirements.txt + + - name: Memote on PR + if: ${{ github.event_name == 'pull_request' }} + run: | + echo "Untracked build, skip saving to gh-pages" + memote run --ignore-git + + - name: Setup variables + id: setup + run: | + echo "::set-output name=history::history_report.html" + echo "::set-output name=deployment::$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /deployment/) print $2}' memote.ini | tr -d ' ')" + echo "::set-output name=location::$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /location/) print $2}' memote.ini | tr -d ' ')" + + - name: Memote on push + if: ${{ github.event_name != 'pull_request' }} + run: | + # Always need the deployment branch available locally for storing results. + git checkout refs/heads/${{ steps.setup.outputs.deployment }} + git checkout ${{ github.ref }} + memote run --skip-unchanged + + # Generate the history report on the deployment branch. + echo "Generating updated history report ${{ steps.setup.outputs.history }}" + memote report history --filename="/tmp/${{ steps.setup.outputs.history }}" + git checkout refs/heads/${{ steps.setup.outputs.deployment }} + mv "/tmp/${{ steps.setup.outputs.history }}" ./ + + - name: Auto-commit results + uses: stefanzweifel/git-auto-commit-action@v4.4.0 + with: + commit_user_name: memote-bot + commit_message: update memote history report + file_pattern: ${{ steps.setup.outputs.history }} + branch: ${{ steps.setup.outputs.deployment }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From cfe0db4150570fb849170dbb5bee22a961219665 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Fri, 17 Jul 2020 02:14:21 +0200 Subject: [PATCH 22/56] refactor: use second repo instance --- .github/workflows/memote-history.yml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/workflows/memote-history.yml b/.github/workflows/memote-history.yml index 7dfa8472..f0ca2fa2 100644 --- a/.github/workflows/memote-history.yml +++ b/.github/workflows/memote-history.yml @@ -9,6 +9,8 @@ jobs: - name: Checkout uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: Set up Python 3 uses: actions/setup-python@v2 @@ -30,20 +32,21 @@ jobs: echo "::set-output name=history::history_report.html" echo "::set-output name=deployment::$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /deployment/) print $2}' memote.ini | tr -d ' ')" echo "::set-output name=location::$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /location/) print $2}' memote.ini | tr -d ' ')" + echo "::set-output name=other-repo::gh-pages-repo" + + - name: Checkout repo for gh-pages branch + uses: actions/checkout@v2 + with: + repository: ${{ github.repository }} + ref: ${{ steps.setup.outputs.deployment }} + path: ${{ steps.setup.outputs.other-repo }} - name: Memote on push if: ${{ github.event_name != 'pull_request' }} run: | - # Always need the deployment branch available locally for storing results. - git checkout refs/heads/${{ steps.setup.outputs.deployment }} - git checkout ${{ github.ref }} memote run --skip-unchanged - - # Generate the history report on the deployment branch. - echo "Generating updated history report ${{ steps.setup.outputs.history }}" - memote report history --filename="/tmp/${{ steps.setup.outputs.history }}" - git checkout refs/heads/${{ steps.setup.outputs.deployment }} - mv "/tmp/${{ steps.setup.outputs.history }}" ./ + # Generate the history report on the deployment branch + memote report history --filename="${{ steps.setup.outputs.other-repo }}/${{ steps.setup.outputs.history }}" - name: Auto-commit results uses: stefanzweifel/git-auto-commit-action@v4.4.0 @@ -52,5 +55,6 @@ jobs: commit_message: update memote history report file_pattern: ${{ steps.setup.outputs.history }} branch: ${{ steps.setup.outputs.deployment }} + repository: ${{ steps.setup.outputs.other-repo }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From efce14cab6a64ab57b45100ca6c2ebdd9f0b16d5 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Fri, 17 Jul 2020 07:33:27 +0200 Subject: [PATCH 23/56] feat: remove travis integration --- .travis.yml | 16 ----------- ComplementaryScripts/travis_deploy.sh | 40 --------------------------- 2 files changed, 56 deletions(-) delete mode 100644 .travis.yml delete mode 100755 ComplementaryScripts/travis_deploy.sh diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 654d4293..00000000 --- a/.travis.yml +++ /dev/null @@ -1,16 +0,0 @@ -language: python -sudo: false -python: 3.5 -cache: - pip: true -git: - depth: false -branches: - except: - - gh-pages -before_install: -- pip install --upgrade pip setuptools wheel -install: -- pip install --upgrade memote -script: -- ./ComplementaryScripts/travis_deploy.sh diff --git a/ComplementaryScripts/travis_deploy.sh b/ComplementaryScripts/travis_deploy.sh deleted file mode 100755 index 3abaff1e..00000000 --- a/ComplementaryScripts/travis_deploy.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash - -# Do NOT set -v or -x or your GitHub API token will be leaked! -set -ue # exit with nonzero exit code if anything fails - -echo "Parse memote.ini for values." -deployment=$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /deployment/) print $2}' memote.ini | tr -d ' ') -location=$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /location/) print $2}' memote.ini | tr -d ' ') - -echo "Configure Travis git user." -git config --global user.email "deploy@travis-ci.org" -git config --global user.name "Travis CI Deployment Bot" - -if [[ "${TRAVIS_PULL_REQUEST}" != "false" || "${TRAVIS_REPO_SLUG}" != "SysBioChalmers/yeast-GEM" ]]; then - echo "Untracked build." - memote run --ignore-git - echo "Skip deploy." - exit 0 -else - # Always need the deployment branch available locally for storing results. - git checkout "${deployment}" - git checkout "${TRAVIS_BRANCH}" - echo "Tracked build." - memote run --skip-unchanged - echo "Start deploy to ${deployment}..." -fi - -# Generate the history report on the deployment branch. -output="history_report.html" -echo "Generating updated history report '${output}'." -memote report history --filename="/tmp/${output}" -git checkout "${deployment}" -mv "/tmp/${output}" ./ - -# Add, commit and push the files. -git add "${output}" -git commit -m "Travis report #${TRAVIS_BUILD_NUMBER}" -git push --quiet "https://${GITHUB_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git" "${deployment}" > /dev/null - -echo "Your new report will be available at http://sysbiochalmers.github.io/yeast-GEM/ in a moment." From 630abcd82db8a5c2183de850382db3ddbf3b1235 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Fri, 17 Jul 2020 07:37:36 +0200 Subject: [PATCH 24/56] feat: allow workflow to fail on error --- .github/workflows/yaml-validation.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/yaml-validation.yml b/.github/workflows/yaml-validation.yml index 954ab87b..de97fcfb 100644 --- a/.github/workflows/yaml-validation.yml +++ b/.github/workflows/yaml-validation.yml @@ -18,7 +18,6 @@ jobs: - name: YAML Lint uses: ibiqlik/action-yamllint@v1.0.0 - continue-on-error: true with: ## File(s) or Directory, separate by space if multiple files or folder are specified file_or_dir: ModelFiles/ @@ -35,7 +34,6 @@ jobs: python-version: '3.x' - name: Import with cobrapy - continue-on-error: true run: | pip install -r requirements/ci-requirements.txt python -c "import cobra ; cobra.io.load_yaml_model('ModelFiles/yml/yeastGEM.yml')" From fb8533a3a3245931bab1cb09279fc45896611172 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Fri, 17 Jul 2020 10:44:27 +0200 Subject: [PATCH 25/56] feat: split memote workflow --- .github/workflows/memote-history.yml | 9 +-------- .github/workflows/memote-run.yml | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 8 deletions(-) create mode 100644 .github/workflows/memote-run.yml diff --git a/.github/workflows/memote-history.yml b/.github/workflows/memote-history.yml index f0ca2fa2..241f2935 100644 --- a/.github/workflows/memote-history.yml +++ b/.github/workflows/memote-history.yml @@ -1,6 +1,6 @@ name: Memote history -on: [push, pull_request] +on: push jobs: memote-history: @@ -20,12 +20,6 @@ jobs: - name: Install memote run: pip install -r requirements/ci-requirements.txt - - name: Memote on PR - if: ${{ github.event_name == 'pull_request' }} - run: | - echo "Untracked build, skip saving to gh-pages" - memote run --ignore-git - - name: Setup variables id: setup run: | @@ -42,7 +36,6 @@ jobs: path: ${{ steps.setup.outputs.other-repo }} - name: Memote on push - if: ${{ github.event_name != 'pull_request' }} run: | memote run --skip-unchanged # Generate the history report on the deployment branch diff --git a/.github/workflows/memote-run.yml b/.github/workflows/memote-run.yml new file mode 100644 index 00000000..abc2b85e --- /dev/null +++ b/.github/workflows/memote-run.yml @@ -0,0 +1,24 @@ +name: Memote history + +on: pull_request + +jobs: + memote-run: + runs-on: ubuntu-latest + steps: + + - name: Checkout + uses: actions/checkout@v2 + + - name: Set up Python 3 + uses: actions/setup-python@v2 + with: + python-version: '3.x' + + - name: Install memote + run: pip install -r requirements/ci-requirements.txt + + - name: Memote on PR + run: | + # Untracked build, skip saving to gh-pages + memote run --ignore-git From 25946737d90ae5846372ce6c58bff25217580ddd Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Fri, 17 Jul 2020 14:10:31 +0200 Subject: [PATCH 26/56] feat: memote workflow converts model, uses solver time limit --- .github/workflows/memote-history.yml | 11 +++++++++-- .github/workflows/memote-run.yml | 11 +++++++++-- memote.ini | 6 ------ requirements/ci-requirements.in | 4 +++- requirements/ci-requirements.txt | 6 ++++-- 5 files changed, 25 insertions(+), 13 deletions(-) diff --git a/.github/workflows/memote-history.yml b/.github/workflows/memote-history.yml index 241f2935..8c8a54a0 100644 --- a/.github/workflows/memote-history.yml +++ b/.github/workflows/memote-history.yml @@ -35,11 +35,18 @@ jobs: ref: ${{ steps.setup.outputs.deployment }} path: ${{ steps.setup.outputs.other-repo }} + - name: Convert model + run: | + python -c \ + 'import ComplementaryScripts.io as io; \ + model = io.read_yeast_model(make_bigg_compliant=True); \ + io.write_yeast_model(model)' + - name: Memote on push run: | - memote run --skip-unchanged + memote run --skip-unchanged --solver-timeout 30 # Generate the history report on the deployment branch - memote report history --filename="${{ steps.setup.outputs.other-repo }}/${{ steps.setup.outputs.history }}" + memote report history --filename="${{ steps.setup.outputs.other-repo }}/${{ steps.setup.outputs.history }}" --solver-timeout 30 - name: Auto-commit results uses: stefanzweifel/git-auto-commit-action@v4.4.0 diff --git a/.github/workflows/memote-run.yml b/.github/workflows/memote-run.yml index abc2b85e..5dbdd2c7 100644 --- a/.github/workflows/memote-run.yml +++ b/.github/workflows/memote-run.yml @@ -17,8 +17,15 @@ jobs: - name: Install memote run: pip install -r requirements/ci-requirements.txt - + + - name: Convert model + run: | + python -c \ + 'import ComplementaryScripts.io as io; \ + model = io.read_yeast_model(make_bigg_compliant=True); \ + io.write_yeast_model(model)' + - name: Memote on PR run: | # Untracked build, skip saving to gh-pages - memote run --ignore-git + memote run --ignore-git --solver-timeout 30 diff --git a/memote.ini b/memote.ini index 70d21cc2..d2a596d8 100644 --- a/memote.ini +++ b/memote.ini @@ -4,9 +4,3 @@ location = sqlite:///results.db github_username = SysBioChalmers github_repository = yeast-GEM deployment = gh-pages -skip = - test_find_metabolites_produced_with_closed_bounds - test_find_metabolites_consumed_with_closed_bounds - test_find_metabolites_not_produced_with_open_bounds - test_find_metabolites_not_consumed_with_open_bounds - test_find_incorrect_thermodynamic_reversibility diff --git a/requirements/ci-requirements.in b/requirements/ci-requirements.in index 36039b70..16b945b0 100644 --- a/requirements/ci-requirements.in +++ b/requirements/ci-requirements.in @@ -1,3 +1,5 @@ # Requirements for GitHub Actions: cobra -memote \ No newline at end of file +memote +python-dotenv +symengine \ No newline at end of file diff --git a/requirements/ci-requirements.txt b/requirements/ci-requirements.txt index c2abb5a2..41fa830b 100644 --- a/requirements/ci-requirements.txt +++ b/requirements/ci-requirements.txt @@ -1,4 +1,4 @@ -# +# # This file is autogenerated by pip-compile # To update, run: # @@ -75,6 +75,7 @@ pyperclip==1.6.0 # via travis-encrypt pyrsistent==0.16.0 # via jsonschema pytest==5.4.3 # via memote python-dateutil==2.8.1 # via arrow, botocore, matplotlib, pandas, tableschema +python-dotenv==0.14.0 # via -r requirements/ci-requirements.in python-libsbml-experimental==5.18.1 # via cobra python-libsbml==5.18.0 # via sbtab python-slugify==4.0.1 # via cookiecutter @@ -102,6 +103,7 @@ sphinxcontrib-serializinghtml==1.1.4 # via sphinx sqlalchemy==1.3.18 # via memote, tabulator statistics==1.0.3.5 # via goodtables swiglpk==4.65.1 # via cobra, optlang +symengine==0.6.1 # via -r requirements/ci-requirements.in sympy==1.6.1 # via memote, optlang tableschema==1.19.2 # via datapackage, goodtables tablib==2.0.0 # via sbtab @@ -117,4 +119,4 @@ zipp==3.1.0 # via importlib-metadata, importlib-resources # The following packages are considered to be unsafe in a requirements file: # pip -# setuptools \ No newline at end of file +# setuptools From 876ecce91414420cd114e2ea9fc400ea3a296482 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Fri, 17 Jul 2020 14:26:06 +0200 Subject: [PATCH 27/56] fix: make sure .env exists --- .github/workflows/memote-history.yml | 1 + .github/workflows/memote-run.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/memote-history.yml b/.github/workflows/memote-history.yml index 8c8a54a0..2da654cd 100644 --- a/.github/workflows/memote-history.yml +++ b/.github/workflows/memote-history.yml @@ -37,6 +37,7 @@ jobs: - name: Convert model run: | + touch .env python -c \ 'import ComplementaryScripts.io as io; \ model = io.read_yeast_model(make_bigg_compliant=True); \ diff --git a/.github/workflows/memote-run.yml b/.github/workflows/memote-run.yml index 5dbdd2c7..cc1ff207 100644 --- a/.github/workflows/memote-run.yml +++ b/.github/workflows/memote-run.yml @@ -20,6 +20,7 @@ jobs: - name: Convert model run: | + touch .env python -c \ 'import ComplementaryScripts.io as io; \ model = io.read_yeast_model(make_bigg_compliant=True); \ From 2f434f139bb69a1516c825a855d6dce9fafc84ac Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Fri, 17 Jul 2020 14:39:20 +0200 Subject: [PATCH 28/56] feat: add badge for memote history action --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 96871341..f130853b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # yeast-GEM: The consensus genome-scale metabolic model of _Saccharomyces cerevisiae_ -[![DOI](https://zenodo.org/badge/52777598.svg)](https://zenodo.org/badge/latestdoi/52777598) [![GitHub version](https://badge.fury.io/gh/sysbiochalmers%2Fyeast-gem.svg)](https://badge.fury.io/gh/sysbiochalmers%2Fyeast-gem) [![Join the chat at https://gitter.im/SysBioChalmers/yeast-GEM](https://badges.gitter.im/SysBioChalmers/yeast-GEM.svg)](https://gitter.im/SysBioChalmers/yeast-GEM?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![DOI](https://zenodo.org/badge/52777598.svg)](https://zenodo.org/badge/latestdoi/52777598) [![GitHub version](https://badge.fury.io/gh/sysbiochalmers%2Fyeast-gem.svg)](https://badge.fury.io/gh/sysbiochalmers%2Fyeast-gem) [![Join the chat at https://gitter.im/SysBioChalmers/yeast-GEM](https://badges.gitter.im/SysBioChalmers/yeast-GEM.svg)](https://gitter.im/SysBioChalmers/yeast-GEM?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)[![Memote history](https://github.com/SysBioChalmers/yeast-GEM/workflows/Memote%20history/badge.svg)](https://sysbiochalmers.github.io/yeast-GEM/history_report.html) * Brief Model Description: From da3d35e31933faf679c5d8a8c9b43b8904cd9b8d Mon Sep 17 00:00:00 2001 From: Benjamin Sanchez Date: Mon, 5 Oct 2020 14:13:59 +0200 Subject: [PATCH 29/56] fix-rxn.annot: combine glycolysis + gluconeogenesis both correspond to only one KEGG pathway: https://www.genome.jp/kegg-bin/show_pathway?map00010 --- .../modelCuration/FAEnewRxnProp.tsv | 20 +- ModelFiles/xml/yeastGEM.xml | 263 ++++++------------ ModelFiles/yml/yeastGEM.yml | 243 ++++++---------- README.md | 2 +- 4 files changed, 181 insertions(+), 347 deletions(-) diff --git a/ComplementaryData/modelCuration/FAEnewRxnProp.tsv b/ComplementaryData/modelCuration/FAEnewRxnProp.tsv index 8eb91b52..84ffb43b 100644 --- a/ComplementaryData/modelCuration/FAEnewRxnProp.tsv +++ b/ComplementaryData/modelCuration/FAEnewRxnProp.tsv @@ -22,33 +22,33 @@ r_4648 0 ethyl decanoate exchange r_4649 0 (YGR015C) mitochondrial ethanol O-acetyltransferase 2.3.1.268 R11957 r_4650 0 ethyl acetate transport, mitochondrial r_4651 0 (YGR087C or YLR044C or YLR134W) pyruvate decarboxylase (aldedyde-forming) 4.1.1.1 R00636 -r_4652 0 (YBR145W or YDL168W or YOL086C) aldehyde dehydrogenase (1-propanol, NAD) 1.1.1.-; 1.1.1.1; 1.1.1.284 Gluconeogenesis;sce00010 Glycolysis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics R00754 -r_4653 0 (YGL256W or YMR083W) aldehyde dehydrogenase (1-propanol, NAD) 1.1.1.1 Gluconeogenesis;sce00010 Glycolysis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics -r_4654 0 (YCR105W or YDR368W or YMR318C) aldehyde dehydrogenase (1-propanol, NADP) 1.1.1.-; 1.1.1.2 Gluconeogenesis;sce00010 Glycolysis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics +r_4652 0 (YBR145W or YDL168W or YOL086C) aldehyde dehydrogenase (1-propanol, NAD) 1.1.1.-; 1.1.1.1; 1.1.1.284 sce00010 Glycolysis / Gluconeogenesis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics R00754 +r_4653 0 (YGL256W or YMR083W) aldehyde dehydrogenase (1-propanol, NAD) 1.1.1.1 sce00010 Glycolysis / Gluconeogenesis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics +r_4654 0 (YCR105W or YDR368W or YMR318C) aldehyde dehydrogenase (1-propanol, NADP) 1.1.1.-; 1.1.1.2 sce00010 Glycolysis / Gluconeogenesis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics r_4655 1 1-propyl alcohol transport, mitochondrial r_4656 1 propanal transport, cytosol r_4657 1 1-propyl alcohol transport, cytosol r_4658 0 propanal exchange r_4659 0 propanol exchange r_4660 1 (YHR137W) 2-oxo acid decarboxylase 4.1.1.1 R00636 -r_4661 0 (YBR145W or YDL168W or YOL086C) aldehyde dehydrogenase (methionol, NAD) 1.1.1.-; 1.1.1.1; 1.1.1.284 Gluconeogenesis;sce00010 Glycolysis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics R00754 -r_4662 0 (YGL256W or YMR083W) aldehyde dehydrogenase (methionol, NAD) 1.1.1.1 Gluconeogenesis;sce00010 Glycolysis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics -r_4663 0 (YCR105W or YDR368W or YMR318C) aldehyde dehydrogenase (methionol, NADP) 1.1.1.-; 1.1.1.2 Gluconeogenesis;sce00010 Glycolysis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics +r_4661 0 (YBR145W or YDL168W or YOL086C) aldehyde dehydrogenase (methionol, NAD) 1.1.1.-; 1.1.1.1; 1.1.1.284 sce00010 Glycolysis / Gluconeogenesis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics R00754 +r_4662 0 (YGL256W or YMR083W) aldehyde dehydrogenase (methionol, NAD) 1.1.1.1 sce00010 Glycolysis / Gluconeogenesis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics +r_4663 0 (YCR105W or YDR368W or YMR318C) aldehyde dehydrogenase (methionol, NADP) 1.1.1.-; 1.1.1.2 sce00010 Glycolysis / Gluconeogenesis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics r_4664 1 methionol transport, mitochondrial r_4665 1 methional transport, cytosol r_4666 1 methionol transport, cytosol r_4667 0 methional exchange r_4668 0 methionol exchange r_4669 0 (YGR087C or YLR044C or YLR134W) pyruvate decarboxylase (hydroxy-phenyl) 4.1.1.1 -r_4670 0 (YBR145W or YDL168W or YOL086C) aldehyde dehydrogenase (tyrosol, NAD) 1.1.1.-; 1.1.1.1; 1.1.1.284 Gluconeogenesis;sce00010 Glycolysis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics -r_4671 0 (YGL256W or YMR083W) aldehyde dehydrogenase (tyrosol, NAD) 1.1.1.1 Gluconeogenesis;sce00010 Glycolysis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics -r_4672 0 (YCR105W or YDR368W or YMR318C) aldehyde dehydrogenase (tyrosol, NADP) 1.1.1.-; 1.1.1.2 Gluconeogenesis;sce00010 Glycolysis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics +r_4670 0 (YBR145W or YDL168W or YOL086C) aldehyde dehydrogenase (tyrosol, NAD) 1.1.1.-; 1.1.1.1; 1.1.1.284 sce00010 Glycolysis / Gluconeogenesis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics +r_4671 0 (YGL256W or YMR083W) aldehyde dehydrogenase (tyrosol, NAD) 1.1.1.1 sce00010 Glycolysis / Gluconeogenesis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics +r_4672 0 (YCR105W or YDR368W or YMR318C) aldehyde dehydrogenase (tyrosol, NADP) 1.1.1.-; 1.1.1.2 sce00010 Glycolysis / Gluconeogenesis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics r_4673 1 tyrosol transport, mitochondrial r_4674 1 (4-hydroxyphenyl)acetaldehyde transport, cytosol r_4675 1 tyrosol transport, cytosol r_4676 0 (4-hydroxyphenyl)acetaldehyde exchange r_4677 0 tyrosol exchange -r_4678 1 (YMR170C or YMR169C or YOR374W) aldehyde dehydrogenase 1.2.1.5 Gluconeogenesis;sce00010 Glycolysis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics +r_4678 1 (YMR170C or YMR169C or YOR374W) aldehyde dehydrogenase 1.2.1.5 sce00010 Glycolysis / Gluconeogenesis;sce00071 Fatty acid degradation;sce00350 Tyrosine metabolism;sce01110 Biosynthesis of secondary metabolites;sce01130 Biosynthesis of antibiotics r_4679 1 (YOR317W or YER015W or YIL009W or YMR246W) short-chain-fatty-acid-CoA ligase (propionate) 6.2.1.3 sce00061 Fatty acid biosynthesis;sce00071 Fatty acid degradation;sce01212 Fatty acid metabolism;sce04146 Peroxisome r_4680 1 (YBR177C or YPL095C) alcohol acyltransferase (propionyl-CoA) 2.3.1.84 r_4681 1 propionyl-CoA transport, mitochondrial diff --git a/ModelFiles/xml/yeastGEM.xml b/ModelFiles/xml/yeastGEM.xml index 643e95f6..0c877ff4 100644 --- a/ModelFiles/xml/yeastGEM.xml +++ b/ModelFiles/xml/yeastGEM.xml @@ -206904,7 +206904,7 @@ - + @@ -206989,92 +206989,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -207110,7 +207025,7 @@ - + @@ -207134,7 +207049,7 @@ - + @@ -207153,7 +207068,7 @@ - + @@ -207175,7 +207090,7 @@ - + @@ -207193,7 +207108,7 @@ - + @@ -207233,7 +207148,7 @@ - + @@ -207278,7 +207193,7 @@ - + @@ -207384,7 +207299,7 @@ - + @@ -207392,7 +207307,7 @@ - + @@ -207511,7 +207426,7 @@ - + @@ -207525,7 +207440,7 @@ - + @@ -207544,7 +207459,7 @@ - + @@ -207570,7 +207485,7 @@ - + @@ -207654,7 +207569,7 @@ - + @@ -207715,7 +207630,7 @@ - + @@ -207749,7 +207664,7 @@ - + @@ -207800,14 +207715,14 @@ - + - + @@ -207861,7 +207776,7 @@ - + @@ -207914,7 +207829,7 @@ - + @@ -207940,7 +207855,7 @@ - + @@ -207960,7 +207875,7 @@ - + @@ -207979,7 +207894,7 @@ - + @@ -208014,13 +207929,13 @@ - + - + @@ -208043,7 +207958,7 @@ - + @@ -208090,7 +208005,7 @@ - + @@ -208113,7 +208028,7 @@ - + @@ -208144,7 +208059,7 @@ - + @@ -208179,7 +208094,7 @@ - + @@ -208201,14 +208116,14 @@ - + - + @@ -208230,7 +208145,7 @@ - + @@ -208245,7 +208160,7 @@ - + @@ -208270,7 +208185,7 @@ - + @@ -208293,31 +208208,31 @@ - + - + - + - + - + @@ -208342,7 +208257,7 @@ - + @@ -208677,7 +208592,7 @@ - + @@ -208881,7 +208796,7 @@ - + @@ -208892,7 +208807,7 @@ - + @@ -209468,7 +209383,7 @@ - + @@ -209552,7 +209467,7 @@ - + @@ -209606,7 +209521,7 @@ - + @@ -209645,7 +209560,7 @@ - + @@ -209672,7 +209587,7 @@ - + @@ -209686,14 +209601,14 @@ - + - + @@ -209723,7 +209638,7 @@ - + @@ -209740,7 +209655,7 @@ - + @@ -209756,7 +209671,7 @@ - + @@ -209768,7 +209683,7 @@ - + @@ -209798,7 +209713,7 @@ - + @@ -209825,7 +209740,7 @@ - + @@ -209840,7 +209755,7 @@ - + @@ -209856,13 +209771,13 @@ - + - + @@ -209880,7 +209795,7 @@ - + @@ -209920,14 +209835,14 @@ - + - + @@ -209935,7 +209850,7 @@ - + @@ -209957,7 +209872,7 @@ - + @@ -209997,7 +209912,7 @@ - + @@ -210080,7 +209995,7 @@ - + @@ -210697,7 +210612,7 @@ - + @@ -210992,7 +210907,7 @@ - + @@ -211098,7 +211013,7 @@ - + @@ -211156,7 +211071,7 @@ - + @@ -211267,7 +211182,7 @@ - + @@ -211407,7 +211322,7 @@ - + @@ -211421,14 +211336,14 @@ - + - + @@ -211462,7 +211377,7 @@ - + @@ -211682,12 +211597,12 @@ - + - + @@ -211696,12 +211611,12 @@ - + - + @@ -211713,7 +211628,7 @@ - + @@ -211750,7 +211665,7 @@ - + @@ -211770,7 +211685,7 @@ - + @@ -211798,7 +211713,7 @@ - + @@ -211820,7 +211735,7 @@ - + @@ -211917,7 +211832,7 @@ - + @@ -211926,7 +211841,7 @@ - + diff --git a/ModelFiles/yml/yeastGEM.yml b/ModelFiles/yml/yeastGEM.yml index 015f1f8b..a9d8fcdf 100644 --- a/ModelFiles/yml/yeastGEM.yml +++ b/ModelFiles/yml/yeastGEM.yml @@ -30833,8 +30833,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGR087C or YLR044C or YLR134W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics - annotation: !!omap @@ -30882,8 +30881,7 @@ - upper_bound: 1000 - gene_reaction_rule: YDL080C or YGR087C or YLR044C or YLR134W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics - annotation: !!omap @@ -31043,8 +31041,7 @@ - upper_bound: 1000 - gene_reaction_rule: YDL080C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics - annotation: !!omap @@ -31528,8 +31525,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGR087C or YLR044C or YLR134W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics - annotation: !!omap @@ -31922,8 +31918,7 @@ - upper_bound: 1000 - gene_reaction_rule: YAL054C or YLR153C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00620 Pyruvate metabolism - sce00640 Propanoate metabolism - sce01110 Biosynthesis of secondary metabolites @@ -31951,8 +31946,7 @@ - upper_bound: 1000 - gene_reaction_rule: YAL054C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00620 Pyruvate metabolism - sce00640 Propanoate metabolism - sce01110 Biosynthesis of secondary metabolites @@ -31979,8 +31973,7 @@ - upper_bound: 1000 - gene_reaction_rule: YLR153C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00620 Pyruvate metabolism - sce00640 Propanoate metabolism - sce01110 Biosynthesis of secondary metabolites @@ -32938,8 +32931,7 @@ - upper_bound: 1000 - gene_reaction_rule: YMR303C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -32988,8 +32980,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGL256W or YMR083W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33015,8 +33006,7 @@ - upper_bound: 1000 - gene_reaction_rule: YBR145W or YDL168W or YOL086C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33045,8 +33035,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGL256W or YMR083W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33071,8 +33060,7 @@ - upper_bound: 1000 - gene_reaction_rule: YCR105W or YDR368W or YMR318C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00040 Pentose and glucuronate interconversions - sce00561 Glycerolipid metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33101,8 +33089,7 @@ - upper_bound: 1000 - gene_reaction_rule: YBR145W or YDL168W or YOL086C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33132,8 +33119,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGL256W or YMR083W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33159,8 +33145,7 @@ - upper_bound: 1000 - gene_reaction_rule: YCR105W or YMR318C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00040 Pentose and glucuronate interconversions - sce00561 Glycerolipid metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33188,8 +33173,7 @@ - upper_bound: 1000 - gene_reaction_rule: YMR110C or YMR169C or YMR170C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00340 Histidine metabolism - sce00350 Tyrosine metabolism - sce00360 Phenylalanine metabolism @@ -33217,8 +33201,7 @@ - upper_bound: 1000 - gene_reaction_rule: YPL061W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00280 Valine, leucine and isoleucine degradation - sce00310 Lysine degradation @@ -33252,8 +33235,7 @@ - upper_bound: 1000 - gene_reaction_rule: YOR374W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00280 Valine, leucine and isoleucine degradation - sce00310 Lysine degradation @@ -33287,8 +33269,7 @@ - upper_bound: 1000 - gene_reaction_rule: YER073W or YOR374W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00280 Valine, leucine and isoleucine degradation - sce00310 Lysine degradation @@ -33322,8 +33303,7 @@ - upper_bound: 1000 - gene_reaction_rule: YOR374W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00280 Valine, leucine and isoleucine degradation - sce00310 Lysine degradation @@ -33356,8 +33336,7 @@ - upper_bound: 1000 - gene_reaction_rule: YPL061W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00280 Valine, leucine and isoleucine degradation - sce00310 Lysine degradation @@ -33389,8 +33368,7 @@ - upper_bound: 1000 - gene_reaction_rule: YER073W or YOR374W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00280 Valine, leucine and isoleucine degradation - sce00310 Lysine degradation @@ -33422,8 +33400,7 @@ - upper_bound: 1000 - gene_reaction_rule: YBR145W or YDL168W or YOL086C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33453,8 +33430,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGL256W or YMR083W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33480,8 +33456,7 @@ - upper_bound: 1000 - gene_reaction_rule: YCR105W or YMR318C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00040 Pentose and glucuronate interconversions - sce00561 Glycerolipid metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33509,8 +33484,7 @@ - upper_bound: 1000 - gene_reaction_rule: YBR145W or YDL168W or YOL086C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33539,8 +33513,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGL256W or YMR083W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33565,8 +33538,7 @@ - upper_bound: 1000 - gene_reaction_rule: YCR105W or YMR318C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00040 Pentose and glucuronate interconversions - sce00561 Glycerolipid metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33594,8 +33566,7 @@ - upper_bound: 1000 - gene_reaction_rule: YMR169C or YMR170C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00340 Histidine metabolism - sce00350 Tyrosine metabolism - sce00360 Phenylalanine metabolism @@ -33622,8 +33593,7 @@ - upper_bound: 1000 - gene_reaction_rule: YBR145W or YDL168W or YOL086C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33653,8 +33623,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGL256W or YMR083W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -33916,8 +33885,7 @@ - upper_bound: 1000 - gene_reaction_rule: YOR374W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00280 Valine, leucine and isoleucine degradation - sce00310 Lysine degradation @@ -36376,8 +36344,7 @@ - upper_bound: 1000 - gene_reaction_rule: YKL060C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00030 Pentose phosphate pathway - sce00051 Fructose and mannose metabolism - sce01110 Biosynthesis of secondary metabolites @@ -36949,8 +36916,7 @@ - upper_bound: 1000 - gene_reaction_rule: YKL152C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00260 Glycine, serine and threonine metabolism - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics @@ -37151,8 +37117,7 @@ - upper_bound: 1000 - gene_reaction_rule: YPL281C or YGR254W or YHR174W or YMR323W or YOR393W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics - sce01200 Carbon metabolism @@ -37534,8 +37499,7 @@ - upper_bound: 1000 - gene_reaction_rule: YDL168W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -37658,8 +37622,7 @@ - upper_bound: 1000 - gene_reaction_rule: YLR377C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00030 Pentose phosphate pathway - sce00051 Fructose and mannose metabolism - sce01110 Biosynthesis of secondary metabolites @@ -37683,8 +37646,7 @@ - upper_bound: 1000 - gene_reaction_rule: YKL060C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00030 Pentose phosphate pathway - sce00051 Fructose and mannose metabolism - sce01110 Biosynthesis of secondary metabolites @@ -38034,8 +37996,7 @@ - upper_bound: 1000 - gene_reaction_rule: YBR196C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00030 Pentose phosphate pathway - sce00500 Starch and sucrose metabolism - sce00520 Amino sugar and nucleotide sugar metabolism @@ -38461,8 +38422,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGR192C or YJL052W or YJR009C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics - sce01200 Carbon metabolism @@ -38681,8 +38641,7 @@ - upper_bound: 1000 - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00020 Citrate cycle (TCA cycle) - sce00260 Glycine, serine and threonine metabolism - sce00280 Valine, leucine and isoleucine degradation @@ -38772,8 +38731,7 @@ - upper_bound: 1000 - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00020 Citrate cycle (TCA cycle) - sce00260 Glycine, serine and threonine metabolism - sce00280 Valine, leucine and isoleucine degradation @@ -38806,8 +38764,7 @@ - upper_bound: 1000 - gene_reaction_rule: (YAL044C and YDR019C and YFL018C and YMR189W) or (YDR148C and YFL018C and YIL125W) - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00020 Citrate cycle (TCA cycle) - sce00260 Glycine, serine and threonine metabolism - sce00280 Valine, leucine and isoleucine degradation @@ -38844,8 +38801,7 @@ - upper_bound: 1000 - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00020 Citrate cycle (TCA cycle) - sce00260 Glycine, serine and threonine metabolism - sce00280 Valine, leucine and isoleucine degradation @@ -38880,8 +38836,7 @@ - upper_bound: 1000 - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00020 Citrate cycle (TCA cycle) - sce00260 Glycine, serine and threonine metabolism - sce00280 Valine, leucine and isoleucine degradation @@ -38915,8 +38870,7 @@ - upper_bound: 1000 - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00020 Citrate cycle (TCA cycle) - sce00260 Glycine, serine and threonine metabolism - sce00280 Valine, leucine and isoleucine degradation @@ -38950,8 +38904,7 @@ - upper_bound: 1000 - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00020 Citrate cycle (TCA cycle) - sce00260 Glycine, serine and threonine metabolism - sce00280 Valine, leucine and isoleucine degradation @@ -39362,8 +39315,7 @@ - upper_bound: 1000 - gene_reaction_rule: YLR446W or YFR053C or YGL253W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00051 Fructose and mannose metabolism - sce00052 Galactose metabolism - sce00500 Starch and sucrose metabolism @@ -39391,8 +39343,7 @@ - upper_bound: 1000 - gene_reaction_rule: YLR446W or YCL040W or YFR053C or YGL253W or YDR516C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00051 Fructose and mannose metabolism - sce00052 Galactose metabolism - sce00500 Starch and sucrose metabolism @@ -39423,8 +39374,7 @@ - upper_bound: 1000 - gene_reaction_rule: YLR446W or YFR053C or YGL253W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00051 Fructose and mannose metabolism - sce00052 Galactose metabolism - sce00500 Starch and sucrose metabolism @@ -40168,8 +40118,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGR087C or YLR044C or YLR134W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics - annotation: !!omap @@ -44783,8 +44732,7 @@ - upper_bound: 1000 - gene_reaction_rule: YDR148C and YFL018C and YIL125W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00020 Citrate cycle (TCA cycle) - sce00260 Glycine, serine and threonine metabolism - sce00280 Valine, leucine and isoleucine degradation @@ -44820,8 +44768,7 @@ - upper_bound: 1000 - gene_reaction_rule: YDR148C and YFL018C and YIL125W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00020 Citrate cycle (TCA cycle) - sce00260 Glycine, serine and threonine metabolism - sce00280 Valine, leucine and isoleucine degradation @@ -45227,8 +45174,7 @@ - upper_bound: 1000 - gene_reaction_rule: YKR097W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00020 Citrate cycle (TCA cycle) - sce00620 Pyruvate metabolism - sce01110 Biosynthesis of secondary metabolites @@ -45276,8 +45222,7 @@ - upper_bound: 1000 - gene_reaction_rule: YMR205C or (YGR240C and YMR205C) - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00030 Pentose phosphate pathway - sce00051 Fructose and mannose metabolism - sce00052 Galactose metabolism @@ -45307,8 +45252,7 @@ - upper_bound: 1000 - gene_reaction_rule: YMR205C or (YGR240C and YMR205C) - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00030 Pentose phosphate pathway - sce00051 Fructose and mannose metabolism - sce00052 Galactose metabolism @@ -45334,8 +45278,7 @@ - upper_bound: 1000 - gene_reaction_rule: YMR105C or YKL127W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00030 Pentose phosphate pathway - sce00052 Galactose metabolism - sce00230 Purine metabolism @@ -45438,8 +45381,7 @@ - upper_bound: 1000 - gene_reaction_rule: YCR012W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics - sce01200 Carbon metabolism @@ -45462,8 +45404,7 @@ - upper_bound: 1000 - gene_reaction_rule: YOR283W or YKL152C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00260 Glycine, serine and threonine metabolism - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics @@ -45593,8 +45534,7 @@ - upper_bound: 1000 - gene_reaction_rule: YKL127W or YMR105C or YMR278W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00030 Pentose phosphate pathway - sce00052 Galactose metabolism - sce00230 Purine metabolism @@ -46409,8 +46349,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGR087C or YLR044C or YLR134W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics - annotation: !!omap @@ -46437,8 +46376,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGR087C or YLR044C or YLR134W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics - annotation: !!omap @@ -46466,8 +46404,7 @@ - upper_bound: 1000 - gene_reaction_rule: YBR221C and YER178W and YFL018C and YGR193C and YNL071W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00020 Citrate cycle (TCA cycle) - sce00260 Glycine, serine and threonine metabolism - sce00280 Valine, leucine and isoleucine degradation @@ -46501,8 +46438,7 @@ - upper_bound: 1000 - gene_reaction_rule: YAL038W or YOR347C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00230 Purine metabolism - sce00620 Pyruvate metabolism - sce01110 Biosynthesis of secondary metabolites @@ -47098,8 +47034,7 @@ - upper_bound: 1000 - gene_reaction_rule: YKL060C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00030 Pentose phosphate pathway - sce00051 Fructose and mannose metabolism - sce01110 Biosynthesis of secondary metabolites @@ -47799,8 +47734,7 @@ - upper_bound: 1000 - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00020 Citrate cycle (TCA cycle) - sce00260 Glycine, serine and threonine metabolism - sce00280 Valine, leucine and isoleucine degradation @@ -48267,8 +48201,7 @@ - upper_bound: 1000 - gene_reaction_rule: YDR050C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00051 Fructose and mannose metabolism - sce00562 Inositol phosphate metabolism - sce01110 Biosynthesis of secondary metabolites @@ -48547,8 +48480,7 @@ - upper_bound: 1000 - gene_reaction_rule: YBR019C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00052 Galactose metabolism - sce00520 Amino sugar and nucleotide sugar metabolism - sce01110 Biosynthesis of secondary metabolites @@ -57841,8 +57773,7 @@ - upper_bound: 1000 - gene_reaction_rule: YBR145W or YOL086C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -57869,8 +57800,7 @@ - upper_bound: 1000 - gene_reaction_rule: YMR110C or YMR170C or YER073W or YOR374W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00340 Histidine metabolism - sce00350 Tyrosine metabolism - sce00360 Phenylalanine metabolism @@ -57993,8 +57923,7 @@ - upper_bound: 1000 - gene_reaction_rule: YKR043C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00260 Glycine, serine and threonine metabolism - sce01110 Biosynthesis of secondary metabolites - sce01130 Biosynthesis of antibiotics @@ -99117,8 +99046,7 @@ - upper_bound: 1000 - gene_reaction_rule: YBR145W or YDL168W or YOL086C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -99144,8 +99072,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGL256W or YMR083W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -99167,8 +99094,7 @@ - upper_bound: 1000 - gene_reaction_rule: YCR105W or YDR368W or YMR318C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -99261,8 +99187,7 @@ - upper_bound: 1000 - gene_reaction_rule: YBR145W or YDL168W or YOL086C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -99288,8 +99213,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGL256W or YMR083W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -99311,8 +99235,7 @@ - upper_bound: 1000 - gene_reaction_rule: YCR105W or YDR368W or YMR318C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -99404,8 +99327,7 @@ - upper_bound: 1000 - gene_reaction_rule: YBR145W or YDL168W or YOL086C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -99430,8 +99352,7 @@ - upper_bound: 1000 - gene_reaction_rule: YGL256W or YMR083W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -99453,8 +99374,7 @@ - upper_bound: 1000 - gene_reaction_rule: YCR105W or YDR368W or YMR318C - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites @@ -99532,8 +99452,7 @@ - upper_bound: 1000 - gene_reaction_rule: YMR170C or YMR169C or YOR374W - subsystem: - - Gluconeogenesis - - sce00010 Glycolysis + - sce00010 Glycolysis / Gluconeogenesis - sce00071 Fatty acid degradation - sce00350 Tyrosine metabolism - sce01110 Biosynthesis of secondary metabolites diff --git a/README.md b/README.md index 944feb33..328c37bf 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This repository contains the current consensus genome-scale metabolic model of _ **GEM Category:** species; **Utilisation:** experimental data reconstruction, multi-omics integrative analysis, _in silico_ strain design, model template; **Field:** metabolic-network reconstruction; **Type of Model:** reconstruction, curated; **Model Source:** YeastMetabolicNetwork; **Omic Source:** genomics, metabolomics; **Taxonomy:** _Saccharomyces cerevisiae_; **Metabolic System:** general metabolism; **Bioreactor**; **Strain:** S288C; **Condition:** aerobic, glucose-limited, defined media; -* Last update: 2020-09-18 +* Last update: 2020-10-05 * Main Model Descriptors: From a49721c83e00a6bbc80364444c0e20a91c2068ba Mon Sep 17 00:00:00 2001 From: Benjamin Sanchez Date: Mon, 23 Nov 2020 18:18:46 +0100 Subject: [PATCH 30/56] chore: update COBRA xml changes due to https://github.com/opencobra/cobratoolbox/pull/1631 --- ModelFiles/dependencies.txt | 2 +- ModelFiles/xml/yeastGEM.xml | 10 +++++----- README.md | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ModelFiles/dependencies.txt b/ModelFiles/dependencies.txt index 88a13d64..e0dd1088 100644 --- a/ModelFiles/dependencies.txt +++ b/ModelFiles/dependencies.txt @@ -1,7 +1,7 @@ MATLAB 9.7.0.1190202 (R2019b) libSBML 5.17.0 RAVEN_toolbox 2.4.0 -COBRA_toolbox commit 0303050 +COBRA_toolbox commit 6c49aaf SBML_level 3 SBML_version 1 fbc_version 2 diff --git a/ModelFiles/xml/yeastGEM.xml b/ModelFiles/xml/yeastGEM.xml index 0c877ff4..53aabee7 100644 --- a/ModelFiles/xml/yeastGEM.xml +++ b/ModelFiles/xml/yeastGEM.xml @@ -58840,11 +58840,11 @@ - - - - - + + + + + diff --git a/README.md b/README.md index 328c37bf..8a7891c1 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This repository contains the current consensus genome-scale metabolic model of _ **GEM Category:** species; **Utilisation:** experimental data reconstruction, multi-omics integrative analysis, _in silico_ strain design, model template; **Field:** metabolic-network reconstruction; **Type of Model:** reconstruction, curated; **Model Source:** YeastMetabolicNetwork; **Omic Source:** genomics, metabolomics; **Taxonomy:** _Saccharomyces cerevisiae_; **Metabolic System:** general metabolism; **Bioreactor**; **Strain:** S288C; **Condition:** aerobic, glucose-limited, defined media; -* Last update: 2020-10-05 +* Last update: 2020-11-23 * Main Model Descriptors: From b2f3d697fb6cc7d38596cc06cb51534d5f5fa68c Mon Sep 17 00:00:00 2001 From: Benjamin Sanchez Date: Mon, 23 Nov 2020 18:37:19 +0100 Subject: [PATCH 31/56] chore: update RAVEN * change in yml: use of quotes for fields (https://github.com/SysBioChalmers/RAVEN/pull/309) * adpated saveYeastModel to be compliant with new exporting structure introduced in https://github.com/SysBioChalmers/RAVEN/pull/303 (temporal) --- ComplementaryScripts/saveYeastModel.m | 3 +- ModelFiles/dependencies.txt | 2 +- ModelFiles/yml/yeastGEM.yml | 106826 ++++++++++++----------- 3 files changed, 54142 insertions(+), 52689 deletions(-) diff --git a/ComplementaryScripts/saveYeastModel.m b/ComplementaryScripts/saveYeastModel.m index ff500e79..3f2ec988 100644 --- a/ComplementaryScripts/saveYeastModel.m +++ b/ComplementaryScripts/saveYeastModel.m @@ -60,7 +60,8 @@ function saveYeastModel(model,upDATE,allowNoGrowth) copyfile('tempModel.xml','../ModelFiles/xml/yeastGEM.xml') delete('tempModel.xml'); writeCbModel(model,'text','../ModelFiles/txt/yeastGEM.txt'); -exportForGit(model,'yeastGEM','..',{'yml'}); +exportForGit(model,'yeastGEM','../ModelFiles',{'yml'},false,false); % temporal +movefile ../ModelFiles/yeastGEM.yml ../ModelFiles/yml/ % temporal %Detect boundary metabolites and save them in a .txt file: fid = fopen('../ModelFiles/boundaryMets.txt','wt'); diff --git a/ModelFiles/dependencies.txt b/ModelFiles/dependencies.txt index e0dd1088..f0930f4c 100644 --- a/ModelFiles/dependencies.txt +++ b/ModelFiles/dependencies.txt @@ -1,6 +1,6 @@ MATLAB 9.7.0.1190202 (R2019b) libSBML 5.17.0 -RAVEN_toolbox 2.4.0 +RAVEN_toolbox 2.4.1 COBRA_toolbox commit 6c49aaf SBML_level 3 SBML_version 1 diff --git a/ModelFiles/yml/yeastGEM.yml b/ModelFiles/yml/yeastGEM.yml index a9d8fcdf..9c137383 100644 --- a/ModelFiles/yml/yeastGEM.yml +++ b/ModelFiles/yml/yeastGEM.yml @@ -1,29812 +1,29839 @@ !!omap - metabolites: - !!omap - - id: s_0001 - - name: (1->3)-beta-D-glucan - - compartment: ce - - formula: C6H10O5 - - charge: 0 - - annotation: !!omap - - bigg.metabolite: 13BDglcn - - chebi: CHEBI:37671 - - kegg.compound: C00965 - - metanetx.chemical: MNXM6492 - - sbo: SBO:0000247 - - !!omap - - id: s_0002 - - name: (1->3)-beta-D-glucan - - compartment: c - - formula: C6H10O5 - - charge: 0 - - annotation: !!omap - - bigg.metabolite: 13BDglcn - - chebi: CHEBI:37671 - - kegg.compound: C00965 - - metanetx.chemical: MNXM6492 - - sbo: SBO:0000247 - - !!omap - - id: s_0003 - - name: (1->3)-beta-D-glucan - - compartment: e - - formula: C6H10O5 - - charge: 0 - - annotation: !!omap - - bigg.metabolite: 13BDglcn - - chebi: CHEBI:37671 - - kegg.compound: C00965 - - metanetx.chemical: MNXM6492 - - sbo: SBO:0000247 - - !!omap - - id: s_0004 - - name: (1->6)-beta-D-glucan - - compartment: ce - - formula: C6H10O5 - - charge: 0 - - annotation: !!omap - - bigg.metabolite: 16BDglcn - - chebi: CHEBI:27380 - - kegg.compound: C02493 - - metanetx.chemical: MNXM9375 - - sbo: SBO:0000247 - - !!omap - - id: s_0006 - - name: (2-amino-4-hydroxy-7,8-dihydropteridin-6-yl)methyl trihydrogen diphosphate - - compartment: m - - formula: C7H8N5O8P2 + - id: "s_0001" + - name: "(1->3)-beta-D-glucan" + - compartment: "ce" + - formula: "C6H10O5" + - charge: 0 + - annotation: !!omap + - bigg.metabolite: "13BDglcn" + - chebi: "CHEBI:37671" + - kegg.compound: "C00965" + - metanetx.chemical: "MNXM6492" + - sbo: "SBO:0000247" + - !!omap + - id: "s_0002" + - name: "(1->3)-beta-D-glucan" + - compartment: "c" + - formula: "C6H10O5" + - charge: 0 + - annotation: !!omap + - bigg.metabolite: "13BDglcn" + - chebi: "CHEBI:37671" + - kegg.compound: "C00965" + - metanetx.chemical: "MNXM6492" + - sbo: "SBO:0000247" + - !!omap + - id: "s_0003" + - name: "(1->3)-beta-D-glucan" + - compartment: "e" + - formula: "C6H10O5" + - charge: 0 + - annotation: !!omap + - bigg.metabolite: "13BDglcn" + - chebi: "CHEBI:37671" + - kegg.compound: "C00965" + - metanetx.chemical: "MNXM6492" + - sbo: "SBO:0000247" + - !!omap + - id: "s_0004" + - name: "(1->6)-beta-D-glucan" + - compartment: "ce" + - formula: "C6H10O5" + - charge: 0 + - annotation: !!omap + - bigg.metabolite: "16BDglcn" + - chebi: "CHEBI:27380" + - kegg.compound: "C02493" + - metanetx.chemical: "MNXM9375" + - sbo: "SBO:0000247" + - !!omap + - id: "s_0006" + - name: "(2-amino-4-hydroxy-7,8-dihydropteridin-6-yl)methyl trihydrogen diphosphate" + - compartment: "m" + - formula: "C7H8N5O8P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: 2ahhmd - - chebi: CHEBI:57602 - - kegg.compound: C04807 - - metanetx.chemical: MNXM1160 - - sbo: SBO:0000247 + - bigg.metabolite: "2ahhmd" + - chebi: "CHEBI:57602" + - kegg.compound: "C04807" + - metanetx.chemical: "MNXM1160" + - sbo: "SBO:0000247" - !!omap - - id: s_0007 - - name: (2E)-3-(methoxycarbonyl)pent-2-enedioic acid - - compartment: c - - formula: C7H6O6 + - id: "s_0007" + - name: "(2E)-3-(methoxycarbonyl)pent-2-enedioic acid" + - compartment: "c" + - formula: "C7H6O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: aconm - - chebi: CHEBI:57470 - - kegg.compound: C11514 - - metanetx.chemical: MNXM3742 - - sbo: SBO:0000247 + - bigg.metabolite: "aconm" + - chebi: "CHEBI:57470" + - kegg.compound: "C11514" + - metanetx.chemical: "MNXM3742" + - sbo: "SBO:0000247" - !!omap - - id: s_0008 - - name: (2R,3R)-2,3-dihydroxy-3-methylpentanoate - - compartment: m - - formula: C6H11O4 + - id: "s_0008" + - name: "(2R,3R)-2,3-dihydroxy-3-methylpentanoate" + - compartment: "m" + - formula: "C6H11O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: 23dhmp - - chebi: CHEBI:49258 - - kegg.compound: C06007 - - metanetx.chemical: MNXM1202 - - sbo: SBO:0000247 + - bigg.metabolite: "23dhmp" + - chebi: "CHEBI:49258" + - kegg.compound: "C06007" + - metanetx.chemical: "MNXM1202" + - sbo: "SBO:0000247" - !!omap - - id: s_0009 - - name: (2R,3S)-3-isopropylmalate - - compartment: c - - formula: C7H10O5 + - id: "s_0009" + - name: "(2R,3S)-3-isopropylmalate" + - compartment: "c" + - formula: "C7H10O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3c2hmp - - chebi: CHEBI:35121 - - kegg.compound: C04411 - - metanetx.chemical: MNXM891 - - sbo: SBO:0000247 + - bigg.metabolite: "3c2hmp" + - chebi: "CHEBI:35121" + - kegg.compound: "C04411" + - metanetx.chemical: "MNXM891" + - sbo: "SBO:0000247" - !!omap - - id: s_0010 - - name: (2S)-2-isopropyl-3-oxosuccinate - - compartment: c - - formula: C7H8O5 + - id: "s_0010" + - name: "(2S)-2-isopropyl-3-oxosuccinate" + - compartment: "c" + - formula: "C7H8O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3c4mop - - chebi: CHEBI:17214 - - kegg.compound: C04236 - - metanetx.chemical: MNXM1602 - - sbo: SBO:0000247 + - bigg.metabolite: "3c4mop" + - chebi: "CHEBI:17214" + - kegg.compound: "C04236" + - metanetx.chemical: "MNXM1602" + - sbo: "SBO:0000247" - !!omap - - id: s_0011 - - name: (2S)-2-isopropyl-3-oxosuccinate - - compartment: m - - formula: C7H8O5 + - id: "s_0011" + - name: "(2S)-2-isopropyl-3-oxosuccinate" + - compartment: "m" + - formula: "C7H8O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3c4mop - - chebi: CHEBI:17214 - - kegg.compound: C04236 - - metanetx.chemical: MNXM1602 - - sbo: SBO:0000247 + - bigg.metabolite: "3c4mop" + - chebi: "CHEBI:17214" + - kegg.compound: "C04236" + - metanetx.chemical: "MNXM1602" + - sbo: "SBO:0000247" - !!omap - - id: s_0012 - - name: (2S,3R)-3-hydroxybutane-1,2,3-tricarboxylic acid - - compartment: m - - formula: C7H7O7 + - id: "s_0012" + - name: "(2S,3R)-3-hydroxybutane-1,2,3-tricarboxylic acid" + - compartment: "m" + - formula: "C7H7O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: micit - - chebi: CHEBI:57429 - - kegg.compound: C04593 - - metanetx.chemical: MNXM1694 - - sbo: SBO:0000247 + - bigg.metabolite: "micit" + - chebi: "CHEBI:57429" + - kegg.compound: "C04593" + - metanetx.chemical: "MNXM1694" + - sbo: "SBO:0000247" - !!omap - - id: s_0013 - - name: (5S,6S)-di-HETE - - compartment: c - - formula: C20H31O4 + - id: "s_0013" + - name: "(5S,6S)-di-HETE" + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - annotation: !!omap - - chebi: CHEBI:53026 - - metanetx.chemical: MNXM31306 - - sbo: SBO:0000247 + - chebi: "CHEBI:53026" + - metanetx.chemical: "MNXM31306" + - sbo: "SBO:0000247" - !!omap - - id: s_0014 - - name: (5S,6S)-di-HETE - - compartment: n - - formula: C20H31O4 + - id: "s_0014" + - name: "(5S,6S)-di-HETE" + - compartment: "n" + - formula: "C20H31O4" - charge: -1 - annotation: !!omap - - chebi: CHEBI:53026 - - metanetx.chemical: MNXM31306 - - sbo: SBO:0000247 + - chebi: "CHEBI:53026" + - metanetx.chemical: "MNXM31306" + - sbo: "SBO:0000247" - !!omap - - id: s_0015 - - name: (N(omega)-L-arginino)succinic acid - - compartment: c - - formula: C10H17N4O6 + - id: "s_0015" + - name: "(N(omega)-L-arginino)succinic acid" + - compartment: "c" + - formula: "C10H17N4O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: argsuc - - chebi: CHEBI:57472 - - kegg.compound: C03406 - - metanetx.chemical: MNXM722743 - - sbo: SBO:0000247 + - bigg.metabolite: "argsuc" + - chebi: "CHEBI:57472" + - kegg.compound: "C03406" + - metanetx.chemical: "MNXM722743" + - sbo: "SBO:0000247" - !!omap - - id: s_0016 - - name: (R)-2,3-dihydroxy-3-methylbutanoate - - compartment: m - - formula: C5H9O4 + - id: "s_0016" + - name: "(R)-2,3-dihydroxy-3-methylbutanoate" + - compartment: "m" + - formula: "C5H9O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: 23dhmb - - chebi: CHEBI:49072 - - kegg.compound: C04272 - - metanetx.chemical: MNXM114097 - - sbo: SBO:0000247 + - bigg.metabolite: "23dhmb" + - chebi: "CHEBI:49072" + - kegg.compound: "C04272" + - metanetx.chemical: "MNXM114097" + - sbo: "SBO:0000247" - !!omap - - id: s_0017 - - name: (R)-4'-phosphopantothenic acid - - compartment: c - - formula: C9H15NO8P + - id: "s_0017" + - name: "(R)-4'-phosphopantothenic acid" + - compartment: "c" + - formula: "C9H15NO8P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 4ppan - - chebi: CHEBI:15905 - - kegg.compound: C03492 - - metanetx.chemical: MNXM415 - - sbo: SBO:0000247 + - bigg.metabolite: "4ppan" + - chebi: "CHEBI:15905" + - kegg.compound: "C03492" + - metanetx.chemical: "MNXM415" + - sbo: "SBO:0000247" - !!omap - - id: s_0018 - - name: (R)-5-diphosphomevalonic acid - - compartment: c - - formula: C6H10O10P2 + - id: "s_0018" + - name: "(R)-5-diphosphomevalonic acid" + - compartment: "c" + - formula: "C6H10O10P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: 5dpmev - - chebi: CHEBI:57557 - - kegg.compound: C01143 - - metanetx.chemical: MNXM689 - - sbo: SBO:0000247 + - bigg.metabolite: "5dpmev" + - chebi: "CHEBI:57557" + - kegg.compound: "C01143" + - metanetx.chemical: "MNXM689" + - sbo: "SBO:0000247" - !!omap - - id: s_0019 - - name: (R)-5-phosphomevalonic acid - - compartment: c - - formula: C6H10O7P + - id: "s_0019" + - name: "(R)-5-phosphomevalonic acid" + - compartment: "c" + - formula: "C6H10O7P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 5pmev - - chebi: CHEBI:58146 - - kegg.compound: C01107 - - metanetx.chemical: MNXM567 - - sbo: SBO:0000247 + - bigg.metabolite: "5pmev" + - chebi: "CHEBI:58146" + - kegg.compound: "C01107" + - metanetx.chemical: "MNXM567" + - sbo: "SBO:0000247" - !!omap - - id: s_0020 - - name: (R)-acetoin - - compartment: c - - formula: C4H8O2 + - id: "s_0020" + - name: "(R)-acetoin" + - compartment: "c" + - formula: "C4H8O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: actn__R - - chebi: CHEBI:15686 - - kegg.compound: C00810 - - metanetx.chemical: MNXM664 - - sbo: SBO:0000247 + - bigg.metabolite: "actn__R" + - chebi: "CHEBI:15686" + - kegg.compound: "C00810" + - metanetx.chemical: "MNXM664" + - sbo: "SBO:0000247" - !!omap - - id: s_0021 - - name: (R)-carnitine - - compartment: c - - formula: C7H15NO3 + - id: "s_0021" + - name: "(R)-carnitine" + - compartment: "c" + - formula: "C7H15NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: crn - - chebi: CHEBI:16347 - - kegg.compound: C00318 - - metanetx.chemical: MNXM173 - - sbo: SBO:0000247 + - bigg.metabolite: "crn" + - chebi: "CHEBI:16347" + - kegg.compound: "C00318" + - metanetx.chemical: "MNXM173" + - sbo: "SBO:0000247" - !!omap - - id: s_0022 - - name: (R)-carnitine - - compartment: e - - formula: C7H15NO3 + - id: "s_0022" + - name: "(R)-carnitine" + - compartment: "e" + - formula: "C7H15NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: crn - - chebi: CHEBI:16347 - - kegg.compound: C00318 - - metanetx.chemical: MNXM173 - - sbo: SBO:0000247 + - bigg.metabolite: "crn" + - chebi: "CHEBI:16347" + - kegg.compound: "C00318" + - metanetx.chemical: "MNXM173" + - sbo: "SBO:0000247" - !!omap - - id: s_0023 - - name: (R)-carnitine - - compartment: m - - formula: C7H15NO3 + - id: "s_0023" + - name: "(R)-carnitine" + - compartment: "m" + - formula: "C7H15NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: crn - - chebi: CHEBI:16347 - - kegg.compound: C00318 - - metanetx.chemical: MNXM173 - - sbo: SBO:0000247 + - bigg.metabolite: "crn" + - chebi: "CHEBI:16347" + - kegg.compound: "C00318" + - metanetx.chemical: "MNXM173" + - sbo: "SBO:0000247" - !!omap - - id: s_0024 - - name: (R)-carnitine - - compartment: p - - formula: C7H15NO3 + - id: "s_0024" + - name: "(R)-carnitine" + - compartment: "p" + - formula: "C7H15NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: crn - - chebi: CHEBI:16347 - - kegg.compound: C00318 - - metanetx.chemical: MNXM173 - - sbo: SBO:0000247 + - bigg.metabolite: "crn" + - chebi: "CHEBI:16347" + - kegg.compound: "C00318" + - metanetx.chemical: "MNXM173" + - sbo: "SBO:0000247" - !!omap - - id: s_0025 - - name: (R)-lactate - - compartment: c - - formula: C3H5O3 + - id: "s_0025" + - name: "(R)-lactate" + - compartment: "c" + - formula: "C3H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: lac__D - - chebi: CHEBI:16004 - - kegg.compound: C00256 - - metanetx.chemical: MNXM285 - - sbo: SBO:0000247 + - bigg.metabolite: "lac__D" + - chebi: "CHEBI:16004" + - kegg.compound: "C00256" + - metanetx.chemical: "MNXM285" + - sbo: "SBO:0000247" - !!omap - - id: s_0026 - - name: (R)-lactate - - compartment: e - - formula: C3H5O3 + - id: "s_0026" + - name: "(R)-lactate" + - compartment: "e" + - formula: "C3H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: lac__D - - chebi: CHEBI:16004 - - kegg.compound: C00256 - - metanetx.chemical: MNXM285 - - sbo: SBO:0000247 + - bigg.metabolite: "lac__D" + - chebi: "CHEBI:16004" + - kegg.compound: "C00256" + - metanetx.chemical: "MNXM285" + - sbo: "SBO:0000247" - !!omap - - id: s_0027 - - name: (R)-lactate - - compartment: m - - formula: C3H5O3 + - id: "s_0027" + - name: "(R)-lactate" + - compartment: "m" + - formula: "C3H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: lac__D - - chebi: CHEBI:16004 - - kegg.compound: C00256 - - metanetx.chemical: MNXM285 - - sbo: SBO:0000247 + - bigg.metabolite: "lac__D" + - chebi: "CHEBI:16004" + - kegg.compound: "C00256" + - metanetx.chemical: "MNXM285" + - sbo: "SBO:0000247" - !!omap - - id: s_0028 - - name: (R)-mevalonate - - compartment: c - - formula: C6H11O4 + - id: "s_0028" + - name: "(R)-mevalonate" + - compartment: "c" + - formula: "C6H11O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: mev__R - - chebi: CHEBI:36464 - - kegg.compound: C00418 - - metanetx.chemical: MNXM333 - - sbo: SBO:0000247 + - bigg.metabolite: "mev__R" + - chebi: "CHEBI:36464" + - kegg.compound: "C00418" + - metanetx.chemical: "MNXM333" + - sbo: "SBO:0000247" - !!omap - - id: s_0029 - - name: (R)-mevalonate - - compartment: e - - formula: C6H11O4 + - id: "s_0029" + - name: "(R)-mevalonate" + - compartment: "e" + - formula: "C6H11O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: mev__R - - chebi: CHEBI:36464 - - kegg.compound: C00418 - - metanetx.chemical: MNXM333 - - sbo: SBO:0000247 + - bigg.metabolite: "mev__R" + - chebi: "CHEBI:36464" + - kegg.compound: "C00418" + - metanetx.chemical: "MNXM333" + - sbo: "SBO:0000247" - !!omap - - id: s_0030 - - name: (R)-pantoate - - compartment: c - - formula: C6H11O4 + - id: "s_0030" + - name: "(R)-pantoate" + - compartment: "c" + - formula: "C6H11O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: pant__R - - chebi: CHEBI:15980 - - kegg.compound: C00522 - - metanetx.chemical: MNXM593 - - sbo: SBO:0000247 + - bigg.metabolite: "pant__R" + - chebi: "CHEBI:15980" + - kegg.compound: "C00522" + - metanetx.chemical: "MNXM593" + - sbo: "SBO:0000247" - !!omap - - id: s_0031 - - name: (R)-pantothenate - - compartment: c - - formula: C9H16NO5 + - id: "s_0031" + - name: "(R)-pantothenate" + - compartment: "c" + - formula: "C9H16NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: pnto__R - - chebi: CHEBI:29032 - - kegg.compound: C00864 - - metanetx.chemical: MNXM364 - - sbo: SBO:0000247 + - bigg.metabolite: "pnto__R" + - chebi: "CHEBI:29032" + - kegg.compound: "C00864" + - metanetx.chemical: "MNXM364" + - sbo: "SBO:0000247" - !!omap - - id: s_0032 - - name: (R)-pantothenate - - compartment: e - - formula: C9H16NO5 + - id: "s_0032" + - name: "(R)-pantothenate" + - compartment: "e" + - formula: "C9H16NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: pnto__R - - chebi: CHEBI:29032 - - kegg.compound: C00864 - - metanetx.chemical: MNXM364 - - sbo: SBO:0000247 + - bigg.metabolite: "pnto__R" + - chebi: "CHEBI:29032" + - kegg.compound: "C00864" + - metanetx.chemical: "MNXM364" + - sbo: "SBO:0000247" - !!omap - - id: s_0033 - - name: (R)-S-lactoylglutathione - - compartment: c - - formula: C13H20N3O8S + - id: "s_0033" + - name: "(R)-S-lactoylglutathione" + - compartment: "c" + - formula: "C13H20N3O8S" - charge: -1 - annotation: !!omap - - bigg.metabolite: lgt__S - - chebi: CHEBI:57474 - - kegg.compound: C03451 - - metanetx.chemical: MNXM1253 - - sbo: SBO:0000247 + - bigg.metabolite: "lgt__S" + - chebi: "CHEBI:57474" + - kegg.compound: "C03451" + - metanetx.chemical: "MNXM1253" + - sbo: "SBO:0000247" - !!omap - - id: s_0034 - - name: (R)-S-lactoylglutathione - - compartment: m - - formula: C13H20N3O8S + - id: "s_0034" + - name: "(R)-S-lactoylglutathione" + - compartment: "m" + - formula: "C13H20N3O8S" - charge: -1 - annotation: !!omap - - bigg.metabolite: lgt__S - - chebi: CHEBI:57474 - - kegg.compound: C03451 - - metanetx.chemical: MNXM1253 - - sbo: SBO:0000247 + - bigg.metabolite: "lgt__S" + - chebi: "CHEBI:57474" + - kegg.compound: "C03451" + - metanetx.chemical: "MNXM1253" + - sbo: "SBO:0000247" - !!omap - - id: s_0035 - - name: (R,R)-2,3-butanediol - - compartment: c - - formula: C4H10O2 + - id: "s_0035" + - name: "(R,R)-2,3-butanediol" + - compartment: "c" + - formula: "C4H10O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: btd_RR - - chebi: CHEBI:16982 - - kegg.compound: C03044 - - metanetx.chemical: MNXM2757 - - sbo: SBO:0000247 + - bigg.metabolite: "btd_RR" + - chebi: "CHEBI:16982" + - kegg.compound: "C03044" + - metanetx.chemical: "MNXM2757" + - sbo: "SBO:0000247" - !!omap - - id: s_0036 - - name: (R,R)-2,3-butanediol - - compartment: e - - formula: C4H10O2 + - id: "s_0036" + - name: "(R,R)-2,3-butanediol" + - compartment: "e" + - formula: "C4H10O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: btd_RR - - chebi: CHEBI:16982 - - kegg.compound: C03044 - - metanetx.chemical: MNXM2757 - - sbo: SBO:0000247 + - bigg.metabolite: "btd_RR" + - chebi: "CHEBI:16982" + - kegg.compound: "C03044" + - metanetx.chemical: "MNXM2757" + - sbo: "SBO:0000247" - !!omap - - id: s_0037 - - name: (S)-2,3-epoxysqualene - - compartment: c - - formula: C30H50O + - id: "s_0037" + - name: "(S)-2,3-epoxysqualene" + - compartment: "c" + - formula: "C30H50O" - charge: 0 - annotation: !!omap - - bigg.metabolite: Ssq23epx - - chebi: CHEBI:15441 - - kegg.compound: C01054 - - metanetx.chemical: MNXM130 - - sbo: SBO:0000247 + - bigg.metabolite: "Ssq23epx" + - chebi: "CHEBI:15441" + - kegg.compound: "C01054" + - metanetx.chemical: "MNXM130" + - sbo: "SBO:0000247" - !!omap - - id: s_0038 - - name: (S)-2,3-epoxysqualene - - compartment: er - - formula: C30H50O + - id: "s_0038" + - name: "(S)-2,3-epoxysqualene" + - compartment: "er" + - formula: "C30H50O" - charge: 0 - annotation: !!omap - - bigg.metabolite: Ssq23epx - - chebi: CHEBI:15441 - - kegg.compound: C01054 - - metanetx.chemical: MNXM130 - - sbo: SBO:0000247 + - bigg.metabolite: "Ssq23epx" + - chebi: "CHEBI:15441" + - kegg.compound: "C01054" + - metanetx.chemical: "MNXM130" + - sbo: "SBO:0000247" - !!omap - - id: s_0039 - - name: (S)-2-acetyl-2-hydroxybutanoate - - compartment: m - - formula: C6H9O4 + - id: "s_0039" + - name: "(S)-2-acetyl-2-hydroxybutanoate" + - compartment: "m" + - formula: "C6H9O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: 2ahbut - - chebi: CHEBI:49256 - - kegg.compound: C06006 - - metanetx.chemical: MNXM114220 - - sbo: SBO:0000247 + - bigg.metabolite: "2ahbut" + - chebi: "CHEBI:49256" + - kegg.compound: "C06006" + - metanetx.chemical: "MNXM114220" + - sbo: "SBO:0000247" - !!omap - - id: s_0042 - - name: (R)-3-hydroxydecanoyl-CoA - - compartment: p - - formula: C31H50N7O18P3S + - id: "s_0042" + - name: "(R)-3-hydroxydecanoyl-CoA" + - compartment: "p" + - formula: "C31H50N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3hdcoa - - chebi: CHEBI:28325 - - kegg.compound: C05264 - - metanetx.chemical: MNXM674 - - sbo: SBO:0000247 + - bigg.metabolite: "3hdcoa" + - chebi: "CHEBI:28325" + - kegg.compound: "C05264" + - metanetx.chemical: "MNXM674" + - sbo: "SBO:0000247" - !!omap - - id: s_0045 - - name: (S)-3-hydroxyhexacosanoyl-CoA - - compartment: p - - formula: C47H82N7O18P3S + - id: "s_0045" + - name: "(S)-3-hydroxyhexacosanoyl-CoA" + - compartment: "p" + - formula: "C47H82N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: CHEBI:52976 - - metanetx.chemical: MNXM31741 - - sbo: SBO:0000247 + - chebi: "CHEBI:52976" + - metanetx.chemical: "MNXM31741" + - sbo: "SBO:0000247" - !!omap - - id: s_0048 - - name: (R)-3-hydroxylauroyl-CoA - - compartment: p - - formula: C33H54N7O18P3S + - id: "s_0048" + - name: "(R)-3-hydroxylauroyl-CoA" + - compartment: "p" + - formula: "C33H54N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3hddcoa - - chebi: CHEBI:27668 - - kegg.compound: C05262 - - metanetx.chemical: MNXM733 - - sbo: SBO:0000247 + - bigg.metabolite: "3hddcoa" + - chebi: "CHEBI:27668" + - kegg.compound: "C05262" + - metanetx.chemical: "MNXM733" + - sbo: "SBO:0000247" - !!omap - - id: s_0051 - - name: (S)-3-hydroxypalmitoyl-CoA - - compartment: p - - formula: C37H62N7O18P3S + - id: "s_0051" + - name: "(S)-3-hydroxypalmitoyl-CoA" + - compartment: "p" + - formula: "C37H62N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3hhdcoa - - chebi: CHEBI:27402 - - kegg.compound: C05258 - - metanetx.chemical: MNXM825 - - sbo: SBO:0000247 + - bigg.metabolite: "3hhdcoa" + - chebi: "CHEBI:27402" + - kegg.compound: "C05258" + - metanetx.chemical: "MNXM825" + - sbo: "SBO:0000247" - !!omap - - id: s_0054 - - name: (S)-3-hydroxytetradecanoyl-CoA - - compartment: p - - formula: C35H58N7O18P3S + - id: "s_0054" + - name: "(S)-3-hydroxytetradecanoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3htdcoa - - chebi: CHEBI:27466 - - kegg.compound: C05260 - - metanetx.chemical: MNXM767 - - sbo: SBO:0000247 + - bigg.metabolite: "3htdcoa" + - chebi: "CHEBI:27466" + - kegg.compound: "C05260" + - metanetx.chemical: "MNXM767" + - sbo: "SBO:0000247" - !!omap - - id: s_0056 - - name: (S)-3-methyl-2-oxopentanoate - - compartment: c - - formula: C6H9O3 + - id: "s_0056" + - name: "(S)-3-methyl-2-oxopentanoate" + - compartment: "c" + - formula: "C6H9O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3mop - - chebi: CHEBI:35146 - - kegg.compound: C00671 - - metanetx.chemical: MNXM439 - - sbo: SBO:0000247 + - bigg.metabolite: "3mop" + - chebi: "CHEBI:35146" + - kegg.compound: "C00671" + - metanetx.chemical: "MNXM439" + - sbo: "SBO:0000247" - !!omap - - id: s_0058 - - name: (S)-3-methyl-2-oxopentanoate - - compartment: e - - formula: C6H9O3 + - id: "s_0058" + - name: "(S)-3-methyl-2-oxopentanoate" + - compartment: "e" + - formula: "C6H9O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3mop - - chebi: CHEBI:35146 - - kegg.compound: C00671 - - metanetx.chemical: MNXM439 - - sbo: SBO:0000247 + - bigg.metabolite: "3mop" + - chebi: "CHEBI:35146" + - kegg.compound: "C00671" + - metanetx.chemical: "MNXM439" + - sbo: "SBO:0000247" - !!omap - - id: s_0060 - - name: (S)-3-methyl-2-oxopentanoate - - compartment: m - - formula: C6H9O3 + - id: "s_0060" + - name: "(S)-3-methyl-2-oxopentanoate" + - compartment: "m" + - formula: "C6H9O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3mop - - chebi: CHEBI:35146 - - kegg.compound: C00671 - - metanetx.chemical: MNXM439 - - sbo: SBO:0000247 + - bigg.metabolite: "3mop" + - chebi: "CHEBI:35146" + - kegg.compound: "C00671" + - metanetx.chemical: "MNXM439" + - sbo: "SBO:0000247" - !!omap - - id: s_0061 - - name: (S)-dihydroorotate - - compartment: c - - formula: C5H5N2O4 + - id: "s_0061" + - name: "(S)-dihydroorotate" + - compartment: "c" + - formula: "C5H5N2O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: dhor__S - - chebi: CHEBI:30864 - - kegg.compound: C00337 - - metanetx.chemical: MNXM252 - - sbo: SBO:0000247 + - bigg.metabolite: "dhor__S" + - chebi: "CHEBI:30864" + - kegg.compound: "C00337" + - metanetx.chemical: "MNXM252" + - sbo: "SBO:0000247" - !!omap - - id: s_0062 - - name: (S)-lactaldehyde - - compartment: c - - formula: C3H6O2 + - id: "s_0062" + - name: "(S)-lactaldehyde" + - compartment: "c" + - formula: "C3H6O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: lald__L - - chebi: CHEBI:18041 - - kegg.compound: C00424 - - metanetx.chemical: MNXM2387 - - sbo: SBO:0000247 + - bigg.metabolite: "lald__L" + - chebi: "CHEBI:18041" + - kegg.compound: "C00424" + - metanetx.chemical: "MNXM2387" + - sbo: "SBO:0000247" - !!omap - - id: s_0063 - - name: (S)-lactate - - compartment: c - - formula: C3H5O3 + - id: "s_0063" + - name: "(S)-lactate" + - compartment: "c" + - formula: "C3H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: lac__L - - chebi: CHEBI:16651 - - kegg.compound: C00186 - - metanetx.chemical: MNXM179 - - sbo: SBO:0000247 + - bigg.metabolite: "lac__L" + - chebi: "CHEBI:16651" + - kegg.compound: "C00186" + - metanetx.chemical: "MNXM179" + - sbo: "SBO:0000247" - !!omap - - id: s_0064 - - name: (S)-lactate - - compartment: e - - formula: C3H5O3 + - id: "s_0064" + - name: "(S)-lactate" + - compartment: "e" + - formula: "C3H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: lac__L - - chebi: CHEBI:16651 - - kegg.compound: C00186 - - metanetx.chemical: MNXM179 - - sbo: SBO:0000247 + - bigg.metabolite: "lac__L" + - chebi: "CHEBI:16651" + - kegg.compound: "C00186" + - metanetx.chemical: "MNXM179" + - sbo: "SBO:0000247" - !!omap - - id: s_0065 - - name: (S)-lactate - - compartment: m - - formula: C3H5O3 + - id: "s_0065" + - name: "(S)-lactate" + - compartment: "m" + - formula: "C3H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: lac__L - - chebi: CHEBI:16651 - - kegg.compound: C00186 - - metanetx.chemical: MNXM179 - - sbo: SBO:0000247 + - bigg.metabolite: "lac__L" + - chebi: "CHEBI:16651" + - kegg.compound: "C00186" + - metanetx.chemical: "MNXM179" + - sbo: "SBO:0000247" - !!omap - - id: s_0066 - - name: (S)-malate - - compartment: c - - formula: C4H4O5 + - id: "s_0066" + - name: "(S)-malate" + - compartment: "c" + - formula: "C4H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: mal__L - - chebi: CHEBI:15589 - - kegg.compound: C00149 - - metanetx.chemical: MNXM98 - - sbo: SBO:0000247 + - bigg.metabolite: "mal__L" + - chebi: "CHEBI:15589" + - kegg.compound: "C00149" + - metanetx.chemical: "MNXM98" + - sbo: "SBO:0000247" - !!omap - - id: s_0067 - - name: (S)-malate - - compartment: e - - formula: C4H4O5 + - id: "s_0067" + - name: "(S)-malate" + - compartment: "e" + - formula: "C4H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: mal__L - - chebi: CHEBI:15589 - - kegg.compound: C00149 - - metanetx.chemical: MNXM98 - - sbo: SBO:0000247 + - bigg.metabolite: "mal__L" + - chebi: "CHEBI:15589" + - kegg.compound: "C00149" + - metanetx.chemical: "MNXM98" + - sbo: "SBO:0000247" - !!omap - - id: s_0068 - - name: (S)-malate - - compartment: m - - formula: C4H4O5 + - id: "s_0068" + - name: "(S)-malate" + - compartment: "m" + - formula: "C4H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: mal__L - - chebi: CHEBI:15589 - - kegg.compound: C00149 - - metanetx.chemical: MNXM98 - - sbo: SBO:0000247 + - bigg.metabolite: "mal__L" + - chebi: "CHEBI:15589" + - kegg.compound: "C00149" + - metanetx.chemical: "MNXM98" + - sbo: "SBO:0000247" - !!omap - - id: s_0069 - - name: (S)-malate - - compartment: p - - formula: C4H4O5 + - id: "s_0069" + - name: "(S)-malate" + - compartment: "p" + - formula: "C4H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: mal__L - - chebi: CHEBI:15589 - - kegg.compound: C00149 - - metanetx.chemical: MNXM98 - - sbo: SBO:0000247 + - bigg.metabolite: "mal__L" + - chebi: "CHEBI:15589" + - kegg.compound: "C00149" + - metanetx.chemical: "MNXM98" + - sbo: "SBO:0000247" - !!omap - - id: s_0075 - - name: 1,3-bisphospho-D-glycerate - - compartment: c - - formula: C3H4O10P2 + - id: "s_0075" + - name: "1,3-bisphospho-D-glycerate" + - compartment: "c" + - formula: "C3H4O10P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: 13dpg - - chebi: CHEBI:57604 - - kegg.compound: C00236 - - metanetx.chemical: MNXM261 - - sbo: SBO:0000247 + - bigg.metabolite: "13dpg" + - chebi: "CHEBI:57604" + - kegg.compound: "C00236" + - metanetx.chemical: "MNXM261" + - sbo: "SBO:0000247" - !!omap - - id: s_0076 - - name: 1-(2-carboxyphenylamino)-1-deoxy-D-ribulose 5-phosphate - - compartment: c - - formula: C12H13NO9P + - id: "s_0076" + - name: "1-(2-carboxyphenylamino)-1-deoxy-D-ribulose 5-phosphate" + - compartment: "c" + - formula: "C12H13NO9P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 2cpr5p - - chebi: CHEBI:58613 - - kegg.compound: C01302 - - metanetx.chemical: MNXM1455 - - sbo: SBO:0000247 + - bigg.metabolite: "2cpr5p" + - chebi: "CHEBI:58613" + - kegg.compound: "C01302" + - metanetx.chemical: "MNXM1455" + - sbo: "SBO:0000247" - !!omap - - id: s_0077 - - name: 1-(5-phospho-D-ribosyl)-5-[(5-phospho-D-ribosylamino)methylideneamino]imidazole-4-carboxamide - - compartment: c - - formula: C15H21N5O15P2 + - id: "s_0077" + - name: "1-(5-phospho-D-ribosyl)-5-[(5-phospho-D-ribosylamino)methylideneamino]imidazole-4-carboxamide" + - compartment: "c" + - formula: "C15H21N5O15P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: prfp - - chebi: CHEBI:58435 - - kegg.compound: C04896 - - metanetx.chemical: MNXM1397 - - sbo: SBO:0000247 + - bigg.metabolite: "prfp" + - chebi: "CHEBI:58435" + - kegg.compound: "C04896" + - metanetx.chemical: "MNXM1397" + - sbo: "SBO:0000247" - !!omap - - id: s_0078 - - name: 1-(5-phosphoribosyl)-5'-AMP - - compartment: c - - formula: C15H19N5O14P2 + - id: "s_0078" + - name: "1-(5-phosphoribosyl)-5'-AMP" + - compartment: "c" + - formula: "C15H19N5O14P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: prbamp - - chebi: CHEBI:59457 - - kegg.compound: C02741 - - metanetx.chemical: MNXM1515 - - sbo: SBO:0000247 + - bigg.metabolite: "prbamp" + - chebi: "CHEBI:59457" + - kegg.compound: "C02741" + - metanetx.chemical: "MNXM1515" + - sbo: "SBO:0000247" - !!omap - - id: s_0079 - - name: 1-(sn-glycero-3-phospho)-1D-myo-inositol - - compartment: c - - formula: C9H18O11P + - id: "s_0079" + - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol" + - compartment: "c" + - formula: "C9H18O11P" - charge: -1 - annotation: !!omap - - bigg.metabolite: g3pi - - chebi: CHEBI:58444 - - kegg.compound: C01225 - - metanetx.chemical: MNXM1517 - - sbo: SBO:0000247 + - bigg.metabolite: "g3pi" + - chebi: "CHEBI:58444" + - kegg.compound: "C01225" + - metanetx.chemical: "MNXM1517" + - sbo: "SBO:0000247" - !!omap - - id: s_0080 - - name: 1-(sn-glycero-3-phospho)-1D-myo-inositol - - compartment: e - - formula: C9H18O11P + - id: "s_0080" + - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol" + - compartment: "e" + - formula: "C9H18O11P" - charge: -1 - annotation: !!omap - - bigg.metabolite: g3pi - - chebi: CHEBI:58444 - - kegg.compound: C01225 - - metanetx.chemical: MNXM1517 - - sbo: SBO:0000247 + - bigg.metabolite: "g3pi" + - chebi: "CHEBI:58444" + - kegg.compound: "C01225" + - metanetx.chemical: "MNXM1517" + - sbo: "SBO:0000247" - !!omap - - id: s_0084 - - name: 1-acylglycerophosphocholine - - compartment: e - - formula: C9H20NO7PR + - id: "s_0084" + - name: "1-acylglycerophosphocholine" + - compartment: "e" + - formula: "C9H20NO7PR" - charge: 1 - annotation: !!omap - - bigg.metabolite: pchol_cho - - chebi: CHEBI:11230 - - kegg.compound: C04230 - - metanetx.chemical: MNXM96952 - - sbo: SBO:0000247 + - bigg.metabolite: "pchol_cho" + - chebi: "CHEBI:11230" + - kegg.compound: "C04230" + - metanetx.chemical: "MNXM96952" + - sbo: "SBO:0000247" - !!omap - - id: s_0086 - - name: 1-C-(indol-3-yl)glycerol 3-phosphate - - compartment: c - - formula: C11H12NO6P + - id: "s_0086" + - name: "1-C-(indol-3-yl)glycerol 3-phosphate" + - compartment: "c" + - formula: "C11H12NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3ig3p - - chebi: CHEBI:60820 - - kegg.compound: C03506 - - metanetx.chemical: MNXM163633 - - sbo: SBO:0000247 + - bigg.metabolite: "3ig3p" + - chebi: "CHEBI:60820" + - kegg.compound: "C03506" + - metanetx.chemical: "MNXM163633" + - sbo: "SBO:0000247" - !!omap - - id: s_0087 - - name: 1-methylnicotinamide - - compartment: c - - formula: C7H9N2O + - id: "s_0087" + - name: "1-methylnicotinamide" + - compartment: "c" + - formula: "C7H9N2O" - charge: 1 - annotation: !!omap - - bigg.metabolite: 1mncam - - chebi: CHEBI:16797 - - kegg.compound: C02918 - - metanetx.chemical: MNXM2172 - - sbo: SBO:0000247 + - bigg.metabolite: "1mncam" + - chebi: "CHEBI:16797" + - kegg.compound: "C02918" + - metanetx.chemical: "MNXM2172" + - sbo: "SBO:0000247" - !!omap - - id: s_0089 - - name: 1-phosphatidyl-1D-myo-inositol backbone - - compartment: c - - formula: C9H15O9P + - id: "s_0089" + - name: "1-phosphatidyl-1D-myo-inositol backbone" + - compartment: "c" + - formula: "C9H15O9P" - charge: -1 - annotation: !!omap - - bigg.metabolite: pail_cho - - chebi: CHEBI:57880 - - kegg.compound: C01194 - - metanetx.chemical: MNXM62 - - sbo: SBO:0000649 + - bigg.metabolite: "pail_cho" + - chebi: "CHEBI:57880" + - kegg.compound: "C01194" + - metanetx.chemical: "MNXM62" + - sbo: "SBO:0000649" - !!omap - - id: s_0116 - - name: 1-pyrroline-3-hydroxy-5-carboxylic acid - - compartment: c - - formula: C5H6NO3 + - id: "s_0116" + - name: "1-pyrroline-3-hydroxy-5-carboxylic acid" + - compartment: "c" + - formula: "C5H6NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 1p3h5c - - chebi: CHEBI:58509 - - kegg.compound: C04281 - - metanetx.chemical: MNXM114091 - - sbo: SBO:0000247 + - bigg.metabolite: "1p3h5c" + - chebi: "CHEBI:58509" + - kegg.compound: "C04281" + - metanetx.chemical: "MNXM114091" + - sbo: "SBO:0000247" - !!omap - - id: s_0117 - - name: 1-pyrroline-3-hydroxy-5-carboxylic acid - - compartment: m - - formula: C5H6NO3 + - id: "s_0117" + - name: "1-pyrroline-3-hydroxy-5-carboxylic acid" + - compartment: "m" + - formula: "C5H6NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 1p3h5c - - chebi: CHEBI:58509 - - kegg.compound: C04281 - - metanetx.chemical: MNXM114091 - - sbo: SBO:0000247 + - bigg.metabolite: "1p3h5c" + - chebi: "CHEBI:58509" + - kegg.compound: "C04281" + - metanetx.chemical: "MNXM114091" + - sbo: "SBO:0000247" - !!omap - - id: s_0118 - - name: 1-pyrroline-5-carboxylate - - compartment: c - - formula: C5H6NO2 + - id: "s_0118" + - name: "1-pyrroline-5-carboxylate" + - compartment: "c" + - formula: "C5H6NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: 1pyr5c - - chebi: CHEBI:15893 - - kegg.compound: C04322 - - metanetx.chemical: MNXM1617 - - sbo: SBO:0000247 + - bigg.metabolite: "1pyr5c" + - chebi: "CHEBI:15893" + - kegg.compound: "C04322" + - metanetx.chemical: "MNXM1617" + - sbo: "SBO:0000247" - !!omap - - id: s_0119 - - name: 1-pyrroline-5-carboxylate - - compartment: m - - formula: C5H6NO2 + - id: "s_0119" + - name: "1-pyrroline-5-carboxylate" + - compartment: "m" + - formula: "C5H6NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: 1pyr5c - - chebi: CHEBI:15893 - - kegg.compound: C04322 - - metanetx.chemical: MNXM1617 - - sbo: SBO:0000247 + - bigg.metabolite: "1pyr5c" + - chebi: "CHEBI:15893" + - kegg.compound: "C04322" + - metanetx.chemical: "MNXM1617" + - sbo: "SBO:0000247" - !!omap - - id: s_0120 - - name: 10-formyl-THF - - compartment: c - - formula: C20H21N7O7 + - id: "s_0120" + - name: "10-formyl-THF" + - compartment: "c" + - formula: "C20H21N7O7" - charge: -2 - annotation: !!omap - - bigg.metabolite: 10fthf - - chebi: CHEBI:57454 - - kegg.compound: C00234 - - metanetx.chemical: MNXM237 - - sbo: SBO:0000247 + - bigg.metabolite: "10fthf" + - chebi: "CHEBI:57454" + - kegg.compound: "C00234" + - metanetx.chemical: "MNXM237" + - sbo: "SBO:0000247" - !!omap - - id: s_0121 - - name: 10-formyl-THF - - compartment: m - - formula: C20H21N7O7 + - id: "s_0121" + - name: "10-formyl-THF" + - compartment: "m" + - formula: "C20H21N7O7" - charge: -2 - annotation: !!omap - - bigg.metabolite: 10fthf - - chebi: CHEBI:57454 - - kegg.compound: C00234 - - metanetx.chemical: MNXM237 - - sbo: SBO:0000247 + - bigg.metabolite: "10fthf" + - chebi: "CHEBI:57454" + - kegg.compound: "C00234" + - metanetx.chemical: "MNXM237" + - sbo: "SBO:0000247" - !!omap - - id: s_0122 - - name: 14-demethyllanosterol - - compartment: c - - formula: C29H48O + - id: "s_0122" + - name: "14-demethyllanosterol" + - compartment: "c" + - formula: "C29H48O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 44mzym - - chebi: CHEBI:18364 - - kegg.compound: C05108 - - metanetx.chemical: MNXM913 - - sbo: SBO:0000247 + - bigg.metabolite: "44mzym" + - chebi: "CHEBI:18364" + - kegg.compound: "C05108" + - metanetx.chemical: "MNXM913" + - sbo: "SBO:0000247" - !!omap - - id: s_0123 - - name: 1D-myo-inositol 1,3,4,5-tetrakisphosphate - - compartment: n - - formula: C6H8O18P4 + - id: "s_0123" + - name: "1D-myo-inositol 1,3,4,5-tetrakisphosphate" + - compartment: "n" + - formula: "C6H8O18P4" - charge: -8 - annotation: !!omap - - bigg.metabolite: mi1345p - - chebi: CHEBI:57895 - - kegg.compound: C01272 - - metanetx.chemical: MNXM624 - - sbo: SBO:0000247 + - bigg.metabolite: "mi1345p" + - chebi: "CHEBI:57895" + - kegg.compound: "C01272" + - metanetx.chemical: "MNXM624" + - sbo: "SBO:0000247" - !!omap - - id: s_0124 - - name: 1D-myo-inositol 1,4,5,6-tetrakisphosphate - - compartment: n - - formula: C6H8O18P4 + - id: "s_0124" + - name: "1D-myo-inositol 1,4,5,6-tetrakisphosphate" + - compartment: "n" + - formula: "C6H8O18P4" - charge: -8 - annotation: !!omap - - bigg.metabolite: mi3456p - - chebi: CHEBI:57627 - - kegg.compound: C11555 - - metanetx.chemical: MNXM1620 - - sbo: SBO:0000247 + - bigg.metabolite: "mi3456p" + - chebi: "CHEBI:57627" + - kegg.compound: "C11555" + - metanetx.chemical: "MNXM1620" + - sbo: "SBO:0000247" - !!omap - - id: s_0125 - - name: 1D-myo-inositol 1,4,5-trisphosphate - - compartment: n - - formula: C6H9O15P3 + - id: "s_0125" + - name: "1D-myo-inositol 1,4,5-trisphosphate" + - compartment: "n" + - formula: "C6H9O15P3" - charge: -6 - annotation: !!omap - - bigg.metabolite: mi145p - - chebi: CHEBI:203600 - - kegg.compound: C01245 - - metanetx.chemical: MNXM200 - - sbo: SBO:0000247 + - bigg.metabolite: "mi145p" + - chebi: "CHEBI:203600" + - kegg.compound: "C01245" + - metanetx.chemical: "MNXM200" + - sbo: "SBO:0000247" - !!omap - - id: s_0126 - - name: 1D-myo-inositol 1-phosphate - - compartment: c - - formula: C6H11O9P + - id: "s_0126" + - name: "1D-myo-inositol 1-phosphate" + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: mi1p__D - - chebi: CHEBI:58433 - - kegg.compound: C01177 - - metanetx.chemical: MNXM646 - - sbo: SBO:0000247 + - bigg.metabolite: "mi1p__D" + - chebi: "CHEBI:58433" + - kegg.compound: "C01177" + - metanetx.chemical: "MNXM646" + - sbo: "SBO:0000247" - !!omap - - id: s_0127 - - name: 1D-myo-inositol 1-phosphate - - compartment: er - - formula: C6H11O9P + - id: "s_0127" + - name: "1D-myo-inositol 1-phosphate" + - compartment: "er" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: mi1p__D - - chebi: CHEBI:58433 - - kegg.compound: C01177 - - metanetx.chemical: MNXM646 - - sbo: SBO:0000247 + - bigg.metabolite: "mi1p__D" + - chebi: "CHEBI:58433" + - kegg.compound: "C01177" + - metanetx.chemical: "MNXM646" + - sbo: "SBO:0000247" - !!omap - - id: s_0129 - - name: 1D-myo-inositol 3-phosphate - - compartment: m - - formula: C6H11O9P + - id: "s_0129" + - name: "1D-myo-inositol 3-phosphate" + - compartment: "m" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: mi3p__D - - chebi: CHEBI:58401 - - kegg.compound: C04006 - - metanetx.chemical: MNXM540 - - sbo: SBO:0000247 + - bigg.metabolite: "mi3p__D" + - chebi: "CHEBI:58401" + - kegg.compound: "C04006" + - metanetx.chemical: "MNXM540" + - sbo: "SBO:0000247" - !!omap - - id: s_0131 - - name: 2',3'-cyclic AMP - - compartment: c - - formula: C10H11N5O6P + - id: "s_0131" + - name: "2',3'-cyclic AMP" + - compartment: "c" + - formula: "C10H11N5O6P" - charge: -1 - annotation: !!omap - - bigg.metabolite: 23camp - - chebi: CHEBI:60879 - - kegg.compound: C02353 - - metanetx.chemical: MNXM2598 - - sbo: SBO:0000247 + - bigg.metabolite: "23camp" + - chebi: "CHEBI:60879" + - kegg.compound: "C02353" + - metanetx.chemical: "MNXM2598" + - sbo: "SBO:0000247" - !!omap - - id: s_0132 - - name: 2'-deoxyadenosine - - compartment: c - - formula: C10H13N5O3 + - id: "s_0132" + - name: "2'-deoxyadenosine" + - compartment: "c" + - formula: "C10H13N5O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: dad_2 - - chebi: CHEBI:17256 - - kegg.compound: C00559 - - metanetx.chemical: MNXM625 - - sbo: SBO:0000247 + - bigg.metabolite: "dad_2" + - chebi: "CHEBI:17256" + - kegg.compound: "C00559" + - metanetx.chemical: "MNXM625" + - sbo: "SBO:0000247" - !!omap - - id: s_0133 - - name: 2'-deoxyadenosine - - compartment: e - - formula: C10H13N5O3 + - id: "s_0133" + - name: "2'-deoxyadenosine" + - compartment: "e" + - formula: "C10H13N5O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: dad_2 - - chebi: CHEBI:17256 - - kegg.compound: C00559 - - metanetx.chemical: MNXM625 - - sbo: SBO:0000247 + - bigg.metabolite: "dad_2" + - chebi: "CHEBI:17256" + - kegg.compound: "C00559" + - metanetx.chemical: "MNXM625" + - sbo: "SBO:0000247" - !!omap - - id: s_0134 - - name: 2'-deoxyguanosine - - compartment: c - - formula: C10H13N5O4 + - id: "s_0134" + - name: "2'-deoxyguanosine" + - compartment: "c" + - formula: "C10H13N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: dgsn - - chebi: CHEBI:17172 - - kegg.compound: C00330 - - metanetx.chemical: MNXM647 - - sbo: SBO:0000247 + - bigg.metabolite: "dgsn" + - chebi: "CHEBI:17172" + - kegg.compound: "C00330" + - metanetx.chemical: "MNXM647" + - sbo: "SBO:0000247" - !!omap - - id: s_0135 - - name: 2'-deoxyguanosine - - compartment: e - - formula: C10H13N5O4 + - id: "s_0135" + - name: "2'-deoxyguanosine" + - compartment: "e" + - formula: "C10H13N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: dgsn - - chebi: CHEBI:17172 - - kegg.compound: C00330 - - metanetx.chemical: MNXM647 - - sbo: SBO:0000247 + - bigg.metabolite: "dgsn" + - chebi: "CHEBI:17172" + - kegg.compound: "C00330" + - metanetx.chemical: "MNXM647" + - sbo: "SBO:0000247" - !!omap - - id: s_0136 - - name: 2'-deoxyinosine - - compartment: c - - formula: C10H12N4O4 + - id: "s_0136" + - name: "2'-deoxyinosine" + - compartment: "c" + - formula: "C10H12N4O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: din - - chebi: CHEBI:28997 - - kegg.compound: C05512 - - metanetx.chemical: MNXM935 - - sbo: SBO:0000247 + - bigg.metabolite: "din" + - chebi: "CHEBI:28997" + - kegg.compound: "C05512" + - metanetx.chemical: "MNXM935" + - sbo: "SBO:0000247" - !!omap - - id: s_0137 - - name: 2'-deoxyinosine - - compartment: e - - formula: C10H12N4O4 + - id: "s_0137" + - name: "2'-deoxyinosine" + - compartment: "e" + - formula: "C10H12N4O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: din - - chebi: CHEBI:28997 - - kegg.compound: C05512 - - metanetx.chemical: MNXM935 - - sbo: SBO:0000247 + - bigg.metabolite: "din" + - chebi: "CHEBI:28997" + - kegg.compound: "C05512" + - metanetx.chemical: "MNXM935" + - sbo: "SBO:0000247" - !!omap - - id: s_0138 - - name: 2'-deoxyuridine - - compartment: c - - formula: C9H12N2O5 + - id: "s_0138" + - name: "2'-deoxyuridine" + - compartment: "c" + - formula: "C9H12N2O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: duri - - chebi: CHEBI:16450 - - kegg.compound: C00526 - - metanetx.chemical: MNXM492 - - sbo: SBO:0000247 + - bigg.metabolite: "duri" + - chebi: "CHEBI:16450" + - kegg.compound: "C00526" + - metanetx.chemical: "MNXM492" + - sbo: "SBO:0000247" - !!omap - - id: s_0139 - - name: 2'-deoxyuridine - - compartment: e - - formula: C9H12N2O5 + - id: "s_0139" + - name: "2'-deoxyuridine" + - compartment: "e" + - formula: "C9H12N2O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: duri - - chebi: CHEBI:16450 - - kegg.compound: C00526 - - metanetx.chemical: MNXM492 - - sbo: SBO:0000247 - - !!omap - - id: s_0140 - - name: 2,3-bisphospho-D-glyceric acid - - compartment: c - - formula: C3H3O10P2 + - bigg.metabolite: "duri" + - chebi: "CHEBI:16450" + - kegg.compound: "C00526" + - metanetx.chemical: "MNXM492" + - sbo: "SBO:0000247" + - !!omap + - id: "s_0140" + - name: "2,3-bisphospho-D-glyceric acid" + - compartment: "c" + - formula: "C3H3O10P2" - charge: -5 - annotation: !!omap - - bigg.metabolite: 23dpg - - chebi: CHEBI:58248 - - kegg.compound: C01159 - - metanetx.chemical: MNXM892 - - sbo: SBO:0000247 + - bigg.metabolite: "23dpg" + - chebi: "CHEBI:58248" + - kegg.compound: "C01159" + - metanetx.chemical: "MNXM892" + - sbo: "SBO:0000247" - !!omap - - id: s_0141 - - name: 2,5-diamino-4-hydroxy-6-(5-phosphoribosylamino)pyrimidine - - compartment: c - - formula: C9H14N5O8P + - id: "s_0141" + - name: "2,5-diamino-4-hydroxy-6-(5-phosphoribosylamino)pyrimidine" + - compartment: "c" + - formula: "C9H14N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 25drapp - - chebi: CHEBI:58614 - - kegg.compound: C01304 - - metanetx.chemical: MNXM648 - - sbo: SBO:0000247 + - bigg.metabolite: "25drapp" + - chebi: "CHEBI:58614" + - kegg.compound: "C01304" + - metanetx.chemical: "MNXM648" + - sbo: "SBO:0000247" - !!omap - - id: s_0142 - - name: 2,5-diamino-6-(5-phosphono)ribitylamino-4(3H)-pyrimidinone - - compartment: c - - formula: C9H16N5O8P + - id: "s_0142" + - name: "2,5-diamino-6-(5-phosphono)ribitylamino-4(3H)-pyrimidinone" + - compartment: "c" + - formula: "C9H16N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 25dthpp - - chebi: CHEBI:52957 - - kegg.compound: C18910 - - metanetx.chemical: MNXM1099 - - sbo: SBO:0000247 + - bigg.metabolite: "25dthpp" + - chebi: "CHEBI:52957" + - kegg.compound: "C18910" + - metanetx.chemical: "MNXM1099" + - sbo: "SBO:0000247" - !!omap - - id: s_0143 - - name: 2-(3-amino-3-carboxypropyl)-L-histidine - - compartment: c - - formula: C10H16N4O4 + - id: "s_0143" + - name: "2-(3-amino-3-carboxypropyl)-L-histidine" + - compartment: "c" + - formula: "C10H16N4O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: caphis - - chebi: CHEBI:17144 - - kegg.compound: C04441 - - metanetx.chemical: MNXM3804 - - sbo: SBO:0000247 + - bigg.metabolite: "caphis" + - chebi: "CHEBI:17144" + - kegg.compound: "C04441" + - metanetx.chemical: "MNXM3804" + - sbo: "SBO:0000247" - !!omap - - id: s_0144 - - name: 2-[3-carboxy-3-(methylammonio)propyl]-L-histidine - - compartment: c - - formula: C11H18N4O4 + - id: "s_0144" + - name: "2-[3-carboxy-3-(methylammonio)propyl]-L-histidine" + - compartment: "c" + - formula: "C11H18N4O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: cmaphis - - chebi: CHEBI:57784 - - kegg.compound: C04692 - - metanetx.chemical: MNXM3805 - - sbo: SBO:0000247 + - bigg.metabolite: "cmaphis" + - chebi: "CHEBI:57784" + - kegg.compound: "C04692" + - metanetx.chemical: "MNXM3805" + - sbo: "SBO:0000247" - !!omap - - id: s_0145 - - name: 2-acetamido-5-oxopentanoate - - compartment: m - - formula: C7H10NO4 + - id: "s_0145" + - name: "2-acetamido-5-oxopentanoate" + - compartment: "m" + - formula: "C7H10NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: acg5sa - - chebi: CHEBI:29123 - - kegg.compound: C01250 - - metanetx.chemical: MNXM1062 - - sbo: SBO:0000247 + - bigg.metabolite: "acg5sa" + - chebi: "CHEBI:29123" + - kegg.compound: "C01250" + - metanetx.chemical: "MNXM1062" + - sbo: "SBO:0000247" - !!omap - - id: s_0146 - - name: 2-acetyllactic acid - - compartment: m - - formula: C5H7O4 + - id: "s_0146" + - name: "2-acetyllactic acid" + - compartment: "m" + - formula: "C5H7O4" - charge: -1 - annotation: !!omap - - chebi: CHEBI:57774 - - kegg.compound: C00900 - - metanetx.chemical: MNXM426 - - sbo: SBO:0000247 + - chebi: "CHEBI:57774" + - kegg.compound: "C00900" + - metanetx.chemical: "MNXM426" + - sbo: "SBO:0000247" - !!omap - - id: s_0147 - - name: 2-amino-3-carboxymuconate-6-semialdehyde - - compartment: c - - formula: C7H6NO5 + - id: "s_0147" + - name: "2-amino-3-carboxymuconate-6-semialdehyde" + - compartment: "c" + - formula: "C7H6NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: cmusa - - chebi: CHEBI:29044 - - kegg.compound: C04409 - - metanetx.chemical: MNXM1372 - - sbo: SBO:0000247 + - bigg.metabolite: "cmusa" + - chebi: "CHEBI:29044" + - kegg.compound: "C04409" + - metanetx.chemical: "MNXM1372" + - sbo: "SBO:0000247" - !!omap - - id: s_0148 - - name: 2-amino-6-(hydroxymethyl)-7,8-dihydropteridin-4-ol - - compartment: m - - formula: C7H9N5O2 + - id: "s_0148" + - name: "2-amino-6-(hydroxymethyl)-7,8-dihydropteridin-4-ol" + - compartment: "m" + - formula: "C7H9N5O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: 6hmhpt - - chebi: CHEBI:17083 - - kegg.compound: C01300 - - metanetx.chemical: MNXM937 - - sbo: SBO:0000247 + - bigg.metabolite: "6hmhpt" + - chebi: "CHEBI:17083" + - kegg.compound: "C01300" + - metanetx.chemical: "MNXM937" + - sbo: "SBO:0000247" - !!omap - - id: s_0149 - - name: 2-dehydropantoate - - compartment: c - - formula: C6H9O4 + - id: "s_0149" + - name: "2-dehydropantoate" + - compartment: "c" + - formula: "C6H9O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: 2dhp - - chebi: CHEBI:11561 - - kegg.compound: C00966 - - metanetx.chemical: MNXM959 - - sbo: SBO:0000247 + - bigg.metabolite: "2dhp" + - chebi: "CHEBI:11561" + - kegg.compound: "C00966" + - metanetx.chemical: "MNXM959" + - sbo: "SBO:0000247" - !!omap - - id: s_0150 - - name: 2-dehydropantoate - - compartment: m - - formula: C6H9O4 + - id: "s_0150" + - name: "2-dehydropantoate" + - compartment: "m" + - formula: "C6H9O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: 2dhp - - chebi: CHEBI:11561 - - kegg.compound: C00966 - - metanetx.chemical: MNXM959 - - sbo: SBO:0000247 + - bigg.metabolite: "2dhp" + - chebi: "CHEBI:11561" + - kegg.compound: "C00966" + - metanetx.chemical: "MNXM959" + - sbo: "SBO:0000247" - !!omap - - id: s_0152 - - name: 2-deoxy-D-ribose - - compartment: c - - formula: C5H10O4 + - id: "s_0152" + - name: "2-deoxy-D-ribose" + - compartment: "c" + - formula: "C5H10O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: drib - - chebi: CHEBI:28816 - - kegg.compound: C01801 - - metanetx.chemical: MNXM2474 - - sbo: SBO:0000247 + - bigg.metabolite: "drib" + - chebi: "CHEBI:28816" + - kegg.compound: "C01801" + - metanetx.chemical: "MNXM2474" + - sbo: "SBO:0000247" - !!omap - - id: s_0153 - - name: 2-deoxy-D-ribose 5-phosphate - - compartment: c - - formula: C5H9O7P + - id: "s_0153" + - name: "2-deoxy-D-ribose 5-phosphate" + - compartment: "c" + - formula: "C5H9O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 2dr5p - - chebi: CHEBI:57651 - - kegg.compound: C00673 - - metanetx.chemical: MNXM2179 - - sbo: SBO:0000247 + - bigg.metabolite: "2dr5p" + - chebi: "CHEBI:57651" + - kegg.compound: "C00673" + - metanetx.chemical: "MNXM2179" + - sbo: "SBO:0000247" - !!omap - - id: s_0154 - - name: 2-hexaprenyl-5-hydroxy-6-methoxy-3-methyl-1,4-benzoquinone - - compartment: m - - formula: C38H56O4 + - id: "s_0154" + - name: "2-hexaprenyl-5-hydroxy-6-methoxy-3-methyl-1,4-benzoquinone" + - compartment: "m" + - formula: "C38H56O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2hpmhmbq - - chebi: CHEBI:28753 - - kegg.compound: C05805 - - metanetx.chemical: MNXM5466 - - sbo: SBO:0000247 + - bigg.metabolite: "2hpmhmbq" + - chebi: "CHEBI:28753" + - kegg.compound: "C05805" + - metanetx.chemical: "MNXM5466" + - sbo: "SBO:0000247" - !!omap - - id: s_0155 - - name: 2-hexaprenyl-6-methoxy-1,4-benzoquinone - - compartment: m - - formula: C37H54O3 + - id: "s_0155" + - name: "2-hexaprenyl-6-methoxy-1,4-benzoquinone" + - compartment: "m" + - formula: "C37H54O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2hp6mbq - - chebi: CHEBI:27752 - - kegg.compound: C05803 - - metanetx.chemical: MNXM6707 - - sbo: SBO:0000247 + - bigg.metabolite: "2hp6mbq" + - chebi: "CHEBI:27752" + - kegg.compound: "C05803" + - metanetx.chemical: "MNXM6707" + - sbo: "SBO:0000247" - !!omap - - id: s_0156 - - name: 2-hexaprenyl-6-methoxy-3-methyl-1,4-benzoquinone - - compartment: m - - formula: C38H56O3 + - id: "s_0156" + - name: "2-hexaprenyl-6-methoxy-3-methyl-1,4-benzoquinone" + - compartment: "m" + - formula: "C38H56O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2hpmmbq - - chebi: CHEBI:28711 - - kegg.compound: C05804 - - metanetx.chemical: MNXM6067 - - sbo: SBO:0000247 + - bigg.metabolite: "2hpmmbq" + - chebi: "CHEBI:28711" + - kegg.compound: "C05804" + - metanetx.chemical: "MNXM6067" + - sbo: "SBO:0000247" - !!omap - - id: s_0157 - - name: 2-hexaprenyl-6-methoxyphenol - - compartment: m - - formula: C37H56O2 + - id: "s_0157" + - name: "2-hexaprenyl-6-methoxyphenol" + - compartment: "m" + - formula: "C37H56O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2hp6mp - - chebi: CHEBI:1109 - - kegg.compound: C05802 - - metanetx.chemical: MNXM4291 - - sbo: SBO:0000247 + - bigg.metabolite: "2hp6mp" + - chebi: "CHEBI:1109" + - kegg.compound: "C05802" + - metanetx.chemical: "MNXM4291" + - sbo: "SBO:0000247" - !!omap - - id: s_0158 - - name: 2-hydroxy-3-oxobutyl phosphate - - compartment: c - - formula: C4H7O6P + - id: "s_0158" + - name: "2-hydroxy-3-oxobutyl phosphate" + - compartment: "c" + - formula: "C4H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: db4p - - chebi: CHEBI:50606 - - kegg.compound: C15556 - - metanetx.chemical: MNXM2323 - - sbo: SBO:0000247 + - bigg.metabolite: "db4p" + - chebi: "CHEBI:50606" + - kegg.compound: "C15556" + - metanetx.chemical: "MNXM2323" + - sbo: "SBO:0000247" - !!omap - - id: s_0161 - - name: 2-hydroxyhexadecanal - - compartment: er - - formula: C16H32O2 + - id: "s_0161" + - name: "2-hydroxyhexadecanal" + - compartment: "er" + - formula: "C16H32O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2hhxdal - - chebi: CHEBI:50626 - - metanetx.chemical: MNXM35167 - - sbo: SBO:0000247 + - bigg.metabolite: "2hhxdal" + - chebi: "CHEBI:50626" + - metanetx.chemical: "MNXM35167" + - sbo: "SBO:0000247" - !!omap - - id: s_0162 - - name: 2-isopropylmalate - - compartment: c - - formula: C7H10O5 + - id: "s_0162" + - name: "2-isopropylmalate" + - compartment: "c" + - formula: "C7H10O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3c3hmp - - chebi: CHEBI:28107 - - kegg.compound: C02504 - - metanetx.chemical: MNXM164143 - - sbo: SBO:0000247 + - bigg.metabolite: "3c3hmp" + - chebi: "CHEBI:28107" + - kegg.compound: "C02504" + - metanetx.chemical: "MNXM164143" + - sbo: "SBO:0000247" - !!omap - - id: s_0163 - - name: 2-isopropylmalate - - compartment: e - - formula: C7H10O5 + - id: "s_0163" + - name: "2-isopropylmalate" + - compartment: "e" + - formula: "C7H10O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3c3hmp - - chebi: CHEBI:28107 - - kegg.compound: C02504 - - metanetx.chemical: MNXM164143 - - sbo: SBO:0000247 + - bigg.metabolite: "3c3hmp" + - chebi: "CHEBI:28107" + - kegg.compound: "C02504" + - metanetx.chemical: "MNXM164143" + - sbo: "SBO:0000247" - !!omap - - id: s_0164 - - name: 2-isopropylmalate - - compartment: m - - formula: C7H10O5 + - id: "s_0164" + - name: "2-isopropylmalate" + - compartment: "m" + - formula: "C7H10O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3c3hmp - - chebi: CHEBI:28107 - - kegg.compound: C02504 - - metanetx.chemical: MNXM164143 - - sbo: SBO:0000247 + - bigg.metabolite: "3c3hmp" + - chebi: "CHEBI:28107" + - kegg.compound: "C02504" + - metanetx.chemical: "MNXM164143" + - sbo: "SBO:0000247" - !!omap - - id: s_0165 - - name: 2-isopropylmaleic acid - - compartment: c - - formula: C7H8O4 + - id: "s_0165" + - name: "2-isopropylmaleic acid" + - compartment: "c" + - formula: "C7H8O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: 2ippm - - chebi: CHEBI:58085 - - kegg.compound: C02631 - - metanetx.chemical: MNXM1706 - - sbo: SBO:0000247 + - bigg.metabolite: "2ippm" + - chebi: "CHEBI:58085" + - kegg.compound: "C02631" + - metanetx.chemical: "MNXM1706" + - sbo: "SBO:0000247" - !!omap - - id: s_0166 - - name: 2-methylbutanal - - compartment: c - - formula: C5H10O + - id: "s_0166" + - name: "2-methylbutanal" + - compartment: "c" + - formula: "C5H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2mbald - - chebi: CHEBI:16182 - - kegg.compound: C02223 - - metanetx.chemical: MNXM2604 - - sbo: SBO:0000247 + - bigg.metabolite: "2mbald" + - chebi: "CHEBI:16182" + - kegg.compound: "C02223" + - metanetx.chemical: "MNXM2604" + - sbo: "SBO:0000247" - !!omap - - id: s_0167 - - name: 2-methylbutanal - - compartment: e - - formula: C5H10O + - id: "s_0167" + - name: "2-methylbutanal" + - compartment: "e" + - formula: "C5H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2mbald - - chebi: CHEBI:16182 - - kegg.compound: C02223 - - metanetx.chemical: MNXM2604 - - sbo: SBO:0000247 + - bigg.metabolite: "2mbald" + - chebi: "CHEBI:16182" + - kegg.compound: "C02223" + - metanetx.chemical: "MNXM2604" + - sbo: "SBO:0000247" - !!omap - - id: s_0168 - - name: 2-methylbutanal - - compartment: m - - formula: C5H10O + - id: "s_0168" + - name: "2-methylbutanal" + - compartment: "m" + - formula: "C5H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2mbald - - chebi: CHEBI:16182 - - kegg.compound: C02223 - - metanetx.chemical: MNXM2604 - - sbo: SBO:0000247 + - bigg.metabolite: "2mbald" + - chebi: "CHEBI:16182" + - kegg.compound: "C02223" + - metanetx.chemical: "MNXM2604" + - sbo: "SBO:0000247" - !!omap - - id: s_0169 - - name: 2-methylbutanol - - compartment: c - - formula: C5H12O + - id: "s_0169" + - name: "2-methylbutanol" + - compartment: "c" + - formula: "C5H12O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2mbtoh - - chebi: CHEBI:48945 - - metanetx.chemical: MNXM5476 - - sbo: SBO:0000247 + - bigg.metabolite: "2mbtoh" + - chebi: "CHEBI:48945" + - metanetx.chemical: "MNXM5476" + - sbo: "SBO:0000247" - !!omap - - id: s_0170 - - name: 2-methylbutanol - - compartment: e - - formula: C5H12O + - id: "s_0170" + - name: "2-methylbutanol" + - compartment: "e" + - formula: "C5H12O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2mbtoh - - chebi: CHEBI:48945 - - metanetx.chemical: MNXM5476 - - sbo: SBO:0000247 + - bigg.metabolite: "2mbtoh" + - chebi: "CHEBI:48945" + - metanetx.chemical: "MNXM5476" + - sbo: "SBO:0000247" - !!omap - - id: s_0171 - - name: 2-methylbutanol - - compartment: m - - formula: C5H12O + - id: "s_0171" + - name: "2-methylbutanol" + - compartment: "m" + - formula: "C5H12O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2mbtoh - - chebi: CHEBI:48945 - - metanetx.chemical: MNXM5476 - - sbo: SBO:0000247 + - bigg.metabolite: "2mbtoh" + - chebi: "CHEBI:48945" + - metanetx.chemical: "MNXM5476" + - sbo: "SBO:0000247" - !!omap - - id: s_0172 - - name: 2-methylbutyl acetate - - compartment: c - - formula: C7H14O2 + - id: "s_0172" + - name: "2-methylbutyl acetate" + - compartment: "c" + - formula: "C7H14O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2mbac - - chebi: CHEBI:50585 - - metanetx.chemical: MNXM35277 - - sbo: SBO:0000247 + - bigg.metabolite: "2mbac" + - chebi: "CHEBI:50585" + - metanetx.chemical: "MNXM35277" + - sbo: "SBO:0000247" - !!omap - - id: s_0173 - - name: 2-methylbutyl acetate - - compartment: e - - formula: C7H14O2 + - id: "s_0173" + - name: "2-methylbutyl acetate" + - compartment: "e" + - formula: "C7H14O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2mbac - - chebi: CHEBI:50585 - - metanetx.chemical: MNXM35277 - - sbo: SBO:0000247 + - bigg.metabolite: "2mbac" + - chebi: "CHEBI:50585" + - metanetx.chemical: "MNXM35277" + - sbo: "SBO:0000247" - !!omap - - id: s_0174 - - name: 2-methylcitrate - - compartment: m - - formula: C7H7O7 + - id: "s_0174" + - name: "2-methylcitrate" + - compartment: "m" + - formula: "C7H7O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: 2mcit - - chebi: CHEBI:15598 - - kegg.compound: C02225 - - metanetx.chemical: MNXM90279 - - sbo: SBO:0000247 + - bigg.metabolite: "2mcit" + - chebi: "CHEBI:15598" + - kegg.compound: "C02225" + - metanetx.chemical: "MNXM90279" + - sbo: "SBO:0000247" - !!omap - - id: s_0176 - - name: 2-oxoadipic acid - - compartment: c - - formula: C6H6O5 + - id: "s_0176" + - name: "2-oxoadipic acid" + - compartment: "c" + - formula: "C6H6O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: 2oxoadp - - chebi: CHEBI:57499 - - kegg.compound: C00322 - - metanetx.chemical: MNXM263 - - sbo: SBO:0000247 + - bigg.metabolite: "2oxoadp" + - chebi: "CHEBI:57499" + - kegg.compound: "C00322" + - metanetx.chemical: "MNXM263" + - sbo: "SBO:0000247" - !!omap - - id: s_0177 - - name: 2-oxoadipic acid - - compartment: m - - formula: C6H6O5 + - id: "s_0177" + - name: "2-oxoadipic acid" + - compartment: "m" + - formula: "C6H6O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: 2oxoadp - - chebi: CHEBI:57499 - - kegg.compound: C00322 - - metanetx.chemical: MNXM263 - - sbo: SBO:0000247 + - bigg.metabolite: "2oxoadp" + - chebi: "CHEBI:57499" + - kegg.compound: "C00322" + - metanetx.chemical: "MNXM263" + - sbo: "SBO:0000247" - !!omap - - id: s_0178 - - name: 2-oxobutanoate - - compartment: c - - formula: C4H5O3 + - id: "s_0178" + - name: "2-oxobutanoate" + - compartment: "c" + - formula: "C4H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 2obut - - chebi: CHEBI:16763 - - kegg.compound: C00109 - - metanetx.chemical: MNXM159 - - sbo: SBO:0000247 + - bigg.metabolite: "2obut" + - chebi: "CHEBI:16763" + - kegg.compound: "C00109" + - metanetx.chemical: "MNXM159" + - sbo: "SBO:0000247" - !!omap - - id: s_0179 - - name: 2-oxobutanoate - - compartment: m - - formula: C4H5O3 + - id: "s_0179" + - name: "2-oxobutanoate" + - compartment: "m" + - formula: "C4H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 2obut - - chebi: CHEBI:16763 - - kegg.compound: C00109 - - metanetx.chemical: MNXM159 - - sbo: SBO:0000247 + - bigg.metabolite: "2obut" + - chebi: "CHEBI:16763" + - kegg.compound: "C00109" + - metanetx.chemical: "MNXM159" + - sbo: "SBO:0000247" - !!omap - - id: s_0180 - - name: 2-oxoglutarate - - compartment: c - - formula: C5H4O5 + - id: "s_0180" + - name: "2-oxoglutarate" + - compartment: "c" + - formula: "C5H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: akg - - chebi: CHEBI:16810 - - kegg.compound: C00026 - - metanetx.chemical: MNXM20 - - sbo: SBO:0000247 + - bigg.metabolite: "akg" + - chebi: "CHEBI:16810" + - kegg.compound: "C00026" + - metanetx.chemical: "MNXM20" + - sbo: "SBO:0000247" - !!omap - - id: s_0181 - - name: 2-oxoglutarate - - compartment: e - - formula: C5H4O5 + - id: "s_0181" + - name: "2-oxoglutarate" + - compartment: "e" + - formula: "C5H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: akg - - chebi: CHEBI:16810 - - kegg.compound: C00026 - - metanetx.chemical: MNXM20 - - sbo: SBO:0000247 + - bigg.metabolite: "akg" + - chebi: "CHEBI:16810" + - kegg.compound: "C00026" + - metanetx.chemical: "MNXM20" + - sbo: "SBO:0000247" - !!omap - - id: s_0182 - - name: 2-oxoglutarate - - compartment: m - - formula: C5H4O5 + - id: "s_0182" + - name: "2-oxoglutarate" + - compartment: "m" + - formula: "C5H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: akg - - chebi: CHEBI:16810 - - kegg.compound: C00026 - - metanetx.chemical: MNXM20 - - sbo: SBO:0000247 + - bigg.metabolite: "akg" + - chebi: "CHEBI:16810" + - kegg.compound: "C00026" + - metanetx.chemical: "MNXM20" + - sbo: "SBO:0000247" - !!omap - - id: s_0183 - - name: 2-oxoglutarate - - compartment: n - - formula: C5H4O5 + - id: "s_0183" + - name: "2-oxoglutarate" + - compartment: "n" + - formula: "C5H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: akg - - chebi: CHEBI:16810 - - kegg.compound: C00026 - - metanetx.chemical: MNXM20 - - sbo: SBO:0000247 + - bigg.metabolite: "akg" + - chebi: "CHEBI:16810" + - kegg.compound: "C00026" + - metanetx.chemical: "MNXM20" + - sbo: "SBO:0000247" - !!omap - - id: s_0184 - - name: 2-oxoglutarate - - compartment: p - - formula: C5H4O5 + - id: "s_0184" + - name: "2-oxoglutarate" + - compartment: "p" + - formula: "C5H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: akg - - chebi: CHEBI:16810 - - kegg.compound: C00026 - - metanetx.chemical: MNXM20 - - sbo: SBO:0000247 + - bigg.metabolite: "akg" + - chebi: "CHEBI:16810" + - kegg.compound: "C00026" + - metanetx.chemical: "MNXM20" + - sbo: "SBO:0000247" - !!omap - - id: s_0185 - - name: 2-phenylethanol - - compartment: c - - formula: C8H10O + - id: "s_0185" + - name: "2-phenylethanol" + - compartment: "c" + - formula: "C8H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2phetoh - - chebi: CHEBI:49000 - - kegg.compound: C05853 - - metanetx.chemical: MNXM2476 - - sbo: SBO:0000247 + - bigg.metabolite: "2phetoh" + - chebi: "CHEBI:49000" + - kegg.compound: "C05853" + - metanetx.chemical: "MNXM2476" + - sbo: "SBO:0000247" - !!omap - - id: s_0186 - - name: 2-phenylethanol - - compartment: e - - formula: C8H10O + - id: "s_0186" + - name: "2-phenylethanol" + - compartment: "e" + - formula: "C8H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2phetoh - - chebi: CHEBI:49000 - - kegg.compound: C05853 - - metanetx.chemical: MNXM2476 - - sbo: SBO:0000247 + - bigg.metabolite: "2phetoh" + - chebi: "CHEBI:49000" + - kegg.compound: "C05853" + - metanetx.chemical: "MNXM2476" + - sbo: "SBO:0000247" - !!omap - - id: s_0187 - - name: 2-phenylethanol - - compartment: m - - formula: C8H10O + - id: "s_0187" + - name: "2-phenylethanol" + - compartment: "m" + - formula: "C8H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2phetoh - - chebi: CHEBI:49000 - - kegg.compound: C05853 - - metanetx.chemical: MNXM2476 - - sbo: SBO:0000247 + - bigg.metabolite: "2phetoh" + - chebi: "CHEBI:49000" + - kegg.compound: "C05853" + - metanetx.chemical: "MNXM2476" + - sbo: "SBO:0000247" - !!omap - - id: s_0188 - - name: 2-phospho-D-glyceric acid - - compartment: c - - formula: C3H4O7P + - id: "s_0188" + - name: "2-phospho-D-glyceric acid" + - compartment: "c" + - formula: "C3H4O7P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 2pg - - chebi: CHEBI:58289 - - kegg.compound: C00631 - - metanetx.chemical: MNXM275 - - sbo: SBO:0000247 + - bigg.metabolite: "2pg" + - chebi: "CHEBI:58289" + - kegg.compound: "C00631" + - metanetx.chemical: "MNXM275" + - sbo: "SBO:0000247" - !!omap - - id: s_0189 - - name: geranylgeranyl diphosphate - - compartment: c - - formula: C20H33O7P2 + - id: "s_0189" + - name: "geranylgeranyl diphosphate" + - compartment: "c" + - formula: "C20H33O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ggdp - - chebi: CHEBI:58756 - - kegg.compound: C00353 - - metanetx.chemical: MNXM139 - - sbo: SBO:0000247 + - bigg.metabolite: "ggdp" + - chebi: "CHEBI:58756" + - kegg.compound: "C00353" + - metanetx.chemical: "MNXM139" + - sbo: "SBO:0000247" - !!omap - - id: s_0190 - - name: farnesyl diphosphate - - compartment: c - - formula: C15H25O7P2 + - id: "s_0190" + - name: "farnesyl diphosphate" + - compartment: "c" + - formula: "C15H25O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: frdp - - chebi: CHEBI:175763 - - kegg.compound: C00448 - - metanetx.chemical: MNXM34 - - sbo: SBO:0000247 + - bigg.metabolite: "frdp" + - chebi: "CHEBI:175763" + - kegg.compound: "C00448" + - metanetx.chemical: "MNXM34" + - sbo: "SBO:0000247" - !!omap - - id: s_0191 - - name: farnesyl diphosphate - - compartment: m - - formula: C15H25O7P2 + - id: "s_0191" + - name: "farnesyl diphosphate" + - compartment: "m" + - formula: "C15H25O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: frdp - - chebi: CHEBI:175763 - - kegg.compound: C00448 - - metanetx.chemical: MNXM34 - - sbo: SBO:0000247 + - bigg.metabolite: "frdp" + - chebi: "CHEBI:175763" + - kegg.compound: "C00448" + - metanetx.chemical: "MNXM34" + - sbo: "SBO:0000247" - !!omap - - id: s_0192 - - name: 3',5'-cyclic AMP - - compartment: c - - formula: C10H11N5O6P + - id: "s_0192" + - name: "3',5'-cyclic AMP" + - compartment: "c" + - formula: "C10H11N5O6P" - charge: -1 - annotation: !!omap - - bigg.metabolite: camp - - chebi: CHEBI:58165 - - kegg.compound: C00575 - - metanetx.chemical: MNXM243 - - sbo: SBO:0000247 + - bigg.metabolite: "camp" + - chebi: "CHEBI:58165" + - kegg.compound: "C00575" + - metanetx.chemical: "MNXM243" + - sbo: "SBO:0000247" - !!omap - - id: s_0193 - - name: 3',5'-cyclic CMP - - compartment: c - - formula: C9H11N3O7P + - id: "s_0193" + - name: "3',5'-cyclic CMP" + - compartment: "c" + - formula: "C9H11N3O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: 35ccmp - - chebi: CHEBI:58003 - - kegg.compound: C00941 - - metanetx.chemical: MNXM3162 - - sbo: SBO:0000247 + - bigg.metabolite: "35ccmp" + - chebi: "CHEBI:58003" + - kegg.compound: "C00941" + - metanetx.chemical: "MNXM3162" + - sbo: "SBO:0000247" - !!omap - - id: s_0194 - - name: 3',5'-cyclic dAMP - - compartment: c - - formula: C10H11N5O5P + - id: "s_0194" + - name: "3',5'-cyclic dAMP" + - compartment: "c" + - formula: "C10H11N5O5P" - charge: -1 - annotation: !!omap - - bigg.metabolite: 35cdamp - - chebi: CHEBI:28074 - - kegg.compound: C00968 - - metanetx.chemical: MNXM9931 - - sbo: SBO:0000247 + - bigg.metabolite: "35cdamp" + - chebi: "CHEBI:28074" + - kegg.compound: "C00968" + - metanetx.chemical: "MNXM9931" + - sbo: "SBO:0000247" - !!omap - - id: s_0195 - - name: 3',5'-cyclic GMP - - compartment: c - - formula: C10H11N5O7P + - id: "s_0195" + - name: "3',5'-cyclic GMP" + - compartment: "c" + - formula: "C10H11N5O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: 35cgmp - - chebi: CHEBI:57746 - - kegg.compound: C00942 - - metanetx.chemical: MNXM665 - - sbo: SBO:0000247 + - bigg.metabolite: "35cgmp" + - chebi: "CHEBI:57746" + - kegg.compound: "C00942" + - metanetx.chemical: "MNXM665" + - sbo: "SBO:0000247" - !!omap - - id: s_0196 - - name: 3',5'-cyclic IMP - - compartment: c - - formula: C10H10N4O7P + - id: "s_0196" + - name: "3',5'-cyclic IMP" + - compartment: "c" + - formula: "C10H10N4O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: 35cimp - - chebi: CHEBI:27541 - - kegg.compound: C00943 - - metanetx.chemical: MNXM9932 - - sbo: SBO:0000247 + - bigg.metabolite: "35cimp" + - chebi: "CHEBI:27541" + - kegg.compound: "C00943" + - metanetx.chemical: "MNXM9932" + - sbo: "SBO:0000247" - !!omap - - id: s_0197 - - name: 3'-dephospho-CoA - - compartment: c - - formula: C21H33N7O13P2S + - id: "s_0197" + - name: "3'-dephospho-CoA" + - compartment: "c" + - formula: "C21H33N7O13P2S" - charge: -2 - annotation: !!omap - - bigg.metabolite: dpcoa - - chebi: CHEBI:57328 - - kegg.compound: C00882 - - metanetx.chemical: MNXM481 - - sbo: SBO:0000247 + - bigg.metabolite: "dpcoa" + - chebi: "CHEBI:57328" + - kegg.compound: "C00882" + - metanetx.chemical: "MNXM481" + - sbo: "SBO:0000247" - !!omap - - id: s_0200 - - name: 3'-dephospho-CoA - - compartment: m - - formula: C21H33N7O13P2S + - id: "s_0200" + - name: "3'-dephospho-CoA" + - compartment: "m" + - formula: "C21H33N7O13P2S" - charge: -2 - annotation: !!omap - - bigg.metabolite: dpcoa - - chebi: CHEBI:57328 - - kegg.compound: C00882 - - metanetx.chemical: MNXM481 - - sbo: SBO:0000247 + - bigg.metabolite: "dpcoa" + - chebi: "CHEBI:57328" + - kegg.compound: "C00882" + - metanetx.chemical: "MNXM481" + - sbo: "SBO:0000247" - !!omap - - id: s_0201 - - name: 3'-phospho-5'-adenylyl sulfate - - compartment: c - - formula: C10H11N5O13P2S + - id: "s_0201" + - name: "3'-phospho-5'-adenylyl sulfate" + - compartment: "c" + - formula: "C10H11N5O13P2S" - charge: -4 - annotation: !!omap - - bigg.metabolite: paps - - chebi: CHEBI:58339 - - kegg.compound: C00053 - - metanetx.chemical: MNXM49 - - sbo: SBO:0000247 + - bigg.metabolite: "paps" + - chebi: "CHEBI:58339" + - kegg.compound: "C00053" + - metanetx.chemical: "MNXM49" + - sbo: "SBO:0000247" - !!omap - - id: s_0204 - - name: 3-(4-hydroxyphenyl)pyruvate - - compartment: c - - formula: C9H7O4 + - id: "s_0204" + - name: "3-(4-hydroxyphenyl)pyruvate" + - compartment: "c" + - formula: "C9H7O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: 34hpp - - chebi: CHEBI:36242 - - kegg.compound: C01179 - - metanetx.chemical: MNXM153 - - sbo: SBO:0000247 + - bigg.metabolite: "34hpp" + - chebi: "CHEBI:36242" + - kegg.compound: "C01179" + - metanetx.chemical: "MNXM153" + - sbo: "SBO:0000247" - !!omap - - id: s_0206 - - name: 3-(4-hydroxyphenyl)pyruvate - - compartment: p - - formula: C9H7O4 + - id: "s_0206" + - name: "3-(4-hydroxyphenyl)pyruvate" + - compartment: "p" + - formula: "C9H7O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: 34hpp - - chebi: CHEBI:36242 - - kegg.compound: C01179 - - metanetx.chemical: MNXM153 - - sbo: SBO:0000247 + - bigg.metabolite: "34hpp" + - chebi: "CHEBI:36242" + - kegg.compound: "C01179" + - metanetx.chemical: "MNXM153" + - sbo: "SBO:0000247" - !!omap - - id: s_0207 - - name: 3-(imidazol-4-yl)-2-oxopropyl dihydrogen phosphate - - compartment: c - - formula: C6H7N2O5P + - id: "s_0207" + - name: "3-(imidazol-4-yl)-2-oxopropyl dihydrogen phosphate" + - compartment: "c" + - formula: "C6H7N2O5P" - charge: -2 - annotation: !!omap - - bigg.metabolite: imacp - - chebi: CHEBI:57766 - - kegg.compound: C01267 - - metanetx.chemical: MNXM1456 - - sbo: SBO:0000247 + - bigg.metabolite: "imacp" + - chebi: "CHEBI:57766" + - kegg.compound: "C01267" + - metanetx.chemical: "MNXM1456" + - sbo: "SBO:0000247" - !!omap - - id: s_0208 - - name: 3-aminopropanal - - compartment: c - - formula: C3H8NO + - id: "s_0208" + - name: "3-aminopropanal" + - compartment: "c" + - formula: "C3H8NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: aproa - - chebi: CHEBI:58374 - - kegg.compound: C02229 - - metanetx.chemical: MNXM493 - - sbo: SBO:0000247 + - bigg.metabolite: "aproa" + - chebi: "CHEBI:58374" + - kegg.compound: "C02229" + - metanetx.chemical: "MNXM493" + - sbo: "SBO:0000247" - !!omap - - id: s_0209 - - name: 3-dehydro-4-methylzymosterol - - compartment: c - - formula: C28H44O + - id: "s_0209" + - name: "3-dehydro-4-methylzymosterol" + - compartment: "c" + - formula: "C28H44O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:50593 - - kegg.compound: C15816 - - metanetx.chemical: MNXM36392 - - sbo: SBO:0000247 + - chebi: "CHEBI:50593" + - kegg.compound: "C15816" + - metanetx.chemical: "MNXM36392" + - sbo: "SBO:0000247" - !!omap - - id: s_0210 - - name: 3-dehydroquinate - - compartment: c - - formula: C7H9O6 + - id: "s_0210" + - name: "3-dehydroquinate" + - compartment: "c" + - formula: "C7H9O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3dhq - - chebi: CHEBI:32364 - - kegg.compound: C00944 - - metanetx.chemical: MNXM478 - - sbo: SBO:0000247 + - bigg.metabolite: "3dhq" + - chebi: "CHEBI:32364" + - kegg.compound: "C00944" + - metanetx.chemical: "MNXM478" + - sbo: "SBO:0000247" - !!omap - - id: s_0211 - - name: 3-dehydroshikimate - - compartment: c - - formula: C7H7O5 + - id: "s_0211" + - name: "3-dehydroshikimate" + - compartment: "c" + - formula: "C7H7O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3dhsk - - chebi: CHEBI:16630 - - kegg.compound: C02637 - - metanetx.chemical: MNXM611 - - sbo: SBO:0000247 + - bigg.metabolite: "3dhsk" + - chebi: "CHEBI:16630" + - kegg.compound: "C02637" + - metanetx.chemical: "MNXM611" + - sbo: "SBO:0000247" - !!omap - - id: s_0212 - - name: 3-hexaprenyl-4,5-dihydroxybenzoic acid - - compartment: c - - formula: C37H53O4 + - id: "s_0212" + - name: "3-hexaprenyl-4,5-dihydroxybenzoic acid" + - compartment: "c" + - formula: "C37H53O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3dh5hpb - - chebi: CHEBI:58373 - - kegg.compound: C05200 - - metanetx.chemical: MNXM2783 - - sbo: SBO:0000247 + - bigg.metabolite: "3dh5hpb" + - chebi: "CHEBI:58373" + - kegg.compound: "C05200" + - metanetx.chemical: "MNXM2783" + - sbo: "SBO:0000247" - !!omap - - id: s_0213 - - name: 3-hexaprenyl-4,5-dihydroxybenzoic acid - - compartment: m - - formula: C37H53O4 + - id: "s_0213" + - name: "3-hexaprenyl-4,5-dihydroxybenzoic acid" + - compartment: "m" + - formula: "C37H53O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3dh5hpb - - chebi: CHEBI:58373 - - kegg.compound: C05200 - - metanetx.chemical: MNXM2783 - - sbo: SBO:0000247 + - bigg.metabolite: "3dh5hpb" + - chebi: "CHEBI:58373" + - kegg.compound: "C05200" + - metanetx.chemical: "MNXM2783" + - sbo: "SBO:0000247" - !!omap - - id: s_0214 - - name: 3-hexaprenyl-4-hydroxy-5-methoxybenzoic acid - - compartment: m - - formula: C38H55O4 + - id: "s_0214" + - name: "3-hexaprenyl-4-hydroxy-5-methoxybenzoic acid" + - compartment: "m" + - formula: "C38H55O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3hph5mb - - chebi: CHEBI:57916 - - kegg.compound: C05313 - - metanetx.chemical: MNXM3166 - - sbo: SBO:0000247 + - bigg.metabolite: "3hph5mb" + - chebi: "CHEBI:57916" + - kegg.compound: "C05313" + - metanetx.chemical: "MNXM3166" + - sbo: "SBO:0000247" - !!omap - - id: s_0215 - - name: 3-hexaprenyl-4-hydroxybenzoic acid - - compartment: c - - formula: C37H53O3 + - id: "s_0215" + - name: "3-hexaprenyl-4-hydroxybenzoic acid" + - compartment: "c" + - formula: "C37H53O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3ophb_5 - - chebi: CHEBI:31116 - - kegg.compound: C13425 - - metanetx.chemical: MNXM3167 - - sbo: SBO:0000247 + - bigg.metabolite: "3ophb_5" + - chebi: "CHEBI:31116" + - kegg.compound: "C13425" + - metanetx.chemical: "MNXM3167" + - sbo: "SBO:0000247" - !!omap - - id: s_0216 - - name: 3-hexaprenyl-4-hydroxybenzoic acid - - compartment: m - - formula: C37H53O3 + - id: "s_0216" + - name: "3-hexaprenyl-4-hydroxybenzoic acid" + - compartment: "m" + - formula: "C37H53O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3ophb_5 - - chebi: CHEBI:31116 - - kegg.compound: C13425 - - metanetx.chemical: MNXM3167 - - sbo: SBO:0000247 + - bigg.metabolite: "3ophb_5" + - chebi: "CHEBI:31116" + - kegg.compound: "C13425" + - metanetx.chemical: "MNXM3167" + - sbo: "SBO:0000247" - !!omap - - id: s_0217 - - name: 3-hydroxy-2-isopropyl-4-methoxy-4-oxobutanoate - - compartment: c - - formula: C8H13O5 + - id: "s_0217" + - name: "3-hydroxy-2-isopropyl-4-methoxy-4-oxobutanoate" + - compartment: "c" + - formula: "C8H13O5" - charge: -1 - annotation: !!omap - - chebi: CHEBI:52960 - - metanetx.chemical: MNXM36486 - - sbo: SBO:0000247 + - chebi: "CHEBI:52960" + - metanetx.chemical: "MNXM36486" + - sbo: "SBO:0000247" - !!omap - - id: s_0218 - - name: 3-hydroxy-3-methylglutaryl-CoA - - compartment: c - - formula: C27H39N7O20P3S + - id: "s_0218" + - name: "3-hydroxy-3-methylglutaryl-CoA" + - compartment: "c" + - formula: "C27H39N7O20P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: hmgcoa - - chebi: CHEBI:11814 - - kegg.compound: C00356 - - metanetx.chemical: MNXM197 - - sbo: SBO:0000247 + - bigg.metabolite: "hmgcoa" + - chebi: "CHEBI:11814" + - kegg.compound: "C00356" + - metanetx.chemical: "MNXM197" + - sbo: "SBO:0000247" - !!omap - - id: s_0221 - - name: 3-hydroxy-3-methylglutaryl-CoA - - compartment: m - - formula: C27H39N7O20P3S + - id: "s_0221" + - name: "3-hydroxy-3-methylglutaryl-CoA" + - compartment: "m" + - formula: "C27H39N7O20P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: hmgcoa - - chebi: CHEBI:11814 - - kegg.compound: C00356 - - metanetx.chemical: MNXM197 - - sbo: SBO:0000247 + - bigg.metabolite: "hmgcoa" + - chebi: "CHEBI:11814" + - kegg.compound: "C00356" + - metanetx.chemical: "MNXM197" + - sbo: "SBO:0000247" - !!omap - - id: s_0222 - - name: 3-hydroxy-L-kynurenine - - compartment: c - - formula: C10H12N2O4 + - id: "s_0222" + - name: "3-hydroxy-L-kynurenine" + - compartment: "c" + - formula: "C10H12N2O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: hLkynr - - chebi: CHEBI:17380 - - kegg.compound: C03227 - - metanetx.chemical: MNXM576 - - sbo: SBO:0000247 + - bigg.metabolite: "hLkynr" + - chebi: "CHEBI:17380" + - kegg.compound: "C03227" + - metanetx.chemical: "MNXM576" + - sbo: "SBO:0000247" - !!omap - - id: s_0224 - - name: 3-hydroxyanthranilate - - compartment: c - - formula: C7H6NO3 + - id: "s_0224" + - name: "3-hydroxyanthranilate" + - compartment: "c" + - formula: "C7H6NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3hanthrn - - chebi: CHEBI:36559 - - kegg.compound: C00632 - - metanetx.chemical: MNXM359 - - sbo: SBO:0000247 + - bigg.metabolite: "3hanthrn" + - chebi: "CHEBI:36559" + - kegg.compound: "C00632" + - metanetx.chemical: "MNXM359" + - sbo: "SBO:0000247" - !!omap - - id: s_0229 - - name: 3-hydroxyoctadecanoyl-CoA - - compartment: p - - formula: C39H66N7O18P3S + - id: "s_0229" + - name: "3-hydroxyoctadecanoyl-CoA" + - compartment: "p" + - formula: "C39H66N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2248 - - chebi: CHEBI:50583 - - kegg.compound: C16217 - - metanetx.chemical: MNXM1309 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2248" + - chebi: "CHEBI:50583" + - kegg.compound: "C16217" + - metanetx.chemical: "MNXM1309" + - sbo: "SBO:0000247" - !!omap - - id: s_0231 - - name: 3-ketosphinganine - - compartment: er - - formula: C18H38NO2 + - id: "s_0231" + - name: "3-ketosphinganine" + - compartment: "er" + - formula: "C18H38NO2" - charge: 1 - annotation: !!omap - - bigg.metabolite: 3dsphgn - - chebi: CHEBI:58299 - - kegg.compound: C02934 - - metanetx.chemical: MNXM559 - - sbo: SBO:0000247 + - bigg.metabolite: "3dsphgn" + - chebi: "CHEBI:58299" + - kegg.compound: "C02934" + - metanetx.chemical: "MNXM559" + - sbo: "SBO:0000247" - !!omap - - id: s_0232 - - name: 3-methyl-2-oxobutanoate - - compartment: c - - formula: C5H7O3 + - id: "s_0232" + - name: "3-methyl-2-oxobutanoate" + - compartment: "c" + - formula: "C5H7O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3mob - - chebi: CHEBI:11851 - - kegg.compound: C00141 - - metanetx.chemical: MNXM238 - - sbo: SBO:0000247 + - bigg.metabolite: "3mob" + - chebi: "CHEBI:11851" + - kegg.compound: "C00141" + - metanetx.chemical: "MNXM238" + - sbo: "SBO:0000247" - !!omap - - id: s_0233 - - name: 3-methyl-2-oxobutanoate - - compartment: m - - formula: C5H7O3 + - id: "s_0233" + - name: "3-methyl-2-oxobutanoate" + - compartment: "m" + - formula: "C5H7O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3mob - - chebi: CHEBI:11851 - - kegg.compound: C00141 - - metanetx.chemical: MNXM238 - - sbo: SBO:0000247 + - bigg.metabolite: "3mob" + - chebi: "CHEBI:11851" + - kegg.compound: "C00141" + - metanetx.chemical: "MNXM238" + - sbo: "SBO:0000247" - !!omap - - id: s_0234 - - name: 3-methylbutanal - - compartment: c - - formula: C5H10O + - id: "s_0234" + - name: "3-methylbutanal" + - compartment: "c" + - formula: "C5H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 3mbald - - chebi: CHEBI:16638 - - kegg.compound: C07329 - - metanetx.chemical: MNXM5280 - - sbo: SBO:0000247 + - bigg.metabolite: "3mbald" + - chebi: "CHEBI:16638" + - kegg.compound: "C07329" + - metanetx.chemical: "MNXM5280" + - sbo: "SBO:0000247" - !!omap - - id: s_0235 - - name: 3-methylbutanal - - compartment: e - - formula: C5H10O + - id: "s_0235" + - name: "3-methylbutanal" + - compartment: "e" + - formula: "C5H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 3mbald - - chebi: CHEBI:16638 - - kegg.compound: C07329 - - metanetx.chemical: MNXM5280 - - sbo: SBO:0000247 + - bigg.metabolite: "3mbald" + - chebi: "CHEBI:16638" + - kegg.compound: "C07329" + - metanetx.chemical: "MNXM5280" + - sbo: "SBO:0000247" - !!omap - - id: s_0236 - - name: 3-methylbutanal - - compartment: m - - formula: C5H10O + - id: "s_0236" + - name: "3-methylbutanal" + - compartment: "m" + - formula: "C5H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 3mbald - - chebi: CHEBI:16638 - - kegg.compound: C07329 - - metanetx.chemical: MNXM5280 - - sbo: SBO:0000247 + - bigg.metabolite: "3mbald" + - chebi: "CHEBI:16638" + - kegg.compound: "C07329" + - metanetx.chemical: "MNXM5280" + - sbo: "SBO:0000247" - !!omap - - id: s_0239 - - name: 3-oxodecanoyl-CoA - - compartment: p - - formula: C31H48N7O18P3S + - id: "s_0239" + - name: "3-oxodecanoyl-CoA" + - compartment: "p" + - formula: "C31H48N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3odcoa - - chebi: CHEBI:28528 - - kegg.compound: C05265 - - metanetx.chemical: MNXM677 - - sbo: SBO:0000247 + - bigg.metabolite: "3odcoa" + - chebi: "CHEBI:28528" + - kegg.compound: "C05265" + - metanetx.chemical: "MNXM677" + - sbo: "SBO:0000247" - !!omap - - id: s_0243 - - name: 3-oxohexacosanoyl-CoA - - compartment: p - - formula: C47H80N7O18P3S + - id: "s_0243" + - name: "3-oxohexacosanoyl-CoA" + - compartment: "p" + - formula: "C47H80N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3ohxccoa - - chebi: CHEBI:52977 - - metanetx.chemical: MNXM36758 - - sbo: SBO:0000247 + - bigg.metabolite: "3ohxccoa" + - chebi: "CHEBI:52977" + - metanetx.chemical: "MNXM36758" + - sbo: "SBO:0000247" - !!omap - - id: s_0247 - - name: 3-oxolauroyl-CoA - - compartment: p - - formula: C33H52N7O18P3S + - id: "s_0247" + - name: "3-oxolauroyl-CoA" + - compartment: "p" + - formula: "C33H52N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3oddcoa - - chebi: CHEBI:27868 - - kegg.compound: C05263 - - metanetx.chemical: MNXM705 - - sbo: SBO:0000247 + - bigg.metabolite: "3oddcoa" + - chebi: "CHEBI:27868" + - kegg.compound: "C05263" + - metanetx.chemical: "MNXM705" + - sbo: "SBO:0000247" - !!omap - - id: s_0250 - - name: 3-oxooctadecanoyl-CoA - - compartment: p - - formula: C39H64N7O18P3S + - id: "s_0250" + - name: "3-oxooctadecanoyl-CoA" + - compartment: "p" + - formula: "C39H64N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3ohodcoa - - chebi: CHEBI:50571 - - kegg.compound: C16216 - - metanetx.chemical: MNXM513 - - sbo: SBO:0000247 + - bigg.metabolite: "3ohodcoa" + - chebi: "CHEBI:50571" + - kegg.compound: "C16216" + - metanetx.chemical: "MNXM513" + - sbo: "SBO:0000247" - !!omap - - id: s_0253 - - name: 3-oxopalmitoyl-CoA - - compartment: p - - formula: C37H60N7O18P3S + - id: "s_0253" + - name: "3-oxopalmitoyl-CoA" + - compartment: "p" + - formula: "C37H60N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3ohdcoa - - chebi: CHEBI:57349 - - kegg.compound: C05259 - - metanetx.chemical: MNXM738 - - sbo: SBO:0000247 + - bigg.metabolite: "3ohdcoa" + - chebi: "CHEBI:57349" + - kegg.compound: "C05259" + - metanetx.chemical: "MNXM738" + - sbo: "SBO:0000247" - !!omap - - id: s_0257 - - name: 3-oxotetradecanoyl-CoA - - compartment: p - - formula: C35H56N7O18P3S + - id: "s_0257" + - name: "3-oxotetradecanoyl-CoA" + - compartment: "p" + - formula: "C35H56N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3otdcoa - - chebi: CHEBI:28726 - - kegg.compound: C05261 - - metanetx.chemical: MNXM707 - - sbo: SBO:0000247 + - bigg.metabolite: "3otdcoa" + - chebi: "CHEBI:28726" + - kegg.compound: "C05261" + - metanetx.chemical: "MNXM707" + - sbo: "SBO:0000247" - !!omap - - id: s_0258 - - name: 3-phospho-hydroxypyruvate - - compartment: c - - formula: C3H2O7P + - id: "s_0258" + - name: "3-phospho-hydroxypyruvate" + - compartment: "c" + - formula: "C3H2O7P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 3php - - chebi: CHEBI:18110 - - kegg.compound: C03232 - - metanetx.chemical: MNXM541 - - sbo: SBO:0000247 + - bigg.metabolite: "3php" + - chebi: "CHEBI:18110" + - kegg.compound: "C03232" + - metanetx.chemical: "MNXM541" + - sbo: "SBO:0000247" - !!omap - - id: s_0259 - - name: 3-phospho-serine - - compartment: c - - formula: C3H6NO6P + - id: "s_0259" + - name: "3-phospho-serine" + - compartment: "c" + - formula: "C3H6NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pser__L - - chebi: CHEBI:57524 - - kegg.compound: C01005 - - metanetx.chemical: MNXM379 - - sbo: SBO:0000247 + - bigg.metabolite: "pser__L" + - chebi: "CHEBI:57524" + - kegg.compound: "C01005" + - metanetx.chemical: "MNXM379" + - sbo: "SBO:0000247" - !!omap - - id: s_0260 - - name: 3-phosphonato-D-glycerate(3-) - - compartment: c - - formula: C3H4O7P + - id: "s_0260" + - name: "3-phosphonato-D-glycerate(3-)" + - compartment: "c" + - formula: "C3H4O7P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 3pg - - chebi: CHEBI:58272 - - kegg.compound: C00197 - - metanetx.chemical: MNXM126 - - sbo: SBO:0000247 + - bigg.metabolite: "3pg" + - chebi: "CHEBI:58272" + - kegg.compound: "C00197" + - metanetx.chemical: "MNXM126" + - sbo: "SBO:0000247" - !!omap - - id: s_0261 - - name: 3-phosphoshikimic acid - - compartment: c - - formula: C7H8O8P + - id: "s_0261" + - name: "3-phosphoshikimic acid" + - compartment: "c" + - formula: "C7H8O8P" - charge: -3 - annotation: !!omap - - bigg.metabolite: skm5p - - chebi: CHEBI:145989 - - kegg.compound: C03175 - - metanetx.chemical: MNXM1265 - - sbo: SBO:0000247 + - bigg.metabolite: "skm5p" + - chebi: "CHEBI:145989" + - kegg.compound: "C03175" + - metanetx.chemical: "MNXM1265" + - sbo: "SBO:0000247" - !!omap - - id: s_0262 - - name: 4,4-dimethyl-5alpha-cholesta-8,14,24-trien-3beta-ol - - compartment: c - - formula: C29H46O + - id: "s_0262" + - name: "4,4-dimethyl-5alpha-cholesta-8,14,24-trien-3beta-ol" + - compartment: "c" + - formula: "C29H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 44mctr - - chebi: CHEBI:17813 - - kegg.compound: C11455 - - metanetx.chemical: MNXM1036 - - sbo: SBO:0000247 + - bigg.metabolite: "44mctr" + - chebi: "CHEBI:17813" + - kegg.compound: "C11455" + - metanetx.chemical: "MNXM1036" + - sbo: "SBO:0000247" - !!omap - - id: s_0263 - - name: 4,5-bis(diphospho)-1D-myo-inositol tetrakisphosphate - - compartment: c - - formula: C6H7O30P8 + - id: "s_0263" + - name: "4,5-bis(diphospho)-1D-myo-inositol tetrakisphosphate" + - compartment: "c" + - formula: "C6H7O30P8" - charge: -13 - annotation: !!omap - - chebi: CHEBI:53066 - - metanetx.chemical: MNXM484827 - - sbo: SBO:0000247 + - chebi: "CHEBI:53066" + - metanetx.chemical: "MNXM484827" + - sbo: "SBO:0000247" - !!omap - - id: s_0264 - - name: 4-(phosphonooxy)-L-threonine - - compartment: c - - formula: C4H8NO7P + - id: "s_0264" + - name: "4-(phosphonooxy)-L-threonine" + - compartment: "c" + - formula: "C4H8NO7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: phthr - - chebi: CHEBI:58452 - - kegg.compound: C06055 - - metanetx.chemical: MNXM759 - - sbo: SBO:0000247 + - bigg.metabolite: "phthr" + - chebi: "CHEBI:58452" + - kegg.compound: "C06055" + - metanetx.chemical: "MNXM759" + - sbo: "SBO:0000247" - !!omap - - id: s_0267 - - name: 4-amino-2-methyl-5-diphosphomethylpyrimidine - - compartment: c - - formula: C6H8N3O7P2 + - id: "s_0267" + - name: "4-amino-2-methyl-5-diphosphomethylpyrimidine" + - compartment: "c" + - formula: "C6H8N3O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: 2mahmp - - chebi: CHEBI:57841 - - kegg.compound: C04752 - - metanetx.chemical: MNXM1135 - - sbo: SBO:0000247 + - bigg.metabolite: "2mahmp" + - chebi: "CHEBI:57841" + - kegg.compound: "C04752" + - metanetx.chemical: "MNXM1135" + - sbo: "SBO:0000247" - !!omap - - id: s_0268 - - name: 4-amino-2-methyl-5-phosphomethylpyrimidine - - compartment: c - - formula: C6H8N3O4P + - id: "s_0268" + - name: "4-amino-2-methyl-5-phosphomethylpyrimidine" + - compartment: "c" + - formula: "C6H8N3O4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 4ampm - - chebi: CHEBI:58354 - - kegg.compound: C04556 - - metanetx.chemical: MNXM790 - - sbo: SBO:0000247 + - bigg.metabolite: "4ampm" + - chebi: "CHEBI:58354" + - kegg.compound: "C04556" + - metanetx.chemical: "MNXM790" + - sbo: "SBO:0000247" - !!omap - - id: s_0269 - - name: 4-amino-4-deoxychorismate - - compartment: c - - formula: C10H10NO5 + - id: "s_0269" + - name: "4-amino-4-deoxychorismate" + - compartment: "c" + - formula: "C10H10NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: 4adcho - - chebi: CHEBI:35181 - - kegg.compound: C11355 - - metanetx.chemical: MNXM1458 - - sbo: SBO:0000247 + - bigg.metabolite: "4adcho" + - chebi: "CHEBI:35181" + - kegg.compound: "C11355" + - metanetx.chemical: "MNXM1458" + - sbo: "SBO:0000247" - !!omap - - id: s_0270 - - name: 4-amino-5-hydroxymethyl-2-methylpyrimidine - - compartment: c - - formula: C6H9N3O + - id: "s_0270" + - name: "4-amino-5-hydroxymethyl-2-methylpyrimidine" + - compartment: "c" + - formula: "C6H9N3O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4ahmmp - - chebi: CHEBI:16892 - - kegg.compound: C01279 - - metanetx.chemical: MNXM874 - - sbo: SBO:0000247 + - bigg.metabolite: "4ahmmp" + - chebi: "CHEBI:16892" + - kegg.compound: "C01279" + - metanetx.chemical: "MNXM874" + - sbo: "SBO:0000247" - !!omap - - id: s_0271 - - name: 4-aminobenzoate - - compartment: c - - formula: C7H6NO2 + - id: "s_0271" + - name: "4-aminobenzoate" + - compartment: "c" + - formula: "C7H6NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: 4abz - - chebi: CHEBI:17836 - - kegg.compound: C00568 - - metanetx.chemical: MNXM421 - - sbo: SBO:0000247 + - bigg.metabolite: "4abz" + - chebi: "CHEBI:17836" + - kegg.compound: "C00568" + - metanetx.chemical: "MNXM421" + - sbo: "SBO:0000247" - !!omap - - id: s_0272 - - name: 4-aminobenzoate - - compartment: e - - formula: C7H6NO2 + - id: "s_0272" + - name: "4-aminobenzoate" + - compartment: "e" + - formula: "C7H6NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: 4abz - - chebi: CHEBI:17836 - - kegg.compound: C00568 - - metanetx.chemical: MNXM421 - - sbo: SBO:0000247 + - bigg.metabolite: "4abz" + - chebi: "CHEBI:17836" + - kegg.compound: "C00568" + - metanetx.chemical: "MNXM421" + - sbo: "SBO:0000247" - !!omap - - id: s_0273 - - name: 4-aminobenzoate - - compartment: m - - formula: C7H6NO2 + - id: "s_0273" + - name: "4-aminobenzoate" + - compartment: "m" + - formula: "C7H6NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: 4abz - - chebi: CHEBI:17836 - - kegg.compound: C00568 - - metanetx.chemical: MNXM421 - - sbo: SBO:0000247 + - bigg.metabolite: "4abz" + - chebi: "CHEBI:17836" + - kegg.compound: "C00568" + - metanetx.chemical: "MNXM421" + - sbo: "SBO:0000247" - !!omap - - id: s_0274 - - name: 4-aminobutanal - - compartment: c - - formula: C4H10NO + - id: "s_0274" + - name: "4-aminobutanal" + - compartment: "c" + - formula: "C4H10NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: 4abutn - - chebi: CHEBI:58264 - - kegg.compound: C00555 - - metanetx.chemical: MNXM422 - - sbo: SBO:0000247 + - bigg.metabolite: "4abutn" + - chebi: "CHEBI:58264" + - kegg.compound: "C00555" + - metanetx.chemical: "MNXM422" + - sbo: "SBO:0000247" - !!omap - - id: s_0275 - - name: 4-aminobutanal - - compartment: m - - formula: C4H10NO + - id: "s_0275" + - name: "4-aminobutanal" + - compartment: "m" + - formula: "C4H10NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: 4abutn - - chebi: CHEBI:58264 - - kegg.compound: C00555 - - metanetx.chemical: MNXM422 - - sbo: SBO:0000247 + - bigg.metabolite: "4abutn" + - chebi: "CHEBI:58264" + - kegg.compound: "C00555" + - metanetx.chemical: "MNXM422" + - sbo: "SBO:0000247" - !!omap - - id: s_0279 - - name: 4-diphospho-1D-myo-inositol pentakisphosphate - - compartment: c - - formula: C6H6O27P7 + - id: "s_0279" + - name: "4-diphospho-1D-myo-inositol pentakisphosphate" + - compartment: "c" + - formula: "C6H6O27P7" - charge: -13 - annotation: !!omap - - chebi: CHEBI:53064 - - kegg.compound: C11526 - - metanetx.chemical: MNXM1715 - - sbo: SBO:0000247 + - chebi: "CHEBI:53064" + - kegg.compound: "C11526" + - metanetx.chemical: "MNXM1715" + - sbo: "SBO:0000247" - !!omap - - id: s_0280 - - name: 4-guanidinobutanamide - - compartment: c - - formula: C5H13N4O + - id: "s_0280" + - name: "4-guanidinobutanamide" + - compartment: "c" + - formula: "C5H13N4O" - charge: 1 - annotation: !!omap - - bigg.metabolite: 4gudbd - - chebi: CHEBI:58365 - - kegg.compound: C03078 - - metanetx.chemical: MNXM2617 - - sbo: SBO:0000247 + - bigg.metabolite: "4gudbd" + - chebi: "CHEBI:58365" + - kegg.compound: "C03078" + - metanetx.chemical: "MNXM2617" + - sbo: "SBO:0000247" - !!omap - - id: s_0281 - - name: 4-guanidinobutanoic acid - - compartment: c - - formula: C5H11N3O2 + - id: "s_0281" + - name: "4-guanidinobutanoic acid" + - compartment: "c" + - formula: "C5H11N3O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4gudbutn - - chebi: CHEBI:15728 - - kegg.compound: C01035 - - metanetx.chemical: MNXM1312 - - sbo: SBO:0000247 + - bigg.metabolite: "4gudbutn" + - chebi: "CHEBI:15728" + - kegg.compound: "C01035" + - metanetx.chemical: "MNXM1312" + - sbo: "SBO:0000247" - !!omap - - id: s_0282 - - name: 4-hydroxy-2-oxoglutarate - - compartment: c - - formula: C5H4O6 + - id: "s_0282" + - name: "4-hydroxy-2-oxoglutarate" + - compartment: "c" + - formula: "C5H4O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: 4h2oglt - - chebi: CHEBI:17742 - - kegg.compound: C01127 - - metanetx.chemical: MNXM894 - - sbo: SBO:0000247 + - bigg.metabolite: "4h2oglt" + - chebi: "CHEBI:17742" + - kegg.compound: "C01127" + - metanetx.chemical: "MNXM894" + - sbo: "SBO:0000247" - !!omap - - id: s_0283 - - name: 4-hydroxy-2-oxoglutarate - - compartment: m - - formula: C5H4O6 + - id: "s_0283" + - name: "4-hydroxy-2-oxoglutarate" + - compartment: "m" + - formula: "C5H4O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: 4h2oglt - - chebi: CHEBI:17742 - - kegg.compound: C01127 - - metanetx.chemical: MNXM894 - - sbo: SBO:0000247 + - bigg.metabolite: "4h2oglt" + - chebi: "CHEBI:17742" + - kegg.compound: "C01127" + - metanetx.chemical: "MNXM894" + - sbo: "SBO:0000247" - !!omap - - id: s_0284 - - name: 4-hydroxy-2-oxoglutarate - - compartment: p - - formula: C5H4O6 + - id: "s_0284" + - name: "4-hydroxy-2-oxoglutarate" + - compartment: "p" + - formula: "C5H4O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: 4h2oglt - - chebi: CHEBI:17742 - - kegg.compound: C01127 - - metanetx.chemical: MNXM894 - - sbo: SBO:0000247 + - bigg.metabolite: "4h2oglt" + - chebi: "CHEBI:17742" + - kegg.compound: "C01127" + - metanetx.chemical: "MNXM894" + - sbo: "SBO:0000247" - !!omap - - id: s_0285 - - name: 4-hydroxy-L-threonine - - compartment: c - - formula: C4H9NO4 + - id: "s_0285" + - name: "4-hydroxy-L-threonine" + - compartment: "c" + - formula: "C4H9NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4hthr - - chebi: CHEBI:28330 - - kegg.compound: C06056 - - metanetx.chemical: MNXM1802 - - sbo: SBO:0000247 + - bigg.metabolite: "4hthr" + - chebi: "CHEBI:28330" + - kegg.compound: "C06056" + - metanetx.chemical: "MNXM1802" + - sbo: "SBO:0000247" - !!omap - - id: s_0286 - - name: 4-hydroxybenzoate - - compartment: c - - formula: C7H5O3 + - id: "s_0286" + - name: "4-hydroxybenzoate" + - compartment: "c" + - formula: "C7H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 4hbz - - chebi: CHEBI:17879 - - kegg.compound: C00156 - - metanetx.chemical: MNXM164 - - sbo: SBO:0000247 + - bigg.metabolite: "4hbz" + - chebi: "CHEBI:17879" + - kegg.compound: "C00156" + - metanetx.chemical: "MNXM164" + - sbo: "SBO:0000247" - !!omap - - id: s_0287 - - name: 4-hydroxybenzoate - - compartment: m - - formula: C7H5O3 + - id: "s_0287" + - name: "4-hydroxybenzoate" + - compartment: "m" + - formula: "C7H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 4hbz - - chebi: CHEBI:17879 - - kegg.compound: C00156 - - metanetx.chemical: MNXM164 - - sbo: SBO:0000247 + - bigg.metabolite: "4hbz" + - chebi: "CHEBI:17879" + - kegg.compound: "C00156" + - metanetx.chemical: "MNXM164" + - sbo: "SBO:0000247" - !!omap - - id: s_0290 - - name: 4-hydroxybenzoyl-CoA - - compartment: m - - formula: C28H36N7O18P3S + - id: "s_0290" + - name: "4-hydroxybenzoyl-CoA" + - compartment: "m" + - formula: "C28H36N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 4hbzcoa - - chebi: CHEBI:57356 - - kegg.compound: C02949 - - metanetx.chemical: MNXM739 - - sbo: SBO:0000247 + - bigg.metabolite: "4hbzcoa" + - chebi: "CHEBI:57356" + - kegg.compound: "C02949" + - metanetx.chemical: "MNXM739" + - sbo: "SBO:0000247" - !!omap - - id: s_0291 - - name: 4-methyl-2-oxopentanoate - - compartment: c - - formula: C6H9O3 + - id: "s_0291" + - name: "4-methyl-2-oxopentanoate" + - compartment: "c" + - formula: "C6H9O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 4mop - - chebi: CHEBI:17865 - - kegg.compound: C00233 - - metanetx.chemical: MNXM404 - - sbo: SBO:0000247 + - bigg.metabolite: "4mop" + - chebi: "CHEBI:17865" + - kegg.compound: "C00233" + - metanetx.chemical: "MNXM404" + - sbo: "SBO:0000247" - !!omap - - id: s_0292 - - name: 4-methyl-2-oxopentanoate - - compartment: m - - formula: C6H9O3 + - id: "s_0292" + - name: "4-methyl-2-oxopentanoate" + - compartment: "m" + - formula: "C6H9O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 4mop - - chebi: CHEBI:17865 - - kegg.compound: C00233 - - metanetx.chemical: MNXM404 - - sbo: SBO:0000247 + - bigg.metabolite: "4mop" + - chebi: "CHEBI:17865" + - kegg.compound: "C00233" + - metanetx.chemical: "MNXM404" + - sbo: "SBO:0000247" - !!omap - - id: s_0293 - - name: 4-methyl-5-(2-phosphonooxyethyl)thiazole - - compartment: c - - formula: C6H8NO4PS + - id: "s_0293" + - name: "4-methyl-5-(2-phosphonooxyethyl)thiazole" + - compartment: "c" + - formula: "C6H8NO4PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: 4mpetz - - chebi: CHEBI:58296 - - kegg.compound: C04327 - - metanetx.chemical: MNXM960 - - sbo: SBO:0000247 + - bigg.metabolite: "4mpetz" + - chebi: "CHEBI:58296" + - kegg.compound: "C04327" + - metanetx.chemical: "MNXM960" + - sbo: "SBO:0000247" - !!omap - - id: s_0294 - - name: 4-methylthio-2-oxobutanoate - - compartment: c - - formula: C5H7O3S + - id: "s_0294" + - name: "4-methylthio-2-oxobutanoate" + - compartment: "c" + - formula: "C5H7O3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: 4met2obut - - chebi: CHEBI:16723 - - kegg.compound: C01180 - - metanetx.chemical: MNXM276 - - sbo: SBO:0000247 + - bigg.metabolite: "4met2obut" + - chebi: "CHEBI:16723" + - kegg.compound: "C01180" + - metanetx.chemical: "MNXM276" + - sbo: "SBO:0000247" - !!omap - - id: s_0295 - - name: 4-phospho-L-aspartate - - compartment: c - - formula: C4H6NO7P + - id: "s_0295" + - name: "4-phospho-L-aspartate" + - compartment: "c" + - formula: "C4H6NO7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 4pasp - - chebi: CHEBI:30407 - - kegg.compound: C03082 - - metanetx.chemical: MNXM1177 - - sbo: SBO:0000247 + - bigg.metabolite: "4pasp" + - chebi: "CHEBI:30407" + - kegg.compound: "C03082" + - metanetx.chemical: "MNXM1177" + - sbo: "SBO:0000247" - !!omap - - id: s_0296 - - name: 4alpha-methylzymosterol - - compartment: c - - formula: C28H46O + - id: "s_0296" + - name: "4alpha-methylzymosterol" + - compartment: "c" + - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4mzym - - chebi: CHEBI:1949 - - kegg.compound: C05103 - - metanetx.chemical: MNXM1804 - - sbo: SBO:0000247 + - bigg.metabolite: "4mzym" + - chebi: "CHEBI:1949" + - kegg.compound: "C05103" + - metanetx.chemical: "MNXM1804" + - sbo: "SBO:0000247" - !!omap - - id: s_0297 - - name: 4beta-methylzymosterol-4alpha-carboxylic acid - - compartment: c - - formula: C29H45O3 + - id: "s_0297" + - name: "4beta-methylzymosterol-4alpha-carboxylic acid" + - compartment: "c" + - formula: "C29H45O3" - charge: -1 - annotation: !!omap - - chebi: CHEBI:50591 - - kegg.compound: C15808 - - metanetx.chemical: MNXM37762 - - sbo: SBO:0000247 + - chebi: "CHEBI:50591" + - kegg.compound: "C15808" + - metanetx.chemical: "MNXM37762" + - sbo: "SBO:0000247" - !!omap - - id: s_0298 - - name: 5'-adenylyl sulfate - - compartment: c - - formula: C10H12N5O10PS + - id: "s_0298" + - name: "5'-adenylyl sulfate" + - compartment: "c" + - formula: "C10H12N5O10PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: aps - - chebi: CHEBI:58243 - - kegg.compound: C00224 - - metanetx.chemical: MNXM287 - - sbo: SBO:0000247 + - bigg.metabolite: "aps" + - chebi: "CHEBI:58243" + - kegg.compound: "C00224" + - metanetx.chemical: "MNXM287" + - sbo: "SBO:0000247" - !!omap - - id: s_0299 - - name: 5'-phosphoribosyl-4-(N-succinocarboxamide)-5-aminoimidazole - - compartment: c - - formula: C13H15N4O12P + - id: "s_0299" + - name: "5'-phosphoribosyl-4-(N-succinocarboxamide)-5-aminoimidazole" + - compartment: "c" + - formula: "C13H15N4O12P" - charge: -4 - annotation: !!omap - - bigg.metabolite: 25aics - - chebi: CHEBI:58443 - - kegg.compound: C04823 - - metanetx.chemical: MNXM607 - - sbo: SBO:0000247 + - bigg.metabolite: "25aics" + - chebi: "CHEBI:58443" + - kegg.compound: "C04823" + - metanetx.chemical: "MNXM607" + - sbo: "SBO:0000247" - !!omap - - id: s_0300 - - name: 5'-phosphoribosyl-5-aminoimidazole - - compartment: c - - formula: C8H13N3O7P + - id: "s_0300" + - name: "5'-phosphoribosyl-5-aminoimidazole" + - compartment: "c" + - formula: "C8H13N3O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: air - - chebi: CHEBI:58592 - - kegg.compound: C03373 - - metanetx.chemical: MNXM388 - - sbo: SBO:0000247 + - bigg.metabolite: "air" + - chebi: "CHEBI:58592" + - kegg.compound: "C03373" + - metanetx.chemical: "MNXM388" + - sbo: "SBO:0000247" - !!omap - - id: s_0301 - - name: 5'-phosphoribosyl-N-formylglycineamide - - compartment: c - - formula: C8H13N2O9P + - id: "s_0301" + - name: "5'-phosphoribosyl-N-formylglycineamide" + - compartment: "c" + - formula: "C8H13N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: fgam - - chebi: CHEBI:58426 - - kegg.compound: C04376 - - metanetx.chemical: MNXM453 - - sbo: SBO:0000247 + - bigg.metabolite: "fgam" + - chebi: "CHEBI:58426" + - kegg.compound: "C04376" + - metanetx.chemical: "MNXM453" + - sbo: "SBO:0000247" - !!omap - - id: s_0302 - - name: 5'-phosphoribosyl-N-formylglycineamidine - - compartment: c - - formula: C8H15N3O8P + - id: "s_0302" + - name: "5'-phosphoribosyl-N-formylglycineamidine" + - compartment: "c" + - formula: "C8H15N3O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: fpram - - chebi: CHEBI:58478 - - kegg.compound: C04640 - - metanetx.chemical: MNXM568 - - sbo: SBO:0000247 + - bigg.metabolite: "fpram" + - chebi: "CHEBI:58478" + - kegg.compound: "C04640" + - metanetx.chemical: "MNXM568" + - sbo: "SBO:0000247" - !!omap - - id: s_0303 - - name: 5'-S-methyl-5'-thioadenosine - - compartment: c - - formula: C11H15N5O3S + - id: "s_0303" + - name: "5'-S-methyl-5'-thioadenosine" + - compartment: "c" + - formula: "C11H15N5O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: 5mta - - chebi: CHEBI:17509 - - kegg.compound: C00170 - - metanetx.chemical: MNXM150 - - sbo: SBO:0000247 + - bigg.metabolite: "5mta" + - chebi: "CHEBI:17509" + - kegg.compound: "C00170" + - metanetx.chemical: "MNXM150" + - sbo: "SBO:0000247" - !!omap - - id: s_0304 - - name: 5,10-methenyl-THF - - compartment: c - - formula: C20H20N7O6 + - id: "s_0304" + - name: "5,10-methenyl-THF" + - compartment: "c" + - formula: "C20H20N7O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: methf - - chebi: CHEBI:57455 - - kegg.compound: C00445 - - metanetx.chemical: MNXM511 - - sbo: SBO:0000247 + - bigg.metabolite: "methf" + - chebi: "CHEBI:57455" + - kegg.compound: "C00445" + - metanetx.chemical: "MNXM511" + - sbo: "SBO:0000247" - !!omap - - id: s_0305 - - name: 5,10-methenyl-THF - - compartment: m - - formula: C20H20N7O6 + - id: "s_0305" + - name: "5,10-methenyl-THF" + - compartment: "m" + - formula: "C20H20N7O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: methf - - chebi: CHEBI:57455 - - kegg.compound: C00445 - - metanetx.chemical: MNXM511 - - sbo: SBO:0000247 + - bigg.metabolite: "methf" + - chebi: "CHEBI:57455" + - kegg.compound: "C00445" + - metanetx.chemical: "MNXM511" + - sbo: "SBO:0000247" - !!omap - - id: s_0306 - - name: 5,10-methylenetetrahydrofolate - - compartment: c - - formula: C20H21N7O6 + - id: "s_0306" + - name: "5,10-methylenetetrahydrofolate" + - compartment: "c" + - formula: "C20H21N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: mlthf - - chebi: CHEBI:12071 - - kegg.compound: C00143 - - metanetx.chemical: MNXM183 - - sbo: SBO:0000247 + - bigg.metabolite: "mlthf" + - chebi: "CHEBI:12071" + - kegg.compound: "C00143" + - metanetx.chemical: "MNXM183" + - sbo: "SBO:0000247" - !!omap - - id: s_0307 - - name: 5,10-methylenetetrahydrofolate - - compartment: m - - formula: C20H21N7O6 + - id: "s_0307" + - name: "5,10-methylenetetrahydrofolate" + - compartment: "m" + - formula: "C20H21N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: mlthf - - chebi: CHEBI:12071 - - kegg.compound: C00143 - - metanetx.chemical: MNXM183 - - sbo: SBO:0000247 + - bigg.metabolite: "mlthf" + - chebi: "CHEBI:12071" + - kegg.compound: "C00143" + - metanetx.chemical: "MNXM183" + - sbo: "SBO:0000247" - !!omap - - id: s_0308 - - name: 5,6,7,8-tetrahydrofolyl-L-glutamic acid - - compartment: c - - formula: C24H27N8O9 + - id: "s_0308" + - name: "5,6,7,8-tetrahydrofolyl-L-glutamic acid" + - compartment: "c" + - formula: "C24H27N8O9" - charge: -3 - annotation: !!omap - - bigg.metabolite: thfglu - - chebi: CHEBI:27650 - - kegg.compound: C09332 - - metanetx.chemical: MNXM723480 - - sbo: SBO:0000247 + - bigg.metabolite: "thfglu" + - chebi: "CHEBI:27650" + - kegg.compound: "C09332" + - metanetx.chemical: "MNXM723480" + - sbo: "SBO:0000247" - !!omap - - id: s_0309 - - name: 5,6-bis(diphospho)-1D-myo-inositol tetrakisphosphate - - compartment: c - - formula: C6H7O30P8 + - id: "s_0309" + - name: "5,6-bis(diphospho)-1D-myo-inositol tetrakisphosphate" + - compartment: "c" + - formula: "C6H7O30P8" - charge: -13 - annotation: !!omap - - chebi: CHEBI:52965 - - metanetx.chemical: MNXM487477 - - sbo: SBO:0000247 + - chebi: "CHEBI:52965" + - metanetx.chemical: "MNXM487477" + - sbo: "SBO:0000247" - !!omap - - id: s_0310 - - name: 5-(2-hydroxyethyl)-4-methylthiazole - - compartment: c - - formula: C6H9NOS + - id: "s_0310" + - name: "5-(2-hydroxyethyl)-4-methylthiazole" + - compartment: "c" + - formula: "C6H9NOS" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4mhetz - - chebi: CHEBI:17957 - - kegg.compound: C04294 - - metanetx.chemical: MNXM962 - - sbo: SBO:0000247 + - bigg.metabolite: "4mhetz" + - chebi: "CHEBI:17957" + - kegg.compound: "C04294" + - metanetx.chemical: "MNXM962" + - sbo: "SBO:0000247" - !!omap - - id: s_0311 - - name: 5-(methylsulfanyl)-2,3-dioxopentyl phosphate - - compartment: c - - formula: C6H9O6PS + - id: "s_0311" + - name: "5-(methylsulfanyl)-2,3-dioxopentyl phosphate" + - compartment: "c" + - formula: "C6H9O6PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: dkmpp - - chebi: CHEBI:58828 - - kegg.compound: C15650 - - metanetx.chemical: MNXM162358 - - sbo: SBO:0000247 + - bigg.metabolite: "dkmpp" + - chebi: "CHEBI:58828" + - kegg.compound: "C15650" + - metanetx.chemical: "MNXM162358" + - sbo: "SBO:0000247" - !!omap - - id: s_0312 - - name: 5-[(5-phospho-1-deoxy-D-ribulos-1-ylamino)methylideneamino]-1-(5-phospho-D-ribosyl)imidazole-4-carboxamide - - compartment: c - - formula: C15H21N5O15P2 + - id: "s_0312" + - name: "5-[(5-phospho-1-deoxy-D-ribulos-1-ylamino)methylideneamino]-1-(5-phospho-D-ribosyl)imidazole-4-carboxamide" + - compartment: "c" + - formula: "C15H21N5O15P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: prlp - - chebi: CHEBI:58525 - - kegg.compound: C04916 - - metanetx.chemical: MNXM1408 - - sbo: SBO:0000247 + - bigg.metabolite: "prlp" + - chebi: "CHEBI:58525" + - kegg.compound: "C04916" + - metanetx.chemical: "MNXM1408" + - sbo: "SBO:0000247" - !!omap - - id: s_0313 - - name: 5-amino-6-(5-phosphoribitylamino)uracil - - compartment: c - - formula: C9H15N4O9P + - id: "s_0313" + - name: "5-amino-6-(5-phosphoribitylamino)uracil" + - compartment: "c" + - formula: "C9H15N4O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 5aprbu - - chebi: CHEBI:58421 - - kegg.compound: C04454 - - metanetx.chemical: MNXM1178 - - sbo: SBO:0000247 + - bigg.metabolite: "5aprbu" + - chebi: "CHEBI:58421" + - kegg.compound: "C04454" + - metanetx.chemical: "MNXM1178" + - sbo: "SBO:0000247" - !!omap - - id: s_0314 - - name: 5-amino-6-(D-ribitylamino)uracil - - compartment: c - - formula: C9H16N4O6 + - id: "s_0314" + - name: "5-amino-6-(D-ribitylamino)uracil" + - compartment: "c" + - formula: "C9H16N4O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4r5au - - chebi: CHEBI:15934 - - kegg.compound: C04732 - - metanetx.chemical: MNXM791 - - sbo: SBO:0000247 + - bigg.metabolite: "4r5au" + - chebi: "CHEBI:15934" + - kegg.compound: "C04732" + - metanetx.chemical: "MNXM791" + - sbo: "SBO:0000247" - !!omap - - id: s_0315 - - name: 5-aminolevulinate - - compartment: c - - formula: C5H9NO3 + - id: "s_0315" + - name: "5-aminolevulinate" + - compartment: "c" + - formula: "C5H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: 5aop - - chebi: CHEBI:17549 - - kegg.compound: C00430 - - metanetx.chemical: MNXM405 - - sbo: SBO:0000247 + - bigg.metabolite: "5aop" + - chebi: "CHEBI:17549" + - kegg.compound: "C00430" + - metanetx.chemical: "MNXM405" + - sbo: "SBO:0000247" - !!omap - - id: s_0316 - - name: 5-aminolevulinate - - compartment: e - - formula: C5H9NO3 + - id: "s_0316" + - name: "5-aminolevulinate" + - compartment: "e" + - formula: "C5H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: 5aop - - chebi: CHEBI:17549 - - kegg.compound: C00430 - - metanetx.chemical: MNXM405 - - sbo: SBO:0000247 + - bigg.metabolite: "5aop" + - chebi: "CHEBI:17549" + - kegg.compound: "C00430" + - metanetx.chemical: "MNXM405" + - sbo: "SBO:0000247" - !!omap - - id: s_0317 - - name: 5-aminolevulinate - - compartment: m - - formula: C5H9NO3 + - id: "s_0317" + - name: "5-aminolevulinate" + - compartment: "m" + - formula: "C5H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: 5aop - - chebi: CHEBI:17549 - - kegg.compound: C00430 - - metanetx.chemical: MNXM405 - - sbo: SBO:0000247 + - bigg.metabolite: "5aop" + - chebi: "CHEBI:17549" + - kegg.compound: "C00430" + - metanetx.chemical: "MNXM405" + - sbo: "SBO:0000247" - !!omap - - id: s_0318 - - name: 5-diphospho-1D-myo-inositol pentakisphosphate - - compartment: c - - formula: C6H6O27P7 + - id: "s_0318" + - name: "5-diphospho-1D-myo-inositol pentakisphosphate" + - compartment: "c" + - formula: "C6H6O27P7" - charge: -13 - annotation: !!omap - - bigg.metabolite: ppmi12346p - - chebi: CHEBI:58628 - - kegg.compound: C11526 - - metanetx.chemical: MNXM1715 - - sbo: SBO:0000247 + - bigg.metabolite: "ppmi12346p" + - chebi: "CHEBI:58628" + - kegg.compound: "C11526" + - metanetx.chemical: "MNXM1715" + - sbo: "SBO:0000247" - !!omap - - id: s_0319 - - name: 5-formyltetrahydrofolic acid - - compartment: c - - formula: C20H21N7O7 + - id: "s_0319" + - name: "5-formyltetrahydrofolic acid" + - compartment: "c" + - formula: "C20H21N7O7" - charge: -2 - annotation: !!omap - - bigg.metabolite: 5fthf - - chebi: CHEBI:57457 - - kegg.compound: C03479 - - metanetx.chemical: MNXM1392 - - sbo: SBO:0000247 + - bigg.metabolite: "5fthf" + - chebi: "CHEBI:57457" + - kegg.compound: "C03479" + - metanetx.chemical: "MNXM1392" + - sbo: "SBO:0000247" - !!omap - - id: s_0320 - - name: 5-formyltetrahydrofolic acid - - compartment: e - - formula: C20H21N7O7 + - id: "s_0320" + - name: "5-formyltetrahydrofolic acid" + - compartment: "e" + - formula: "C20H21N7O7" - charge: -2 - annotation: !!omap - - bigg.metabolite: 5fthf - - chebi: CHEBI:57457 - - kegg.compound: C03479 - - metanetx.chemical: MNXM1392 - - sbo: SBO:0000247 + - bigg.metabolite: "5fthf" + - chebi: "CHEBI:57457" + - kegg.compound: "C03479" + - metanetx.chemical: "MNXM1392" + - sbo: "SBO:0000247" - !!omap - - id: s_0321 - - name: 5-formyltetrahydrofolic acid - - compartment: m - - formula: C20H21N7O7 + - id: "s_0321" + - name: "5-formyltetrahydrofolic acid" + - compartment: "m" + - formula: "C20H21N7O7" - charge: -2 - annotation: !!omap - - bigg.metabolite: 5fthf - - chebi: CHEBI:57457 - - kegg.compound: C03479 - - metanetx.chemical: MNXM1392 - - sbo: SBO:0000247 + - bigg.metabolite: "5fthf" + - chebi: "CHEBI:57457" + - kegg.compound: "C03479" + - metanetx.chemical: "MNXM1392" + - sbo: "SBO:0000247" - !!omap - - id: s_0322 - - name: 5-methyltetrahydrofolate - - compartment: c - - formula: C20H23N7O6 + - id: "s_0322" + - name: "5-methyltetrahydrofolate" + - compartment: "c" + - formula: "C20H23N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: 5mthf - - chebi: CHEBI:18608 - - kegg.compound: C00440 - - metanetx.chemical: MNXM318 - - sbo: SBO:0000247 + - bigg.metabolite: "5mthf" + - chebi: "CHEBI:18608" + - kegg.compound: "C00440" + - metanetx.chemical: "MNXM318" + - sbo: "SBO:0000247" - !!omap - - id: s_0323 - - name: 5-methyltetrahydropteroyltri-L-glutamic acid - - compartment: c - - formula: C30H35N9O12 + - id: "s_0323" + - name: "5-methyltetrahydropteroyltri-L-glutamic acid" + - compartment: "c" + - formula: "C30H35N9O12" - charge: -4 - annotation: !!omap - - bigg.metabolite: mhpglu - - chebi: CHEBI:58207 - - kegg.compound: C04489 - - metanetx.chemical: MNXM2623 - - sbo: SBO:0000247 + - bigg.metabolite: "mhpglu" + - chebi: "CHEBI:58207" + - kegg.compound: "C04489" + - metanetx.chemical: "MNXM2623" + - sbo: "SBO:0000247" - !!omap - - id: s_0324 - - name: 5-O-(1-carboxyvinyl)-3-phosphoshikimic acid - - compartment: c - - formula: C10H9O10P + - id: "s_0324" + - name: "5-O-(1-carboxyvinyl)-3-phosphoshikimic acid" + - compartment: "c" + - formula: "C10H9O10P" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3psme - - chebi: CHEBI:57701 - - kegg.compound: C01269 - - metanetx.chemical: MNXM1365 - - sbo: SBO:0000247 + - bigg.metabolite: "3psme" + - chebi: "CHEBI:57701" + - kegg.compound: "C01269" + - metanetx.chemical: "MNXM1365" + - sbo: "SBO:0000247" - !!omap - - id: s_0325 - - name: 5-phospho-ribosyl-glycineamide - - compartment: c - - formula: C7H14N2O8P + - id: "s_0325" + - name: "5-phospho-ribosyl-glycineamide" + - compartment: "c" + - formula: "C7H14N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: gar - - chebi: CHEBI:58457 - - kegg.compound: C03838 - - metanetx.chemical: MNXM463 - - sbo: SBO:0000247 + - bigg.metabolite: "gar" + - chebi: "CHEBI:58457" + - kegg.compound: "C03838" + - metanetx.chemical: "MNXM463" + - sbo: "SBO:0000247" - !!omap - - id: s_0326 - - name: 5-phosphoribosyl-ATP - - compartment: c - - formula: C15H19N5O20P4 + - id: "s_0326" + - name: "5-phosphoribosyl-ATP" + - compartment: "c" + - formula: "C15H19N5O20P4" - charge: -6 - annotation: !!omap - - bigg.metabolite: prbatp - - chebi: CHEBI:58424 - - kegg.compound: C02739 - - metanetx.chemical: MNXM1351 - - sbo: SBO:0000247 + - bigg.metabolite: "prbatp" + - chebi: "CHEBI:58424" + - kegg.compound: "C02739" + - metanetx.chemical: "MNXM1351" + - sbo: "SBO:0000247" - !!omap - - id: s_0327 - - name: 5-phosphoribosylamine - - compartment: c - - formula: C5H11NO7P + - id: "s_0327" + - name: "5-phosphoribosylamine" + - compartment: "c" + - formula: "C5H11NO7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: pram - - chebi: CHEBI:58681 - - kegg.compound: C03090 - - metanetx.chemical: MNXM90003 - - sbo: SBO:0000247 + - bigg.metabolite: "pram" + - chebi: "CHEBI:58681" + - kegg.compound: "C03090" + - metanetx.chemical: "MNXM90003" + - sbo: "SBO:0000247" - !!omap - - id: s_0328 - - name: 6,7-dimethyl-8-(1-D-ribityl)lumazine - - compartment: c - - formula: C13H17N4O6 + - id: "s_0328" + - name: "6,7-dimethyl-8-(1-D-ribityl)lumazine" + - compartment: "c" + - formula: "C13H17N4O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: dmlz - - chebi: CHEBI:58201 - - kegg.compound: C04332 - - metanetx.chemical: MNXM1313 - - sbo: SBO:0000247 + - bigg.metabolite: "dmlz" + - chebi: "CHEBI:58201" + - kegg.compound: "C04332" + - metanetx.chemical: "MNXM1313" + - sbo: "SBO:0000247" - !!omap - - id: s_0329 - - name: 6-(alpha-D-glucosaminyl)-1-phosphatidyl-1D-myo-inositol - - compartment: er - - formula: C17H28NO17PR2 + - id: "s_0329" + - name: "6-(alpha-D-glucosaminyl)-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "C17H28NO17PR2" - charge: 0 - annotation: !!omap - - bigg.metabolite: gpail_hs - - chebi: CHEBI:17049 - - kegg.compound: C04248 - - metanetx.chemical: MNXM1411 - - sbo: SBO:0000247 + - bigg.metabolite: "gpail_hs" + - chebi: "CHEBI:17049" + - kegg.compound: "C04248" + - metanetx.chemical: "MNXM1411" + - sbo: "SBO:0000247" - !!omap - - id: s_0330 - - name: 6-(alpha-D-glucosaminyl)-O-acyl-1-phosphatidyl-1D-myo-inositol - - compartment: er + - id: "s_0330" + - name: "6-(alpha-D-glucosaminyl)-O-acyl-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53055 - - metanetx.chemical: MNXM38512 - - sbo: SBO:0000247 + - chebi: "CHEBI:53055" + - metanetx.chemical: "MNXM38512" + - sbo: "SBO:0000247" - !!omap - - id: s_0331 - - name: 6-(N-acetyl-alpha-D-glucosaminyl)-1-phosphatidyl-1D-myo-inositol - - compartment: er - - formula: C19H30NO18PR2 + - id: "s_0331" + - name: "6-(N-acetyl-alpha-D-glucosaminyl)-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "C19H30NO18PR2" - charge: 0 - annotation: !!omap - - bigg.metabolite: acgpail_hs - - chebi: CHEBI:57265 - - kegg.compound: C01288 - - metanetx.chemical: MNXM999 - - sbo: SBO:0000247 + - bigg.metabolite: "acgpail_hs" + - chebi: "CHEBI:57265" + - kegg.compound: "C01288" + - metanetx.chemical: "MNXM999" + - sbo: "SBO:0000247" - !!omap - - id: s_0332 - - name: 6-[6-(2-aminoethylphosphoryl)-alpha-mannosyl-(1->6)-2-(2-aminoethylphosphoryl)-alpha-mannosyl-(1->6)-alpha-2-(2-aminoethylphosphoryl)mannosyl-(1->4)-alpha-glucosaminyl]-O-acyl-1-phosphatidyl-1D-myo-inositol - - compartment: er - - formula: C43H44N9O + - id: "s_0332" + - name: "6-[6-(2-aminoethylphosphoryl)-alpha-mannosyl-(1->6)-2-(2-aminoethylphosphoryl)-alpha-mannosyl-(1->6)-alpha-2-(2-aminoethylphosphoryl)mannosyl-(1->4)-alpha-glucosaminyl]-O-acyl-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "C43H44N9O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53060 - - metanetx.chemical: MNXM38542 - - sbo: SBO:0000247 + - chebi: "CHEBI:53060" + - metanetx.chemical: "MNXM38542" + - sbo: "SBO:0000247" - !!omap - - id: s_0333 - - name: 6-diphospho-1D-myo-inositol pentakisphosphate - - compartment: c - - formula: C6H6O27P7 + - id: "s_0333" + - name: "6-diphospho-1D-myo-inositol pentakisphosphate" + - compartment: "c" + - formula: "C6H6O27P7" - charge: -13 - annotation: !!omap - - chebi: CHEBI:53065 - - kegg.compound: C11526 - - metanetx.chemical: MNXM1715 - - sbo: SBO:0000247 + - chebi: "CHEBI:53065" + - kegg.compound: "C11526" + - metanetx.chemical: "MNXM1715" + - sbo: "SBO:0000247" - !!omap - - id: s_0334 - - name: 6-O-[alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl]-O-acyl-1-phosphatidyl-1D-myo-inositol - - compartment: er + - id: "s_0334" + - name: "6-O-[alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl]-O-acyl-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53056 - - metanetx.chemical: MNXM1644 - - sbo: SBO:0000247 + - chebi: "CHEBI:53056" + - metanetx.chemical: "MNXM1644" + - sbo: "SBO:0000247" - !!omap - - id: s_0335 - - name: 6-O-phosphono-D-glucono-1,5-lactone - - compartment: c - - formula: C6H9O9P + - id: "s_0335" + - name: "6-O-phosphono-D-glucono-1,5-lactone" + - compartment: "c" + - formula: "C6H9O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 6pgl - - chebi: CHEBI:57955 - - kegg.compound: C01236 - - metanetx.chemical: MNXM429 - - sbo: SBO:0000247 + - bigg.metabolite: "6pgl" + - chebi: "CHEBI:57955" + - kegg.compound: "C01236" + - metanetx.chemical: "MNXM429" + - sbo: "SBO:0000247" - !!omap - - id: s_0337 - - name: 6-O-{2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol - - compartment: er + - id: "s_0337" + - name: "6-O-{2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53057 - - metanetx.chemical: MNXM38904 - - sbo: SBO:0000247 + - chebi: "CHEBI:53057" + - metanetx.chemical: "MNXM38904" + - sbo: "SBO:0000247" - !!omap - - id: s_0338 - - name: 6-O-{alpha-D-mannosyl-(1->2)-alpha-D-mannosyl-(1->6)-2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol - - compartment: er + - id: "s_0338" + - name: "6-O-{alpha-D-mannosyl-(1->2)-alpha-D-mannosyl-(1->6)-2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53059 - - metanetx.chemical: MNXM1179 - - sbo: SBO:0000247 + - chebi: "CHEBI:53059" + - metanetx.chemical: "MNXM1179" + - sbo: "SBO:0000247" - !!omap - - id: s_0339 - - name: 6-O-{alpha-D-mannosyl-(1->6)-2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol - - compartment: er + - id: "s_0339" + - name: "6-O-{alpha-D-mannosyl-(1->6)-2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53058 - - metanetx.chemical: MNXM1139 - - sbo: SBO:0000247 + - chebi: "CHEBI:53058" + - metanetx.chemical: "MNXM1139" + - sbo: "SBO:0000247" - !!omap - - id: s_0340 - - name: 6-phospho-D-gluconate - - compartment: c - - formula: C6H10O10P + - id: "s_0340" + - name: "6-phospho-D-gluconate" + - compartment: "c" + - formula: "C6H10O10P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 6pgc - - chebi: CHEBI:58759 - - kegg.compound: C00345 - - metanetx.chemical: MNXM325 - - sbo: SBO:0000247 + - bigg.metabolite: "6pgc" + - chebi: "CHEBI:58759" + - kegg.compound: "C00345" + - metanetx.chemical: "MNXM325" + - sbo: "SBO:0000247" - !!omap - - id: s_0341 - - name: 7,8-diaminononanoate - - compartment: c - - formula: C9H21N2O2 + - id: "s_0341" + - name: "7,8-diaminononanoate" + - compartment: "c" + - formula: "C9H21N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: dann - - chebi: CHEBI:17830 - - kegg.compound: C01037 - - metanetx.chemical: MNXM1140 - - sbo: SBO:0000247 + - bigg.metabolite: "dann" + - chebi: "CHEBI:17830" + - kegg.compound: "C01037" + - metanetx.chemical: "MNXM1140" + - sbo: "SBO:0000247" - !!omap - - id: s_0342 - - name: 7,8-diaminononanoate - - compartment: e - - formula: C9H21N2O2 + - id: "s_0342" + - name: "7,8-diaminononanoate" + - compartment: "e" + - formula: "C9H21N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: dann - - chebi: CHEBI:17830 - - kegg.compound: C01037 - - metanetx.chemical: MNXM1140 - - sbo: SBO:0000247 + - bigg.metabolite: "dann" + - chebi: "CHEBI:17830" + - kegg.compound: "C01037" + - metanetx.chemical: "MNXM1140" + - sbo: "SBO:0000247" - !!omap - - id: s_0343 - - name: 7,8-dihydroneopterin - - compartment: c - - formula: C9H13N5O4 + - id: "s_0343" + - name: "7,8-dihydroneopterin" + - compartment: "c" + - formula: "C9H13N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: dhnpt - - chebi: CHEBI:17001 - - kegg.compound: C04874 - - metanetx.chemical: MNXM162359 - - sbo: SBO:0000247 + - bigg.metabolite: "dhnpt" + - chebi: "CHEBI:17001" + - kegg.compound: "C04874" + - metanetx.chemical: "MNXM162359" + - sbo: "SBO:0000247" - !!omap - - id: s_0344 - - name: 7,8-dihydroneopterin - - compartment: m - - formula: C9H13N5O4 + - id: "s_0344" + - name: "7,8-dihydroneopterin" + - compartment: "m" + - formula: "C9H13N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: dhnpt - - chebi: CHEBI:17001 - - kegg.compound: C04874 - - metanetx.chemical: MNXM162359 - - sbo: SBO:0000247 + - bigg.metabolite: "dhnpt" + - chebi: "CHEBI:17001" + - kegg.compound: "C04874" + - metanetx.chemical: "MNXM162359" + - sbo: "SBO:0000247" - !!omap - - id: s_0345 - - name: 7,8-dihydroneopterin 3'-phosphate - - compartment: c - - formula: C9H12N5O7P + - id: "s_0345" + - name: "7,8-dihydroneopterin 3'-phosphate" + - compartment: "c" + - formula: "C9H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: dhpmp - - chebi: CHEBI:58762 - - kegg.compound: C05925 - - metanetx.chemical: MNXM1645 - - sbo: SBO:0000247 + - bigg.metabolite: "dhpmp" + - chebi: "CHEBI:58762" + - kegg.compound: "C05925" + - metanetx.chemical: "MNXM1645" + - sbo: "SBO:0000247" - !!omap - - id: s_0346 - - name: 7,8-dihydroneopterin 3'-triphosphate - - compartment: c - - formula: C9H12N5O13P3 + - id: "s_0346" + - name: "7,8-dihydroneopterin 3'-triphosphate" + - compartment: "c" + - formula: "C9H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: ahdt - - chebi: CHEBI:58462 - - kegg.compound: C04895 - - metanetx.chemical: MNXM397 - - sbo: SBO:0000247 + - bigg.metabolite: "ahdt" + - chebi: "CHEBI:58462" + - kegg.compound: "C04895" + - metanetx.chemical: "MNXM397" + - sbo: "SBO:0000247" - !!omap - - id: s_0347 - - name: 7,8-dihydropteroate - - compartment: c - - formula: C14H13N6O3 + - id: "s_0347" + - name: "7,8-dihydropteroate" + - compartment: "c" + - formula: "C14H13N6O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: dhpt - - chebi: CHEBI:17839 - - kegg.compound: C00921 - - metanetx.chemical: MNXM722728 - - sbo: SBO:0000247 + - bigg.metabolite: "dhpt" + - chebi: "CHEBI:17839" + - kegg.compound: "C00921" + - metanetx.chemical: "MNXM722728" + - sbo: "SBO:0000247" - !!omap - - id: s_0348 - - name: 7,8-dihydropteroate - - compartment: m - - formula: C14H13N6O3 + - id: "s_0348" + - name: "7,8-dihydropteroate" + - compartment: "m" + - formula: "C14H13N6O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: dhpt - - chebi: CHEBI:17839 - - kegg.compound: C00921 - - metanetx.chemical: MNXM722728 - - sbo: SBO:0000247 + - bigg.metabolite: "dhpt" + - chebi: "CHEBI:17839" + - kegg.compound: "C00921" + - metanetx.chemical: "MNXM722728" + - sbo: "SBO:0000247" - !!omap - - id: s_0349 - - name: 7-phospho-2-dehydro-3-deoxy-D-arabino-heptonic acid - - compartment: c - - formula: C7H10O10P + - id: "s_0349" + - name: "7-phospho-2-dehydro-3-deoxy-D-arabino-heptonic acid" + - compartment: "c" + - formula: "C7H10O10P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 2dda7p - - chebi: CHEBI:58394 - - kegg.compound: C04691 - - metanetx.chemical: MNXM1219 - - sbo: SBO:0000247 + - bigg.metabolite: "2dda7p" + - chebi: "CHEBI:58394" + - kegg.compound: "C04691" + - metanetx.chemical: "MNXM1219" + - sbo: "SBO:0000247" - !!omap - - id: s_0350 - - name: 7-phospho-2-dehydro-3-deoxy-D-arabino-heptonic acid - - compartment: m - - formula: C7H10O10P + - id: "s_0350" + - name: "7-phospho-2-dehydro-3-deoxy-D-arabino-heptonic acid" + - compartment: "m" + - formula: "C7H10O10P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 2dda7p - - chebi: CHEBI:58394 - - kegg.compound: C04691 - - metanetx.chemical: MNXM1219 - - sbo: SBO:0000247 + - bigg.metabolite: "2dda7p" + - chebi: "CHEBI:58394" + - kegg.compound: "C04691" + - metanetx.chemical: "MNXM1219" + - sbo: "SBO:0000247" - !!omap - - id: s_0352 - - name: 8-amino-7-oxononanoate - - compartment: c - - formula: C9H17NO3 + - id: "s_0352" + - name: "8-amino-7-oxononanoate" + - compartment: "c" + - formula: "C9H17NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: 8aonn - - chebi: CHEBI:15830 - - kegg.compound: C01092 - - metanetx.chemical: MNXM1141 - - sbo: SBO:0000247 + - bigg.metabolite: "8aonn" + - chebi: "CHEBI:15830" + - kegg.compound: "C01092" + - metanetx.chemical: "MNXM1141" + - sbo: "SBO:0000247" - !!omap - - id: s_0354 - - name: 8-amino-7-oxononanoate - - compartment: e - - formula: C9H17NO3 + - id: "s_0354" + - name: "8-amino-7-oxononanoate" + - compartment: "e" + - formula: "C9H17NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: 8aonn - - chebi: CHEBI:15830 - - kegg.compound: C01092 - - metanetx.chemical: MNXM1141 - - sbo: SBO:0000247 + - bigg.metabolite: "8aonn" + - chebi: "CHEBI:15830" + - kegg.compound: "C01092" + - metanetx.chemical: "MNXM1141" + - sbo: "SBO:0000247" - !!omap - - id: s_0357 - - name: 9H-xanthine - - compartment: c - - formula: C5H4N4O2 + - id: "s_0357" + - name: "9H-xanthine" + - compartment: "c" + - formula: "C5H4N4O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: xan - - chebi: CHEBI:17712 - - kegg.compound: C00385 - - metanetx.chemical: MNXM174 - - sbo: SBO:0000247 + - bigg.metabolite: "xan" + - chebi: "CHEBI:17712" + - kegg.compound: "C00385" + - metanetx.chemical: "MNXM174" + - sbo: "SBO:0000247" - !!omap - - id: s_0358 - - name: 9H-xanthine - - compartment: e - - formula: C5H4N4O2 + - id: "s_0358" + - name: "9H-xanthine" + - compartment: "e" + - formula: "C5H4N4O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: xan - - chebi: CHEBI:17712 - - kegg.compound: C00385 - - metanetx.chemical: MNXM174 - - sbo: SBO:0000247 + - bigg.metabolite: "xan" + - chebi: "CHEBI:17712" + - kegg.compound: "C00385" + - metanetx.chemical: "MNXM174" + - sbo: "SBO:0000247" - !!omap - - id: s_0359 - - name: acetaldehyde - - compartment: c - - formula: C2H4O + - id: "s_0359" + - name: "acetaldehyde" + - compartment: "c" + - formula: "C2H4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: acald - - chebi: CHEBI:15343 - - kegg.compound: C00084 - - metanetx.chemical: MNXM75 - - sbo: SBO:0000247 + - bigg.metabolite: "acald" + - chebi: "CHEBI:15343" + - kegg.compound: "C00084" + - metanetx.chemical: "MNXM75" + - sbo: "SBO:0000247" - !!omap - - id: s_0360 - - name: acetaldehyde - - compartment: e - - formula: C2H4O + - id: "s_0360" + - name: "acetaldehyde" + - compartment: "e" + - formula: "C2H4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: acald - - chebi: CHEBI:15343 - - kegg.compound: C00084 - - metanetx.chemical: MNXM75 - - sbo: SBO:0000247 + - bigg.metabolite: "acald" + - chebi: "CHEBI:15343" + - kegg.compound: "C00084" + - metanetx.chemical: "MNXM75" + - sbo: "SBO:0000247" - !!omap - - id: s_0361 - - name: acetaldehyde - - compartment: m - - formula: C2H4O + - id: "s_0361" + - name: "acetaldehyde" + - compartment: "m" + - formula: "C2H4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: acald - - chebi: CHEBI:15343 - - kegg.compound: C00084 - - metanetx.chemical: MNXM75 - - sbo: SBO:0000247 + - bigg.metabolite: "acald" + - chebi: "CHEBI:15343" + - kegg.compound: "C00084" + - metanetx.chemical: "MNXM75" + - sbo: "SBO:0000247" - !!omap - - id: s_0362 - - name: acetate - - compartment: c - - formula: C2H3O2 + - id: "s_0362" + - name: "acetate" + - compartment: "c" + - formula: "C2H3O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ac - - chebi: CHEBI:30089 - - kegg.compound: C00033 - - metanetx.chemical: MNXM26 - - sbo: SBO:0000247 + - bigg.metabolite: "ac" + - chebi: "CHEBI:30089" + - kegg.compound: "C00033" + - metanetx.chemical: "MNXM26" + - sbo: "SBO:0000247" - !!omap - - id: s_0363 - - name: acetate - - compartment: er - - formula: C2H3O2 + - id: "s_0363" + - name: "acetate" + - compartment: "er" + - formula: "C2H3O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ac - - chebi: CHEBI:30089 - - kegg.compound: C00033 - - metanetx.chemical: MNXM26 - - sbo: SBO:0000247 + - bigg.metabolite: "ac" + - chebi: "CHEBI:30089" + - kegg.compound: "C00033" + - metanetx.chemical: "MNXM26" + - sbo: "SBO:0000247" - !!omap - - id: s_0364 - - name: acetate - - compartment: e - - formula: C2H3O2 + - id: "s_0364" + - name: "acetate" + - compartment: "e" + - formula: "C2H3O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ac - - chebi: CHEBI:30089 - - kegg.compound: C00033 - - metanetx.chemical: MNXM26 - - sbo: SBO:0000247 + - bigg.metabolite: "ac" + - chebi: "CHEBI:30089" + - kegg.compound: "C00033" + - metanetx.chemical: "MNXM26" + - sbo: "SBO:0000247" - !!omap - - id: s_0365 - - name: acetate - - compartment: m - - formula: C2H3O2 + - id: "s_0365" + - name: "acetate" + - compartment: "m" + - formula: "C2H3O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ac - - chebi: CHEBI:30089 - - kegg.compound: C00033 - - metanetx.chemical: MNXM26 - - sbo: SBO:0000247 + - bigg.metabolite: "ac" + - chebi: "CHEBI:30089" + - kegg.compound: "C00033" + - metanetx.chemical: "MNXM26" + - sbo: "SBO:0000247" - !!omap - - id: s_0366 - - name: acetate - - compartment: n - - formula: C2H3O2 + - id: "s_0366" + - name: "acetate" + - compartment: "n" + - formula: "C2H3O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ac - - chebi: CHEBI:30089 - - kegg.compound: C00033 - - metanetx.chemical: MNXM26 - - sbo: SBO:0000247 + - bigg.metabolite: "ac" + - chebi: "CHEBI:30089" + - kegg.compound: "C00033" + - metanetx.chemical: "MNXM26" + - sbo: "SBO:0000247" - !!omap - - id: s_0367 - - name: acetoacetyl-CoA - - compartment: c - - formula: C25H36N7O18P3S + - id: "s_0367" + - name: "acetoacetyl-CoA" + - compartment: "c" + - formula: "C25H36N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: aacoa - - chebi: CHEBI:57286 - - kegg.compound: C00332 - - metanetx.chemical: MNXM133 - - sbo: SBO:0000247 + - bigg.metabolite: "aacoa" + - chebi: "CHEBI:57286" + - kegg.compound: "C00332" + - metanetx.chemical: "MNXM133" + - sbo: "SBO:0000247" - !!omap - - id: s_0370 - - name: acetoacetyl-CoA - - compartment: m - - formula: C25H36N7O18P3S + - id: "s_0370" + - name: "acetoacetyl-CoA" + - compartment: "m" + - formula: "C25H36N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: aacoa - - chebi: CHEBI:57286 - - kegg.compound: C00332 - - metanetx.chemical: MNXM133 - - sbo: SBO:0000247 + - bigg.metabolite: "aacoa" + - chebi: "CHEBI:57286" + - kegg.compound: "C00332" + - metanetx.chemical: "MNXM133" + - sbo: "SBO:0000247" - !!omap - - id: s_0372 - - name: acetyl-ACP - - compartment: m - - formula: C2H3OSR + - id: "s_0372" + - name: "acetyl-ACP" + - compartment: "m" + - formula: "C2H3OSR" - charge: 0 - annotation: !!omap - - bigg.metabolite: acACP - - chebi: CHEBI:17093 - - kegg.compound: C03939 - - metanetx.chemical: MNXM1269 - - sbo: SBO:0000247 + - bigg.metabolite: "acACP" + - chebi: "CHEBI:17093" + - kegg.compound: "C03939" + - metanetx.chemical: "MNXM1269" + - sbo: "SBO:0000247" - !!omap - - id: s_0373 - - name: acetyl-CoA - - compartment: c - - formula: C23H34N7O17P3S + - id: "s_0373" + - name: "acetyl-CoA" + - compartment: "c" + - formula: "C23H34N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: accoa - - chebi: CHEBI:57288 - - kegg.compound: C00024 - - metanetx.chemical: MNXM21 - - sbo: SBO:0000247 + - bigg.metabolite: "accoa" + - chebi: "CHEBI:57288" + - kegg.compound: "C00024" + - metanetx.chemical: "MNXM21" + - sbo: "SBO:0000247" - !!omap - - id: s_0376 - - name: acetyl-CoA - - compartment: m - - formula: C23H34N7O17P3S + - id: "s_0376" + - name: "acetyl-CoA" + - compartment: "m" + - formula: "C23H34N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: accoa - - chebi: CHEBI:57288 - - kegg.compound: C00024 - - metanetx.chemical: MNXM21 - - sbo: SBO:0000247 + - bigg.metabolite: "accoa" + - chebi: "CHEBI:57288" + - kegg.compound: "C00024" + - metanetx.chemical: "MNXM21" + - sbo: "SBO:0000247" - !!omap - - id: s_0377 - - name: acetyl-CoA - - compartment: n - - formula: C23H34N7O17P3S + - id: "s_0377" + - name: "acetyl-CoA" + - compartment: "n" + - formula: "C23H34N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: accoa - - chebi: CHEBI:57288 - - kegg.compound: C00024 - - metanetx.chemical: MNXM21 - - sbo: SBO:0000247 + - bigg.metabolite: "accoa" + - chebi: "CHEBI:57288" + - kegg.compound: "C00024" + - metanetx.chemical: "MNXM21" + - sbo: "SBO:0000247" - !!omap - - id: s_0378 - - name: acetyl-CoA - - compartment: p - - formula: C23H34N7O17P3S + - id: "s_0378" + - name: "acetyl-CoA" + - compartment: "p" + - formula: "C23H34N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: accoa - - chebi: CHEBI:57288 - - kegg.compound: C00024 - - metanetx.chemical: MNXM21 - - sbo: SBO:0000247 + - bigg.metabolite: "accoa" + - chebi: "CHEBI:57288" + - kegg.compound: "C00024" + - metanetx.chemical: "MNXM21" + - sbo: "SBO:0000247" - !!omap - - id: s_0383 - - name: adenine - - compartment: c - - formula: C5H5N5 + - id: "s_0383" + - name: "adenine" + - compartment: "c" + - formula: "C5H5N5" - charge: 0 - annotation: !!omap - - bigg.metabolite: ade - - chebi: CHEBI:16708 - - kegg.compound: C00147 - - metanetx.chemical: MNXM168 - - sbo: SBO:0000247 + - bigg.metabolite: "ade" + - chebi: "CHEBI:16708" + - kegg.compound: "C00147" + - metanetx.chemical: "MNXM168" + - sbo: "SBO:0000247" - !!omap - - id: s_0384 - - name: adenine - - compartment: e - - formula: C5H5N5 + - id: "s_0384" + - name: "adenine" + - compartment: "e" + - formula: "C5H5N5" - charge: 0 - annotation: !!omap - - bigg.metabolite: ade - - chebi: CHEBI:16708 - - kegg.compound: C00147 - - metanetx.chemical: MNXM168 - - sbo: SBO:0000247 + - bigg.metabolite: "ade" + - chebi: "CHEBI:16708" + - kegg.compound: "C00147" + - metanetx.chemical: "MNXM168" + - sbo: "SBO:0000247" - !!omap - - id: s_0385 - - name: adenine - - compartment: m - - formula: C5H5N5 + - id: "s_0385" + - name: "adenine" + - compartment: "m" + - formula: "C5H5N5" - charge: 0 - annotation: !!omap - - bigg.metabolite: ade - - chebi: CHEBI:16708 - - kegg.compound: C00147 - - metanetx.chemical: MNXM168 - - sbo: SBO:0000247 + - bigg.metabolite: "ade" + - chebi: "CHEBI:16708" + - kegg.compound: "C00147" + - metanetx.chemical: "MNXM168" + - sbo: "SBO:0000247" - !!omap - - id: s_0386 - - name: adenosine - - compartment: c - - formula: C10H13N5O4 + - id: "s_0386" + - name: "adenosine" + - compartment: "c" + - formula: "C10H13N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: adn - - chebi: CHEBI:16335 - - kegg.compound: C00212 - - metanetx.chemical: MNXM212 - - sbo: SBO:0000247 + - bigg.metabolite: "adn" + - chebi: "CHEBI:16335" + - kegg.compound: "C00212" + - metanetx.chemical: "MNXM212" + - sbo: "SBO:0000247" - !!omap - - id: s_0387 - - name: adenosine - - compartment: e - - formula: C10H13N5O4 + - id: "s_0387" + - name: "adenosine" + - compartment: "e" + - formula: "C10H13N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: adn - - chebi: CHEBI:16335 - - kegg.compound: C00212 - - metanetx.chemical: MNXM212 - - sbo: SBO:0000247 + - bigg.metabolite: "adn" + - chebi: "CHEBI:16335" + - kegg.compound: "C00212" + - metanetx.chemical: "MNXM212" + - sbo: "SBO:0000247" - !!omap - - id: s_0389 - - name: adenosine 2'-phosphate - - compartment: c - - formula: C10H12N5O7P + - id: "s_0389" + - name: "adenosine 2'-phosphate" + - compartment: "c" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: amp2p - - chebi: CHEBI:28223 - - kegg.compound: C00946 - - metanetx.chemical: MNXM7028 - - sbo: SBO:0000247 + - bigg.metabolite: "amp2p" + - chebi: "CHEBI:28223" + - kegg.compound: "C00946" + - metanetx.chemical: "MNXM7028" + - sbo: "SBO:0000247" - !!omap - - id: s_0390 - - name: adenosine 3',5'-bismonophosphate - - compartment: c - - formula: C10H11N5O10P2 + - id: "s_0390" + - name: "adenosine 3',5'-bismonophosphate" + - compartment: "c" + - formula: "C10H11N5O10P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: pap - - chebi: CHEBI:58343 - - kegg.compound: C00054 - - metanetx.chemical: MNXM45 - - sbo: SBO:0000247 + - bigg.metabolite: "pap" + - chebi: "CHEBI:58343" + - kegg.compound: "C00054" + - metanetx.chemical: "MNXM45" + - sbo: "SBO:0000247" - !!omap - - id: s_0391 - - name: adenosine 3',5'-bismonophosphate - - compartment: e - - formula: C10H11N5O10P2 + - id: "s_0391" + - name: "adenosine 3',5'-bismonophosphate" + - compartment: "e" + - formula: "C10H11N5O10P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: pap - - chebi: CHEBI:58343 - - kegg.compound: C00054 - - metanetx.chemical: MNXM45 - - sbo: SBO:0000247 + - bigg.metabolite: "pap" + - chebi: "CHEBI:58343" + - kegg.compound: "C00054" + - metanetx.chemical: "MNXM45" + - sbo: "SBO:0000247" - !!omap - - id: s_0392 - - name: adenosine 3',5'-bismonophosphate - - compartment: m - - formula: C10H11N5O10P2 + - id: "s_0392" + - name: "adenosine 3',5'-bismonophosphate" + - compartment: "m" + - formula: "C10H11N5O10P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: pap - - chebi: CHEBI:58343 - - kegg.compound: C00054 - - metanetx.chemical: MNXM45 - - sbo: SBO:0000247 + - bigg.metabolite: "pap" + - chebi: "CHEBI:58343" + - kegg.compound: "C00054" + - metanetx.chemical: "MNXM45" + - sbo: "SBO:0000247" - !!omap - - id: s_0393 - - name: adenylo-succinate - - compartment: c - - formula: C14H14N5O11P + - id: "s_0393" + - name: "adenylo-succinate" + - compartment: "c" + - formula: "C14H14N5O11P" - charge: -4 - annotation: !!omap - - bigg.metabolite: dcamp - - chebi: CHEBI:57567 - - kegg.compound: C03794 - - metanetx.chemical: MNXM565 - - sbo: SBO:0000247 + - bigg.metabolite: "dcamp" + - chebi: "CHEBI:57567" + - kegg.compound: "C03794" + - metanetx.chemical: "MNXM565" + - sbo: "SBO:0000247" - !!omap - - id: s_0394 - - name: ADP - - compartment: c - - formula: C10H12N5O10P2 + - id: "s_0394" + - name: "ADP" + - compartment: "c" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: adp - - chebi: CHEBI:456216 - - kegg.compound: C00008 - - metanetx.chemical: MNXM7 - - sbo: SBO:0000247 + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - - id: s_0395 - - name: ADP - - compartment: er - - formula: C10H12N5O10P2 + - id: "s_0395" + - name: "ADP" + - compartment: "er" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: adp - - chebi: CHEBI:456216 - - kegg.compound: C00008 - - metanetx.chemical: MNXM7 - - sbo: SBO:0000247 + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - - id: s_0397 - - name: ADP - - compartment: m - - formula: C10H12N5O10P2 + - id: "s_0397" + - name: "ADP" + - compartment: "m" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: adp - - chebi: CHEBI:456216 - - kegg.compound: C00008 - - metanetx.chemical: MNXM7 - - sbo: SBO:0000247 + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - - id: s_0398 - - name: ADP - - compartment: n - - formula: C10H12N5O10P2 + - id: "s_0398" + - name: "ADP" + - compartment: "n" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: adp - - chebi: CHEBI:456216 - - kegg.compound: C00008 - - metanetx.chemical: MNXM7 - - sbo: SBO:0000247 + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - - id: s_0399 - - name: ADP - - compartment: p - - formula: C10H12N5O10P2 + - id: "s_0399" + - name: "ADP" + - compartment: "p" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: adp - - chebi: CHEBI:456216 - - kegg.compound: C00008 - - metanetx.chemical: MNXM7 - - sbo: SBO:0000247 + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - - id: s_0402 - - name: ADP-ribose - - compartment: n - - formula: C15H21N5O14P2 + - id: "s_0402" + - name: "ADP-ribose" + - compartment: "n" + - formula: "C15H21N5O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: adprib - - chebi: CHEBI:57967 - - kegg.compound: C00301 - - metanetx.chemical: MNXM48596 - - sbo: SBO:0000247 + - bigg.metabolite: "adprib" + - chebi: "CHEBI:57967" + - kegg.compound: "C00301" + - metanetx.chemical: "MNXM48596" + - sbo: "SBO:0000247" - !!omap - - id: s_0403 - - name: AICAR - - compartment: c - - formula: C9H13N4O8P + - id: "s_0403" + - name: "AICAR" + - compartment: "c" + - formula: "C9H13N4O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: aicar - - chebi: CHEBI:58475 - - kegg.compound: C04677 - - metanetx.chemical: MNXM365 - - sbo: SBO:0000247 + - bigg.metabolite: "aicar" + - chebi: "CHEBI:58475" + - kegg.compound: "C04677" + - metanetx.chemical: "MNXM365" + - sbo: "SBO:0000247" - !!omap - - id: s_0404 - - name: Ala-tRNA(Ala) - - compartment: c - - formula: C3H7NOR + - id: "s_0404" + - name: "Ala-tRNA(Ala)" + - compartment: "c" + - formula: "C3H7NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: alatrna - - chebi: CHEBI:17732 - - kegg.compound: C00886 - - metanetx.chemical: MNXM89815 - - sbo: SBO:0000247 + - bigg.metabolite: "alatrna" + - chebi: "CHEBI:17732" + - kegg.compound: "C00886" + - metanetx.chemical: "MNXM89815" + - sbo: "SBO:0000247" - !!omap - - id: s_0405 - - name: allantoate - - compartment: c - - formula: C4H7N4O4 + - id: "s_0405" + - name: "allantoate" + - compartment: "c" + - formula: "C4H7N4O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: alltt - - chebi: CHEBI:17536 - - kegg.compound: C00499 - - metanetx.chemical: MNXM584 - - sbo: SBO:0000247 + - bigg.metabolite: "alltt" + - chebi: "CHEBI:17536" + - kegg.compound: "C00499" + - metanetx.chemical: "MNXM584" + - sbo: "SBO:0000247" - !!omap - - id: s_0406 - - name: allantoate - - compartment: e - - formula: C4H7N4O4 + - id: "s_0406" + - name: "allantoate" + - compartment: "e" + - formula: "C4H7N4O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: alltt - - chebi: CHEBI:17536 - - kegg.compound: C00499 - - metanetx.chemical: MNXM584 - - sbo: SBO:0000247 + - bigg.metabolite: "alltt" + - chebi: "CHEBI:17536" + - kegg.compound: "C00499" + - metanetx.chemical: "MNXM584" + - sbo: "SBO:0000247" - !!omap - - id: s_0407 - - name: allantoin - - compartment: c - - formula: C4H6N4O3 + - id: "s_0407" + - name: "allantoin" + - compartment: "c" + - formula: "C4H6N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: alltn - - chebi: CHEBI:15676 - - kegg.compound: C01551 - - metanetx.chemical: MNXM612 - - sbo: SBO:0000247 + - bigg.metabolite: "alltn" + - chebi: "CHEBI:15676" + - kegg.compound: "C01551" + - metanetx.chemical: "MNXM612" + - sbo: "SBO:0000247" - !!omap - - id: s_0408 - - name: allantoin - - compartment: e - - formula: C4H6N4O3 + - id: "s_0408" + - name: "allantoin" + - compartment: "e" + - formula: "C4H6N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: alltn - - chebi: CHEBI:15676 - - kegg.compound: C01551 - - metanetx.chemical: MNXM612 - - sbo: SBO:0000247 + - bigg.metabolite: "alltn" + - chebi: "CHEBI:15676" + - kegg.compound: "C01551" + - metanetx.chemical: "MNXM612" + - sbo: "SBO:0000247" - !!omap - - id: s_0409 - - name: alpha,alpha-trehalose 6-phosphate - - compartment: c - - formula: C12H21O14P + - id: "s_0409" + - name: "alpha,alpha-trehalose 6-phosphate" + - compartment: "c" + - formula: "C12H21O14P" - charge: -2 - annotation: !!omap - - bigg.metabolite: tre6p - - chebi: CHEBI:58429 - - kegg.compound: C00689 - - metanetx.chemical: MNXM448 - - sbo: SBO:0000247 + - bigg.metabolite: "tre6p" + - chebi: "CHEBI:58429" + - kegg.compound: "C00689" + - metanetx.chemical: "MNXM448" + - sbo: "SBO:0000247" - !!omap - - id: s_0410 - - name: alpha-D-galactose 1-phosphate - - compartment: c - - formula: C6H11O9P + - id: "s_0410" + - name: "alpha-D-galactose 1-phosphate" + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: gal1p - - chebi: CHEBI:58336 - - kegg.compound: C00446 - - metanetx.chemical: MNXM336 - - sbo: SBO:0000247 + - bigg.metabolite: "gal1p" + - chebi: "CHEBI:58336" + - kegg.compound: "C00446" + - metanetx.chemical: "MNXM336" + - sbo: "SBO:0000247" - !!omap - - id: s_0411 - - name: alpha-D-glucosamine 1-phosphate - - compartment: c - - formula: C6H13NO8P + - id: "s_0411" + - name: "alpha-D-glucosamine 1-phosphate" + - compartment: "c" + - formula: "C6H13NO8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: gam1p - - chebi: CHEBI:58516 - - kegg.compound: C06156 - - metanetx.chemical: MNXM969 - - sbo: SBO:0000247 + - bigg.metabolite: "gam1p" + - chebi: "CHEBI:58516" + - kegg.compound: "C06156" + - metanetx.chemical: "MNXM969" + - sbo: "SBO:0000247" - !!omap - - id: s_0412 - - name: alpha-D-glucosamine 6-phosphate - - compartment: c - - formula: C6H13NO8P + - id: "s_0412" + - name: "alpha-D-glucosamine 6-phosphate" + - compartment: "c" + - formula: "C6H13NO8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: gam6p - - chebi: CHEBI:15873 - - kegg.compound: C00352 - - metanetx.chemical: MNXM370 - - sbo: SBO:0000247 + - bigg.metabolite: "gam6p" + - chebi: "CHEBI:15873" + - kegg.compound: "C00352" + - metanetx.chemical: "MNXM370" + - sbo: "SBO:0000247" - !!omap - - id: s_0413 - - name: alpha-D-glucosamine 6-phosphate - - compartment: e - - formula: C6H13NO8P + - id: "s_0413" + - name: "alpha-D-glucosamine 6-phosphate" + - compartment: "e" + - formula: "C6H13NO8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: gam6p - - chebi: CHEBI:15873 - - kegg.compound: C00352 - - metanetx.chemical: MNXM370 - - sbo: SBO:0000247 + - bigg.metabolite: "gam6p" + - chebi: "CHEBI:15873" + - kegg.compound: "C00352" + - metanetx.chemical: "MNXM370" + - sbo: "SBO:0000247" - !!omap - - id: s_0414 - - name: alpha-D-mannosyl-beta-D-mannosyldiacetylchitobiosyldiphosphodolichol - - compartment: g - - formula: C48H84N2O27P2 + - id: "s_0414" + - name: "alpha-D-mannosyl-beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" + - compartment: "g" + - formula: "C48H84N2O27P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:28067 - - kegg.compound: C05861 - - metanetx.chemical: MNXM41231 - - sbo: SBO:0000247 + - chebi: "CHEBI:28067" + - kegg.compound: "C05861" + - metanetx.chemical: "MNXM41231" + - sbo: "SBO:0000247" - !!omap - - id: s_0415 - - name: alpha-D-ribose 1-phosphate(2-) - - compartment: c - - formula: C5H9O8P + - id: "s_0415" + - name: "alpha-D-ribose 1-phosphate(2-)" + - compartment: "c" + - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: r1p - - chebi: CHEBI:57720 - - kegg.compound: C00620 - - metanetx.chemical: MNXM295 - - sbo: SBO:0000247 + - bigg.metabolite: "r1p" + - chebi: "CHEBI:57720" + - kegg.compound: "C00620" + - metanetx.chemical: "MNXM295" + - sbo: "SBO:0000247" - !!omap - - id: s_0416 - - name: alpha-D-ribose 1-phosphate(2-) - - compartment: m - - formula: C5H9O8P + - id: "s_0416" + - name: "alpha-D-ribose 1-phosphate(2-)" + - compartment: "m" + - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: r1p - - chebi: CHEBI:57720 - - kegg.compound: C00620 - - metanetx.chemical: MNXM295 - - sbo: SBO:0000247 + - bigg.metabolite: "r1p" + - chebi: "CHEBI:57720" + - kegg.compound: "C00620" + - metanetx.chemical: "MNXM295" + - sbo: "SBO:0000247" - !!omap - - id: s_0417 - - name: aminoacetaldehyde - - compartment: c - - formula: C2H6NO + - id: "s_0417" + - name: "aminoacetaldehyde" + - compartment: "c" + - formula: "C2H6NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: aacald - - chebi: CHEBI:58213 - - kegg.compound: C06735 - - metanetx.chemical: MNXM2212 - - sbo: SBO:0000247 + - bigg.metabolite: "aacald" + - chebi: "CHEBI:58213" + - kegg.compound: "C06735" + - metanetx.chemical: "MNXM2212" + - sbo: "SBO:0000247" - !!omap - - id: s_0418 - - name: aminoacetone - - compartment: c - - formula: C3H8NO + - id: "s_0418" + - name: "aminoacetone" + - compartment: "c" + - formula: "C3H8NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: aact - - chebi: CHEBI:58320 - - kegg.compound: C01888 - - metanetx.chemical: MNXM1106 - - sbo: SBO:0000247 + - bigg.metabolite: "aact" + - chebi: "CHEBI:58320" + - kegg.compound: "C01888" + - metanetx.chemical: "MNXM1106" + - sbo: "SBO:0000247" - !!omap - - id: s_0419 - - name: ammonium - - compartment: c - - formula: H4N + - id: "s_0419" + - name: "ammonium" + - compartment: "c" + - formula: "H4N" - charge: 1 - annotation: !!omap - - bigg.metabolite: nh4 - - chebi: CHEBI:28938 - - kegg.compound: C01342 - - metanetx.chemical: MNXM15 - - sbo: SBO:0000247 + - bigg.metabolite: "nh4" + - chebi: "CHEBI:28938" + - kegg.compound: "C01342" + - metanetx.chemical: "MNXM15" + - sbo: "SBO:0000247" - !!omap - - id: s_0420 - - name: ammonium - - compartment: e - - formula: H4N + - id: "s_0420" + - name: "ammonium" + - compartment: "e" + - formula: "H4N" - charge: 1 - annotation: !!omap - - bigg.metabolite: nh4 - - chebi: CHEBI:28938 - - kegg.compound: C01342 - - metanetx.chemical: MNXM15 - - sbo: SBO:0000247 + - bigg.metabolite: "nh4" + - chebi: "CHEBI:28938" + - kegg.compound: "C01342" + - metanetx.chemical: "MNXM15" + - sbo: "SBO:0000247" - !!omap - - id: s_0421 - - name: ammonium - - compartment: m - - formula: H4N + - id: "s_0421" + - name: "ammonium" + - compartment: "m" + - formula: "H4N" - charge: 1 - annotation: !!omap - - bigg.metabolite: nh4 - - chebi: CHEBI:28938 - - kegg.compound: C01342 - - metanetx.chemical: MNXM15 - - sbo: SBO:0000247 + - bigg.metabolite: "nh4" + - chebi: "CHEBI:28938" + - kegg.compound: "C01342" + - metanetx.chemical: "MNXM15" + - sbo: "SBO:0000247" - !!omap - - id: s_0423 - - name: AMP - - compartment: c - - formula: C10H12N5O7P + - id: "s_0423" + - name: "AMP" + - compartment: "c" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: amp - - chebi: CHEBI:456215 - - kegg.compound: C00020 - - metanetx.chemical: MNXM14 - - sbo: SBO:0000247 + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - - id: s_0424 - - name: AMP - - compartment: m - - formula: C10H12N5O7P + - id: "s_0424" + - name: "AMP" + - compartment: "m" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: amp - - chebi: CHEBI:456215 - - kegg.compound: C00020 - - metanetx.chemical: MNXM14 - - sbo: SBO:0000247 + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - - id: s_0425 - - name: AMP - - compartment: n - - formula: C10H12N5O7P + - id: "s_0425" + - name: "AMP" + - compartment: "n" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: amp - - chebi: CHEBI:456215 - - kegg.compound: C00020 - - metanetx.chemical: MNXM14 - - sbo: SBO:0000247 + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - - id: s_0426 - - name: AMP - - compartment: p - - formula: C10H12N5O7P + - id: "s_0426" + - name: "AMP" + - compartment: "p" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: amp - - chebi: CHEBI:456215 - - kegg.compound: C00020 - - metanetx.chemical: MNXM14 - - sbo: SBO:0000247 + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - - id: s_0427 - - name: anthranilate - - compartment: c - - formula: C7H6NO2 + - id: "s_0427" + - name: "anthranilate" + - compartment: "c" + - formula: "C7H6NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: anth - - chebi: CHEBI:16567 - - kegg.compound: C00108 - - metanetx.chemical: MNXM188 - - sbo: SBO:0000247 + - bigg.metabolite: "anth" + - chebi: "CHEBI:16567" + - kegg.compound: "C00108" + - metanetx.chemical: "MNXM188" + - sbo: "SBO:0000247" - !!omap - - id: s_0428 - - name: Arg-tRNA(Arg) - - compartment: c - - formula: C6H15N4OR + - id: "s_0428" + - name: "Arg-tRNA(Arg)" + - compartment: "c" + - formula: "C6H15N4OR" - charge: 2 - annotation: !!omap - - bigg.metabolite: argtrna - - chebi: CHEBI:18366 - - kegg.compound: C02163 - - metanetx.chemical: MNXM89870 - - sbo: SBO:0000247 + - bigg.metabolite: "argtrna" + - chebi: "CHEBI:18366" + - kegg.compound: "C02163" + - metanetx.chemical: "MNXM89870" + - sbo: "SBO:0000247" - !!omap - - id: s_0429 - - name: Arg-tRNA(Arg) - - compartment: m - - formula: C6H15N4OR + - id: "s_0429" + - name: "Arg-tRNA(Arg)" + - compartment: "m" + - formula: "C6H15N4OR" - charge: 2 - annotation: !!omap - - bigg.metabolite: argtrna - - chebi: CHEBI:18366 - - kegg.compound: C02163 - - metanetx.chemical: MNXM89870 - - sbo: SBO:0000247 + - bigg.metabolite: "argtrna" + - chebi: "CHEBI:18366" + - kegg.compound: "C02163" + - metanetx.chemical: "MNXM89870" + - sbo: "SBO:0000247" - !!omap - - id: s_0430 - - name: Asn-tRNA(Asn) - - compartment: c - - formula: C4H8N2O2R + - id: "s_0430" + - name: "Asn-tRNA(Asn)" + - compartment: "c" + - formula: "C4H8N2O2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: asntrna - - chebi: CHEBI:29265 - - kegg.compound: C03402 - - metanetx.chemical: MNXM89761 - - sbo: SBO:0000247 + - bigg.metabolite: "asntrna" + - chebi: "CHEBI:29265" + - kegg.compound: "C03402" + - metanetx.chemical: "MNXM89761" + - sbo: "SBO:0000247" - !!omap - - id: s_0431 - - name: Asn-tRNA(Asn) - - compartment: m - - formula: C4H8N2O2R + - id: "s_0431" + - name: "Asn-tRNA(Asn)" + - compartment: "m" + - formula: "C4H8N2O2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: asntrna - - chebi: CHEBI:29265 - - kegg.compound: C03402 - - metanetx.chemical: MNXM89761 - - sbo: SBO:0000247 + - bigg.metabolite: "asntrna" + - chebi: "CHEBI:29265" + - kegg.compound: "C03402" + - metanetx.chemical: "MNXM89761" + - sbo: "SBO:0000247" - !!omap - - id: s_0432 - - name: Asp-tRNA(Asp) - - compartment: c - - formula: C4H6NO3R + - id: "s_0432" + - name: "Asp-tRNA(Asp)" + - compartment: "c" + - formula: "C4H6NO3R" - charge: 0 - annotation: !!omap - - bigg.metabolite: asptrna - - chebi: CHEBI:29158 - - kegg.compound: C02984 - - metanetx.chemical: MNXM164570 - - sbo: SBO:0000247 + - bigg.metabolite: "asptrna" + - chebi: "CHEBI:29158" + - kegg.compound: "C02984" + - metanetx.chemical: "MNXM164570" + - sbo: "SBO:0000247" - !!omap - - id: s_0433 - - name: Asp-tRNA(Asp) - - compartment: m - - formula: C4H6NO3R + - id: "s_0433" + - name: "Asp-tRNA(Asp)" + - compartment: "m" + - formula: "C4H6NO3R" - charge: 0 - annotation: !!omap - - bigg.metabolite: asptrna - - chebi: CHEBI:29158 - - kegg.compound: C02984 - - metanetx.chemical: MNXM164570 - - sbo: SBO:0000247 + - bigg.metabolite: "asptrna" + - chebi: "CHEBI:29158" + - kegg.compound: "C02984" + - metanetx.chemical: "MNXM164570" + - sbo: "SBO:0000247" - !!omap - - id: s_0434 - - name: ATP - - compartment: c - - formula: C10H12N5O13P3 + - id: "s_0434" + - name: "ATP" + - compartment: "c" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: atp - - chebi: CHEBI:30616 - - kegg.compound: C00002 - - metanetx.chemical: MNXM3 - - sbo: SBO:0000247 + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - - id: s_0435 - - name: ATP - - compartment: er - - formula: C10H12N5O13P3 + - id: "s_0435" + - name: "ATP" + - compartment: "er" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: atp - - chebi: CHEBI:30616 - - kegg.compound: C00002 - - metanetx.chemical: MNXM3 - - sbo: SBO:0000247 + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - - id: s_0437 - - name: ATP - - compartment: m - - formula: C10H12N5O13P3 + - id: "s_0437" + - name: "ATP" + - compartment: "m" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: atp - - chebi: CHEBI:30616 - - kegg.compound: C00002 - - metanetx.chemical: MNXM3 - - sbo: SBO:0000247 + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - - id: s_0438 - - name: ATP - - compartment: n - - formula: C10H12N5O13P3 + - id: "s_0438" + - name: "ATP" + - compartment: "n" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: atp - - chebi: CHEBI:30616 - - kegg.compound: C00002 - - metanetx.chemical: MNXM3 - - sbo: SBO:0000247 + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - - id: s_0439 - - name: ATP - - compartment: p - - formula: C10H12N5O13P3 + - id: "s_0439" + - name: "ATP" + - compartment: "p" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: atp - - chebi: CHEBI:30616 - - kegg.compound: C00002 - - metanetx.chemical: MNXM3 - - sbo: SBO:0000247 + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - - id: s_0441 - - name: beta-alanine - - compartment: c - - formula: C3H7NO2 + - id: "s_0441" + - name: "beta-alanine" + - compartment: "c" + - formula: "C3H7NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_B - - chebi: CHEBI:16958 - - kegg.compound: C00099 - - metanetx.chemical: MNXM144 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_B" + - chebi: "CHEBI:16958" + - kegg.compound: "C00099" + - metanetx.chemical: "MNXM144" + - sbo: "SBO:0000247" - !!omap - - id: s_0442 - - name: beta-D-fructose 2,6-bisphosphate - - compartment: c - - formula: C6H10O12P2 + - id: "s_0442" + - name: "beta-D-fructose 2,6-bisphosphate" + - compartment: "c" + - formula: "C6H10O12P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: f26bp - - chebi: CHEBI:58579 - - kegg.compound: C00665 - - metanetx.chemical: MNXM651 - - sbo: SBO:0000247 + - bigg.metabolite: "f26bp" + - chebi: "CHEBI:58579" + - kegg.compound: "C00665" + - metanetx.chemical: "MNXM651" + - sbo: "SBO:0000247" - !!omap - - id: s_0443 - - name: beta-D-mannosyldiacetylchitobiosyldiphosphodolichol - - compartment: c - - formula: C42H72N2O22P2 + - id: "s_0443" + - name: "beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" + - compartment: "c" + - formula: "C42H72N2O22P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: mpdol - - chebi: CHEBI:18396 - - kegg.compound: C05860 - - metanetx.chemical: MNXM1078 - - sbo: SBO:0000247 + - bigg.metabolite: "mpdol" + - chebi: "CHEBI:18396" + - kegg.compound: "C05860" + - metanetx.chemical: "MNXM1078" + - sbo: "SBO:0000247" - !!omap - - id: s_0444 - - name: beta-D-mannosyldiacetylchitobiosyldiphosphodolichol - - compartment: g - - formula: C42H72N2O22P2 + - id: "s_0444" + - name: "beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" + - compartment: "g" + - formula: "C42H72N2O22P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: mpdol - - chebi: CHEBI:18396 - - kegg.compound: C05860 - - metanetx.chemical: MNXM1078 - - sbo: SBO:0000247 + - bigg.metabolite: "mpdol" + - chebi: "CHEBI:18396" + - kegg.compound: "C05860" + - metanetx.chemical: "MNXM1078" + - sbo: "SBO:0000247" - !!omap - - id: s_0445 - - name: bicarbonate - - compartment: c - - formula: CHO3 + - id: "s_0445" + - name: "bicarbonate" + - compartment: "c" + - formula: "CHO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: hco3 - - chebi: CHEBI:17544 - - kegg.compound: C00288 - - metanetx.chemical: MNXM60 - - sbo: SBO:0000247 + - bigg.metabolite: "hco3" + - chebi: "CHEBI:17544" + - kegg.compound: "C00288" + - metanetx.chemical: "MNXM60" + - sbo: "SBO:0000247" - !!omap - - id: s_0446 - - name: bicarbonate - - compartment: e - - formula: CHO3 + - id: "s_0446" + - name: "bicarbonate" + - compartment: "e" + - formula: "CHO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: hco3 - - chebi: CHEBI:17544 - - kegg.compound: C00288 - - metanetx.chemical: MNXM60 - - sbo: SBO:0000247 + - bigg.metabolite: "hco3" + - chebi: "CHEBI:17544" + - kegg.compound: "C00288" + - metanetx.chemical: "MNXM60" + - sbo: "SBO:0000247" - !!omap - - id: s_0447 - - name: bicarbonate - - compartment: m - - formula: CHO3 + - id: "s_0447" + - name: "bicarbonate" + - compartment: "m" + - formula: "CHO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: hco3 - - chebi: CHEBI:17544 - - kegg.compound: C00288 - - metanetx.chemical: MNXM60 - - sbo: SBO:0000247 + - bigg.metabolite: "hco3" + - chebi: "CHEBI:17544" + - kegg.compound: "C00288" + - metanetx.chemical: "MNXM60" + - sbo: "SBO:0000247" - !!omap - - id: s_0448 - - name: bicarbonate - - compartment: n - - formula: CHO3 + - id: "s_0448" + - name: "bicarbonate" + - compartment: "n" + - formula: "CHO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: hco3 - - chebi: CHEBI:17544 - - kegg.compound: C00288 - - metanetx.chemical: MNXM60 - - sbo: SBO:0000247 + - bigg.metabolite: "hco3" + - chebi: "CHEBI:17544" + - kegg.compound: "C00288" + - metanetx.chemical: "MNXM60" + - sbo: "SBO:0000247" - !!omap - - id: s_0450 - - name: biomass - - compartment: c + - id: "s_0450" + - name: "biomass" + - compartment: "c" + - formula: "" - charge: 0 - annotation: !!omap - - bigg.metabolite: biomass - - sbo: SBO:0000649 + - bigg.metabolite: "biomass" + - sbo: "SBO:0000649" - !!omap - - id: s_0451 - - name: biotin - - compartment: c - - formula: C10H15N2O3S + - id: "s_0451" + - name: "biotin" + - compartment: "c" + - formula: "C10H15N2O3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: btn - - chebi: CHEBI:57586 - - kegg.compound: C00120 - - metanetx.chemical: MNXM304 - - sbo: SBO:0000247 + - bigg.metabolite: "btn" + - chebi: "CHEBI:57586" + - kegg.compound: "C00120" + - metanetx.chemical: "MNXM304" + - sbo: "SBO:0000247" - !!omap - - id: s_0452 - - name: biotin - - compartment: e - - formula: C10H15N2O3S + - id: "s_0452" + - name: "biotin" + - compartment: "e" + - formula: "C10H15N2O3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: btn - - chebi: CHEBI:57586 - - kegg.compound: C00120 - - metanetx.chemical: MNXM304 - - sbo: SBO:0000247 + - bigg.metabolite: "btn" + - chebi: "CHEBI:57586" + - kegg.compound: "C00120" + - metanetx.chemical: "MNXM304" + - sbo: "SBO:0000247" - !!omap - - id: s_0453 - - name: biotinyl-5'-AMP - - compartment: c - - formula: C20H27N7O9PS + - id: "s_0453" + - name: "biotinyl-5'-AMP" + - compartment: "c" + - formula: "C20H27N7O9PS" - charge: -1 - annotation: !!omap - - bigg.metabolite: btamp - - chebi: CHEBI:62414 - - kegg.compound: C05921 - - metanetx.chemical: MNXM2351 - - sbo: SBO:0000247 + - bigg.metabolite: "btamp" + - chebi: "CHEBI:62414" + - kegg.compound: "C05921" + - metanetx.chemical: "MNXM2351" + - sbo: "SBO:0000247" - !!omap - - id: s_0454 - - name: but-1-ene-1,2,4-tricarboxylic acid - - compartment: m - - formula: C7H5O6 + - id: "s_0454" + - name: "but-1-ene-1,2,4-tricarboxylic acid" + - compartment: "m" + - formula: "C7H5O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: b124tc - - chebi: CHEBI:58174 - - kegg.compound: C04002 - - metanetx.chemical: MNXM920 - - sbo: SBO:0000247 + - bigg.metabolite: "b124tc" + - chebi: "CHEBI:58174" + - kegg.compound: "C04002" + - metanetx.chemical: "MNXM920" + - sbo: "SBO:0000247" - !!omap - - id: s_0455 - - name: carbamoyl phosphate - - compartment: c - - formula: CH2NO5P + - id: "s_0455" + - name: "carbamoyl phosphate" + - compartment: "c" + - formula: "CH2NO5P" - charge: -2 - annotation: !!omap - - bigg.metabolite: cbp - - chebi: CHEBI:58228 - - kegg.compound: C00169 - - metanetx.chemical: MNXM138 - - sbo: SBO:0000247 + - bigg.metabolite: "cbp" + - chebi: "CHEBI:58228" + - kegg.compound: "C00169" + - metanetx.chemical: "MNXM138" + - sbo: "SBO:0000247" - !!omap - - id: s_0456 - - name: carbon dioxide - - compartment: c - - formula: CO2 + - id: "s_0456" + - name: "carbon dioxide" + - compartment: "c" + - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: co2 - - chebi: CHEBI:16526 - - kegg.compound: C00011 - - metanetx.chemical: MNXM13 - - sbo: SBO:0000247 + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - - id: s_0457 - - name: carbon dioxide - - compartment: er - - formula: CO2 + - id: "s_0457" + - name: "carbon dioxide" + - compartment: "er" + - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: co2 - - chebi: CHEBI:16526 - - kegg.compound: C00011 - - metanetx.chemical: MNXM13 - - sbo: SBO:0000247 + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - - id: s_0458 - - name: carbon dioxide - - compartment: e - - formula: CO2 + - id: "s_0458" + - name: "carbon dioxide" + - compartment: "e" + - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: co2 - - chebi: CHEBI:16526 - - kegg.compound: C00011 - - metanetx.chemical: MNXM13 - - sbo: SBO:0000247 + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - - id: s_0460 - - name: carbon dioxide - - compartment: m - - formula: CO2 + - id: "s_0460" + - name: "carbon dioxide" + - compartment: "m" + - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: co2 - - chebi: CHEBI:16526 - - kegg.compound: C00011 - - metanetx.chemical: MNXM13 - - sbo: SBO:0000247 + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - - id: s_0461 - - name: carbon dioxide - - compartment: n - - formula: CO2 + - id: "s_0461" + - name: "carbon dioxide" + - compartment: "n" + - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: co2 - - chebi: CHEBI:16526 - - kegg.compound: C00011 - - metanetx.chemical: MNXM13 - - sbo: SBO:0000247 + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - - id: s_0462 - - name: carbon dioxide - - compartment: p - - formula: CO2 + - id: "s_0462" + - name: "carbon dioxide" + - compartment: "p" + - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: co2 - - chebi: CHEBI:16526 - - kegg.compound: C00011 - - metanetx.chemical: MNXM13 - - sbo: SBO:0000247 + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - - id: s_0465 - - name: carboxyacetyl-ACP - - compartment: m - - formula: C3H3O3SR + - id: "s_0465" + - name: "carboxyacetyl-ACP" + - compartment: "m" + - formula: "C3H3O3SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: malACP - - chebi: CHEBI:17330 - - kegg.compound: C01209 - - metanetx.chemical: MNXM184 - - sbo: SBO:0000247 + - bigg.metabolite: "malACP" + - chebi: "CHEBI:17330" + - kegg.compound: "C01209" + - metanetx.chemical: "MNXM184" + - sbo: "SBO:0000247" - !!omap - - id: s_0467 - - name: CDP - - compartment: c - - formula: C9H12N3O11P2 + - id: "s_0467" + - name: "CDP" + - compartment: "c" + - formula: "C9H12N3O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: cdp - - chebi: CHEBI:58069 - - kegg.compound: C00112 - - metanetx.chemical: MNXM220 - - sbo: SBO:0000247 + - bigg.metabolite: "cdp" + - chebi: "CHEBI:58069" + - kegg.compound: "C00112" + - metanetx.chemical: "MNXM220" + - sbo: "SBO:0000247" - !!omap - - id: s_0468 - - name: CDP - - compartment: n - - formula: C9H12N3O11P2 + - id: "s_0468" + - name: "CDP" + - compartment: "n" + - formula: "C9H12N3O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: cdp - - chebi: CHEBI:58069 - - kegg.compound: C00112 - - metanetx.chemical: MNXM220 - - sbo: SBO:0000247 + - bigg.metabolite: "cdp" + - chebi: "CHEBI:58069" + - kegg.compound: "C00112" + - metanetx.chemical: "MNXM220" + - sbo: "SBO:0000247" - !!omap - - id: s_0469 - - name: CDP-choline - - compartment: c - - formula: C14H25N4O11P2 + - id: "s_0469" + - name: "CDP-choline" + - compartment: "c" + - formula: "C14H25N4O11P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: cdpchol - - chebi: CHEBI:16436 - - kegg.compound: C00307 - - metanetx.chemical: MNXM283 - - sbo: SBO:0000247 + - bigg.metabolite: "cdpchol" + - chebi: "CHEBI:16436" + - kegg.compound: "C00307" + - metanetx.chemical: "MNXM283" + - sbo: "SBO:0000247" - !!omap - - id: s_0474 - - name: CDP-ethanolamine - - compartment: c - - formula: C11H19N4O11P2 + - id: "s_0474" + - name: "CDP-ethanolamine" + - compartment: "c" + - formula: "C11H19N4O11P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: cdpea - - chebi: CHEBI:57876 - - kegg.compound: C00570 - - metanetx.chemical: MNXM449 - - sbo: SBO:0000247 + - bigg.metabolite: "cdpea" + - chebi: "CHEBI:57876" + - kegg.compound: "C00570" + - metanetx.chemical: "MNXM449" + - sbo: "SBO:0000247" - !!omap - - id: s_0475 - - name: ceramide-1 (C24) - - compartment: er - - formula: C42H85NO3 + - id: "s_0475" + - name: "ceramide-1 (C24)" + - compartment: "er" + - formula: "C42H85NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer1_24 - - chebi: CHEBI:52961 - - metanetx.chemical: MNXM64020 - - sbo: SBO:0000247 + - bigg.metabolite: "cer1_24" + - chebi: "CHEBI:52961" + - metanetx.chemical: "MNXM64020" + - sbo: "SBO:0000247" - !!omap - - id: s_0476 - - name: ceramide-1 (C24) - - compartment: g - - formula: C42H85NO3 + - id: "s_0476" + - name: "ceramide-1 (C24)" + - compartment: "g" + - formula: "C42H85NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer1_24 - - chebi: CHEBI:52961 - - metanetx.chemical: MNXM64020 - - sbo: SBO:0000247 + - bigg.metabolite: "cer1_24" + - chebi: "CHEBI:52961" + - metanetx.chemical: "MNXM64020" + - sbo: "SBO:0000247" - !!omap - - id: s_0477 - - name: ceramide-1 (C24) - - compartment: m - - formula: C42H85NO3 + - id: "s_0477" + - name: "ceramide-1 (C24)" + - compartment: "m" + - formula: "C42H85NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer1_24 - - chebi: CHEBI:52961 - - metanetx.chemical: MNXM64020 - - sbo: SBO:0000247 + - bigg.metabolite: "cer1_24" + - chebi: "CHEBI:52961" + - metanetx.chemical: "MNXM64020" + - sbo: "SBO:0000247" - !!omap - - id: s_0478 - - name: ceramide-1 (C26) - - compartment: er - - formula: C44H89NO3 + - id: "s_0478" + - name: "ceramide-1 (C26)" + - compartment: "er" + - formula: "C44H89NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer1_26 - - chebi: CHEBI:52962 - - metanetx.chemical: MNXM63798 - - sbo: SBO:0000247 + - bigg.metabolite: "cer1_26" + - chebi: "CHEBI:52962" + - metanetx.chemical: "MNXM63798" + - sbo: "SBO:0000247" - !!omap - - id: s_0479 - - name: ceramide-1 (C26) - - compartment: g - - formula: C44H89NO3 + - id: "s_0479" + - name: "ceramide-1 (C26)" + - compartment: "g" + - formula: "C44H89NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer1_26 - - chebi: CHEBI:52962 - - metanetx.chemical: MNXM63798 - - sbo: SBO:0000247 + - bigg.metabolite: "cer1_26" + - chebi: "CHEBI:52962" + - metanetx.chemical: "MNXM63798" + - sbo: "SBO:0000247" - !!omap - - id: s_0480 - - name: ceramide-1 (C26) - - compartment: m - - formula: C44H89NO3 + - id: "s_0480" + - name: "ceramide-1 (C26)" + - compartment: "m" + - formula: "C44H89NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer1_26 - - chebi: CHEBI:52962 - - metanetx.chemical: MNXM63798 - - sbo: SBO:0000247 + - bigg.metabolite: "cer1_26" + - chebi: "CHEBI:52962" + - metanetx.chemical: "MNXM63798" + - sbo: "SBO:0000247" - !!omap - - id: s_0481 - - name: ceramide-2 (C24) - - compartment: er - - formula: C42H85NO4 + - id: "s_0481" + - name: "ceramide-2 (C24)" + - compartment: "er" + - formula: "C42H85NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer2_24 - - chebi: CHEBI:52979 - - metanetx.chemical: MNXM64019 - - sbo: SBO:0000247 + - bigg.metabolite: "cer2_24" + - chebi: "CHEBI:52979" + - metanetx.chemical: "MNXM64019" + - sbo: "SBO:0000247" - !!omap - - id: s_0482 - - name: ceramide-2 (C24) - - compartment: g - - formula: C42H85NO4 + - id: "s_0482" + - name: "ceramide-2 (C24)" + - compartment: "g" + - formula: "C42H85NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer2_24 - - chebi: CHEBI:52979 - - metanetx.chemical: MNXM64019 - - sbo: SBO:0000247 + - bigg.metabolite: "cer2_24" + - chebi: "CHEBI:52979" + - metanetx.chemical: "MNXM64019" + - sbo: "SBO:0000247" - !!omap - - id: s_0483 - - name: ceramide-2 (C24) - - compartment: m - - formula: C42H85NO4 + - id: "s_0483" + - name: "ceramide-2 (C24)" + - compartment: "m" + - formula: "C42H85NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer2_24 - - chebi: CHEBI:52979 - - metanetx.chemical: MNXM64019 - - sbo: SBO:0000247 + - bigg.metabolite: "cer2_24" + - chebi: "CHEBI:52979" + - metanetx.chemical: "MNXM64019" + - sbo: "SBO:0000247" - !!omap - - id: s_0484 - - name: ceramide-2 (C26) - - compartment: er - - formula: C44H89NO4 + - id: "s_0484" + - name: "ceramide-2 (C26)" + - compartment: "er" + - formula: "C44H89NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer2_26 - - chebi: CHEBI:52980 - - metanetx.chemical: MNXM63797 - - sbo: SBO:0000247 + - bigg.metabolite: "cer2_26" + - chebi: "CHEBI:52980" + - metanetx.chemical: "MNXM63797" + - sbo: "SBO:0000247" - !!omap - - id: s_0485 - - name: ceramide-2 (C26) - - compartment: g - - formula: C44H89NO4 + - id: "s_0485" + - name: "ceramide-2 (C26)" + - compartment: "g" + - formula: "C44H89NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer2_26 - - chebi: CHEBI:52980 - - metanetx.chemical: MNXM63797 - - sbo: SBO:0000247 + - bigg.metabolite: "cer2_26" + - chebi: "CHEBI:52980" + - metanetx.chemical: "MNXM63797" + - sbo: "SBO:0000247" - !!omap - - id: s_0486 - - name: ceramide-2 (C26) - - compartment: m - - formula: C44H89NO4 + - id: "s_0486" + - name: "ceramide-2 (C26)" + - compartment: "m" + - formula: "C44H89NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer2_26 - - chebi: CHEBI:52980 - - metanetx.chemical: MNXM63797 - - sbo: SBO:0000247 + - bigg.metabolite: "cer2_26" + - chebi: "CHEBI:52980" + - metanetx.chemical: "MNXM63797" + - sbo: "SBO:0000247" - !!omap - - id: s_0487 - - name: ceramide-2' (C24) - - compartment: er - - formula: C42H85NO4 + - id: "s_0487" + - name: "ceramide-2' (C24)" + - compartment: "er" + - formula: "C42H85NO4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52371 - - metanetx.chemical: MNXM63175 - - sbo: SBO:0000247 + - chebi: "CHEBI:52371" + - metanetx.chemical: "MNXM63175" + - sbo: "SBO:0000247" - !!omap - - id: s_0488 - - name: ceramide-2' (C24) - - compartment: g - - formula: C42H85NO4 + - id: "s_0488" + - name: "ceramide-2' (C24)" + - compartment: "g" + - formula: "C42H85NO4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52371 - - metanetx.chemical: MNXM63175 - - sbo: SBO:0000247 + - chebi: "CHEBI:52371" + - metanetx.chemical: "MNXM63175" + - sbo: "SBO:0000247" - !!omap - - id: s_0489 - - name: ceramide-2' (C24) - - compartment: m - - formula: C42H85NO4 + - id: "s_0489" + - name: "ceramide-2' (C24)" + - compartment: "m" + - formula: "C42H85NO4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52371 - - metanetx.chemical: MNXM63175 - - sbo: SBO:0000247 + - chebi: "CHEBI:52371" + - metanetx.chemical: "MNXM63175" + - sbo: "SBO:0000247" - !!omap - - id: s_0490 - - name: ceramide-2' (C26) - - compartment: er - - formula: C44H89NO4 + - id: "s_0490" + - name: "ceramide-2' (C26)" + - compartment: "er" + - formula: "C44H89NO4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52372 - - metanetx.chemical: MNXM63156 - - sbo: SBO:0000247 + - chebi: "CHEBI:52372" + - metanetx.chemical: "MNXM63156" + - sbo: "SBO:0000247" - !!omap - - id: s_0491 - - name: ceramide-2' (C26) - - compartment: g - - formula: C44H89NO4 + - id: "s_0491" + - name: "ceramide-2' (C26)" + - compartment: "g" + - formula: "C44H89NO4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52372 - - metanetx.chemical: MNXM63156 - - sbo: SBO:0000247 + - chebi: "CHEBI:52372" + - metanetx.chemical: "MNXM63156" + - sbo: "SBO:0000247" - !!omap - - id: s_0492 - - name: ceramide-2' (C26) - - compartment: m - - formula: C44H89NO4 + - id: "s_0492" + - name: "ceramide-2' (C26)" + - compartment: "m" + - formula: "C44H89NO4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52372 - - metanetx.chemical: MNXM63156 - - sbo: SBO:0000247 + - chebi: "CHEBI:52372" + - metanetx.chemical: "MNXM63156" + - sbo: "SBO:0000247" - !!omap - - id: s_0493 - - name: ceramide-3 (C24) - - compartment: er - - formula: C42H85NO5 + - id: "s_0493" + - name: "ceramide-3 (C24)" + - compartment: "er" + - formula: "C42H85NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer3_24 - - chebi: CHEBI:52373 - - metanetx.chemical: MNXM63174 - - sbo: SBO:0000247 + - bigg.metabolite: "cer3_24" + - chebi: "CHEBI:52373" + - metanetx.chemical: "MNXM63174" + - sbo: "SBO:0000247" - !!omap - - id: s_0494 - - name: ceramide-3 (C24) - - compartment: g - - formula: C42H85NO5 + - id: "s_0494" + - name: "ceramide-3 (C24)" + - compartment: "g" + - formula: "C42H85NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer3_24 - - chebi: CHEBI:52373 - - metanetx.chemical: MNXM63174 - - sbo: SBO:0000247 + - bigg.metabolite: "cer3_24" + - chebi: "CHEBI:52373" + - metanetx.chemical: "MNXM63174" + - sbo: "SBO:0000247" - !!omap - - id: s_0495 - - name: ceramide-3 (C24) - - compartment: m - - formula: C42H85NO5 + - id: "s_0495" + - name: "ceramide-3 (C24)" + - compartment: "m" + - formula: "C42H85NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer3_24 - - chebi: CHEBI:52373 - - metanetx.chemical: MNXM63174 - - sbo: SBO:0000247 + - bigg.metabolite: "cer3_24" + - chebi: "CHEBI:52373" + - metanetx.chemical: "MNXM63174" + - sbo: "SBO:0000247" - !!omap - - id: s_0496 - - name: ceramide-3 (C26) - - compartment: er - - formula: C44H89NO5 + - id: "s_0496" + - name: "ceramide-3 (C26)" + - compartment: "er" + - formula: "C44H89NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer3_26 - - chebi: CHEBI:52374 - - metanetx.chemical: MNXM63157 - - sbo: SBO:0000247 + - bigg.metabolite: "cer3_26" + - chebi: "CHEBI:52374" + - metanetx.chemical: "MNXM63157" + - sbo: "SBO:0000247" - !!omap - - id: s_0497 - - name: ceramide-3 (C26) - - compartment: g - - formula: C44H89NO5 + - id: "s_0497" + - name: "ceramide-3 (C26)" + - compartment: "g" + - formula: "C44H89NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer3_26 - - chebi: CHEBI:52374 - - metanetx.chemical: MNXM63157 - - sbo: SBO:0000247 + - bigg.metabolite: "cer3_26" + - chebi: "CHEBI:52374" + - metanetx.chemical: "MNXM63157" + - sbo: "SBO:0000247" - !!omap - - id: s_0498 - - name: ceramide-3 (C26) - - compartment: m - - formula: C44H89NO5 + - id: "s_0498" + - name: "ceramide-3 (C26)" + - compartment: "m" + - formula: "C44H89NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: cer3_26 - - chebi: CHEBI:52374 - - metanetx.chemical: MNXM63157 - - sbo: SBO:0000247 + - bigg.metabolite: "cer3_26" + - chebi: "CHEBI:52374" + - metanetx.chemical: "MNXM63157" + - sbo: "SBO:0000247" - !!omap - - id: s_0499 - - name: ceramide-4 (C24) - - compartment: er - - formula: C42H85NO6 + - id: "s_0499" + - name: "ceramide-4 (C24)" + - compartment: "er" + - formula: "C42H85NO6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60256 - - metanetx.chemical: MNXM31230 - - sbo: SBO:0000247 + - chebi: "CHEBI:60256" + - metanetx.chemical: "MNXM31230" + - sbo: "SBO:0000247" - !!omap - - id: s_0500 - - name: ceramide-4 (C24) - - compartment: g - - formula: C42H85NO6 + - id: "s_0500" + - name: "ceramide-4 (C24)" + - compartment: "g" + - formula: "C42H85NO6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60256 - - metanetx.chemical: MNXM31230 - - sbo: SBO:0000247 + - chebi: "CHEBI:60256" + - metanetx.chemical: "MNXM31230" + - sbo: "SBO:0000247" - !!omap - - id: s_0501 - - name: ceramide-4 (C24) - - compartment: m - - formula: C42H85NO6 + - id: "s_0501" + - name: "ceramide-4 (C24)" + - compartment: "m" + - formula: "C42H85NO6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60256 - - metanetx.chemical: MNXM31230 - - sbo: SBO:0000247 + - chebi: "CHEBI:60256" + - metanetx.chemical: "MNXM31230" + - sbo: "SBO:0000247" - !!omap - - id: s_0502 - - name: ceramide-4 (C26) - - compartment: er - - formula: C44H89NO6 + - id: "s_0502" + - name: "ceramide-4 (C26)" + - compartment: "er" + - formula: "C44H89NO6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60384 - - metanetx.chemical: MNXM63127 - - sbo: SBO:0000247 + - chebi: "CHEBI:60384" + - metanetx.chemical: "MNXM63127" + - sbo: "SBO:0000247" - !!omap - - id: s_0503 - - name: ceramide-4 (C26) - - compartment: g - - formula: C44H89NO6 + - id: "s_0503" + - name: "ceramide-4 (C26)" + - compartment: "g" + - formula: "C44H89NO6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60384 - - metanetx.chemical: MNXM63127 - - sbo: SBO:0000247 + - chebi: "CHEBI:60384" + - metanetx.chemical: "MNXM63127" + - sbo: "SBO:0000247" - !!omap - - id: s_0504 - - name: ceramide-4 (C26) - - compartment: m - - formula: C44H89NO6 + - id: "s_0504" + - name: "ceramide-4 (C26)" + - compartment: "m" + - formula: "C44H89NO6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60384 - - metanetx.chemical: MNXM63127 - - sbo: SBO:0000247 + - chebi: "CHEBI:60384" + - metanetx.chemical: "MNXM63127" + - sbo: "SBO:0000247" - !!omap - - id: s_0507 - - name: cerotic acid - - compartment: er - - formula: C26H51O2 + - id: "s_0507" + - name: "cerotic acid" + - compartment: "er" + - formula: "C26H51O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hexc - - chebi: CHEBI:31013 - - metanetx.chemical: MNXM46158 - - sbo: SBO:0000247 + - bigg.metabolite: "hexc" + - chebi: "CHEBI:31013" + - metanetx.chemical: "MNXM46158" + - sbo: "SBO:0000247" - !!omap - - id: s_0509 - - name: chitin - - compartment: c - - formula: C8H13NO5 + - id: "s_0509" + - name: "chitin" + - compartment: "c" + - formula: "C8H13NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: chtn - - chebi: CHEBI:17029 - - kegg.compound: C00461 - - metanetx.chemical: MNXM1271 - - sbo: SBO:0000247 + - bigg.metabolite: "chtn" + - chebi: "CHEBI:17029" + - kegg.compound: "C00461" + - metanetx.chemical: "MNXM1271" + - sbo: "SBO:0000247" - !!omap - - id: s_0510 - - name: chitosan - - compartment: ce - - formula: C6H11NO4 + - id: "s_0510" + - name: "chitosan" + - compartment: "ce" + - formula: "C6H11NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: chitos - - chebi: CHEBI:16261 - - kegg.compound: C00734 - - metanetx.chemical: MNXM2106 - - sbo: SBO:0000247 + - bigg.metabolite: "chitos" + - chebi: "CHEBI:16261" + - kegg.compound: "C00734" + - metanetx.chemical: "MNXM2106" + - sbo: "SBO:0000247" - !!omap - - id: s_0511 - - name: choline - - compartment: ce - - formula: C5H14NO + - id: "s_0511" + - name: "choline" + - compartment: "ce" + - formula: "C5H14NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: chol - - chebi: CHEBI:15354 - - kegg.compound: C00114 - - metanetx.chemical: MNXM90 - - sbo: SBO:0000247 + - bigg.metabolite: "chol" + - chebi: "CHEBI:15354" + - kegg.compound: "C00114" + - metanetx.chemical: "MNXM90" + - sbo: "SBO:0000247" - !!omap - - id: s_0512 - - name: choline - - compartment: c - - formula: C5H14NO + - id: "s_0512" + - name: "choline" + - compartment: "c" + - formula: "C5H14NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: chol - - chebi: CHEBI:15354 - - kegg.compound: C00114 - - metanetx.chemical: MNXM90 - - sbo: SBO:0000247 + - bigg.metabolite: "chol" + - chebi: "CHEBI:15354" + - kegg.compound: "C00114" + - metanetx.chemical: "MNXM90" + - sbo: "SBO:0000247" - !!omap - - id: s_0513 - - name: choline - - compartment: e - - formula: C5H14NO + - id: "s_0513" + - name: "choline" + - compartment: "e" + - formula: "C5H14NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: chol - - chebi: CHEBI:15354 - - kegg.compound: C00114 - - metanetx.chemical: MNXM90 - - sbo: SBO:0000247 + - bigg.metabolite: "chol" + - chebi: "CHEBI:15354" + - kegg.compound: "C00114" + - metanetx.chemical: "MNXM90" + - sbo: "SBO:0000247" - !!omap - - id: s_0514 - - name: choline phosphate - - compartment: c - - formula: C5H13NO4P + - id: "s_0514" + - name: "choline phosphate" + - compartment: "c" + - formula: "C5H13NO4P" - charge: -1 - annotation: !!omap - - bigg.metabolite: cholp - - chebi: CHEBI:295975 - - kegg.compound: C00588 - - metanetx.chemical: MNXM229 - - sbo: SBO:0000247 + - bigg.metabolite: "cholp" + - chebi: "CHEBI:295975" + - kegg.compound: "C00588" + - metanetx.chemical: "MNXM229" + - sbo: "SBO:0000247" - !!omap - - id: s_0515 - - name: chorismate - - compartment: c - - formula: C10H8O6 + - id: "s_0515" + - name: "chorismate" + - compartment: "c" + - formula: "C10H8O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: chor - - chebi: CHEBI:29748 - - kegg.compound: C00251 - - metanetx.chemical: MNXM337 - - sbo: SBO:0000247 + - bigg.metabolite: "chor" + - chebi: "CHEBI:29748" + - kegg.compound: "C00251" + - metanetx.chemical: "MNXM337" + - sbo: "SBO:0000247" - !!omap - - id: s_0516 - - name: cis-aconitate - - compartment: c - - formula: C6H3O6 + - id: "s_0516" + - name: "cis-aconitate" + - compartment: "c" + - formula: "C6H3O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: acon_C - - chebi: CHEBI:16383 - - kegg.compound: C00417 - - metanetx.chemical: MNXM813 - - sbo: SBO:0000247 + - bigg.metabolite: "acon_C" + - chebi: "CHEBI:16383" + - kegg.compound: "C00417" + - metanetx.chemical: "MNXM813" + - sbo: "SBO:0000247" - !!omap - - id: s_0517 - - name: cis-aconitate - - compartment: m - - formula: C6H3O6 + - id: "s_0517" + - name: "cis-aconitate" + - compartment: "m" + - formula: "C6H3O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: acon_C - - chebi: CHEBI:16383 - - kegg.compound: C00417 - - metanetx.chemical: MNXM813 - - sbo: SBO:0000247 + - bigg.metabolite: "acon_C" + - chebi: "CHEBI:16383" + - kegg.compound: "C00417" + - metanetx.chemical: "MNXM813" + - sbo: "SBO:0000247" - !!omap - - id: s_0522 - - name: citrate - - compartment: c - - formula: C6H5O7 + - id: "s_0522" + - name: "citrate" + - compartment: "c" + - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: cit - - chebi: CHEBI:16947 - - kegg.compound: C00158 - - metanetx.chemical: MNXM131 - - sbo: SBO:0000247 + - bigg.metabolite: "cit" + - chebi: "CHEBI:16947" + - kegg.compound: "C00158" + - metanetx.chemical: "MNXM131" + - sbo: "SBO:0000247" - !!omap - - id: s_0523 - - name: citrate - - compartment: e - - formula: C6H5O7 + - id: "s_0523" + - name: "citrate" + - compartment: "e" + - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: cit - - chebi: CHEBI:16947 - - kegg.compound: C00158 - - metanetx.chemical: MNXM131 - - sbo: SBO:0000247 + - bigg.metabolite: "cit" + - chebi: "CHEBI:16947" + - kegg.compound: "C00158" + - metanetx.chemical: "MNXM131" + - sbo: "SBO:0000247" - !!omap - - id: s_0524 - - name: citrate - - compartment: m - - formula: C6H5O7 + - id: "s_0524" + - name: "citrate" + - compartment: "m" + - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: cit - - chebi: CHEBI:16947 - - kegg.compound: C00158 - - metanetx.chemical: MNXM131 - - sbo: SBO:0000247 + - bigg.metabolite: "cit" + - chebi: "CHEBI:16947" + - kegg.compound: "C00158" + - metanetx.chemical: "MNXM131" + - sbo: "SBO:0000247" - !!omap - - id: s_0525 - - name: citrate - - compartment: p - - formula: C6H5O7 + - id: "s_0525" + - name: "citrate" + - compartment: "p" + - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: cit - - chebi: CHEBI:16947 - - kegg.compound: C00158 - - metanetx.chemical: MNXM131 - - sbo: SBO:0000247 + - bigg.metabolite: "cit" + - chebi: "CHEBI:16947" + - kegg.compound: "C00158" + - metanetx.chemical: "MNXM131" + - sbo: "SBO:0000247" - !!omap - - id: s_0526 - - name: CMP - - compartment: c - - formula: C9H12N3O8P + - id: "s_0526" + - name: "CMP" + - compartment: "c" + - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: cmp - - chebi: CHEBI:60377 - - kegg.compound: C00055 - - metanetx.chemical: MNXM31 - - sbo: SBO:0000247 + - bigg.metabolite: "cmp" + - chebi: "CHEBI:60377" + - kegg.compound: "C00055" + - metanetx.chemical: "MNXM31" + - sbo: "SBO:0000247" - !!omap - - id: s_0528 - - name: CMP - - compartment: m - - formula: C9H12N3O8P + - id: "s_0528" + - name: "CMP" + - compartment: "m" + - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: cmp - - chebi: CHEBI:60377 - - kegg.compound: C00055 - - metanetx.chemical: MNXM31 - - sbo: SBO:0000247 + - bigg.metabolite: "cmp" + - chebi: "CHEBI:60377" + - kegg.compound: "C00055" + - metanetx.chemical: "MNXM31" + - sbo: "SBO:0000247" - !!omap - - id: s_0529 - - name: coenzyme A - - compartment: c - - formula: C21H32N7O16P3S + - id: "s_0529" + - name: "coenzyme A" + - compartment: "c" + - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: coa - - chebi: CHEBI:57287 - - kegg.compound: C00010 - - metanetx.chemical: MNXM12 - - sbo: SBO:0000247 + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - - id: s_0530 - - name: coenzyme A - - compartment: er - - formula: C21H32N7O16P3S + - id: "s_0530" + - name: "coenzyme A" + - compartment: "er" + - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: coa - - chebi: CHEBI:57287 - - kegg.compound: C00010 - - metanetx.chemical: MNXM12 - - sbo: SBO:0000247 + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - - id: s_0531 - - name: coenzyme A - - compartment: lp - - formula: C21H32N7O16P3S + - id: "s_0531" + - name: "coenzyme A" + - compartment: "lp" + - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: coa - - chebi: CHEBI:57287 - - kegg.compound: C00010 - - metanetx.chemical: MNXM12 - - sbo: SBO:0000247 + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - - id: s_0532 - - name: coenzyme A - - compartment: m - - formula: C21H32N7O16P3S + - id: "s_0532" + - name: "coenzyme A" + - compartment: "m" + - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: coa - - chebi: CHEBI:57287 - - kegg.compound: C00010 - - metanetx.chemical: MNXM12 - - sbo: SBO:0000247 + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - - id: s_0533 - - name: coenzyme A - - compartment: n - - formula: C21H32N7O16P3S + - id: "s_0533" + - name: "coenzyme A" + - compartment: "n" + - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: coa - - chebi: CHEBI:57287 - - kegg.compound: C00010 - - metanetx.chemical: MNXM12 - - sbo: SBO:0000247 + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - - id: s_0534 - - name: coenzyme A - - compartment: p - - formula: C21H32N7O16P3S + - id: "s_0534" + - name: "coenzyme A" + - compartment: "p" + - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: coa - - chebi: CHEBI:57287 - - kegg.compound: C00010 - - metanetx.chemical: MNXM12 - - sbo: SBO:0000247 + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - - id: s_0538 - - name: coproporphyrinogen III - - compartment: c - - formula: C36H40N4O8 + - id: "s_0538" + - name: "coproporphyrinogen III" + - compartment: "c" + - formula: "C36H40N4O8" - charge: -4 - annotation: !!omap - - bigg.metabolite: cpppg3 - - chebi: CHEBI:57309 - - kegg.compound: C03263 - - metanetx.chemical: MNXM410 - - sbo: SBO:0000247 + - bigg.metabolite: "cpppg3" + - chebi: "CHEBI:57309" + - kegg.compound: "C03263" + - metanetx.chemical: "MNXM410" + - sbo: "SBO:0000247" - !!omap - - id: s_0539 - - name: CTP - - compartment: c - - formula: C9H12N3O14P3 + - id: "s_0539" + - name: "CTP" + - compartment: "c" + - formula: "C9H12N3O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: ctp - - chebi: CHEBI:37563 - - kegg.compound: C00063 - - metanetx.chemical: MNXM63 - - sbo: SBO:0000247 + - bigg.metabolite: "ctp" + - chebi: "CHEBI:37563" + - kegg.compound: "C00063" + - metanetx.chemical: "MNXM63" + - sbo: "SBO:0000247" - !!omap - - id: s_0541 - - name: CTP - - compartment: m - - formula: C9H12N3O14P3 + - id: "s_0541" + - name: "CTP" + - compartment: "m" + - formula: "C9H12N3O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: ctp - - chebi: CHEBI:37563 - - kegg.compound: C00063 - - metanetx.chemical: MNXM63 - - sbo: SBO:0000247 + - bigg.metabolite: "ctp" + - chebi: "CHEBI:37563" + - kegg.compound: "C00063" + - metanetx.chemical: "MNXM63" + - sbo: "SBO:0000247" - !!omap - - id: s_0542 - - name: Cys-tRNA(Cys) - - compartment: c - - formula: C3H7NOSR + - id: "s_0542" + - name: "Cys-tRNA(Cys)" + - compartment: "c" + - formula: "C3H7NOSR" - charge: 1 - annotation: !!omap - - bigg.metabolite: cystrna - - chebi: CHEBI:29152 - - kegg.compound: C03125 - - metanetx.chemical: MNXM155005 - - sbo: SBO:0000247 + - bigg.metabolite: "cystrna" + - chebi: "CHEBI:29152" + - kegg.compound: "C03125" + - metanetx.chemical: "MNXM155005" + - sbo: "SBO:0000247" - !!omap - - id: s_0543 - - name: cytidine - - compartment: c - - formula: C9H13N3O5 + - id: "s_0543" + - name: "cytidine" + - compartment: "c" + - formula: "C9H13N3O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: cytd - - chebi: CHEBI:17562 - - kegg.compound: C00475 - - metanetx.chemical: MNXM338 - - sbo: SBO:0000247 + - bigg.metabolite: "cytd" + - chebi: "CHEBI:17562" + - kegg.compound: "C00475" + - metanetx.chemical: "MNXM338" + - sbo: "SBO:0000247" - !!omap - - id: s_0544 - - name: cytidine - - compartment: e - - formula: C9H13N3O5 + - id: "s_0544" + - name: "cytidine" + - compartment: "e" + - formula: "C9H13N3O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: cytd - - chebi: CHEBI:17562 - - kegg.compound: C00475 - - metanetx.chemical: MNXM338 - - sbo: SBO:0000247 + - bigg.metabolite: "cytd" + - chebi: "CHEBI:17562" + - kegg.compound: "C00475" + - metanetx.chemical: "MNXM338" + - sbo: "SBO:0000247" - !!omap - - id: s_0545 - - name: cytosine - - compartment: c - - formula: C4H5N3O + - id: "s_0545" + - name: "cytosine" + - compartment: "c" + - formula: "C4H5N3O" - charge: 0 - annotation: !!omap - - bigg.metabolite: csn - - chebi: CHEBI:16040 - - kegg.compound: C00380 - - metanetx.chemical: MNXM761 - - sbo: SBO:0000247 + - bigg.metabolite: "csn" + - chebi: "CHEBI:16040" + - kegg.compound: "C00380" + - metanetx.chemical: "MNXM761" + - sbo: "SBO:0000247" - !!omap - - id: s_0546 - - name: cytosine - - compartment: e - - formula: C4H5N3O + - id: "s_0546" + - name: "cytosine" + - compartment: "e" + - formula: "C4H5N3O" - charge: 0 - annotation: !!omap - - bigg.metabolite: csn - - chebi: CHEBI:16040 - - kegg.compound: C00380 - - metanetx.chemical: MNXM761 - - sbo: SBO:0000247 + - bigg.metabolite: "csn" + - chebi: "CHEBI:16040" + - kegg.compound: "C00380" + - metanetx.chemical: "MNXM761" + - sbo: "SBO:0000247" - !!omap - - id: s_0547 - - name: D-arabinono-1,4-lactone - - compartment: c - - formula: C5H8O5 + - id: "s_0547" + - name: "D-arabinono-1,4-lactone" + - compartment: "c" + - formula: "C5H8O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: Dara14lac - - chebi: CHEBI:16292 - - kegg.compound: C00652 - - metanetx.chemical: MNXM778 - - sbo: SBO:0000247 + - bigg.metabolite: "Dara14lac" + - chebi: "CHEBI:16292" + - kegg.compound: "C00652" + - metanetx.chemical: "MNXM778" + - sbo: "SBO:0000247" - !!omap - - id: s_0548 - - name: D-arabinose - - compartment: c - - formula: C5H10O5 + - id: "s_0548" + - name: "D-arabinose" + - compartment: "c" + - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: arab__D - - chebi: CHEBI:17108 - - kegg.compound: C00216 - - metanetx.chemical: MNXM40571 - - sbo: SBO:0000247 + - bigg.metabolite: "arab__D" + - chebi: "CHEBI:17108" + - kegg.compound: "C00216" + - metanetx.chemical: "MNXM40571" + - sbo: "SBO:0000247" - !!omap - - id: s_0549 - - name: D-arabinose - - compartment: e - - formula: C5H10O5 + - id: "s_0549" + - name: "D-arabinose" + - compartment: "e" + - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: arab__D - - chebi: CHEBI:17108 - - kegg.compound: C00216 - - metanetx.chemical: MNXM40571 - - sbo: SBO:0000247 + - bigg.metabolite: "arab__D" + - chebi: "CHEBI:17108" + - kegg.compound: "C00216" + - metanetx.chemical: "MNXM40571" + - sbo: "SBO:0000247" - !!omap - - id: s_0550 - - name: D-erythro-1-(imidazol-4-yl)glycerol 3-phosphate - - compartment: c - - formula: C6H9N2O6P + - id: "s_0550" + - name: "D-erythro-1-(imidazol-4-yl)glycerol 3-phosphate" + - compartment: "c" + - formula: "C6H9N2O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: eig3p - - chebi: CHEBI:58278 - - kegg.compound: C04666 - - metanetx.chemical: MNXM1422 - - sbo: SBO:0000247 + - bigg.metabolite: "eig3p" + - chebi: "CHEBI:58278" + - kegg.compound: "C04666" + - metanetx.chemical: "MNXM1422" + - sbo: "SBO:0000247" - !!omap - - id: s_0551 - - name: D-erythrose 4-phosphate - - compartment: c - - formula: C4H7O7P + - id: "s_0551" + - name: "D-erythrose 4-phosphate" + - compartment: "c" + - formula: "C4H7O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: e4p - - chebi: CHEBI:16897 - - kegg.compound: C00279 - - metanetx.chemical: MNXM258 - - sbo: SBO:0000247 + - bigg.metabolite: "e4p" + - chebi: "CHEBI:16897" + - kegg.compound: "C00279" + - metanetx.chemical: "MNXM258" + - sbo: "SBO:0000247" - !!omap - - id: s_0552 - - name: D-erythrose 4-phosphate - - compartment: m - - formula: C4H7O7P + - id: "s_0552" + - name: "D-erythrose 4-phosphate" + - compartment: "m" + - formula: "C4H7O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: e4p - - chebi: CHEBI:16897 - - kegg.compound: C00279 - - metanetx.chemical: MNXM258 - - sbo: SBO:0000247 + - bigg.metabolite: "e4p" + - chebi: "CHEBI:16897" + - kegg.compound: "C00279" + - metanetx.chemical: "MNXM258" + - sbo: "SBO:0000247" - !!omap - - id: s_0553 - - name: D-fructose - - compartment: c - - formula: C6H12O6 + - id: "s_0553" + - name: "D-fructose" + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: fru - - chebi: CHEBI:15824 - - kegg.compound: C00095 - - metanetx.chemical: MNXM175 - - sbo: SBO:0000247 + - bigg.metabolite: "fru" + - chebi: "CHEBI:15824" + - kegg.compound: "C00095" + - metanetx.chemical: "MNXM175" + - sbo: "SBO:0000247" - !!omap - - id: s_0554 - - name: D-fructose - - compartment: e - - formula: C6H12O6 + - id: "s_0554" + - name: "D-fructose" + - compartment: "e" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: fru - - chebi: CHEBI:15824 - - kegg.compound: C00095 - - metanetx.chemical: MNXM175 - - sbo: SBO:0000247 + - bigg.metabolite: "fru" + - chebi: "CHEBI:15824" + - kegg.compound: "C00095" + - metanetx.chemical: "MNXM175" + - sbo: "SBO:0000247" - !!omap - - id: s_0555 - - name: D-fructose 1,6-bisphosphate - - compartment: c - - formula: C6H10O12P2 + - id: "s_0555" + - name: "D-fructose 1,6-bisphosphate" + - compartment: "c" + - formula: "C6H10O12P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: fdp - - chebi: CHEBI:16905 - - kegg.compound: C00354 - - metanetx.chemical: MNXM417 - - sbo: SBO:0000247 + - bigg.metabolite: "fdp" + - chebi: "CHEBI:16905" + - kegg.compound: "C00354" + - metanetx.chemical: "MNXM417" + - sbo: "SBO:0000247" - !!omap - - id: s_0556 - - name: D-fructose 1-phosphate - - compartment: c - - formula: C6H11O9P + - id: "s_0556" + - name: "D-fructose 1-phosphate" + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: f1p - - chebi: CHEBI:18105 - - kegg.compound: C01094 - - metanetx.chemical: MNXM145568 - - sbo: SBO:0000247 + - bigg.metabolite: "f1p" + - chebi: "CHEBI:18105" + - kegg.compound: "C01094" + - metanetx.chemical: "MNXM145568" + - sbo: "SBO:0000247" - !!omap - - id: s_0557 - - name: D-fructose 6-phosphate - - compartment: c - - formula: C6H11O9P + - id: "s_0557" + - name: "D-fructose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: f6p - - chebi: CHEBI:57579 - - kegg.compound: C00085 - - metanetx.chemical: MNXM162235 - - sbo: SBO:0000247 + - bigg.metabolite: "f6p" + - chebi: "CHEBI:57579" + - kegg.compound: "C00085" + - metanetx.chemical: "MNXM162235" + - sbo: "SBO:0000247" - !!omap - - id: s_0558 - - name: D-galactose - - compartment: c - - formula: C6H12O6 + - id: "s_0558" + - name: "D-galactose" + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: gal - - chebi: CHEBI:12936 - - kegg.compound: C00124 - - metanetx.chemical: MNXM390 - - sbo: SBO:0000247 + - bigg.metabolite: "gal" + - chebi: "CHEBI:12936" + - kegg.compound: "C00124" + - metanetx.chemical: "MNXM390" + - sbo: "SBO:0000247" - !!omap - - id: s_0559 - - name: D-galactose - - compartment: e - - formula: C6H12O6 + - id: "s_0559" + - name: "D-galactose" + - compartment: "e" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: gal - - chebi: CHEBI:12936 - - kegg.compound: C00124 - - metanetx.chemical: MNXM390 - - sbo: SBO:0000247 + - bigg.metabolite: "gal" + - chebi: "CHEBI:12936" + - kegg.compound: "C00124" + - metanetx.chemical: "MNXM390" + - sbo: "SBO:0000247" - !!omap - - id: s_0560 - - name: D-galacturonate - - compartment: e - - formula: C6H9O7 + - id: "s_0560" + - name: "D-galacturonate" + - compartment: "e" + - formula: "C6H9O7" - charge: -1 - annotation: !!omap - - bigg.metabolite: galur - - chebi: CHEBI:12952 - - kegg.compound: C00333 - - metanetx.chemical: MNXM693 - - sbo: SBO:0000247 + - bigg.metabolite: "galur" + - chebi: "CHEBI:12952" + - kegg.compound: "C00333" + - metanetx.chemical: "MNXM693" + - sbo: "SBO:0000247" - !!omap - - id: s_0561 - - name: D-glucitol - - compartment: c - - formula: C6H14O6 + - id: "s_0561" + - name: "D-glucitol" + - compartment: "c" + - formula: "C6H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: sbt__D - - chebi: CHEBI:17924 - - kegg.compound: C00794 - - metanetx.chemical: MNXM469 - - sbo: SBO:0000247 + - bigg.metabolite: "sbt__D" + - chebi: "CHEBI:17924" + - kegg.compound: "C00794" + - metanetx.chemical: "MNXM469" + - sbo: "SBO:0000247" - !!omap - - id: s_0562 - - name: D-glucitol - - compartment: e - - formula: C6H14O6 + - id: "s_0562" + - name: "D-glucitol" + - compartment: "e" + - formula: "C6H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: sbt__D - - chebi: CHEBI:17924 - - kegg.compound: C00794 - - metanetx.chemical: MNXM469 - - sbo: SBO:0000247 + - bigg.metabolite: "sbt__D" + - chebi: "CHEBI:17924" + - kegg.compound: "C00794" + - metanetx.chemical: "MNXM469" + - sbo: "SBO:0000247" - !!omap - - id: s_0563 - - name: D-glucose - - compartment: c - - formula: C6H12O6 + - id: "s_0563" + - name: "D-glucose" + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: glc__D - - chebi: CHEBI:4167 - - kegg.compound: C00031 - - metanetx.chemical: MNXM41 - - sbo: SBO:0000247 + - bigg.metabolite: "glc__D" + - chebi: "CHEBI:4167" + - kegg.compound: "C00031" + - metanetx.chemical: "MNXM41" + - sbo: "SBO:0000247" - !!omap - - id: s_0565 - - name: D-glucose - - compartment: e - - formula: C6H12O6 + - id: "s_0565" + - name: "D-glucose" + - compartment: "e" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: glc__D - - chebi: CHEBI:4167 - - kegg.compound: C00031 - - metanetx.chemical: MNXM41 - - sbo: SBO:0000247 + - bigg.metabolite: "glc__D" + - chebi: "CHEBI:4167" + - kegg.compound: "C00031" + - metanetx.chemical: "MNXM41" + - sbo: "SBO:0000247" - !!omap - - id: s_0566 - - name: D-glucose - - compartment: v - - formula: C6H12O6 + - id: "s_0566" + - name: "D-glucose" + - compartment: "v" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: glc__D - - chebi: CHEBI:4167 - - kegg.compound: C00031 - - metanetx.chemical: MNXM41 - - sbo: SBO:0000247 + - bigg.metabolite: "glc__D" + - chebi: "CHEBI:4167" + - kegg.compound: "C00031" + - metanetx.chemical: "MNXM41" + - sbo: "SBO:0000247" - !!omap - - id: s_0567 - - name: D-glucose 1-phosphate - - compartment: c - - formula: C6H11O9P + - id: "s_0567" + - name: "D-glucose 1-phosphate" + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: g1p - - chebi: CHEBI:57629 - - kegg.compound: C00103 - - metanetx.chemical: MNXM89588 - - sbo: SBO:0000247 + - bigg.metabolite: "g1p" + - chebi: "CHEBI:57629" + - kegg.compound: "C00103" + - metanetx.chemical: "MNXM89588" + - sbo: "SBO:0000247" - !!omap - - id: s_0568 - - name: D-glucose 6-phosphate - - compartment: c - - formula: C6H11O9P + - id: "s_0568" + - name: "D-glucose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: g6p - - chebi: CHEBI:14314 - - kegg.compound: C00092 - - metanetx.chemical: MNXM160 - - sbo: SBO:0000247 + - bigg.metabolite: "g6p" + - chebi: "CHEBI:14314" + - kegg.compound: "C00092" + - metanetx.chemical: "MNXM160" + - sbo: "SBO:0000247" - !!omap - - id: s_0570 - - name: D-glyceraldehyde - - compartment: c - - formula: C3H6O3 + - id: "s_0570" + - name: "D-glyceraldehyde" + - compartment: "c" + - formula: "C3H6O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: glyald - - chebi: CHEBI:17378 - - kegg.compound: C00577 - - metanetx.chemical: MNXM435 - - sbo: SBO:0000247 + - bigg.metabolite: "glyald" + - chebi: "CHEBI:17378" + - kegg.compound: "C00577" + - metanetx.chemical: "MNXM435" + - sbo: "SBO:0000247" - !!omap - - id: s_0571 - - name: D-mannose - - compartment: c - - formula: C6H12O6 + - id: "s_0571" + - name: "D-mannose" + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: man - - chebi: CHEBI:16024 - - kegg.compound: C00159 - - metanetx.chemical: MNXM182 - - sbo: SBO:0000247 + - bigg.metabolite: "man" + - chebi: "CHEBI:16024" + - kegg.compound: "C00159" + - metanetx.chemical: "MNXM182" + - sbo: "SBO:0000247" - !!omap - - id: s_0572 - - name: D-mannose - - compartment: e - - formula: C6H12O6 + - id: "s_0572" + - name: "D-mannose" + - compartment: "e" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: man - - chebi: CHEBI:16024 - - kegg.compound: C00159 - - metanetx.chemical: MNXM182 - - sbo: SBO:0000247 + - bigg.metabolite: "man" + - chebi: "CHEBI:16024" + - kegg.compound: "C00159" + - metanetx.chemical: "MNXM182" + - sbo: "SBO:0000247" - !!omap - - id: s_0573 - - name: D-mannose 1-phosphate - - compartment: c - - formula: C6H11O9P + - id: "s_0573" + - name: "D-mannose 1-phosphate" + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: man1p - - chebi: CHEBI:35374 - - kegg.compound: C00636 - - metanetx.chemical: MNXM721 - - sbo: SBO:0000247 + - bigg.metabolite: "man1p" + - chebi: "CHEBI:35374" + - kegg.compound: "C00636" + - metanetx.chemical: "MNXM721" + - sbo: "SBO:0000247" - !!omap - - id: s_0574 - - name: D-mannose 6-phosphate - - compartment: c - - formula: C6H11O9P + - id: "s_0574" + - name: "D-mannose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: man6p - - chebi: CHEBI:17369 - - kegg.compound: C00275 - - metanetx.chemical: MNXM427 - - sbo: SBO:0000247 + - bigg.metabolite: "man6p" + - chebi: "CHEBI:17369" + - kegg.compound: "C00275" + - metanetx.chemical: "MNXM427" + - sbo: "SBO:0000247" - !!omap - - id: s_0575 - - name: D-ribose - - compartment: c - - formula: C5H10O5 + - id: "s_0575" + - name: "D-ribose" + - compartment: "c" + - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: rib__D - - chebi: CHEBI:16988 - - kegg.compound: C00121 - - metanetx.chemical: MNXM242 - - sbo: SBO:0000247 + - bigg.metabolite: "rib__D" + - chebi: "CHEBI:16988" + - kegg.compound: "C00121" + - metanetx.chemical: "MNXM242" + - sbo: "SBO:0000247" - !!omap - - id: s_0576 - - name: D-ribose - - compartment: e - - formula: C5H10O5 + - id: "s_0576" + - name: "D-ribose" + - compartment: "e" + - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: rib__D - - chebi: CHEBI:16988 - - kegg.compound: C00121 - - metanetx.chemical: MNXM242 - - sbo: SBO:0000247 + - bigg.metabolite: "rib__D" + - chebi: "CHEBI:16988" + - kegg.compound: "C00121" + - metanetx.chemical: "MNXM242" + - sbo: "SBO:0000247" - !!omap - - id: s_0577 - - name: D-ribulose 5-phosphate - - compartment: c - - formula: C5H9O8P + - id: "s_0577" + - name: "D-ribulose 5-phosphate" + - compartment: "c" + - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: ru5p__D - - chebi: CHEBI:58121 - - kegg.compound: C00199 - - metanetx.chemical: MNXM145 - - sbo: SBO:0000247 + - bigg.metabolite: "ru5p__D" + - chebi: "CHEBI:58121" + - kegg.compound: "C00199" + - metanetx.chemical: "MNXM145" + - sbo: "SBO:0000247" - !!omap - - id: s_0578 - - name: D-xylose - - compartment: c - - formula: C5H10O5 + - id: "s_0578" + - name: "D-xylose" + - compartment: "c" + - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: xyl__D - - chebi: CHEBI:15936 - - kegg.compound: C00181 - - metanetx.chemical: MNXM90941 - - sbo: SBO:0000247 + - bigg.metabolite: "xyl__D" + - chebi: "CHEBI:15936" + - kegg.compound: "C00181" + - metanetx.chemical: "MNXM90941" + - sbo: "SBO:0000247" - !!omap - - id: s_0579 - - name: D-xylose - - compartment: e - - formula: C5H10O5 + - id: "s_0579" + - name: "D-xylose" + - compartment: "e" + - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: xyl__D - - chebi: CHEBI:15936 - - kegg.compound: C00181 - - metanetx.chemical: MNXM90941 - - sbo: SBO:0000247 + - bigg.metabolite: "xyl__D" + - chebi: "CHEBI:15936" + - kegg.compound: "C00181" + - metanetx.chemical: "MNXM90941" + - sbo: "SBO:0000247" - !!omap - - id: s_0580 - - name: D-xylulose - - compartment: c - - formula: C5H10O5 + - id: "s_0580" + - name: "D-xylulose" + - compartment: "c" + - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: xylu__D - - chebi: CHEBI:17140 - - kegg.compound: C00310 - - metanetx.chemical: MNXM597 - - sbo: SBO:0000247 + - bigg.metabolite: "xylu__D" + - chebi: "CHEBI:17140" + - kegg.compound: "C00310" + - metanetx.chemical: "MNXM597" + - sbo: "SBO:0000247" - !!omap - - id: s_0581 - - name: D-xylulose 5-phosphate - - compartment: c - - formula: C5H9O8P + - id: "s_0581" + - name: "D-xylulose 5-phosphate" + - compartment: "c" + - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: xu5p__D - - chebi: CHEBI:57737 - - kegg.compound: C00231 - - metanetx.chemical: MNXM186 - - sbo: SBO:0000247 + - bigg.metabolite: "xu5p__D" + - chebi: "CHEBI:57737" + - kegg.compound: "C00231" + - metanetx.chemical: "MNXM186" + - sbo: "SBO:0000247" - !!omap - - id: s_0582 - - name: dADP - - compartment: c - - formula: C10H12N5O9P2 + - id: "s_0582" + - name: "dADP" + - compartment: "c" + - formula: "C10H12N5O9P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: dadp - - chebi: CHEBI:57667 - - kegg.compound: C00206 - - metanetx.chemical: MNXM374 - - sbo: SBO:0000247 + - bigg.metabolite: "dadp" + - chebi: "CHEBI:57667" + - kegg.compound: "C00206" + - metanetx.chemical: "MNXM374" + - sbo: "SBO:0000247" - !!omap - - id: s_0583 - - name: dADP - - compartment: n - - formula: C10H12N5O9P2 + - id: "s_0583" + - name: "dADP" + - compartment: "n" + - formula: "C10H12N5O9P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: dadp - - chebi: CHEBI:57667 - - kegg.compound: C00206 - - metanetx.chemical: MNXM374 - - sbo: SBO:0000247 + - bigg.metabolite: "dadp" + - chebi: "CHEBI:57667" + - kegg.compound: "C00206" + - metanetx.chemical: "MNXM374" + - sbo: "SBO:0000247" - !!omap - - id: s_0584 - - name: dAMP - - compartment: c - - formula: C10H12N5O6P + - id: "s_0584" + - name: "dAMP" + - compartment: "c" + - formula: "C10H12N5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: damp - - chebi: CHEBI:58245 - - kegg.compound: C00360 - - metanetx.chemical: MNXM432 - - sbo: SBO:0000247 + - bigg.metabolite: "damp" + - chebi: "CHEBI:58245" + - kegg.compound: "C00360" + - metanetx.chemical: "MNXM432" + - sbo: "SBO:0000247" - !!omap - - id: s_0585 - - name: dAMP - - compartment: m - - formula: C10H12N5O6P + - id: "s_0585" + - name: "dAMP" + - compartment: "m" + - formula: "C10H12N5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: damp - - chebi: CHEBI:58245 - - kegg.compound: C00360 - - metanetx.chemical: MNXM432 - - sbo: SBO:0000247 + - bigg.metabolite: "damp" + - chebi: "CHEBI:58245" + - kegg.compound: "C00360" + - metanetx.chemical: "MNXM432" + - sbo: "SBO:0000247" - !!omap - - id: s_0586 - - name: dATP - - compartment: c - - formula: C10H12N5O12P3 + - id: "s_0586" + - name: "dATP" + - compartment: "c" + - formula: "C10H12N5O12P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: datp - - chebi: CHEBI:61404 - - kegg.compound: C00131 - - metanetx.chemical: MNXM286 - - sbo: SBO:0000247 + - bigg.metabolite: "datp" + - chebi: "CHEBI:61404" + - kegg.compound: "C00131" + - metanetx.chemical: "MNXM286" + - sbo: "SBO:0000247" - !!omap - - id: s_0587 - - name: dCDP - - compartment: c - - formula: C9H12N3O10P2 + - id: "s_0587" + - name: "dCDP" + - compartment: "c" + - formula: "C9H12N3O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: dcdp - - chebi: CHEBI:58593 - - kegg.compound: C00705 - - metanetx.chemical: MNXM411 - - sbo: SBO:0000247 + - bigg.metabolite: "dcdp" + - chebi: "CHEBI:58593" + - kegg.compound: "C00705" + - metanetx.chemical: "MNXM411" + - sbo: "SBO:0000247" - !!omap - - id: s_0588 - - name: dCDP - - compartment: n - - formula: C9H12N3O10P2 + - id: "s_0588" + - name: "dCDP" + - compartment: "n" + - formula: "C9H12N3O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: dcdp - - chebi: CHEBI:58593 - - kegg.compound: C00705 - - metanetx.chemical: MNXM411 - - sbo: SBO:0000247 + - bigg.metabolite: "dcdp" + - chebi: "CHEBI:58593" + - kegg.compound: "C00705" + - metanetx.chemical: "MNXM411" + - sbo: "SBO:0000247" - !!omap - - id: s_0589 - - name: dCMP - - compartment: c - - formula: C9H12N3O7P + - id: "s_0589" + - name: "dCMP" + - compartment: "c" + - formula: "C9H12N3O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: dcmp - - chebi: CHEBI:57566 - - kegg.compound: C00239 - - metanetx.chemical: MNXM266 - - sbo: SBO:0000247 + - bigg.metabolite: "dcmp" + - chebi: "CHEBI:57566" + - kegg.compound: "C00239" + - metanetx.chemical: "MNXM266" + - sbo: "SBO:0000247" - !!omap - - id: s_0590 - - name: dCTP - - compartment: c - - formula: C9H12N3O13P3 + - id: "s_0590" + - name: "dCTP" + - compartment: "c" + - formula: "C9H12N3O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: dctp - - chebi: CHEBI:57724 - - kegg.compound: C00458 - - metanetx.chemical: MNXM360 - - sbo: SBO:0000247 + - bigg.metabolite: "dctp" + - chebi: "CHEBI:57724" + - kegg.compound: "C00458" + - metanetx.chemical: "MNXM360" + - sbo: "SBO:0000247" - !!omap - - id: s_0591 - - name: deamido-NAD(+) - - compartment: c - - formula: C21H24N6O15P2 + - id: "s_0591" + - name: "deamido-NAD(+)" + - compartment: "c" + - formula: "C21H24N6O15P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: dnad - - chebi: CHEBI:18304 - - kegg.compound: C00857 - - metanetx.chemical: MNXM309 - - sbo: SBO:0000247 + - bigg.metabolite: "dnad" + - chebi: "CHEBI:18304" + - kegg.compound: "C00857" + - metanetx.chemical: "MNXM309" + - sbo: "SBO:0000247" - !!omap - - id: s_0593 - - name: deamido-NAD(+) - - compartment: n - - formula: C21H24N6O15P2 + - id: "s_0593" + - name: "deamido-NAD(+)" + - compartment: "n" + - formula: "C21H24N6O15P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: dnad - - chebi: CHEBI:18304 - - kegg.compound: C00857 - - metanetx.chemical: MNXM309 - - sbo: SBO:0000247 + - bigg.metabolite: "dnad" + - chebi: "CHEBI:18304" + - kegg.compound: "C00857" + - metanetx.chemical: "MNXM309" + - sbo: "SBO:0000247" - !!omap - - id: s_0595 - - name: decanoate - - compartment: c - - formula: C10H19O2 + - id: "s_0595" + - name: "decanoate" + - compartment: "c" + - formula: "C10H19O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: dca - - chebi: CHEBI:27689 - - kegg.compound: C01571 - - metanetx.chemical: MNXM1043 - - sbo: SBO:0000247 + - bigg.metabolite: "dca" + - chebi: "CHEBI:27689" + - kegg.compound: "C01571" + - metanetx.chemical: "MNXM1043" + - sbo: "SBO:0000247" - !!omap - - id: s_0597 - - name: decanoate - - compartment: e - - formula: C10H19O2 + - id: "s_0597" + - name: "decanoate" + - compartment: "e" + - formula: "C10H19O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: dca - - chebi: CHEBI:27689 - - kegg.compound: C01571 - - metanetx.chemical: MNXM1043 - - sbo: SBO:0000247 + - bigg.metabolite: "dca" + - chebi: "CHEBI:27689" + - kegg.compound: "C01571" + - metanetx.chemical: "MNXM1043" + - sbo: "SBO:0000247" - !!omap - - id: s_0600 - - name: decanoate - - compartment: p - - formula: C10H19O2 + - id: "s_0600" + - name: "decanoate" + - compartment: "p" + - formula: "C10H19O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: dca - - chebi: CHEBI:27689 - - kegg.compound: C01571 - - metanetx.chemical: MNXM1043 - - sbo: SBO:0000247 + - bigg.metabolite: "dca" + - chebi: "CHEBI:27689" + - kegg.compound: "C01571" + - metanetx.chemical: "MNXM1043" + - sbo: "SBO:0000247" - !!omap - - id: s_0605 - - name: decanoyl-CoA - - compartment: p - - formula: C31H50N7O17P3S + - id: "s_0605" + - name: "decanoyl-CoA" + - compartment: "p" + - formula: "C31H50N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: dccoa - - chebi: CHEBI:61430 - - kegg.compound: C05274 - - metanetx.chemical: MNXM486 - - sbo: SBO:0000247 + - bigg.metabolite: "dccoa" + - chebi: "CHEBI:61430" + - kegg.compound: "C05274" + - metanetx.chemical: "MNXM486" + - sbo: "SBO:0000247" - !!omap - - id: s_0606 - - name: decaprenyl diphosphate - - compartment: lp - - formula: C50H81O7P2 + - id: "s_0606" + - name: "decaprenyl diphosphate" + - compartment: "lp" + - formula: "C50H81O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: decdp - - chebi: CHEBI:53043 - - kegg.compound: C17432 - - metanetx.chemical: MNXM1721 - - sbo: SBO:0000247 + - bigg.metabolite: "decdp" + - chebi: "CHEBI:53043" + - kegg.compound: "C17432" + - metanetx.chemical: "MNXM1721" + - sbo: "SBO:0000247" - !!omap - - id: s_0607 - - name: dehydro-D-arabinono-1,4-lactone - - compartment: c - - formula: C5H5O5 + - id: "s_0607" + - name: "dehydro-D-arabinono-1,4-lactone" + - compartment: "c" + - formula: "C5H5O5" - charge: -1 - annotation: !!omap - - chebi: CHEBI:58277 - - kegg.compound: C06316 - - metanetx.chemical: MNXM3254 - - sbo: SBO:0000247 + - chebi: "CHEBI:58277" + - kegg.compound: "C06316" + - metanetx.chemical: "MNXM3254" + - sbo: "SBO:0000247" - !!omap - - id: s_0608 - - name: Delta(6)-trans,Delta(8)-cis-leukotriene B4 - - compartment: c - - formula: C20H31O4 + - id: "s_0608" + - name: "Delta(6)-trans,Delta(8)-cis-leukotriene B4" + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - annotation: !!omap - - chebi: CHEBI:53027 - - metanetx.chemical: MNXM507621 - - sbo: SBO:0000247 + - chebi: "CHEBI:53027" + - metanetx.chemical: "MNXM507621" + - sbo: "SBO:0000247" - !!omap - - id: s_0609 - - name: Delta(6)-trans,Delta(8)-cis-leukotriene B4 - - compartment: n - - formula: C20H31O4 + - id: "s_0609" + - name: "Delta(6)-trans,Delta(8)-cis-leukotriene B4" + - compartment: "n" + - formula: "C20H31O4" - charge: -1 - annotation: !!omap - - chebi: CHEBI:53027 - - metanetx.chemical: MNXM507621 - - sbo: SBO:0000247 + - chebi: "CHEBI:53027" + - metanetx.chemical: "MNXM507621" + - sbo: "SBO:0000247" - !!omap - - id: s_0610 - - name: deoxycytidine - - compartment: c - - formula: C9H13N3O4 + - id: "s_0610" + - name: "deoxycytidine" + - compartment: "c" + - formula: "C9H13N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: dcyt - - chebi: CHEBI:15698 - - kegg.compound: C00881 - - metanetx.chemical: MNXM704 - - sbo: SBO:0000247 + - bigg.metabolite: "dcyt" + - chebi: "CHEBI:15698" + - kegg.compound: "C00881" + - metanetx.chemical: "MNXM704" + - sbo: "SBO:0000247" - !!omap - - id: s_0611 - - name: deoxycytidine - - compartment: e - - formula: C9H13N3O4 + - id: "s_0611" + - name: "deoxycytidine" + - compartment: "e" + - formula: "C9H13N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: dcyt - - chebi: CHEBI:15698 - - kegg.compound: C00881 - - metanetx.chemical: MNXM704 - - sbo: SBO:0000247 + - bigg.metabolite: "dcyt" + - chebi: "CHEBI:15698" + - kegg.compound: "C00881" + - metanetx.chemical: "MNXM704" + - sbo: "SBO:0000247" - !!omap - - id: s_0612 - - name: dethiobiotin - - compartment: c - - formula: C10H17N2O3 + - id: "s_0612" + - name: "dethiobiotin" + - compartment: "c" + - formula: "C10H17N2O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: dtbt - - chebi: CHEBI:57861 - - kegg.compound: C01909 - - metanetx.chemical: MNXM1020 - - sbo: SBO:0000247 + - bigg.metabolite: "dtbt" + - chebi: "CHEBI:57861" + - kegg.compound: "C01909" + - metanetx.chemical: "MNXM1020" + - sbo: "SBO:0000247" - !!omap - - id: s_0613 - - name: dGDP - - compartment: c - - formula: C10H12N5O10P2 + - id: "s_0613" + - name: "dGDP" + - compartment: "c" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: dgdp - - chebi: CHEBI:58595 - - kegg.compound: C00361 - - metanetx.chemical: MNXM436 - - sbo: SBO:0000247 + - bigg.metabolite: "dgdp" + - chebi: "CHEBI:58595" + - kegg.compound: "C00361" + - metanetx.chemical: "MNXM436" + - sbo: "SBO:0000247" - !!omap - - id: s_0614 - - name: dGDP - - compartment: n - - formula: C10H12N5O10P2 + - id: "s_0614" + - name: "dGDP" + - compartment: "n" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: dgdp - - chebi: CHEBI:58595 - - kegg.compound: C00361 - - metanetx.chemical: MNXM436 - - sbo: SBO:0000247 + - bigg.metabolite: "dgdp" + - chebi: "CHEBI:58595" + - kegg.compound: "C00361" + - metanetx.chemical: "MNXM436" + - sbo: "SBO:0000247" - !!omap - - id: s_0615 - - name: dGMP - - compartment: c - - formula: C10H12N5O7P + - id: "s_0615" + - name: "dGMP" + - compartment: "c" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: dgmp - - chebi: CHEBI:57673 - - kegg.compound: C00362 - - metanetx.chemical: MNXM546 - - sbo: SBO:0000247 + - bigg.metabolite: "dgmp" + - chebi: "CHEBI:57673" + - kegg.compound: "C00362" + - metanetx.chemical: "MNXM546" + - sbo: "SBO:0000247" - !!omap - - id: s_0616 - - name: dGMP - - compartment: m - - formula: C10H12N5O7P + - id: "s_0616" + - name: "dGMP" + - compartment: "m" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: dgmp - - chebi: CHEBI:57673 - - kegg.compound: C00362 - - metanetx.chemical: MNXM546 - - sbo: SBO:0000247 + - bigg.metabolite: "dgmp" + - chebi: "CHEBI:57673" + - kegg.compound: "C00362" + - metanetx.chemical: "MNXM546" + - sbo: "SBO:0000247" - !!omap - - id: s_0617 - - name: dGTP - - compartment: c - - formula: C10H12N5O13P3 + - id: "s_0617" + - name: "dGTP" + - compartment: "c" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: dgtp - - chebi: CHEBI:57794 - - kegg.compound: C00286 - - metanetx.chemical: MNXM344 - - sbo: SBO:0000247 + - bigg.metabolite: "dgtp" + - chebi: "CHEBI:57794" + - kegg.compound: "C00286" + - metanetx.chemical: "MNXM344" + - sbo: "SBO:0000247" - !!omap - - id: s_0618 - - name: dIDP - - compartment: c - - formula: C10H11N4O10P2 + - id: "s_0618" + - name: "dIDP" + - compartment: "c" + - formula: "C10H11N4O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: didp - - chebi: CHEBI:28823 - - kegg.compound: C01344 - - metanetx.chemical: MNXM2174 - - sbo: SBO:0000247 - - !!omap - - id: s_0620 - - name: diglyceride backbone - - compartment: er - - formula: C3H4O - - annotation: !!omap - - bigg.metabolite: dag_hs - - chebi: CHEBI:18035 - - kegg.compound: C00165 - - metanetx.chemical: MNXM59 - - sbo: SBO:0000649 - - !!omap - - id: s_0625 - - name: dihydrofolic acid - - compartment: c - - formula: C19H19N7O6 + - bigg.metabolite: "didp" + - chebi: "CHEBI:28823" + - kegg.compound: "C01344" + - metanetx.chemical: "MNXM2174" + - sbo: "SBO:0000247" + - !!omap + - id: "s_0620" + - name: "diglyceride backbone" + - compartment: "er" + - formula: "C3H4O" + - annotation: !!omap + - bigg.metabolite: "dag_hs" + - chebi: "CHEBI:18035" + - kegg.compound: "C00165" + - metanetx.chemical: "MNXM59" + - sbo: "SBO:0000649" + - !!omap + - id: "s_0625" + - name: "dihydrofolic acid" + - compartment: "c" + - formula: "C19H19N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: dhf - - chebi: CHEBI:57451 - - kegg.compound: C00415 - - metanetx.chemical: MNXM281 - - sbo: SBO:0000247 + - bigg.metabolite: "dhf" + - chebi: "CHEBI:57451" + - kegg.compound: "C00415" + - metanetx.chemical: "MNXM281" + - sbo: "SBO:0000247" - !!omap - - id: s_0626 - - name: dihydrofolic acid - - compartment: m - - formula: C19H19N7O6 + - id: "s_0626" + - name: "dihydrofolic acid" + - compartment: "m" + - formula: "C19H19N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: dhf - - chebi: CHEBI:57451 - - kegg.compound: C00415 - - metanetx.chemical: MNXM281 - - sbo: SBO:0000247 + - bigg.metabolite: "dhf" + - chebi: "CHEBI:57451" + - kegg.compound: "C00415" + - metanetx.chemical: "MNXM281" + - sbo: "SBO:0000247" - !!omap - - id: s_0627 - - name: dihydrolipoamide - - compartment: m - - formula: C8H17NOS2 + - id: "s_0627" + - name: "dihydrolipoamide" + - compartment: "m" + - formula: "C8H17NOS2" - charge: 0 - annotation: !!omap - - bigg.metabolite: dhlam - - chebi: CHEBI:17694 - - kegg.compound: C00579 - - metanetx.chemical: MNXM1277 - - sbo: SBO:0000247 + - bigg.metabolite: "dhlam" + - chebi: "CHEBI:17694" + - kegg.compound: "C00579" + - metanetx.chemical: "MNXM1277" + - sbo: "SBO:0000247" - !!omap - - id: s_0628 - - name: dihydrolipoylprotein - - compartment: m - - formula: C8H16NOS2R + - id: "s_0628" + - name: "dihydrolipoylprotein" + - compartment: "m" + - formula: "C8H16NOS2R" - charge: 0 - annotation: !!omap - - bigg.metabolite: dhlpro - - chebi: CHEBI:16194 - - kegg.compound: C02972 - - metanetx.chemical: MNXM1663 - - sbo: SBO:0000247 + - bigg.metabolite: "dhlpro" + - chebi: "CHEBI:16194" + - kegg.compound: "C02972" + - metanetx.chemical: "MNXM1663" + - sbo: "SBO:0000247" - !!omap - - id: s_0629 - - name: dihydroxyacetone phosphate - - compartment: c - - formula: C3H5O6P + - id: "s_0629" + - name: "dihydroxyacetone phosphate" + - compartment: "c" + - formula: "C3H5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: dhap - - chebi: CHEBI:57642 - - kegg.compound: C00111 - - metanetx.chemical: MNXM77 - - sbo: SBO:0000247 + - bigg.metabolite: "dhap" + - chebi: "CHEBI:57642" + - kegg.compound: "C00111" + - metanetx.chemical: "MNXM77" + - sbo: "SBO:0000247" - !!omap - - id: s_0631 - - name: dihydroxyacetone phosphate - - compartment: lp - - formula: C3H5O6P + - id: "s_0631" + - name: "dihydroxyacetone phosphate" + - compartment: "lp" + - formula: "C3H5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: dhap - - chebi: CHEBI:57642 - - kegg.compound: C00111 - - metanetx.chemical: MNXM77 - - sbo: SBO:0000247 + - bigg.metabolite: "dhap" + - chebi: "CHEBI:57642" + - kegg.compound: "C00111" + - metanetx.chemical: "MNXM77" + - sbo: "SBO:0000247" - !!omap - - id: s_0632 - - name: dihydroxyacetone phosphate - - compartment: m - - formula: C3H5O6P + - id: "s_0632" + - name: "dihydroxyacetone phosphate" + - compartment: "m" + - formula: "C3H5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: dhap - - chebi: CHEBI:57642 - - kegg.compound: C00111 - - metanetx.chemical: MNXM77 - - sbo: SBO:0000247 + - bigg.metabolite: "dhap" + - chebi: "CHEBI:57642" + - kegg.compound: "C00111" + - metanetx.chemical: "MNXM77" + - sbo: "SBO:0000247" - !!omap - - id: s_0633 - - name: diphosphate - - compartment: c - - formula: HO7P2 + - id: "s_0633" + - name: "diphosphate" + - compartment: "c" + - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ppi - - chebi: CHEBI:33019 - - kegg.compound: C00013 - - metanetx.chemical: MNXM11 - - sbo: SBO:0000247 + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - - id: s_0635 - - name: diphosphate - - compartment: lp - - formula: HO7P2 + - id: "s_0635" + - name: "diphosphate" + - compartment: "lp" + - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ppi - - chebi: CHEBI:33019 - - kegg.compound: C00013 - - metanetx.chemical: MNXM11 - - sbo: SBO:0000247 + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - - id: s_0636 - - name: diphosphate - - compartment: m - - formula: HO7P2 + - id: "s_0636" + - name: "diphosphate" + - compartment: "m" + - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ppi - - chebi: CHEBI:33019 - - kegg.compound: C00013 - - metanetx.chemical: MNXM11 - - sbo: SBO:0000247 + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - - id: s_0637 - - name: diphosphate - - compartment: n - - formula: HO7P2 + - id: "s_0637" + - name: "diphosphate" + - compartment: "n" + - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ppi - - chebi: CHEBI:33019 - - kegg.compound: C00013 - - metanetx.chemical: MNXM11 - - sbo: SBO:0000247 + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - - id: s_0638 - - name: diphosphate - - compartment: p - - formula: HO7P2 + - id: "s_0638" + - name: "diphosphate" + - compartment: "p" + - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ppi - - chebi: CHEBI:33019 - - kegg.compound: C00013 - - metanetx.chemical: MNXM11 - - sbo: SBO:0000247 + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - - id: s_0639 - - name: dITP - - compartment: c - - formula: C10H11N4O13P3 + - id: "s_0639" + - name: "dITP" + - compartment: "c" + - formula: "C10H11N4O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: ditp - - chebi: CHEBI:61382 - - kegg.compound: C01345 - - metanetx.chemical: MNXM1325 - - sbo: SBO:0000247 + - bigg.metabolite: "ditp" + - chebi: "CHEBI:61382" + - kegg.compound: "C01345" + - metanetx.chemical: "MNXM1325" + - sbo: "SBO:0000247" - !!omap - - id: s_0640 - - name: docosaprenyl diphosphate - - compartment: lp - - formula: C110H177O7P2 + - id: "s_0640" + - name: "docosaprenyl diphosphate" + - compartment: "lp" + - formula: "C110H177O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53031 - - metanetx.chemical: MNXM51449 - - sbo: SBO:0000247 + - chebi: "CHEBI:53031" + - metanetx.chemical: "MNXM51449" + - sbo: "SBO:0000247" - !!omap - - id: s_0641 - - name: dodecaprenyl diphosphate - - compartment: lp - - formula: C60H97O7P2 + - id: "s_0641" + - name: "dodecaprenyl diphosphate" + - compartment: "lp" + - formula: "C60H97O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53041 - - kegg.compound: C05847 - - metanetx.chemical: MNXM11433 - - sbo: SBO:0000247 + - chebi: "CHEBI:53041" + - kegg.compound: "C05847" + - metanetx.chemical: "MNXM11433" + - sbo: "SBO:0000247" - !!omap - - id: s_0642 - - name: dolichol - - compartment: c - - formula: C20H36O + - id: "s_0642" + - name: "dolichol" + - compartment: "c" + - formula: "C20H36O" - charge: 0 - annotation: !!omap - - bigg.metabolite: dolichol - - chebi: CHEBI:16091 - - kegg.compound: C00381 - - metanetx.chemical: MNXM797 - - sbo: SBO:0000247 + - bigg.metabolite: "dolichol" + - chebi: "CHEBI:16091" + - kegg.compound: "C00381" + - metanetx.chemical: "MNXM797" + - sbo: "SBO:0000247" - !!omap - - id: s_0644 - - name: dolichyl D-mannosyl phosphate - - compartment: er - - formula: C26H47O9P + - id: "s_0644" + - name: "dolichyl D-mannosyl phosphate" + - compartment: "er" + - formula: "C26H47O9P" - charge: 0 - annotation: !!omap - - bigg.metabolite: dolmanp - - chebi: CHEBI:15809 - - kegg.compound: C03862 - - metanetx.chemical: MNXM296 - - sbo: SBO:0000247 + - bigg.metabolite: "dolmanp" + - chebi: "CHEBI:15809" + - kegg.compound: "C03862" + - metanetx.chemical: "MNXM296" + - sbo: "SBO:0000247" - !!omap - - id: s_0645 - - name: dolichyl phosphate - - compartment: c - - formula: C20H37O4P + - id: "s_0645" + - name: "dolichyl phosphate" + - compartment: "c" + - formula: "C20H37O4P" - charge: 0 - annotation: !!omap - - bigg.metabolite: dolp - - chebi: CHEBI:16214 - - kegg.compound: C00110 - - metanetx.chemical: MNXM278 - - sbo: SBO:0000247 + - bigg.metabolite: "dolp" + - chebi: "CHEBI:16214" + - kegg.compound: "C00110" + - metanetx.chemical: "MNXM278" + - sbo: "SBO:0000247" - !!omap - - id: s_0646 - - name: dolichyl phosphate - - compartment: er - - formula: C20H37O4P + - id: "s_0646" + - name: "dolichyl phosphate" + - compartment: "er" + - formula: "C20H37O4P" - charge: 0 - annotation: !!omap - - bigg.metabolite: dolp - - chebi: CHEBI:16214 - - kegg.compound: C00110 - - metanetx.chemical: MNXM278 - - sbo: SBO:0000247 + - bigg.metabolite: "dolp" + - chebi: "CHEBI:16214" + - kegg.compound: "C00110" + - metanetx.chemical: "MNXM278" + - sbo: "SBO:0000247" - !!omap - - id: s_0647 - - name: dTDP - - compartment: c - - formula: C10H13N2O11P2 + - id: "s_0647" + - name: "dTDP" + - compartment: "c" + - formula: "C10H13N2O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: dtdp - - chebi: CHEBI:58369 - - kegg.compound: C00363 - - metanetx.chemical: MNXM152 - - sbo: SBO:0000247 + - bigg.metabolite: "dtdp" + - chebi: "CHEBI:58369" + - kegg.compound: "C00363" + - metanetx.chemical: "MNXM152" + - sbo: "SBO:0000247" - !!omap - - id: s_0649 - - name: dTMP - - compartment: c - - formula: C10H13N2O8P + - id: "s_0649" + - name: "dTMP" + - compartment: "c" + - formula: "C10H13N2O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: dtmp - - chebi: CHEBI:17013 - - kegg.compound: C00364 - - metanetx.chemical: MNXM257 - - sbo: SBO:0000247 + - bigg.metabolite: "dtmp" + - chebi: "CHEBI:17013" + - kegg.compound: "C00364" + - metanetx.chemical: "MNXM257" + - sbo: "SBO:0000247" - !!omap - - id: s_0650 - - name: dTTP - - compartment: c - - formula: C10H13N2O14P3 + - id: "s_0650" + - name: "dTTP" + - compartment: "c" + - formula: "C10H13N2O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: dttp - - chebi: CHEBI:58370 - - kegg.compound: C00459 - - metanetx.chemical: MNXM394 - - sbo: SBO:0000247 + - bigg.metabolite: "dttp" + - chebi: "CHEBI:58370" + - kegg.compound: "C00459" + - metanetx.chemical: "MNXM394" + - sbo: "SBO:0000247" - !!omap - - id: s_0651 - - name: dTTP - - compartment: e - - formula: C10H13N2O14P3 + - id: "s_0651" + - name: "dTTP" + - compartment: "e" + - formula: "C10H13N2O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: dttp - - chebi: CHEBI:58370 - - kegg.compound: C00459 - - metanetx.chemical: MNXM394 - - sbo: SBO:0000247 + - bigg.metabolite: "dttp" + - chebi: "CHEBI:58370" + - kegg.compound: "C00459" + - metanetx.chemical: "MNXM394" + - sbo: "SBO:0000247" - !!omap - - id: s_0652 - - name: dUDP - - compartment: c - - formula: C9H11N2O11P2 + - id: "s_0652" + - name: "dUDP" + - compartment: "c" + - formula: "C9H11N2O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: dudp - - chebi: CHEBI:60471 - - kegg.compound: C01346 - - metanetx.chemical: MNXM572 - - sbo: SBO:0000247 + - bigg.metabolite: "dudp" + - chebi: "CHEBI:60471" + - kegg.compound: "C01346" + - metanetx.chemical: "MNXM572" + - sbo: "SBO:0000247" - !!omap - - id: s_0653 - - name: dUDP - - compartment: n - - formula: C9H11N2O11P2 + - id: "s_0653" + - name: "dUDP" + - compartment: "n" + - formula: "C9H11N2O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: dudp - - chebi: CHEBI:60471 - - kegg.compound: C01346 - - metanetx.chemical: MNXM572 - - sbo: SBO:0000247 + - bigg.metabolite: "dudp" + - chebi: "CHEBI:60471" + - kegg.compound: "C01346" + - metanetx.chemical: "MNXM572" + - sbo: "SBO:0000247" - !!omap - - id: s_0654 - - name: dUMP - - compartment: c - - formula: C9H11N2O8P + - id: "s_0654" + - name: "dUMP" + - compartment: "c" + - formula: "C9H11N2O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: dump - - chebi: CHEBI:246422 - - kegg.compound: C00365 - - metanetx.chemical: MNXM234 - - sbo: SBO:0000247 + - bigg.metabolite: "dump" + - chebi: "CHEBI:246422" + - kegg.compound: "C00365" + - metanetx.chemical: "MNXM234" + - sbo: "SBO:0000247" - !!omap - - id: s_0655 - - name: dUMP - - compartment: n - - formula: C9H11N2O8P + - id: "s_0655" + - name: "dUMP" + - compartment: "n" + - formula: "C9H11N2O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: dump - - chebi: CHEBI:246422 - - kegg.compound: C00365 - - metanetx.chemical: MNXM234 - - sbo: SBO:0000247 + - bigg.metabolite: "dump" + - chebi: "CHEBI:246422" + - kegg.compound: "C00365" + - metanetx.chemical: "MNXM234" + - sbo: "SBO:0000247" - !!omap - - id: s_0656 - - name: dUTP - - compartment: c - - formula: C9H11N2O14P3 + - id: "s_0656" + - name: "dUTP" + - compartment: "c" + - formula: "C9H11N2O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: dutp - - chebi: CHEBI:58212 - - kegg.compound: C00460 - - metanetx.chemical: MNXM452 - - sbo: SBO:0000247 + - bigg.metabolite: "dutp" + - chebi: "CHEBI:58212" + - kegg.compound: "C00460" + - metanetx.chemical: "MNXM452" + - sbo: "SBO:0000247" - !!omap - - id: s_0657 - - name: episterol - - compartment: c - - formula: C28H46O + - id: "s_0657" + - name: "episterol" + - compartment: "c" + - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: epist - - chebi: CHEBI:23929 - - kegg.compound: C15777 - - metanetx.chemical: MNXM52365 - - sbo: SBO:0000247 + - bigg.metabolite: "epist" + - chebi: "CHEBI:23929" + - kegg.compound: "C15777" + - metanetx.chemical: "MNXM52365" + - sbo: "SBO:0000247" - !!omap - - id: s_0659 - - name: episterol - - compartment: e - - formula: C28H46O + - id: "s_0659" + - name: "episterol" + - compartment: "e" + - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: epist - - chebi: CHEBI:23929 - - kegg.compound: C15777 - - metanetx.chemical: MNXM52365 - - sbo: SBO:0000247 + - bigg.metabolite: "epist" + - chebi: "CHEBI:23929" + - kegg.compound: "C15777" + - metanetx.chemical: "MNXM52365" + - sbo: "SBO:0000247" - !!omap - - id: s_0662 - - name: ergosta-5,7,22,24(28)-tetraen-3beta-ol - - compartment: c - - formula: C28H42O + - id: "s_0662" + - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol" + - compartment: "c" + - formula: "C28H42O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ergtetrol - - chebi: CHEBI:18249 - - kegg.compound: C05440 - - metanetx.chemical: MNXM1109 - - sbo: SBO:0000247 + - bigg.metabolite: "ergtetrol" + - chebi: "CHEBI:18249" + - kegg.compound: "C05440" + - metanetx.chemical: "MNXM1109" + - sbo: "SBO:0000247" - !!omap - - id: s_0663 - - name: ergosta-5,7,22,24(28)-tetraen-3beta-ol - - compartment: er - - formula: C28H42O + - id: "s_0663" + - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol" + - compartment: "er" + - formula: "C28H42O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ergtetrol - - chebi: CHEBI:18249 - - kegg.compound: C05440 - - metanetx.chemical: MNXM1109 - - sbo: SBO:0000247 + - bigg.metabolite: "ergtetrol" + - chebi: "CHEBI:18249" + - kegg.compound: "C05440" + - metanetx.chemical: "MNXM1109" + - sbo: "SBO:0000247" - !!omap - - id: s_0664 - - name: ergosta-5,7,24(28)-trien-3beta-ol - - compartment: c - - formula: C28H44O + - id: "s_0664" + - name: "ergosta-5,7,24(28)-trien-3beta-ol" + - compartment: "c" + - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ergtrol - - chebi: CHEBI:52972 - - kegg.compound: C15780 - - metanetx.chemical: MNXM5738 - - sbo: SBO:0000247 + - bigg.metabolite: "ergtrol" + - chebi: "CHEBI:52972" + - kegg.compound: "C15780" + - metanetx.chemical: "MNXM5738" + - sbo: "SBO:0000247" - !!omap - - id: s_0665 - - name: ergosterol - - compartment: ce - - formula: C28H44O + - id: "s_0665" + - name: "ergosterol" + - compartment: "ce" + - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ergst - - chebi: CHEBI:16933 - - kegg.compound: C01694 - - metanetx.chemical: MNXM922 - - sbo: SBO:0000247 + - bigg.metabolite: "ergst" + - chebi: "CHEBI:16933" + - kegg.compound: "C01694" + - metanetx.chemical: "MNXM922" + - sbo: "SBO:0000247" - !!omap - - id: s_0666 - - name: ergosterol - - compartment: c - - formula: C28H44O + - id: "s_0666" + - name: "ergosterol" + - compartment: "c" + - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ergst - - chebi: CHEBI:16933 - - kegg.compound: C01694 - - metanetx.chemical: MNXM922 - - sbo: SBO:0000247 + - bigg.metabolite: "ergst" + - chebi: "CHEBI:16933" + - kegg.compound: "C01694" + - metanetx.chemical: "MNXM922" + - sbo: "SBO:0000247" - !!omap - - id: s_0667 - - name: ergosterol - - compartment: er - - formula: C28H44O + - id: "s_0667" + - name: "ergosterol" + - compartment: "er" + - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ergst - - chebi: CHEBI:16933 - - kegg.compound: C01694 - - metanetx.chemical: MNXM922 - - sbo: SBO:0000247 + - bigg.metabolite: "ergst" + - chebi: "CHEBI:16933" + - kegg.compound: "C01694" + - metanetx.chemical: "MNXM922" + - sbo: "SBO:0000247" - !!omap - - id: s_0668 - - name: ergosterol - - compartment: e - - formula: C28H44O + - id: "s_0668" + - name: "ergosterol" + - compartment: "e" + - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ergst - - chebi: CHEBI:16933 - - kegg.compound: C01694 - - metanetx.chemical: MNXM922 - - sbo: SBO:0000247 + - bigg.metabolite: "ergst" + - chebi: "CHEBI:16933" + - kegg.compound: "C01694" + - metanetx.chemical: "MNXM922" + - sbo: "SBO:0000247" - !!omap - - id: s_0669 - - name: ergosterol - - compartment: lp - - formula: C28H44O + - id: "s_0669" + - name: "ergosterol" + - compartment: "lp" + - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ergst - - chebi: CHEBI:16933 - - kegg.compound: C01694 - - metanetx.chemical: MNXM922 - - sbo: SBO:0000247 + - bigg.metabolite: "ergst" + - chebi: "CHEBI:16933" + - kegg.compound: "C01694" + - metanetx.chemical: "MNXM922" + - sbo: "SBO:0000247" - !!omap - - id: s_0670 - - name: ergosterol 3-beta-D-glucoside - - compartment: c - - formula: C34H54O6 + - id: "s_0670" + - name: "ergosterol 3-beta-D-glucoside" + - compartment: "c" + - formula: "C34H54O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: ergst3glc - - chebi: CHEBI:52973 - - metanetx.chemical: MNXM52465 - - sbo: SBO:0000247 + - bigg.metabolite: "ergst3glc" + - chebi: "CHEBI:52973" + - metanetx.chemical: "MNXM52465" + - sbo: "SBO:0000247" - !!omap - - id: s_0672 - - name: ergosterol ester backbone - - compartment: c - - formula: C28H42 + - id: "s_0672" + - name: "ergosterol ester backbone" + - compartment: "c" + - formula: "C28H42" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52320 - - metanetx.chemical: MNXM5739 - - sbo: SBO:0000649 + - chebi: "CHEBI:52320" + - metanetx.chemical: "MNXM5739" + - sbo: "SBO:0000649" - !!omap - - id: s_0677 - - name: erythro-4-hydroxy-L-glutamic acid - - compartment: c - - formula: C5H8NO5 + - id: "s_0677" + - name: "erythro-4-hydroxy-L-glutamic acid" + - compartment: "c" + - formula: "C5H8NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: e4hglu - - chebi: CHEBI:21285 - - kegg.compound: C05947 - - metanetx.chemical: MNXM923 - - sbo: SBO:0000247 + - bigg.metabolite: "e4hglu" + - chebi: "CHEBI:21285" + - kegg.compound: "C05947" + - metanetx.chemical: "MNXM923" + - sbo: "SBO:0000247" - !!omap - - id: s_0678 - - name: erythro-4-hydroxy-L-glutamic acid - - compartment: m - - formula: C5H8NO5 + - id: "s_0678" + - name: "erythro-4-hydroxy-L-glutamic acid" + - compartment: "m" + - formula: "C5H8NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: e4hglu - - chebi: CHEBI:21285 - - kegg.compound: C05947 - - metanetx.chemical: MNXM923 - - sbo: SBO:0000247 + - bigg.metabolite: "e4hglu" + - chebi: "CHEBI:21285" + - kegg.compound: "C05947" + - metanetx.chemical: "MNXM923" + - sbo: "SBO:0000247" - !!omap - - id: s_0679 - - name: erythro-4-hydroxy-L-glutamic acid - - compartment: p - - formula: C5H8NO5 + - id: "s_0679" + - name: "erythro-4-hydroxy-L-glutamic acid" + - compartment: "p" + - formula: "C5H8NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: e4hglu - - chebi: CHEBI:21285 - - kegg.compound: C05947 - - metanetx.chemical: MNXM923 - - sbo: SBO:0000247 + - bigg.metabolite: "e4hglu" + - chebi: "CHEBI:21285" + - kegg.compound: "C05947" + - metanetx.chemical: "MNXM923" + - sbo: "SBO:0000247" - !!omap - - id: s_0680 - - name: ethanol - - compartment: c - - formula: C2H6O + - id: "s_0680" + - name: "ethanol" + - compartment: "c" + - formula: "C2H6O" - charge: 0 - annotation: !!omap - - bigg.metabolite: etoh - - chebi: CHEBI:16236 - - kegg.compound: C00469 - - metanetx.chemical: MNXM303 - - sbo: SBO:0000247 + - bigg.metabolite: "etoh" + - chebi: "CHEBI:16236" + - kegg.compound: "C00469" + - metanetx.chemical: "MNXM303" + - sbo: "SBO:0000247" - !!omap - - id: s_0681 - - name: ethanol - - compartment: e - - formula: C2H6O + - id: "s_0681" + - name: "ethanol" + - compartment: "e" + - formula: "C2H6O" - charge: 0 - annotation: !!omap - - bigg.metabolite: etoh - - chebi: CHEBI:16236 - - kegg.compound: C00469 - - metanetx.chemical: MNXM303 - - sbo: SBO:0000247 + - bigg.metabolite: "etoh" + - chebi: "CHEBI:16236" + - kegg.compound: "C00469" + - metanetx.chemical: "MNXM303" + - sbo: "SBO:0000247" - !!omap - - id: s_0682 - - name: ethanol - - compartment: m - - formula: C2H6O + - id: "s_0682" + - name: "ethanol" + - compartment: "m" + - formula: "C2H6O" - charge: 0 - annotation: !!omap - - bigg.metabolite: etoh - - chebi: CHEBI:16236 - - kegg.compound: C00469 - - metanetx.chemical: MNXM303 - - sbo: SBO:0000247 + - bigg.metabolite: "etoh" + - chebi: "CHEBI:16236" + - kegg.compound: "C00469" + - metanetx.chemical: "MNXM303" + - sbo: "SBO:0000247" - !!omap - - id: s_0683 - - name: ethanolamine - - compartment: c - - formula: C2H8NO + - id: "s_0683" + - name: "ethanolamine" + - compartment: "c" + - formula: "C2H8NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: etha - - chebi: CHEBI:57603 - - kegg.compound: C00189 - - metanetx.chemical: MNXM218 - - sbo: SBO:0000247 + - bigg.metabolite: "etha" + - chebi: "CHEBI:57603" + - kegg.compound: "C00189" + - metanetx.chemical: "MNXM218" + - sbo: "SBO:0000247" - !!omap - - id: s_0684 - - name: ethanolamine - - compartment: e - - formula: C2H8NO + - id: "s_0684" + - name: "ethanolamine" + - compartment: "e" + - formula: "C2H8NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: etha - - chebi: CHEBI:57603 - - kegg.compound: C00189 - - metanetx.chemical: MNXM218 - - sbo: SBO:0000247 + - bigg.metabolite: "etha" + - chebi: "CHEBI:57603" + - kegg.compound: "C00189" + - metanetx.chemical: "MNXM218" + - sbo: "SBO:0000247" - !!omap - - id: s_0685 - - name: ethyl acetate - - compartment: c - - formula: C4H8O2 + - id: "s_0685" + - name: "ethyl acetate" + - compartment: "c" + - formula: "C4H8O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:27750 - - kegg.compound: C00849 - - metanetx.chemical: MNXM8595 - - sbo: SBO:0000247 + - chebi: "CHEBI:27750" + - kegg.compound: "C00849" + - metanetx.chemical: "MNXM8595" + - sbo: "SBO:0000247" - !!omap - - id: s_0686 - - name: ethyl acetate - - compartment: e - - formula: C4H8O2 + - id: "s_0686" + - name: "ethyl acetate" + - compartment: "e" + - formula: "C4H8O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:27750 - - kegg.compound: C00849 - - metanetx.chemical: MNXM8595 - - sbo: SBO:0000247 + - chebi: "CHEBI:27750" + - kegg.compound: "C00849" + - metanetx.chemical: "MNXM8595" + - sbo: "SBO:0000247" - !!omap - - id: s_0687 - - name: FAD - - compartment: c - - formula: C27H30N9O15P2 + - id: "s_0687" + - name: "FAD" + - compartment: "c" + - formula: "C27H30N9O15P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: fad - - chebi: CHEBI:57692 - - kegg.compound: C00016 - - metanetx.chemical: MNXM33 - - sbo: SBO:0000247 + - bigg.metabolite: "fad" + - chebi: "CHEBI:57692" + - kegg.compound: "C00016" + - metanetx.chemical: "MNXM33" + - sbo: "SBO:0000247" - !!omap - - id: s_0688 - - name: FAD - - compartment: m - - formula: C27H30N9O15P2 + - id: "s_0688" + - name: "FAD" + - compartment: "m" + - formula: "C27H30N9O15P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: fad - - chebi: CHEBI:57692 - - kegg.compound: C00016 - - metanetx.chemical: MNXM33 - - sbo: SBO:0000247 + - bigg.metabolite: "fad" + - chebi: "CHEBI:57692" + - kegg.compound: "C00016" + - metanetx.chemical: "MNXM33" + - sbo: "SBO:0000247" - !!omap - - id: s_0689 - - name: FADH2 - - compartment: c - - formula: C27H33N9O15P2 + - id: "s_0689" + - name: "FADH2" + - compartment: "c" + - formula: "C27H33N9O15P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: fadh2 - - chebi: CHEBI:58307 - - kegg.compound: C01352 - - metanetx.chemical: MNXM38 - - sbo: SBO:0000247 + - bigg.metabolite: "fadh2" + - chebi: "CHEBI:58307" + - kegg.compound: "C01352" + - metanetx.chemical: "MNXM38" + - sbo: "SBO:0000247" - !!omap - - id: s_0690 - - name: FADH2 - - compartment: m - - formula: C27H33N9O15P2 + - id: "s_0690" + - name: "FADH2" + - compartment: "m" + - formula: "C27H33N9O15P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: fadh2 - - chebi: CHEBI:58307 - - kegg.compound: C01352 - - metanetx.chemical: MNXM38 - - sbo: SBO:0000247 + - bigg.metabolite: "fadh2" + - chebi: "CHEBI:58307" + - kegg.compound: "C01352" + - metanetx.chemical: "MNXM38" + - sbo: "SBO:0000247" - !!omap - - id: s_0692 - - name: farnesyl diphosphate - - compartment: lp - - formula: C15H25O7P2 + - id: "s_0692" + - name: "farnesyl diphosphate" + - compartment: "lp" + - formula: "C15H25O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: frdp - - chebi: CHEBI:175763 - - kegg.compound: C00448 - - metanetx.chemical: MNXM34 - - sbo: SBO:0000247 + - bigg.metabolite: "frdp" + - chebi: "CHEBI:175763" + - kegg.compound: "C00448" + - metanetx.chemical: "MNXM34" + - sbo: "SBO:0000247" - !!omap - - id: s_0694 - - name: fatty acid backbone - - compartment: c + - id: "s_0694" + - name: "fatty acid backbone" + - compartment: "c" + - formula: "" - charge: 0 - annotation: !!omap - - chebi: CHEBI:35366 - - kegg.compound: C00162 - - metanetx.chemical: MNXM72 - - sbo: SBO:0000649 + - chebi: "CHEBI:35366" + - kegg.compound: "C00162" + - metanetx.chemical: "MNXM72" + - sbo: "SBO:0000649" - !!omap - - id: s_0699 - - name: fecosterol - - compartment: ce - - formula: C28H46O + - id: "s_0699" + - name: "fecosterol" + - compartment: "ce" + - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: fecost - - chebi: CHEBI:17038 - - kegg.compound: C04525 - - metanetx.chemical: MNXM1741 - - sbo: SBO:0000247 + - bigg.metabolite: "fecost" + - chebi: "CHEBI:17038" + - kegg.compound: "C04525" + - metanetx.chemical: "MNXM1741" + - sbo: "SBO:0000247" - !!omap - - id: s_0700 - - name: fecosterol - - compartment: c - - formula: C28H46O + - id: "s_0700" + - name: "fecosterol" + - compartment: "c" + - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: fecost - - chebi: CHEBI:17038 - - kegg.compound: C04525 - - metanetx.chemical: MNXM1741 - - sbo: SBO:0000247 + - bigg.metabolite: "fecost" + - chebi: "CHEBI:17038" + - kegg.compound: "C04525" + - metanetx.chemical: "MNXM1741" + - sbo: "SBO:0000247" - !!omap - - id: s_0702 - - name: fecosterol - - compartment: e - - formula: C28H46O + - id: "s_0702" + - name: "fecosterol" + - compartment: "e" + - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: fecost - - chebi: CHEBI:17038 - - kegg.compound: C04525 - - metanetx.chemical: MNXM1741 - - sbo: SBO:0000247 + - bigg.metabolite: "fecost" + - chebi: "CHEBI:17038" + - kegg.compound: "C04525" + - metanetx.chemical: "MNXM1741" + - sbo: "SBO:0000247" - !!omap - - id: s_0703 - - name: fecosterol - - compartment: lp - - formula: C28H46O + - id: "s_0703" + - name: "fecosterol" + - compartment: "lp" + - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: fecost - - chebi: CHEBI:17038 - - kegg.compound: C04525 - - metanetx.chemical: MNXM1741 - - sbo: SBO:0000247 + - bigg.metabolite: "fecost" + - chebi: "CHEBI:17038" + - kegg.compound: "C04525" + - metanetx.chemical: "MNXM1741" + - sbo: "SBO:0000247" - !!omap - - id: s_0709 - - name: ferricytochrome c - - compartment: m - - formula: C42H44FeN8O8S2R4 + - id: "s_0709" + - name: "ferricytochrome c" + - compartment: "m" + - formula: "C42H44FeN8O8S2R4" - charge: 0 - annotation: !!omap - - bigg.metabolite: ficytc - - chebi: CHEBI:15991 - - kegg.compound: C00125 - - metanetx.chemical: MNXM5749 - - sbo: SBO:0000247 + - bigg.metabolite: "ficytc" + - chebi: "CHEBI:15991" + - kegg.compound: "C00125" + - metanetx.chemical: "MNXM5749" + - sbo: "SBO:0000247" - !!omap - - id: s_0710 - - name: ferrocytochrome c - - compartment: m - - formula: C42H45FeN8O8S2R4 + - id: "s_0710" + - name: "ferrocytochrome c" + - compartment: "m" + - formula: "C42H45FeN8O8S2R4" - charge: 0 - annotation: !!omap - - bigg.metabolite: focytc - - chebi: CHEBI:16928 - - kegg.compound: C00126 - - metanetx.chemical: MNXM746 - - sbo: SBO:0000247 + - bigg.metabolite: "focytc" + - chebi: "CHEBI:16928" + - kegg.compound: "C00126" + - metanetx.chemical: "MNXM746" + - sbo: "SBO:0000247" - !!omap - - id: s_0712 - - name: ferroheme b - - compartment: m - - formula: C34H30FeN4O4 + - id: "s_0712" + - name: "ferroheme b" + - compartment: "m" + - formula: "C34H30FeN4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: pheme - - chebi: CHEBI:60344 - - kegg.compound: C00032 - - metanetx.chemical: MNXM249 - - sbo: SBO:0000247 + - bigg.metabolite: "pheme" + - chebi: "CHEBI:60344" + - kegg.compound: "C00032" + - metanetx.chemical: "MNXM249" + - sbo: "SBO:0000247" - !!omap - - id: s_0713 - - name: fMet-tRNA(fMet) - - compartment: m - - formula: C6H10NO2SR + - id: "s_0713" + - name: "fMet-tRNA(fMet)" + - compartment: "m" + - formula: "C6H10NO2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: fmettrna - - chebi: CHEBI:17119 - - kegg.compound: C03294 - - metanetx.chemical: MNXM95381 - - sbo: SBO:0000247 + - bigg.metabolite: "fmettrna" + - chebi: "CHEBI:17119" + - kegg.compound: "C03294" + - metanetx.chemical: "MNXM95381" + - sbo: "SBO:0000247" - !!omap - - id: s_0714 - - name: FMN - - compartment: c - - formula: C17H18N4O9P + - id: "s_0714" + - name: "FMN" + - compartment: "c" + - formula: "C17H18N4O9P" - charge: -3 - annotation: !!omap - - bigg.metabolite: fmn - - chebi: CHEBI:58210 - - kegg.compound: C00061 - - metanetx.chemical: MNXM119 - - sbo: SBO:0000247 + - bigg.metabolite: "fmn" + - chebi: "CHEBI:58210" + - kegg.compound: "C00061" + - metanetx.chemical: "MNXM119" + - sbo: "SBO:0000247" - !!omap - - id: s_0715 - - name: FMN - - compartment: e - - formula: C17H18N4O9P + - id: "s_0715" + - name: "FMN" + - compartment: "e" + - formula: "C17H18N4O9P" - charge: -3 - annotation: !!omap - - bigg.metabolite: fmn - - chebi: CHEBI:58210 - - kegg.compound: C00061 - - metanetx.chemical: MNXM119 - - sbo: SBO:0000247 + - bigg.metabolite: "fmn" + - chebi: "CHEBI:58210" + - kegg.compound: "C00061" + - metanetx.chemical: "MNXM119" + - sbo: "SBO:0000247" - !!omap - - id: s_0716 - - name: FMN - - compartment: m - - formula: C17H18N4O9P + - id: "s_0716" + - name: "FMN" + - compartment: "m" + - formula: "C17H18N4O9P" - charge: -3 - annotation: !!omap - - bigg.metabolite: fmn - - chebi: CHEBI:58210 - - kegg.compound: C00061 - - metanetx.chemical: MNXM119 - - sbo: SBO:0000247 + - bigg.metabolite: "fmn" + - chebi: "CHEBI:58210" + - kegg.compound: "C00061" + - metanetx.chemical: "MNXM119" + - sbo: "SBO:0000247" - !!omap - - id: s_0717 - - name: FMNH2 - - compartment: c - - formula: C17H21N4O9P + - id: "s_0717" + - name: "FMNH2" + - compartment: "c" + - formula: "C17H21N4O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: fmnh2 - - chebi: CHEBI:57618 - - kegg.compound: C01847 - - metanetx.chemical: MNXM208 - - sbo: SBO:0000247 + - bigg.metabolite: "fmnh2" + - chebi: "CHEBI:57618" + - kegg.compound: "C01847" + - metanetx.chemical: "MNXM208" + - sbo: "SBO:0000247" - !!omap - - id: s_0719 - - name: folate - - compartment: c - - formula: C19H17N7O6 + - id: "s_0719" + - name: "folate" + - compartment: "c" + - formula: "C19H17N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: fol - - chebi: CHEBI:62501 - - kegg.compound: C00504 - - metanetx.chemical: MNXM617 - - sbo: SBO:0000247 + - bigg.metabolite: "fol" + - chebi: "CHEBI:62501" + - kegg.compound: "C00504" + - metanetx.chemical: "MNXM617" + - sbo: "SBO:0000247" - !!omap - - id: s_0720 - - name: folate - - compartment: e - - formula: C19H17N7O6 + - id: "s_0720" + - name: "folate" + - compartment: "e" + - formula: "C19H17N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: fol - - chebi: CHEBI:62501 - - kegg.compound: C00504 - - metanetx.chemical: MNXM617 - - sbo: SBO:0000247 + - bigg.metabolite: "fol" + - chebi: "CHEBI:62501" + - kegg.compound: "C00504" + - metanetx.chemical: "MNXM617" + - sbo: "SBO:0000247" - !!omap - - id: s_0721 - - name: formaldehyde - - compartment: c - - formula: CH2O + - id: "s_0721" + - name: "formaldehyde" + - compartment: "c" + - formula: "CH2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: fald - - chebi: CHEBI:16842 - - kegg.compound: C00067 - - metanetx.chemical: MNXM56 - - sbo: SBO:0000247 + - bigg.metabolite: "fald" + - chebi: "CHEBI:16842" + - kegg.compound: "C00067" + - metanetx.chemical: "MNXM56" + - sbo: "SBO:0000247" - !!omap - - id: s_0722 - - name: formate - - compartment: c - - formula: CHO2 + - id: "s_0722" + - name: "formate" + - compartment: "c" + - formula: "CHO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: for - - chebi: CHEBI:15740 - - kegg.compound: C00058 - - metanetx.chemical: MNXM39 - - sbo: SBO:0000247 + - bigg.metabolite: "for" + - chebi: "CHEBI:15740" + - kegg.compound: "C00058" + - metanetx.chemical: "MNXM39" + - sbo: "SBO:0000247" - !!omap - - id: s_0723 - - name: formate - - compartment: e - - formula: CHO2 + - id: "s_0723" + - name: "formate" + - compartment: "e" + - formula: "CHO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: for - - chebi: CHEBI:15740 - - kegg.compound: C00058 - - metanetx.chemical: MNXM39 - - sbo: SBO:0000247 + - bigg.metabolite: "for" + - chebi: "CHEBI:15740" + - kegg.compound: "C00058" + - metanetx.chemical: "MNXM39" + - sbo: "SBO:0000247" - !!omap - - id: s_0724 - - name: formate - - compartment: m - - formula: CHO2 + - id: "s_0724" + - name: "formate" + - compartment: "m" + - formula: "CHO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: for - - chebi: CHEBI:15740 - - kegg.compound: C00058 - - metanetx.chemical: MNXM39 - - sbo: SBO:0000247 + - bigg.metabolite: "for" + - chebi: "CHEBI:15740" + - kegg.compound: "C00058" + - metanetx.chemical: "MNXM39" + - sbo: "SBO:0000247" - !!omap - - id: s_0725 - - name: fumarate - - compartment: c - - formula: C4H2O4 + - id: "s_0725" + - name: "fumarate" + - compartment: "c" + - formula: "C4H2O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: fum - - chebi: CHEBI:29806 - - kegg.compound: C00122 - - metanetx.chemical: MNXM93 - - sbo: SBO:0000247 + - bigg.metabolite: "fum" + - chebi: "CHEBI:29806" + - kegg.compound: "C00122" + - metanetx.chemical: "MNXM93" + - sbo: "SBO:0000247" - !!omap - - id: s_0726 - - name: fumarate - - compartment: e - - formula: C4H2O4 + - id: "s_0726" + - name: "fumarate" + - compartment: "e" + - formula: "C4H2O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: fum - - chebi: CHEBI:29806 - - kegg.compound: C00122 - - metanetx.chemical: MNXM93 - - sbo: SBO:0000247 + - bigg.metabolite: "fum" + - chebi: "CHEBI:29806" + - kegg.compound: "C00122" + - metanetx.chemical: "MNXM93" + - sbo: "SBO:0000247" - !!omap - - id: s_0727 - - name: fumarate - - compartment: m - - formula: C4H2O4 + - id: "s_0727" + - name: "fumarate" + - compartment: "m" + - formula: "C4H2O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: fum - - chebi: CHEBI:29806 - - kegg.compound: C00122 - - metanetx.chemical: MNXM93 - - sbo: SBO:0000247 + - bigg.metabolite: "fum" + - chebi: "CHEBI:29806" + - kegg.compound: "C00122" + - metanetx.chemical: "MNXM93" + - sbo: "SBO:0000247" - !!omap - - id: s_0734 - - name: gamma-aminobutyrate - - compartment: c - - formula: C4H9NO2 + - id: "s_0734" + - name: "gamma-aminobutyrate" + - compartment: "c" + - formula: "C4H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4abut - - chebi: CHEBI:16865 - - kegg.compound: C00334 - - metanetx.chemical: MNXM192 - - sbo: SBO:0000247 + - bigg.metabolite: "4abut" + - chebi: "CHEBI:16865" + - kegg.compound: "C00334" + - metanetx.chemical: "MNXM192" + - sbo: "SBO:0000247" - !!omap - - id: s_0736 - - name: gamma-aminobutyrate - - compartment: e - - formula: C4H9NO2 + - id: "s_0736" + - name: "gamma-aminobutyrate" + - compartment: "e" + - formula: "C4H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4abut - - chebi: CHEBI:16865 - - kegg.compound: C00334 - - metanetx.chemical: MNXM192 - - sbo: SBO:0000247 + - bigg.metabolite: "4abut" + - chebi: "CHEBI:16865" + - kegg.compound: "C00334" + - metanetx.chemical: "MNXM192" + - sbo: "SBO:0000247" - !!omap - - id: s_0738 - - name: gamma-aminobutyrate - - compartment: m - - formula: C4H9NO2 + - id: "s_0738" + - name: "gamma-aminobutyrate" + - compartment: "m" + - formula: "C4H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4abut - - chebi: CHEBI:16865 - - kegg.compound: C00334 - - metanetx.chemical: MNXM192 - - sbo: SBO:0000247 + - bigg.metabolite: "4abut" + - chebi: "CHEBI:16865" + - kegg.compound: "C00334" + - metanetx.chemical: "MNXM192" + - sbo: "SBO:0000247" - !!omap - - id: s_0739 - - name: GDP - - compartment: c - - formula: C10H12N5O11P2 + - id: "s_0739" + - name: "GDP" + - compartment: "c" + - formula: "C10H12N5O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: gdp - - chebi: CHEBI:58189 - - kegg.compound: C00035 - - metanetx.chemical: MNXM30 - - sbo: SBO:0000247 + - bigg.metabolite: "gdp" + - chebi: "CHEBI:58189" + - kegg.compound: "C00035" + - metanetx.chemical: "MNXM30" + - sbo: "SBO:0000247" - !!omap - - id: s_0740 - - name: GDP - - compartment: g - - formula: C10H12N5O11P2 + - id: "s_0740" + - name: "GDP" + - compartment: "g" + - formula: "C10H12N5O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: gdp - - chebi: CHEBI:58189 - - kegg.compound: C00035 - - metanetx.chemical: MNXM30 - - sbo: SBO:0000247 + - bigg.metabolite: "gdp" + - chebi: "CHEBI:58189" + - kegg.compound: "C00035" + - metanetx.chemical: "MNXM30" + - sbo: "SBO:0000247" - !!omap - - id: s_0741 - - name: GDP - - compartment: m - - formula: C10H12N5O11P2 + - id: "s_0741" + - name: "GDP" + - compartment: "m" + - formula: "C10H12N5O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: gdp - - chebi: CHEBI:58189 - - kegg.compound: C00035 - - metanetx.chemical: MNXM30 - - sbo: SBO:0000247 + - bigg.metabolite: "gdp" + - chebi: "CHEBI:58189" + - kegg.compound: "C00035" + - metanetx.chemical: "MNXM30" + - sbo: "SBO:0000247" - !!omap - - id: s_0742 - - name: GDP - - compartment: n - - formula: C10H12N5O11P2 + - id: "s_0742" + - name: "GDP" + - compartment: "n" + - formula: "C10H12N5O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: gdp - - chebi: CHEBI:58189 - - kegg.compound: C00035 - - metanetx.chemical: MNXM30 - - sbo: SBO:0000247 + - bigg.metabolite: "gdp" + - chebi: "CHEBI:58189" + - kegg.compound: "C00035" + - metanetx.chemical: "MNXM30" + - sbo: "SBO:0000247" - !!omap - - id: s_0743 - - name: GDP-alpha-D-mannose - - compartment: c - - formula: C16H23N5O16P2 + - id: "s_0743" + - name: "GDP-alpha-D-mannose" + - compartment: "c" + - formula: "C16H23N5O16P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: gdpmann - - chebi: CHEBI:57527 - - kegg.compound: C00096 - - metanetx.chemical: MNXM82 - - sbo: SBO:0000247 + - bigg.metabolite: "gdpmann" + - chebi: "CHEBI:57527" + - kegg.compound: "C00096" + - metanetx.chemical: "MNXM82" + - sbo: "SBO:0000247" - !!omap - - id: s_0744 - - name: GDP-alpha-D-mannose - - compartment: g - - formula: C16H23N5O16P2 + - id: "s_0744" + - name: "GDP-alpha-D-mannose" + - compartment: "g" + - formula: "C16H23N5O16P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: gdpmann - - chebi: CHEBI:57527 - - kegg.compound: C00096 - - metanetx.chemical: MNXM82 - - sbo: SBO:0000247 + - bigg.metabolite: "gdpmann" + - chebi: "CHEBI:57527" + - kegg.compound: "C00096" + - metanetx.chemical: "MNXM82" + - sbo: "SBO:0000247" - !!omap - - id: s_0745 - - name: geranyl diphosphate - - compartment: c - - formula: C10H17O7P2 + - id: "s_0745" + - name: "geranyl diphosphate" + - compartment: "c" + - formula: "C10H17O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: grdp - - chebi: CHEBI:58057 - - kegg.compound: C00341 - - metanetx.chemical: MNXM100 - - sbo: SBO:0000247 + - bigg.metabolite: "grdp" + - chebi: "CHEBI:58057" + - kegg.compound: "C00341" + - metanetx.chemical: "MNXM100" + - sbo: "SBO:0000247" - !!omap - - id: s_0746 - - name: geranylgeranyl diphosphate - - compartment: lp - - formula: C20H33O7P2 + - id: "s_0746" + - name: "geranylgeranyl diphosphate" + - compartment: "lp" + - formula: "C20H33O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ggdp - - chebi: CHEBI:58756 - - kegg.compound: C00353 - - metanetx.chemical: MNXM139 - - sbo: SBO:0000247 + - bigg.metabolite: "ggdp" + - chebi: "CHEBI:58756" + - kegg.compound: "C00353" + - metanetx.chemical: "MNXM139" + - sbo: "SBO:0000247" - !!omap - - id: s_0747 - - name: Gln-tRNA(Gln) - - compartment: c - - formula: C5H10N2O2R + - id: "s_0747" + - name: "Gln-tRNA(Gln)" + - compartment: "c" + - formula: "C5H10N2O2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: glntrna - - chebi: CHEBI:29166 - - kegg.compound: C02282 - - metanetx.chemical: MNXM89810 - - sbo: SBO:0000247 + - bigg.metabolite: "glntrna" + - chebi: "CHEBI:29166" + - kegg.compound: "C02282" + - metanetx.chemical: "MNXM89810" + - sbo: "SBO:0000247" - !!omap - - id: s_0748 - - name: Glu-tRNA(Glu) - - compartment: c - - formula: C5H8NO3R + - id: "s_0748" + - name: "Glu-tRNA(Glu)" + - compartment: "c" + - formula: "C5H8NO3R" - charge: 0 - annotation: !!omap - - bigg.metabolite: glutrna - - chebi: CHEBI:29157 - - kegg.compound: C02987 - - metanetx.chemical: MNXM89752 - - sbo: SBO:0000247 + - bigg.metabolite: "glutrna" + - chebi: "CHEBI:29157" + - kegg.compound: "C02987" + - metanetx.chemical: "MNXM89752" + - sbo: "SBO:0000247" - !!omap - - id: s_0749 - - name: Glu-tRNA(Glu) - - compartment: m - - formula: C5H8NO3R + - id: "s_0749" + - name: "Glu-tRNA(Glu)" + - compartment: "m" + - formula: "C5H8NO3R" - charge: 0 - annotation: !!omap - - bigg.metabolite: glutrna - - chebi: CHEBI:29157 - - kegg.compound: C02987 - - metanetx.chemical: MNXM89752 - - sbo: SBO:0000247 + - bigg.metabolite: "glutrna" + - chebi: "CHEBI:29157" + - kegg.compound: "C02987" + - metanetx.chemical: "MNXM89752" + - sbo: "SBO:0000247" - !!omap - - id: s_0750 - - name: glutathione - - compartment: c - - formula: C10H16N3O6S + - id: "s_0750" + - name: "glutathione" + - compartment: "c" + - formula: "C10H16N3O6S" - charge: -1 - annotation: !!omap - - bigg.metabolite: gthrd - - chebi: CHEBI:57925 - - kegg.compound: C00051 - - metanetx.chemical: MNXM57 - - sbo: SBO:0000247 + - bigg.metabolite: "gthrd" + - chebi: "CHEBI:57925" + - kegg.compound: "C00051" + - metanetx.chemical: "MNXM57" + - sbo: "SBO:0000247" - !!omap - - id: s_0751 - - name: glutathione - - compartment: e - - formula: C10H16N3O6S + - id: "s_0751" + - name: "glutathione" + - compartment: "e" + - formula: "C10H16N3O6S" - charge: -1 - annotation: !!omap - - bigg.metabolite: gthrd - - chebi: CHEBI:57925 - - kegg.compound: C00051 - - metanetx.chemical: MNXM57 - - sbo: SBO:0000247 + - bigg.metabolite: "gthrd" + - chebi: "CHEBI:57925" + - kegg.compound: "C00051" + - metanetx.chemical: "MNXM57" + - sbo: "SBO:0000247" - !!omap - - id: s_0752 - - name: glutathione - - compartment: m - - formula: C10H16N3O6S + - id: "s_0752" + - name: "glutathione" + - compartment: "m" + - formula: "C10H16N3O6S" - charge: -1 - annotation: !!omap - - bigg.metabolite: gthrd - - chebi: CHEBI:57925 - - kegg.compound: C00051 - - metanetx.chemical: MNXM57 - - sbo: SBO:0000247 + - bigg.metabolite: "gthrd" + - chebi: "CHEBI:57925" + - kegg.compound: "C00051" + - metanetx.chemical: "MNXM57" + - sbo: "SBO:0000247" - !!omap - - id: s_0753 - - name: glutathione - - compartment: v - - formula: C10H16N3O6S + - id: "s_0753" + - name: "glutathione" + - compartment: "v" + - formula: "C10H16N3O6S" - charge: -1 - annotation: !!omap - - bigg.metabolite: gthrd - - chebi: CHEBI:57925 - - kegg.compound: C00051 - - metanetx.chemical: MNXM57 - - sbo: SBO:0000247 + - bigg.metabolite: "gthrd" + - chebi: "CHEBI:57925" + - kegg.compound: "C00051" + - metanetx.chemical: "MNXM57" + - sbo: "SBO:0000247" - !!omap - - id: s_0754 - - name: glutathione disulfide - - compartment: c - - formula: C20H30N6O12S2 + - id: "s_0754" + - name: "glutathione disulfide" + - compartment: "c" + - formula: "C20H30N6O12S2" - charge: -2 - annotation: !!omap - - bigg.metabolite: gthox - - chebi: CHEBI:58297 - - kegg.compound: C00127 - - metanetx.chemical: MNXM151 - - sbo: SBO:0000247 + - bigg.metabolite: "gthox" + - chebi: "CHEBI:58297" + - kegg.compound: "C00127" + - metanetx.chemical: "MNXM151" + - sbo: "SBO:0000247" - !!omap - - id: s_0755 - - name: glutathione disulfide - - compartment: e - - formula: C20H30N6O12S2 + - id: "s_0755" + - name: "glutathione disulfide" + - compartment: "e" + - formula: "C20H30N6O12S2" - charge: -2 - annotation: !!omap - - bigg.metabolite: gthox - - chebi: CHEBI:58297 - - kegg.compound: C00127 - - metanetx.chemical: MNXM151 - - sbo: SBO:0000247 + - bigg.metabolite: "gthox" + - chebi: "CHEBI:58297" + - kegg.compound: "C00127" + - metanetx.chemical: "MNXM151" + - sbo: "SBO:0000247" - !!omap - - id: s_0756 - - name: glutathione disulfide - - compartment: m - - formula: C20H30N6O12S2 + - id: "s_0756" + - name: "glutathione disulfide" + - compartment: "m" + - formula: "C20H30N6O12S2" - charge: -2 - annotation: !!omap - - bigg.metabolite: gthox - - chebi: CHEBI:58297 - - kegg.compound: C00127 - - metanetx.chemical: MNXM151 - - sbo: SBO:0000247 + - bigg.metabolite: "gthox" + - chebi: "CHEBI:58297" + - kegg.compound: "C00127" + - metanetx.chemical: "MNXM151" + - sbo: "SBO:0000247" - !!omap - - id: s_0757 - - name: Gly-tRNA(Gly) - - compartment: c - - formula: C2H5NOR + - id: "s_0757" + - name: "Gly-tRNA(Gly)" + - compartment: "c" + - formula: "C2H5NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: glytrna - - chebi: CHEBI:29156 - - kegg.compound: C02412 - - metanetx.chemical: MNXM89763 - - sbo: SBO:0000247 + - bigg.metabolite: "glytrna" + - chebi: "CHEBI:29156" + - kegg.compound: "C02412" + - metanetx.chemical: "MNXM89763" + - sbo: "SBO:0000247" - !!omap - - id: s_0764 - - name: glyceraldehyde 3-phosphate - - compartment: c - - formula: C3H5O6P + - id: "s_0764" + - name: "glyceraldehyde 3-phosphate" + - compartment: "c" + - formula: "C3H5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: g3p - - chebi: CHEBI:58027 - - kegg.compound: C00661 - - metanetx.chemical: MNXM74 - - sbo: SBO:0000247 + - bigg.metabolite: "g3p" + - chebi: "CHEBI:58027" + - kegg.compound: "C00661" + - metanetx.chemical: "MNXM74" + - sbo: "SBO:0000247" - !!omap - - id: s_0765 - - name: glycerol - - compartment: c - - formula: C3H8O3 + - id: "s_0765" + - name: "glycerol" + - compartment: "c" + - formula: "C3H8O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: glyc - - chebi: CHEBI:17754 - - kegg.compound: C00116 - - metanetx.chemical: MNXM89612 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc" + - chebi: "CHEBI:17754" + - kegg.compound: "C00116" + - metanetx.chemical: "MNXM89612" + - sbo: "SBO:0000247" - !!omap - - id: s_0766 - - name: glycerol - - compartment: e - - formula: C3H8O3 + - id: "s_0766" + - name: "glycerol" + - compartment: "e" + - formula: "C3H8O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: glyc - - chebi: CHEBI:17754 - - kegg.compound: C00116 - - metanetx.chemical: MNXM89612 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc" + - chebi: "CHEBI:17754" + - kegg.compound: "C00116" + - metanetx.chemical: "MNXM89612" + - sbo: "SBO:0000247" - !!omap - - id: s_0767 - - name: glycerol 3-phosphate - - compartment: c - - formula: C3H7O6P + - id: "s_0767" + - name: "glycerol 3-phosphate" + - compartment: "c" + - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: glyc3p - - chebi: CHEBI:57597 - - kegg.compound: C00093 - - metanetx.chemical: MNXM66 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc3p" + - chebi: "CHEBI:57597" + - kegg.compound: "C00093" + - metanetx.chemical: "MNXM66" + - sbo: "SBO:0000247" - !!omap - - id: s_0769 - - name: glycerol 3-phosphate - - compartment: lp - - formula: C3H7O6P + - id: "s_0769" + - name: "glycerol 3-phosphate" + - compartment: "lp" + - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: glyc3p - - chebi: CHEBI:57597 - - kegg.compound: C00093 - - metanetx.chemical: MNXM66 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc3p" + - chebi: "CHEBI:57597" + - kegg.compound: "C00093" + - metanetx.chemical: "MNXM66" + - sbo: "SBO:0000247" - !!omap - - id: s_0770 - - name: glycerol 3-phosphate - - compartment: m - - formula: C3H7O6P + - id: "s_0770" + - name: "glycerol 3-phosphate" + - compartment: "m" + - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: glyc3p - - chebi: CHEBI:57597 - - kegg.compound: C00093 - - metanetx.chemical: MNXM66 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc3p" + - chebi: "CHEBI:57597" + - kegg.compound: "C00093" + - metanetx.chemical: "MNXM66" + - sbo: "SBO:0000247" - !!omap - - id: s_0771 - - name: glycerone - - compartment: c - - formula: C3H6O3 + - id: "s_0771" + - name: "glycerone" + - compartment: "c" + - formula: "C3H6O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: dha - - chebi: CHEBI:16016 - - kegg.compound: C00184 - - metanetx.chemical: MNXM460 - - sbo: SBO:0000247 + - bigg.metabolite: "dha" + - chebi: "CHEBI:16016" + - kegg.compound: "C00184" + - metanetx.chemical: "MNXM460" + - sbo: "SBO:0000247" - !!omap - - id: s_0773 - - name: glycogen - - compartment: c - - formula: C6H10O5 + - id: "s_0773" + - name: "glycogen" + - compartment: "c" + - formula: "C6H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: glycogen - - chebi: CHEBI:28087 - - kegg.compound: C00182 - - metanetx.chemical: MNXM55375 - - sbo: SBO:0000247 + - bigg.metabolite: "glycogen" + - chebi: "CHEBI:28087" + - kegg.compound: "C00182" + - metanetx.chemical: "MNXM55375" + - sbo: "SBO:0000247" - !!omap - - id: s_0774 - - name: glycogen - - compartment: v - - formula: C6H10O5 + - id: "s_0774" + - name: "glycogen" + - compartment: "v" + - formula: "C6H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: glycogen - - chebi: CHEBI:28087 - - kegg.compound: C00182 - - metanetx.chemical: MNXM55375 - - sbo: SBO:0000247 + - bigg.metabolite: "glycogen" + - chebi: "CHEBI:28087" + - kegg.compound: "C00182" + - metanetx.chemical: "MNXM55375" + - sbo: "SBO:0000247" - !!omap - - id: s_0775 - - name: glycolaldehyde - - compartment: c - - formula: C2H4O2 + - id: "s_0775" + - name: "glycolaldehyde" + - compartment: "c" + - formula: "C2H4O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: gcald - - chebi: CHEBI:17071 - - kegg.compound: C00266 - - metanetx.chemical: MNXM349 - - sbo: SBO:0000247 + - bigg.metabolite: "gcald" + - chebi: "CHEBI:17071" + - kegg.compound: "C00266" + - metanetx.chemical: "MNXM349" + - sbo: "SBO:0000247" - !!omap - - id: s_0776 - - name: glycolaldehyde - - compartment: e - - formula: C2H4O2 + - id: "s_0776" + - name: "glycolaldehyde" + - compartment: "e" + - formula: "C2H4O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: gcald - - chebi: CHEBI:17071 - - kegg.compound: C00266 - - metanetx.chemical: MNXM349 - - sbo: SBO:0000247 + - bigg.metabolite: "gcald" + - chebi: "CHEBI:17071" + - kegg.compound: "C00266" + - metanetx.chemical: "MNXM349" + - sbo: "SBO:0000247" - !!omap - - id: s_0777 - - name: glycolaldehyde - - compartment: m - - formula: C2H4O2 + - id: "s_0777" + - name: "glycolaldehyde" + - compartment: "m" + - formula: "C2H4O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: gcald - - chebi: CHEBI:17071 - - kegg.compound: C00266 - - metanetx.chemical: MNXM349 - - sbo: SBO:0000247 + - bigg.metabolite: "gcald" + - chebi: "CHEBI:17071" + - kegg.compound: "C00266" + - metanetx.chemical: "MNXM349" + - sbo: "SBO:0000247" - !!omap - - id: s_0779 - - name: glyoxylate - - compartment: c - - formula: C2HO3 + - id: "s_0779" + - name: "glyoxylate" + - compartment: "c" + - formula: "C2HO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: glx - - chebi: CHEBI:36655 - - kegg.compound: C00048 - - metanetx.chemical: MNXM69 - - sbo: SBO:0000247 + - bigg.metabolite: "glx" + - chebi: "CHEBI:36655" + - kegg.compound: "C00048" + - metanetx.chemical: "MNXM69" + - sbo: "SBO:0000247" - !!omap - - id: s_0780 - - name: glyoxylate - - compartment: e - - formula: C2HO3 + - id: "s_0780" + - name: "glyoxylate" + - compartment: "e" + - formula: "C2HO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: glx - - chebi: CHEBI:36655 - - kegg.compound: C00048 - - metanetx.chemical: MNXM69 - - sbo: SBO:0000247 + - bigg.metabolite: "glx" + - chebi: "CHEBI:36655" + - kegg.compound: "C00048" + - metanetx.chemical: "MNXM69" + - sbo: "SBO:0000247" - !!omap - - id: s_0781 - - name: glyoxylate - - compartment: p - - formula: C2HO3 + - id: "s_0781" + - name: "glyoxylate" + - compartment: "p" + - formula: "C2HO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: glx - - chebi: CHEBI:36655 - - kegg.compound: C00048 - - metanetx.chemical: MNXM69 - - sbo: SBO:0000247 + - bigg.metabolite: "glx" + - chebi: "CHEBI:36655" + - kegg.compound: "C00048" + - metanetx.chemical: "MNXM69" + - sbo: "SBO:0000247" - !!omap - - id: s_0782 - - name: GMP - - compartment: c - - formula: C10H12N5O8P + - id: "s_0782" + - name: "GMP" + - compartment: "c" + - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: gmp - - chebi: CHEBI:58115 - - kegg.compound: C00144 - - metanetx.chemical: MNXM113 - - sbo: SBO:0000247 + - bigg.metabolite: "gmp" + - chebi: "CHEBI:58115" + - kegg.compound: "C00144" + - metanetx.chemical: "MNXM113" + - sbo: "SBO:0000247" - !!omap - - id: s_0783 - - name: GMP - - compartment: g - - formula: C10H12N5O8P + - id: "s_0783" + - name: "GMP" + - compartment: "g" + - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: gmp - - chebi: CHEBI:58115 - - kegg.compound: C00144 - - metanetx.chemical: MNXM113 - - sbo: SBO:0000247 + - bigg.metabolite: "gmp" + - chebi: "CHEBI:58115" + - kegg.compound: "C00144" + - metanetx.chemical: "MNXM113" + - sbo: "SBO:0000247" - !!omap - - id: s_0785 - - name: GTP - - compartment: c - - formula: C10H12N5O14P3 + - id: "s_0785" + - name: "GTP" + - compartment: "c" + - formula: "C10H12N5O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: gtp - - chebi: CHEBI:57600 - - kegg.compound: C00044 - - metanetx.chemical: MNXM51 - - sbo: SBO:0000247 + - bigg.metabolite: "gtp" + - chebi: "CHEBI:57600" + - kegg.compound: "C00044" + - metanetx.chemical: "MNXM51" + - sbo: "SBO:0000247" - !!omap - - id: s_0786 - - name: GTP - - compartment: m - - formula: C10H12N5O14P3 + - id: "s_0786" + - name: "GTP" + - compartment: "m" + - formula: "C10H12N5O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: gtp - - chebi: CHEBI:57600 - - kegg.compound: C00044 - - metanetx.chemical: MNXM51 - - sbo: SBO:0000247 + - bigg.metabolite: "gtp" + - chebi: "CHEBI:57600" + - kegg.compound: "C00044" + - metanetx.chemical: "MNXM51" + - sbo: "SBO:0000247" - !!omap - - id: s_0787 - - name: guanine - - compartment: c - - formula: C5H5N5O + - id: "s_0787" + - name: "guanine" + - compartment: "c" + - formula: "C5H5N5O" - charge: 0 - annotation: !!omap - - bigg.metabolite: gua - - chebi: CHEBI:16235 - - kegg.compound: C00242 - - metanetx.chemical: MNXM259 - - sbo: SBO:0000247 + - bigg.metabolite: "gua" + - chebi: "CHEBI:16235" + - kegg.compound: "C00242" + - metanetx.chemical: "MNXM259" + - sbo: "SBO:0000247" - !!omap - - id: s_0788 - - name: guanine - - compartment: e - - formula: C5H5N5O + - id: "s_0788" + - name: "guanine" + - compartment: "e" + - formula: "C5H5N5O" - charge: 0 - annotation: !!omap - - bigg.metabolite: gua - - chebi: CHEBI:16235 - - kegg.compound: C00242 - - metanetx.chemical: MNXM259 - - sbo: SBO:0000247 + - bigg.metabolite: "gua" + - chebi: "CHEBI:16235" + - kegg.compound: "C00242" + - metanetx.chemical: "MNXM259" + - sbo: "SBO:0000247" - !!omap - - id: s_0789 - - name: guanine - - compartment: m - - formula: C5H5N5O + - id: "s_0789" + - name: "guanine" + - compartment: "m" + - formula: "C5H5N5O" - charge: 0 - annotation: !!omap - - bigg.metabolite: gua - - chebi: CHEBI:16235 - - kegg.compound: C00242 - - metanetx.chemical: MNXM259 - - sbo: SBO:0000247 + - bigg.metabolite: "gua" + - chebi: "CHEBI:16235" + - kegg.compound: "C00242" + - metanetx.chemical: "MNXM259" + - sbo: "SBO:0000247" - !!omap - - id: s_0790 - - name: guanosine - - compartment: c - - formula: C10H13N5O5 + - id: "s_0790" + - name: "guanosine" + - compartment: "c" + - formula: "C10H13N5O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: gsn - - chebi: CHEBI:16750 - - kegg.compound: C00387 - - metanetx.chemical: MNXM401 - - sbo: SBO:0000247 + - bigg.metabolite: "gsn" + - chebi: "CHEBI:16750" + - kegg.compound: "C00387" + - metanetx.chemical: "MNXM401" + - sbo: "SBO:0000247" - !!omap - - id: s_0791 - - name: guanosine - - compartment: e - - formula: C10H13N5O5 + - id: "s_0791" + - name: "guanosine" + - compartment: "e" + - formula: "C10H13N5O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: gsn - - chebi: CHEBI:16750 - - kegg.compound: C00387 - - metanetx.chemical: MNXM401 - - sbo: SBO:0000247 + - bigg.metabolite: "gsn" + - chebi: "CHEBI:16750" + - kegg.compound: "C00387" + - metanetx.chemical: "MNXM401" + - sbo: "SBO:0000247" - !!omap - - id: s_0792 - - name: guanosine - - compartment: m - - formula: C10H13N5O5 + - id: "s_0792" + - name: "guanosine" + - compartment: "m" + - formula: "C10H13N5O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: gsn - - chebi: CHEBI:16750 - - kegg.compound: C00387 - - metanetx.chemical: MNXM401 - - sbo: SBO:0000247 + - bigg.metabolite: "gsn" + - chebi: "CHEBI:16750" + - kegg.compound: "C00387" + - metanetx.chemical: "MNXM401" + - sbo: "SBO:0000247" - !!omap - - id: s_0793 - - name: H+ - - compartment: ce - - formula: H + - id: "s_0793" + - name: "H+" + - compartment: "ce" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_0794 - - name: H+ - - compartment: c - - formula: H + - id: "s_0794" + - name: "H+" + - compartment: "c" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_0795 - - name: H+ - - compartment: er - - formula: H + - id: "s_0795" + - name: "H+" + - compartment: "er" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_0796 - - name: H+ - - compartment: e - - formula: H + - id: "s_0796" + - name: "H+" + - compartment: "e" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_0797 - - name: H+ - - compartment: g - - formula: H + - id: "s_0797" + - name: "H+" + - compartment: "g" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_0798 - - name: H+ - - compartment: lp - - formula: H + - id: "s_0798" + - name: "H+" + - compartment: "lp" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_0799 - - name: H+ - - compartment: m - - formula: H + - id: "s_0799" + - name: "H+" + - compartment: "m" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_0800 - - name: H+ - - compartment: n - - formula: H + - id: "s_0800" + - name: "H+" + - compartment: "n" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_0801 - - name: H+ - - compartment: p - - formula: H + - id: "s_0801" + - name: "H+" + - compartment: "p" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_0802 - - name: H+ - - compartment: v - - formula: H + - id: "s_0802" + - name: "H+" + - compartment: "v" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_0803 - - name: H2O - - compartment: c - - formula: H2O + - id: "s_0803" + - name: "H2O" + - compartment: "c" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_0804 - - name: H2O - - compartment: er - - formula: H2O + - id: "s_0804" + - name: "H2O" + - compartment: "er" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_0805 - - name: H2O - - compartment: e - - formula: H2O + - id: "s_0805" + - name: "H2O" + - compartment: "e" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_0806 - - name: H2O - - compartment: g - - formula: H2O + - id: "s_0806" + - name: "H2O" + - compartment: "g" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_0807 - - name: H2O - - compartment: m - - formula: H2O + - id: "s_0807" + - name: "H2O" + - compartment: "m" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_0808 - - name: H2O - - compartment: n - - formula: H2O + - id: "s_0808" + - name: "H2O" + - compartment: "n" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_0809 - - name: H2O - - compartment: p - - formula: H2O + - id: "s_0809" + - name: "H2O" + - compartment: "p" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_0810 - - name: H2O - - compartment: v - - formula: H2O + - id: "s_0810" + - name: "H2O" + - compartment: "v" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 - - !!omap - - id: s_0811 - - name: heme a - - compartment: m - - formula: C49H55FeN4O6 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" + - !!omap + - id: "s_0811" + - name: "heme a" + - compartment: "m" + - formula: "C49H55FeN4O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: hemeA - - chebi: CHEBI:24479 - - kegg.compound: C15670 - - metanetx.chemical: MNXM53309 - - sbo: SBO:0000247 + - bigg.metabolite: "hemeA" + - chebi: "CHEBI:24479" + - kegg.compound: "C15670" + - metanetx.chemical: "MNXM53309" + - sbo: "SBO:0000247" - !!omap - - id: s_0812 - - name: heme o - - compartment: m - - formula: C49H56FeN4O5 + - id: "s_0812" + - name: "heme o" + - compartment: "m" + - formula: "C49H56FeN4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: hemeO - - chebi: CHEBI:24480 - - kegg.compound: C15672 - - metanetx.chemical: MNXM1278 - - sbo: SBO:0000247 + - bigg.metabolite: "hemeO" + - chebi: "CHEBI:24480" + - kegg.compound: "C15672" + - metanetx.chemical: "MNXM1278" + - sbo: "SBO:0000247" - !!omap - - id: s_0813 - - name: henicosaprenyl diphosphate - - compartment: lp - - formula: C105H169O7P2 + - id: "s_0813" + - name: "henicosaprenyl diphosphate" + - compartment: "lp" + - formula: "C105H169O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53032 - - metanetx.chemical: MNXM56060 - - sbo: SBO:0000247 + - chebi: "CHEBI:53032" + - metanetx.chemical: "MNXM56060" + - sbo: "SBO:0000247" - !!omap - - id: s_0814 - - name: heptadecaprenyl diphosphate - - compartment: lp - - formula: C85H137O7P2 + - id: "s_0814" + - name: "heptadecaprenyl diphosphate" + - compartment: "lp" + - formula: "C85H137O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53036 - - metanetx.chemical: MNXM56121 - - sbo: SBO:0000247 + - chebi: "CHEBI:53036" + - metanetx.chemical: "MNXM56121" + - sbo: "SBO:0000247" - !!omap - - id: s_0815 - - name: heptaprenyl diphosphate - - compartment: lp - - formula: C35H57O7P2 + - id: "s_0815" + - name: "heptaprenyl diphosphate" + - compartment: "lp" + - formula: "C35H57O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: hepdp - - chebi: CHEBI:53046 - - kegg.compound: C04216 - - metanetx.chemical: MNXM1722 - - sbo: SBO:0000247 + - bigg.metabolite: "hepdp" + - chebi: "CHEBI:53046" + - kegg.compound: "C04216" + - metanetx.chemical: "MNXM1722" + - sbo: "SBO:0000247" - !!omap - - id: s_0816 - - name: hexacosanoyl-CoA - - compartment: c - - formula: C47H82N7O17P3S + - id: "s_0816" + - name: "hexacosanoyl-CoA" + - compartment: "c" + - formula: "C47H82N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hexccoa - - chebi: CHEBI:52966 - - metanetx.chemical: MNXM1190 - - sbo: SBO:0000247 + - bigg.metabolite: "hexccoa" + - chebi: "CHEBI:52966" + - metanetx.chemical: "MNXM1190" + - sbo: "SBO:0000247" - !!omap - - id: s_0817 - - name: hexacosanoyl-CoA - - compartment: er - - formula: C47H82N7O17P3S + - id: "s_0817" + - name: "hexacosanoyl-CoA" + - compartment: "er" + - formula: "C47H82N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hexccoa - - chebi: CHEBI:52966 - - metanetx.chemical: MNXM1190 - - sbo: SBO:0000247 + - bigg.metabolite: "hexccoa" + - chebi: "CHEBI:52966" + - metanetx.chemical: "MNXM1190" + - sbo: "SBO:0000247" - !!omap - - id: s_0819 - - name: hexacosanoyl-CoA - - compartment: p - - formula: C47H82N7O17P3S + - id: "s_0819" + - name: "hexacosanoyl-CoA" + - compartment: "p" + - formula: "C47H82N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hexccoa - - chebi: CHEBI:52966 - - metanetx.chemical: MNXM1190 - - sbo: SBO:0000247 + - bigg.metabolite: "hexccoa" + - chebi: "CHEBI:52966" + - metanetx.chemical: "MNXM1190" + - sbo: "SBO:0000247" - !!omap - - id: s_0823 - - name: hexadec-2-enoyl-CoA - - compartment: p - - formula: C37H60N7O17P3S + - id: "s_0823" + - name: "hexadec-2-enoyl-CoA" + - compartment: "p" + - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hdd2coa - - kegg.compound: C05272 - - metanetx.chemical: MNXM581 - - sbo: SBO:0000247 + - bigg.metabolite: "hdd2coa" + - kegg.compound: "C05272" + - metanetx.chemical: "MNXM581" + - sbo: "SBO:0000247" - !!omap - - id: s_0825 - - name: hexadecanal - - compartment: er - - formula: C16H32O + - id: "s_0825" + - name: "hexadecanal" + - compartment: "er" + - formula: "C16H32O" - charge: 0 - annotation: !!omap - - bigg.metabolite: hxdcal - - chebi: CHEBI:17600 - - kegg.compound: C00517 - - metanetx.chemical: MNXM528 - - sbo: SBO:0000247 + - bigg.metabolite: "hxdcal" + - chebi: "CHEBI:17600" + - kegg.compound: "C00517" + - metanetx.chemical: "MNXM528" + - sbo: "SBO:0000247" - !!omap - - id: s_0826 - - name: hexadecanal - - compartment: e - - formula: C16H32O + - id: "s_0826" + - name: "hexadecanal" + - compartment: "e" + - formula: "C16H32O" - charge: 0 - annotation: !!omap - - bigg.metabolite: hxdcal - - chebi: CHEBI:17600 - - kegg.compound: C00517 - - metanetx.chemical: MNXM528 - - sbo: SBO:0000247 + - bigg.metabolite: "hxdcal" + - chebi: "CHEBI:17600" + - kegg.compound: "C00517" + - metanetx.chemical: "MNXM528" + - sbo: "SBO:0000247" - !!omap - - id: s_0829 - - name: hexadecaprenyl diphosphate - - compartment: lp - - formula: C80H129O7P2 + - id: "s_0829" + - name: "hexadecaprenyl diphosphate" + - compartment: "lp" + - formula: "C80H129O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53037 - - metanetx.chemical: MNXM56347 - - sbo: SBO:0000247 + - chebi: "CHEBI:53037" + - metanetx.chemical: "MNXM56347" + - sbo: "SBO:0000247" - !!omap - - id: s_0830 - - name: hexaprenyl diphosphate - - compartment: lp - - formula: C30H49O7P2 + - id: "s_0830" + - name: "hexaprenyl diphosphate" + - compartment: "lp" + - formula: "C30H49O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: hexdp - - chebi: CHEBI:53047 - - kegg.compound: C01230 - - metanetx.chemical: MNXM1067 - - sbo: SBO:0000247 + - bigg.metabolite: "hexdp" + - chebi: "CHEBI:53047" + - kegg.compound: "C01230" + - metanetx.chemical: "MNXM1067" + - sbo: "SBO:0000247" - !!omap - - id: s_0831 - - name: hexaprenyl diphosphate - - compartment: m - - formula: C30H49O7P2 + - id: "s_0831" + - name: "hexaprenyl diphosphate" + - compartment: "m" + - formula: "C30H49O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: hexdp - - chebi: CHEBI:53047 - - kegg.compound: C01230 - - metanetx.chemical: MNXM1067 - - sbo: SBO:0000247 + - bigg.metabolite: "hexdp" + - chebi: "CHEBI:53047" + - kegg.compound: "C01230" + - metanetx.chemical: "MNXM1067" + - sbo: "SBO:0000247" - !!omap - - id: s_0832 - - name: His-tRNA(His) - - compartment: c - - formula: C6H9N3OR + - id: "s_0832" + - name: "His-tRNA(His)" + - compartment: "c" + - formula: "C6H9N3OR" - charge: 1 - annotation: !!omap - - bigg.metabolite: histrna - - chebi: CHEBI:29155 - - kegg.compound: C02988 - - metanetx.chemical: MNXM89831 - - sbo: SBO:0000247 + - bigg.metabolite: "histrna" + - chebi: "CHEBI:29155" + - kegg.compound: "C02988" + - metanetx.chemical: "MNXM89831" + - sbo: "SBO:0000247" - !!omap - - id: s_0833 - - name: His-tRNA(His) - - compartment: m - - formula: C6H9N3OR + - id: "s_0833" + - name: "His-tRNA(His)" + - compartment: "m" + - formula: "C6H9N3OR" - charge: 1 - annotation: !!omap - - bigg.metabolite: histrna - - chebi: CHEBI:29155 - - kegg.compound: C02988 - - metanetx.chemical: MNXM89831 - - sbo: SBO:0000247 + - bigg.metabolite: "histrna" + - chebi: "CHEBI:29155" + - kegg.compound: "C02988" + - metanetx.chemical: "MNXM89831" + - sbo: "SBO:0000247" - !!omap - - id: s_0834 - - name: homocitrate - - compartment: m - - formula: C7H7O7 + - id: "s_0834" + - name: "homocitrate" + - compartment: "m" + - formula: "C7H7O7" - charge: -3 - annotation: !!omap - - chebi: CHEBI:36457 - - kegg.compound: C01251 - - metanetx.chemical: MNXM722779 - - sbo: SBO:0000247 + - chebi: "CHEBI:36457" + - kegg.compound: "C01251" + - metanetx.chemical: "MNXM722779" + - sbo: "SBO:0000247" - !!omap - - id: s_0835 - - name: homocitrate - - compartment: n - - formula: C7H7O7 + - id: "s_0835" + - name: "homocitrate" + - compartment: "n" + - formula: "C7H7O7" - charge: -3 - annotation: !!omap - - chebi: CHEBI:36457 - - kegg.compound: C01251 - - metanetx.chemical: MNXM722779 - - sbo: SBO:0000247 + - chebi: "CHEBI:36457" + - kegg.compound: "C01251" + - metanetx.chemical: "MNXM722779" + - sbo: "SBO:0000247" - !!omap - - id: s_0836 - - name: homoisocitrate - - compartment: m - - formula: C7H7O7 + - id: "s_0836" + - name: "homoisocitrate" + - compartment: "m" + - formula: "C7H7O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: hicit - - chebi: CHEBI:30904 - - kegg.compound: C05662 - - metanetx.chemical: MNXM984 - - sbo: SBO:0000247 + - bigg.metabolite: "hicit" + - chebi: "CHEBI:30904" + - kegg.compound: "C05662" + - metanetx.chemical: "MNXM984" + - sbo: "SBO:0000247" - !!omap - - id: s_0837 - - name: hydrogen peroxide - - compartment: c - - formula: H2O2 + - id: "s_0837" + - name: "hydrogen peroxide" + - compartment: "c" + - formula: "H2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o2 - - chebi: CHEBI:16240 - - kegg.compound: C00027 - - metanetx.chemical: MNXM22 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o2" + - chebi: "CHEBI:16240" + - kegg.compound: "C00027" + - metanetx.chemical: "MNXM22" + - sbo: "SBO:0000247" - !!omap - - id: s_0838 - - name: hydrogen peroxide - - compartment: m - - formula: H2O2 + - id: "s_0838" + - name: "hydrogen peroxide" + - compartment: "m" + - formula: "H2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o2 - - chebi: CHEBI:16240 - - kegg.compound: C00027 - - metanetx.chemical: MNXM22 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o2" + - chebi: "CHEBI:16240" + - kegg.compound: "C00027" + - metanetx.chemical: "MNXM22" + - sbo: "SBO:0000247" - !!omap - - id: s_0839 - - name: hydrogen peroxide - - compartment: n - - formula: H2O2 + - id: "s_0839" + - name: "hydrogen peroxide" + - compartment: "n" + - formula: "H2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o2 - - chebi: CHEBI:16240 - - kegg.compound: C00027 - - metanetx.chemical: MNXM22 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o2" + - chebi: "CHEBI:16240" + - kegg.compound: "C00027" + - metanetx.chemical: "MNXM22" + - sbo: "SBO:0000247" - !!omap - - id: s_0840 - - name: hydrogen peroxide - - compartment: p - - formula: H2O2 + - id: "s_0840" + - name: "hydrogen peroxide" + - compartment: "p" + - formula: "H2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o2 - - chebi: CHEBI:16240 - - kegg.compound: C00027 - - metanetx.chemical: MNXM22 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o2" + - chebi: "CHEBI:16240" + - kegg.compound: "C00027" + - metanetx.chemical: "MNXM22" + - sbo: "SBO:0000247" - !!omap - - id: s_0841 - - name: hydrogen sulfide - - compartment: c - - formula: HS + - id: "s_0841" + - name: "hydrogen sulfide" + - compartment: "c" + - formula: "HS" - charge: -1 - annotation: !!omap - - bigg.metabolite: h2s - - chebi: CHEBI:29919 - - kegg.compound: C00283 - - metanetx.chemical: MNXM89582 - - sbo: SBO:0000247 + - bigg.metabolite: "h2s" + - chebi: "CHEBI:29919" + - kegg.compound: "C00283" + - metanetx.chemical: "MNXM89582" + - sbo: "SBO:0000247" - !!omap - - id: s_0843 - - name: hypoxanthine - - compartment: c - - formula: C5H4N4O + - id: "s_0843" + - name: "hypoxanthine" + - compartment: "c" + - formula: "C5H4N4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: hxan - - chebi: CHEBI:17368 - - kegg.compound: C00262 - - metanetx.chemical: MNXM213 - - sbo: SBO:0000247 + - bigg.metabolite: "hxan" + - chebi: "CHEBI:17368" + - kegg.compound: "C00262" + - metanetx.chemical: "MNXM213" + - sbo: "SBO:0000247" - !!omap - - id: s_0844 - - name: hypoxanthine - - compartment: e - - formula: C5H4N4O + - id: "s_0844" + - name: "hypoxanthine" + - compartment: "e" + - formula: "C5H4N4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: hxan - - chebi: CHEBI:17368 - - kegg.compound: C00262 - - metanetx.chemical: MNXM213 - - sbo: SBO:0000247 + - bigg.metabolite: "hxan" + - chebi: "CHEBI:17368" + - kegg.compound: "C00262" + - metanetx.chemical: "MNXM213" + - sbo: "SBO:0000247" - !!omap - - id: s_0845 - - name: icosaprenyl diphosphate - - compartment: lp - - formula: C100H161O7P2 + - id: "s_0845" + - name: "icosaprenyl diphosphate" + - compartment: "lp" + - formula: "C100H161O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53033 - - metanetx.chemical: MNXM57076 - - sbo: SBO:0000247 + - chebi: "CHEBI:53033" + - metanetx.chemical: "MNXM57076" + - sbo: "SBO:0000247" - !!omap - - id: s_0846 - - name: IDP - - compartment: c - - formula: C10H11N4O11P2 + - id: "s_0846" + - name: "IDP" + - compartment: "c" + - formula: "C10H11N4O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: idp - - chebi: CHEBI:58280 - - kegg.compound: C00104 - - metanetx.chemical: MNXM495 - - sbo: SBO:0000247 + - bigg.metabolite: "idp" + - chebi: "CHEBI:58280" + - kegg.compound: "C00104" + - metanetx.chemical: "MNXM495" + - sbo: "SBO:0000247" - !!omap - - id: s_0847 - - name: Ile-tRNA(Ile) - - compartment: c - - formula: C6H13NOR + - id: "s_0847" + - name: "Ile-tRNA(Ile)" + - compartment: "c" + - formula: "C6H13NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: iletrna - - chebi: CHEBI:29160 - - kegg.compound: C03127 - - metanetx.chemical: MNXM89832 - - sbo: SBO:0000247 + - bigg.metabolite: "iletrna" + - chebi: "CHEBI:29160" + - kegg.compound: "C03127" + - metanetx.chemical: "MNXM89832" + - sbo: "SBO:0000247" - !!omap - - id: s_0848 - - name: Ile-tRNA(Ile) - - compartment: m - - formula: C6H13NOR + - id: "s_0848" + - name: "Ile-tRNA(Ile)" + - compartment: "m" + - formula: "C6H13NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: iletrna - - chebi: CHEBI:29160 - - kegg.compound: C03127 - - metanetx.chemical: MNXM89832 - - sbo: SBO:0000247 + - bigg.metabolite: "iletrna" + - chebi: "CHEBI:29160" + - kegg.compound: "C03127" + - metanetx.chemical: "MNXM89832" + - sbo: "SBO:0000247" - !!omap - - id: s_0849 - - name: IMP - - compartment: c - - formula: C10H11N4O8P + - id: "s_0849" + - name: "IMP" + - compartment: "c" + - formula: "C10H11N4O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: imp - - chebi: CHEBI:58053 - - kegg.compound: C00130 - - metanetx.chemical: MNXM125 - - sbo: SBO:0000247 + - bigg.metabolite: "imp" + - chebi: "CHEBI:58053" + - kegg.compound: "C00130" + - metanetx.chemical: "MNXM125" + - sbo: "SBO:0000247" - !!omap - - id: s_0850 - - name: indol-3-ylacetaldehyde - - compartment: c - - formula: C10H9NO + - id: "s_0850" + - name: "indol-3-ylacetaldehyde" + - compartment: "c" + - formula: "C10H9NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: id3acald - - chebi: CHEBI:18086 - - kegg.compound: C00637 - - metanetx.chemical: MNXM518 - - sbo: SBO:0000247 + - bigg.metabolite: "id3acald" + - chebi: "CHEBI:18086" + - kegg.compound: "C00637" + - metanetx.chemical: "MNXM518" + - sbo: "SBO:0000247" - !!omap - - id: s_0851 - - name: indol-3-ylacetaldehyde - - compartment: e - - formula: C10H9NO + - id: "s_0851" + - name: "indol-3-ylacetaldehyde" + - compartment: "e" + - formula: "C10H9NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: id3acald - - chebi: CHEBI:18086 - - kegg.compound: C00637 - - metanetx.chemical: MNXM518 - - sbo: SBO:0000247 + - bigg.metabolite: "id3acald" + - chebi: "CHEBI:18086" + - kegg.compound: "C00637" + - metanetx.chemical: "MNXM518" + - sbo: "SBO:0000247" - !!omap - - id: s_0852 - - name: indol-3-ylacetaldehyde - - compartment: m - - formula: C10H9NO + - id: "s_0852" + - name: "indol-3-ylacetaldehyde" + - compartment: "m" + - formula: "C10H9NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: id3acald - - chebi: CHEBI:18086 - - kegg.compound: C00637 - - metanetx.chemical: MNXM518 - - sbo: SBO:0000247 + - bigg.metabolite: "id3acald" + - chebi: "CHEBI:18086" + - kegg.compound: "C00637" + - metanetx.chemical: "MNXM518" + - sbo: "SBO:0000247" - !!omap - - id: s_0853 - - name: indole-3-acetate - - compartment: c - - formula: C10H8NO2 + - id: "s_0853" + - name: "indole-3-acetate" + - compartment: "c" + - formula: "C10H8NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ind3ac - - chebi: CHEBI:30854 - - kegg.compound: C00954 - - metanetx.chemical: MNXM383 - - sbo: SBO:0000247 + - bigg.metabolite: "ind3ac" + - chebi: "CHEBI:30854" + - kegg.compound: "C00954" + - metanetx.chemical: "MNXM383" + - sbo: "SBO:0000247" - !!omap - - id: s_0854 - - name: indole-3-acetate - - compartment: m - - formula: C10H8NO2 + - id: "s_0854" + - name: "indole-3-acetate" + - compartment: "m" + - formula: "C10H8NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ind3ac - - chebi: CHEBI:30854 - - kegg.compound: C00954 - - metanetx.chemical: MNXM383 - - sbo: SBO:0000247 + - bigg.metabolite: "ind3ac" + - chebi: "CHEBI:30854" + - kegg.compound: "C00954" + - metanetx.chemical: "MNXM383" + - sbo: "SBO:0000247" - !!omap - - id: s_0855 - - name: indole-3-pyruvate - - compartment: c - - formula: C11H8NO3 + - id: "s_0855" + - name: "indole-3-pyruvate" + - compartment: "c" + - formula: "C11H8NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: indpyr - - chebi: CHEBI:17640 - - kegg.compound: C00331 - - metanetx.chemical: MNXM315 - - sbo: SBO:0000247 + - bigg.metabolite: "indpyr" + - chebi: "CHEBI:17640" + - kegg.compound: "C00331" + - metanetx.chemical: "MNXM315" + - sbo: "SBO:0000247" - !!omap - - id: s_0856 - - name: inosine - - compartment: c - - formula: C10H12N4O5 + - id: "s_0856" + - name: "inosine" + - compartment: "c" + - formula: "C10H12N4O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: ins - - chebi: CHEBI:17596 - - kegg.compound: C00294 - - metanetx.chemical: MNXM334 - - sbo: SBO:0000247 + - bigg.metabolite: "ins" + - chebi: "CHEBI:17596" + - kegg.compound: "C00294" + - metanetx.chemical: "MNXM334" + - sbo: "SBO:0000247" - !!omap - - id: s_0857 - - name: inosine - - compartment: e - - formula: C10H12N4O5 + - id: "s_0857" + - name: "inosine" + - compartment: "e" + - formula: "C10H12N4O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: ins - - chebi: CHEBI:17596 - - kegg.compound: C00294 - - metanetx.chemical: MNXM334 - - sbo: SBO:0000247 + - bigg.metabolite: "ins" + - chebi: "CHEBI:17596" + - kegg.compound: "C00294" + - metanetx.chemical: "MNXM334" + - sbo: "SBO:0000247" - !!omap - - id: s_0859 - - name: inositol phosphomannosylinositol phosphoceramide backbone - - compartment: g - - formula: C18H33NO23P2 + - id: "s_0859" + - name: "inositol phosphomannosylinositol phosphoceramide backbone" + - compartment: "g" + - formula: "C18H33NO23P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62682 - - metanetx.chemical: MNXM57447 - - sbo: SBO:0000649 + - chebi: "CHEBI:62682" + - metanetx.chemical: "MNXM57447" + - sbo: "SBO:0000649" - !!omap - - id: s_0861 - - name: inositol phosphomannosylinositol phosphoceramide A (C24) - - compartment: er - - formula: C60H117NO24P2 + - id: "s_0861" + - name: "inositol phosphomannosylinositol phosphoceramide A (C24)" + - compartment: "er" + - formula: "C60H117NO24P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60439 - - metanetx.chemical: MNXM57464 - - sbo: SBO:0000247 + - chebi: "CHEBI:60439" + - metanetx.chemical: "MNXM57464" + - sbo: "SBO:0000247" - !!omap - - id: s_0862 - - name: inositol phosphomannosylinositol phosphoceramide A (C24) - - compartment: g - - formula: C60H117NO24P2 + - id: "s_0862" + - name: "inositol phosphomannosylinositol phosphoceramide A (C24)" + - compartment: "g" + - formula: "C60H117NO24P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60439 - - metanetx.chemical: MNXM57464 - - sbo: SBO:0000247 + - chebi: "CHEBI:60439" + - metanetx.chemical: "MNXM57464" + - sbo: "SBO:0000247" - !!omap - - id: s_0863 - - name: inositol phosphomannosylinositol phosphoceramide A (C24) - - compartment: m - - formula: C60H117NO24P2 + - id: "s_0863" + - name: "inositol phosphomannosylinositol phosphoceramide A (C24)" + - compartment: "m" + - formula: "C60H117NO24P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60439 - - metanetx.chemical: MNXM57464 - - sbo: SBO:0000247 + - chebi: "CHEBI:60439" + - metanetx.chemical: "MNXM57464" + - sbo: "SBO:0000247" - !!omap - - id: s_0864 - - name: inositol phosphomannosylinositol phosphoceramide A (C26) - - compartment: er - - formula: C62H121NO24P2 + - id: "s_0864" + - name: "inositol phosphomannosylinositol phosphoceramide A (C26)" + - compartment: "er" + - formula: "C62H121NO24P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62715 - - metanetx.chemical: MNXM527419 - - sbo: SBO:0000247 + - chebi: "CHEBI:62715" + - metanetx.chemical: "MNXM527419" + - sbo: "SBO:0000247" - !!omap - - id: s_0865 - - name: inositol phosphomannosylinositol phosphoceramide A (C26) - - compartment: g - - formula: C62H121NO24P2 + - id: "s_0865" + - name: "inositol phosphomannosylinositol phosphoceramide A (C26)" + - compartment: "g" + - formula: "C62H121NO24P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62715 - - metanetx.chemical: MNXM527419 - - sbo: SBO:0000247 + - chebi: "CHEBI:62715" + - metanetx.chemical: "MNXM527419" + - sbo: "SBO:0000247" - !!omap - - id: s_0866 - - name: inositol phosphomannosylinositol phosphoceramide A (C26) - - compartment: m - - formula: C62H121NO24P2 + - id: "s_0866" + - name: "inositol phosphomannosylinositol phosphoceramide A (C26)" + - compartment: "m" + - formula: "C62H121NO24P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62715 - - metanetx.chemical: MNXM527419 - - sbo: SBO:0000247 + - chebi: "CHEBI:62715" + - metanetx.chemical: "MNXM527419" + - sbo: "SBO:0000247" - !!omap - - id: s_0867 - - name: inositol phosphomannosylinositol phosphoceramide B (C24) - - compartment: er - - formula: C60H117NO25P2 + - id: "s_0867" + - name: "inositol phosphomannosylinositol phosphoceramide B (C24)" + - compartment: "er" + - formula: "C60H117NO25P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60443 - - metanetx.chemical: MNXM527425 - - sbo: SBO:0000247 + - chebi: "CHEBI:60443" + - metanetx.chemical: "MNXM527425" + - sbo: "SBO:0000247" - !!omap - - id: s_0868 - - name: inositol phosphomannosylinositol phosphoceramide B (C24) - - compartment: g - - formula: C60H117NO25P2 + - id: "s_0868" + - name: "inositol phosphomannosylinositol phosphoceramide B (C24)" + - compartment: "g" + - formula: "C60H117NO25P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60443 - - metanetx.chemical: MNXM527425 - - sbo: SBO:0000247 + - chebi: "CHEBI:60443" + - metanetx.chemical: "MNXM527425" + - sbo: "SBO:0000247" - !!omap - - id: s_0869 - - name: inositol phosphomannosylinositol phosphoceramide B (C24) - - compartment: m - - formula: C60H117NO25P2 + - id: "s_0869" + - name: "inositol phosphomannosylinositol phosphoceramide B (C24)" + - compartment: "m" + - formula: "C60H117NO25P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60443 - - metanetx.chemical: MNXM527425 - - sbo: SBO:0000247 + - chebi: "CHEBI:60443" + - metanetx.chemical: "MNXM527425" + - sbo: "SBO:0000247" - !!omap - - id: s_0870 - - name: inositol phosphomannosylinositol phosphoceramide B (C26) - - compartment: er - - formula: C62H121NO25P2 + - id: "s_0870" + - name: "inositol phosphomannosylinositol phosphoceramide B (C26)" + - compartment: "er" + - formula: "C62H121NO25P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62719 - - metanetx.chemical: MNXM527421 - - sbo: SBO:0000247 + - chebi: "CHEBI:62719" + - metanetx.chemical: "MNXM527421" + - sbo: "SBO:0000247" - !!omap - - id: s_0871 - - name: inositol phosphomannosylinositol phosphoceramide B (C26) - - compartment: g - - formula: C62H121NO25P2 + - id: "s_0871" + - name: "inositol phosphomannosylinositol phosphoceramide B (C26)" + - compartment: "g" + - formula: "C62H121NO25P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62719 - - metanetx.chemical: MNXM527421 - - sbo: SBO:0000247 + - chebi: "CHEBI:62719" + - metanetx.chemical: "MNXM527421" + - sbo: "SBO:0000247" - !!omap - - id: s_0872 - - name: inositol phosphomannosylinositol phosphoceramide B (C26) - - compartment: m - - formula: C62H121NO25P2 + - id: "s_0872" + - name: "inositol phosphomannosylinositol phosphoceramide B (C26)" + - compartment: "m" + - formula: "C62H121NO25P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62719 - - metanetx.chemical: MNXM527421 - - sbo: SBO:0000247 + - chebi: "CHEBI:62719" + - metanetx.chemical: "MNXM527421" + - sbo: "SBO:0000247" - !!omap - - id: s_0873 - - name: inositol phosphomannosylinositol phosphoceramide B' (C24) - - compartment: er - - formula: C60H117NO25P2 + - id: "s_0873" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C24)" + - compartment: "er" + - formula: "C60H117NO25P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60441 - - metanetx.chemical: MNXM527422 - - sbo: SBO:0000247 + - chebi: "CHEBI:60441" + - metanetx.chemical: "MNXM527422" + - sbo: "SBO:0000247" - !!omap - - id: s_0874 - - name: inositol phosphomannosylinositol phosphoceramide B' (C24) - - compartment: g - - formula: C60H117NO25P2 + - id: "s_0874" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C24)" + - compartment: "g" + - formula: "C60H117NO25P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60441 - - metanetx.chemical: MNXM527422 - - sbo: SBO:0000247 + - chebi: "CHEBI:60441" + - metanetx.chemical: "MNXM527422" + - sbo: "SBO:0000247" - !!omap - - id: s_0875 - - name: inositol phosphomannosylinositol phosphoceramide B' (C24) - - compartment: m - - formula: C60H117NO25P2 + - id: "s_0875" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C24)" + - compartment: "m" + - formula: "C60H117NO25P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60441 - - metanetx.chemical: MNXM527422 - - sbo: SBO:0000247 + - chebi: "CHEBI:60441" + - metanetx.chemical: "MNXM527422" + - sbo: "SBO:0000247" - !!omap - - id: s_0876 - - name: inositol phosphomannosylinositol phosphoceramide B' (C26) - - compartment: er - - formula: C62H121NO25P2 + - id: "s_0876" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C26)" + - compartment: "er" + - formula: "C62H121NO25P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62717 - - metanetx.chemical: MNXM527418 - - sbo: SBO:0000247 + - chebi: "CHEBI:62717" + - metanetx.chemical: "MNXM527418" + - sbo: "SBO:0000247" - !!omap - - id: s_0877 - - name: inositol phosphomannosylinositol phosphoceramide B' (C26) - - compartment: g - - formula: C62H121NO25P2 + - id: "s_0877" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C26)" + - compartment: "g" + - formula: "C62H121NO25P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62717 - - metanetx.chemical: MNXM527418 - - sbo: SBO:0000247 + - chebi: "CHEBI:62717" + - metanetx.chemical: "MNXM527418" + - sbo: "SBO:0000247" - !!omap - - id: s_0878 - - name: inositol phosphomannosylinositol phosphoceramide B' (C26) - - compartment: m - - formula: C62H121NO25P2 + - id: "s_0878" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C26)" + - compartment: "m" + - formula: "C62H121NO25P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62717 - - metanetx.chemical: MNXM527418 - - sbo: SBO:0000247 + - chebi: "CHEBI:62717" + - metanetx.chemical: "MNXM527418" + - sbo: "SBO:0000247" - !!omap - - id: s_0879 - - name: inositol phosphomannosylinositol phosphoceramide C (C24) - - compartment: er - - formula: C60H117NO26P2 + - id: "s_0879" + - name: "inositol phosphomannosylinositol phosphoceramide C (C24)" + - compartment: "er" + - formula: "C60H117NO26P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60445 - - metanetx.chemical: MNXM527424 - - sbo: SBO:0000247 + - chebi: "CHEBI:60445" + - metanetx.chemical: "MNXM527424" + - sbo: "SBO:0000247" - !!omap - - id: s_0880 - - name: inositol phosphomannosylinositol phosphoceramide C (C24) - - compartment: g - - formula: C60H117NO26P2 + - id: "s_0880" + - name: "inositol phosphomannosylinositol phosphoceramide C (C24)" + - compartment: "g" + - formula: "C60H117NO26P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60445 - - metanetx.chemical: MNXM527424 - - sbo: SBO:0000247 + - chebi: "CHEBI:60445" + - metanetx.chemical: "MNXM527424" + - sbo: "SBO:0000247" - !!omap - - id: s_0881 - - name: inositol phosphomannosylinositol phosphoceramide C (C24) - - compartment: m - - formula: C60H117NO26P2 + - id: "s_0881" + - name: "inositol phosphomannosylinositol phosphoceramide C (C24)" + - compartment: "m" + - formula: "C60H117NO26P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60445 - - metanetx.chemical: MNXM527424 - - sbo: SBO:0000247 + - chebi: "CHEBI:60445" + - metanetx.chemical: "MNXM527424" + - sbo: "SBO:0000247" - !!omap - - id: s_0882 - - name: inositol phosphomannosylinositol phosphoceramide C (C26) - - compartment: er - - formula: C62H121NO26P2 + - id: "s_0882" + - name: "inositol phosphomannosylinositol phosphoceramide C (C26)" + - compartment: "er" + - formula: "C62H121NO26P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53005 - - metanetx.chemical: MNXM57469 - - sbo: SBO:0000247 + - chebi: "CHEBI:53005" + - metanetx.chemical: "MNXM57469" + - sbo: "SBO:0000247" - !!omap - - id: s_0883 - - name: inositol phosphomannosylinositol phosphoceramide C (C26) - - compartment: g - - formula: C62H121NO26P2 + - id: "s_0883" + - name: "inositol phosphomannosylinositol phosphoceramide C (C26)" + - compartment: "g" + - formula: "C62H121NO26P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53005 - - metanetx.chemical: MNXM57469 - - sbo: SBO:0000247 + - chebi: "CHEBI:53005" + - metanetx.chemical: "MNXM57469" + - sbo: "SBO:0000247" - !!omap - - id: s_0884 - - name: inositol phosphomannosylinositol phosphoceramide C (C26) - - compartment: m - - formula: C62H121NO26P2 + - id: "s_0884" + - name: "inositol phosphomannosylinositol phosphoceramide C (C26)" + - compartment: "m" + - formula: "C62H121NO26P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53005 - - metanetx.chemical: MNXM57469 - - sbo: SBO:0000247 + - chebi: "CHEBI:53005" + - metanetx.chemical: "MNXM57469" + - sbo: "SBO:0000247" - !!omap - - id: s_0885 - - name: inositol phosphomannosylinositol phosphoceramide D (C24) - - compartment: er - - formula: C60H117NO27P2 + - id: "s_0885" + - name: "inositol phosphomannosylinositol phosphoceramide D (C24)" + - compartment: "er" + - formula: "C60H117NO27P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60446 - - metanetx.chemical: MNXM527423 - - sbo: SBO:0000247 + - chebi: "CHEBI:60446" + - metanetx.chemical: "MNXM527423" + - sbo: "SBO:0000247" - !!omap - - id: s_0886 - - name: inositol phosphomannosylinositol phosphoceramide D (C24) - - compartment: g - - formula: C60H117NO27P2 + - id: "s_0886" + - name: "inositol phosphomannosylinositol phosphoceramide D (C24)" + - compartment: "g" + - formula: "C60H117NO27P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60446 - - metanetx.chemical: MNXM527423 - - sbo: SBO:0000247 + - chebi: "CHEBI:60446" + - metanetx.chemical: "MNXM527423" + - sbo: "SBO:0000247" - !!omap - - id: s_0887 - - name: inositol phosphomannosylinositol phosphoceramide D (C24) - - compartment: m - - formula: C60H117NO27P2 + - id: "s_0887" + - name: "inositol phosphomannosylinositol phosphoceramide D (C24)" + - compartment: "m" + - formula: "C60H117NO27P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60446 - - metanetx.chemical: MNXM527423 - - sbo: SBO:0000247 + - chebi: "CHEBI:60446" + - metanetx.chemical: "MNXM527423" + - sbo: "SBO:0000247" - !!omap - - id: s_0888 - - name: inositol phosphomannosylinositol phosphoceramide D (C26) - - compartment: er - - formula: C62H121NO27P2 + - id: "s_0888" + - name: "inositol phosphomannosylinositol phosphoceramide D (C26)" + - compartment: "er" + - formula: "C62H121NO27P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62684 - - metanetx.chemical: MNXM527420 - - sbo: SBO:0000247 + - chebi: "CHEBI:62684" + - metanetx.chemical: "MNXM527420" + - sbo: "SBO:0000247" - !!omap - - id: s_0889 - - name: inositol phosphomannosylinositol phosphoceramide D (C26) - - compartment: g - - formula: C62H121NO27P2 + - id: "s_0889" + - name: "inositol phosphomannosylinositol phosphoceramide D (C26)" + - compartment: "g" + - formula: "C62H121NO27P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62684 - - metanetx.chemical: MNXM527420 - - sbo: SBO:0000247 + - chebi: "CHEBI:62684" + - metanetx.chemical: "MNXM527420" + - sbo: "SBO:0000247" - !!omap - - id: s_0890 - - name: inositol phosphomannosylinositol phosphoceramide D (C26) - - compartment: m - - formula: C62H121NO27P2 + - id: "s_0890" + - name: "inositol phosphomannosylinositol phosphoceramide D (C26)" + - compartment: "m" + - formula: "C62H121NO27P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62684 - - metanetx.chemical: MNXM527420 - - sbo: SBO:0000247 + - chebi: "CHEBI:62684" + - metanetx.chemical: "MNXM527420" + - sbo: "SBO:0000247" - !!omap - - id: s_0892 - - name: inositol-P-ceramide backbone - - compartment: g - - formula: C6H12NO10P + - id: "s_0892" + - name: "inositol-P-ceramide backbone" + - compartment: "g" + - formula: "C6H12NO10P" - annotation: !!omap - - chebi: CHEBI:60245 - - metanetx.chemical: MNXM57446 - - sbo: SBO:0000649 + - chebi: "CHEBI:60245" + - metanetx.chemical: "MNXM57446" + - sbo: "SBO:0000649" - !!omap - - id: s_0894 - - name: inositol-P-ceramide A (C24) - - compartment: er - - formula: C48H96NO11P + - id: "s_0894" + - name: "inositol-P-ceramide A (C24)" + - compartment: "er" + - formula: "C48H96NO11P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60402 - - metanetx.chemical: MNXM57476 - - sbo: SBO:0000247 + - chebi: "CHEBI:60402" + - metanetx.chemical: "MNXM57476" + - sbo: "SBO:0000247" - !!omap - - id: s_0895 - - name: inositol-P-ceramide A (C24) - - compartment: g - - formula: C48H96NO11P + - id: "s_0895" + - name: "inositol-P-ceramide A (C24)" + - compartment: "g" + - formula: "C48H96NO11P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60402 - - metanetx.chemical: MNXM57476 - - sbo: SBO:0000247 + - chebi: "CHEBI:60402" + - metanetx.chemical: "MNXM57476" + - sbo: "SBO:0000247" - !!omap - - id: s_0896 - - name: inositol-P-ceramide A (C24) - - compartment: m - - formula: C48H96NO11P + - id: "s_0896" + - name: "inositol-P-ceramide A (C24)" + - compartment: "m" + - formula: "C48H96NO11P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60402 - - metanetx.chemical: MNXM57476 - - sbo: SBO:0000247 + - chebi: "CHEBI:60402" + - metanetx.chemical: "MNXM57476" + - sbo: "SBO:0000247" - !!omap - - id: s_0897 - - name: inositol-P-ceramide A (C26) - - compartment: er - - formula: C50H100NO11P + - id: "s_0897" + - name: "inositol-P-ceramide A (C26)" + - compartment: "er" + - formula: "C50H100NO11P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60405 - - metanetx.chemical: MNXM57477 - - sbo: SBO:0000247 + - chebi: "CHEBI:60405" + - metanetx.chemical: "MNXM57477" + - sbo: "SBO:0000247" - !!omap - - id: s_0898 - - name: inositol-P-ceramide A (C26) - - compartment: g - - formula: C50H100NO11P + - id: "s_0898" + - name: "inositol-P-ceramide A (C26)" + - compartment: "g" + - formula: "C50H100NO11P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60405 - - metanetx.chemical: MNXM57477 - - sbo: SBO:0000247 + - chebi: "CHEBI:60405" + - metanetx.chemical: "MNXM57477" + - sbo: "SBO:0000247" - !!omap - - id: s_0899 - - name: inositol-P-ceramide A (C26) - - compartment: m - - formula: C50H100NO11P + - id: "s_0899" + - name: "inositol-P-ceramide A (C26)" + - compartment: "m" + - formula: "C50H100NO11P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60405 - - metanetx.chemical: MNXM57477 - - sbo: SBO:0000247 + - chebi: "CHEBI:60405" + - metanetx.chemical: "MNXM57477" + - sbo: "SBO:0000247" - !!omap - - id: s_0900 - - name: inositol-P-ceramide B (C24) - - compartment: er - - formula: C48H96NO12P + - id: "s_0900" + - name: "inositol-P-ceramide B (C24)" + - compartment: "er" + - formula: "C48H96NO12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60410 - - metanetx.chemical: MNXM527429 - - sbo: SBO:0000247 + - chebi: "CHEBI:60410" + - metanetx.chemical: "MNXM527429" + - sbo: "SBO:0000247" - !!omap - - id: s_0901 - - name: inositol-P-ceramide B (C24) - - compartment: g - - formula: C48H96NO12P + - id: "s_0901" + - name: "inositol-P-ceramide B (C24)" + - compartment: "g" + - formula: "C48H96NO12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60410 - - metanetx.chemical: MNXM527429 - - sbo: SBO:0000247 + - chebi: "CHEBI:60410" + - metanetx.chemical: "MNXM527429" + - sbo: "SBO:0000247" - !!omap - - id: s_0902 - - name: inositol-P-ceramide B (C24) - - compartment: m - - formula: C48H96NO12P + - id: "s_0902" + - name: "inositol-P-ceramide B (C24)" + - compartment: "m" + - formula: "C48H96NO12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60410 - - metanetx.chemical: MNXM527429 - - sbo: SBO:0000247 + - chebi: "CHEBI:60410" + - metanetx.chemical: "MNXM527429" + - sbo: "SBO:0000247" - !!omap - - id: s_0903 - - name: inositol-P-ceramide B (C26) - - compartment: er - - formula: C50H100NO12P + - id: "s_0903" + - name: "inositol-P-ceramide B (C26)" + - compartment: "er" + - formula: "C50H100NO12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60412 - - metanetx.chemical: MNXM527430 - - sbo: SBO:0000247 + - chebi: "CHEBI:60412" + - metanetx.chemical: "MNXM527430" + - sbo: "SBO:0000247" - !!omap - - id: s_0904 - - name: inositol-P-ceramide B (C26) - - compartment: g - - formula: C50H100NO12P + - id: "s_0904" + - name: "inositol-P-ceramide B (C26)" + - compartment: "g" + - formula: "C50H100NO12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60412 - - metanetx.chemical: MNXM527430 - - sbo: SBO:0000247 + - chebi: "CHEBI:60412" + - metanetx.chemical: "MNXM527430" + - sbo: "SBO:0000247" - !!omap - - id: s_0905 - - name: inositol-P-ceramide B (C26) - - compartment: m - - formula: C50H100NO12P + - id: "s_0905" + - name: "inositol-P-ceramide B (C26)" + - compartment: "m" + - formula: "C50H100NO12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60412 - - metanetx.chemical: MNXM527430 - - sbo: SBO:0000247 + - chebi: "CHEBI:60412" + - metanetx.chemical: "MNXM527430" + - sbo: "SBO:0000247" - !!omap - - id: s_0906 - - name: inositol-P-ceramide B' (C24) - - compartment: er - - formula: C48H96NO12P + - id: "s_0906" + - name: "inositol-P-ceramide B' (C24)" + - compartment: "er" + - formula: "C48H96NO12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60406 - - metanetx.chemical: MNXM57474 - - sbo: SBO:0000247 + - chebi: "CHEBI:60406" + - metanetx.chemical: "MNXM57474" + - sbo: "SBO:0000247" - !!omap - - id: s_0907 - - name: inositol-P-ceramide B' (C24) - - compartment: g - - formula: C48H96NO12P + - id: "s_0907" + - name: "inositol-P-ceramide B' (C24)" + - compartment: "g" + - formula: "C48H96NO12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60406 - - metanetx.chemical: MNXM57474 - - sbo: SBO:0000247 + - chebi: "CHEBI:60406" + - metanetx.chemical: "MNXM57474" + - sbo: "SBO:0000247" - !!omap - - id: s_0908 - - name: inositol-P-ceramide B' (C24) - - compartment: m - - formula: C48H96NO12P + - id: "s_0908" + - name: "inositol-P-ceramide B' (C24)" + - compartment: "m" + - formula: "C48H96NO12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60406 - - metanetx.chemical: MNXM57474 - - sbo: SBO:0000247 + - chebi: "CHEBI:60406" + - metanetx.chemical: "MNXM57474" + - sbo: "SBO:0000247" - !!omap - - id: s_0909 - - name: inositol-P-ceramide B' (C26) - - compartment: er - - formula: C50H100NO12P + - id: "s_0909" + - name: "inositol-P-ceramide B' (C26)" + - compartment: "er" + - formula: "C50H100NO12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60409 - - metanetx.chemical: MNXM57475 - - sbo: SBO:0000247 + - chebi: "CHEBI:60409" + - metanetx.chemical: "MNXM57475" + - sbo: "SBO:0000247" - !!omap - - id: s_0910 - - name: inositol-P-ceramide B' (C26) - - compartment: g - - formula: C50H100NO12P + - id: "s_0910" + - name: "inositol-P-ceramide B' (C26)" + - compartment: "g" + - formula: "C50H100NO12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60409 - - metanetx.chemical: MNXM57475 - - sbo: SBO:0000247 + - chebi: "CHEBI:60409" + - metanetx.chemical: "MNXM57475" + - sbo: "SBO:0000247" - !!omap - - id: s_0911 - - name: inositol-P-ceramide B' (C26) - - compartment: m - - formula: C50H100NO12P + - id: "s_0911" + - name: "inositol-P-ceramide B' (C26)" + - compartment: "m" + - formula: "C50H100NO12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60409 - - metanetx.chemical: MNXM57475 - - sbo: SBO:0000247 + - chebi: "CHEBI:60409" + - metanetx.chemical: "MNXM57475" + - sbo: "SBO:0000247" - !!omap - - id: s_0912 - - name: inositol-P-ceramide C (C24) - - compartment: er - - formula: C48H96NO13P + - id: "s_0912" + - name: "inositol-P-ceramide C (C24)" + - compartment: "er" + - formula: "C48H96NO13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60413 - - metanetx.chemical: MNXM527428 - - sbo: SBO:0000247 + - chebi: "CHEBI:60413" + - metanetx.chemical: "MNXM527428" + - sbo: "SBO:0000247" - !!omap - - id: s_0913 - - name: inositol-P-ceramide C (C24) - - compartment: g - - formula: C48H96NO13P + - id: "s_0913" + - name: "inositol-P-ceramide C (C24)" + - compartment: "g" + - formula: "C48H96NO13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60413 - - metanetx.chemical: MNXM527428 - - sbo: SBO:0000247 + - chebi: "CHEBI:60413" + - metanetx.chemical: "MNXM527428" + - sbo: "SBO:0000247" - !!omap - - id: s_0914 - - name: inositol-P-ceramide C (C24) - - compartment: m - - formula: C48H96NO13P + - id: "s_0914" + - name: "inositol-P-ceramide C (C24)" + - compartment: "m" + - formula: "C48H96NO13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60413 - - metanetx.chemical: MNXM527428 - - sbo: SBO:0000247 + - chebi: "CHEBI:60413" + - metanetx.chemical: "MNXM527428" + - sbo: "SBO:0000247" - !!omap - - id: s_0915 - - name: inositol-P-ceramide C (C26) - - compartment: er - - formula: C50H100NO13P + - id: "s_0915" + - name: "inositol-P-ceramide C (C26)" + - compartment: "er" + - formula: "C50H100NO13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53004 - - metanetx.chemical: MNXM57486 - - sbo: SBO:0000247 + - chebi: "CHEBI:53004" + - metanetx.chemical: "MNXM57486" + - sbo: "SBO:0000247" - !!omap - - id: s_0916 - - name: inositol-P-ceramide C (C26) - - compartment: g - - formula: C50H100NO13P + - id: "s_0916" + - name: "inositol-P-ceramide C (C26)" + - compartment: "g" + - formula: "C50H100NO13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53004 - - metanetx.chemical: MNXM57486 - - sbo: SBO:0000247 + - chebi: "CHEBI:53004" + - metanetx.chemical: "MNXM57486" + - sbo: "SBO:0000247" - !!omap - - id: s_0917 - - name: inositol-P-ceramide C (C26) - - compartment: m - - formula: C50H100NO13P + - id: "s_0917" + - name: "inositol-P-ceramide C (C26)" + - compartment: "m" + - formula: "C50H100NO13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53004 - - metanetx.chemical: MNXM57486 - - sbo: SBO:0000247 + - chebi: "CHEBI:53004" + - metanetx.chemical: "MNXM57486" + - sbo: "SBO:0000247" - !!omap - - id: s_0918 - - name: inositol-P-ceramide D (C24) - - compartment: er - - formula: C48H96NO14P + - id: "s_0918" + - name: "inositol-P-ceramide D (C24)" + - compartment: "er" + - formula: "C48H96NO14P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60414 - - metanetx.chemical: MNXM527426 - - sbo: SBO:0000247 + - chebi: "CHEBI:60414" + - metanetx.chemical: "MNXM527426" + - sbo: "SBO:0000247" - !!omap - - id: s_0919 - - name: inositol-P-ceramide D (C24) - - compartment: g - - formula: C48H96NO14P + - id: "s_0919" + - name: "inositol-P-ceramide D (C24)" + - compartment: "g" + - formula: "C48H96NO14P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60414 - - metanetx.chemical: MNXM527426 - - sbo: SBO:0000247 + - chebi: "CHEBI:60414" + - metanetx.chemical: "MNXM527426" + - sbo: "SBO:0000247" - !!omap - - id: s_0920 - - name: inositol-P-ceramide D (C24) - - compartment: m - - formula: C48H96NO14P + - id: "s_0920" + - name: "inositol-P-ceramide D (C24)" + - compartment: "m" + - formula: "C48H96NO14P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60414 - - metanetx.chemical: MNXM527426 - - sbo: SBO:0000247 + - chebi: "CHEBI:60414" + - metanetx.chemical: "MNXM527426" + - sbo: "SBO:0000247" - !!omap - - id: s_0921 - - name: inositol-P-ceramide D (C26) - - compartment: er - - formula: C50H100NO14P + - id: "s_0921" + - name: "inositol-P-ceramide D (C26)" + - compartment: "er" + - formula: "C50H100NO14P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60415 - - metanetx.chemical: MNXM527427 - - sbo: SBO:0000247 + - chebi: "CHEBI:60415" + - metanetx.chemical: "MNXM527427" + - sbo: "SBO:0000247" - !!omap - - id: s_0922 - - name: inositol-P-ceramide D (C26) - - compartment: g - - formula: C50H100NO14P + - id: "s_0922" + - name: "inositol-P-ceramide D (C26)" + - compartment: "g" + - formula: "C50H100NO14P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60415 - - metanetx.chemical: MNXM527427 - - sbo: SBO:0000247 + - chebi: "CHEBI:60415" + - metanetx.chemical: "MNXM527427" + - sbo: "SBO:0000247" - !!omap - - id: s_0923 - - name: inositol-P-ceramide D (C26) - - compartment: m - - formula: C50H100NO14P + - id: "s_0923" + - name: "inositol-P-ceramide D (C26)" + - compartment: "m" + - formula: "C50H100NO14P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60415 - - metanetx.chemical: MNXM527427 - - sbo: SBO:0000247 + - chebi: "CHEBI:60415" + - metanetx.chemical: "MNXM527427" + - sbo: "SBO:0000247" - !!omap - - id: s_0924 - - name: iron(2+) - - compartment: c - - formula: Fe + - id: "s_0924" + - name: "iron(2+)" + - compartment: "c" + - formula: "Fe" - charge: 2 - annotation: !!omap - - bigg.metabolite: fe2 - - chebi: CHEBI:29033 - - kegg.compound: C14818 - - metanetx.chemical: MNXM111 - - sbo: SBO:0000247 + - bigg.metabolite: "fe2" + - chebi: "CHEBI:29033" + - kegg.compound: "C14818" + - metanetx.chemical: "MNXM111" + - sbo: "SBO:0000247" - !!omap - - id: s_0925 - - name: iron(2+) - - compartment: e - - formula: Fe + - id: "s_0925" + - name: "iron(2+)" + - compartment: "e" + - formula: "Fe" - charge: 2 - annotation: !!omap - - bigg.metabolite: fe2 - - chebi: CHEBI:29033 - - kegg.compound: C14818 - - metanetx.chemical: MNXM111 - - sbo: SBO:0000247 + - bigg.metabolite: "fe2" + - chebi: "CHEBI:29033" + - kegg.compound: "C14818" + - metanetx.chemical: "MNXM111" + - sbo: "SBO:0000247" - !!omap - - id: s_0926 - - name: iron(2+) - - compartment: m - - formula: Fe + - id: "s_0926" + - name: "iron(2+)" + - compartment: "m" + - formula: "Fe" - charge: 2 - annotation: !!omap - - bigg.metabolite: fe2 - - chebi: CHEBI:29033 - - kegg.compound: C14818 - - metanetx.chemical: MNXM111 - - sbo: SBO:0000247 + - bigg.metabolite: "fe2" + - chebi: "CHEBI:29033" + - kegg.compound: "C14818" + - metanetx.chemical: "MNXM111" + - sbo: "SBO:0000247" - !!omap - - id: s_0927 - - name: isoamyl acetate - - compartment: c - - formula: C7H14O2 + - id: "s_0927" + - name: "isoamyl acetate" + - compartment: "c" + - formula: "C7H14O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: iamac - - chebi: CHEBI:31725 - - kegg.compound: C12296 - - metanetx.chemical: MNXM7451 - - sbo: SBO:0000247 + - bigg.metabolite: "iamac" + - chebi: "CHEBI:31725" + - kegg.compound: "C12296" + - metanetx.chemical: "MNXM7451" + - sbo: "SBO:0000247" - !!omap - - id: s_0928 - - name: isoamyl acetate - - compartment: e - - formula: C7H14O2 + - id: "s_0928" + - name: "isoamyl acetate" + - compartment: "e" + - formula: "C7H14O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: iamac - - chebi: CHEBI:31725 - - kegg.compound: C12296 - - metanetx.chemical: MNXM7451 - - sbo: SBO:0000247 + - bigg.metabolite: "iamac" + - chebi: "CHEBI:31725" + - kegg.compound: "C12296" + - metanetx.chemical: "MNXM7451" + - sbo: "SBO:0000247" - !!omap - - id: s_0929 - - name: isoamylol - - compartment: c - - formula: C5H12O + - id: "s_0929" + - name: "isoamylol" + - compartment: "c" + - formula: "C5H12O" - charge: 0 - annotation: !!omap - - bigg.metabolite: iamoh - - chebi: CHEBI:15837 - - kegg.compound: C07328 - - metanetx.chemical: MNXM1670 - - sbo: SBO:0000247 + - bigg.metabolite: "iamoh" + - chebi: "CHEBI:15837" + - kegg.compound: "C07328" + - metanetx.chemical: "MNXM1670" + - sbo: "SBO:0000247" - !!omap - - id: s_0930 - - name: isoamylol - - compartment: e - - formula: C5H12O + - id: "s_0930" + - name: "isoamylol" + - compartment: "e" + - formula: "C5H12O" - charge: 0 - annotation: !!omap - - bigg.metabolite: iamoh - - chebi: CHEBI:15837 - - kegg.compound: C07328 - - metanetx.chemical: MNXM1670 - - sbo: SBO:0000247 + - bigg.metabolite: "iamoh" + - chebi: "CHEBI:15837" + - kegg.compound: "C07328" + - metanetx.chemical: "MNXM1670" + - sbo: "SBO:0000247" - !!omap - - id: s_0931 - - name: isoamylol - - compartment: m - - formula: C5H12O + - id: "s_0931" + - name: "isoamylol" + - compartment: "m" + - formula: "C5H12O" - charge: 0 - annotation: !!omap - - bigg.metabolite: iamoh - - chebi: CHEBI:15837 - - kegg.compound: C07328 - - metanetx.chemical: MNXM1670 - - sbo: SBO:0000247 + - bigg.metabolite: "iamoh" + - chebi: "CHEBI:15837" + - kegg.compound: "C07328" + - metanetx.chemical: "MNXM1670" + - sbo: "SBO:0000247" - !!omap - - id: s_0932 - - name: isobutanol - - compartment: c - - formula: C4H10O + - id: "s_0932" + - name: "isobutanol" + - compartment: "c" + - formula: "C4H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ibutoh - - chebi: CHEBI:46645 - - kegg.compound: C14710 - - metanetx.chemical: MNXM5188 - - sbo: SBO:0000247 + - bigg.metabolite: "ibutoh" + - chebi: "CHEBI:46645" + - kegg.compound: "C14710" + - metanetx.chemical: "MNXM5188" + - sbo: "SBO:0000247" - !!omap - - id: s_0933 - - name: isobutanol - - compartment: e - - formula: C4H10O + - id: "s_0933" + - name: "isobutanol" + - compartment: "e" + - formula: "C4H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ibutoh - - chebi: CHEBI:46645 - - kegg.compound: C14710 - - metanetx.chemical: MNXM5188 - - sbo: SBO:0000247 + - bigg.metabolite: "ibutoh" + - chebi: "CHEBI:46645" + - kegg.compound: "C14710" + - metanetx.chemical: "MNXM5188" + - sbo: "SBO:0000247" - !!omap - - id: s_0934 - - name: isobutanol - - compartment: m - - formula: C4H10O + - id: "s_0934" + - name: "isobutanol" + - compartment: "m" + - formula: "C4H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ibutoh - - chebi: CHEBI:46645 - - kegg.compound: C14710 - - metanetx.chemical: MNXM5188 - - sbo: SBO:0000247 + - bigg.metabolite: "ibutoh" + - chebi: "CHEBI:46645" + - kegg.compound: "C14710" + - metanetx.chemical: "MNXM5188" + - sbo: "SBO:0000247" - !!omap - - id: s_0935 - - name: isobutyl acetate - - compartment: c - - formula: C6H12O2 + - id: "s_0935" + - name: "isobutyl acetate" + - compartment: "c" + - formula: "C6H12O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ibutac - - chebi: CHEBI:50569 - - metanetx.chemical: MNXM57835 - - sbo: SBO:0000247 + - bigg.metabolite: "ibutac" + - chebi: "CHEBI:50569" + - metanetx.chemical: "MNXM57835" + - sbo: "SBO:0000247" - !!omap - - id: s_0936 - - name: isobutyl acetate - - compartment: e - - formula: C6H12O2 + - id: "s_0936" + - name: "isobutyl acetate" + - compartment: "e" + - formula: "C6H12O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ibutac - - chebi: CHEBI:50569 - - metanetx.chemical: MNXM57835 - - sbo: SBO:0000247 + - bigg.metabolite: "ibutac" + - chebi: "CHEBI:50569" + - metanetx.chemical: "MNXM57835" + - sbo: "SBO:0000247" - !!omap - - id: s_0937 - - name: isobutyraldehyde - - compartment: c - - formula: C4H8O + - id: "s_0937" + - name: "isobutyraldehyde" + - compartment: "c" + - formula: "C4H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2mppal - - chebi: CHEBI:48943 - - metanetx.chemical: MNXM5189 - - sbo: SBO:0000247 + - bigg.metabolite: "2mppal" + - chebi: "CHEBI:48943" + - metanetx.chemical: "MNXM5189" + - sbo: "SBO:0000247" - !!omap - - id: s_0938 - - name: isobutyraldehyde - - compartment: e - - formula: C4H8O + - id: "s_0938" + - name: "isobutyraldehyde" + - compartment: "e" + - formula: "C4H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2mppal - - chebi: CHEBI:48943 - - metanetx.chemical: MNXM5189 - - sbo: SBO:0000247 + - bigg.metabolite: "2mppal" + - chebi: "CHEBI:48943" + - metanetx.chemical: "MNXM5189" + - sbo: "SBO:0000247" - !!omap - - id: s_0939 - - name: isobutyraldehyde - - compartment: m - - formula: C4H8O + - id: "s_0939" + - name: "isobutyraldehyde" + - compartment: "m" + - formula: "C4H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2mppal - - chebi: CHEBI:48943 - - metanetx.chemical: MNXM5189 - - sbo: SBO:0000247 + - bigg.metabolite: "2mppal" + - chebi: "CHEBI:48943" + - metanetx.chemical: "MNXM5189" + - sbo: "SBO:0000247" - !!omap - - id: s_0940 - - name: isocitrate - - compartment: c - - formula: C6H5O7 + - id: "s_0940" + - name: "isocitrate" + - compartment: "c" + - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: icit - - chebi: CHEBI:16087 - - kegg.compound: C00311 - - metanetx.chemical: MNXM89661 - - sbo: SBO:0000247 + - bigg.metabolite: "icit" + - chebi: "CHEBI:16087" + - kegg.compound: "C00311" + - metanetx.chemical: "MNXM89661" + - sbo: "SBO:0000247" - !!omap - - id: s_0941 - - name: isocitrate - - compartment: m - - formula: C6H5O7 + - id: "s_0941" + - name: "isocitrate" + - compartment: "m" + - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: icit - - chebi: CHEBI:16087 - - kegg.compound: C00311 - - metanetx.chemical: MNXM89661 - - sbo: SBO:0000247 + - bigg.metabolite: "icit" + - chebi: "CHEBI:16087" + - kegg.compound: "C00311" + - metanetx.chemical: "MNXM89661" + - sbo: "SBO:0000247" - !!omap - - id: s_0942 - - name: isocitrate - - compartment: p - - formula: C6H5O7 + - id: "s_0942" + - name: "isocitrate" + - compartment: "p" + - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: icit - - chebi: CHEBI:16087 - - kegg.compound: C00311 - - metanetx.chemical: MNXM89661 - - sbo: SBO:0000247 + - bigg.metabolite: "icit" + - chebi: "CHEBI:16087" + - kegg.compound: "C00311" + - metanetx.chemical: "MNXM89661" + - sbo: "SBO:0000247" - !!omap - - id: s_0943 - - name: isopentenyl diphosphate - - compartment: c - - formula: C5H9O7P2 + - id: "s_0943" + - name: "isopentenyl diphosphate" + - compartment: "c" + - formula: "C5H9O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ipdp - - chebi: CHEBI:128769 - - kegg.compound: C00129 - - metanetx.chemical: MNXM83 - - sbo: SBO:0000247 + - bigg.metabolite: "ipdp" + - chebi: "CHEBI:128769" + - kegg.compound: "C00129" + - metanetx.chemical: "MNXM83" + - sbo: "SBO:0000247" - !!omap - - id: s_0944 - - name: isopentenyl diphosphate - - compartment: lp - - formula: C5H9O7P2 + - id: "s_0944" + - name: "isopentenyl diphosphate" + - compartment: "lp" + - formula: "C5H9O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ipdp - - chebi: CHEBI:128769 - - kegg.compound: C00129 - - metanetx.chemical: MNXM83 - - sbo: SBO:0000247 + - bigg.metabolite: "ipdp" + - chebi: "CHEBI:128769" + - kegg.compound: "C00129" + - metanetx.chemical: "MNXM83" + - sbo: "SBO:0000247" - !!omap - - id: s_0945 - - name: isopentenyl diphosphate - - compartment: m - - formula: C5H9O7P2 + - id: "s_0945" + - name: "isopentenyl diphosphate" + - compartment: "m" + - formula: "C5H9O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ipdp - - chebi: CHEBI:128769 - - kegg.compound: C00129 - - metanetx.chemical: MNXM83 - - sbo: SBO:0000247 + - bigg.metabolite: "ipdp" + - chebi: "CHEBI:128769" + - kegg.compound: "C00129" + - metanetx.chemical: "MNXM83" + - sbo: "SBO:0000247" - !!omap - - id: s_0946 - - name: itaconate - - compartment: m - - formula: C5H4O4 + - id: "s_0946" + - name: "itaconate" + - compartment: "m" + - formula: "C5H4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: itacon - - chebi: CHEBI:17240 - - kegg.compound: C00490 - - metanetx.chemical: MNXM1747 - - sbo: SBO:0000247 + - bigg.metabolite: "itacon" + - chebi: "CHEBI:17240" + - kegg.compound: "C00490" + - metanetx.chemical: "MNXM1747" + - sbo: "SBO:0000247" - !!omap - - id: s_0949 - - name: itaconyl-CoA - - compartment: m - - formula: C26H35N7O19P3S + - id: "s_0949" + - name: "itaconyl-CoA" + - compartment: "m" + - formula: "C26H35N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: itaccoa - - chebi: CHEBI:57381 - - kegg.compound: C00531 - - metanetx.chemical: MNXM1671 - - sbo: SBO:0000247 + - bigg.metabolite: "itaccoa" + - chebi: "CHEBI:57381" + - kegg.compound: "C00531" + - metanetx.chemical: "MNXM1671" + - sbo: "SBO:0000247" - !!omap - - id: s_0950 - - name: ITP - - compartment: c - - formula: C10H11N4O14P3 + - id: "s_0950" + - name: "ITP" + - compartment: "c" + - formula: "C10H11N4O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: itp - - chebi: CHEBI:61402 - - kegg.compound: C00081 - - metanetx.chemical: MNXM423 - - sbo: SBO:0000247 + - bigg.metabolite: "itp" + - chebi: "CHEBI:61402" + - kegg.compound: "C00081" + - metanetx.chemical: "MNXM423" + - sbo: "SBO:0000247" - !!omap - - id: s_0951 - - name: keto-phenylpyruvate - - compartment: c - - formula: C9H7O3 + - id: "s_0951" + - name: "keto-phenylpyruvate" + - compartment: "c" + - formula: "C9H7O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: phpyr - - chebi: CHEBI:18005 - - kegg.compound: C00166 - - metanetx.chemical: MNXM162242 - - sbo: SBO:0000247 + - bigg.metabolite: "phpyr" + - chebi: "CHEBI:18005" + - kegg.compound: "C00166" + - metanetx.chemical: "MNXM162242" + - sbo: "SBO:0000247" - !!omap - - id: s_0952 - - name: L-2-amino-3-oxobutanoate - - compartment: c - - formula: C4H7NO3 + - id: "s_0952" + - name: "L-2-amino-3-oxobutanoate" + - compartment: "c" + - formula: "C4H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2aobut - - chebi: CHEBI:40673 - - kegg.compound: C03508 - - metanetx.chemical: MNXM114087 - - sbo: SBO:0000247 + - bigg.metabolite: "2aobut" + - chebi: "CHEBI:40673" + - kegg.compound: "C03508" + - metanetx.chemical: "MNXM114087" + - sbo: "SBO:0000247" - !!omap - - id: s_0953 - - name: L-2-aminoadipate - - compartment: c - - formula: C6H10NO4 + - id: "s_0953" + - name: "L-2-aminoadipate" + - compartment: "c" + - formula: "C6H10NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: L2aadp - - chebi: CHEBI:58672 - - kegg.compound: C00956 - - metanetx.chemical: MNXM268 - - sbo: SBO:0000247 + - bigg.metabolite: "L2aadp" + - chebi: "CHEBI:58672" + - kegg.compound: "C00956" + - metanetx.chemical: "MNXM268" + - sbo: "SBO:0000247" - !!omap - - id: s_0954 - - name: L-4-hydroxyglutamic semialdehyde - - compartment: m - - formula: C5H9NO4 + - id: "s_0954" + - name: "L-4-hydroxyglutamic semialdehyde" + - compartment: "m" + - formula: "C5H9NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4hglusa - - chebi: CHEBI:27809 - - kegg.compound: C05938 - - metanetx.chemical: MNXM2687 - - sbo: SBO:0000247 + - bigg.metabolite: "4hglusa" + - chebi: "CHEBI:27809" + - kegg.compound: "C05938" + - metanetx.chemical: "MNXM2687" + - sbo: "SBO:0000247" - !!omap - - id: s_0955 - - name: L-alanine - - compartment: c - - formula: C3H7NO2 + - id: "s_0955" + - name: "L-alanine" + - compartment: "c" + - formula: "C3H7NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala__L - - chebi: CHEBI:16977 - - kegg.compound: C00041 - - metanetx.chemical: MNXM32 - - sbo: SBO:0000247 + - bigg.metabolite: "ala__L" + - chebi: "CHEBI:16977" + - kegg.compound: "C00041" + - metanetx.chemical: "MNXM32" + - sbo: "SBO:0000247" - !!omap - - id: s_0956 - - name: L-alanine - - compartment: e - - formula: C3H7NO2 + - id: "s_0956" + - name: "L-alanine" + - compartment: "e" + - formula: "C3H7NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala__L - - chebi: CHEBI:16977 - - kegg.compound: C00041 - - metanetx.chemical: MNXM32 - - sbo: SBO:0000247 + - bigg.metabolite: "ala__L" + - chebi: "CHEBI:16977" + - kegg.compound: "C00041" + - metanetx.chemical: "MNXM32" + - sbo: "SBO:0000247" - !!omap - - id: s_0957 - - name: L-alanine - - compartment: m - - formula: C3H7NO2 + - id: "s_0957" + - name: "L-alanine" + - compartment: "m" + - formula: "C3H7NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala__L - - chebi: CHEBI:16977 - - kegg.compound: C00041 - - metanetx.chemical: MNXM32 - - sbo: SBO:0000247 + - bigg.metabolite: "ala__L" + - chebi: "CHEBI:16977" + - kegg.compound: "C00041" + - metanetx.chemical: "MNXM32" + - sbo: "SBO:0000247" - !!omap - - id: s_0958 - - name: L-allothreonine - - compartment: c - - formula: C4H9NO3 + - id: "s_0958" + - name: "L-allothreonine" + - compartment: "c" + - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: athr__L - - chebi: CHEBI:28718 - - kegg.compound: C05519 - - metanetx.chemical: MNXM2125 - - sbo: SBO:0000247 + - bigg.metabolite: "athr__L" + - chebi: "CHEBI:28718" + - kegg.compound: "C05519" + - metanetx.chemical: "MNXM2125" + - sbo: "SBO:0000247" - !!omap - - id: s_0959 - - name: L-allysine - - compartment: c - - formula: C6H11NO3 + - id: "s_0959" + - name: "L-allysine" + - compartment: "c" + - formula: "C6H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: L2aadp6sa - - chebi: CHEBI:17917 - - kegg.compound: C04076 - - metanetx.chemical: MNXM89905 - - sbo: SBO:0000247 + - bigg.metabolite: "L2aadp6sa" + - chebi: "CHEBI:17917" + - kegg.compound: "C04076" + - metanetx.chemical: "MNXM89905" + - sbo: "SBO:0000247" - !!omap - - id: s_0960 - - name: L-alpha-formylglycine - - compartment: c - - formula: C3H5NO3 + - id: "s_0960" + - name: "L-alpha-formylglycine" + - compartment: "c" + - formula: "C3H5NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2amsa - - chebi: CHEBI:58671 - - kegg.compound: C11822 - - metanetx.chemical: MNXM2124 - - sbo: SBO:0000247 + - bigg.metabolite: "2amsa" + - chebi: "CHEBI:58671" + - kegg.compound: "C11822" + - metanetx.chemical: "MNXM2124" + - sbo: "SBO:0000247" - !!omap - - id: s_0961 - - name: L-arabinitol - - compartment: c - - formula: C5H12O5 + - id: "s_0961" + - name: "L-arabinitol" + - compartment: "c" + - formula: "C5H12O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: abt - - chebi: CHEBI:18403 - - kegg.compound: C00532 - - metanetx.chemical: MNXM801 - - sbo: SBO:0000247 - - !!omap - - id: s_0962 - - name: L-arabinitol - - compartment: e - - formula: C5H12O5 - - charge: 0 + - bigg.metabolite: "abt" + - chebi: "CHEBI:18403" + - kegg.compound: "C00532" + - metanetx.chemical: "MNXM801" + - sbo: "SBO:0000247" + - !!omap + - id: "s_0962" + - name: "L-arabinitol" + - compartment: "e" + - formula: "C5H12O5" + - charge: 0 - annotation: !!omap - - bigg.metabolite: abt - - chebi: CHEBI:18403 - - kegg.compound: C00532 - - metanetx.chemical: MNXM801 - - sbo: SBO:0000247 - - !!omap - - id: s_0963 - - name: L-arabinose - - compartment: c - - formula: C5H10O5 - - charge: 0 + - bigg.metabolite: "abt" + - chebi: "CHEBI:18403" + - kegg.compound: "C00532" + - metanetx.chemical: "MNXM801" + - sbo: "SBO:0000247" + - !!omap + - id: "s_0963" + - name: "L-arabinose" + - compartment: "c" + - formula: "C5H10O5" + - charge: 0 - annotation: !!omap - - bigg.metabolite: arab__L - - chebi: CHEBI:30849 - - kegg.compound: C00259 - - metanetx.chemical: MNXM461 - - sbo: SBO:0000247 - - !!omap - - id: s_0964 - - name: L-arabinose - - compartment: e - - formula: C5H10O5 - - charge: 0 + - bigg.metabolite: "arab__L" + - chebi: "CHEBI:30849" + - kegg.compound: "C00259" + - metanetx.chemical: "MNXM461" + - sbo: "SBO:0000247" + - !!omap + - id: "s_0964" + - name: "L-arabinose" + - compartment: "e" + - formula: "C5H10O5" + - charge: 0 - annotation: !!omap - - bigg.metabolite: arab__L - - chebi: CHEBI:30849 - - kegg.compound: C00259 - - metanetx.chemical: MNXM461 - - sbo: SBO:0000247 - - !!omap - - id: s_0965 - - name: L-arginine - - compartment: c - - formula: C6H15N4O2 + - bigg.metabolite: "arab__L" + - chebi: "CHEBI:30849" + - kegg.compound: "C00259" + - metanetx.chemical: "MNXM461" + - sbo: "SBO:0000247" + - !!omap + - id: "s_0965" + - name: "L-arginine" + - compartment: "c" + - formula: "C6H15N4O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: arg__L - - chebi: CHEBI:32682 - - kegg.compound: C00062 - - metanetx.chemical: MNXM70 - - sbo: SBO:0000247 + - bigg.metabolite: "arg__L" + - chebi: "CHEBI:32682" + - kegg.compound: "C00062" + - metanetx.chemical: "MNXM70" + - sbo: "SBO:0000247" - !!omap - - id: s_0966 - - name: L-arginine - - compartment: e - - formula: C6H15N4O2 + - id: "s_0966" + - name: "L-arginine" + - compartment: "e" + - formula: "C6H15N4O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: arg__L - - chebi: CHEBI:32682 - - kegg.compound: C00062 - - metanetx.chemical: MNXM70 - - sbo: SBO:0000247 + - bigg.metabolite: "arg__L" + - chebi: "CHEBI:32682" + - kegg.compound: "C00062" + - metanetx.chemical: "MNXM70" + - sbo: "SBO:0000247" - !!omap - - id: s_0967 - - name: L-arginine - - compartment: m - - formula: C6H15N4O2 + - id: "s_0967" + - name: "L-arginine" + - compartment: "m" + - formula: "C6H15N4O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: arg__L - - chebi: CHEBI:32682 - - kegg.compound: C00062 - - metanetx.chemical: MNXM70 - - sbo: SBO:0000247 + - bigg.metabolite: "arg__L" + - chebi: "CHEBI:32682" + - kegg.compound: "C00062" + - metanetx.chemical: "MNXM70" + - sbo: "SBO:0000247" - !!omap - - id: s_0968 - - name: L-arginine - - compartment: v - - formula: C6H15N4O2 + - id: "s_0968" + - name: "L-arginine" + - compartment: "v" + - formula: "C6H15N4O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: arg__L - - chebi: CHEBI:32682 - - kegg.compound: C00062 - - metanetx.chemical: MNXM70 - - sbo: SBO:0000247 + - bigg.metabolite: "arg__L" + - chebi: "CHEBI:32682" + - kegg.compound: "C00062" + - metanetx.chemical: "MNXM70" + - sbo: "SBO:0000247" - !!omap - - id: s_0969 - - name: L-asparagine - - compartment: c - - formula: C4H8N2O3 + - id: "s_0969" + - name: "L-asparagine" + - compartment: "c" + - formula: "C4H8N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: asn__L - - chebi: CHEBI:17196 - - kegg.compound: C00152 - - metanetx.chemical: MNXM147 - - sbo: SBO:0000247 + - bigg.metabolite: "asn__L" + - chebi: "CHEBI:17196" + - kegg.compound: "C00152" + - metanetx.chemical: "MNXM147" + - sbo: "SBO:0000247" - !!omap - - id: s_0970 - - name: L-asparagine - - compartment: e - - formula: C4H8N2O3 + - id: "s_0970" + - name: "L-asparagine" + - compartment: "e" + - formula: "C4H8N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: asn__L - - chebi: CHEBI:17196 - - kegg.compound: C00152 - - metanetx.chemical: MNXM147 - - sbo: SBO:0000247 + - bigg.metabolite: "asn__L" + - chebi: "CHEBI:17196" + - kegg.compound: "C00152" + - metanetx.chemical: "MNXM147" + - sbo: "SBO:0000247" - !!omap - - id: s_0971 - - name: L-asparagine - - compartment: m - - formula: C4H8N2O3 + - id: "s_0971" + - name: "L-asparagine" + - compartment: "m" + - formula: "C4H8N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: asn__L - - chebi: CHEBI:17196 - - kegg.compound: C00152 - - metanetx.chemical: MNXM147 - - sbo: SBO:0000247 + - bigg.metabolite: "asn__L" + - chebi: "CHEBI:17196" + - kegg.compound: "C00152" + - metanetx.chemical: "MNXM147" + - sbo: "SBO:0000247" - !!omap - - id: s_0972 - - name: L-asparagine - - compartment: v - - formula: C4H8N2O3 + - id: "s_0972" + - name: "L-asparagine" + - compartment: "v" + - formula: "C4H8N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: asn__L - - chebi: CHEBI:17196 - - kegg.compound: C00152 - - metanetx.chemical: MNXM147 - - sbo: SBO:0000247 + - bigg.metabolite: "asn__L" + - chebi: "CHEBI:17196" + - kegg.compound: "C00152" + - metanetx.chemical: "MNXM147" + - sbo: "SBO:0000247" - !!omap - - id: s_0973 - - name: L-aspartate - - compartment: c - - formula: C4H6NO4 + - id: "s_0973" + - name: "L-aspartate" + - compartment: "c" + - formula: "C4H6NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: asp__L - - chebi: CHEBI:29991 - - kegg.compound: C00049 - - metanetx.chemical: MNXM42 - - sbo: SBO:0000247 + - bigg.metabolite: "asp__L" + - chebi: "CHEBI:29991" + - kegg.compound: "C00049" + - metanetx.chemical: "MNXM42" + - sbo: "SBO:0000247" - !!omap - - id: s_0974 - - name: L-aspartate - - compartment: e - - formula: C4H6NO4 + - id: "s_0974" + - name: "L-aspartate" + - compartment: "e" + - formula: "C4H6NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: asp__L - - chebi: CHEBI:29991 - - kegg.compound: C00049 - - metanetx.chemical: MNXM42 - - sbo: SBO:0000247 + - bigg.metabolite: "asp__L" + - chebi: "CHEBI:29991" + - kegg.compound: "C00049" + - metanetx.chemical: "MNXM42" + - sbo: "SBO:0000247" - !!omap - - id: s_0975 - - name: L-aspartate - - compartment: m - - formula: C4H6NO4 + - id: "s_0975" + - name: "L-aspartate" + - compartment: "m" + - formula: "C4H6NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: asp__L - - chebi: CHEBI:29991 - - kegg.compound: C00049 - - metanetx.chemical: MNXM42 - - sbo: SBO:0000247 + - bigg.metabolite: "asp__L" + - chebi: "CHEBI:29991" + - kegg.compound: "C00049" + - metanetx.chemical: "MNXM42" + - sbo: "SBO:0000247" - !!omap - - id: s_0976 - - name: L-aspartate - - compartment: p - - formula: C4H6NO4 + - id: "s_0976" + - name: "L-aspartate" + - compartment: "p" + - formula: "C4H6NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: asp__L - - chebi: CHEBI:29991 - - kegg.compound: C00049 - - metanetx.chemical: MNXM42 - - sbo: SBO:0000247 + - bigg.metabolite: "asp__L" + - chebi: "CHEBI:29991" + - kegg.compound: "C00049" + - metanetx.chemical: "MNXM42" + - sbo: "SBO:0000247" - !!omap - - id: s_0977 - - name: L-aspartate - - compartment: v - - formula: C4H6NO4 + - id: "s_0977" + - name: "L-aspartate" + - compartment: "v" + - formula: "C4H6NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: asp__L - - chebi: CHEBI:29991 - - kegg.compound: C00049 - - metanetx.chemical: MNXM42 - - sbo: SBO:0000247 + - bigg.metabolite: "asp__L" + - chebi: "CHEBI:29991" + - kegg.compound: "C00049" + - metanetx.chemical: "MNXM42" + - sbo: "SBO:0000247" - !!omap - - id: s_0978 - - name: L-aspartate 4-semialdehyde - - compartment: c - - formula: C4H7NO3 + - id: "s_0978" + - name: "L-aspartate 4-semialdehyde" + - compartment: "c" + - formula: "C4H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: aspsa - - chebi: CHEBI:18051 - - kegg.compound: C00441 - - metanetx.chemical: MNXM361 - - sbo: SBO:0000247 + - bigg.metabolite: "aspsa" + - chebi: "CHEBI:18051" + - kegg.compound: "C00441" + - metanetx.chemical: "MNXM361" + - sbo: "SBO:0000247" - !!omap - - id: s_0979 - - name: L-citrulline - - compartment: c - - formula: C6H13N3O3 + - id: "s_0979" + - name: "L-citrulline" + - compartment: "c" + - formula: "C6H13N3O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: citr__L - - chebi: CHEBI:16349 - - kegg.compound: C00327 - - metanetx.chemical: MNXM211 - - sbo: SBO:0000247 + - bigg.metabolite: "citr__L" + - chebi: "CHEBI:16349" + - kegg.compound: "C00327" + - metanetx.chemical: "MNXM211" + - sbo: "SBO:0000247" - !!omap - - id: s_0980 - - name: L-cystathionine - - compartment: c - - formula: C7H14N2O4S + - id: "s_0980" + - name: "L-cystathionine" + - compartment: "c" + - formula: "C7H14N2O4S" - charge: 0 - annotation: !!omap - - bigg.metabolite: cyst__L - - chebi: CHEBI:17482 - - kegg.compound: C02291 - - metanetx.chemical: MNXM319 - - sbo: SBO:0000247 + - bigg.metabolite: "cyst__L" + - chebi: "CHEBI:17482" + - kegg.compound: "C02291" + - metanetx.chemical: "MNXM319" + - sbo: "SBO:0000247" - !!omap - - id: s_0981 - - name: L-cysteine - - compartment: c - - formula: C3H7NO2S + - id: "s_0981" + - name: "L-cysteine" + - compartment: "c" + - formula: "C3H7NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: cys__L - - chebi: CHEBI:17561 - - kegg.compound: C00097 - - metanetx.chemical: MNXM55 - - sbo: SBO:0000247 + - bigg.metabolite: "cys__L" + - chebi: "CHEBI:17561" + - kegg.compound: "C00097" + - metanetx.chemical: "MNXM55" + - sbo: "SBO:0000247" - !!omap - - id: s_0982 - - name: L-cysteine - - compartment: e - - formula: C3H7NO2S + - id: "s_0982" + - name: "L-cysteine" + - compartment: "e" + - formula: "C3H7NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: cys__L - - chebi: CHEBI:17561 - - kegg.compound: C00097 - - metanetx.chemical: MNXM55 - - sbo: SBO:0000247 + - bigg.metabolite: "cys__L" + - chebi: "CHEBI:17561" + - kegg.compound: "C00097" + - metanetx.chemical: "MNXM55" + - sbo: "SBO:0000247" - !!omap - - id: s_0983 - - name: L-cysteinylglycine - - compartment: c - - formula: C5H10N2O3S + - id: "s_0983" + - name: "L-cysteinylglycine" + - compartment: "c" + - formula: "C5H10N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: cgly - - chebi: CHEBI:4047 - - kegg.compound: C01419 - - metanetx.chemical: MNXM683 - - sbo: SBO:0000247 + - bigg.metabolite: "cgly" + - chebi: "CHEBI:4047" + - kegg.compound: "C01419" + - metanetx.chemical: "MNXM683" + - sbo: "SBO:0000247" - !!omap - - id: s_0984 - - name: L-cystine - - compartment: c - - formula: C6H12N2O4S2 + - id: "s_0984" + - name: "L-cystine" + - compartment: "c" + - formula: "C6H12N2O4S2" - charge: 0 - annotation: !!omap - - bigg.metabolite: cysi__L - - chebi: CHEBI:16283 - - kegg.compound: C00491 - - metanetx.chemical: MNXM927 - - sbo: SBO:0000247 + - bigg.metabolite: "cysi__L" + - chebi: "CHEBI:16283" + - kegg.compound: "C00491" + - metanetx.chemical: "MNXM927" + - sbo: "SBO:0000247" - !!omap - - id: s_0985 - - name: L-cystine - - compartment: v - - formula: C6H12N2O4S2 + - id: "s_0985" + - name: "L-cystine" + - compartment: "v" + - formula: "C6H12N2O4S2" - charge: 0 - annotation: !!omap - - bigg.metabolite: cysi__L - - chebi: CHEBI:16283 - - kegg.compound: C00491 - - metanetx.chemical: MNXM927 - - sbo: SBO:0000247 - - !!omap - - id: s_0986 - - name: L-gamma-glutamyl phosphate - - compartment: c - - formula: C5H8NO7P + - bigg.metabolite: "cysi__L" + - chebi: "CHEBI:16283" + - kegg.compound: "C00491" + - metanetx.chemical: "MNXM927" + - sbo: "SBO:0000247" + - !!omap + - id: "s_0986" + - name: "L-gamma-glutamyl phosphate" + - compartment: "c" + - formula: "C5H8NO7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: glu5p - - chebi: CHEBI:58274 - - kegg.compound: C03287 - - metanetx.chemical: MNXM1280 - - sbo: SBO:0000247 + - bigg.metabolite: "glu5p" + - chebi: "CHEBI:58274" + - kegg.compound: "C03287" + - metanetx.chemical: "MNXM1280" + - sbo: "SBO:0000247" - !!omap - - id: s_0987 - - name: L-gamma-glutamyl-L-alanine - - compartment: c - - formula: C8H13N2O5 + - id: "s_0987" + - name: "L-gamma-glutamyl-L-alanine" + - compartment: "c" + - formula: "C8H13N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: gluala - - chebi: CHEBI:50619 - - kegg.compound: C03738 - - metanetx.chemical: MNXM59390 - - sbo: SBO:0000247 + - bigg.metabolite: "gluala" + - chebi: "CHEBI:50619" + - kegg.compound: "C03738" + - metanetx.chemical: "MNXM59390" + - sbo: "SBO:0000247" - !!omap - - id: s_0988 - - name: L-gamma-glutamyl-L-cysteine - - compartment: c - - formula: C8H13N2O5S + - id: "s_0988" + - name: "L-gamma-glutamyl-L-cysteine" + - compartment: "c" + - formula: "C8H13N2O5S" - charge: -1 - annotation: !!omap - - bigg.metabolite: glucys - - chebi: CHEBI:58173 - - kegg.compound: C00669 - - metanetx.chemical: MNXM412 - - sbo: SBO:0000247 + - bigg.metabolite: "glucys" + - chebi: "CHEBI:58173" + - kegg.compound: "C00669" + - metanetx.chemical: "MNXM412" + - sbo: "SBO:0000247" - !!omap - - id: s_0989 - - name: L-glucitol - - compartment: c - - formula: C6H14O6 + - id: "s_0989" + - name: "L-glucitol" + - compartment: "c" + - formula: "C6H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: sbt__L - - chebi: CHEBI:28789 - - kegg.compound: C01722 - - metanetx.chemical: MNXM4638 - - sbo: SBO:0000247 + - bigg.metabolite: "sbt__L" + - chebi: "CHEBI:28789" + - kegg.compound: "C01722" + - metanetx.chemical: "MNXM4638" + - sbo: "SBO:0000247" - !!omap - - id: s_0990 - - name: L-glucitol - - compartment: e - - formula: C6H14O6 + - id: "s_0990" + - name: "L-glucitol" + - compartment: "e" + - formula: "C6H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: sbt__L - - chebi: CHEBI:28789 - - kegg.compound: C01722 - - metanetx.chemical: MNXM4638 - - sbo: SBO:0000247 + - bigg.metabolite: "sbt__L" + - chebi: "CHEBI:28789" + - kegg.compound: "C01722" + - metanetx.chemical: "MNXM4638" + - sbo: "SBO:0000247" - !!omap - - id: s_0991 - - name: L-glutamate - - compartment: c - - formula: C5H8NO4 + - id: "s_0991" + - name: "L-glutamate" + - compartment: "c" + - formula: "C5H8NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: glu__L - - chebi: CHEBI:29985 - - kegg.compound: C00025 - - metanetx.chemical: MNXM89557 - - sbo: SBO:0000247 + - bigg.metabolite: "glu__L" + - chebi: "CHEBI:29985" + - kegg.compound: "C00025" + - metanetx.chemical: "MNXM89557" + - sbo: "SBO:0000247" - !!omap - - id: s_0992 - - name: L-glutamate - - compartment: e - - formula: C5H8NO4 + - id: "s_0992" + - name: "L-glutamate" + - compartment: "e" + - formula: "C5H8NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: glu__L - - chebi: CHEBI:29985 - - kegg.compound: C00025 - - metanetx.chemical: MNXM89557 - - sbo: SBO:0000247 + - bigg.metabolite: "glu__L" + - chebi: "CHEBI:29985" + - kegg.compound: "C00025" + - metanetx.chemical: "MNXM89557" + - sbo: "SBO:0000247" - !!omap - - id: s_0993 - - name: L-glutamate - - compartment: m - - formula: C5H8NO4 + - id: "s_0993" + - name: "L-glutamate" + - compartment: "m" + - formula: "C5H8NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: glu__L - - chebi: CHEBI:29985 - - kegg.compound: C00025 - - metanetx.chemical: MNXM89557 - - sbo: SBO:0000247 + - bigg.metabolite: "glu__L" + - chebi: "CHEBI:29985" + - kegg.compound: "C00025" + - metanetx.chemical: "MNXM89557" + - sbo: "SBO:0000247" - !!omap - - id: s_0994 - - name: L-glutamate - - compartment: n - - formula: C5H8NO4 + - id: "s_0994" + - name: "L-glutamate" + - compartment: "n" + - formula: "C5H8NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: glu__L - - chebi: CHEBI:29985 - - kegg.compound: C00025 - - metanetx.chemical: MNXM89557 - - sbo: SBO:0000247 + - bigg.metabolite: "glu__L" + - chebi: "CHEBI:29985" + - kegg.compound: "C00025" + - metanetx.chemical: "MNXM89557" + - sbo: "SBO:0000247" - !!omap - - id: s_0995 - - name: L-glutamate - - compartment: p - - formula: C5H8NO4 + - id: "s_0995" + - name: "L-glutamate" + - compartment: "p" + - formula: "C5H8NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: glu__L - - chebi: CHEBI:29985 - - kegg.compound: C00025 - - metanetx.chemical: MNXM89557 - - sbo: SBO:0000247 + - bigg.metabolite: "glu__L" + - chebi: "CHEBI:29985" + - kegg.compound: "C00025" + - metanetx.chemical: "MNXM89557" + - sbo: "SBO:0000247" - !!omap - - id: s_0996 - - name: L-glutamate - - compartment: v - - formula: C5H8NO4 + - id: "s_0996" + - name: "L-glutamate" + - compartment: "v" + - formula: "C5H8NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: glu__L - - chebi: CHEBI:29985 - - kegg.compound: C00025 - - metanetx.chemical: MNXM89557 - - sbo: SBO:0000247 + - bigg.metabolite: "glu__L" + - chebi: "CHEBI:29985" + - kegg.compound: "C00025" + - metanetx.chemical: "MNXM89557" + - sbo: "SBO:0000247" - !!omap - - id: s_0997 - - name: L-glutamic 5-semialdehyde - - compartment: c - - formula: C5H9NO3 + - id: "s_0997" + - name: "L-glutamic 5-semialdehyde" + - compartment: "c" + - formula: "C5H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: glu5sa - - chebi: CHEBI:17232 - - kegg.compound: C01165 - - metanetx.chemical: MNXM245 - - sbo: SBO:0000247 + - bigg.metabolite: "glu5sa" + - chebi: "CHEBI:17232" + - kegg.compound: "C01165" + - metanetx.chemical: "MNXM245" + - sbo: "SBO:0000247" - !!omap - - id: s_0999 - - name: L-glutamine - - compartment: c - - formula: C5H10N2O3 + - id: "s_0999" + - name: "L-glutamine" + - compartment: "c" + - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: gln__L - - chebi: CHEBI:18050 - - kegg.compound: C00064 - - metanetx.chemical: MNXM37 - - sbo: SBO:0000247 + - bigg.metabolite: "gln__L" + - chebi: "CHEBI:18050" + - kegg.compound: "C00064" + - metanetx.chemical: "MNXM37" + - sbo: "SBO:0000247" - !!omap - - id: s_1000 - - name: L-glutamine - - compartment: e - - formula: C5H10N2O3 + - id: "s_1000" + - name: "L-glutamine" + - compartment: "e" + - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: gln__L - - chebi: CHEBI:18050 - - kegg.compound: C00064 - - metanetx.chemical: MNXM37 - - sbo: SBO:0000247 + - bigg.metabolite: "gln__L" + - chebi: "CHEBI:18050" + - kegg.compound: "C00064" + - metanetx.chemical: "MNXM37" + - sbo: "SBO:0000247" - !!omap - - id: s_1001 - - name: L-glutamine - - compartment: n - - formula: C5H10N2O3 + - id: "s_1001" + - name: "L-glutamine" + - compartment: "n" + - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: gln__L - - chebi: CHEBI:18050 - - kegg.compound: C00064 - - metanetx.chemical: MNXM37 - - sbo: SBO:0000247 + - bigg.metabolite: "gln__L" + - chebi: "CHEBI:18050" + - kegg.compound: "C00064" + - metanetx.chemical: "MNXM37" + - sbo: "SBO:0000247" - !!omap - - id: s_1002 - - name: L-glutamine - - compartment: v - - formula: C5H10N2O3 + - id: "s_1002" + - name: "L-glutamine" + - compartment: "v" + - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: gln__L - - chebi: CHEBI:18050 - - kegg.compound: C00064 - - metanetx.chemical: MNXM37 - - sbo: SBO:0000247 + - bigg.metabolite: "gln__L" + - chebi: "CHEBI:18050" + - kegg.compound: "C00064" + - metanetx.chemical: "MNXM37" + - sbo: "SBO:0000247" - !!omap - - id: s_1003 - - name: L-glycine - - compartment: c - - formula: C2H5NO2 + - id: "s_1003" + - name: "L-glycine" + - compartment: "c" + - formula: "C2H5NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly - - chebi: CHEBI:15428 - - kegg.compound: C00037 - - metanetx.chemical: MNXM29 - - sbo: SBO:0000247 + - bigg.metabolite: "gly" + - chebi: "CHEBI:15428" + - kegg.compound: "C00037" + - metanetx.chemical: "MNXM29" + - sbo: "SBO:0000247" - !!omap - - id: s_1004 - - name: L-glycine - - compartment: e - - formula: C2H5NO2 + - id: "s_1004" + - name: "L-glycine" + - compartment: "e" + - formula: "C2H5NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly - - chebi: CHEBI:15428 - - kegg.compound: C00037 - - metanetx.chemical: MNXM29 - - sbo: SBO:0000247 + - bigg.metabolite: "gly" + - chebi: "CHEBI:15428" + - kegg.compound: "C00037" + - metanetx.chemical: "MNXM29" + - sbo: "SBO:0000247" - !!omap - - id: s_1005 - - name: L-glycine - - compartment: m - - formula: C2H5NO2 + - id: "s_1005" + - name: "L-glycine" + - compartment: "m" + - formula: "C2H5NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly - - chebi: CHEBI:15428 - - kegg.compound: C00037 - - metanetx.chemical: MNXM29 - - sbo: SBO:0000247 - - !!omap - - id: s_1006 - - name: L-histidine - - compartment: c - - formula: C6H9N3O2 - - charge: 0 + - bigg.metabolite: "gly" + - chebi: "CHEBI:15428" + - kegg.compound: "C00037" + - metanetx.chemical: "MNXM29" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1006" + - name: "L-histidine" + - compartment: "c" + - formula: "C6H9N3O2" + - charge: 0 - annotation: !!omap - - bigg.metabolite: his__L - - chebi: CHEBI:15971 - - kegg.compound: C00135 - - metanetx.chemical: MNXM134 - - sbo: SBO:0000247 - - !!omap - - id: s_1007 - - name: L-histidine - - compartment: e - - formula: C6H9N3O2 - - charge: 0 + - bigg.metabolite: "his__L" + - chebi: "CHEBI:15971" + - kegg.compound: "C00135" + - metanetx.chemical: "MNXM134" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1007" + - name: "L-histidine" + - compartment: "e" + - formula: "C6H9N3O2" + - charge: 0 - annotation: !!omap - - bigg.metabolite: his__L - - chebi: CHEBI:15971 - - kegg.compound: C00135 - - metanetx.chemical: MNXM134 - - sbo: SBO:0000247 - - !!omap - - id: s_1008 - - name: L-histidine - - compartment: m - - formula: C6H9N3O2 - - charge: 0 + - bigg.metabolite: "his__L" + - chebi: "CHEBI:15971" + - kegg.compound: "C00135" + - metanetx.chemical: "MNXM134" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1008" + - name: "L-histidine" + - compartment: "m" + - formula: "C6H9N3O2" + - charge: 0 - annotation: !!omap - - bigg.metabolite: his__L - - chebi: CHEBI:15971 - - kegg.compound: C00135 - - metanetx.chemical: MNXM134 - - sbo: SBO:0000247 - - !!omap - - id: s_1009 - - name: L-histidine - - compartment: v - - formula: C6H9N3O2 - - charge: 0 + - bigg.metabolite: "his__L" + - chebi: "CHEBI:15971" + - kegg.compound: "C00135" + - metanetx.chemical: "MNXM134" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1009" + - name: "L-histidine" + - compartment: "v" + - formula: "C6H9N3O2" + - charge: 0 - annotation: !!omap - - bigg.metabolite: his__L - - chebi: CHEBI:15971 - - kegg.compound: C00135 - - metanetx.chemical: MNXM134 - - sbo: SBO:0000247 - - !!omap - - id: s_1010 - - name: L-histidinol - - compartment: c - - formula: C6H12N3O + - bigg.metabolite: "his__L" + - chebi: "CHEBI:15971" + - kegg.compound: "C00135" + - metanetx.chemical: "MNXM134" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1010" + - name: "L-histidinol" + - compartment: "c" + - formula: "C6H12N3O" - charge: 1 - annotation: !!omap - - bigg.metabolite: histd - - chebi: CHEBI:57699 - - kegg.compound: C00860 - - metanetx.chemical: MNXM1281 - - sbo: SBO:0000247 + - bigg.metabolite: "histd" + - chebi: "CHEBI:57699" + - kegg.compound: "C00860" + - metanetx.chemical: "MNXM1281" + - sbo: "SBO:0000247" - !!omap - - id: s_1011 - - name: L-histidinol phosphate - - compartment: c - - formula: C6H11N3O4P + - id: "s_1011" + - name: "L-histidinol phosphate" + - compartment: "c" + - formula: "C6H11N3O4P" - charge: -1 - annotation: !!omap - - bigg.metabolite: hisp - - chebi: CHEBI:57980 - - kegg.compound: C01100 - - metanetx.chemical: MNXM1482 - - sbo: SBO:0000247 + - bigg.metabolite: "hisp" + - chebi: "CHEBI:57980" + - kegg.compound: "C01100" + - metanetx.chemical: "MNXM1482" + - sbo: "SBO:0000247" - !!omap - - id: s_1012 - - name: L-homocysteine - - compartment: c - - formula: C4H9NO2S + - id: "s_1012" + - name: "L-homocysteine" + - compartment: "c" + - formula: "C4H9NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: hcys__L - - chebi: CHEBI:17588 - - kegg.compound: C00155 - - metanetx.chemical: MNXM123 - - sbo: SBO:0000247 + - bigg.metabolite: "hcys__L" + - chebi: "CHEBI:17588" + - kegg.compound: "C00155" + - metanetx.chemical: "MNXM123" + - sbo: "SBO:0000247" - !!omap - - id: s_1014 - - name: L-homoserine - - compartment: c - - formula: C4H9NO3 + - id: "s_1014" + - name: "L-homoserine" + - compartment: "c" + - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: hom__L - - chebi: CHEBI:15699 - - kegg.compound: C00263 - - metanetx.chemical: MNXM353 - - sbo: SBO:0000247 + - bigg.metabolite: "hom__L" + - chebi: "CHEBI:15699" + - kegg.compound: "C00263" + - metanetx.chemical: "MNXM353" + - sbo: "SBO:0000247" - !!omap - - id: s_1015 - - name: L-homoserine - - compartment: e - - formula: C4H9NO3 + - id: "s_1015" + - name: "L-homoserine" + - compartment: "e" + - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: hom__L - - chebi: CHEBI:15699 - - kegg.compound: C00263 - - metanetx.chemical: MNXM353 - - sbo: SBO:0000247 + - bigg.metabolite: "hom__L" + - chebi: "CHEBI:15699" + - kegg.compound: "C00263" + - metanetx.chemical: "MNXM353" + - sbo: "SBO:0000247" - !!omap - - id: s_1016 - - name: L-isoleucine - - compartment: c - - formula: C6H13NO2 + - id: "s_1016" + - name: "L-isoleucine" + - compartment: "c" + - formula: "C6H13NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ile__L - - chebi: CHEBI:17191 - - kegg.compound: C00407 - - metanetx.chemical: MNXM231 - - sbo: SBO:0000247 + - bigg.metabolite: "ile__L" + - chebi: "CHEBI:17191" + - kegg.compound: "C00407" + - metanetx.chemical: "MNXM231" + - sbo: "SBO:0000247" - !!omap - - id: s_1017 - - name: L-isoleucine - - compartment: e - - formula: C6H13NO2 + - id: "s_1017" + - name: "L-isoleucine" + - compartment: "e" + - formula: "C6H13NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ile__L - - chebi: CHEBI:17191 - - kegg.compound: C00407 - - metanetx.chemical: MNXM231 - - sbo: SBO:0000247 + - bigg.metabolite: "ile__L" + - chebi: "CHEBI:17191" + - kegg.compound: "C00407" + - metanetx.chemical: "MNXM231" + - sbo: "SBO:0000247" - !!omap - - id: s_1018 - - name: L-isoleucine - - compartment: m - - formula: C6H13NO2 + - id: "s_1018" + - name: "L-isoleucine" + - compartment: "m" + - formula: "C6H13NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ile__L - - chebi: CHEBI:17191 - - kegg.compound: C00407 - - metanetx.chemical: MNXM231 - - sbo: SBO:0000247 + - bigg.metabolite: "ile__L" + - chebi: "CHEBI:17191" + - kegg.compound: "C00407" + - metanetx.chemical: "MNXM231" + - sbo: "SBO:0000247" - !!omap - - id: s_1019 - - name: L-isoleucine - - compartment: v - - formula: C6H13NO2 + - id: "s_1019" + - name: "L-isoleucine" + - compartment: "v" + - formula: "C6H13NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ile__L - - chebi: CHEBI:17191 - - kegg.compound: C00407 - - metanetx.chemical: MNXM231 - - sbo: SBO:0000247 + - bigg.metabolite: "ile__L" + - chebi: "CHEBI:17191" + - kegg.compound: "C00407" + - metanetx.chemical: "MNXM231" + - sbo: "SBO:0000247" - !!omap - - id: s_1020 - - name: L-kynurenine - - compartment: c - - formula: C10H12N2O3 + - id: "s_1020" + - name: "L-kynurenine" + - compartment: "c" + - formula: "C10H12N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: Lkynr - - chebi: CHEBI:16946 - - kegg.compound: C00328 - - metanetx.chemical: MNXM260 - - sbo: SBO:0000247 - - !!omap - - id: s_1021 - - name: L-leucine - - compartment: c - - formula: C6H13NO2 - - charge: 0 + - bigg.metabolite: "Lkynr" + - chebi: "CHEBI:16946" + - kegg.compound: "C00328" + - metanetx.chemical: "MNXM260" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1021" + - name: "L-leucine" + - compartment: "c" + - formula: "C6H13NO2" + - charge: 0 - annotation: !!omap - - bigg.metabolite: leu__L - - chebi: CHEBI:15603 - - kegg.compound: C00123 - - metanetx.chemical: MNXM140 - - sbo: SBO:0000247 - - !!omap - - id: s_1022 - - name: L-leucine - - compartment: e - - formula: C6H13NO2 - - charge: 0 + - bigg.metabolite: "leu__L" + - chebi: "CHEBI:15603" + - kegg.compound: "C00123" + - metanetx.chemical: "MNXM140" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1022" + - name: "L-leucine" + - compartment: "e" + - formula: "C6H13NO2" + - charge: 0 - annotation: !!omap - - bigg.metabolite: leu__L - - chebi: CHEBI:15603 - - kegg.compound: C00123 - - metanetx.chemical: MNXM140 - - sbo: SBO:0000247 - - !!omap - - id: s_1023 - - name: L-leucine - - compartment: m - - formula: C6H13NO2 - - charge: 0 + - bigg.metabolite: "leu__L" + - chebi: "CHEBI:15603" + - kegg.compound: "C00123" + - metanetx.chemical: "MNXM140" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1023" + - name: "L-leucine" + - compartment: "m" + - formula: "C6H13NO2" + - charge: 0 - annotation: !!omap - - bigg.metabolite: leu__L - - chebi: CHEBI:15603 - - kegg.compound: C00123 - - metanetx.chemical: MNXM140 - - sbo: SBO:0000247 - - !!omap - - id: s_1024 - - name: L-leucine - - compartment: v - - formula: C6H13NO2 - - charge: 0 + - bigg.metabolite: "leu__L" + - chebi: "CHEBI:15603" + - kegg.compound: "C00123" + - metanetx.chemical: "MNXM140" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1024" + - name: "L-leucine" + - compartment: "v" + - formula: "C6H13NO2" + - charge: 0 - annotation: !!omap - - bigg.metabolite: leu__L - - chebi: CHEBI:15603 - - kegg.compound: C00123 - - metanetx.chemical: MNXM140 - - sbo: SBO:0000247 - - !!omap - - id: s_1025 - - name: L-lysine - - compartment: c - - formula: C6H15N2O2 + - bigg.metabolite: "leu__L" + - chebi: "CHEBI:15603" + - kegg.compound: "C00123" + - metanetx.chemical: "MNXM140" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1025" + - name: "L-lysine" + - compartment: "c" + - formula: "C6H15N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: lys__L - - chebi: CHEBI:32551 - - kegg.compound: C00047 - - metanetx.chemical: MNXM78 - - sbo: SBO:0000247 + - bigg.metabolite: "lys__L" + - chebi: "CHEBI:32551" + - kegg.compound: "C00047" + - metanetx.chemical: "MNXM78" + - sbo: "SBO:0000247" - !!omap - - id: s_1026 - - name: L-lysine - - compartment: e - - formula: C6H15N2O2 + - id: "s_1026" + - name: "L-lysine" + - compartment: "e" + - formula: "C6H15N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: lys__L - - chebi: CHEBI:32551 - - kegg.compound: C00047 - - metanetx.chemical: MNXM78 - - sbo: SBO:0000247 + - bigg.metabolite: "lys__L" + - chebi: "CHEBI:32551" + - kegg.compound: "C00047" + - metanetx.chemical: "MNXM78" + - sbo: "SBO:0000247" - !!omap - - id: s_1027 - - name: L-lysine - - compartment: m - - formula: C6H15N2O2 + - id: "s_1027" + - name: "L-lysine" + - compartment: "m" + - formula: "C6H15N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: lys__L - - chebi: CHEBI:32551 - - kegg.compound: C00047 - - metanetx.chemical: MNXM78 - - sbo: SBO:0000247 + - bigg.metabolite: "lys__L" + - chebi: "CHEBI:32551" + - kegg.compound: "C00047" + - metanetx.chemical: "MNXM78" + - sbo: "SBO:0000247" - !!omap - - id: s_1028 - - name: L-lysine - - compartment: v - - formula: C6H15N2O2 + - id: "s_1028" + - name: "L-lysine" + - compartment: "v" + - formula: "C6H15N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: lys__L - - chebi: CHEBI:32551 - - kegg.compound: C00047 - - metanetx.chemical: MNXM78 - - sbo: SBO:0000247 + - bigg.metabolite: "lys__L" + - chebi: "CHEBI:32551" + - kegg.compound: "C00047" + - metanetx.chemical: "MNXM78" + - sbo: "SBO:0000247" - !!omap - - id: s_1029 - - name: L-methionine - - compartment: c - - formula: C5H11NO2S + - id: "s_1029" + - name: "L-methionine" + - compartment: "c" + - formula: "C5H11NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: met__L - - chebi: CHEBI:16643 - - kegg.compound: C00073 - - metanetx.chemical: MNXM61 - - sbo: SBO:0000247 + - bigg.metabolite: "met__L" + - chebi: "CHEBI:16643" + - kegg.compound: "C00073" + - metanetx.chemical: "MNXM61" + - sbo: "SBO:0000247" - !!omap - - id: s_1030 - - name: L-methionine - - compartment: e - - formula: C5H11NO2S + - id: "s_1030" + - name: "L-methionine" + - compartment: "e" + - formula: "C5H11NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: met__L - - chebi: CHEBI:16643 - - kegg.compound: C00073 - - metanetx.chemical: MNXM61 - - sbo: SBO:0000247 + - bigg.metabolite: "met__L" + - chebi: "CHEBI:16643" + - kegg.compound: "C00073" + - metanetx.chemical: "MNXM61" + - sbo: "SBO:0000247" - !!omap - - id: s_1031 - - name: L-methionine - - compartment: m - - formula: C5H11NO2S + - id: "s_1031" + - name: "L-methionine" + - compartment: "m" + - formula: "C5H11NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: met__L - - chebi: CHEBI:16643 - - kegg.compound: C00073 - - metanetx.chemical: MNXM61 - - sbo: SBO:0000247 + - bigg.metabolite: "met__L" + - chebi: "CHEBI:16643" + - kegg.compound: "C00073" + - metanetx.chemical: "MNXM61" + - sbo: "SBO:0000247" - !!omap - - id: s_1032 - - name: L-phenylalanine - - compartment: c - - formula: C9H11NO2 + - id: "s_1032" + - name: "L-phenylalanine" + - compartment: "c" + - formula: "C9H11NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: phe__L - - chebi: CHEBI:17295 - - kegg.compound: C00079 - - metanetx.chemical: MNXM97 - - sbo: SBO:0000247 + - bigg.metabolite: "phe__L" + - chebi: "CHEBI:17295" + - kegg.compound: "C00079" + - metanetx.chemical: "MNXM97" + - sbo: "SBO:0000247" - !!omap - - id: s_1033 - - name: L-phenylalanine - - compartment: e - - formula: C9H11NO2 + - id: "s_1033" + - name: "L-phenylalanine" + - compartment: "e" + - formula: "C9H11NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: phe__L - - chebi: CHEBI:17295 - - kegg.compound: C00079 - - metanetx.chemical: MNXM97 - - sbo: SBO:0000247 + - bigg.metabolite: "phe__L" + - chebi: "CHEBI:17295" + - kegg.compound: "C00079" + - metanetx.chemical: "MNXM97" + - sbo: "SBO:0000247" - !!omap - - id: s_1034 - - name: L-phenylalanine - - compartment: m - - formula: C9H11NO2 + - id: "s_1034" + - name: "L-phenylalanine" + - compartment: "m" + - formula: "C9H11NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: phe__L - - chebi: CHEBI:17295 - - kegg.compound: C00079 - - metanetx.chemical: MNXM97 - - sbo: SBO:0000247 + - bigg.metabolite: "phe__L" + - chebi: "CHEBI:17295" + - kegg.compound: "C00079" + - metanetx.chemical: "MNXM97" + - sbo: "SBO:0000247" - !!omap - - id: s_1035 - - name: L-proline - - compartment: c - - formula: C5H9NO2 + - id: "s_1035" + - name: "L-proline" + - compartment: "c" + - formula: "C5H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pro__L - - chebi: CHEBI:17203 - - kegg.compound: C00148 - - metanetx.chemical: MNXM114 - - sbo: SBO:0000247 + - bigg.metabolite: "pro__L" + - chebi: "CHEBI:17203" + - kegg.compound: "C00148" + - metanetx.chemical: "MNXM114" + - sbo: "SBO:0000247" - !!omap - - id: s_1036 - - name: L-proline - - compartment: e - - formula: C5H9NO2 + - id: "s_1036" + - name: "L-proline" + - compartment: "e" + - formula: "C5H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pro__L - - chebi: CHEBI:17203 - - kegg.compound: C00148 - - metanetx.chemical: MNXM114 - - sbo: SBO:0000247 - - !!omap - - id: s_1037 - - name: L-proline - - compartment: m - - formula: C5H9NO2 - - charge: 0 + - bigg.metabolite: "pro__L" + - chebi: "CHEBI:17203" + - kegg.compound: "C00148" + - metanetx.chemical: "MNXM114" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1037" + - name: "L-proline" + - compartment: "m" + - formula: "C5H9NO2" + - charge: 0 - annotation: !!omap - - bigg.metabolite: pro__L - - chebi: CHEBI:17203 - - kegg.compound: C00148 - - metanetx.chemical: MNXM114 - - sbo: SBO:0000247 - - !!omap - - id: s_1038 - - name: L-saccharopine - - compartment: c - - formula: C11H19N2O6 + - bigg.metabolite: "pro__L" + - chebi: "CHEBI:17203" + - kegg.compound: "C00148" + - metanetx.chemical: "MNXM114" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1038" + - name: "L-saccharopine" + - compartment: "c" + - formula: "C11H19N2O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: saccrp__L - - chebi: CHEBI:57951 - - kegg.compound: C00449 - - metanetx.chemical: MNXM384 - - sbo: SBO:0000247 + - bigg.metabolite: "saccrp__L" + - chebi: "CHEBI:57951" + - kegg.compound: "C00449" + - metanetx.chemical: "MNXM384" + - sbo: "SBO:0000247" - !!omap - - id: s_1039 - - name: L-serine - - compartment: c - - formula: C3H7NO3 + - id: "s_1039" + - name: "L-serine" + - compartment: "c" + - formula: "C3H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ser__L - - chebi: CHEBI:17115 - - kegg.compound: C00065 - - metanetx.chemical: MNXM53 - - sbo: SBO:0000247 + - bigg.metabolite: "ser__L" + - chebi: "CHEBI:17115" + - kegg.compound: "C00065" + - metanetx.chemical: "MNXM53" + - sbo: "SBO:0000247" - !!omap - - id: s_1040 - - name: L-serine - - compartment: er - - formula: C3H7NO3 + - id: "s_1040" + - name: "L-serine" + - compartment: "er" + - formula: "C3H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ser__L - - chebi: CHEBI:17115 - - kegg.compound: C00065 - - metanetx.chemical: MNXM53 - - sbo: SBO:0000247 + - bigg.metabolite: "ser__L" + - chebi: "CHEBI:17115" + - kegg.compound: "C00065" + - metanetx.chemical: "MNXM53" + - sbo: "SBO:0000247" - !!omap - - id: s_1041 - - name: L-serine - - compartment: e - - formula: C3H7NO3 + - id: "s_1041" + - name: "L-serine" + - compartment: "e" + - formula: "C3H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ser__L - - chebi: CHEBI:17115 - - kegg.compound: C00065 - - metanetx.chemical: MNXM53 - - sbo: SBO:0000247 + - bigg.metabolite: "ser__L" + - chebi: "CHEBI:17115" + - kegg.compound: "C00065" + - metanetx.chemical: "MNXM53" + - sbo: "SBO:0000247" - !!omap - - id: s_1042 - - name: L-serine - - compartment: m - - formula: C3H7NO3 + - id: "s_1042" + - name: "L-serine" + - compartment: "m" + - formula: "C3H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ser__L - - chebi: CHEBI:17115 - - kegg.compound: C00065 - - metanetx.chemical: MNXM53 - - sbo: SBO:0000247 + - bigg.metabolite: "ser__L" + - chebi: "CHEBI:17115" + - kegg.compound: "C00065" + - metanetx.chemical: "MNXM53" + - sbo: "SBO:0000247" - !!omap - - id: s_1043 - - name: L-sorbose - - compartment: c - - formula: C6H12O6 + - id: "s_1043" + - name: "L-sorbose" + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: srb__L - - chebi: CHEBI:17266 - - kegg.compound: C00247 - - metanetx.chemical: MNXM588 - - sbo: SBO:0000247 + - bigg.metabolite: "srb__L" + - chebi: "CHEBI:17266" + - kegg.compound: "C00247" + - metanetx.chemical: "MNXM588" + - sbo: "SBO:0000247" - !!omap - - id: s_1044 - - name: L-sorbose - - compartment: e - - formula: C6H12O6 + - id: "s_1044" + - name: "L-sorbose" + - compartment: "e" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: srb__L - - chebi: CHEBI:17266 - - kegg.compound: C00247 - - metanetx.chemical: MNXM588 - - sbo: SBO:0000247 + - bigg.metabolite: "srb__L" + - chebi: "CHEBI:17266" + - kegg.compound: "C00247" + - metanetx.chemical: "MNXM588" + - sbo: "SBO:0000247" - !!omap - - id: s_1045 - - name: L-threonine - - compartment: c - - formula: C4H9NO3 + - id: "s_1045" + - name: "L-threonine" + - compartment: "c" + - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: thr__L - - chebi: CHEBI:16857 - - kegg.compound: C00188 - - metanetx.chemical: MNXM142 - - sbo: SBO:0000247 + - bigg.metabolite: "thr__L" + - chebi: "CHEBI:16857" + - kegg.compound: "C00188" + - metanetx.chemical: "MNXM142" + - sbo: "SBO:0000247" - !!omap - - id: s_1046 - - name: L-threonine - - compartment: e - - formula: C4H9NO3 + - id: "s_1046" + - name: "L-threonine" + - compartment: "e" + - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: thr__L - - chebi: CHEBI:16857 - - kegg.compound: C00188 - - metanetx.chemical: MNXM142 - - sbo: SBO:0000247 - - !!omap - - id: s_1047 - - name: L-threonine - - compartment: m - - formula: C4H9NO3 + - bigg.metabolite: "thr__L" + - chebi: "CHEBI:16857" + - kegg.compound: "C00188" + - metanetx.chemical: "MNXM142" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1047" + - name: "L-threonine" + - compartment: "m" + - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: thr__L - - chebi: CHEBI:16857 - - kegg.compound: C00188 - - metanetx.chemical: MNXM142 - - sbo: SBO:0000247 - - !!omap - - id: s_1048 - - name: L-tryptophan - - compartment: c - - formula: C11H12N2O2 + - bigg.metabolite: "thr__L" + - chebi: "CHEBI:16857" + - kegg.compound: "C00188" + - metanetx.chemical: "MNXM142" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1048" + - name: "L-tryptophan" + - compartment: "c" + - formula: "C11H12N2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: trp__L - - chebi: CHEBI:16828 - - kegg.compound: C00078 - - metanetx.chemical: MNXM94 - - sbo: SBO:0000247 - - !!omap - - id: s_1049 - - name: L-tryptophan - - compartment: e - - formula: C11H12N2O2 + - bigg.metabolite: "trp__L" + - chebi: "CHEBI:16828" + - kegg.compound: "C00078" + - metanetx.chemical: "MNXM94" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1049" + - name: "L-tryptophan" + - compartment: "e" + - formula: "C11H12N2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: trp__L - - chebi: CHEBI:16828 - - kegg.compound: C00078 - - metanetx.chemical: MNXM94 - - sbo: SBO:0000247 - - !!omap - - id: s_1050 - - name: L-tryptophan - - compartment: m - - formula: C11H12N2O2 + - bigg.metabolite: "trp__L" + - chebi: "CHEBI:16828" + - kegg.compound: "C00078" + - metanetx.chemical: "MNXM94" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1050" + - name: "L-tryptophan" + - compartment: "m" + - formula: "C11H12N2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: trp__L - - chebi: CHEBI:16828 - - kegg.compound: C00078 - - metanetx.chemical: MNXM94 - - sbo: SBO:0000247 - - !!omap - - id: s_1051 - - name: L-tyrosine - - compartment: c - - formula: C9H11NO3 + - bigg.metabolite: "trp__L" + - chebi: "CHEBI:16828" + - kegg.compound: "C00078" + - metanetx.chemical: "MNXM94" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1051" + - name: "L-tyrosine" + - compartment: "c" + - formula: "C9H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: tyr__L - - chebi: CHEBI:17895 - - kegg.compound: C00082 - - metanetx.chemical: MNXM76 - - sbo: SBO:0000247 - - !!omap - - id: s_1052 - - name: L-tyrosine - - compartment: e - - formula: C9H11NO3 + - bigg.metabolite: "tyr__L" + - chebi: "CHEBI:17895" + - kegg.compound: "C00082" + - metanetx.chemical: "MNXM76" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1052" + - name: "L-tyrosine" + - compartment: "e" + - formula: "C9H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: tyr__L - - chebi: CHEBI:17895 - - kegg.compound: C00082 - - metanetx.chemical: MNXM76 - - sbo: SBO:0000247 - - !!omap - - id: s_1053 - - name: L-tyrosine - - compartment: m - - formula: C9H11NO3 - - charge: 0 + - bigg.metabolite: "tyr__L" + - chebi: "CHEBI:17895" + - kegg.compound: "C00082" + - metanetx.chemical: "MNXM76" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1053" + - name: "L-tyrosine" + - compartment: "m" + - formula: "C9H11NO3" + - charge: 0 - annotation: !!omap - - bigg.metabolite: tyr__L - - chebi: CHEBI:17895 - - kegg.compound: C00082 - - metanetx.chemical: MNXM76 - - sbo: SBO:0000247 - - !!omap - - id: s_1054 - - name: L-tyrosine - - compartment: p - - formula: C9H11NO3 - - charge: 0 + - bigg.metabolite: "tyr__L" + - chebi: "CHEBI:17895" + - kegg.compound: "C00082" + - metanetx.chemical: "MNXM76" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1054" + - name: "L-tyrosine" + - compartment: "p" + - formula: "C9H11NO3" + - charge: 0 - annotation: !!omap - - bigg.metabolite: tyr__L - - chebi: CHEBI:17895 - - kegg.compound: C00082 - - metanetx.chemical: MNXM76 - - sbo: SBO:0000247 - - !!omap - - id: s_1055 - - name: L-tyrosine - - compartment: v - - formula: C9H11NO3 - - charge: 0 + - bigg.metabolite: "tyr__L" + - chebi: "CHEBI:17895" + - kegg.compound: "C00082" + - metanetx.chemical: "MNXM76" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1055" + - name: "L-tyrosine" + - compartment: "v" + - formula: "C9H11NO3" + - charge: 0 - annotation: !!omap - - bigg.metabolite: tyr__L - - chebi: CHEBI:17895 - - kegg.compound: C00082 - - metanetx.chemical: MNXM76 - - sbo: SBO:0000247 - - !!omap - - id: s_1056 - - name: L-valine - - compartment: c - - formula: C5H11NO2 - - charge: 0 + - bigg.metabolite: "tyr__L" + - chebi: "CHEBI:17895" + - kegg.compound: "C00082" + - metanetx.chemical: "MNXM76" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1056" + - name: "L-valine" + - compartment: "c" + - formula: "C5H11NO2" + - charge: 0 - annotation: !!omap - - bigg.metabolite: val__L - - chebi: CHEBI:16414 - - kegg.compound: C00183 - - metanetx.chemical: MNXM199 - - sbo: SBO:0000247 - - !!omap - - id: s_1057 - - name: L-valine - - compartment: e - - formula: C5H11NO2 - - charge: 0 + - bigg.metabolite: "val__L" + - chebi: "CHEBI:16414" + - kegg.compound: "C00183" + - metanetx.chemical: "MNXM199" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1057" + - name: "L-valine" + - compartment: "e" + - formula: "C5H11NO2" + - charge: 0 - annotation: !!omap - - bigg.metabolite: val__L - - chebi: CHEBI:16414 - - kegg.compound: C00183 - - metanetx.chemical: MNXM199 - - sbo: SBO:0000247 - - !!omap - - id: s_1058 - - name: L-valine - - compartment: m - - formula: C5H11NO2 - - charge: 0 + - bigg.metabolite: "val__L" + - chebi: "CHEBI:16414" + - kegg.compound: "C00183" + - metanetx.chemical: "MNXM199" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1058" + - name: "L-valine" + - compartment: "m" + - formula: "C5H11NO2" + - charge: 0 - annotation: !!omap - - bigg.metabolite: val__L - - chebi: CHEBI:16414 - - kegg.compound: C00183 - - metanetx.chemical: MNXM199 - - sbo: SBO:0000247 - - !!omap - - id: s_1059 - - name: lanosterol - - compartment: c - - formula: C30H50O - - charge: 0 + - bigg.metabolite: "val__L" + - chebi: "CHEBI:16414" + - kegg.compound: "C00183" + - metanetx.chemical: "MNXM199" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1059" + - name: "lanosterol" + - compartment: "c" + - formula: "C30H50O" + - charge: 0 - annotation: !!omap - - bigg.metabolite: lanost - - chebi: CHEBI:16521 - - kegg.compound: C01724 - - metanetx.chemical: MNXM482 - - sbo: SBO:0000247 - - !!omap - - id: s_1061 - - name: lanosterol - - compartment: e - - formula: C30H50O - - charge: 0 + - bigg.metabolite: "lanost" + - chebi: "CHEBI:16521" + - kegg.compound: "C01724" + - metanetx.chemical: "MNXM482" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1061" + - name: "lanosterol" + - compartment: "e" + - formula: "C30H50O" + - charge: 0 - annotation: !!omap - - bigg.metabolite: lanost - - chebi: CHEBI:16521 - - kegg.compound: C01724 - - metanetx.chemical: MNXM482 - - sbo: SBO:0000247 - - !!omap - - id: s_1065 - - name: laurate - - compartment: c - - formula: C12H23O2 + - bigg.metabolite: "lanost" + - chebi: "CHEBI:16521" + - kegg.compound: "C01724" + - metanetx.chemical: "MNXM482" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1065" + - name: "laurate" + - compartment: "c" + - formula: "C12H23O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ddca - - chebi: CHEBI:18262 - - kegg.compound: C02679 - - metanetx.chemical: MNXM402 - - sbo: SBO:0000247 + - bigg.metabolite: "ddca" + - chebi: "CHEBI:18262" + - kegg.compound: "C02679" + - metanetx.chemical: "MNXM402" + - sbo: "SBO:0000247" - !!omap - - id: s_1067 - - name: laurate - - compartment: e - - formula: C12H23O2 + - id: "s_1067" + - name: "laurate" + - compartment: "e" + - formula: "C12H23O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ddca - - chebi: CHEBI:18262 - - kegg.compound: C02679 - - metanetx.chemical: MNXM402 - - sbo: SBO:0000247 + - bigg.metabolite: "ddca" + - chebi: "CHEBI:18262" + - kegg.compound: "C02679" + - metanetx.chemical: "MNXM402" + - sbo: "SBO:0000247" - !!omap - - id: s_1070 - - name: laurate - - compartment: p - - formula: C12H23O2 + - id: "s_1070" + - name: "laurate" + - compartment: "p" + - formula: "C12H23O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ddca - - chebi: CHEBI:18262 - - kegg.compound: C02679 - - metanetx.chemical: MNXM402 - - sbo: SBO:0000247 + - bigg.metabolite: "ddca" + - chebi: "CHEBI:18262" + - kegg.compound: "C02679" + - metanetx.chemical: "MNXM402" + - sbo: "SBO:0000247" - !!omap - - id: s_1073 - - name: lauroyl-CoA - - compartment: c - - formula: C33H54N7O17P3S + - id: "s_1073" + - name: "lauroyl-CoA" + - compartment: "c" + - formula: "C33H54N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ddcacoa - - chebi: CHEBI:57375 - - kegg.compound: C01832 - - metanetx.chemical: MNXM363 - - sbo: SBO:0000247 + - bigg.metabolite: "ddcacoa" + - chebi: "CHEBI:57375" + - kegg.compound: "C01832" + - metanetx.chemical: "MNXM363" + - sbo: "SBO:0000247" - !!omap - - id: s_1076 - - name: lauroyl-CoA - - compartment: p - - formula: C33H54N7O17P3S + - id: "s_1076" + - name: "lauroyl-CoA" + - compartment: "p" + - formula: "C33H54N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ddcacoa - - chebi: CHEBI:57375 - - kegg.compound: C01832 - - metanetx.chemical: MNXM363 - - sbo: SBO:0000247 + - bigg.metabolite: "ddcacoa" + - chebi: "CHEBI:57375" + - kegg.compound: "C01832" + - metanetx.chemical: "MNXM363" + - sbo: "SBO:0000247" - !!omap - - id: s_1077 - - name: Leu-tRNA(Leu) - - compartment: c - - formula: C6H13NOR + - id: "s_1077" + - name: "Leu-tRNA(Leu)" + - compartment: "c" + - formula: "C6H13NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: leutrna - - chebi: CHEBI:16624 - - kegg.compound: C02047 - - metanetx.chemical: MNXM697 - - sbo: SBO:0000247 + - bigg.metabolite: "leutrna" + - chebi: "CHEBI:16624" + - kegg.compound: "C02047" + - metanetx.chemical: "MNXM697" + - sbo: "SBO:0000247" - !!omap - - id: s_1078 - - name: Leu-tRNA(Leu) - - compartment: m - - formula: C6H13NOR + - id: "s_1078" + - name: "Leu-tRNA(Leu)" + - compartment: "m" + - formula: "C6H13NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: leutrna - - chebi: CHEBI:16624 - - kegg.compound: C02047 - - metanetx.chemical: MNXM697 - - sbo: SBO:0000247 + - bigg.metabolite: "leutrna" + - chebi: "CHEBI:16624" + - kegg.compound: "C02047" + - metanetx.chemical: "MNXM697" + - sbo: "SBO:0000247" - !!omap - - id: s_1079 - - name: leukotriene A4 - - compartment: c - - formula: C20H29O3 + - id: "s_1079" + - name: "leukotriene A4" + - compartment: "c" + - formula: "C20H29O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: leuktrA4 - - chebi: CHEBI:57463 - - kegg.compound: C00909 - - metanetx.chemical: MNXM462 - - sbo: SBO:0000247 + - bigg.metabolite: "leuktrA4" + - chebi: "CHEBI:57463" + - kegg.compound: "C00909" + - metanetx.chemical: "MNXM462" + - sbo: "SBO:0000247" - !!omap - - id: s_1080 - - name: leukotriene A4 - - compartment: n - - formula: C20H29O3 + - id: "s_1080" + - name: "leukotriene A4" + - compartment: "n" + - formula: "C20H29O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: leuktrA4 - - chebi: CHEBI:57463 - - kegg.compound: C00909 - - metanetx.chemical: MNXM462 - - sbo: SBO:0000247 + - bigg.metabolite: "leuktrA4" + - chebi: "CHEBI:57463" + - kegg.compound: "C00909" + - metanetx.chemical: "MNXM462" + - sbo: "SBO:0000247" - !!omap - - id: s_1081 - - name: leukotriene B4 - - compartment: c - - formula: C20H31O4 + - id: "s_1081" + - name: "leukotriene B4" + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: leuktrB4 - - chebi: CHEBI:57461 - - kegg.compound: C02165 - - metanetx.chemical: MNXM637 - - sbo: SBO:0000247 + - bigg.metabolite: "leuktrB4" + - chebi: "CHEBI:57461" + - kegg.compound: "C02165" + - metanetx.chemical: "MNXM637" + - sbo: "SBO:0000247" - !!omap - - id: s_1082 - - name: leukotriene B4 - - compartment: n - - formula: C20H31O4 + - id: "s_1082" + - name: "leukotriene B4" + - compartment: "n" + - formula: "C20H31O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: leuktrB4 - - chebi: CHEBI:57461 - - kegg.compound: C02165 - - metanetx.chemical: MNXM637 - - sbo: SBO:0000247 + - bigg.metabolite: "leuktrB4" + - chebi: "CHEBI:57461" + - kegg.compound: "C02165" + - metanetx.chemical: "MNXM637" + - sbo: "SBO:0000247" - !!omap - - id: s_1085 - - name: lignoceric acid - - compartment: er - - formula: C24H47O2 + - id: "s_1085" + - name: "lignoceric acid" + - compartment: "er" + - formula: "C24H47O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: lgnc - - chebi: CHEBI:31014 - - kegg.compound: C08320 - - metanetx.chemical: MNXM3297 - - sbo: SBO:0000247 + - bigg.metabolite: "lgnc" + - chebi: "CHEBI:31014" + - kegg.compound: "C08320" + - metanetx.chemical: "MNXM3297" + - sbo: "SBO:0000247" - !!omap - - id: s_1096 - - name: lipid - - compartment: c + - id: "s_1096" + - name: "lipid" + - compartment: "c" + - formula: "" - charge: 0 - annotation: !!omap - - chebi: CHEBI:18059 - - kegg.compound: C01356 - - metanetx.chemical: MNXM12117 - - sbo: SBO:0000649 + - chebi: "CHEBI:18059" + - kegg.compound: "C01356" + - metanetx.chemical: "MNXM12117" + - sbo: "SBO:0000649" - !!omap - - id: s_1097 - - name: lipoamide - - compartment: m - - formula: C8H15NOS2 + - id: "s_1097" + - name: "lipoamide" + - compartment: "m" + - formula: "C8H15NOS2" - charge: 0 - annotation: !!omap - - bigg.metabolite: lpam - - chebi: CHEBI:17460 - - kegg.compound: C00248 - - metanetx.chemical: MNXM1024 - - sbo: SBO:0000247 + - bigg.metabolite: "lpam" + - chebi: "CHEBI:17460" + - kegg.compound: "C00248" + - metanetx.chemical: "MNXM1024" + - sbo: "SBO:0000247" - !!omap - - id: s_1098 - - name: lipoylprotein - - compartment: m - - formula: C8H14NOS2R + - id: "s_1098" + - name: "lipoylprotein" + - compartment: "m" + - formula: "C8H14NOS2R" - charge: 0 - annotation: !!omap - - bigg.metabolite: lpro - - chebi: CHEBI:15804 - - kegg.compound: C02051 - - metanetx.chemical: MNXM998 - - sbo: SBO:0000247 + - bigg.metabolite: "lpro" + - chebi: "CHEBI:15804" + - kegg.compound: "C02051" + - metanetx.chemical: "MNXM998" + - sbo: "SBO:0000247" - !!omap - - id: s_1099 - - name: Lys-tRNA(Lys) - - compartment: c - - formula: C6H15N2OR + - id: "s_1099" + - name: "Lys-tRNA(Lys)" + - compartment: "c" + - formula: "C6H15N2OR" - charge: 2 - annotation: !!omap - - bigg.metabolite: lystrna - - chebi: CHEBI:16047 - - kegg.compound: C01931 - - metanetx.chemical: MNXM89922 - - sbo: SBO:0000247 + - bigg.metabolite: "lystrna" + - chebi: "CHEBI:16047" + - kegg.compound: "C01931" + - metanetx.chemical: "MNXM89922" + - sbo: "SBO:0000247" - !!omap - - id: s_1100 - - name: Lys-tRNA(Lys) - - compartment: m - - formula: C6H15N2OR + - id: "s_1100" + - name: "Lys-tRNA(Lys)" + - compartment: "m" + - formula: "C6H15N2OR" - charge: 2 - annotation: !!omap - - bigg.metabolite: lystrna - - chebi: CHEBI:16047 - - kegg.compound: C01931 - - metanetx.chemical: MNXM89922 - - sbo: SBO:0000247 + - bigg.metabolite: "lystrna" + - chebi: "CHEBI:16047" + - kegg.compound: "C01931" + - metanetx.chemical: "MNXM89922" + - sbo: "SBO:0000247" - !!omap - - id: s_1101 - - name: malonyl-CoA - - compartment: c - - formula: C24H33N7O19P3S + - id: "s_1101" + - name: "malonyl-CoA" + - compartment: "c" + - formula: "C24H33N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: malcoa - - chebi: CHEBI:57384 - - kegg.compound: C00083 - - metanetx.chemical: MNXM40 - - sbo: SBO:0000247 + - bigg.metabolite: "malcoa" + - chebi: "CHEBI:57384" + - kegg.compound: "C00083" + - metanetx.chemical: "MNXM40" + - sbo: "SBO:0000247" - !!omap - - id: s_1104 - - name: malonyl-CoA - - compartment: m - - formula: C24H33N7O19P3S + - id: "s_1104" + - name: "malonyl-CoA" + - compartment: "m" + - formula: "C24H33N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: malcoa - - chebi: CHEBI:57384 - - kegg.compound: C00083 - - metanetx.chemical: MNXM40 - - sbo: SBO:0000247 + - bigg.metabolite: "malcoa" + - chebi: "CHEBI:57384" + - kegg.compound: "C00083" + - metanetx.chemical: "MNXM40" + - sbo: "SBO:0000247" - !!omap - - id: s_1105 - - name: maltose - - compartment: c - - formula: C12H22O11 + - id: "s_1105" + - name: "maltose" + - compartment: "c" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: malt - - chebi: CHEBI:17306 - - kegg.compound: C00208 - - metanetx.chemical: MNXM165 - - sbo: SBO:0000247 + - bigg.metabolite: "malt" + - chebi: "CHEBI:17306" + - kegg.compound: "C00208" + - metanetx.chemical: "MNXM165" + - sbo: "SBO:0000247" - !!omap - - id: s_1106 - - name: maltose - - compartment: e - - formula: C12H22O11 + - id: "s_1106" + - name: "maltose" + - compartment: "e" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: malt - - chebi: CHEBI:17306 - - kegg.compound: C00208 - - metanetx.chemical: MNXM165 - - sbo: SBO:0000247 + - bigg.metabolite: "malt" + - chebi: "CHEBI:17306" + - kegg.compound: "C00208" + - metanetx.chemical: "MNXM165" + - sbo: "SBO:0000247" - !!omap - - id: s_1107 - - name: mannan - - compartment: c - - formula: C6H10O5 + - id: "s_1107" + - name: "mannan" + - compartment: "c" + - formula: "C6H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: mannan - - chebi: CHEBI:28808 - - kegg.compound: C00464 - - metanetx.chemical: MNXM2020 - - sbo: SBO:0000247 + - bigg.metabolite: "mannan" + - chebi: "CHEBI:28808" + - kegg.compound: "C00464" + - metanetx.chemical: "MNXM2020" + - sbo: "SBO:0000247" - !!omap - - id: s_1108 - - name: mannan - - compartment: er - - formula: C6H10O5 + - id: "s_1108" + - name: "mannan" + - compartment: "er" + - formula: "C6H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: mannan - - chebi: CHEBI:28808 - - kegg.compound: C00464 - - metanetx.chemical: MNXM2020 - - sbo: SBO:0000247 + - bigg.metabolite: "mannan" + - chebi: "CHEBI:28808" + - kegg.compound: "C00464" + - metanetx.chemical: "MNXM2020" + - sbo: "SBO:0000247" - !!omap - - id: s_1109 - - name: mannose-(1D-myo-inositol 1-phosphate)2 - - compartment: er - - formula: C18H34O22P2 + - id: "s_1109" + - name: "mannose-(1D-myo-inositol 1-phosphate)2" + - compartment: "er" + - formula: "C18H34O22P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: man2mi1p__D - - chebi: CHEBI:60449 - - metanetx.chemical: MNXM61128 - - sbo: SBO:0000247 + - bigg.metabolite: "man2mi1p__D" + - chebi: "CHEBI:60449" + - metanetx.chemical: "MNXM61128" + - sbo: "SBO:0000247" - !!omap - - id: s_1110 - - name: mannose-(1D-myo-inositol 1-phosphate)2 - - compartment: m - - formula: C18H34O22P2 + - id: "s_1110" + - name: "mannose-(1D-myo-inositol 1-phosphate)2" + - compartment: "m" + - formula: "C18H34O22P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: man2mi1p__D - - chebi: CHEBI:60449 - - metanetx.chemical: MNXM61128 - - sbo: SBO:0000247 + - bigg.metabolite: "man2mi1p__D" + - chebi: "CHEBI:60449" + - metanetx.chemical: "MNXM61128" + - sbo: "SBO:0000247" - !!omap - - id: s_1111 - - name: mannose-1D-myo-inositol 1-phosphate - - compartment: er - - formula: C12H23O14P + - id: "s_1111" + - name: "mannose-1D-myo-inositol 1-phosphate" + - compartment: "er" + - formula: "C12H23O14P" - charge: 0 - annotation: !!omap - - bigg.metabolite: manmi1p__D - - chebi: CHEBI:60448 - - metanetx.chemical: MNXM61129 - - sbo: SBO:0000247 + - bigg.metabolite: "manmi1p__D" + - chebi: "CHEBI:60448" + - metanetx.chemical: "MNXM61129" + - sbo: "SBO:0000247" - !!omap - - id: s_1112 - - name: mannose-1D-myo-inositol 1-phosphate - - compartment: m - - formula: C12H23O14P + - id: "s_1112" + - name: "mannose-1D-myo-inositol 1-phosphate" + - compartment: "m" + - formula: "C12H23O14P" - charge: 0 - annotation: !!omap - - bigg.metabolite: manmi1p__D - - chebi: CHEBI:60448 - - metanetx.chemical: MNXM61129 - - sbo: SBO:0000247 + - bigg.metabolite: "manmi1p__D" + - chebi: "CHEBI:60448" + - metanetx.chemical: "MNXM61129" + - sbo: "SBO:0000247" - !!omap - - id: s_1114 - - name: mannosylinositol phosphorylceramide backbone - - compartment: g - - formula: C12H22NO15P + - id: "s_1114" + - name: "mannosylinositol phosphorylceramide backbone" + - compartment: "g" + - formula: "C12H22NO15P" - annotation: !!omap - - chebi: CHEBI:25168 - - metanetx.chemical: MNXM12216 - - sbo: SBO:0000649 + - chebi: "CHEBI:25168" + - metanetx.chemical: "MNXM12216" + - sbo: "SBO:0000649" - !!omap - - id: s_1116 - - name: mannosylinositol phosphorylceramide A (C24) - - compartment: er - - formula: C54H106NO16P + - id: "s_1116" + - name: "mannosylinositol phosphorylceramide A (C24)" + - compartment: "er" + - formula: "C54H106NO16P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60416 - - metanetx.chemical: MNXM61061 - - sbo: SBO:0000247 + - chebi: "CHEBI:60416" + - metanetx.chemical: "MNXM61061" + - sbo: "SBO:0000247" - !!omap - - id: s_1117 - - name: mannosylinositol phosphorylceramide A (C24) - - compartment: g - - formula: C54H106NO16P + - id: "s_1117" + - name: "mannosylinositol phosphorylceramide A (C24)" + - compartment: "g" + - formula: "C54H106NO16P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60416 - - metanetx.chemical: MNXM61061 - - sbo: SBO:0000247 + - chebi: "CHEBI:60416" + - metanetx.chemical: "MNXM61061" + - sbo: "SBO:0000247" - !!omap - - id: s_1118 - - name: mannosylinositol phosphorylceramide A (C24) - - compartment: m - - formula: C54H106NO16P + - id: "s_1118" + - name: "mannosylinositol phosphorylceramide A (C24)" + - compartment: "m" + - formula: "C54H106NO16P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60416 - - metanetx.chemical: MNXM61061 - - sbo: SBO:0000247 + - chebi: "CHEBI:60416" + - metanetx.chemical: "MNXM61061" + - sbo: "SBO:0000247" - !!omap - - id: s_1119 - - name: mannosylinositol phosphorylceramide A (C26) - - compartment: er - - formula: C56H110NO16P + - id: "s_1119" + - name: "mannosylinositol phosphorylceramide A (C26)" + - compartment: "er" + - formula: "C56H110NO16P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62706 - - metanetx.chemical: MNXM106432 - - sbo: SBO:0000247 + - chebi: "CHEBI:62706" + - metanetx.chemical: "MNXM106432" + - sbo: "SBO:0000247" - !!omap - - id: s_1120 - - name: mannosylinositol phosphorylceramide A (C26) - - compartment: g - - formula: C56H110NO16P + - id: "s_1120" + - name: "mannosylinositol phosphorylceramide A (C26)" + - compartment: "g" + - formula: "C56H110NO16P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62706 - - metanetx.chemical: MNXM106432 - - sbo: SBO:0000247 + - chebi: "CHEBI:62706" + - metanetx.chemical: "MNXM106432" + - sbo: "SBO:0000247" - !!omap - - id: s_1121 - - name: mannosylinositol phosphorylceramide A (C26) - - compartment: m - - formula: C56H110NO16P + - id: "s_1121" + - name: "mannosylinositol phosphorylceramide A (C26)" + - compartment: "m" + - formula: "C56H110NO16P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62706 - - metanetx.chemical: MNXM106432 - - sbo: SBO:0000247 + - chebi: "CHEBI:62706" + - metanetx.chemical: "MNXM106432" + - sbo: "SBO:0000247" - !!omap - - id: s_1122 - - name: mannosylinositol phosphorylceramide B (C24) - - compartment: er - - formula: C54H106NO17P + - id: "s_1122" + - name: "mannosylinositol phosphorylceramide B (C24)" + - compartment: "er" + - formula: "C54H106NO17P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60420 - - metanetx.chemical: MNXM61066 - - sbo: SBO:0000247 + - chebi: "CHEBI:60420" + - metanetx.chemical: "MNXM61066" + - sbo: "SBO:0000247" - !!omap - - id: s_1123 - - name: mannosylinositol phosphorylceramide B (C24) - - compartment: g - - formula: C54H106NO17P + - id: "s_1123" + - name: "mannosylinositol phosphorylceramide B (C24)" + - compartment: "g" + - formula: "C54H106NO17P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60420 - - metanetx.chemical: MNXM61066 - - sbo: SBO:0000247 + - chebi: "CHEBI:60420" + - metanetx.chemical: "MNXM61066" + - sbo: "SBO:0000247" - !!omap - - id: s_1124 - - name: mannosylinositol phosphorylceramide B (C24) - - compartment: m - - formula: C54H106NO17P + - id: "s_1124" + - name: "mannosylinositol phosphorylceramide B (C24)" + - compartment: "m" + - formula: "C54H106NO17P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60420 - - metanetx.chemical: MNXM61066 - - sbo: SBO:0000247 + - chebi: "CHEBI:60420" + - metanetx.chemical: "MNXM61066" + - sbo: "SBO:0000247" - !!omap - - id: s_1125 - - name: mannosylinositol phosphorylceramide B (C26) - - compartment: er - - formula: C56H110NO17P + - id: "s_1125" + - name: "mannosylinositol phosphorylceramide B (C26)" + - compartment: "er" + - formula: "C56H110NO17P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62710 - - metanetx.chemical: MNXM61056 - - sbo: SBO:0000247 + - chebi: "CHEBI:62710" + - metanetx.chemical: "MNXM61056" + - sbo: "SBO:0000247" - !!omap - - id: s_1126 - - name: mannosylinositol phosphorylceramide B (C26) - - compartment: g - - formula: C56H110NO17P + - id: "s_1126" + - name: "mannosylinositol phosphorylceramide B (C26)" + - compartment: "g" + - formula: "C56H110NO17P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62710 - - metanetx.chemical: MNXM61056 - - sbo: SBO:0000247 + - chebi: "CHEBI:62710" + - metanetx.chemical: "MNXM61056" + - sbo: "SBO:0000247" - !!omap - - id: s_1127 - - name: mannosylinositol phosphorylceramide B (C26) - - compartment: m - - formula: C56H110NO17P + - id: "s_1127" + - name: "mannosylinositol phosphorylceramide B (C26)" + - compartment: "m" + - formula: "C56H110NO17P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62710 - - metanetx.chemical: MNXM61056 - - sbo: SBO:0000247 + - chebi: "CHEBI:62710" + - metanetx.chemical: "MNXM61056" + - sbo: "SBO:0000247" - !!omap - - id: s_1128 - - name: mannosylinositol phosphorylceramide B' (C24) - - compartment: er - - formula: C54H106NO17P + - id: "s_1128" + - name: "mannosylinositol phosphorylceramide B' (C24)" + - compartment: "er" + - formula: "C54H106NO17P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60418 - - metanetx.chemical: MNXM61060 - - sbo: SBO:0000247 + - chebi: "CHEBI:60418" + - metanetx.chemical: "MNXM61060" + - sbo: "SBO:0000247" - !!omap - - id: s_1129 - - name: mannosylinositol phosphorylceramide B' (C24) - - compartment: g - - formula: C54H106NO17P + - id: "s_1129" + - name: "mannosylinositol phosphorylceramide B' (C24)" + - compartment: "g" + - formula: "C54H106NO17P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60418 - - metanetx.chemical: MNXM61060 - - sbo: SBO:0000247 + - chebi: "CHEBI:60418" + - metanetx.chemical: "MNXM61060" + - sbo: "SBO:0000247" - !!omap - - id: s_1130 - - name: mannosylinositol phosphorylceramide B' (C24) - - compartment: m - - formula: C54H106NO17P + - id: "s_1130" + - name: "mannosylinositol phosphorylceramide B' (C24)" + - compartment: "m" + - formula: "C54H106NO17P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60418 - - metanetx.chemical: MNXM61060 - - sbo: SBO:0000247 + - chebi: "CHEBI:60418" + - metanetx.chemical: "MNXM61060" + - sbo: "SBO:0000247" - !!omap - - id: s_1131 - - name: mannosylinositol phosphorylceramide B' (C26) - - compartment: er - - formula: C56H110NO17P + - id: "s_1131" + - name: "mannosylinositol phosphorylceramide B' (C26)" + - compartment: "er" + - formula: "C56H110NO17P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62708 - - metanetx.chemical: MNXM61051 - - sbo: SBO:0000247 + - chebi: "CHEBI:62708" + - metanetx.chemical: "MNXM61051" + - sbo: "SBO:0000247" - !!omap - - id: s_1132 - - name: mannosylinositol phosphorylceramide B' (C26) - - compartment: g - - formula: C56H110NO17P + - id: "s_1132" + - name: "mannosylinositol phosphorylceramide B' (C26)" + - compartment: "g" + - formula: "C56H110NO17P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62708 - - metanetx.chemical: MNXM61051 - - sbo: SBO:0000247 + - chebi: "CHEBI:62708" + - metanetx.chemical: "MNXM61051" + - sbo: "SBO:0000247" - !!omap - - id: s_1133 - - name: mannosylinositol phosphorylceramide B' (C26) - - compartment: m - - formula: C56H110NO17P + - id: "s_1133" + - name: "mannosylinositol phosphorylceramide B' (C26)" + - compartment: "m" + - formula: "C56H110NO17P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62708 - - metanetx.chemical: MNXM61051 - - sbo: SBO:0000247 + - chebi: "CHEBI:62708" + - metanetx.chemical: "MNXM61051" + - sbo: "SBO:0000247" - !!omap - - id: s_1134 - - name: mannosylinositol phosphorylceramide C (C24) - - compartment: er - - formula: C54H106NO18P + - id: "s_1134" + - name: "mannosylinositol phosphorylceramide C (C24)" + - compartment: "er" + - formula: "C54H106NO18P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60422 - - metanetx.chemical: MNXM61065 - - sbo: SBO:0000247 + - chebi: "CHEBI:60422" + - metanetx.chemical: "MNXM61065" + - sbo: "SBO:0000247" - !!omap - - id: s_1135 - - name: mannosylinositol phosphorylceramide C (C24) - - compartment: g - - formula: C54H106NO18P + - id: "s_1135" + - name: "mannosylinositol phosphorylceramide C (C24)" + - compartment: "g" + - formula: "C54H106NO18P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60422 - - metanetx.chemical: MNXM61065 - - sbo: SBO:0000247 + - chebi: "CHEBI:60422" + - metanetx.chemical: "MNXM61065" + - sbo: "SBO:0000247" - !!omap - - id: s_1136 - - name: mannosylinositol phosphorylceramide C (C24) - - compartment: m - - formula: C54H106NO18P + - id: "s_1136" + - name: "mannosylinositol phosphorylceramide C (C24)" + - compartment: "m" + - formula: "C54H106NO18P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60422 - - metanetx.chemical: MNXM61065 - - sbo: SBO:0000247 + - chebi: "CHEBI:60422" + - metanetx.chemical: "MNXM61065" + - sbo: "SBO:0000247" - !!omap - - id: s_1137 - - name: mannosylinositol phosphorylceramide C (C26) - - compartment: er - - formula: C56H110NO18P + - id: "s_1137" + - name: "mannosylinositol phosphorylceramide C (C26)" + - compartment: "er" + - formula: "C56H110NO18P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62712 - - metanetx.chemical: MNXM61055 - - sbo: SBO:0000247 + - chebi: "CHEBI:62712" + - metanetx.chemical: "MNXM61055" + - sbo: "SBO:0000247" - !!omap - - id: s_1138 - - name: mannosylinositol phosphorylceramide C (C26) - - compartment: g - - formula: C56H110NO18P + - id: "s_1138" + - name: "mannosylinositol phosphorylceramide C (C26)" + - compartment: "g" + - formula: "C56H110NO18P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62712 - - metanetx.chemical: MNXM61055 - - sbo: SBO:0000247 + - chebi: "CHEBI:62712" + - metanetx.chemical: "MNXM61055" + - sbo: "SBO:0000247" - !!omap - - id: s_1139 - - name: mannosylinositol phosphorylceramide C (C26) - - compartment: m - - formula: C56H110NO18P + - id: "s_1139" + - name: "mannosylinositol phosphorylceramide C (C26)" + - compartment: "m" + - formula: "C56H110NO18P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62712 - - metanetx.chemical: MNXM61055 - - sbo: SBO:0000247 + - chebi: "CHEBI:62712" + - metanetx.chemical: "MNXM61055" + - sbo: "SBO:0000247" - !!omap - - id: s_1140 - - name: mannosylinositol phosphorylceramide D (C24) - - compartment: er - - formula: C54H106NO19P + - id: "s_1140" + - name: "mannosylinositol phosphorylceramide D (C24)" + - compartment: "er" + - formula: "C54H106NO19P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60435 - - metanetx.chemical: MNXM61064 - - sbo: SBO:0000247 + - chebi: "CHEBI:60435" + - metanetx.chemical: "MNXM61064" + - sbo: "SBO:0000247" - !!omap - - id: s_1141 - - name: mannosylinositol phosphorylceramide D (C24) - - compartment: g - - formula: C54H106NO19P + - id: "s_1141" + - name: "mannosylinositol phosphorylceramide D (C24)" + - compartment: "g" + - formula: "C54H106NO19P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60435 - - metanetx.chemical: MNXM61064 - - sbo: SBO:0000247 + - chebi: "CHEBI:60435" + - metanetx.chemical: "MNXM61064" + - sbo: "SBO:0000247" - !!omap - - id: s_1142 - - name: mannosylinositol phosphorylceramide D (C24) - - compartment: m - - formula: C54H106NO19P + - id: "s_1142" + - name: "mannosylinositol phosphorylceramide D (C24)" + - compartment: "m" + - formula: "C54H106NO19P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60435 - - metanetx.chemical: MNXM61064 - - sbo: SBO:0000247 + - chebi: "CHEBI:60435" + - metanetx.chemical: "MNXM61064" + - sbo: "SBO:0000247" - !!omap - - id: s_1143 - - name: mannosylinositol phosphorylceramide D (C26) - - compartment: er - - formula: C56H110NO19P + - id: "s_1143" + - name: "mannosylinositol phosphorylceramide D (C26)" + - compartment: "er" + - formula: "C56H110NO19P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62683 - - metanetx.chemical: MNXM61054 - - sbo: SBO:0000247 + - chebi: "CHEBI:62683" + - metanetx.chemical: "MNXM61054" + - sbo: "SBO:0000247" - !!omap - - id: s_1144 - - name: mannosylinositol phosphorylceramide D (C26) - - compartment: g - - formula: C56H110NO19P + - id: "s_1144" + - name: "mannosylinositol phosphorylceramide D (C26)" + - compartment: "g" + - formula: "C56H110NO19P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62683 - - metanetx.chemical: MNXM61054 - - sbo: SBO:0000247 + - chebi: "CHEBI:62683" + - metanetx.chemical: "MNXM61054" + - sbo: "SBO:0000247" - !!omap - - id: s_1145 - - name: mannosylinositol phosphorylceramide D (C26) - - compartment: m - - formula: C56H110NO19P + - id: "s_1145" + - name: "mannosylinositol phosphorylceramide D (C26)" + - compartment: "m" + - formula: "C56H110NO19P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62683 - - metanetx.chemical: MNXM61054 - - sbo: SBO:0000247 + - chebi: "CHEBI:62683" + - metanetx.chemical: "MNXM61054" + - sbo: "SBO:0000247" - !!omap - - id: s_1148 - - name: Met-tRNA(Met) - - compartment: c - - formula: C5H11NOSR + - id: "s_1148" + - name: "Met-tRNA(Met)" + - compartment: "c" + - formula: "C5H11NOSR" - charge: 1 - annotation: !!omap - - bigg.metabolite: mettrna - - chebi: CHEBI:16635 - - kegg.compound: C02430 - - metanetx.chemical: MNXM90636 - - sbo: SBO:0000247 + - bigg.metabolite: "mettrna" + - chebi: "CHEBI:16635" + - kegg.compound: "C02430" + - metanetx.chemical: "MNXM90636" + - sbo: "SBO:0000247" - !!omap - - id: s_1149 - - name: Met-tRNA(Met) - - compartment: m - - formula: C5H11NOSR + - id: "s_1149" + - name: "Met-tRNA(Met)" + - compartment: "m" + - formula: "C5H11NOSR" - charge: 1 - annotation: !!omap - - bigg.metabolite: mettrna - - chebi: CHEBI:16635 - - kegg.compound: C02430 - - metanetx.chemical: MNXM90636 - - sbo: SBO:0000247 + - bigg.metabolite: "mettrna" + - chebi: "CHEBI:16635" + - kegg.compound: "C02430" + - metanetx.chemical: "MNXM90636" + - sbo: "SBO:0000247" - !!omap - - id: s_1150 - - name: methanethiol - - compartment: c - - formula: CH4S + - id: "s_1150" + - name: "methanethiol" + - compartment: "c" + - formula: "CH4S" - charge: 0 - annotation: !!omap - - bigg.metabolite: ch4s - - chebi: CHEBI:16007 - - kegg.compound: C00409 - - metanetx.chemical: MNXM652 - - sbo: SBO:0000247 + - bigg.metabolite: "ch4s" + - chebi: "CHEBI:16007" + - kegg.compound: "C00409" + - metanetx.chemical: "MNXM652" + - sbo: "SBO:0000247" - !!omap - - id: s_1151 - - name: methylglyoxal - - compartment: c - - formula: C3H4O2 + - id: "s_1151" + - name: "methylglyoxal" + - compartment: "c" + - formula: "C3H4O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: mthgxl - - chebi: CHEBI:17158 - - kegg.compound: C00546 - - metanetx.chemical: MNXM310 - - sbo: SBO:0000247 + - bigg.metabolite: "mthgxl" + - chebi: "CHEBI:17158" + - kegg.compound: "C00546" + - metanetx.chemical: "MNXM310" + - sbo: "SBO:0000247" - !!omap - - id: s_1153 - - name: myo-inositol - - compartment: c - - formula: C6H12O6 + - id: "s_1153" + - name: "myo-inositol" + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: inost - - chebi: CHEBI:17268 - - kegg.compound: C00137 - - metanetx.chemical: MNXM127 - - sbo: SBO:0000247 + - bigg.metabolite: "inost" + - chebi: "CHEBI:17268" + - kegg.compound: "C00137" + - metanetx.chemical: "MNXM127" + - sbo: "SBO:0000247" - !!omap - - id: s_1154 - - name: myo-inositol - - compartment: e - - formula: C6H12O6 + - id: "s_1154" + - name: "myo-inositol" + - compartment: "e" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: inost - - chebi: CHEBI:17268 - - kegg.compound: C00137 - - metanetx.chemical: MNXM127 - - sbo: SBO:0000247 + - bigg.metabolite: "inost" + - chebi: "CHEBI:17268" + - kegg.compound: "C00137" + - metanetx.chemical: "MNXM127" + - sbo: "SBO:0000247" - !!omap - - id: s_1156 - - name: myo-inositol 1,3,4,5,6-pentakisphosphate - - compartment: c - - formula: C6H7O21P5 + - id: "s_1156" + - name: "myo-inositol 1,3,4,5,6-pentakisphosphate" + - compartment: "c" + - formula: "C6H7O21P5" - charge: -10 - annotation: !!omap - - bigg.metabolite: inospp1 - - chebi: CHEBI:57733 - - kegg.compound: C01284 - - metanetx.chemical: MNXM89719 - - sbo: SBO:0000247 + - bigg.metabolite: "inospp1" + - chebi: "CHEBI:57733" + - kegg.compound: "C01284" + - metanetx.chemical: "MNXM89719" + - sbo: "SBO:0000247" - !!omap - - id: s_1157 - - name: myo-inositol 1,3,4,5,6-pentakisphosphate - - compartment: n - - formula: C6H7O21P5 + - id: "s_1157" + - name: "myo-inositol 1,3,4,5,6-pentakisphosphate" + - compartment: "n" + - formula: "C6H7O21P5" - charge: -10 - annotation: !!omap - - bigg.metabolite: inospp1 - - chebi: CHEBI:57733 - - kegg.compound: C01284 - - metanetx.chemical: MNXM89719 - - sbo: SBO:0000247 + - bigg.metabolite: "inospp1" + - chebi: "CHEBI:57733" + - kegg.compound: "C01284" + - metanetx.chemical: "MNXM89719" + - sbo: "SBO:0000247" - !!omap - - id: s_1158 - - name: myo-inositol hexakisphosphate - - compartment: c - - formula: C6H6O24P6 + - id: "s_1158" + - name: "myo-inositol hexakisphosphate" + - compartment: "c" + - formula: "C6H6O24P6" - charge: -12 - annotation: !!omap - - bigg.metabolite: minohp - - chebi: CHEBI:58130 - - kegg.compound: C01204 - - metanetx.chemical: MNXM491 - - sbo: SBO:0000247 + - bigg.metabolite: "minohp" + - chebi: "CHEBI:58130" + - kegg.compound: "C01204" + - metanetx.chemical: "MNXM491" + - sbo: "SBO:0000247" - !!omap - - id: s_1159 - - name: myo-inositol hexakisphosphate - - compartment: n - - formula: C6H6O24P6 + - id: "s_1159" + - name: "myo-inositol hexakisphosphate" + - compartment: "n" + - formula: "C6H6O24P6" - charge: -12 - annotation: !!omap - - bigg.metabolite: minohp - - chebi: CHEBI:58130 - - kegg.compound: C01204 - - metanetx.chemical: MNXM491 - - sbo: SBO:0000247 + - bigg.metabolite: "minohp" + - chebi: "CHEBI:58130" + - kegg.compound: "C01204" + - metanetx.chemical: "MNXM491" + - sbo: "SBO:0000247" - !!omap - - id: s_1161 - - name: myristate - - compartment: c - - formula: C14H27O2 + - id: "s_1161" + - name: "myristate" + - compartment: "c" + - formula: "C14H27O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ttdca - - chebi: CHEBI:30807 - - kegg.compound: C06424 - - metanetx.chemical: MNXM314 - - sbo: SBO:0000247 + - bigg.metabolite: "ttdca" + - chebi: "CHEBI:30807" + - kegg.compound: "C06424" + - metanetx.chemical: "MNXM314" + - sbo: "SBO:0000247" - !!omap - - id: s_1163 - - name: myristate - - compartment: e - - formula: C14H27O2 + - id: "s_1163" + - name: "myristate" + - compartment: "e" + - formula: "C14H27O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ttdca - - chebi: CHEBI:30807 - - kegg.compound: C06424 - - metanetx.chemical: MNXM314 - - sbo: SBO:0000247 + - bigg.metabolite: "ttdca" + - chebi: "CHEBI:30807" + - kegg.compound: "C06424" + - metanetx.chemical: "MNXM314" + - sbo: "SBO:0000247" - !!omap - - id: s_1166 - - name: myristate - - compartment: p - - formula: C14H27O2 + - id: "s_1166" + - name: "myristate" + - compartment: "p" + - formula: "C14H27O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ttdca - - chebi: CHEBI:30807 - - kegg.compound: C06424 - - metanetx.chemical: MNXM314 - - sbo: SBO:0000247 + - bigg.metabolite: "ttdca" + - chebi: "CHEBI:30807" + - kegg.compound: "C06424" + - metanetx.chemical: "MNXM314" + - sbo: "SBO:0000247" - !!omap - - id: s_1176 - - name: myristoyl-CoA - - compartment: c - - formula: C35H58N7O17P3S + - id: "s_1176" + - name: "myristoyl-CoA" + - compartment: "c" + - formula: "C35H58N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: tdcoa - - chebi: CHEBI:57385 - - kegg.compound: C02593 - - metanetx.chemical: MNXM224 - - sbo: SBO:0000247 + - bigg.metabolite: "tdcoa" + - chebi: "CHEBI:57385" + - kegg.compound: "C02593" + - metanetx.chemical: "MNXM224" + - sbo: "SBO:0000247" - !!omap - - id: s_1179 - - name: myristoyl-CoA - - compartment: p - - formula: C35H58N7O17P3S + - id: "s_1179" + - name: "myristoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: tdcoa - - chebi: CHEBI:57385 - - kegg.compound: C02593 - - metanetx.chemical: MNXM224 - - sbo: SBO:0000247 + - bigg.metabolite: "tdcoa" + - chebi: "CHEBI:57385" + - kegg.compound: "C02593" + - metanetx.chemical: "MNXM224" + - sbo: "SBO:0000247" - !!omap - - id: s_1180 - - name: N(1)-acetylspermidine - - compartment: c - - formula: C9H23N3O + - id: "s_1180" + - name: "N(1)-acetylspermidine" + - compartment: "c" + - formula: "C9H23N3O" - charge: 2 - annotation: !!omap - - bigg.metabolite: N1aspmd - - chebi: CHEBI:58324 - - kegg.compound: C00612 - - metanetx.chemical: MNXM501 - - sbo: SBO:0000247 + - bigg.metabolite: "N1aspmd" + - chebi: "CHEBI:58324" + - kegg.compound: "C00612" + - metanetx.chemical: "MNXM501" + - sbo: "SBO:0000247" - !!omap - - id: s_1181 - - name: N(1)-acetylspermine - - compartment: c - - formula: C12H31N4O + - id: "s_1181" + - name: "N(1)-acetylspermine" + - compartment: "c" + - formula: "C12H31N4O" - charge: 3 - annotation: !!omap - - bigg.metabolite: N1sprm - - chebi: CHEBI:58101 - - kegg.compound: C02567 - - metanetx.chemical: MNXM600 - - sbo: SBO:0000247 + - bigg.metabolite: "N1sprm" + - chebi: "CHEBI:58101" + - kegg.compound: "C02567" + - metanetx.chemical: "MNXM600" + - sbo: "SBO:0000247" - !!omap - - id: s_1182 - - name: N(2)-acetyl-L-ornithine - - compartment: m - - formula: C7H14N2O3 + - id: "s_1182" + - name: "N(2)-acetyl-L-ornithine" + - compartment: "m" + - formula: "C7H14N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: acorn - - chebi: CHEBI:16543 - - kegg.compound: C00437 - - metanetx.chemical: MNXM817 - - sbo: SBO:0000247 + - bigg.metabolite: "acorn" + - chebi: "CHEBI:16543" + - kegg.compound: "C00437" + - metanetx.chemical: "MNXM817" + - sbo: "SBO:0000247" - !!omap - - id: s_1183 - - name: N(pros)-methyl-L-histidine - - compartment: c - - formula: C7H11N3O2 + - id: "s_1183" + - name: "N(pros)-methyl-L-histidine" + - compartment: "c" + - formula: "C7H11N3O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: NPmehis - - chebi: CHEBI:27596 - - kegg.compound: C01152 - - metanetx.chemical: MNXM722872 - - sbo: SBO:0000247 + - bigg.metabolite: "NPmehis" + - chebi: "CHEBI:27596" + - kegg.compound: "C01152" + - metanetx.chemical: "MNXM722872" + - sbo: "SBO:0000247" - !!omap - - id: s_1184 - - name: N,N'-diacetylchitobiosyldiphosphodolichol - - compartment: c - - formula: C36H62N2O17P2 + - id: "s_1184" + - name: "N,N'-diacetylchitobiosyldiphosphodolichol" + - compartment: "c" + - formula: "C36H62N2O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: chito2pdol - - chebi: CHEBI:12427 - - kegg.compound: C04537 - - metanetx.chemical: MNXM63078 - - sbo: SBO:0000247 + - bigg.metabolite: "chito2pdol" + - chebi: "CHEBI:12427" + - kegg.compound: "C04537" + - metanetx.chemical: "MNXM63078" + - sbo: "SBO:0000247" - !!omap - - id: s_1185 - - name: N,N'-diformyldityrosine - - compartment: c - - formula: C20H22N2O8 + - id: "s_1185" + - name: "N,N'-diformyldityrosine" + - compartment: "c" + - formula: "C20H22N2O8" - charge: -2 - annotation: !!omap - - chebi: CHEBI:50611 - - metanetx.chemical: MNXM147516 - - sbo: SBO:0000247 + - chebi: "CHEBI:50611" + - metanetx.chemical: "MNXM147516" + - sbo: "SBO:0000247" - !!omap - - id: s_1186 - - name: N,N'-diformyldityrosine - - compartment: e - - formula: C20H22N2O8 + - id: "s_1186" + - name: "N,N'-diformyldityrosine" + - compartment: "e" + - formula: "C20H22N2O8" - charge: -2 - annotation: !!omap - - chebi: CHEBI:50611 - - metanetx.chemical: MNXM147516 - - sbo: SBO:0000247 + - chebi: "CHEBI:50611" + - metanetx.chemical: "MNXM147516" + - sbo: "SBO:0000247" - !!omap - - id: s_1187 - - name: N-(5-phospho-beta-D-ribosyl)anthranilate - - compartment: c - - formula: C12H13NO9P + - id: "s_1187" + - name: "N-(5-phospho-beta-D-ribosyl)anthranilate" + - compartment: "c" + - formula: "C12H13NO9P" - charge: -3 - annotation: !!omap - - bigg.metabolite: pran - - chebi: CHEBI:18277 - - kegg.compound: C04302 - - metanetx.chemical: MNXM1489 - - sbo: SBO:0000247 + - bigg.metabolite: "pran" + - chebi: "CHEBI:18277" + - kegg.compound: "C04302" + - metanetx.chemical: "MNXM1489" + - sbo: "SBO:0000247" - !!omap - - id: s_1188 - - name: N-[(R)-4-phosphonopantothenoyl]-L-cysteine - - compartment: c - - formula: C12H20N2O9PS + - id: "s_1188" + - name: "N-[(R)-4-phosphonopantothenoyl]-L-cysteine" + - compartment: "c" + - formula: "C12H20N2O9PS" - charge: -3 - annotation: !!omap - - bigg.metabolite: 4ppcys - - chebi: CHEBI:59458 - - kegg.compound: C04352 - - metanetx.chemical: MNXM483 - - sbo: SBO:0000247 + - bigg.metabolite: "4ppcys" + - chebi: "CHEBI:59458" + - kegg.compound: "C04352" + - metanetx.chemical: "MNXM483" + - sbo: "SBO:0000247" - !!omap - - id: s_1189 - - name: N-acetyl-alpha-D-glucosamine 1-phosphate - - compartment: c - - formula: C8H14NO9P + - id: "s_1189" + - name: "N-acetyl-alpha-D-glucosamine 1-phosphate" + - compartment: "c" + - formula: "C8H14NO9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: acgal1p - - chebi: CHEBI:16446 - - kegg.compound: C04501 - - metanetx.chemical: MNXM340 - - sbo: SBO:0000247 + - bigg.metabolite: "acgal1p" + - chebi: "CHEBI:16446" + - kegg.compound: "C04501" + - metanetx.chemical: "MNXM340" + - sbo: "SBO:0000247" - !!omap - - id: s_1190 - - name: N-acetyl-D-glucosamine 6-phosphate - - compartment: c - - formula: C8H14NO9P + - id: "s_1190" + - name: "N-acetyl-D-glucosamine 6-phosphate" + - compartment: "c" + - formula: "C8H14NO9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: acgam6p - - chebi: CHEBI:57513 - - kegg.compound: C00357 - - metanetx.chemical: MNXM63556 - - sbo: SBO:0000247 + - bigg.metabolite: "acgam6p" + - chebi: "CHEBI:57513" + - kegg.compound: "C00357" + - metanetx.chemical: "MNXM63556" + - sbo: "SBO:0000247" - !!omap - - id: s_1191 - - name: N-acetyl-L-gamma-glutamyl phosphate - - compartment: m - - formula: C7H9NO8P + - id: "s_1191" + - name: "N-acetyl-L-gamma-glutamyl phosphate" + - compartment: "m" + - formula: "C7H9NO8P" - charge: -3 - annotation: !!omap - - bigg.metabolite: acg5p - - chebi: CHEBI:57936 - - kegg.compound: C04133 - - metanetx.chemical: MNXM1384 - - sbo: SBO:0000247 + - bigg.metabolite: "acg5p" + - chebi: "CHEBI:57936" + - kegg.compound: "C04133" + - metanetx.chemical: "MNXM1384" + - sbo: "SBO:0000247" - !!omap - - id: s_1192 - - name: N-acetyl-L-glutamate - - compartment: m - - formula: C7H9NO5 + - id: "s_1192" + - name: "N-acetyl-L-glutamate" + - compartment: "m" + - formula: "C7H9NO5" - charge: -2 - annotation: !!omap - - bigg.metabolite: acglu - - chebi: CHEBI:44337 - - kegg.compound: C00624 - - metanetx.chemical: MNXM730 - - sbo: SBO:0000247 + - bigg.metabolite: "acglu" + - chebi: "CHEBI:44337" + - kegg.compound: "C00624" + - metanetx.chemical: "MNXM730" + - sbo: "SBO:0000247" - !!omap - - id: s_1193 - - name: N-acetylputrescine - - compartment: c - - formula: C6H15N2O + - id: "s_1193" + - name: "N-acetylputrescine" + - compartment: "c" + - formula: "C6H15N2O" - charge: 1 - annotation: !!omap - - bigg.metabolite: aprut - - chebi: CHEBI:58263 - - kegg.compound: C02714 - - metanetx.chemical: MNXM1153 - - sbo: SBO:0000247 + - bigg.metabolite: "aprut" + - chebi: "CHEBI:58263" + - kegg.compound: "C02714" + - metanetx.chemical: "MNXM1153" + - sbo: "SBO:0000247" - !!omap - - id: s_1194 - - name: N-carbamoyl-L-aspartate - - compartment: c - - formula: C5H6N2O5 + - id: "s_1194" + - name: "N-carbamoyl-L-aspartate" + - compartment: "c" + - formula: "C5H6N2O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: cbasp - - chebi: CHEBI:32814 - - kegg.compound: C00438 - - metanetx.chemical: MNXM465 - - sbo: SBO:0000247 + - bigg.metabolite: "cbasp" + - chebi: "CHEBI:32814" + - kegg.compound: "C00438" + - metanetx.chemical: "MNXM465" + - sbo: "SBO:0000247" - !!omap - - id: s_1195 - - name: N-formyl-L-kynurenine - - compartment: c - - formula: C11H12N2O4 + - id: "s_1195" + - name: "N-formyl-L-kynurenine" + - compartment: "c" + - formula: "C11H12N2O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: Lfmkynr - - chebi: CHEBI:30249 - - kegg.compound: C02700 - - metanetx.chemical: MNXM1288 - - sbo: SBO:0000247 + - bigg.metabolite: "Lfmkynr" + - chebi: "CHEBI:30249" + - kegg.compound: "C02700" + - metanetx.chemical: "MNXM1288" + - sbo: "SBO:0000247" - !!omap - - id: s_1196 - - name: N-formyl-L-tyrosine - - compartment: c - - formula: C10H10NO4 + - id: "s_1196" + - name: "N-formyl-L-tyrosine" + - compartment: "c" + - formula: "C10H10NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: Nfortyr - - chebi: CHEBI:50603 - - metanetx.chemical: MNXM63755 - - sbo: SBO:0000247 + - bigg.metabolite: "Nfortyr" + - chebi: "CHEBI:50603" + - metanetx.chemical: "MNXM63755" + - sbo: "SBO:0000247" - !!omap - - id: s_1198 - - name: NAD - - compartment: c - - formula: C21H26N7O14P2 + - id: "s_1198" + - name: "NAD" + - compartment: "c" + - formula: "C21H26N7O14P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: nad - - chebi: CHEBI:57540 - - kegg.compound: C00003 - - metanetx.chemical: MNXM8 - - sbo: SBO:0000247 + - bigg.metabolite: "nad" + - chebi: "CHEBI:57540" + - kegg.compound: "C00003" + - metanetx.chemical: "MNXM8" + - sbo: "SBO:0000247" - !!omap - - id: s_1199 - - name: NAD - - compartment: er - - formula: C21H26N7O14P2 + - id: "s_1199" + - name: "NAD" + - compartment: "er" + - formula: "C21H26N7O14P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: nad - - chebi: CHEBI:57540 - - kegg.compound: C00003 - - metanetx.chemical: MNXM8 - - sbo: SBO:0000247 + - bigg.metabolite: "nad" + - chebi: "CHEBI:57540" + - kegg.compound: "C00003" + - metanetx.chemical: "MNXM8" + - sbo: "SBO:0000247" - !!omap - - id: s_1200 - - name: NAD - - compartment: m - - formula: C21H26N7O14P2 + - id: "s_1200" + - name: "NAD" + - compartment: "m" + - formula: "C21H26N7O14P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: nad - - chebi: CHEBI:57540 - - kegg.compound: C00003 - - metanetx.chemical: MNXM8 - - sbo: SBO:0000247 + - bigg.metabolite: "nad" + - chebi: "CHEBI:57540" + - kegg.compound: "C00003" + - metanetx.chemical: "MNXM8" + - sbo: "SBO:0000247" - !!omap - - id: s_1201 - - name: NAD - - compartment: n - - formula: C21H26N7O14P2 + - id: "s_1201" + - name: "NAD" + - compartment: "n" + - formula: "C21H26N7O14P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: nad - - chebi: CHEBI:57540 - - kegg.compound: C00003 - - metanetx.chemical: MNXM8 - - sbo: SBO:0000247 + - bigg.metabolite: "nad" + - chebi: "CHEBI:57540" + - kegg.compound: "C00003" + - metanetx.chemical: "MNXM8" + - sbo: "SBO:0000247" - !!omap - - id: s_1202 - - name: NAD - - compartment: p - - formula: C21H26N7O14P2 + - id: "s_1202" + - name: "NAD" + - compartment: "p" + - formula: "C21H26N7O14P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: nad - - chebi: CHEBI:57540 - - kegg.compound: C00003 - - metanetx.chemical: MNXM8 - - sbo: SBO:0000247 + - bigg.metabolite: "nad" + - chebi: "CHEBI:57540" + - kegg.compound: "C00003" + - metanetx.chemical: "MNXM8" + - sbo: "SBO:0000247" - !!omap - - id: s_1203 - - name: NADH - - compartment: c - - formula: C21H27N7O14P2 + - id: "s_1203" + - name: "NADH" + - compartment: "c" + - formula: "C21H27N7O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: nadh - - chebi: CHEBI:57945 - - kegg.compound: C00004 - - metanetx.chemical: MNXM10 - - sbo: SBO:0000247 + - bigg.metabolite: "nadh" + - chebi: "CHEBI:57945" + - kegg.compound: "C00004" + - metanetx.chemical: "MNXM10" + - sbo: "SBO:0000247" - !!omap - - id: s_1204 - - name: NADH - - compartment: er - - formula: C21H27N7O14P2 + - id: "s_1204" + - name: "NADH" + - compartment: "er" + - formula: "C21H27N7O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: nadh - - chebi: CHEBI:57945 - - kegg.compound: C00004 - - metanetx.chemical: MNXM10 - - sbo: SBO:0000247 + - bigg.metabolite: "nadh" + - chebi: "CHEBI:57945" + - kegg.compound: "C00004" + - metanetx.chemical: "MNXM10" + - sbo: "SBO:0000247" - !!omap - - id: s_1205 - - name: NADH - - compartment: m - - formula: C21H27N7O14P2 + - id: "s_1205" + - name: "NADH" + - compartment: "m" + - formula: "C21H27N7O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: nadh - - chebi: CHEBI:57945 - - kegg.compound: C00004 - - metanetx.chemical: MNXM10 - - sbo: SBO:0000247 + - bigg.metabolite: "nadh" + - chebi: "CHEBI:57945" + - kegg.compound: "C00004" + - metanetx.chemical: "MNXM10" + - sbo: "SBO:0000247" - !!omap - - id: s_1206 - - name: NADH - - compartment: p - - formula: C21H27N7O14P2 + - id: "s_1206" + - name: "NADH" + - compartment: "p" + - formula: "C21H27N7O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: nadh - - chebi: CHEBI:57945 - - kegg.compound: C00004 - - metanetx.chemical: MNXM10 - - sbo: SBO:0000247 + - bigg.metabolite: "nadh" + - chebi: "CHEBI:57945" + - kegg.compound: "C00004" + - metanetx.chemical: "MNXM10" + - sbo: "SBO:0000247" - !!omap - - id: s_1207 - - name: NADP(+) - - compartment: c - - formula: C21H25N7O17P3 + - id: "s_1207" + - name: "NADP(+)" + - compartment: "c" + - formula: "C21H25N7O17P3" - charge: -3 - annotation: !!omap - - bigg.metabolite: nadp - - chebi: CHEBI:58349 - - kegg.compound: C00006 - - metanetx.chemical: MNXM5 - - sbo: SBO:0000247 + - bigg.metabolite: "nadp" + - chebi: "CHEBI:58349" + - kegg.compound: "C00006" + - metanetx.chemical: "MNXM5" + - sbo: "SBO:0000247" - !!omap - - id: s_1208 - - name: NADP(+) - - compartment: er - - formula: C21H25N7O17P3 + - id: "s_1208" + - name: "NADP(+)" + - compartment: "er" + - formula: "C21H25N7O17P3" - charge: -3 - annotation: !!omap - - bigg.metabolite: nadp - - chebi: CHEBI:58349 - - kegg.compound: C00006 - - metanetx.chemical: MNXM5 - - sbo: SBO:0000247 + - bigg.metabolite: "nadp" + - chebi: "CHEBI:58349" + - kegg.compound: "C00006" + - metanetx.chemical: "MNXM5" + - sbo: "SBO:0000247" - !!omap - - id: s_1210 - - name: NADP(+) - - compartment: m - - formula: C21H25N7O17P3 + - id: "s_1210" + - name: "NADP(+)" + - compartment: "m" + - formula: "C21H25N7O17P3" - charge: -3 - annotation: !!omap - - bigg.metabolite: nadp - - chebi: CHEBI:58349 - - kegg.compound: C00006 - - metanetx.chemical: MNXM5 - - sbo: SBO:0000247 + - bigg.metabolite: "nadp" + - chebi: "CHEBI:58349" + - kegg.compound: "C00006" + - metanetx.chemical: "MNXM5" + - sbo: "SBO:0000247" - !!omap - - id: s_1211 - - name: NADP(+) - - compartment: p - - formula: C21H25N7O17P3 + - id: "s_1211" + - name: "NADP(+)" + - compartment: "p" + - formula: "C21H25N7O17P3" - charge: -3 - annotation: !!omap - - bigg.metabolite: nadp - - chebi: CHEBI:58349 - - kegg.compound: C00006 - - metanetx.chemical: MNXM5 - - sbo: SBO:0000247 + - bigg.metabolite: "nadp" + - chebi: "CHEBI:58349" + - kegg.compound: "C00006" + - metanetx.chemical: "MNXM5" + - sbo: "SBO:0000247" - !!omap - - id: s_1212 - - name: NADPH - - compartment: c - - formula: C21H26N7O17P3 + - id: "s_1212" + - name: "NADPH" + - compartment: "c" + - formula: "C21H26N7O17P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: nadph - - chebi: CHEBI:57783 - - kegg.compound: C00005 - - metanetx.chemical: MNXM6 - - sbo: SBO:0000247 + - bigg.metabolite: "nadph" + - chebi: "CHEBI:57783" + - kegg.compound: "C00005" + - metanetx.chemical: "MNXM6" + - sbo: "SBO:0000247" - !!omap - - id: s_1213 - - name: NADPH - - compartment: er - - formula: C21H26N7O17P3 + - id: "s_1213" + - name: "NADPH" + - compartment: "er" + - formula: "C21H26N7O17P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: nadph - - chebi: CHEBI:57783 - - kegg.compound: C00005 - - metanetx.chemical: MNXM6 - - sbo: SBO:0000247 + - bigg.metabolite: "nadph" + - chebi: "CHEBI:57783" + - kegg.compound: "C00005" + - metanetx.chemical: "MNXM6" + - sbo: "SBO:0000247" - !!omap - - id: s_1214 - - name: NADPH - - compartment: m - - formula: C21H26N7O17P3 + - id: "s_1214" + - name: "NADPH" + - compartment: "m" + - formula: "C21H26N7O17P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: nadph - - chebi: CHEBI:57783 - - kegg.compound: C00005 - - metanetx.chemical: MNXM6 - - sbo: SBO:0000247 + - bigg.metabolite: "nadph" + - chebi: "CHEBI:57783" + - kegg.compound: "C00005" + - metanetx.chemical: "MNXM6" + - sbo: "SBO:0000247" - !!omap - - id: s_1215 - - name: NADPH - - compartment: p - - formula: C21H26N7O17P3 + - id: "s_1215" + - name: "NADPH" + - compartment: "p" + - formula: "C21H26N7O17P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: nadph - - chebi: CHEBI:57783 - - kegg.compound: C00005 - - metanetx.chemical: MNXM6 - - sbo: SBO:0000247 + - bigg.metabolite: "nadph" + - chebi: "CHEBI:57783" + - kegg.compound: "C00005" + - metanetx.chemical: "MNXM6" + - sbo: "SBO:0000247" - !!omap - - id: s_1216 - - name: nicotinamide - - compartment: c - - formula: C6H6N2O + - id: "s_1216" + - name: "nicotinamide" + - compartment: "c" + - formula: "C6H6N2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ncam - - chebi: CHEBI:17154 - - kegg.compound: C00153 - - metanetx.chemical: MNXM216 - - sbo: SBO:0000247 + - bigg.metabolite: "ncam" + - chebi: "CHEBI:17154" + - kegg.compound: "C00153" + - metanetx.chemical: "MNXM216" + - sbo: "SBO:0000247" - !!omap - - id: s_1217 - - name: nicotinamide - - compartment: n - - formula: C6H6N2O + - id: "s_1217" + - name: "nicotinamide" + - compartment: "n" + - formula: "C6H6N2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ncam - - chebi: CHEBI:17154 - - kegg.compound: C00153 - - metanetx.chemical: MNXM216 - - sbo: SBO:0000247 + - bigg.metabolite: "ncam" + - chebi: "CHEBI:17154" + - kegg.compound: "C00153" + - metanetx.chemical: "MNXM216" + - sbo: "SBO:0000247" - !!omap - - id: s_1218 - - name: nicotinamide ribose - - compartment: c - - formula: C11H15N2O5 + - id: "s_1218" + - name: "nicotinamide ribose" + - compartment: "c" + - formula: "C11H15N2O5" - charge: 1 - annotation: !!omap - - bigg.metabolite: rnam - - chebi: CHEBI:15927 - - kegg.compound: C03150 - - metanetx.chemical: MNXM1115 - - sbo: SBO:0000247 + - bigg.metabolite: "rnam" + - chebi: "CHEBI:15927" + - kegg.compound: "C03150" + - metanetx.chemical: "MNXM1115" + - sbo: "SBO:0000247" - !!omap - - id: s_1219 - - name: nicotinate - - compartment: c - - formula: C6H4NO2 + - id: "s_1219" + - name: "nicotinate" + - compartment: "c" + - formula: "C6H4NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: nac - - chebi: CHEBI:32544 - - kegg.compound: C00253 - - metanetx.chemical: MNXM274 - - sbo: SBO:0000247 + - bigg.metabolite: "nac" + - chebi: "CHEBI:32544" + - kegg.compound: "C00253" + - metanetx.chemical: "MNXM274" + - sbo: "SBO:0000247" - !!omap - - id: s_1220 - - name: nicotinate - - compartment: e - - formula: C6H4NO2 + - id: "s_1220" + - name: "nicotinate" + - compartment: "e" + - formula: "C6H4NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: nac - - chebi: CHEBI:32544 - - kegg.compound: C00253 - - metanetx.chemical: MNXM274 - - sbo: SBO:0000247 + - bigg.metabolite: "nac" + - chebi: "CHEBI:32544" + - kegg.compound: "C00253" + - metanetx.chemical: "MNXM274" + - sbo: "SBO:0000247" - !!omap - - id: s_1221 - - name: nicotinate - - compartment: m - - formula: C6H4NO2 + - id: "s_1221" + - name: "nicotinate" + - compartment: "m" + - formula: "C6H4NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: nac - - chebi: CHEBI:32544 - - kegg.compound: C00253 - - metanetx.chemical: MNXM274 - - sbo: SBO:0000247 + - bigg.metabolite: "nac" + - chebi: "CHEBI:32544" + - kegg.compound: "C00253" + - metanetx.chemical: "MNXM274" + - sbo: "SBO:0000247" - !!omap - - id: s_1222 - - name: nicotinic acid D-ribonucleotide - - compartment: c - - formula: C11H12NO9P + - id: "s_1222" + - name: "nicotinic acid D-ribonucleotide" + - compartment: "c" + - formula: "C11H12NO9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: nicrnt - - chebi: CHEBI:57502 - - kegg.compound: C01185 - - metanetx.chemical: MNXM194 - - sbo: SBO:0000247 + - bigg.metabolite: "nicrnt" + - chebi: "CHEBI:57502" + - kegg.compound: "C01185" + - metanetx.chemical: "MNXM194" + - sbo: "SBO:0000247" - !!omap - - id: s_1223 - - name: nicotinic acid D-ribonucleotide - - compartment: m - - formula: C11H12NO9P + - id: "s_1223" + - name: "nicotinic acid D-ribonucleotide" + - compartment: "m" + - formula: "C11H12NO9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: nicrnt - - chebi: CHEBI:57502 - - kegg.compound: C01185 - - metanetx.chemical: MNXM194 - - sbo: SBO:0000247 + - bigg.metabolite: "nicrnt" + - chebi: "CHEBI:57502" + - kegg.compound: "C01185" + - metanetx.chemical: "MNXM194" + - sbo: "SBO:0000247" - !!omap - - id: s_1224 - - name: NMN - - compartment: c - - formula: C11H14N2O8P + - id: "s_1224" + - name: "NMN" + - compartment: "c" + - formula: "C11H14N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: nmn - - chebi: CHEBI:14649 - - kegg.compound: C00455 - - metanetx.chemical: MNXM355 - - sbo: SBO:0000247 + - bigg.metabolite: "nmn" + - chebi: "CHEBI:14649" + - kegg.compound: "C00455" + - metanetx.chemical: "MNXM355" + - sbo: "SBO:0000247" - !!omap - - id: s_1225 - - name: NMN - - compartment: e - - formula: C11H14N2O8P + - id: "s_1225" + - name: "NMN" + - compartment: "e" + - formula: "C11H14N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: nmn - - chebi: CHEBI:14649 - - kegg.compound: C00455 - - metanetx.chemical: MNXM355 - - sbo: SBO:0000247 + - bigg.metabolite: "nmn" + - chebi: "CHEBI:14649" + - kegg.compound: "C00455" + - metanetx.chemical: "MNXM355" + - sbo: "SBO:0000247" - !!omap - - id: s_1227 - - name: NMN - - compartment: n - - formula: C11H14N2O8P + - id: "s_1227" + - name: "NMN" + - compartment: "n" + - formula: "C11H14N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: nmn - - chebi: CHEBI:14649 - - kegg.compound: C00455 - - metanetx.chemical: MNXM355 - - sbo: SBO:0000247 + - bigg.metabolite: "nmn" + - chebi: "CHEBI:14649" + - kegg.compound: "C00455" + - metanetx.chemical: "MNXM355" + - sbo: "SBO:0000247" - !!omap - - id: s_1228 - - name: NMN - - compartment: p - - formula: C11H14N2O8P + - id: "s_1228" + - name: "NMN" + - compartment: "p" + - formula: "C11H14N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: nmn - - chebi: CHEBI:14649 - - kegg.compound: C00455 - - metanetx.chemical: MNXM355 - - sbo: SBO:0000247 + - bigg.metabolite: "nmn" + - chebi: "CHEBI:14649" + - kegg.compound: "C00455" + - metanetx.chemical: "MNXM355" + - sbo: "SBO:0000247" - !!omap - - id: s_1229 - - name: nonadecaprenyl diphosphate - - compartment: lp - - formula: C95H153O7P2 + - id: "s_1229" + - name: "nonadecaprenyl diphosphate" + - compartment: "lp" + - formula: "C95H153O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53034 - - metanetx.chemical: MNXM64863 - - sbo: SBO:0000247 + - chebi: "CHEBI:53034" + - metanetx.chemical: "MNXM64863" + - sbo: "SBO:0000247" - !!omap - - id: s_1230 - - name: nonaprenyl 4-hydroxybenzoate - - compartment: c - - formula: C52H77O3 + - id: "s_1230" + - name: "nonaprenyl 4-hydroxybenzoate" + - compartment: "c" + - formula: "C52H77O3" - charge: -1 - annotation: !!omap - - chebi: CHEBI:18162 - - kegg.compound: C03885 - - metanetx.chemical: MNXM2847 - - sbo: SBO:0000247 + - chebi: "CHEBI:18162" + - kegg.compound: "C03885" + - metanetx.chemical: "MNXM2847" + - sbo: "SBO:0000247" - !!omap - - id: s_1231 - - name: nonaprenyl diphosphate - - compartment: c - - formula: C45H73O7P2 + - id: "s_1231" + - name: "nonaprenyl diphosphate" + - compartment: "c" + - formula: "C45H73O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53044 - - kegg.compound: C04145 - - metanetx.chemical: MNXM968 - - sbo: SBO:0000247 + - chebi: "CHEBI:53044" + - kegg.compound: "C04145" + - metanetx.chemical: "MNXM968" + - sbo: "SBO:0000247" - !!omap - - id: s_1232 - - name: nonaprenyl diphosphate - - compartment: lp - - formula: C45H73O7P2 + - id: "s_1232" + - name: "nonaprenyl diphosphate" + - compartment: "lp" + - formula: "C45H73O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53044 - - kegg.compound: C04145 - - metanetx.chemical: MNXM968 - - sbo: SBO:0000247 + - chebi: "CHEBI:53044" + - kegg.compound: "C04145" + - metanetx.chemical: "MNXM968" + - sbo: "SBO:0000247" - !!omap - - id: s_1233 - - name: O-acetyl-L-homoserine - - compartment: c - - formula: C6H11NO4 + - id: "s_1233" + - name: "O-acetyl-L-homoserine" + - compartment: "c" + - formula: "C6H11NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: achms - - chebi: CHEBI:16288 - - kegg.compound: C01077 - - metanetx.chemical: MNXM699 - - sbo: SBO:0000247 + - bigg.metabolite: "achms" + - chebi: "CHEBI:16288" + - kegg.compound: "C01077" + - metanetx.chemical: "MNXM699" + - sbo: "SBO:0000247" - !!omap - - id: s_1234 - - name: O-acetyl-L-serine - - compartment: c - - formula: C5H9NO4 + - id: "s_1234" + - name: "O-acetyl-L-serine" + - compartment: "c" + - formula: "C5H9NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: acser - - chebi: CHEBI:17981 - - kegg.compound: C00979 - - metanetx.chemical: MNXM418 - - sbo: SBO:0000247 + - bigg.metabolite: "acser" + - chebi: "CHEBI:17981" + - kegg.compound: "C00979" + - metanetx.chemical: "MNXM418" + - sbo: "SBO:0000247" - !!omap - - id: s_1235 - - name: O-acetylcarnitine - - compartment: c - - formula: C9H17NO4 + - id: "s_1235" + - name: "O-acetylcarnitine" + - compartment: "c" + - formula: "C9H17NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: acrn - - chebi: CHEBI:57589 - - kegg.compound: C02571 - - metanetx.chemical: MNXM1028 - - sbo: SBO:0000247 + - bigg.metabolite: "acrn" + - chebi: "CHEBI:57589" + - kegg.compound: "C02571" + - metanetx.chemical: "MNXM1028" + - sbo: "SBO:0000247" - !!omap - - id: s_1236 - - name: O-acetylcarnitine - - compartment: m - - formula: C9H17NO4 + - id: "s_1236" + - name: "O-acetylcarnitine" + - compartment: "m" + - formula: "C9H17NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: acrn - - chebi: CHEBI:57589 - - kegg.compound: C02571 - - metanetx.chemical: MNXM1028 - - sbo: SBO:0000247 + - bigg.metabolite: "acrn" + - chebi: "CHEBI:57589" + - kegg.compound: "C02571" + - metanetx.chemical: "MNXM1028" + - sbo: "SBO:0000247" - !!omap - - id: s_1237 - - name: O-acetylcarnitine - - compartment: p - - formula: C9H17NO4 + - id: "s_1237" + - name: "O-acetylcarnitine" + - compartment: "p" + - formula: "C9H17NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: acrn - - chebi: CHEBI:57589 - - kegg.compound: C02571 - - metanetx.chemical: MNXM1028 - - sbo: SBO:0000247 + - bigg.metabolite: "acrn" + - chebi: "CHEBI:57589" + - kegg.compound: "C02571" + - metanetx.chemical: "MNXM1028" + - sbo: "SBO:0000247" - !!omap - - id: s_1238 - - name: O-phospho-L-homoserine - - compartment: c - - formula: C4H8NO6P + - id: "s_1238" + - name: "O-phospho-L-homoserine" + - compartment: "c" + - formula: "C4H8NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: phom - - chebi: CHEBI:57590 - - kegg.compound: C01102 - - metanetx.chemical: MNXM1334 - - sbo: SBO:0000247 + - bigg.metabolite: "phom" + - chebi: "CHEBI:57590" + - kegg.compound: "C01102" + - metanetx.chemical: "MNXM1334" + - sbo: "SBO:0000247" - !!omap - - id: s_1239 - - name: O-phosphoethanolamine - - compartment: c - - formula: C2H7NO4P + - id: "s_1239" + - name: "O-phosphoethanolamine" + - compartment: "c" + - formula: "C2H7NO4P" - charge: -1 - annotation: !!omap - - bigg.metabolite: ethamp - - chebi: CHEBI:58190 - - kegg.compound: C00346 - - metanetx.chemical: MNXM187 - - sbo: SBO:0000247 + - bigg.metabolite: "ethamp" + - chebi: "CHEBI:58190" + - kegg.compound: "C00346" + - metanetx.chemical: "MNXM187" + - sbo: "SBO:0000247" - !!omap - - id: s_1240 - - name: O-phosphoethanolamine - - compartment: er - - formula: C2H7NO4P + - id: "s_1240" + - name: "O-phosphoethanolamine" + - compartment: "er" + - formula: "C2H7NO4P" - charge: -1 - annotation: !!omap - - bigg.metabolite: ethamp - - chebi: CHEBI:58190 - - kegg.compound: C00346 - - metanetx.chemical: MNXM187 - - sbo: SBO:0000247 + - bigg.metabolite: "ethamp" + - chebi: "CHEBI:58190" + - kegg.compound: "C00346" + - metanetx.chemical: "MNXM187" + - sbo: "SBO:0000247" - !!omap - - id: s_1241 - - name: O-succinyl-L-homoserine - - compartment: c - - formula: C8H12NO6 + - id: "s_1241" + - name: "O-succinyl-L-homoserine" + - compartment: "c" + - formula: "C8H12NO6" - charge: -1 - annotation: !!omap - - bigg.metabolite: suchms - - chebi: CHEBI:57661 - - kegg.compound: C01118 - - metanetx.chemical: MNXM820 - - sbo: SBO:0000247 + - bigg.metabolite: "suchms" + - chebi: "CHEBI:57661" + - kegg.compound: "C01118" + - metanetx.chemical: "MNXM820" + - sbo: "SBO:0000247" - !!omap - - id: s_1246 - - name: octadecaprenyl diphosphate - - compartment: lp - - formula: C90H145O7P2 + - id: "s_1246" + - name: "octadecaprenyl diphosphate" + - compartment: "lp" + - formula: "C90H145O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53035 - - metanetx.chemical: MNXM65303 - - sbo: SBO:0000247 + - chebi: "CHEBI:53035" + - metanetx.chemical: "MNXM65303" + - sbo: "SBO:0000247" - !!omap - - id: s_1248 - - name: octanoate - - compartment: c - - formula: C8H15O2 + - id: "s_1248" + - name: "octanoate" + - compartment: "c" + - formula: "C8H15O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: octa - - chebi: CHEBI:25646 - - kegg.compound: C06423 - - metanetx.chemical: MNXM750 - - sbo: SBO:0000247 + - bigg.metabolite: "octa" + - chebi: "CHEBI:25646" + - kegg.compound: "C06423" + - metanetx.chemical: "MNXM750" + - sbo: "SBO:0000247" - !!omap - - id: s_1250 - - name: octanoate - - compartment: e - - formula: C8H15O2 + - id: "s_1250" + - name: "octanoate" + - compartment: "e" + - formula: "C8H15O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: octa - - chebi: CHEBI:25646 - - kegg.compound: C06423 - - metanetx.chemical: MNXM750 - - sbo: SBO:0000247 + - bigg.metabolite: "octa" + - chebi: "CHEBI:25646" + - kegg.compound: "C06423" + - metanetx.chemical: "MNXM750" + - sbo: "SBO:0000247" - !!omap - - id: s_1253 - - name: octanoate - - compartment: p - - formula: C8H15O2 + - id: "s_1253" + - name: "octanoate" + - compartment: "p" + - formula: "C8H15O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: octa - - chebi: CHEBI:25646 - - kegg.compound: C06423 - - metanetx.chemical: MNXM750 - - sbo: SBO:0000247 + - bigg.metabolite: "octa" + - chebi: "CHEBI:25646" + - kegg.compound: "C06423" + - metanetx.chemical: "MNXM750" + - sbo: "SBO:0000247" - !!omap - - id: s_1254 - - name: octanoyl-ACP - - compartment: m - - formula: C8H15OSR + - id: "s_1254" + - name: "octanoyl-ACP" + - compartment: "m" + - formula: "C8H15OSR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:7725 - - kegg.compound: C05752 - - metanetx.chemical: MNXM979 - - sbo: SBO:0000247 + - chebi: "CHEBI:7725" + - kegg.compound: "C05752" + - metanetx.chemical: "MNXM979" + - sbo: "SBO:0000247" - !!omap - - id: s_1258 - - name: octanoyl-CoA - - compartment: p - - formula: C29H46N7O17P3S + - id: "s_1258" + - name: "octanoyl-CoA" + - compartment: "p" + - formula: "C29H46N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: occoa - - chebi: CHEBI:15533 - - kegg.compound: C01944 - - metanetx.chemical: MNXM342 - - sbo: SBO:0000247 + - bigg.metabolite: "occoa" + - chebi: "CHEBI:15533" + - kegg.compound: "C01944" + - metanetx.chemical: "MNXM342" + - sbo: "SBO:0000247" - !!omap - - id: s_1259 - - name: octaprenyl diphosphate - - compartment: lp - - formula: C40H65O7P2 + - id: "s_1259" + - name: "octaprenyl diphosphate" + - compartment: "lp" + - formula: "C40H65O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: octdp - - chebi: CHEBI:53045 - - kegg.compound: C04146 - - metanetx.chemical: MNXM811 - - sbo: SBO:0000247 + - bigg.metabolite: "octdp" + - chebi: "CHEBI:53045" + - kegg.compound: "C04146" + - metanetx.chemical: "MNXM811" + - sbo: "SBO:0000247" - !!omap - - id: s_1260 - - name: oleate - - compartment: c - - formula: C18H33O2 + - id: "s_1260" + - name: "oleate" + - compartment: "c" + - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdcea - - chebi: CHEBI:30823 - - kegg.compound: C00712 - - metanetx.chemical: MNXM306 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - - id: s_1262 - - name: oleoyl-CoA - - compartment: c - - formula: C39H64N7O17P3S + - id: "s_1262" + - name: "oleoyl-CoA" + - compartment: "c" + - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ocdce9coa - - chebi: CHEBI:57387 - - kegg.compound: C00510 - - metanetx.chemical: MNXM686 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdce9coa" + - chebi: "CHEBI:57387" + - kegg.compound: "C00510" + - metanetx.chemical: "MNXM686" + - sbo: "SBO:0000247" - !!omap - - id: s_1265 - - name: oleoyl-CoA - - compartment: p - - formula: C39H64N7O17P3S + - id: "s_1265" + - name: "oleoyl-CoA" + - compartment: "p" + - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ocdce9coa - - chebi: CHEBI:57387 - - kegg.compound: C00510 - - metanetx.chemical: MNXM686 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdce9coa" + - chebi: "CHEBI:57387" + - kegg.compound: "C00510" + - metanetx.chemical: "MNXM686" + - sbo: "SBO:0000247" - !!omap - - id: s_1266 - - name: ornithine - - compartment: c - - formula: C5H13N2O2 + - id: "s_1266" + - name: "ornithine" + - compartment: "c" + - formula: "C5H13N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: orn - - chebi: CHEBI:46912 - - kegg.compound: C01602 - - metanetx.chemical: MNXM89689 - - sbo: SBO:0000247 + - bigg.metabolite: "orn" + - chebi: "CHEBI:46912" + - kegg.compound: "C01602" + - metanetx.chemical: "MNXM89689" + - sbo: "SBO:0000247" - !!omap - - id: s_1267 - - name: ornithine - - compartment: e - - formula: C5H13N2O2 + - id: "s_1267" + - name: "ornithine" + - compartment: "e" + - formula: "C5H13N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: orn - - chebi: CHEBI:46912 - - kegg.compound: C01602 - - metanetx.chemical: MNXM89689 - - sbo: SBO:0000247 + - bigg.metabolite: "orn" + - chebi: "CHEBI:46912" + - kegg.compound: "C01602" + - metanetx.chemical: "MNXM89689" + - sbo: "SBO:0000247" - !!omap - - id: s_1268 - - name: ornithine - - compartment: m - - formula: C5H13N2O2 + - id: "s_1268" + - name: "ornithine" + - compartment: "m" + - formula: "C5H13N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: orn - - chebi: CHEBI:46912 - - kegg.compound: C01602 - - metanetx.chemical: MNXM89689 - - sbo: SBO:0000247 + - bigg.metabolite: "orn" + - chebi: "CHEBI:46912" + - kegg.compound: "C01602" + - metanetx.chemical: "MNXM89689" + - sbo: "SBO:0000247" - !!omap - - id: s_1269 - - name: orotate - - compartment: c - - formula: C5H3N2O4 + - id: "s_1269" + - name: "orotate" + - compartment: "c" + - formula: "C5H3N2O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: orot - - chebi: CHEBI:30839 - - kegg.compound: C00295 - - metanetx.chemical: MNXM235 - - sbo: SBO:0000247 + - bigg.metabolite: "orot" + - chebi: "CHEBI:30839" + - kegg.compound: "C00295" + - metanetx.chemical: "MNXM235" + - sbo: "SBO:0000247" - !!omap - - id: s_1270 - - name: orotidine 5'-(dihydrogen phosphate) - - compartment: c - - formula: C10H10N2O11P + - id: "s_1270" + - name: "orotidine 5'-(dihydrogen phosphate)" + - compartment: "c" + - formula: "C10H10N2O11P" - charge: -3 - annotation: !!omap - - bigg.metabolite: orot5p - - chebi: CHEBI:57538 - - kegg.compound: C01103 - - metanetx.chemical: MNXM519 - - sbo: SBO:0000247 + - bigg.metabolite: "orot5p" + - chebi: "CHEBI:57538" + - kegg.compound: "C01103" + - metanetx.chemical: "MNXM519" + - sbo: "SBO:0000247" - !!omap - - id: s_1271 - - name: oxaloacetate - - compartment: c - - formula: C4H2O5 + - id: "s_1271" + - name: "oxaloacetate" + - compartment: "c" + - formula: "C4H2O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: oaa - - chebi: CHEBI:16452 - - kegg.compound: C00036 - - metanetx.chemical: MNXM46 - - sbo: SBO:0000247 + - bigg.metabolite: "oaa" + - chebi: "CHEBI:16452" + - kegg.compound: "C00036" + - metanetx.chemical: "MNXM46" + - sbo: "SBO:0000247" - !!omap - - id: s_1272 - - name: oxaloacetate - - compartment: e - - formula: C4H2O5 + - id: "s_1272" + - name: "oxaloacetate" + - compartment: "e" + - formula: "C4H2O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: oaa - - chebi: CHEBI:16452 - - kegg.compound: C00036 - - metanetx.chemical: MNXM46 - - sbo: SBO:0000247 + - bigg.metabolite: "oaa" + - chebi: "CHEBI:16452" + - kegg.compound: "C00036" + - metanetx.chemical: "MNXM46" + - sbo: "SBO:0000247" - !!omap - - id: s_1273 - - name: oxaloacetate - - compartment: m - - formula: C4H2O5 + - id: "s_1273" + - name: "oxaloacetate" + - compartment: "m" + - formula: "C4H2O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: oaa - - chebi: CHEBI:16452 - - kegg.compound: C00036 - - metanetx.chemical: MNXM46 - - sbo: SBO:0000247 + - bigg.metabolite: "oaa" + - chebi: "CHEBI:16452" + - kegg.compound: "C00036" + - metanetx.chemical: "MNXM46" + - sbo: "SBO:0000247" - !!omap - - id: s_1274 - - name: oxaloacetate - - compartment: p - - formula: C4H2O5 + - id: "s_1274" + - name: "oxaloacetate" + - compartment: "p" + - formula: "C4H2O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: oaa - - chebi: CHEBI:16452 - - kegg.compound: C00036 - - metanetx.chemical: MNXM46 - - sbo: SBO:0000247 + - bigg.metabolite: "oaa" + - chebi: "CHEBI:16452" + - kegg.compound: "C00036" + - metanetx.chemical: "MNXM46" + - sbo: "SBO:0000247" - !!omap - - id: s_1275 - - name: oxygen - - compartment: c - - formula: O2 + - id: "s_1275" + - name: "oxygen" + - compartment: "c" + - formula: "O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: o2 - - chebi: CHEBI:15379 - - kegg.compound: C00007 - - metanetx.chemical: MNXM4 - - sbo: SBO:0000247 + - bigg.metabolite: "o2" + - chebi: "CHEBI:15379" + - kegg.compound: "C00007" + - metanetx.chemical: "MNXM4" + - sbo: "SBO:0000247" - !!omap - - id: s_1276 - - name: oxygen - - compartment: er - - formula: O2 + - id: "s_1276" + - name: "oxygen" + - compartment: "er" + - formula: "O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: o2 - - chebi: CHEBI:15379 - - kegg.compound: C00007 - - metanetx.chemical: MNXM4 - - sbo: SBO:0000247 + - bigg.metabolite: "o2" + - chebi: "CHEBI:15379" + - kegg.compound: "C00007" + - metanetx.chemical: "MNXM4" + - sbo: "SBO:0000247" - !!omap - - id: s_1277 - - name: oxygen - - compartment: e - - formula: O2 + - id: "s_1277" + - name: "oxygen" + - compartment: "e" + - formula: "O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: o2 - - chebi: CHEBI:15379 - - kegg.compound: C00007 - - metanetx.chemical: MNXM4 - - sbo: SBO:0000247 + - bigg.metabolite: "o2" + - chebi: "CHEBI:15379" + - kegg.compound: "C00007" + - metanetx.chemical: "MNXM4" + - sbo: "SBO:0000247" - !!omap - - id: s_1278 - - name: oxygen - - compartment: m - - formula: O2 + - id: "s_1278" + - name: "oxygen" + - compartment: "m" + - formula: "O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: o2 - - chebi: CHEBI:15379 - - kegg.compound: C00007 - - metanetx.chemical: MNXM4 - - sbo: SBO:0000247 + - bigg.metabolite: "o2" + - chebi: "CHEBI:15379" + - kegg.compound: "C00007" + - metanetx.chemical: "MNXM4" + - sbo: "SBO:0000247" - !!omap - - id: s_1279 - - name: oxygen - - compartment: p - - formula: O2 + - id: "s_1279" + - name: "oxygen" + - compartment: "p" + - formula: "O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: o2 - - chebi: CHEBI:15379 - - kegg.compound: C00007 - - metanetx.chemical: MNXM4 - - sbo: SBO:0000247 + - bigg.metabolite: "o2" + - chebi: "CHEBI:15379" + - kegg.compound: "C00007" + - metanetx.chemical: "MNXM4" + - sbo: "SBO:0000247" - !!omap - - id: s_1282 - - name: P(1),P(4)-bis(5'-adenosyl) tetraphosphate - - compartment: c - - formula: C20H24N10O19P4 + - id: "s_1282" + - name: "P(1),P(4)-bis(5'-adenosyl) tetraphosphate" + - compartment: "c" + - formula: "C20H24N10O19P4" - charge: -4 - annotation: !!omap - - bigg.metabolite: ap4a - - chebi: CHEBI:58141 - - kegg.compound: C01260 - - metanetx.chemical: MNXM1089 - - sbo: SBO:0000247 + - bigg.metabolite: "ap4a" + - chebi: "CHEBI:58141" + - kegg.compound: "C01260" + - metanetx.chemical: "MNXM1089" + - sbo: "SBO:0000247" - !!omap - - id: s_1283 - - name: P(1),P(4)-bis(5'-guanosyl) tetraphosphate - - compartment: c - - formula: C20H24N10O21P4 + - id: "s_1283" + - name: "P(1),P(4)-bis(5'-guanosyl) tetraphosphate" + - compartment: "c" + - formula: "C20H24N10O21P4" - charge: -4 - annotation: !!omap - - bigg.metabolite: gp4g - - chebi: CHEBI:57553 - - kegg.compound: C01261 - - metanetx.chemical: MNXM1582 - - sbo: SBO:0000247 + - bigg.metabolite: "gp4g" + - chebi: "CHEBI:57553" + - kegg.compound: "C01261" + - metanetx.chemical: "MNXM1582" + - sbo: "SBO:0000247" - !!omap - - id: s_1284 - - name: P1-(5'-adenosyl),P4-(5'-guanosyl) tetraphosphate - - compartment: c - - formula: C20H24N10O20P4 + - id: "s_1284" + - name: "P1-(5'-adenosyl),P4-(5'-guanosyl) tetraphosphate" + - compartment: "c" + - formula: "C20H24N10O20P4" - charge: -4 - annotation: !!omap - - bigg.metabolite: ap4g - - chebi: CHEBI:52968 - - metanetx.chemical: MNXM66180 - - sbo: SBO:0000247 + - bigg.metabolite: "ap4g" + - chebi: "CHEBI:52968" + - metanetx.chemical: "MNXM66180" + - sbo: "SBO:0000247" - !!omap - - id: s_1286 - - name: palmitate - - compartment: c - - formula: C16H31O2 + - id: "s_1286" + - name: "palmitate" + - compartment: "c" + - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdca - - chebi: CHEBI:7896 - - kegg.compound: C00249 - - metanetx.chemical: MNXM108 - - sbo: SBO:0000247 + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - - id: s_1288 - - name: palmitate - - compartment: e - - formula: C16H31O2 + - id: "s_1288" + - name: "palmitate" + - compartment: "e" + - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdca - - chebi: CHEBI:7896 - - kegg.compound: C00249 - - metanetx.chemical: MNXM108 - - sbo: SBO:0000247 + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - - id: s_1291 - - name: palmitate - - compartment: p - - formula: C16H31O2 + - id: "s_1291" + - name: "palmitate" + - compartment: "p" + - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdca - - chebi: CHEBI:7896 - - kegg.compound: C00249 - - metanetx.chemical: MNXM108 - - sbo: SBO:0000247 + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - - id: s_1293 - - name: palmitoleate - - compartment: c - - formula: C16H29O2 + - id: "s_1293" + - name: "palmitoleate" + - compartment: "c" + - formula: "C16H29O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdcea - - chebi: CHEBI:32372 - - kegg.compound: C08362 - - metanetx.chemical: MNXM162245 - - sbo: SBO:0000247 + - bigg.metabolite: "hdcea" + - chebi: "CHEBI:32372" + - kegg.compound: "C08362" + - metanetx.chemical: "MNXM162245" + - sbo: "SBO:0000247" - !!omap - - id: s_1295 - - name: palmitoleate - - compartment: e - - formula: C16H29O2 + - id: "s_1295" + - name: "palmitoleate" + - compartment: "e" + - formula: "C16H29O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdcea - - chebi: CHEBI:32372 - - kegg.compound: C08362 - - metanetx.chemical: MNXM162245 - - sbo: SBO:0000247 + - bigg.metabolite: "hdcea" + - chebi: "CHEBI:32372" + - kegg.compound: "C08362" + - metanetx.chemical: "MNXM162245" + - sbo: "SBO:0000247" - !!omap - - id: s_1298 - - name: palmitoleate - - compartment: p - - formula: C16H29O2 + - id: "s_1298" + - name: "palmitoleate" + - compartment: "p" + - formula: "C16H29O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdcea - - chebi: CHEBI:32372 - - kegg.compound: C08362 - - metanetx.chemical: MNXM162245 - - sbo: SBO:0000247 + - bigg.metabolite: "hdcea" + - chebi: "CHEBI:32372" + - kegg.compound: "C08362" + - metanetx.chemical: "MNXM162245" + - sbo: "SBO:0000247" - !!omap - - id: s_1302 - - name: palmitoyl-CoA - - compartment: c - - formula: C37H62N7O17P3S + - id: "s_1302" + - name: "palmitoyl-CoA" + - compartment: "c" + - formula: "C37H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: pmtcoa - - chebi: CHEBI:57379 - - kegg.compound: C00154 - - metanetx.chemical: MNXM88 - - sbo: SBO:0000247 + - bigg.metabolite: "pmtcoa" + - chebi: "CHEBI:57379" + - kegg.compound: "C00154" + - metanetx.chemical: "MNXM88" + - sbo: "SBO:0000247" - !!omap - - id: s_1303 - - name: palmitoyl-CoA - - compartment: er - - formula: C37H62N7O17P3S + - id: "s_1303" + - name: "palmitoyl-CoA" + - compartment: "er" + - formula: "C37H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: pmtcoa - - chebi: CHEBI:57379 - - kegg.compound: C00154 - - metanetx.chemical: MNXM88 - - sbo: SBO:0000247 + - bigg.metabolite: "pmtcoa" + - chebi: "CHEBI:57379" + - kegg.compound: "C00154" + - metanetx.chemical: "MNXM88" + - sbo: "SBO:0000247" - !!omap - - id: s_1305 - - name: palmitoyl-CoA - - compartment: p - - formula: C37H62N7O17P3S + - id: "s_1305" + - name: "palmitoyl-CoA" + - compartment: "p" + - formula: "C37H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: pmtcoa - - chebi: CHEBI:57379 - - kegg.compound: C00154 - - metanetx.chemical: MNXM88 - - sbo: SBO:0000247 + - bigg.metabolite: "pmtcoa" + - chebi: "CHEBI:57379" + - kegg.compound: "C00154" + - metanetx.chemical: "MNXM88" + - sbo: "SBO:0000247" - !!omap - - id: s_1307 - - name: pantetheine 4'-phosphate - - compartment: c - - formula: C11H21N2O7PS + - id: "s_1307" + - name: "pantetheine 4'-phosphate" + - compartment: "c" + - formula: "C11H21N2O7PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: pan4p - - chebi: CHEBI:47942 - - kegg.compound: C01134 - - metanetx.chemical: MNXM373 - - sbo: SBO:0000247 + - bigg.metabolite: "pan4p" + - chebi: "CHEBI:47942" + - kegg.compound: "C01134" + - metanetx.chemical: "MNXM373" + - sbo: "SBO:0000247" - !!omap - - id: s_1308 - - name: pantetheine 4'-phosphate - - compartment: m - - formula: C11H21N2O7PS + - id: "s_1308" + - name: "pantetheine 4'-phosphate" + - compartment: "m" + - formula: "C11H21N2O7PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: pan4p - - chebi: CHEBI:47942 - - kegg.compound: C01134 - - metanetx.chemical: MNXM373 - - sbo: SBO:0000247 + - bigg.metabolite: "pan4p" + - chebi: "CHEBI:47942" + - kegg.compound: "C01134" + - metanetx.chemical: "MNXM373" + - sbo: "SBO:0000247" - !!omap - - id: s_1309 - - name: pectin - - compartment: e - - formula: C6H7O6 + - id: "s_1309" + - name: "pectin" + - compartment: "e" + - formula: "C6H7O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: pectin - - chebi: CHEBI:17309 - - kegg.compound: C00714 - - metanetx.chemical: MNXM107600 - - sbo: SBO:0000247 + - bigg.metabolite: "pectin" + - chebi: "CHEBI:17309" + - kegg.compound: "C00714" + - metanetx.chemical: "MNXM107600" + - sbo: "SBO:0000247" - !!omap - - id: s_1310 - - name: pentadecaprenyl diphosphate - - compartment: lp - - formula: C75H121O7P2 + - id: "s_1310" + - name: "pentadecaprenyl diphosphate" + - compartment: "lp" + - formula: "C75H121O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53038 - - metanetx.chemical: MNXM73155 - - sbo: SBO:0000247 + - chebi: "CHEBI:53038" + - metanetx.chemical: "MNXM73155" + - sbo: "SBO:0000247" - !!omap - - id: s_1311 - - name: pentaprenyl diphosphate - - compartment: c - - formula: C25H41O7P2 + - id: "s_1311" + - name: "pentaprenyl diphosphate" + - compartment: "c" + - formula: "C25H41O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: pendp - - chebi: CHEBI:53048 - - kegg.compound: C04217 - - metanetx.chemical: MNXM2210 - - sbo: SBO:0000247 + - bigg.metabolite: "pendp" + - chebi: "CHEBI:53048" + - kegg.compound: "C04217" + - metanetx.chemical: "MNXM2210" + - sbo: "SBO:0000247" - !!omap - - id: s_1312 - - name: pentaprenyl diphosphate - - compartment: lp - - formula: C25H41O7P2 + - id: "s_1312" + - name: "pentaprenyl diphosphate" + - compartment: "lp" + - formula: "C25H41O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: pendp - - chebi: CHEBI:53048 - - kegg.compound: C04217 - - metanetx.chemical: MNXM2210 - - sbo: SBO:0000247 + - bigg.metabolite: "pendp" + - chebi: "CHEBI:53048" + - kegg.compound: "C04217" + - metanetx.chemical: "MNXM2210" + - sbo: "SBO:0000247" - !!omap - - id: s_1313 - - name: pentaprenyl diphosphate - - compartment: m - - formula: C25H41O7P2 + - id: "s_1313" + - name: "pentaprenyl diphosphate" + - compartment: "m" + - formula: "C25H41O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: pendp - - chebi: CHEBI:53048 - - kegg.compound: C04217 - - metanetx.chemical: MNXM2210 - - sbo: SBO:0000247 + - bigg.metabolite: "pendp" + - chebi: "CHEBI:53048" + - kegg.compound: "C04217" + - metanetx.chemical: "MNXM2210" + - sbo: "SBO:0000247" - !!omap - - id: s_1314 - - name: Phe-tRNA(Phe) - - compartment: c - - formula: C9H11NOR + - id: "s_1314" + - name: "Phe-tRNA(Phe)" + - compartment: "c" + - formula: "C9H11NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: phetrna - - chebi: CHEBI:29153 - - kegg.compound: C03511 - - metanetx.chemical: MNXM89802 - - sbo: SBO:0000247 + - bigg.metabolite: "phetrna" + - chebi: "CHEBI:29153" + - kegg.compound: "C03511" + - metanetx.chemical: "MNXM89802" + - sbo: "SBO:0000247" - !!omap - - id: s_1315 - - name: Phe-tRNA(Phe) - - compartment: m - - formula: C9H11NOR + - id: "s_1315" + - name: "Phe-tRNA(Phe)" + - compartment: "m" + - formula: "C9H11NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: phetrna - - chebi: CHEBI:29153 - - kegg.compound: C03511 - - metanetx.chemical: MNXM89802 - - sbo: SBO:0000247 + - bigg.metabolite: "phetrna" + - chebi: "CHEBI:29153" + - kegg.compound: "C03511" + - metanetx.chemical: "MNXM89802" + - sbo: "SBO:0000247" - !!omap - - id: s_1316 - - name: phenethyl acetate - - compartment: c - - formula: C10H12O2 + - id: "s_1316" + - name: "phenethyl acetate" + - compartment: "c" + - formula: "C10H12O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pheac - - chebi: CHEBI:31988 - - kegg.compound: C12303 - - metanetx.chemical: MNXM12629 - - sbo: SBO:0000247 + - bigg.metabolite: "pheac" + - chebi: "CHEBI:31988" + - kegg.compound: "C12303" + - metanetx.chemical: "MNXM12629" + - sbo: "SBO:0000247" - !!omap - - id: s_1317 - - name: phenethyl acetate - - compartment: e - - formula: C10H12O2 + - id: "s_1317" + - name: "phenethyl acetate" + - compartment: "e" + - formula: "C10H12O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pheac - - chebi: CHEBI:31988 - - kegg.compound: C12303 - - metanetx.chemical: MNXM12629 - - sbo: SBO:0000247 + - bigg.metabolite: "pheac" + - chebi: "CHEBI:31988" + - kegg.compound: "C12303" + - metanetx.chemical: "MNXM12629" + - sbo: "SBO:0000247" - !!omap - - id: s_1318 - - name: phenylacetaldehyde - - compartment: c - - formula: C8H8O + - id: "s_1318" + - name: "phenylacetaldehyde" + - compartment: "c" + - formula: "C8H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: pacald - - chebi: CHEBI:16424 - - kegg.compound: C00601 - - metanetx.chemical: MNXM473 - - sbo: SBO:0000247 + - bigg.metabolite: "pacald" + - chebi: "CHEBI:16424" + - kegg.compound: "C00601" + - metanetx.chemical: "MNXM473" + - sbo: "SBO:0000247" - !!omap - - id: s_1319 - - name: phenylacetaldehyde - - compartment: e - - formula: C8H8O + - id: "s_1319" + - name: "phenylacetaldehyde" + - compartment: "e" + - formula: "C8H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: pacald - - chebi: CHEBI:16424 - - kegg.compound: C00601 - - metanetx.chemical: MNXM473 - - sbo: SBO:0000247 + - bigg.metabolite: "pacald" + - chebi: "CHEBI:16424" + - kegg.compound: "C00601" + - metanetx.chemical: "MNXM473" + - sbo: "SBO:0000247" - !!omap - - id: s_1320 - - name: phenylacetaldehyde - - compartment: m - - formula: C8H8O + - id: "s_1320" + - name: "phenylacetaldehyde" + - compartment: "m" + - formula: "C8H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: pacald - - chebi: CHEBI:16424 - - kegg.compound: C00601 - - metanetx.chemical: MNXM473 - - sbo: SBO:0000247 + - bigg.metabolite: "pacald" + - chebi: "CHEBI:16424" + - kegg.compound: "C00601" + - metanetx.chemical: "MNXM473" + - sbo: "SBO:0000247" - !!omap - - id: s_1321 - - name: phenylacetic acid - - compartment: c - - formula: C8H7O2 + - id: "s_1321" + - name: "phenylacetic acid" + - compartment: "c" + - formula: "C8H7O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: pac - - chebi: CHEBI:18401 - - kegg.compound: C07086 - - metanetx.chemical: MNXM497 - - sbo: SBO:0000247 + - bigg.metabolite: "pac" + - chebi: "CHEBI:18401" + - kegg.compound: "C07086" + - metanetx.chemical: "MNXM497" + - sbo: "SBO:0000247" - !!omap - - id: s_1322 - - name: phosphate - - compartment: c - - formula: HO4P + - id: "s_1322" + - name: "phosphate" + - compartment: "c" + - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pi - - chebi: CHEBI:43474 - - kegg.compound: C00009 - - metanetx.chemical: MNXM9 - - sbo: SBO:0000247 + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - - id: s_1323 - - name: phosphate - - compartment: er - - formula: HO4P + - id: "s_1323" + - name: "phosphate" + - compartment: "er" + - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pi - - chebi: CHEBI:43474 - - kegg.compound: C00009 - - metanetx.chemical: MNXM9 - - sbo: SBO:0000247 + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - - id: s_1324 - - name: phosphate - - compartment: e - - formula: HO4P + - id: "s_1324" + - name: "phosphate" + - compartment: "e" + - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pi - - chebi: CHEBI:43474 - - kegg.compound: C00009 - - metanetx.chemical: MNXM9 - - sbo: SBO:0000247 + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - - id: s_1325 - - name: phosphate - - compartment: g - - formula: HO4P + - id: "s_1325" + - name: "phosphate" + - compartment: "g" + - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pi - - chebi: CHEBI:43474 - - kegg.compound: C00009 - - metanetx.chemical: MNXM9 - - sbo: SBO:0000247 + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - - id: s_1326 - - name: phosphate - - compartment: m - - formula: HO4P + - id: "s_1326" + - name: "phosphate" + - compartment: "m" + - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pi - - chebi: CHEBI:43474 - - kegg.compound: C00009 - - metanetx.chemical: MNXM9 - - sbo: SBO:0000247 + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - - id: s_1329 - - name: phosphate - - compartment: v - - formula: HO4P + - id: "s_1329" + - name: "phosphate" + - compartment: "v" + - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pi - - chebi: CHEBI:43474 - - kegg.compound: C00009 - - metanetx.chemical: MNXM9 - - sbo: SBO:0000247 + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - - id: s_1337 - - name: phosphatidyl-L-serine backbone - - compartment: c - - formula: C6H10NO6P + - id: "s_1337" + - name: "phosphatidyl-L-serine backbone" + - compartment: "c" + - formula: "C6H10NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: ps_cho - - chebi: CHEBI:18303 - - kegg.compound: C02737 - - metanetx.chemical: MNXM221 - - sbo: SBO:0000649 + - bigg.metabolite: "ps_cho" + - chebi: "CHEBI:18303" + - kegg.compound: "C02737" + - metanetx.chemical: "MNXM221" + - sbo: "SBO:0000649" - !!omap - - id: s_1346 - - name: phosphatidylcholine backbone - - compartment: c - - formula: C8H16NO3P + - id: "s_1346" + - name: "phosphatidylcholine backbone" + - compartment: "c" + - formula: "C8H16NO3P" - charge: 1 - annotation: !!omap - - bigg.metabolite: pchol_cho - - chebi: CHEBI:49183 - - kegg.compound: C00157 - - metanetx.chemical: MNXM96952 - - sbo: SBO:0000649 + - bigg.metabolite: "pchol_cho" + - chebi: "CHEBI:49183" + - kegg.compound: "C00157" + - metanetx.chemical: "MNXM96952" + - sbo: "SBO:0000649" - !!omap - - id: s_1351 - - name: phosphatidylethanolamine backbone - - compartment: c - - formula: C5H10NO4P + - id: "s_1351" + - name: "phosphatidylethanolamine backbone" + - compartment: "c" + - formula: "C5H10NO4P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pe_hs - - chebi: CHEBI:16038 - - kegg.compound: C00350 - - metanetx.chemical: MNXM115 - - sbo: SBO:0000649 + - bigg.metabolite: "pe_hs" + - chebi: "CHEBI:16038" + - kegg.compound: "C00350" + - metanetx.chemical: "MNXM115" + - sbo: "SBO:0000649" - !!omap - - id: s_1352 - - name: phosphatidylethanolamine backbone - - compartment: er - - formula: C5H10NO4P + - id: "s_1352" + - name: "phosphatidylethanolamine backbone" + - compartment: "er" + - formula: "C5H10NO4P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pe_hs - - chebi: CHEBI:16038 - - kegg.compound: C00350 - - metanetx.chemical: MNXM115 - - sbo: SBO:0000649 + - bigg.metabolite: "pe_hs" + - chebi: "CHEBI:16038" + - kegg.compound: "C00350" + - metanetx.chemical: "MNXM115" + - sbo: "SBO:0000649" - !!omap - - id: s_1360 - - name: phosphoenolpyruvate - - compartment: c - - formula: C3H2O6P + - id: "s_1360" + - name: "phosphoenolpyruvate" + - compartment: "c" + - formula: "C3H2O6P" - charge: -3 - annotation: !!omap - - bigg.metabolite: pep - - chebi: CHEBI:58702 - - kegg.compound: C00074 - - metanetx.chemical: MNXM73 - - sbo: SBO:0000247 + - bigg.metabolite: "pep" + - chebi: "CHEBI:58702" + - kegg.compound: "C00074" + - metanetx.chemical: "MNXM73" + - sbo: "SBO:0000247" - !!omap - - id: s_1361 - - name: phosphoenolpyruvate - - compartment: m - - formula: C3H2O6P + - id: "s_1361" + - name: "phosphoenolpyruvate" + - compartment: "m" + - formula: "C3H2O6P" - charge: -3 - annotation: !!omap - - bigg.metabolite: pep - - chebi: CHEBI:58702 - - kegg.compound: C00074 - - metanetx.chemical: MNXM73 - - sbo: SBO:0000247 + - bigg.metabolite: "pep" + - chebi: "CHEBI:58702" + - kegg.compound: "C00074" + - metanetx.chemical: "MNXM73" + - sbo: "SBO:0000247" - !!omap - - id: s_1364 - - name: phosphoribosyl-carboxy-aminoimidazole - - compartment: c - - formula: C9H12N3O9P + - id: "s_1364" + - name: "phosphoribosyl-carboxy-aminoimidazole" + - compartment: "c" + - formula: "C9H12N3O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 5aizc - - chebi: CHEBI:58564 - - kegg.compound: C04751 - - metanetx.chemical: MNXM507 - - sbo: SBO:0000247 + - bigg.metabolite: "5aizc" + - chebi: "CHEBI:58564" + - kegg.compound: "C04751" + - metanetx.chemical: "MNXM507" + - sbo: "SBO:0000247" - !!omap - - id: s_1365 - - name: phosphoribosyl-formamido-carboxamide - - compartment: c - - formula: C10H13N4O9P + - id: "s_1365" + - name: "phosphoribosyl-formamido-carboxamide" + - compartment: "c" + - formula: "C10H13N4O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: fprica - - chebi: CHEBI:58467 - - kegg.compound: C04734 - - metanetx.chemical: MNXM456 - - sbo: SBO:0000247 + - bigg.metabolite: "fprica" + - chebi: "CHEBI:58467" + - kegg.compound: "C04734" + - metanetx.chemical: "MNXM456" + - sbo: "SBO:0000247" - !!omap - - id: s_1366 - - name: phytosphingosine - - compartment: er - - formula: C18H40NO3 + - id: "s_1366" + - name: "phytosphingosine" + - compartment: "er" + - formula: "C18H40NO3" - charge: 1 - annotation: !!omap - - bigg.metabolite: psphings - - chebi: CHEBI:46961 - - kegg.compound: C12144 - - metanetx.chemical: MNXM914 - - sbo: SBO:0000247 + - bigg.metabolite: "psphings" + - chebi: "CHEBI:46961" + - kegg.compound: "C12144" + - metanetx.chemical: "MNXM914" + - sbo: "SBO:0000247" - !!omap - - id: s_1367 - - name: phytosphingosine 1-phosphate - - compartment: er - - formula: C18H39NO6P + - id: "s_1367" + - name: "phytosphingosine 1-phosphate" + - compartment: "er" + - formula: "C18H39NO6P" - charge: -1 - annotation: !!omap - - bigg.metabolite: psph1p - - chebi: CHEBI:46970 - - metanetx.chemical: MNXM3337 - - sbo: SBO:0000247 + - bigg.metabolite: "psph1p" + - chebi: "CHEBI:46970" + - metanetx.chemical: "MNXM3337" + - sbo: "SBO:0000247" - !!omap - - id: s_1368 - - name: pimeloyl-CoA - - compartment: c - - formula: C28H41N7O19P3S + - id: "s_1368" + - name: "pimeloyl-CoA" + - compartment: "c" + - formula: "C28H41N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: pmcoa - - chebi: CHEBI:57360 - - kegg.compound: C01063 - - metanetx.chemical: MNXM951 - - sbo: SBO:0000247 + - bigg.metabolite: "pmcoa" + - chebi: "CHEBI:57360" + - kegg.compound: "C01063" + - metanetx.chemical: "MNXM951" + - sbo: "SBO:0000247" - !!omap - - id: s_1371 - - name: polysulphur - - compartment: c - - formula: S + - id: "s_1371" + - name: "polysulphur" + - compartment: "c" + - formula: "S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17909 - - kegg.compound: C00087 - - metanetx.chemical: MNXM77783 - - sbo: SBO:0000247 + - chebi: "CHEBI:17909" + - kegg.compound: "C00087" + - metanetx.chemical: "MNXM77783" + - sbo: "SBO:0000247" - !!omap - - id: s_1372 - - name: porphobilinogen - - compartment: c - - formula: C10H13N2O4 + - id: "s_1372" + - name: "porphobilinogen" + - compartment: "c" + - formula: "C10H13N2O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: ppbng - - chebi: CHEBI:58126 - - kegg.compound: C00931 - - metanetx.chemical: MNXM554 - - sbo: SBO:0000247 + - bigg.metabolite: "ppbng" + - chebi: "CHEBI:58126" + - kegg.compound: "C00931" + - metanetx.chemical: "MNXM554" + - sbo: "SBO:0000247" - !!omap - - id: s_1373 - - name: potassium - - compartment: c - - formula: K + - id: "s_1373" + - name: "potassium" + - compartment: "c" + - formula: "K" - charge: 0 - annotation: !!omap - - bigg.metabolite: k - - chebi: CHEBI:26216 - - kegg.compound: C00238 - - metanetx.chemical: MNXM77881 - - sbo: SBO:0000247 + - bigg.metabolite: "k" + - chebi: "CHEBI:26216" + - kegg.compound: "C00238" + - metanetx.chemical: "MNXM77881" + - sbo: "SBO:0000247" - !!omap - - id: s_1374 - - name: potassium - - compartment: e - - formula: K + - id: "s_1374" + - name: "potassium" + - compartment: "e" + - formula: "K" - charge: 0 - annotation: !!omap - - bigg.metabolite: k - - chebi: CHEBI:26216 - - kegg.compound: C00238 - - metanetx.chemical: MNXM77881 - - sbo: SBO:0000247 + - bigg.metabolite: "k" + - chebi: "CHEBI:26216" + - kegg.compound: "C00238" + - metanetx.chemical: "MNXM77881" + - sbo: "SBO:0000247" - !!omap - - id: s_1375 - - name: precorrin-2 - - compartment: c - - formula: C42H41N4O16 + - id: "s_1375" + - name: "precorrin-2" + - compartment: "c" + - formula: "C42H41N4O16" - charge: -7 - annotation: !!omap - - bigg.metabolite: dscl - - chebi: CHEBI:58827 - - kegg.compound: C02463 - - metanetx.chemical: MNXM672 - - sbo: SBO:0000247 + - bigg.metabolite: "dscl" + - chebi: "CHEBI:58827" + - kegg.compound: "C02463" + - metanetx.chemical: "MNXM672" + - sbo: "SBO:0000247" - !!omap - - id: s_1376 - - name: prenyl diphosphate(3-) - - compartment: c - - formula: C5H9O7P2 + - id: "s_1376" + - name: "prenyl diphosphate(3-)" + - compartment: "c" + - formula: "C5H9O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: dmpp - - chebi: CHEBI:57623 - - kegg.compound: C00235 - - metanetx.chemical: MNXM132 - - sbo: SBO:0000247 + - bigg.metabolite: "dmpp" + - chebi: "CHEBI:57623" + - kegg.compound: "C00235" + - metanetx.chemical: "MNXM132" + - sbo: "SBO:0000247" - !!omap - - id: s_1377 - - name: prephenate - - compartment: c - - formula: C10H8O6 + - id: "s_1377" + - name: "prephenate" + - compartment: "c" + - formula: "C10H8O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: pphn - - chebi: CHEBI:29934 - - kegg.compound: C00254 - - metanetx.chemical: MNXM503 - - sbo: SBO:0000247 + - bigg.metabolite: "pphn" + - chebi: "CHEBI:29934" + - kegg.compound: "C00254" + - metanetx.chemical: "MNXM503" + - sbo: "SBO:0000247" - !!omap - - id: s_1378 - - name: preuroporphyrinogen - - compartment: c - - formula: C40H38N4O17 + - id: "s_1378" + - name: "preuroporphyrinogen" + - compartment: "c" + - formula: "C40H38N4O17" - charge: -8 - annotation: !!omap - - bigg.metabolite: hmbil - - chebi: CHEBI:57845 - - kegg.compound: C01024 - - metanetx.chemical: MNXM547 - - sbo: SBO:0000247 + - bigg.metabolite: "hmbil" + - chebi: "CHEBI:57845" + - kegg.compound: "C01024" + - metanetx.chemical: "MNXM547" + - sbo: "SBO:0000247" - !!omap - - id: s_1379 - - name: Pro-tRNA(Pro) - - compartment: c - - formula: C5H9NOR + - id: "s_1379" + - name: "Pro-tRNA(Pro)" + - compartment: "c" + - formula: "C5H9NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: protrna - - chebi: CHEBI:29154 - - kegg.compound: C02702 - - metanetx.chemical: MNXM247 - - sbo: SBO:0000247 + - bigg.metabolite: "protrna" + - chebi: "CHEBI:29154" + - kegg.compound: "C02702" + - metanetx.chemical: "MNXM247" + - sbo: "SBO:0000247" - !!omap - - id: s_1382 - - name: propionyl-CoA - - compartment: m - - formula: C24H36N7O17P3S + - id: "s_1382" + - name: "propionyl-CoA" + - compartment: "m" + - formula: "C24H36N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ppcoa - - chebi: CHEBI:57386 - - kegg.compound: C00100 - - metanetx.chemical: MNXM86 - - sbo: SBO:0000247 + - bigg.metabolite: "ppcoa" + - chebi: "CHEBI:57386" + - kegg.compound: "C00100" + - metanetx.chemical: "MNXM86" + - sbo: "SBO:0000247" - !!omap - - id: s_1383 - - name: protoporphyrin - - compartment: m - - formula: C34H32N4O4 + - id: "s_1383" + - name: "protoporphyrin" + - compartment: "m" + - formula: "C34H32N4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: ppp9 - - chebi: CHEBI:36159 - - kegg.compound: C02191 - - metanetx.chemical: MNXM346 - - sbo: SBO:0000247 + - bigg.metabolite: "ppp9" + - chebi: "CHEBI:36159" + - kegg.compound: "C02191" + - metanetx.chemical: "MNXM346" + - sbo: "SBO:0000247" - !!omap - - id: s_1384 - - name: protoporphyrinogen - - compartment: c - - formula: C34H38N4O4 + - id: "s_1384" + - name: "protoporphyrinogen" + - compartment: "c" + - formula: "C34H38N4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: pppg9 - - chebi: CHEBI:57307 - - kegg.compound: C01079 - - metanetx.chemical: MNXM351 - - sbo: SBO:0000247 + - bigg.metabolite: "pppg9" + - chebi: "CHEBI:57307" + - kegg.compound: "C01079" + - metanetx.chemical: "MNXM351" + - sbo: "SBO:0000247" - !!omap - - id: s_1385 - - name: protoporphyrinogen - - compartment: m - - formula: C34H38N4O4 + - id: "s_1385" + - name: "protoporphyrinogen" + - compartment: "m" + - formula: "C34H38N4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: pppg9 - - chebi: CHEBI:57307 - - kegg.compound: C01079 - - metanetx.chemical: MNXM351 - - sbo: SBO:0000247 + - bigg.metabolite: "pppg9" + - chebi: "CHEBI:57307" + - kegg.compound: "C01079" + - metanetx.chemical: "MNXM351" + - sbo: "SBO:0000247" - !!omap - - id: s_1386 - - name: PRPP - - compartment: c - - formula: C5H8O14P3 + - id: "s_1386" + - name: "PRPP" + - compartment: "c" + - formula: "C5H8O14P3" - charge: -5 - annotation: !!omap - - bigg.metabolite: prpp - - chebi: CHEBI:58017 - - kegg.compound: C00119 - - metanetx.chemical: MNXM91 - - sbo: SBO:0000247 + - bigg.metabolite: "prpp" + - chebi: "CHEBI:58017" + - kegg.compound: "C00119" + - metanetx.chemical: "MNXM91" + - sbo: "SBO:0000247" - !!omap - - id: s_1387 - - name: PRPP - - compartment: m - - formula: C5H8O14P3 + - id: "s_1387" + - name: "PRPP" + - compartment: "m" + - formula: "C5H8O14P3" - charge: -5 - annotation: !!omap - - bigg.metabolite: prpp - - chebi: CHEBI:58017 - - kegg.compound: C00119 - - metanetx.chemical: MNXM91 - - sbo: SBO:0000247 + - bigg.metabolite: "prpp" + - chebi: "CHEBI:58017" + - kegg.compound: "C00119" + - metanetx.chemical: "MNXM91" + - sbo: "SBO:0000247" - !!omap - - id: s_1388 - - name: pseudouridine 5'-phosphate - - compartment: c - - formula: C9H11N2O9P + - id: "s_1388" + - name: "pseudouridine 5'-phosphate" + - compartment: "c" + - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:58380 - - kegg.compound: C01168 - - metanetx.chemical: MNXM2276 - - sbo: SBO:0000247 + - chebi: "CHEBI:58380" + - kegg.compound: "C01168" + - metanetx.chemical: "MNXM2276" + - sbo: "SBO:0000247" - !!omap - - id: s_1389 - - name: putrescine - - compartment: c - - formula: C4H14N2 + - id: "s_1389" + - name: "putrescine" + - compartment: "c" + - formula: "C4H14N2" - charge: 2 - annotation: !!omap - - bigg.metabolite: ptrc - - chebi: CHEBI:326268 - - kegg.compound: C00134 - - metanetx.chemical: MNXM118 - - sbo: SBO:0000247 + - bigg.metabolite: "ptrc" + - chebi: "CHEBI:326268" + - kegg.compound: "C00134" + - metanetx.chemical: "MNXM118" + - sbo: "SBO:0000247" - !!omap - - id: s_1390 - - name: putrescine - - compartment: e - - formula: C4H14N2 + - id: "s_1390" + - name: "putrescine" + - compartment: "e" + - formula: "C4H14N2" - charge: 2 - annotation: !!omap - - bigg.metabolite: ptrc - - chebi: CHEBI:326268 - - kegg.compound: C00134 - - metanetx.chemical: MNXM118 - - sbo: SBO:0000247 + - bigg.metabolite: "ptrc" + - chebi: "CHEBI:326268" + - kegg.compound: "C00134" + - metanetx.chemical: "MNXM118" + - sbo: "SBO:0000247" - !!omap - - id: s_1391 - - name: putrescine - - compartment: v - - formula: C4H14N2 + - id: "s_1391" + - name: "putrescine" + - compartment: "v" + - formula: "C4H14N2" - charge: 2 - annotation: !!omap - - bigg.metabolite: ptrc - - chebi: CHEBI:326268 - - kegg.compound: C00134 - - metanetx.chemical: MNXM118 - - sbo: SBO:0000247 + - bigg.metabolite: "ptrc" + - chebi: "CHEBI:326268" + - kegg.compound: "C00134" + - metanetx.chemical: "MNXM118" + - sbo: "SBO:0000247" - !!omap - - id: s_1392 - - name: pyridoxal - - compartment: c - - formula: C8H9NO3 + - id: "s_1392" + - name: "pyridoxal" + - compartment: "c" + - formula: "C8H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: pydx - - chebi: CHEBI:17310 - - kegg.compound: C00250 - - metanetx.chemical: MNXM311 - - sbo: SBO:0000247 + - bigg.metabolite: "pydx" + - chebi: "CHEBI:17310" + - kegg.compound: "C00250" + - metanetx.chemical: "MNXM311" + - sbo: "SBO:0000247" - !!omap - - id: s_1393 - - name: pyridoxal 5'-phosphate - - compartment: c - - formula: C8H8NO6P + - id: "s_1393" + - name: "pyridoxal 5'-phosphate" + - compartment: "c" + - formula: "C8H8NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pydx5p - - chebi: CHEBI:597326 - - kegg.compound: C00018 - - metanetx.chemical: MNXM161 - - sbo: SBO:0000247 + - bigg.metabolite: "pydx5p" + - chebi: "CHEBI:597326" + - kegg.compound: "C00018" + - metanetx.chemical: "MNXM161" + - sbo: "SBO:0000247" - !!omap - - id: s_1394 - - name: pyridoxamine - - compartment: c - - formula: C8H13N2O2 + - id: "s_1394" + - name: "pyridoxamine" + - compartment: "c" + - formula: "C8H13N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: pydam - - chebi: CHEBI:57761 - - kegg.compound: C00534 - - metanetx.chemical: MNXM548 - - sbo: SBO:0000247 + - bigg.metabolite: "pydam" + - chebi: "CHEBI:57761" + - kegg.compound: "C00534" + - metanetx.chemical: "MNXM548" + - sbo: "SBO:0000247" - !!omap - - id: s_1395 - - name: pyridoxamine 5'-phosphate - - compartment: c - - formula: C8H12N2O5P + - id: "s_1395" + - name: "pyridoxamine 5'-phosphate" + - compartment: "c" + - formula: "C8H12N2O5P" - charge: -1 - annotation: !!omap - - bigg.metabolite: pyam5p - - chebi: CHEBI:58451 - - kegg.compound: C00647 - - metanetx.chemical: MNXM366 - - sbo: SBO:0000247 + - bigg.metabolite: "pyam5p" + - chebi: "CHEBI:58451" + - kegg.compound: "C00647" + - metanetx.chemical: "MNXM366" + - sbo: "SBO:0000247" - !!omap - - id: s_1396 - - name: pyridoxine - - compartment: c - - formula: C8H11NO3 + - id: "s_1396" + - name: "pyridoxine" + - compartment: "c" + - formula: "C8H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: pydxn - - chebi: CHEBI:16709 - - kegg.compound: C00314 - - metanetx.chemical: MNXM419 - - sbo: SBO:0000247 + - bigg.metabolite: "pydxn" + - chebi: "CHEBI:16709" + - kegg.compound: "C00314" + - metanetx.chemical: "MNXM419" + - sbo: "SBO:0000247" - !!omap - - id: s_1397 - - name: pyridoxine - - compartment: e - - formula: C8H11NO3 + - id: "s_1397" + - name: "pyridoxine" + - compartment: "e" + - formula: "C8H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: pydxn - - chebi: CHEBI:16709 - - kegg.compound: C00314 - - metanetx.chemical: MNXM419 - - sbo: SBO:0000247 + - bigg.metabolite: "pydxn" + - chebi: "CHEBI:16709" + - kegg.compound: "C00314" + - metanetx.chemical: "MNXM419" + - sbo: "SBO:0000247" - !!omap - - id: s_1398 - - name: pyridoxine 5'-phosphate - - compartment: c - - formula: C8H10NO6P + - id: "s_1398" + - name: "pyridoxine 5'-phosphate" + - compartment: "c" + - formula: "C8H10NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pdx5p - - chebi: CHEBI:58589 - - kegg.compound: C00627 - - metanetx.chemical: MNXM454 - - sbo: SBO:0000247 + - bigg.metabolite: "pdx5p" + - chebi: "CHEBI:58589" + - kegg.compound: "C00627" + - metanetx.chemical: "MNXM454" + - sbo: "SBO:0000247" - !!omap - - id: s_1399 - - name: pyruvate - - compartment: c - - formula: C3H3O3 + - id: "s_1399" + - name: "pyruvate" + - compartment: "c" + - formula: "C3H3O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: pyr - - chebi: CHEBI:15361 - - kegg.compound: C00022 - - metanetx.chemical: MNXM23 - - sbo: SBO:0000247 + - bigg.metabolite: "pyr" + - chebi: "CHEBI:15361" + - kegg.compound: "C00022" + - metanetx.chemical: "MNXM23" + - sbo: "SBO:0000247" - !!omap - - id: s_1400 - - name: pyruvate - - compartment: e - - formula: C3H3O3 + - id: "s_1400" + - name: "pyruvate" + - compartment: "e" + - formula: "C3H3O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: pyr - - chebi: CHEBI:15361 - - kegg.compound: C00022 - - metanetx.chemical: MNXM23 - - sbo: SBO:0000247 + - bigg.metabolite: "pyr" + - chebi: "CHEBI:15361" + - kegg.compound: "C00022" + - metanetx.chemical: "MNXM23" + - sbo: "SBO:0000247" - !!omap - - id: s_1401 - - name: pyruvate - - compartment: m - - formula: C3H3O3 + - id: "s_1401" + - name: "pyruvate" + - compartment: "m" + - formula: "C3H3O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: pyr - - chebi: CHEBI:15361 - - kegg.compound: C00022 - - metanetx.chemical: MNXM23 - - sbo: SBO:0000247 + - bigg.metabolite: "pyr" + - chebi: "CHEBI:15361" + - kegg.compound: "C00022" + - metanetx.chemical: "MNXM23" + - sbo: "SBO:0000247" - !!omap - - id: s_1403 - - name: quinolinate - - compartment: c - - formula: C7H3NO4 + - id: "s_1403" + - name: "quinolinate" + - compartment: "c" + - formula: "C7H3NO4" - charge: -2 - annotation: !!omap - - bigg.metabolite: quln - - chebi: CHEBI:29959 - - kegg.compound: C03722 - - metanetx.chemical: MNXM555 - - sbo: SBO:0000247 + - bigg.metabolite: "quln" + - chebi: "CHEBI:29959" + - kegg.compound: "C03722" + - metanetx.chemical: "MNXM555" + - sbo: "SBO:0000247" - !!omap - - id: s_1404 - - name: quinolinate - - compartment: m - - formula: C7H3NO4 + - id: "s_1404" + - name: "quinolinate" + - compartment: "m" + - formula: "C7H3NO4" - charge: -2 - annotation: !!omap - - bigg.metabolite: quln - - chebi: CHEBI:29959 - - kegg.compound: C03722 - - metanetx.chemical: MNXM555 - - sbo: SBO:0000247 + - bigg.metabolite: "quln" + - chebi: "CHEBI:29959" + - kegg.compound: "C03722" + - metanetx.chemical: "MNXM555" + - sbo: "SBO:0000247" - !!omap - - id: s_1405 - - name: riboflavin - - compartment: c - - formula: C17H19N4O6 + - id: "s_1405" + - name: "riboflavin" + - compartment: "c" + - formula: "C17H19N4O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: ribflv - - chebi: CHEBI:57986 - - kegg.compound: C00255 - - metanetx.chemical: MNXM270 - - sbo: SBO:0000247 + - bigg.metabolite: "ribflv" + - chebi: "CHEBI:57986" + - kegg.compound: "C00255" + - metanetx.chemical: "MNXM270" + - sbo: "SBO:0000247" - !!omap - - id: s_1406 - - name: riboflavin - - compartment: e - - formula: C17H19N4O6 + - id: "s_1406" + - name: "riboflavin" + - compartment: "e" + - formula: "C17H19N4O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: ribflv - - chebi: CHEBI:57986 - - kegg.compound: C00255 - - metanetx.chemical: MNXM270 - - sbo: SBO:0000247 + - bigg.metabolite: "ribflv" + - chebi: "CHEBI:57986" + - kegg.compound: "C00255" + - metanetx.chemical: "MNXM270" + - sbo: "SBO:0000247" - !!omap - - id: s_1407 - - name: riboflavin - - compartment: m - - formula: C17H19N4O6 + - id: "s_1407" + - name: "riboflavin" + - compartment: "m" + - formula: "C17H19N4O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: ribflv - - chebi: CHEBI:57986 - - kegg.compound: C00255 - - metanetx.chemical: MNXM270 - - sbo: SBO:0000247 + - bigg.metabolite: "ribflv" + - chebi: "CHEBI:57986" + - kegg.compound: "C00255" + - metanetx.chemical: "MNXM270" + - sbo: "SBO:0000247" - !!omap - - id: s_1408 - - name: ribose-5-phosphate - - compartment: c - - formula: C5H9O8P + - id: "s_1408" + - name: "ribose-5-phosphate" + - compartment: "c" + - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: r5p - - chebi: CHEBI:18189 - - kegg.compound: C03736 - - metanetx.chemical: MNXM15900 - - sbo: SBO:0000247 + - bigg.metabolite: "r5p" + - chebi: "CHEBI:18189" + - kegg.compound: "C03736" + - metanetx.chemical: "MNXM15900" + - sbo: "SBO:0000247" - !!omap - - id: s_1409 - - name: S(8)-aminomethyldihydrolipoamide - - compartment: m - - formula: C9H21N2OS2 + - id: "s_1409" + - name: "S(8)-aminomethyldihydrolipoamide" + - compartment: "m" + - formula: "C9H21N2OS2" - charge: 1 - annotation: !!omap - - bigg.metabolite: alpam - - chebi: CHEBI:50622 - - metanetx.chemical: MNXM81220 - - sbo: SBO:0000247 + - bigg.metabolite: "alpam" + - chebi: "CHEBI:50622" + - metanetx.chemical: "MNXM81220" + - sbo: "SBO:0000247" - !!omap - - id: s_1410 - - name: S(8)-aminomethyldihydrolipoylprotein - - compartment: m - - formula: C9H19N2OS2R + - id: "s_1410" + - name: "S(8)-aminomethyldihydrolipoylprotein" + - compartment: "m" + - formula: "C9H19N2OS2R" - charge: 0 - annotation: !!omap - - bigg.metabolite: alpro - - chebi: CHEBI:16882 - - kegg.compound: C01242 - - metanetx.chemical: MNXM81221 - - sbo: SBO:0000247 + - bigg.metabolite: "alpro" + - chebi: "CHEBI:16882" + - kegg.compound: "C01242" + - metanetx.chemical: "MNXM81221" + - sbo: "SBO:0000247" - !!omap - - id: s_1411 - - name: S(8)-succinyldihydrolipoamide - - compartment: m - - formula: C12H20NO4S2 + - id: "s_1411" + - name: "S(8)-succinyldihydrolipoamide" + - compartment: "m" + - formula: "C12H20NO4S2" - charge: -1 - annotation: !!omap - - bigg.metabolite: sdhlam - - chebi: CHEBI:17432 - - kegg.compound: C01169 - - metanetx.chemical: MNXM3710 - - sbo: SBO:0000247 + - bigg.metabolite: "sdhlam" + - chebi: "CHEBI:17432" + - kegg.compound: "C01169" + - metanetx.chemical: "MNXM3710" + - sbo: "SBO:0000247" - !!omap - - id: s_1412 - - name: S-adenosyl-4-methylthio-2-oxobutanoate - - compartment: c - - formula: C15H19N5O6S + - id: "s_1412" + - name: "S-adenosyl-4-methylthio-2-oxobutanoate" + - compartment: "c" + - formula: "C15H19N5O6S" - charge: 0 - annotation: !!omap - - bigg.metabolite: amob - - chebi: CHEBI:16490 - - kegg.compound: C04425 - - metanetx.chemical: MNXM3090 - - sbo: SBO:0000247 + - bigg.metabolite: "amob" + - chebi: "CHEBI:16490" + - kegg.compound: "C04425" + - metanetx.chemical: "MNXM3090" + - sbo: "SBO:0000247" - !!omap - - id: s_1413 - - name: S-adenosyl-L-homocysteine - - compartment: c - - formula: C14H20N6O5S + - id: "s_1413" + - name: "S-adenosyl-L-homocysteine" + - compartment: "c" + - formula: "C14H20N6O5S" - charge: 0 - annotation: !!omap - - bigg.metabolite: ahcys - - chebi: CHEBI:16680 - - kegg.compound: C00021 - - metanetx.chemical: MNXM19 - - sbo: SBO:0000247 + - bigg.metabolite: "ahcys" + - chebi: "CHEBI:16680" + - kegg.compound: "C00021" + - metanetx.chemical: "MNXM19" + - sbo: "SBO:0000247" - !!omap - - id: s_1415 - - name: S-adenosyl-L-homocysteine - - compartment: m - - formula: C14H20N6O5S + - id: "s_1415" + - name: "S-adenosyl-L-homocysteine" + - compartment: "m" + - formula: "C14H20N6O5S" - charge: 0 - annotation: !!omap - - bigg.metabolite: ahcys - - chebi: CHEBI:16680 - - kegg.compound: C00021 - - metanetx.chemical: MNXM19 - - sbo: SBO:0000247 + - bigg.metabolite: "ahcys" + - chebi: "CHEBI:16680" + - kegg.compound: "C00021" + - metanetx.chemical: "MNXM19" + - sbo: "SBO:0000247" - !!omap - - id: s_1416 - - name: S-adenosyl-L-methionine - - compartment: c - - formula: C15H23N6O5S + - id: "s_1416" + - name: "S-adenosyl-L-methionine" + - compartment: "c" + - formula: "C15H23N6O5S" - charge: 1 - annotation: !!omap - - bigg.metabolite: amet - - chebi: CHEBI:15414 - - kegg.compound: C00019 - - metanetx.chemical: MNXM16 - - sbo: SBO:0000247 + - bigg.metabolite: "amet" + - chebi: "CHEBI:15414" + - kegg.compound: "C00019" + - metanetx.chemical: "MNXM16" + - sbo: "SBO:0000247" - !!omap - - id: s_1418 - - name: S-adenosyl-L-methionine - - compartment: e - - formula: C15H23N6O5S + - id: "s_1418" + - name: "S-adenosyl-L-methionine" + - compartment: "e" + - formula: "C15H23N6O5S" - charge: 1 - annotation: !!omap - - bigg.metabolite: amet - - chebi: CHEBI:15414 - - kegg.compound: C00019 - - metanetx.chemical: MNXM16 - - sbo: SBO:0000247 + - bigg.metabolite: "amet" + - chebi: "CHEBI:15414" + - kegg.compound: "C00019" + - metanetx.chemical: "MNXM16" + - sbo: "SBO:0000247" - !!omap - - id: s_1419 - - name: S-adenosyl-L-methionine - - compartment: m - - formula: C15H23N6O5S + - id: "s_1419" + - name: "S-adenosyl-L-methionine" + - compartment: "m" + - formula: "C15H23N6O5S" - charge: 1 - annotation: !!omap - - bigg.metabolite: amet - - chebi: CHEBI:15414 - - kegg.compound: C00019 - - metanetx.chemical: MNXM16 - - sbo: SBO:0000247 + - bigg.metabolite: "amet" + - chebi: "CHEBI:15414" + - kegg.compound: "C00019" + - metanetx.chemical: "MNXM16" + - sbo: "SBO:0000247" - !!omap - - id: s_1420 - - name: S-adenosylmethioninamine - - compartment: c - - formula: C14H24N6O3S + - id: "s_1420" + - name: "S-adenosylmethioninamine" + - compartment: "c" + - formula: "C14H24N6O3S" - charge: 2 - annotation: !!omap - - bigg.metabolite: ametam - - chebi: CHEBI:57443 - - kegg.compound: C01137 - - metanetx.chemical: MNXM321 - - sbo: SBO:0000247 + - bigg.metabolite: "ametam" + - chebi: "CHEBI:57443" + - kegg.compound: "C01137" + - metanetx.chemical: "MNXM321" + - sbo: "SBO:0000247" - !!omap - - id: s_1421 - - name: S-formylglutathione - - compartment: c - - formula: C11H16N3O7S + - id: "s_1421" + - name: "S-formylglutathione" + - compartment: "c" + - formula: "C11H16N3O7S" - charge: -1 - annotation: !!omap - - bigg.metabolite: Sfglutth - - chebi: CHEBI:57688 - - kegg.compound: C01031 - - metanetx.chemical: MNXM952 - - sbo: SBO:0000247 + - bigg.metabolite: "Sfglutth" + - chebi: "CHEBI:57688" + - kegg.compound: "C01031" + - metanetx.chemical: "MNXM952" + - sbo: "SBO:0000247" - !!omap - - id: s_1422 - - name: S-methyl-5-thio-alpha-D-ribose 1-phosphate - - compartment: c - - formula: C6H11O7PS + - id: "s_1422" + - name: "S-methyl-5-thio-alpha-D-ribose 1-phosphate" + - compartment: "c" + - formula: "C6H11O7PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: 5mdr1p - - chebi: CHEBI:58533 - - kegg.compound: C04188 - - metanetx.chemical: MNXM407 - - sbo: SBO:0000247 + - bigg.metabolite: "5mdr1p" + - chebi: "CHEBI:58533" + - kegg.compound: "C04188" + - metanetx.chemical: "MNXM407" + - sbo: "SBO:0000247" - !!omap - - id: s_1423 - - name: S-methyl-5-thio-D-ribulose 1-phosphate - - compartment: c - - formula: C6H11O7PS + - id: "s_1423" + - name: "S-methyl-5-thio-D-ribulose 1-phosphate" + - compartment: "c" + - formula: "C6H11O7PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: 5mdru1p - - chebi: CHEBI:58548 - - kegg.compound: C04582 - - metanetx.chemical: MNXM522 - - sbo: SBO:0000247 + - bigg.metabolite: "5mdru1p" + - chebi: "CHEBI:58548" + - kegg.compound: "C04582" + - metanetx.chemical: "MNXM522" + - sbo: "SBO:0000247" - !!omap - - id: s_1424 - - name: S-methyl-L-methionine - - compartment: c - - formula: C6H14NO2S + - id: "s_1424" + - name: "S-methyl-L-methionine" + - compartment: "c" + - formula: "C6H14NO2S" - charge: 1 - annotation: !!omap - - bigg.metabolite: mmet - - chebi: CHEBI:17728 - - kegg.compound: C03172 - - metanetx.chemical: MNXM1119 - - sbo: SBO:0000247 + - bigg.metabolite: "mmet" + - chebi: "CHEBI:17728" + - kegg.compound: "C03172" + - metanetx.chemical: "MNXM1119" + - sbo: "SBO:0000247" - !!omap - - id: s_1425 - - name: S-methyl-L-methionine - - compartment: e - - formula: C6H14NO2S + - id: "s_1425" + - name: "S-methyl-L-methionine" + - compartment: "e" + - formula: "C6H14NO2S" - charge: 1 - annotation: !!omap - - bigg.metabolite: mmet - - chebi: CHEBI:17728 - - kegg.compound: C03172 - - metanetx.chemical: MNXM1119 - - sbo: SBO:0000247 + - bigg.metabolite: "mmet" + - chebi: "CHEBI:17728" + - kegg.compound: "C03172" + - metanetx.chemical: "MNXM1119" + - sbo: "SBO:0000247" - !!omap - - id: s_1426 - - name: sedoheptulose 1,7-bisphosphate - - compartment: c - - formula: C7H12O13P2 + - id: "s_1426" + - name: "sedoheptulose 1,7-bisphosphate" + - compartment: "c" + - formula: "C7H12O13P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: s17bp - - chebi: CHEBI:58335 - - kegg.compound: C00447 - - metanetx.chemical: MNXM1294 - - sbo: SBO:0000247 + - bigg.metabolite: "s17bp" + - chebi: "CHEBI:58335" + - kegg.compound: "C00447" + - metanetx.chemical: "MNXM1294" + - sbo: "SBO:0000247" - !!omap - - id: s_1427 - - name: sedoheptulose 7-phosphate - - compartment: c - - formula: C7H13O10P + - id: "s_1427" + - name: "sedoheptulose 7-phosphate" + - compartment: "c" + - formula: "C7H13O10P" - charge: -2 - annotation: !!omap - - bigg.metabolite: s7p - - chebi: CHEBI:57483 - - kegg.compound: C05382 - - metanetx.chemical: MNXM271 - - sbo: SBO:0000247 + - bigg.metabolite: "s7p" + - chebi: "CHEBI:57483" + - kegg.compound: "C05382" + - metanetx.chemical: "MNXM271" + - sbo: "SBO:0000247" - !!omap - - id: s_1428 - - name: Ser-tRNA(Ser) - - compartment: c - - formula: C3H7NO2R + - id: "s_1428" + - name: "Ser-tRNA(Ser)" + - compartment: "c" + - formula: "C3H7NO2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: sertrna - - chebi: CHEBI:29162 - - kegg.compound: C02553 - - metanetx.chemical: MNXM165150 - - sbo: SBO:0000247 + - bigg.metabolite: "sertrna" + - chebi: "CHEBI:29162" + - kegg.compound: "C02553" + - metanetx.chemical: "MNXM165150" + - sbo: "SBO:0000247" - !!omap - - id: s_1429 - - name: shikimate - - compartment: c - - formula: C7H9O5 + - id: "s_1429" + - name: "shikimate" + - compartment: "c" + - formula: "C7H9O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: skm - - chebi: CHEBI:36208 - - kegg.compound: C00493 - - metanetx.chemical: MNXM602 - - sbo: SBO:0000247 + - bigg.metabolite: "skm" + - chebi: "CHEBI:36208" + - kegg.compound: "C00493" + - metanetx.chemical: "MNXM602" + - sbo: "SBO:0000247" - !!omap - - id: s_1430 - - name: siroheme - - compartment: c - - formula: C42H36FeN4O16 + - id: "s_1430" + - name: "siroheme" + - compartment: "c" + - formula: "C42H36FeN4O16" - charge: -8 - annotation: !!omap - - bigg.metabolite: sheme - - chebi: CHEBI:60052 - - kegg.compound: C00748 - - metanetx.chemical: MNXM82173 - - sbo: SBO:0000247 + - bigg.metabolite: "sheme" + - chebi: "CHEBI:60052" + - kegg.compound: "C00748" + - metanetx.chemical: "MNXM82173" + - sbo: "SBO:0000247" - !!omap - - id: s_1431 - - name: sirohydrochlorin - - compartment: c - - formula: C42H38N4O16 + - id: "s_1431" + - name: "sirohydrochlorin" + - compartment: "c" + - formula: "C42H38N4O16" - charge: -8 - annotation: !!omap - - bigg.metabolite: scl - - chebi: CHEBI:58351 - - kegg.compound: C05778 - - metanetx.chemical: MNXM863 - - sbo: SBO:0000247 + - bigg.metabolite: "scl" + - chebi: "CHEBI:58351" + - kegg.compound: "C05778" + - metanetx.chemical: "MNXM863" + - sbo: "SBO:0000247" - !!omap - - id: s_1432 - - name: sn-glycero-3-phosphocholine - - compartment: ce - - formula: C8H20NO6P + - id: "s_1432" + - name: "sn-glycero-3-phosphocholine" + - compartment: "ce" + - formula: "C8H20NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: g3pc - - chebi: CHEBI:16870 - - kegg.compound: C00670 - - metanetx.chemical: MNXM367 - - sbo: SBO:0000247 + - bigg.metabolite: "g3pc" + - chebi: "CHEBI:16870" + - kegg.compound: "C00670" + - metanetx.chemical: "MNXM367" + - sbo: "SBO:0000247" - !!omap - - id: s_1433 - - name: sn-glycero-3-phosphocholine - - compartment: c - - formula: C8H20NO6P + - id: "s_1433" + - name: "sn-glycero-3-phosphocholine" + - compartment: "c" + - formula: "C8H20NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: g3pc - - chebi: CHEBI:16870 - - kegg.compound: C00670 - - metanetx.chemical: MNXM367 - - sbo: SBO:0000247 + - bigg.metabolite: "g3pc" + - chebi: "CHEBI:16870" + - kegg.compound: "C00670" + - metanetx.chemical: "MNXM367" + - sbo: "SBO:0000247" - !!omap - - id: s_1435 - - name: sn-glycero-3-phosphocholine - - compartment: e - - formula: C8H20NO6P + - id: "s_1435" + - name: "sn-glycero-3-phosphocholine" + - compartment: "e" + - formula: "C8H20NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: g3pc - - chebi: CHEBI:16870 - - kegg.compound: C00670 - - metanetx.chemical: MNXM367 - - sbo: SBO:0000247 + - bigg.metabolite: "g3pc" + - chebi: "CHEBI:16870" + - kegg.compound: "C00670" + - metanetx.chemical: "MNXM367" + - sbo: "SBO:0000247" - !!omap - - id: s_1437 - - name: sodium - - compartment: c - - formula: Na + - id: "s_1437" + - name: "sodium" + - compartment: "c" + - formula: "Na" - charge: 0 - annotation: !!omap - - bigg.metabolite: na1 - - chebi: CHEBI:26708 - - kegg.compound: C01330 - - metanetx.chemical: MNXM82334 - - sbo: SBO:0000247 + - bigg.metabolite: "na1" + - chebi: "CHEBI:26708" + - kegg.compound: "C01330" + - metanetx.chemical: "MNXM82334" + - sbo: "SBO:0000247" - !!omap - - id: s_1438 - - name: sodium - - compartment: e - - formula: Na + - id: "s_1438" + - name: "sodium" + - compartment: "e" + - formula: "Na" - charge: 0 - annotation: !!omap - - bigg.metabolite: na1 - - chebi: CHEBI:26708 - - kegg.compound: C01330 - - metanetx.chemical: MNXM82334 - - sbo: SBO:0000247 + - bigg.metabolite: "na1" + - chebi: "CHEBI:26708" + - kegg.compound: "C01330" + - metanetx.chemical: "MNXM82334" + - sbo: "SBO:0000247" - !!omap - - id: s_1439 - - name: spermidine - - compartment: c - - formula: C7H22N3 + - id: "s_1439" + - name: "spermidine" + - compartment: "c" + - formula: "C7H22N3" - charge: 3 - annotation: !!omap - - bigg.metabolite: spmd - - chebi: CHEBI:57834 - - kegg.compound: C00315 - - metanetx.chemical: MNXM124 - - sbo: SBO:0000247 + - bigg.metabolite: "spmd" + - chebi: "CHEBI:57834" + - kegg.compound: "C00315" + - metanetx.chemical: "MNXM124" + - sbo: "SBO:0000247" - !!omap - - id: s_1440 - - name: spermidine - - compartment: e - - formula: C7H22N3 + - id: "s_1440" + - name: "spermidine" + - compartment: "e" + - formula: "C7H22N3" - charge: 3 - annotation: !!omap - - bigg.metabolite: spmd - - chebi: CHEBI:57834 - - kegg.compound: C00315 - - metanetx.chemical: MNXM124 - - sbo: SBO:0000247 + - bigg.metabolite: "spmd" + - chebi: "CHEBI:57834" + - kegg.compound: "C00315" + - metanetx.chemical: "MNXM124" + - sbo: "SBO:0000247" - !!omap - - id: s_1441 - - name: spermidine - - compartment: v - - formula: C7H22N3 + - id: "s_1441" + - name: "spermidine" + - compartment: "v" + - formula: "C7H22N3" - charge: 3 - annotation: !!omap - - bigg.metabolite: spmd - - chebi: CHEBI:57834 - - kegg.compound: C00315 - - metanetx.chemical: MNXM124 - - sbo: SBO:0000247 + - bigg.metabolite: "spmd" + - chebi: "CHEBI:57834" + - kegg.compound: "C00315" + - metanetx.chemical: "MNXM124" + - sbo: "SBO:0000247" - !!omap - - id: s_1442 - - name: spermine - - compartment: c - - formula: C10H30N4 + - id: "s_1442" + - name: "spermine" + - compartment: "c" + - formula: "C10H30N4" - charge: 4 - annotation: !!omap - - bigg.metabolite: sprm - - chebi: CHEBI:45725 - - kegg.compound: C00750 - - metanetx.chemical: MNXM408 - - sbo: SBO:0000247 + - bigg.metabolite: "sprm" + - chebi: "CHEBI:45725" + - kegg.compound: "C00750" + - metanetx.chemical: "MNXM408" + - sbo: "SBO:0000247" - !!omap - - id: s_1443 - - name: spermine - - compartment: e - - formula: C10H30N4 + - id: "s_1443" + - name: "spermine" + - compartment: "e" + - formula: "C10H30N4" - charge: 4 - annotation: !!omap - - bigg.metabolite: sprm - - chebi: CHEBI:45725 - - kegg.compound: C00750 - - metanetx.chemical: MNXM408 - - sbo: SBO:0000247 + - bigg.metabolite: "sprm" + - chebi: "CHEBI:45725" + - kegg.compound: "C00750" + - metanetx.chemical: "MNXM408" + - sbo: "SBO:0000247" - !!omap - - id: s_1444 - - name: spermine - - compartment: v - - formula: C10H30N4 + - id: "s_1444" + - name: "spermine" + - compartment: "v" + - formula: "C10H30N4" - charge: 4 - annotation: !!omap - - bigg.metabolite: sprm - - chebi: CHEBI:45725 - - kegg.compound: C00750 - - metanetx.chemical: MNXM408 - - sbo: SBO:0000247 + - bigg.metabolite: "sprm" + - chebi: "CHEBI:45725" + - kegg.compound: "C00750" + - metanetx.chemical: "MNXM408" + - sbo: "SBO:0000247" - !!omap - - id: s_1445 - - name: sphinganine - - compartment: er - - formula: C18H40NO2 + - id: "s_1445" + - name: "sphinganine" + - compartment: "er" + - formula: "C18H40NO2" - charge: 1 - annotation: !!omap - - bigg.metabolite: sphgn - - chebi: CHEBI:57817 - - kegg.compound: C00836 - - metanetx.chemical: MNXM302 - - sbo: SBO:0000247 + - bigg.metabolite: "sphgn" + - chebi: "CHEBI:57817" + - kegg.compound: "C00836" + - metanetx.chemical: "MNXM302" + - sbo: "SBO:0000247" - !!omap - - id: s_1446 - - name: sphinganine 1-phosphate - - compartment: er - - formula: C18H39NO5P + - id: "s_1446" + - name: "sphinganine 1-phosphate" + - compartment: "er" + - formula: "C18H39NO5P" - charge: -1 - annotation: !!omap - - bigg.metabolite: sph1p - - chebi: CHEBI:57939 - - kegg.compound: C01120 - - metanetx.chemical: MNXM487 - - sbo: SBO:0000247 + - bigg.metabolite: "sph1p" + - chebi: "CHEBI:57939" + - kegg.compound: "C01120" + - metanetx.chemical: "MNXM487" + - sbo: "SBO:0000247" - !!omap - - id: s_1447 - - name: squalene - - compartment: c - - formula: C30H50 + - id: "s_1447" + - name: "squalene" + - compartment: "c" + - formula: "C30H50" - charge: 0 - annotation: !!omap - - bigg.metabolite: sql - - chebi: CHEBI:15440 - - kegg.compound: C00751 - - metanetx.chemical: MNXM292 - - sbo: SBO:0000247 + - bigg.metabolite: "sql" + - chebi: "CHEBI:15440" + - kegg.compound: "C00751" + - metanetx.chemical: "MNXM292" + - sbo: "SBO:0000247" - !!omap - - id: s_1448 - - name: squalene - - compartment: er - - formula: C30H50 + - id: "s_1448" + - name: "squalene" + - compartment: "er" + - formula: "C30H50" - charge: 0 - annotation: !!omap - - bigg.metabolite: sql - - chebi: CHEBI:15440 - - kegg.compound: C00751 - - metanetx.chemical: MNXM292 - - sbo: SBO:0000247 + - bigg.metabolite: "sql" + - chebi: "CHEBI:15440" + - kegg.compound: "C00751" + - metanetx.chemical: "MNXM292" + - sbo: "SBO:0000247" - !!omap - - id: s_1449 - - name: stearate - - compartment: c - - formula: C18H35O2 + - id: "s_1449" + - name: "stearate" + - compartment: "c" + - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdca - - chebi: CHEBI:25629 - - kegg.compound: C01530 - - metanetx.chemical: MNXM236 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - - id: s_1450 - - name: stearate - - compartment: e - - formula: C18H35O2 + - id: "s_1450" + - name: "stearate" + - compartment: "e" + - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdca - - chebi: CHEBI:25629 - - kegg.compound: C01530 - - metanetx.chemical: MNXM236 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - - id: s_1451 - - name: stearate - - compartment: p - - formula: C18H35O2 + - id: "s_1451" + - name: "stearate" + - compartment: "p" + - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdca - - chebi: CHEBI:25629 - - kegg.compound: C01530 - - metanetx.chemical: MNXM236 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - - id: s_1454 - - name: stearoyl-CoA - - compartment: c - - formula: C39H66N7O17P3S + - id: "s_1454" + - name: "stearoyl-CoA" + - compartment: "c" + - formula: "C39H66N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: stcoa - - chebi: CHEBI:57394 - - kegg.compound: C00412 - - metanetx.chemical: MNXM272 - - sbo: SBO:0000247 + - bigg.metabolite: "stcoa" + - chebi: "CHEBI:57394" + - kegg.compound: "C00412" + - metanetx.chemical: "MNXM272" + - sbo: "SBO:0000247" - !!omap - - id: s_1457 - - name: stearoyl-CoA - - compartment: p - - formula: C39H66N7O17P3S + - id: "s_1457" + - name: "stearoyl-CoA" + - compartment: "p" + - formula: "C39H66N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: stcoa - - chebi: CHEBI:57394 - - kegg.compound: C00412 - - metanetx.chemical: MNXM272 - - sbo: SBO:0000247 + - bigg.metabolite: "stcoa" + - chebi: "CHEBI:57394" + - kegg.compound: "C00412" + - metanetx.chemical: "MNXM272" + - sbo: "SBO:0000247" - !!omap - - id: s_1458 - - name: succinate - - compartment: c - - formula: C4H4O4 + - id: "s_1458" + - name: "succinate" + - compartment: "c" + - formula: "C4H4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: succ - - chebi: CHEBI:30031 - - kegg.compound: C00042 - - metanetx.chemical: MNXM25 - - sbo: SBO:0000247 + - bigg.metabolite: "succ" + - chebi: "CHEBI:30031" + - kegg.compound: "C00042" + - metanetx.chemical: "MNXM25" + - sbo: "SBO:0000247" - !!omap - - id: s_1459 - - name: succinate - - compartment: e - - formula: C4H4O4 + - id: "s_1459" + - name: "succinate" + - compartment: "e" + - formula: "C4H4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: succ - - chebi: CHEBI:30031 - - kegg.compound: C00042 - - metanetx.chemical: MNXM25 - - sbo: SBO:0000247 + - bigg.metabolite: "succ" + - chebi: "CHEBI:30031" + - kegg.compound: "C00042" + - metanetx.chemical: "MNXM25" + - sbo: "SBO:0000247" - !!omap - - id: s_1460 - - name: succinate - - compartment: m - - formula: C4H4O4 + - id: "s_1460" + - name: "succinate" + - compartment: "m" + - formula: "C4H4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: succ - - chebi: CHEBI:30031 - - kegg.compound: C00042 - - metanetx.chemical: MNXM25 - - sbo: SBO:0000247 + - bigg.metabolite: "succ" + - chebi: "CHEBI:30031" + - kegg.compound: "C00042" + - metanetx.chemical: "MNXM25" + - sbo: "SBO:0000247" - !!omap - - id: s_1461 - - name: succinic semialdehyde - - compartment: c - - formula: C4H5O3 + - id: "s_1461" + - name: "succinic semialdehyde" + - compartment: "c" + - formula: "C4H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: sucsal - - chebi: CHEBI:57706 - - kegg.compound: C00232 - - metanetx.chemical: MNXM172 - - sbo: SBO:0000247 + - bigg.metabolite: "sucsal" + - chebi: "CHEBI:57706" + - kegg.compound: "C00232" + - metanetx.chemical: "MNXM172" + - sbo: "SBO:0000247" - !!omap - - id: s_1464 - - name: succinyl-CoA - - compartment: m - - formula: C25H35N7O19P3S + - id: "s_1464" + - name: "succinyl-CoA" + - compartment: "m" + - formula: "C25H35N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: succoa - - chebi: CHEBI:57292 - - kegg.compound: C00091 - - metanetx.chemical: MNXM92 - - sbo: SBO:0000247 + - bigg.metabolite: "succoa" + - chebi: "CHEBI:57292" + - kegg.compound: "C00091" + - metanetx.chemical: "MNXM92" + - sbo: "SBO:0000247" - !!omap - - id: s_1466 - - name: sucrose - - compartment: e - - formula: C12H22O11 + - id: "s_1466" + - name: "sucrose" + - compartment: "e" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: sucr - - chebi: CHEBI:17992 - - kegg.compound: C00089 - - metanetx.chemical: MNXM167 - - sbo: SBO:0000247 + - bigg.metabolite: "sucr" + - chebi: "CHEBI:17992" + - kegg.compound: "C00089" + - metanetx.chemical: "MNXM167" + - sbo: "SBO:0000247" - !!omap - - id: s_1467 - - name: sulphate - - compartment: c - - formula: O4S + - id: "s_1467" + - name: "sulphate" + - compartment: "c" + - formula: "O4S" - charge: -2 - annotation: !!omap - - bigg.metabolite: so4 - - chebi: CHEBI:16189 - - kegg.compound: C00059 - - metanetx.chemical: MNXM58 - - sbo: SBO:0000247 + - bigg.metabolite: "so4" + - chebi: "CHEBI:16189" + - kegg.compound: "C00059" + - metanetx.chemical: "MNXM58" + - sbo: "SBO:0000247" - !!omap - - id: s_1468 - - name: sulphate - - compartment: e - - formula: O4S + - id: "s_1468" + - name: "sulphate" + - compartment: "e" + - formula: "O4S" - charge: -2 - annotation: !!omap - - bigg.metabolite: so4 - - chebi: CHEBI:16189 - - kegg.compound: C00059 - - metanetx.chemical: MNXM58 - - sbo: SBO:0000247 + - bigg.metabolite: "so4" + - chebi: "CHEBI:16189" + - kegg.compound: "C00059" + - metanetx.chemical: "MNXM58" + - sbo: "SBO:0000247" - !!omap - - id: s_1469 - - name: sulphite - - compartment: c - - formula: O3S + - id: "s_1469" + - name: "sulphite" + - compartment: "c" + - formula: "O3S" - charge: -2 - annotation: !!omap - - bigg.metabolite: so3 - - chebi: CHEBI:17137 - - kegg.compound: C11481 - - metanetx.chemical: MNXM105630 - - sbo: SBO:0000247 + - bigg.metabolite: "so3" + - chebi: "CHEBI:17137" + - kegg.compound: "C11481" + - metanetx.chemical: "MNXM105630" + - sbo: "SBO:0000247" - !!omap - - id: s_1470 - - name: sulphite - - compartment: e - - formula: O3S + - id: "s_1470" + - name: "sulphite" + - compartment: "e" + - formula: "O3S" - charge: -2 - annotation: !!omap - - bigg.metabolite: so3 - - chebi: CHEBI:17137 - - kegg.compound: C11481 - - metanetx.chemical: MNXM105630 - - sbo: SBO:0000247 + - bigg.metabolite: "so3" + - chebi: "CHEBI:17137" + - kegg.compound: "C11481" + - metanetx.chemical: "MNXM105630" + - sbo: "SBO:0000247" - !!omap - - id: s_1471 - - name: taurine - - compartment: c - - formula: C2H7NO3S + - id: "s_1471" + - name: "taurine" + - compartment: "c" + - formula: "C2H7NO3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: taur - - chebi: CHEBI:15891 - - kegg.compound: C00245 - - metanetx.chemical: MNXM282 - - sbo: SBO:0000247 + - bigg.metabolite: "taur" + - chebi: "CHEBI:15891" + - kegg.compound: "C00245" + - metanetx.chemical: "MNXM282" + - sbo: "SBO:0000247" - !!omap - - id: s_1472 - - name: taurine - - compartment: e - - formula: C2H7NO3S + - id: "s_1472" + - name: "taurine" + - compartment: "e" + - formula: "C2H7NO3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: taur - - chebi: CHEBI:15891 - - kegg.compound: C00245 - - metanetx.chemical: MNXM282 - - sbo: SBO:0000247 + - bigg.metabolite: "taur" + - chebi: "CHEBI:15891" + - kegg.compound: "C00245" + - metanetx.chemical: "MNXM282" + - sbo: "SBO:0000247" - !!omap - - id: s_1473 - - name: taurocholic acid - - compartment: c - - formula: C26H44NO7S + - id: "s_1473" + - name: "taurocholic acid" + - compartment: "c" + - formula: "C26H44NO7S" - charge: -1 - annotation: !!omap - - bigg.metabolite: tchola - - chebi: CHEBI:36257 - - kegg.compound: C05122 - - metanetx.chemical: MNXM2288 - - sbo: SBO:0000247 + - bigg.metabolite: "tchola" + - chebi: "CHEBI:36257" + - kegg.compound: "C05122" + - metanetx.chemical: "MNXM2288" + - sbo: "SBO:0000247" - !!omap - - id: s_1474 - - name: taurocholic acid - - compartment: v - - formula: C26H44NO7S + - id: "s_1474" + - name: "taurocholic acid" + - compartment: "v" + - formula: "C26H44NO7S" - charge: -1 - annotation: !!omap - - bigg.metabolite: tchola - - chebi: CHEBI:36257 - - kegg.compound: C05122 - - metanetx.chemical: MNXM2288 - - sbo: SBO:0000247 + - bigg.metabolite: "tchola" + - chebi: "CHEBI:36257" + - kegg.compound: "C05122" + - metanetx.chemical: "MNXM2288" + - sbo: "SBO:0000247" - !!omap - - id: s_1475 - - name: TDP - - compartment: c - - formula: C12H16N4O7P2S + - id: "s_1475" + - name: "TDP" + - compartment: "c" + - formula: "C12H16N4O7P2S" - charge: -2 - annotation: !!omap - - bigg.metabolite: thmpp - - chebi: CHEBI:45931 - - kegg.compound: C00068 - - metanetx.chemical: MNXM256 - - sbo: SBO:0000247 + - bigg.metabolite: "thmpp" + - chebi: "CHEBI:45931" + - kegg.compound: "C00068" + - metanetx.chemical: "MNXM256" + - sbo: "SBO:0000247" - !!omap - - id: s_1476 - - name: TDP - - compartment: e - - formula: C12H16N4O7P2S + - id: "s_1476" + - name: "TDP" + - compartment: "e" + - formula: "C12H16N4O7P2S" - charge: -2 - annotation: !!omap - - bigg.metabolite: thmpp - - chebi: CHEBI:45931 - - kegg.compound: C00068 - - metanetx.chemical: MNXM256 - - sbo: SBO:0000247 + - bigg.metabolite: "thmpp" + - chebi: "CHEBI:45931" + - kegg.compound: "C00068" + - metanetx.chemical: "MNXM256" + - sbo: "SBO:0000247" - !!omap - - id: s_1477 - - name: TDP - - compartment: m - - formula: C12H16N4O7P2S + - id: "s_1477" + - name: "TDP" + - compartment: "m" + - formula: "C12H16N4O7P2S" - charge: -2 - annotation: !!omap - - bigg.metabolite: thmpp - - chebi: CHEBI:45931 - - kegg.compound: C00068 - - metanetx.chemical: MNXM256 - - sbo: SBO:0000247 + - bigg.metabolite: "thmpp" + - chebi: "CHEBI:45931" + - kegg.compound: "C00068" + - metanetx.chemical: "MNXM256" + - sbo: "SBO:0000247" - !!omap - - id: s_1479 - - name: tetracosanoyl-CoA - - compartment: c - - formula: C45H78N7O17P3S + - id: "s_1479" + - name: "tetracosanoyl-CoA" + - compartment: "c" + - formula: "C45H78N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ttccoa - - chebi: CHEBI:52974 - - kegg.compound: C16529 - - metanetx.chemical: MNXM1504 - - sbo: SBO:0000247 + - bigg.metabolite: "ttccoa" + - chebi: "CHEBI:52974" + - kegg.compound: "C16529" + - metanetx.chemical: "MNXM1504" + - sbo: "SBO:0000247" - !!omap - - id: s_1480 - - name: tetracosanoyl-CoA - - compartment: er - - formula: C45H78N7O17P3S + - id: "s_1480" + - name: "tetracosanoyl-CoA" + - compartment: "er" + - formula: "C45H78N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ttccoa - - chebi: CHEBI:52974 - - kegg.compound: C16529 - - metanetx.chemical: MNXM1504 - - sbo: SBO:0000247 + - bigg.metabolite: "ttccoa" + - chebi: "CHEBI:52974" + - kegg.compound: "C16529" + - metanetx.chemical: "MNXM1504" + - sbo: "SBO:0000247" - !!omap - - id: s_1482 - - name: tetracosanoyl-CoA - - compartment: p - - formula: C45H78N7O17P3S + - id: "s_1482" + - name: "tetracosanoyl-CoA" + - compartment: "p" + - formula: "C45H78N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ttccoa - - chebi: CHEBI:52974 - - kegg.compound: C16529 - - metanetx.chemical: MNXM1504 - - sbo: SBO:0000247 + - bigg.metabolite: "ttccoa" + - chebi: "CHEBI:52974" + - kegg.compound: "C16529" + - metanetx.chemical: "MNXM1504" + - sbo: "SBO:0000247" - !!omap - - id: s_1483 - - name: tetradecaprenyl diphosphate - - compartment: lp - - formula: C70H113O7P2 + - id: "s_1483" + - name: "tetradecaprenyl diphosphate" + - compartment: "lp" + - formula: "C70H113O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53039 - - metanetx.chemical: MNXM83846 - - sbo: SBO:0000247 + - chebi: "CHEBI:53039" + - metanetx.chemical: "MNXM83846" + - sbo: "SBO:0000247" - !!omap - - id: s_1486 - - name: tetrahydropteroyltri-L-glutamic acid - - compartment: c - - formula: C29H33N9O12 + - id: "s_1486" + - name: "tetrahydropteroyltri-L-glutamic acid" + - compartment: "c" + - formula: "C29H33N9O12" - charge: -4 - annotation: !!omap - - bigg.metabolite: hpglu - - chebi: CHEBI:58140 - - kegg.compound: C04144 - - metanetx.chemical: MNXM2563 - - sbo: SBO:0000247 + - bigg.metabolite: "hpglu" + - chebi: "CHEBI:58140" + - kegg.compound: "C04144" + - metanetx.chemical: "MNXM2563" + - sbo: "SBO:0000247" - !!omap - - id: s_1487 - - name: THF - - compartment: c - - formula: C19H21N7O6 + - id: "s_1487" + - name: "THF" + - compartment: "c" + - formula: "C19H21N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: thf - - chebi: CHEBI:20506 - - kegg.compound: C00101 - - metanetx.chemical: MNXM79 - - sbo: SBO:0000247 + - bigg.metabolite: "thf" + - chebi: "CHEBI:20506" + - kegg.compound: "C00101" + - metanetx.chemical: "MNXM79" + - sbo: "SBO:0000247" - !!omap - - id: s_1488 - - name: THF - - compartment: m - - formula: C19H21N7O6 + - id: "s_1488" + - name: "THF" + - compartment: "m" + - formula: "C19H21N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: thf - - chebi: CHEBI:20506 - - kegg.compound: C00101 - - metanetx.chemical: MNXM79 - - sbo: SBO:0000247 + - bigg.metabolite: "thf" + - chebi: "CHEBI:20506" + - kegg.compound: "C00101" + - metanetx.chemical: "MNXM79" + - sbo: "SBO:0000247" - !!omap - - id: s_1489 - - name: thiamine - - compartment: c - - formula: C12H17N4OS + - id: "s_1489" + - name: "thiamine" + - compartment: "c" + - formula: "C12H17N4OS" - charge: 1 - annotation: !!omap - - bigg.metabolite: thm - - chebi: CHEBI:18385 - - kegg.compound: C00378 - - metanetx.chemical: MNXM322 - - sbo: SBO:0000247 + - bigg.metabolite: "thm" + - chebi: "CHEBI:18385" + - kegg.compound: "C00378" + - metanetx.chemical: "MNXM322" + - sbo: "SBO:0000247" - !!omap - - id: s_1490 - - name: thiamine - - compartment: e - - formula: C12H17N4OS + - id: "s_1490" + - name: "thiamine" + - compartment: "e" + - formula: "C12H17N4OS" - charge: 1 - annotation: !!omap - - bigg.metabolite: thm - - chebi: CHEBI:18385 - - kegg.compound: C00378 - - metanetx.chemical: MNXM322 - - sbo: SBO:0000247 + - bigg.metabolite: "thm" + - chebi: "CHEBI:18385" + - kegg.compound: "C00378" + - metanetx.chemical: "MNXM322" + - sbo: "SBO:0000247" - !!omap - - id: s_1491 - - name: Thr-tRNA(Thr) - - compartment: c - - formula: C4H9NO2R + - id: "s_1491" + - name: "Thr-tRNA(Thr)" + - compartment: "c" + - formula: "C4H9NO2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: thrtrna - - chebi: CHEBI:29163 - - kegg.compound: C02992 - - metanetx.chemical: MNXM89895 - - sbo: SBO:0000247 + - bigg.metabolite: "thrtrna" + - chebi: "CHEBI:29163" + - kegg.compound: "C02992" + - metanetx.chemical: "MNXM89895" + - sbo: "SBO:0000247" - !!omap - - id: s_1492 - - name: Thr-tRNA(Thr) - - compartment: m - - formula: C4H9NO2R + - id: "s_1492" + - name: "Thr-tRNA(Thr)" + - compartment: "m" + - formula: "C4H9NO2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: thrtrna - - chebi: CHEBI:29163 - - kegg.compound: C02992 - - metanetx.chemical: MNXM89895 - - sbo: SBO:0000247 + - bigg.metabolite: "thrtrna" + - chebi: "CHEBI:29163" + - kegg.compound: "C02992" + - metanetx.chemical: "MNXM89895" + - sbo: "SBO:0000247" - !!omap - - id: s_1493 - - name: thymidine - - compartment: c - - formula: C10H14N2O5 + - id: "s_1493" + - name: "thymidine" + - compartment: "c" + - formula: "C10H14N2O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: thymd - - chebi: CHEBI:17748 - - kegg.compound: C00214 - - metanetx.chemical: MNXM420 - - sbo: SBO:0000247 + - bigg.metabolite: "thymd" + - chebi: "CHEBI:17748" + - kegg.compound: "C00214" + - metanetx.chemical: "MNXM420" + - sbo: "SBO:0000247" - !!omap - - id: s_1494 - - name: thymidine - - compartment: e - - formula: C10H14N2O5 + - id: "s_1494" + - name: "thymidine" + - compartment: "e" + - formula: "C10H14N2O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: thymd - - chebi: CHEBI:17748 - - kegg.compound: C00214 - - metanetx.chemical: MNXM420 - - sbo: SBO:0000247 + - bigg.metabolite: "thymd" + - chebi: "CHEBI:17748" + - kegg.compound: "C00214" + - metanetx.chemical: "MNXM420" + - sbo: "SBO:0000247" - !!omap - - id: s_1497 - - name: TMP - - compartment: c - - formula: C12H16N4O4PS + - id: "s_1497" + - name: "TMP" + - compartment: "c" + - formula: "C12H16N4O4PS" - charge: -1 - annotation: !!omap - - bigg.metabolite: thmmp - - chebi: CHEBI:9533 - - kegg.compound: C01081 - - metanetx.chemical: MNXM662 - - sbo: SBO:0000247 + - bigg.metabolite: "thmmp" + - chebi: "CHEBI:9533" + - kegg.compound: "C01081" + - metanetx.chemical: "MNXM662" + - sbo: "SBO:0000247" - !!omap - - id: s_1498 - - name: TMP - - compartment: e - - formula: C12H16N4O4PS + - id: "s_1498" + - name: "TMP" + - compartment: "e" + - formula: "C12H16N4O4PS" - charge: -1 - annotation: !!omap - - bigg.metabolite: thmmp - - chebi: CHEBI:9533 - - kegg.compound: C01081 - - metanetx.chemical: MNXM662 - - sbo: SBO:0000247 + - bigg.metabolite: "thmmp" + - chebi: "CHEBI:9533" + - kegg.compound: "C01081" + - metanetx.chemical: "MNXM662" + - sbo: "SBO:0000247" - !!omap - - id: s_1503 - - name: trans-aconitate - - compartment: c - - formula: C6H3O6 + - id: "s_1503" + - name: "trans-aconitate" + - compartment: "c" + - formula: "C6H3O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: acon_T - - chebi: CHEBI:15708 - - kegg.compound: C02341 - - metanetx.chemical: MNXM1388 - - sbo: SBO:0000247 + - bigg.metabolite: "acon_T" + - chebi: "CHEBI:15708" + - kegg.compound: "C02341" + - metanetx.chemical: "MNXM1388" + - sbo: "SBO:0000247" - !!omap - - id: s_1504 - - name: trans-aconitate - - compartment: m - - formula: C6H3O6 + - id: "s_1504" + - name: "trans-aconitate" + - compartment: "m" + - formula: "C6H3O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: acon_T - - chebi: CHEBI:15708 - - kegg.compound: C02341 - - metanetx.chemical: MNXM1388 - - sbo: SBO:0000247 + - bigg.metabolite: "acon_T" + - chebi: "CHEBI:15708" + - kegg.compound: "C02341" + - metanetx.chemical: "MNXM1388" + - sbo: "SBO:0000247" - !!omap - - id: s_1507 - - name: trans-dec-2-enoyl-CoA - - compartment: p - - formula: C31H48N7O17P3S + - id: "s_1507" + - name: "trans-dec-2-enoyl-CoA" + - compartment: "p" + - formula: "C31H48N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: dc2coa - - chebi: CHEBI:61406 - - kegg.compound: C05275 - - metanetx.chemical: MNXM580 - - sbo: SBO:0000247 + - bigg.metabolite: "dc2coa" + - chebi: "CHEBI:61406" + - kegg.compound: "C05275" + - metanetx.chemical: "MNXM580" + - sbo: "SBO:0000247" - !!omap - - id: s_1510 - - name: trans-dodec-2-enoyl-CoA - - compartment: p - - formula: C33H52N7O17P3S + - id: "s_1510" + - name: "trans-dodec-2-enoyl-CoA" + - compartment: "p" + - formula: "C33H52N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: dd2coa - - chebi: CHEBI:57330 - - kegg.compound: C03221 - - metanetx.chemical: MNXM642 - - sbo: SBO:0000247 + - bigg.metabolite: "dd2coa" + - chebi: "CHEBI:57330" + - kegg.compound: "C03221" + - metanetx.chemical: "MNXM642" + - sbo: "SBO:0000247" - !!omap - - id: s_1513 - - name: trans-hexacos-2-enoyl-CoA - - compartment: p - - formula: C47H80N7O17P3S + - id: "s_1513" + - name: "trans-hexacos-2-enoyl-CoA" + - compartment: "p" + - formula: "C47H80N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hxc2coa - - chebi: CHEBI:52975 - - metanetx.chemical: MNXM114303 - - sbo: SBO:0000247 + - bigg.metabolite: "hxc2coa" + - chebi: "CHEBI:52975" + - metanetx.chemical: "MNXM114303" + - sbo: "SBO:0000247" - !!omap - - id: s_1516 - - name: trans-octadec-2-enoyl-CoA - - compartment: p - - formula: C39H64N7O17P3S + - id: "s_1516" + - name: "trans-octadec-2-enoyl-CoA" + - compartment: "p" + - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: od2coa - - chebi: CHEBI:50570 - - kegg.compound: C16218 - - metanetx.chemical: MNXM954 - - sbo: SBO:0000247 + - bigg.metabolite: "od2coa" + - chebi: "CHEBI:50570" + - kegg.compound: "C16218" + - metanetx.chemical: "MNXM954" + - sbo: "SBO:0000247" - !!omap - - id: s_1519 - - name: trans-tetradec-2-enoyl-CoA - - compartment: p - - formula: C35H56N7O17P3S + - id: "s_1519" + - name: "trans-tetradec-2-enoyl-CoA" + - compartment: "p" + - formula: "C35H56N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: td2coa - - chebi: CHEBI:61405 - - kegg.compound: C05273 - - metanetx.chemical: MNXM654 - - sbo: SBO:0000247 + - bigg.metabolite: "td2coa" + - chebi: "CHEBI:61405" + - kegg.compound: "C05273" + - metanetx.chemical: "MNXM654" + - sbo: "SBO:0000247" - !!omap - - id: s_1520 - - name: trehalose - - compartment: c - - formula: C12H22O11 + - id: "s_1520" + - name: "trehalose" + - compartment: "c" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: tre - - chebi: CHEBI:16551 - - kegg.compound: C01083 - - metanetx.chemical: MNXM198 - - sbo: SBO:0000247 + - bigg.metabolite: "tre" + - chebi: "CHEBI:16551" + - kegg.compound: "C01083" + - metanetx.chemical: "MNXM198" + - sbo: "SBO:0000247" - !!omap - - id: s_1521 - - name: trehalose - - compartment: e - - formula: C12H22O11 + - id: "s_1521" + - name: "trehalose" + - compartment: "e" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: tre - - chebi: CHEBI:16551 - - kegg.compound: C01083 - - metanetx.chemical: MNXM198 - - sbo: SBO:0000247 + - bigg.metabolite: "tre" + - chebi: "CHEBI:16551" + - kegg.compound: "C01083" + - metanetx.chemical: "MNXM198" + - sbo: "SBO:0000247" - !!omap - - id: s_1522 - - name: trehalose - - compartment: v - - formula: C12H22O11 + - id: "s_1522" + - name: "trehalose" + - compartment: "v" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: tre - - chebi: CHEBI:16551 - - kegg.compound: C01083 - - metanetx.chemical: MNXM198 - - sbo: SBO:0000247 + - bigg.metabolite: "tre" + - chebi: "CHEBI:16551" + - kegg.compound: "C01083" + - metanetx.chemical: "MNXM198" + - sbo: "SBO:0000247" - !!omap - - id: s_1523 - - name: tridecaprenyl diphosphate - - compartment: lp - - formula: C65H105O7P2 + - id: "s_1523" + - name: "tridecaprenyl diphosphate" + - compartment: "lp" + - formula: "C65H105O7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:53040 - - metanetx.chemical: MNXM5721 - - sbo: SBO:0000247 + - chebi: "CHEBI:53040" + - metanetx.chemical: "MNXM5721" + - sbo: "SBO:0000247" - !!omap - - id: s_1524 - - name: triglyceride backbone - - compartment: c - - formula: C3H2 + - id: "s_1524" + - name: "triglyceride backbone" + - compartment: "c" + - formula: "C3H2" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag_cho - - chebi: CHEBI:17855 - - kegg.compound: C00422 - - metanetx.chemical: MNXM248 - - sbo: SBO:0000649 + - bigg.metabolite: "tag_cho" + - chebi: "CHEBI:17855" + - kegg.compound: "C00422" + - metanetx.chemical: "MNXM248" + - sbo: "SBO:0000649" - !!omap - - id: s_1526 - - name: trimethylenediamine - - compartment: c - - formula: C3H12N2 + - id: "s_1526" + - name: "trimethylenediamine" + - compartment: "c" + - formula: "C3H12N2" - charge: 2 - annotation: !!omap - - chebi: CHEBI:57484 - - kegg.compound: C00986 - - metanetx.chemical: MNXM350 - - sbo: SBO:0000247 + - chebi: "CHEBI:57484" + - kegg.compound: "C00986" + - metanetx.chemical: "MNXM350" + - sbo: "SBO:0000247" - !!omap - - id: s_1527 - - name: Trp-tRNA(Trp) - - compartment: c - - formula: C11H12N2OR + - id: "s_1527" + - name: "Trp-tRNA(Trp)" + - compartment: "c" + - formula: "C11H12N2OR" - charge: 1 - annotation: !!omap - - bigg.metabolite: trptrna - - chebi: CHEBI:29159 - - kegg.compound: C03512 - - metanetx.chemical: MNXM89804 - - sbo: SBO:0000247 + - bigg.metabolite: "trptrna" + - chebi: "CHEBI:29159" + - kegg.compound: "C03512" + - metanetx.chemical: "MNXM89804" + - sbo: "SBO:0000247" - !!omap - - id: s_1528 - - name: Trp-tRNA(Trp) - - compartment: m - - formula: C11H12N2OR + - id: "s_1528" + - name: "Trp-tRNA(Trp)" + - compartment: "m" + - formula: "C11H12N2OR" - charge: 1 - annotation: !!omap - - bigg.metabolite: trptrna - - chebi: CHEBI:29159 - - kegg.compound: C03512 - - metanetx.chemical: MNXM89804 - - sbo: SBO:0000247 + - bigg.metabolite: "trptrna" + - chebi: "CHEBI:29159" + - kegg.compound: "C03512" + - metanetx.chemical: "MNXM89804" + - sbo: "SBO:0000247" - !!omap - - id: s_1529 - - name: tryptophol - - compartment: c - - formula: C10H11NO + - id: "s_1529" + - name: "tryptophol" + - compartment: "c" + - formula: "C10H11NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: ind3eth - - chebi: CHEBI:17890 - - kegg.compound: C00955 - - metanetx.chemical: MNXM1686 - - sbo: SBO:0000247 + - bigg.metabolite: "ind3eth" + - chebi: "CHEBI:17890" + - kegg.compound: "C00955" + - metanetx.chemical: "MNXM1686" + - sbo: "SBO:0000247" - !!omap - - id: s_1530 - - name: tryptophol - - compartment: e - - formula: C10H11NO + - id: "s_1530" + - name: "tryptophol" + - compartment: "e" + - formula: "C10H11NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: ind3eth - - chebi: CHEBI:17890 - - kegg.compound: C00955 - - metanetx.chemical: MNXM1686 - - sbo: SBO:0000247 + - bigg.metabolite: "ind3eth" + - chebi: "CHEBI:17890" + - kegg.compound: "C00955" + - metanetx.chemical: "MNXM1686" + - sbo: "SBO:0000247" - !!omap - - id: s_1531 - - name: tryptophol - - compartment: m - - formula: C10H11NO + - id: "s_1531" + - name: "tryptophol" + - compartment: "m" + - formula: "C10H11NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: ind3eth - - chebi: CHEBI:17890 - - kegg.compound: C00955 - - metanetx.chemical: MNXM1686 - - sbo: SBO:0000247 + - bigg.metabolite: "ind3eth" + - chebi: "CHEBI:17890" + - kegg.compound: "C00955" + - metanetx.chemical: "MNXM1686" + - sbo: "SBO:0000247" - !!omap - - id: s_1532 - - name: thiamine(1+) triphosphate(4-) - - compartment: c - - formula: C12H16N4O10P3S + - id: "s_1532" + - name: "thiamine(1+) triphosphate(4-)" + - compartment: "c" + - formula: "C12H16N4O10P3S" - charge: -3 - annotation: !!omap - - bigg.metabolite: thmtp - - chebi: CHEBI:58938 - - kegg.compound: C03028 - - metanetx.chemical: MNXM1341 - - sbo: SBO:0000247 + - bigg.metabolite: "thmtp" + - chebi: "CHEBI:58938" + - kegg.compound: "C03028" + - metanetx.chemical: "MNXM1341" + - sbo: "SBO:0000247" - !!omap - - id: s_1533 - - name: Tyr-tRNA(Tyr) - - compartment: c - - formula: C9H11NO2R + - id: "s_1533" + - name: "Tyr-tRNA(Tyr)" + - compartment: "c" + - formula: "C9H11NO2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: tyrtrna - - chebi: CHEBI:29161 - - kegg.compound: C02839 - - metanetx.chemical: MNXM89822 - - sbo: SBO:0000247 + - bigg.metabolite: "tyrtrna" + - chebi: "CHEBI:29161" + - kegg.compound: "C02839" + - metanetx.chemical: "MNXM89822" + - sbo: "SBO:0000247" - !!omap - - id: s_1534 - - name: Tyr-tRNA(Tyr) - - compartment: m - - formula: C9H11NO2R + - id: "s_1534" + - name: "Tyr-tRNA(Tyr)" + - compartment: "m" + - formula: "C9H11NO2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: tyrtrna - - chebi: CHEBI:29161 - - kegg.compound: C02839 - - metanetx.chemical: MNXM89822 - - sbo: SBO:0000247 + - bigg.metabolite: "tyrtrna" + - chebi: "CHEBI:29161" + - kegg.compound: "C02839" + - metanetx.chemical: "MNXM89822" + - sbo: "SBO:0000247" - !!omap - - id: s_1535 - - name: ubiquinol-6 - - compartment: m - - formula: C39H60O4 + - id: "s_1535" + - name: "ubiquinol-6" + - compartment: "m" + - formula: "C39H60O4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52970 - - kegg.compound: C00390 - - metanetx.chemical: MNXM5319 - - sbo: SBO:0000247 + - chebi: "CHEBI:52970" + - kegg.compound: "C00390" + - metanetx.chemical: "MNXM5319" + - sbo: "SBO:0000247" - !!omap - - id: s_1537 - - name: ubiquinone-6 - - compartment: m - - formula: C39H58O4 + - id: "s_1537" + - name: "ubiquinone-6" + - compartment: "m" + - formula: "C39H58O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: q6 - - chebi: CHEBI:52971 - - kegg.compound: C17568 - - metanetx.chemical: MNXM1783 - - sbo: SBO:0000247 + - bigg.metabolite: "q6" + - chebi: "CHEBI:52971" + - kegg.compound: "C17568" + - metanetx.chemical: "MNXM1783" + - sbo: "SBO:0000247" - !!omap - - id: s_1538 - - name: UDP - - compartment: c - - formula: C9H11N2O12P2 + - id: "s_1538" + - name: "UDP" + - compartment: "c" + - formula: "C9H11N2O12P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: udp - - chebi: CHEBI:58223 - - kegg.compound: C00015 - - metanetx.chemical: MNXM17 - - sbo: SBO:0000247 + - bigg.metabolite: "udp" + - chebi: "CHEBI:58223" + - kegg.compound: "C00015" + - metanetx.chemical: "MNXM17" + - sbo: "SBO:0000247" - !!omap - - id: s_1539 - - name: UDP - - compartment: g - - formula: C9H11N2O12P2 + - id: "s_1539" + - name: "UDP" + - compartment: "g" + - formula: "C9H11N2O12P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: udp - - chebi: CHEBI:58223 - - kegg.compound: C00015 - - metanetx.chemical: MNXM17 - - sbo: SBO:0000247 + - bigg.metabolite: "udp" + - chebi: "CHEBI:58223" + - kegg.compound: "C00015" + - metanetx.chemical: "MNXM17" + - sbo: "SBO:0000247" - !!omap - - id: s_1540 - - name: UDP - - compartment: n - - formula: C9H11N2O12P2 + - id: "s_1540" + - name: "UDP" + - compartment: "n" + - formula: "C9H11N2O12P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: udp - - chebi: CHEBI:58223 - - kegg.compound: C00015 - - metanetx.chemical: MNXM17 - - sbo: SBO:0000247 + - bigg.metabolite: "udp" + - chebi: "CHEBI:58223" + - kegg.compound: "C00015" + - metanetx.chemical: "MNXM17" + - sbo: "SBO:0000247" - !!omap - - id: s_1541 - - name: UDP-D-galactose - - compartment: c - - formula: C15H22N2O17P2 + - id: "s_1541" + - name: "UDP-D-galactose" + - compartment: "c" + - formula: "C15H22N2O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: udpgal - - chebi: CHEBI:58439 - - kegg.compound: C00052 - - metanetx.chemical: MNXM89795 - - sbo: SBO:0000247 + - bigg.metabolite: "udpgal" + - chebi: "CHEBI:58439" + - kegg.compound: "C00052" + - metanetx.chemical: "MNXM89795" + - sbo: "SBO:0000247" - !!omap - - id: s_1542 - - name: UDP-D-galactose - - compartment: g - - formula: C15H22N2O17P2 + - id: "s_1542" + - name: "UDP-D-galactose" + - compartment: "g" + - formula: "C15H22N2O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: udpgal - - chebi: CHEBI:58439 - - kegg.compound: C00052 - - metanetx.chemical: MNXM89795 - - sbo: SBO:0000247 + - bigg.metabolite: "udpgal" + - chebi: "CHEBI:58439" + - kegg.compound: "C00052" + - metanetx.chemical: "MNXM89795" + - sbo: "SBO:0000247" - !!omap - - id: s_1543 - - name: UDP-D-glucose - - compartment: c - - formula: C15H22N2O17P2 + - id: "s_1543" + - name: "UDP-D-glucose" + - compartment: "c" + - formula: "C15H22N2O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: udpg - - chebi: CHEBI:58367 - - kegg.compound: C00029 - - metanetx.chemical: MNXM722710 - - sbo: SBO:0000247 + - bigg.metabolite: "udpg" + - chebi: "CHEBI:58367" + - kegg.compound: "C00029" + - metanetx.chemical: "MNXM722710" + - sbo: "SBO:0000247" - !!omap - - id: s_1544 - - name: UDP-N-acetyl-alpha-D-glucosamine - - compartment: c - - formula: C17H25N3O17P2 + - id: "s_1544" + - name: "UDP-N-acetyl-alpha-D-glucosamine" + - compartment: "c" + - formula: "C17H25N3O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: uacgam - - chebi: CHEBI:57705 - - kegg.compound: C00043 - - metanetx.chemical: MNXM47 - - sbo: SBO:0000247 + - bigg.metabolite: "uacgam" + - chebi: "CHEBI:57705" + - kegg.compound: "C00043" + - metanetx.chemical: "MNXM47" + - sbo: "SBO:0000247" - !!omap - - id: s_1545 - - name: UMP - - compartment: c - - formula: C9H11N2O9P + - id: "s_1545" + - name: "UMP" + - compartment: "c" + - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: ump - - chebi: CHEBI:57865 - - kegg.compound: C00105 - - metanetx.chemical: MNXM80 - - sbo: SBO:0000247 + - bigg.metabolite: "ump" + - chebi: "CHEBI:57865" + - kegg.compound: "C00105" + - metanetx.chemical: "MNXM80" + - sbo: "SBO:0000247" - !!omap - - id: s_1546 - - name: UMP - - compartment: g - - formula: C9H11N2O9P + - id: "s_1546" + - name: "UMP" + - compartment: "g" + - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: ump - - chebi: CHEBI:57865 - - kegg.compound: C00105 - - metanetx.chemical: MNXM80 - - sbo: SBO:0000247 + - bigg.metabolite: "ump" + - chebi: "CHEBI:57865" + - kegg.compound: "C00105" + - metanetx.chemical: "MNXM80" + - sbo: "SBO:0000247" - !!omap - - id: s_1547 - - name: UMP - - compartment: m - - formula: C9H11N2O9P + - id: "s_1547" + - name: "UMP" + - compartment: "m" + - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: ump - - chebi: CHEBI:57865 - - kegg.compound: C00105 - - metanetx.chemical: MNXM80 - - sbo: SBO:0000247 + - bigg.metabolite: "ump" + - chebi: "CHEBI:57865" + - kegg.compound: "C00105" + - metanetx.chemical: "MNXM80" + - sbo: "SBO:0000247" - !!omap - - id: s_1548 - - name: UMP - - compartment: n - - formula: C9H11N2O9P + - id: "s_1548" + - name: "UMP" + - compartment: "n" + - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: ump - - chebi: CHEBI:57865 - - kegg.compound: C00105 - - metanetx.chemical: MNXM80 - - sbo: SBO:0000247 + - bigg.metabolite: "ump" + - chebi: "CHEBI:57865" + - kegg.compound: "C00105" + - metanetx.chemical: "MNXM80" + - sbo: "SBO:0000247" - !!omap - - id: s_1549 - - name: undecaprenyl diphosphate - - compartment: lp - - formula: C55H89O7P2 + - id: "s_1549" + - name: "undecaprenyl diphosphate" + - compartment: "lp" + - formula: "C55H89O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: udcpdp - - chebi: CHEBI:53042 - - kegg.compound: C03543 - - metanetx.chemical: MNXM5043 - - sbo: SBO:0000247 + - bigg.metabolite: "udcpdp" + - chebi: "CHEBI:53042" + - kegg.compound: "C03543" + - metanetx.chemical: "MNXM5043" + - sbo: "SBO:0000247" - !!omap - - id: s_1550 - - name: uracil - - compartment: c - - formula: C4H4N2O2 + - id: "s_1550" + - name: "uracil" + - compartment: "c" + - formula: "C4H4N2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ura - - chebi: CHEBI:17568 - - kegg.compound: C00106 - - metanetx.chemical: MNXM158 - - sbo: SBO:0000247 + - bigg.metabolite: "ura" + - chebi: "CHEBI:17568" + - kegg.compound: "C00106" + - metanetx.chemical: "MNXM158" + - sbo: "SBO:0000247" - !!omap - - id: s_1551 - - name: uracil - - compartment: e - - formula: C4H4N2O2 + - id: "s_1551" + - name: "uracil" + - compartment: "e" + - formula: "C4H4N2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ura - - chebi: CHEBI:17568 - - kegg.compound: C00106 - - metanetx.chemical: MNXM158 - - sbo: SBO:0000247 + - bigg.metabolite: "ura" + - chebi: "CHEBI:17568" + - kegg.compound: "C00106" + - metanetx.chemical: "MNXM158" + - sbo: "SBO:0000247" - !!omap - - id: s_1552 - - name: urea - - compartment: c - - formula: CH4N2O + - id: "s_1552" + - name: "urea" + - compartment: "c" + - formula: "CH4N2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: urea - - chebi: CHEBI:16199 - - kegg.compound: C00086 - - metanetx.chemical: MNXM117 - - sbo: SBO:0000247 + - bigg.metabolite: "urea" + - chebi: "CHEBI:16199" + - kegg.compound: "C00086" + - metanetx.chemical: "MNXM117" + - sbo: "SBO:0000247" - !!omap - - id: s_1553 - - name: urea - - compartment: e - - formula: CH4N2O + - id: "s_1553" + - name: "urea" + - compartment: "e" + - formula: "CH4N2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: urea - - chebi: CHEBI:16199 - - kegg.compound: C00086 - - metanetx.chemical: MNXM117 - - sbo: SBO:0000247 + - bigg.metabolite: "urea" + - chebi: "CHEBI:16199" + - kegg.compound: "C00086" + - metanetx.chemical: "MNXM117" + - sbo: "SBO:0000247" - !!omap - - id: s_1554 - - name: urea-1-carboxylic acid - - compartment: c - - formula: C2H3N2O3 + - id: "s_1554" + - name: "urea-1-carboxylic acid" + - compartment: "c" + - formula: "C2H3N2O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: allphn - - chebi: CHEBI:15832 - - kegg.compound: C01010 - - metanetx.chemical: MNXM1122 - - sbo: SBO:0000247 + - bigg.metabolite: "allphn" + - chebi: "CHEBI:15832" + - kegg.compound: "C01010" + - metanetx.chemical: "MNXM1122" + - sbo: "SBO:0000247" - !!omap - - id: s_1555 - - name: ureidoglycolic acid - - compartment: c - - formula: C3H5N2O4 + - id: "s_1555" + - name: "ureidoglycolic acid" + - compartment: "c" + - formula: "C3H5N2O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: urdglyc - - chebi: CHEBI:49050 - - kegg.compound: C05241 - - metanetx.chemical: MNXM490 - - sbo: SBO:0000247 + - bigg.metabolite: "urdglyc" + - chebi: "CHEBI:49050" + - kegg.compound: "C05241" + - metanetx.chemical: "MNXM490" + - sbo: "SBO:0000247" - !!omap - - id: s_1556 - - name: uridine - - compartment: c - - formula: C9H12N2O6 + - id: "s_1556" + - name: "uridine" + - compartment: "c" + - formula: "C9H12N2O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: uri - - chebi: CHEBI:16704 - - kegg.compound: C00299 - - metanetx.chemical: MNXM288 - - sbo: SBO:0000247 + - bigg.metabolite: "uri" + - chebi: "CHEBI:16704" + - kegg.compound: "C00299" + - metanetx.chemical: "MNXM288" + - sbo: "SBO:0000247" - !!omap - - id: s_1557 - - name: uridine - - compartment: e - - formula: C9H12N2O6 + - id: "s_1557" + - name: "uridine" + - compartment: "e" + - formula: "C9H12N2O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: uri - - chebi: CHEBI:16704 - - kegg.compound: C00299 - - metanetx.chemical: MNXM288 - - sbo: SBO:0000247 + - bigg.metabolite: "uri" + - chebi: "CHEBI:16704" + - kegg.compound: "C00299" + - metanetx.chemical: "MNXM288" + - sbo: "SBO:0000247" - !!omap - - id: s_1558 - - name: uroporphyrinogen III - - compartment: c - - formula: C40H36N4O16 + - id: "s_1558" + - name: "uroporphyrinogen III" + - compartment: "c" + - formula: "C40H36N4O16" - charge: -8 - annotation: !!omap - - bigg.metabolite: uppg3 - - chebi: CHEBI:57308 - - kegg.compound: C01051 - - metanetx.chemical: MNXM414 - - sbo: SBO:0000247 + - bigg.metabolite: "uppg3" + - chebi: "CHEBI:57308" + - kegg.compound: "C01051" + - metanetx.chemical: "MNXM414" + - sbo: "SBO:0000247" - !!omap - - id: s_1559 - - name: UTP - - compartment: c - - formula: C9H11N2O15P3 + - id: "s_1559" + - name: "UTP" + - compartment: "c" + - formula: "C9H11N2O15P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: utp - - chebi: CHEBI:46398 - - kegg.compound: C00075 - - metanetx.chemical: MNXM121 - - sbo: SBO:0000247 + - bigg.metabolite: "utp" + - chebi: "CHEBI:46398" + - kegg.compound: "C00075" + - metanetx.chemical: "MNXM121" + - sbo: "SBO:0000247" - !!omap - - id: s_1560 - - name: UTP - - compartment: m - - formula: C9H11N2O15P3 + - id: "s_1560" + - name: "UTP" + - compartment: "m" + - formula: "C9H11N2O15P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: utp - - chebi: CHEBI:46398 - - kegg.compound: C00075 - - metanetx.chemical: MNXM121 - - sbo: SBO:0000247 + - bigg.metabolite: "utp" + - chebi: "CHEBI:46398" + - kegg.compound: "C00075" + - metanetx.chemical: "MNXM121" + - sbo: "SBO:0000247" - !!omap - - id: s_1561 - - name: Val-tRNA(Val) - - compartment: c - - formula: C5H11NOR + - id: "s_1561" + - name: "Val-tRNA(Val)" + - compartment: "c" + - formula: "C5H11NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: valtrna - - chebi: CHEBI:29164 - - kegg.compound: C02554 - - metanetx.chemical: MNXM90110 - - sbo: SBO:0000247 + - bigg.metabolite: "valtrna" + - chebi: "CHEBI:29164" + - kegg.compound: "C02554" + - metanetx.chemical: "MNXM90110" + - sbo: "SBO:0000247" - !!omap - - id: s_1562 - - name: Val-tRNA(Val) - - compartment: m - - formula: C5H11NOR + - id: "s_1562" + - name: "Val-tRNA(Val)" + - compartment: "m" + - formula: "C5H11NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: valtrna - - chebi: CHEBI:29164 - - kegg.compound: C02554 - - metanetx.chemical: MNXM90110 - - sbo: SBO:0000247 + - bigg.metabolite: "valtrna" + - chebi: "CHEBI:29164" + - kegg.compound: "C02554" + - metanetx.chemical: "MNXM90110" + - sbo: "SBO:0000247" - !!omap - - id: s_1563 - - name: xanthosine - - compartment: c - - formula: C10H12N4O6 + - id: "s_1563" + - name: "xanthosine" + - compartment: "c" + - formula: "C10H12N4O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: xtsn - - chebi: CHEBI:18107 - - kegg.compound: C01762 - - metanetx.chemical: MNXM687 - - sbo: SBO:0000247 + - bigg.metabolite: "xtsn" + - chebi: "CHEBI:18107" + - kegg.compound: "C01762" + - metanetx.chemical: "MNXM687" + - sbo: "SBO:0000247" - !!omap - - id: s_1564 - - name: xanthosine - - compartment: e - - formula: C10H12N4O6 + - id: "s_1564" + - name: "xanthosine" + - compartment: "e" + - formula: "C10H12N4O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: xtsn - - chebi: CHEBI:18107 - - kegg.compound: C01762 - - metanetx.chemical: MNXM687 - - sbo: SBO:0000247 + - bigg.metabolite: "xtsn" + - chebi: "CHEBI:18107" + - kegg.compound: "C01762" + - metanetx.chemical: "MNXM687" + - sbo: "SBO:0000247" - !!omap - - id: s_1565 - - name: xanthosine-5-phosphate - - compartment: c - - formula: C10H11N4O9P + - id: "s_1565" + - name: "xanthosine-5-phosphate" + - compartment: "c" + - formula: "C10H11N4O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: xmp - - chebi: CHEBI:57464 - - kegg.compound: C00655 - - metanetx.chemical: MNXM298 - - sbo: SBO:0000247 + - bigg.metabolite: "xmp" + - chebi: "CHEBI:57464" + - kegg.compound: "C00655" + - metanetx.chemical: "MNXM298" + - sbo: "SBO:0000247" - !!omap - - id: s_1566 - - name: xylitol - - compartment: c - - formula: C5H12O5 + - id: "s_1566" + - name: "xylitol" + - compartment: "c" + - formula: "C5H12O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: xylt - - chebi: CHEBI:17151 - - kegg.compound: C00379 - - metanetx.chemical: MNXM510 - - sbo: SBO:0000247 + - bigg.metabolite: "xylt" + - chebi: "CHEBI:17151" + - kegg.compound: "C00379" + - metanetx.chemical: "MNXM510" + - sbo: "SBO:0000247" - !!omap - - id: s_1567 - - name: xylitol - - compartment: e - - formula: C5H12O5 + - id: "s_1567" + - name: "xylitol" + - compartment: "e" + - formula: "C5H12O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: xylt - - chebi: CHEBI:17151 - - kegg.compound: C00379 - - metanetx.chemical: MNXM510 - - sbo: SBO:0000247 + - bigg.metabolite: "xylt" + - chebi: "CHEBI:17151" + - kegg.compound: "C00379" + - metanetx.chemical: "MNXM510" + - sbo: "SBO:0000247" - !!omap - - id: s_1568 - - name: zymosterol - - compartment: ce - - formula: C27H44O + - id: "s_1568" + - name: "zymosterol" + - compartment: "ce" + - formula: "C27H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: zymst - - chebi: CHEBI:18252 - - kegg.compound: C05437 - - metanetx.chemical: MNXM574 - - sbo: SBO:0000247 + - bigg.metabolite: "zymst" + - chebi: "CHEBI:18252" + - kegg.compound: "C05437" + - metanetx.chemical: "MNXM574" + - sbo: "SBO:0000247" - !!omap - - id: s_1569 - - name: zymosterol - - compartment: c - - formula: C27H44O + - id: "s_1569" + - name: "zymosterol" + - compartment: "c" + - formula: "C27H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: zymst - - chebi: CHEBI:18252 - - kegg.compound: C05437 - - metanetx.chemical: MNXM574 - - sbo: SBO:0000247 + - bigg.metabolite: "zymst" + - chebi: "CHEBI:18252" + - kegg.compound: "C05437" + - metanetx.chemical: "MNXM574" + - sbo: "SBO:0000247" - !!omap - - id: s_1571 - - name: zymosterol - - compartment: e - - formula: C27H44O + - id: "s_1571" + - name: "zymosterol" + - compartment: "e" + - formula: "C27H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: zymst - - chebi: CHEBI:18252 - - kegg.compound: C05437 - - metanetx.chemical: MNXM574 - - sbo: SBO:0000247 + - bigg.metabolite: "zymst" + - chebi: "CHEBI:18252" + - kegg.compound: "C05437" + - metanetx.chemical: "MNXM574" + - sbo: "SBO:0000247" - !!omap - - id: s_1572 - - name: zymosterol - - compartment: lp - - formula: C27H44O + - id: "s_1572" + - name: "zymosterol" + - compartment: "lp" + - formula: "C27H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: zymst - - chebi: CHEBI:18252 - - kegg.compound: C05437 - - metanetx.chemical: MNXM574 - - sbo: SBO:0000247 + - bigg.metabolite: "zymst" + - chebi: "CHEBI:18252" + - kegg.compound: "C05437" + - metanetx.chemical: "MNXM574" + - sbo: "SBO:0000247" - !!omap - - id: s_1576 - - name: zymosterol intermediate 1a - - compartment: c - - formula: C28H46O2 + - id: "s_1576" + - name: "zymosterol intermediate 1a" + - compartment: "c" + - formula: "C28H46O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: M00963 - - chebi: CHEBI:52388 - - metanetx.chemical: MNXM89469 - - sbo: SBO:0000247 + - bigg.metabolite: "M00963" + - chebi: "CHEBI:52388" + - metanetx.chemical: "MNXM89469" + - sbo: "SBO:0000247" - !!omap - - id: s_1577 - - name: zymosterol intermediate 1b - - compartment: c - - formula: C28H44O2 + - id: "s_1577" + - name: "zymosterol intermediate 1b" + - compartment: "c" + - formula: "C28H44O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: M00959 - - chebi: CHEBI:52615 - - metanetx.chemical: MNXM89470 - - sbo: SBO:0000247 + - bigg.metabolite: "M00959" + - chebi: "CHEBI:52615" + - metanetx.chemical: "MNXM89470" + - sbo: "SBO:0000247" - !!omap - - id: s_1578 - - name: zymosterol intermediate 1c - - compartment: c - - formula: C28H43O3 + - id: "s_1578" + - name: "zymosterol intermediate 1c" + - compartment: "c" + - formula: "C28H43O3" - charge: -1 - annotation: !!omap - - chebi: CHEBI:52389 - - metanetx.chemical: MNXM89471 - - sbo: SBO:0000247 + - chebi: "CHEBI:52389" + - metanetx.chemical: "MNXM89471" + - sbo: "SBO:0000247" - !!omap - - id: s_1579 - - name: zymosterol intermediate 2 - - compartment: c - - formula: C27H42O + - id: "s_1579" + - name: "zymosterol intermediate 2" + - compartment: "c" + - formula: "C27H42O" - charge: 0 - annotation: !!omap - - bigg.metabolite: M01067 - - chebi: CHEBI:52386 - - metanetx.chemical: MNXM2876 - - sbo: SBO:0000247 + - bigg.metabolite: "M01067" + - chebi: "CHEBI:52386" + - metanetx.chemical: "MNXM2876" + - sbo: "SBO:0000247" - !!omap - - id: s_1582 - - name: tRNA(Ala) - - compartment: c - - formula: RH + - id: "s_1582" + - name: "tRNA(Ala)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaala - - chebi: CHEBI:29170 - - kegg.compound: C01635 - - metanetx.chemical: MNXM89576 - - sbo: SBO:0000247 + - bigg.metabolite: "trnaala" + - chebi: "CHEBI:29170" + - kegg.compound: "C01635" + - metanetx.chemical: "MNXM89576" + - sbo: "SBO:0000247" - !!omap - - id: s_1583 - - name: tRNA(Arg) - - compartment: c - - formula: RH + - id: "s_1583" + - name: "tRNA(Arg)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaarg - - chebi: CHEBI:29171 - - kegg.compound: C01636 - - metanetx.chemical: MNXM90751 - - sbo: SBO:0000247 + - bigg.metabolite: "trnaarg" + - chebi: "CHEBI:29171" + - kegg.compound: "C01636" + - metanetx.chemical: "MNXM90751" + - sbo: "SBO:0000247" - !!omap - - id: s_1584 - - name: tRNA(Arg) - - compartment: m - - formula: RH + - id: "s_1584" + - name: "tRNA(Arg)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaarg - - chebi: CHEBI:29171 - - kegg.compound: C01636 - - metanetx.chemical: MNXM90751 - - sbo: SBO:0000247 + - bigg.metabolite: "trnaarg" + - chebi: "CHEBI:29171" + - kegg.compound: "C01636" + - metanetx.chemical: "MNXM90751" + - sbo: "SBO:0000247" - !!omap - - id: s_1585 - - name: tRNA(Asn) - - compartment: c - - formula: RH + - id: "s_1585" + - name: "tRNA(Asn)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaasn - - chebi: CHEBI:29172 - - kegg.compound: C01637 - - metanetx.chemical: MNXM90665 - - sbo: SBO:0000247 + - bigg.metabolite: "trnaasn" + - chebi: "CHEBI:29172" + - kegg.compound: "C01637" + - metanetx.chemical: "MNXM90665" + - sbo: "SBO:0000247" - !!omap - - id: s_1586 - - name: tRNA(Asn) - - compartment: m - - formula: RH + - id: "s_1586" + - name: "tRNA(Asn)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaasn - - chebi: CHEBI:29172 - - kegg.compound: C01637 - - metanetx.chemical: MNXM90665 - - sbo: SBO:0000247 + - bigg.metabolite: "trnaasn" + - chebi: "CHEBI:29172" + - kegg.compound: "C01637" + - metanetx.chemical: "MNXM90665" + - sbo: "SBO:0000247" - !!omap - - id: s_1587 - - name: tRNA(Asp) - - compartment: c - - formula: RH + - id: "s_1587" + - name: "tRNA(Asp)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaasp - - chebi: CHEBI:29186 - - kegg.compound: C01638 - - metanetx.chemical: MNXM90752 - - sbo: SBO:0000247 + - bigg.metabolite: "trnaasp" + - chebi: "CHEBI:29186" + - kegg.compound: "C01638" + - metanetx.chemical: "MNXM90752" + - sbo: "SBO:0000247" - !!omap - - id: s_1588 - - name: tRNA(Asp) - - compartment: m - - formula: RH + - id: "s_1588" + - name: "tRNA(Asp)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaasp - - chebi: CHEBI:29186 - - kegg.compound: C01638 - - metanetx.chemical: MNXM90752 - - sbo: SBO:0000247 + - bigg.metabolite: "trnaasp" + - chebi: "CHEBI:29186" + - kegg.compound: "C01638" + - metanetx.chemical: "MNXM90752" + - sbo: "SBO:0000247" - !!omap - - id: s_1589 - - name: tRNA(Cys) - - compartment: c - - formula: RH + - id: "s_1589" + - name: "tRNA(Cys)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnacys - - chebi: CHEBI:29167 - - kegg.compound: C01639 - - metanetx.chemical: MNXM162355 - - sbo: SBO:0000247 - - !!omap - - id: s_1590 - - name: tRNA(Gln) - - compartment: c - - formula: RH + - bigg.metabolite: "trnacys" + - chebi: "CHEBI:29167" + - kegg.compound: "C01639" + - metanetx.chemical: "MNXM162355" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1590" + - name: "tRNA(Gln)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnagln - - chebi: CHEBI:29168 - - kegg.compound: C01640 - - metanetx.chemical: MNXM71 - - sbo: SBO:0000247 - - !!omap - - id: s_1591 - - name: tRNA(Glu) - - compartment: c - - formula: RH + - bigg.metabolite: "trnagln" + - chebi: "CHEBI:29168" + - kegg.compound: "C01640" + - metanetx.chemical: "MNXM71" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1591" + - name: "tRNA(Glu)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaglu - - chebi: CHEBI:29175 - - kegg.compound: C01641 - - metanetx.chemical: MNXM90886 - - sbo: SBO:0000247 - - !!omap - - id: s_1592 - - name: tRNA(Glu) - - compartment: m - - formula: RH + - bigg.metabolite: "trnaglu" + - chebi: "CHEBI:29175" + - kegg.compound: "C01641" + - metanetx.chemical: "MNXM90886" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1592" + - name: "tRNA(Glu)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaglu - - chebi: CHEBI:29175 - - kegg.compound: C01641 - - metanetx.chemical: MNXM90886 - - sbo: SBO:0000247 - - !!omap - - id: s_1593 - - name: tRNA(Gly) - - compartment: c - - formula: RH + - bigg.metabolite: "trnaglu" + - chebi: "CHEBI:29175" + - kegg.compound: "C01641" + - metanetx.chemical: "MNXM90886" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1593" + - name: "tRNA(Gly)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnagly - - chebi: CHEBI:29176 - - kegg.compound: C01642 - - metanetx.chemical: MNXM90340 - - sbo: SBO:0000247 - - !!omap - - id: s_1594 - - name: tRNA(His) - - compartment: c - - formula: RH + - bigg.metabolite: "trnagly" + - chebi: "CHEBI:29176" + - kegg.compound: "C01642" + - metanetx.chemical: "MNXM90340" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1594" + - name: "tRNA(His)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnahis - - chebi: CHEBI:29178 - - kegg.compound: C01643 - - metanetx.chemical: MNXM90878 - - sbo: SBO:0000247 - - !!omap - - id: s_1595 - - name: tRNA(His) - - compartment: m - - formula: RH + - bigg.metabolite: "trnahis" + - chebi: "CHEBI:29178" + - kegg.compound: "C01643" + - metanetx.chemical: "MNXM90878" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1595" + - name: "tRNA(His)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnahis - - chebi: CHEBI:29178 - - kegg.compound: C01643 - - metanetx.chemical: MNXM90878 - - sbo: SBO:0000247 - - !!omap - - id: s_1596 - - name: tRNA(Ile) - - compartment: c - - formula: RH + - bigg.metabolite: "trnahis" + - chebi: "CHEBI:29178" + - kegg.compound: "C01643" + - metanetx.chemical: "MNXM90878" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1596" + - name: "tRNA(Ile)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaile - - chebi: CHEBI:29174 - - kegg.compound: C01644 - - metanetx.chemical: MNXM90879 - - sbo: SBO:0000247 - - !!omap - - id: s_1597 - - name: tRNA(Ile) - - compartment: m - - formula: RH + - bigg.metabolite: "trnaile" + - chebi: "CHEBI:29174" + - kegg.compound: "C01644" + - metanetx.chemical: "MNXM90879" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1597" + - name: "tRNA(Ile)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaile - - chebi: CHEBI:29174 - - kegg.compound: C01644 - - metanetx.chemical: MNXM90879 - - sbo: SBO:0000247 - - !!omap - - id: s_1598 - - name: tRNA(Leu) - - compartment: c - - formula: RH + - bigg.metabolite: "trnaile" + - chebi: "CHEBI:29174" + - kegg.compound: "C01644" + - metanetx.chemical: "MNXM90879" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1598" + - name: "tRNA(Leu)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaleu - - chebi: CHEBI:29169 - - kegg.compound: C01645 - - metanetx.chemical: MNXM90880 - - sbo: SBO:0000247 - - !!omap - - id: s_1599 - - name: tRNA(Leu) - - compartment: m - - formula: RH + - bigg.metabolite: "trnaleu" + - chebi: "CHEBI:29169" + - kegg.compound: "C01645" + - metanetx.chemical: "MNXM90880" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1599" + - name: "tRNA(Leu)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaleu - - chebi: CHEBI:29169 - - kegg.compound: C01645 - - metanetx.chemical: MNXM90880 - - sbo: SBO:0000247 - - !!omap - - id: s_1600 - - name: tRNA(Lys) - - compartment: c - - formula: RH + - bigg.metabolite: "trnaleu" + - chebi: "CHEBI:29169" + - kegg.compound: "C01645" + - metanetx.chemical: "MNXM90880" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1600" + - name: "tRNA(Lys)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnalys - - chebi: CHEBI:29185 - - kegg.compound: C01646 - - metanetx.chemical: MNXM90881 - - sbo: SBO:0000247 - - !!omap - - id: s_1601 - - name: tRNA(Lys) - - compartment: m - - formula: RH + - bigg.metabolite: "trnalys" + - chebi: "CHEBI:29185" + - kegg.compound: "C01646" + - metanetx.chemical: "MNXM90881" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1601" + - name: "tRNA(Lys)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnalys - - chebi: CHEBI:29185 - - kegg.compound: C01646 - - metanetx.chemical: MNXM90881 - - sbo: SBO:0000247 - - !!omap - - id: s_1602 - - name: tRNA(Met) - - compartment: c - - formula: RH + - bigg.metabolite: "trnalys" + - chebi: "CHEBI:29185" + - kegg.compound: "C01646" + - metanetx.chemical: "MNXM90881" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1602" + - name: "tRNA(Met)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnamet - - chebi: CHEBI:29173 - - kegg.compound: C01647 - - metanetx.chemical: MNXM90882 - - sbo: SBO:0000247 - - !!omap - - id: s_1603 - - name: tRNA(Met) - - compartment: m - - formula: RH + - bigg.metabolite: "trnamet" + - chebi: "CHEBI:29173" + - kegg.compound: "C01647" + - metanetx.chemical: "MNXM90882" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1603" + - name: "tRNA(Met)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnamet - - chebi: CHEBI:29173 - - kegg.compound: C01647 - - metanetx.chemical: MNXM90882 - - sbo: SBO:0000247 - - !!omap - - id: s_1604 - - name: tRNA(Phe) - - compartment: c - - formula: RH + - bigg.metabolite: "trnamet" + - chebi: "CHEBI:29173" + - kegg.compound: "C01647" + - metanetx.chemical: "MNXM90882" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1604" + - name: "tRNA(Phe)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaphe - - chebi: CHEBI:29184 - - kegg.compound: C01648 - - metanetx.chemical: MNXM90753 - - sbo: SBO:0000247 - - !!omap - - id: s_1605 - - name: tRNA(Phe) - - compartment: m - - formula: RH + - bigg.metabolite: "trnaphe" + - chebi: "CHEBI:29184" + - kegg.compound: "C01648" + - metanetx.chemical: "MNXM90753" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1605" + - name: "tRNA(Phe)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaphe - - chebi: CHEBI:29184 - - kegg.compound: C01648 - - metanetx.chemical: MNXM90753 - - sbo: SBO:0000247 - - !!omap - - id: s_1606 - - name: tRNA(Pro) - - compartment: c - - formula: RH + - bigg.metabolite: "trnaphe" + - chebi: "CHEBI:29184" + - kegg.compound: "C01648" + - metanetx.chemical: "MNXM90753" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1606" + - name: "tRNA(Pro)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnapro - - chebi: CHEBI:29177 - - kegg.compound: C01649 - - metanetx.chemical: MNXM90667 - - sbo: SBO:0000247 - - !!omap - - id: s_1607 - - name: tRNA(Ser) - - compartment: c - - formula: RH + - bigg.metabolite: "trnapro" + - chebi: "CHEBI:29177" + - kegg.compound: "C01649" + - metanetx.chemical: "MNXM90667" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1607" + - name: "tRNA(Ser)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaser - - chebi: CHEBI:29179 - - kegg.compound: C01650 - - metanetx.chemical: MNXM91028 - - sbo: SBO:0000247 - - !!omap - - id: s_1608 - - name: tRNA(Thr) - - compartment: c - - formula: RH + - bigg.metabolite: "trnaser" + - chebi: "CHEBI:29179" + - kegg.compound: "C01650" + - metanetx.chemical: "MNXM91028" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1608" + - name: "tRNA(Thr)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnathr - - chebi: CHEBI:29180 - - kegg.compound: C01651 - - metanetx.chemical: MNXM90883 - - sbo: SBO:0000247 - - !!omap - - id: s_1609 - - name: tRNA(Thr) - - compartment: m - - formula: RH + - bigg.metabolite: "trnathr" + - chebi: "CHEBI:29180" + - kegg.compound: "C01651" + - metanetx.chemical: "MNXM90883" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1609" + - name: "tRNA(Thr)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnathr - - chebi: CHEBI:29180 - - kegg.compound: C01651 - - metanetx.chemical: MNXM90883 - - sbo: SBO:0000247 - - !!omap - - id: s_1610 - - name: tRNA(Trp) - - compartment: c - - formula: RH + - bigg.metabolite: "trnathr" + - chebi: "CHEBI:29180" + - kegg.compound: "C01651" + - metanetx.chemical: "MNXM90883" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1610" + - name: "tRNA(Trp)" + - compartment: "c" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnatrp - - chebi: CHEBI:29181 - - kegg.compound: C01652 - - metanetx.chemical: MNXM90755 - - sbo: SBO:0000247 - - !!omap - - id: s_1611 - - name: tRNA(Trp) - - compartment: m - - formula: RH + - bigg.metabolite: "trnatrp" + - chebi: "CHEBI:29181" + - kegg.compound: "C01652" + - metanetx.chemical: "MNXM90755" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1611" + - name: "tRNA(Trp)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnatrp - - chebi: CHEBI:29181 - - kegg.compound: C01652 - - metanetx.chemical: MNXM90755 - - sbo: SBO:0000247 - - !!omap - - id: s_1612 - - name: tRNA(Tyr) - - compartment: c - - formula: RH - - charge: 0 + - bigg.metabolite: "trnatrp" + - chebi: "CHEBI:29181" + - kegg.compound: "C01652" + - metanetx.chemical: "MNXM90755" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1612" + - name: "tRNA(Tyr)" + - compartment: "c" + - formula: "RH" + - charge: 0 - annotation: !!omap - - bigg.metabolite: trnatyr - - chebi: CHEBI:29182 - - kegg.compound: C00787 - - metanetx.chemical: MNXM90668 - - sbo: SBO:0000247 - - !!omap - - id: s_1613 - - name: tRNA(Tyr) - - compartment: m - - formula: RH - - charge: 0 + - bigg.metabolite: "trnatyr" + - chebi: "CHEBI:29182" + - kegg.compound: "C00787" + - metanetx.chemical: "MNXM90668" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1613" + - name: "tRNA(Tyr)" + - compartment: "m" + - formula: "RH" + - charge: 0 - annotation: !!omap - - bigg.metabolite: trnatyr - - chebi: CHEBI:29182 - - kegg.compound: C00787 - - metanetx.chemical: MNXM90668 - - sbo: SBO:0000247 - - !!omap - - id: s_1614 - - name: tRNA(Val) - - compartment: c - - formula: RH - - charge: 0 + - bigg.metabolite: "trnatyr" + - chebi: "CHEBI:29182" + - kegg.compound: "C00787" + - metanetx.chemical: "MNXM90668" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1614" + - name: "tRNA(Val)" + - compartment: "c" + - formula: "RH" + - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaval - - chebi: CHEBI:29183 - - kegg.compound: C01653 - - metanetx.chemical: MNXM90885 - - sbo: SBO:0000247 - - !!omap - - id: s_1615 - - name: tRNA(Val) - - compartment: m - - formula: RH - - charge: 0 + - bigg.metabolite: "trnaval" + - chebi: "CHEBI:29183" + - kegg.compound: "C01653" + - metanetx.chemical: "MNXM90885" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1615" + - name: "tRNA(Val)" + - compartment: "m" + - formula: "RH" + - charge: 0 - annotation: !!omap - - bigg.metabolite: trnaval - - chebi: CHEBI:29183 - - kegg.compound: C01653 - - metanetx.chemical: MNXM90885 - - sbo: SBO:0000247 - - !!omap - - id: s_1616 - - name: TRX1 - - compartment: c - - formula: C6H10N2O2S2R4 - - charge: 0 + - bigg.metabolite: "trnaval" + - chebi: "CHEBI:29183" + - kegg.compound: "C01653" + - metanetx.chemical: "MNXM90885" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1616" + - name: "TRX1" + - compartment: "c" + - formula: "C6H10N2O2S2R4" + - charge: 0 - annotation: !!omap - - bigg.metabolite: trdrd - - chebi: CHEBI:15033 - - kegg.compound: C00342 - - metanetx.chemical: MNXM96993 - - sbo: SBO:0000247 - - !!omap - - id: s_1617 - - name: TRX1 - - compartment: m - - formula: C6H10N2O2S2R4 - - charge: 0 + - bigg.metabolite: "trdrd" + - chebi: "CHEBI:15033" + - kegg.compound: "C00342" + - metanetx.chemical: "MNXM96993" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1617" + - name: "TRX1" + - compartment: "m" + - formula: "C6H10N2O2S2R4" + - charge: 0 - annotation: !!omap - - bigg.metabolite: trdrd - - chebi: CHEBI:15033 - - kegg.compound: C00342 - - metanetx.chemical: MNXM96993 - - sbo: SBO:0000247 - - !!omap - - id: s_1618 - - name: TRX1 - - compartment: n - - formula: C6H10N2O2S2R4 - - charge: 0 + - bigg.metabolite: "trdrd" + - chebi: "CHEBI:15033" + - kegg.compound: "C00342" + - metanetx.chemical: "MNXM96993" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1618" + - name: "TRX1" + - compartment: "n" + - formula: "C6H10N2O2S2R4" + - charge: 0 - annotation: !!omap - - bigg.metabolite: trdrd - - chebi: CHEBI:15033 - - kegg.compound: C00342 - - metanetx.chemical: MNXM96993 - - sbo: SBO:0000247 - - !!omap - - id: s_1619 - - name: TRX1 - - compartment: p - - formula: C6H10N2O2S2R4 - - charge: 0 + - bigg.metabolite: "trdrd" + - chebi: "CHEBI:15033" + - kegg.compound: "C00342" + - metanetx.chemical: "MNXM96993" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1619" + - name: "TRX1" + - compartment: "p" + - formula: "C6H10N2O2S2R4" + - charge: 0 - annotation: !!omap - - bigg.metabolite: trdrd - - chebi: CHEBI:15033 - - kegg.compound: C00342 - - metanetx.chemical: MNXM96993 - - sbo: SBO:0000247 - - !!omap - - id: s_1620 - - name: TRX1 disulphide - - compartment: c - - formula: C6H9N2O2S2R4 + - bigg.metabolite: "trdrd" + - chebi: "CHEBI:15033" + - kegg.compound: "C00342" + - metanetx.chemical: "MNXM96993" + - sbo: "SBO:0000247" + - !!omap + - id: "s_1620" + - name: "TRX1 disulphide" + - compartment: "c" + - formula: "C6H9N2O2S2R4" - charge: 1 - annotation: !!omap - - bigg.metabolite: trdox - - chebi: CHEBI:18191 - - kegg.compound: C00343 - - metanetx.chemical: MNXM148 - - sbo: SBO:0000247 + - bigg.metabolite: "trdox" + - chebi: "CHEBI:18191" + - kegg.compound: "C00343" + - metanetx.chemical: "MNXM148" + - sbo: "SBO:0000247" - !!omap - - id: s_1621 - - name: TRX1 disulphide - - compartment: m - - formula: C6H9N2O2S2R4 + - id: "s_1621" + - name: "TRX1 disulphide" + - compartment: "m" + - formula: "C6H9N2O2S2R4" - charge: 1 - annotation: !!omap - - bigg.metabolite: trdox - - chebi: CHEBI:18191 - - kegg.compound: C00343 - - metanetx.chemical: MNXM148 - - sbo: SBO:0000247 + - bigg.metabolite: "trdox" + - chebi: "CHEBI:18191" + - kegg.compound: "C00343" + - metanetx.chemical: "MNXM148" + - sbo: "SBO:0000247" - !!omap - - id: s_1622 - - name: TRX1 disulphide - - compartment: n - - formula: C6H9N2O2S2R4 + - id: "s_1622" + - name: "TRX1 disulphide" + - compartment: "n" + - formula: "C6H9N2O2S2R4" - charge: 1 - annotation: !!omap - - bigg.metabolite: trdox - - chebi: CHEBI:18191 - - kegg.compound: C00343 - - metanetx.chemical: MNXM148 - - sbo: SBO:0000247 + - bigg.metabolite: "trdox" + - chebi: "CHEBI:18191" + - kegg.compound: "C00343" + - metanetx.chemical: "MNXM148" + - sbo: "SBO:0000247" - !!omap - - id: s_1623 - - name: TRX1 disulphide - - compartment: p - - formula: C6H9N2O2S2R4 + - id: "s_1623" + - name: "TRX1 disulphide" + - compartment: "p" + - formula: "C6H9N2O2S2R4" - charge: 1 - annotation: !!omap - - bigg.metabolite: trdox - - chebi: CHEBI:18191 - - kegg.compound: C00343 - - metanetx.chemical: MNXM148 - - sbo: SBO:0000247 + - bigg.metabolite: "trdox" + - chebi: "CHEBI:18191" + - kegg.compound: "C00343" + - metanetx.chemical: "MNXM148" + - sbo: "SBO:0000247" - !!omap - - id: s_1845 - - name: ACP1 - - compartment: m + - id: "s_1845" + - name: "ACP1" + - compartment: "m" + - formula: "" - charge: 0 - annotation: !!omap - - bigg.metabolite: ACP - - chebi: CHEBI:18359 - - kegg.compound: C00229 - - metanetx.chemical: MNXM925 - - sbo: SBO:0000247 + - bigg.metabolite: "ACP" + - chebi: "CHEBI:18359" + - kegg.compound: "C00229" + - metanetx.chemical: "MNXM925" + - sbo: "SBO:0000247" - !!omap - - id: s_2763 - - name: kynurenic acid - - compartment: c - - formula: C10H6NO3 + - id: "s_2763" + - name: "kynurenic acid" + - compartment: "c" + - formula: "C10H6NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: kynate - - chebi: CHEBI:18344 - - kegg.compound: C01717 - - metanetx.chemical: MNXM1113 - - sbo: SBO:0000247 + - bigg.metabolite: "kynate" + - chebi: "CHEBI:18344" + - kegg.compound: "C01717" + - metanetx.chemical: "MNXM1113" + - sbo: "SBO:0000247" - !!omap - - id: s_2764 - - name: quinaldic acid - - compartment: c - - formula: C10H7NO2 + - id: "s_2764" + - name: "quinaldic acid" + - compartment: "c" + - formula: "C10H7NO2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:18386 - - kegg.compound: C06325 - - metanetx.chemical: MNXM4797 - - sbo: SBO:0000247 + - chebi: "CHEBI:18386" + - kegg.compound: "C06325" + - metanetx.chemical: "MNXM4797" + - sbo: "SBO:0000247" - !!omap - - id: s_2766 - - name: 14-demethyllanosterol - - compartment: e - - formula: C29H48O + - id: "s_2766" + - name: "14-demethyllanosterol" + - compartment: "e" + - formula: "C29H48O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 44mzym - - chebi: CHEBI:18364 - - kegg.compound: C05108 - - metanetx.chemical: MNXM913 - - sbo: SBO:0000247 + - bigg.metabolite: "44mzym" + - chebi: "CHEBI:18364" + - kegg.compound: "C05108" + - metanetx.chemical: "MNXM913" + - sbo: "SBO:0000247" - !!omap - - id: s_2768 - - name: ergosta-5,7,22,24(28)-tetraen-3beta-ol - - compartment: e - - formula: C28H42O + - id: "s_2768" + - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol" + - compartment: "e" + - formula: "C28H42O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ergtetrol - - chebi: CHEBI:18249 - - kegg.compound: C05440 - - metanetx.chemical: MNXM1109 - - sbo: SBO:0000247 + - bigg.metabolite: "ergtetrol" + - chebi: "CHEBI:18249" + - kegg.compound: "C05440" + - metanetx.chemical: "MNXM1109" + - sbo: "SBO:0000247" - !!omap - - id: s_2770 - - name: acetoacetyl-ACP - - compartment: m - - formula: C4H5O2SR + - id: "s_2770" + - name: "acetoacetyl-ACP" + - compartment: "m" + - formula: "C4H5O2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: actACP - - chebi: CHEBI:2393 - - kegg.compound: C05744 - - metanetx.chemical: MNXM1223 - - sbo: SBO:0000247 + - bigg.metabolite: "actACP" + - chebi: "CHEBI:2393" + - kegg.compound: "C05744" + - metanetx.chemical: "MNXM1223" + - sbo: "SBO:0000247" - !!omap - - id: s_2771 - - name: butanoyl-ACP - - compartment: m - - formula: C4H7OSR + - id: "s_2771" + - name: "butanoyl-ACP" + - compartment: "m" + - formula: "C4H7OSR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:3247 - - kegg.compound: C05745 - - metanetx.chemical: MNXM2645 - - sbo: SBO:0000247 + - chebi: "CHEBI:3247" + - kegg.compound: "C05745" + - metanetx.chemical: "MNXM2645" + - sbo: "SBO:0000247" - !!omap - - id: s_2772 - - name: 3-oxo-hexanoyl-ACP - - compartment: m - - formula: C6H9O2SR + - id: "s_2772" + - name: "3-oxo-hexanoyl-ACP" + - compartment: "m" + - formula: "C6H9O2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: 3ohexACP - - chebi: CHEBI:1642 - - kegg.compound: C05746 - - metanetx.chemical: MNXM25602 - - sbo: SBO:0000247 + - bigg.metabolite: "3ohexACP" + - chebi: "CHEBI:1642" + - kegg.compound: "C05746" + - metanetx.chemical: "MNXM25602" + - sbo: "SBO:0000247" - !!omap - - id: s_2773 - - name: hexanoyl-ACP - - compartment: m - - formula: C6H11OSR + - id: "s_2773" + - name: "hexanoyl-ACP" + - compartment: "m" + - formula: "C6H11OSR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:5704 - - kegg.compound: C05749 - - metanetx.chemical: MNXM23683 - - sbo: SBO:0000247 + - chebi: "CHEBI:5704" + - kegg.compound: "C05749" + - metanetx.chemical: "MNXM23683" + - sbo: "SBO:0000247" - !!omap - - id: s_2774 - - name: 3-oxo-octanoyl-ACP - - compartment: m - - formula: C8H13O2SR + - id: "s_2774" + - name: "3-oxo-octanoyl-ACP" + - compartment: "m" + - formula: "C8H13O2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: 3ooctACP - - chebi: CHEBI:1646 - - kegg.compound: C05750 - - metanetx.chemical: MNXM28031 - - sbo: SBO:0000247 + - bigg.metabolite: "3ooctACP" + - chebi: "CHEBI:1646" + - kegg.compound: "C05750" + - metanetx.chemical: "MNXM28031" + - sbo: "SBO:0000247" - !!omap - - id: s_2775 - - name: 3-hydroxybutanoyl-ACP - - compartment: m - - formula: C4H7O2SR + - id: "s_2775" + - name: "3-hydroxybutanoyl-ACP" + - compartment: "m" + - formula: "C4H7O2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: 3hbutACP - - kegg.compound: C04618 - - sbo: SBO:0000247 + - bigg.metabolite: "3hbutACP" + - kegg.compound: "C04618" + - sbo: "SBO:0000247" - !!omap - - id: s_2776 - - name: 3-hydroxyhexanoyl-ACP - - compartment: m - - formula: C6H11O2SR + - id: "s_2776" + - name: "3-hydroxyhexanoyl-ACP" + - compartment: "m" + - formula: "C6H11O2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: 3hhexACP - - chebi: CHEBI:326 - - kegg.compound: C05747 - - metanetx.chemical: MNXM25370 - - sbo: SBO:0000247 + - bigg.metabolite: "3hhexACP" + - chebi: "CHEBI:326" + - kegg.compound: "C05747" + - metanetx.chemical: "MNXM25370" + - sbo: "SBO:0000247" - !!omap - - id: s_2777 - - name: 3-hydroxyoctanoyl-ACP - - compartment: m - - formula: C8H15O2SR + - id: "s_2777" + - name: "3-hydroxyoctanoyl-ACP" + - compartment: "m" + - formula: "C8H15O2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: 3hoctaACP - - chebi: CHEBI:80387 - - kegg.compound: C16220 - - metanetx.chemical: MNXM10033 - - sbo: SBO:0000247 + - bigg.metabolite: "3hoctaACP" + - chebi: "CHEBI:80387" + - kegg.compound: "C16220" + - metanetx.chemical: "MNXM10033" + - sbo: "SBO:0000247" - !!omap - - id: s_2778 - - name: trans-but-2-enoyl-ACP - - compartment: m - - formula: C4H5OSR + - id: "s_2778" + - name: "trans-but-2-enoyl-ACP" + - compartment: "m" + - formula: "C4H5OSR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:132146 - - sbo: SBO:0000247 + - chebi: "CHEBI:132146" + - sbo: "SBO:0000247" - !!omap - - id: s_2779 - - name: trans-hex-2-enoyl-ACP - - compartment: m - - formula: C6H9OSR + - id: "s_2779" + - name: "trans-hex-2-enoyl-ACP" + - compartment: "m" + - formula: "C6H9OSR" - charge: 0 - annotation: !!omap - - bigg.metabolite: thex2eACP - - chebi: CHEBI:10727 - - kegg.compound: C05748 - - metanetx.chemical: MNXM24502 - - sbo: SBO:0000247 + - bigg.metabolite: "thex2eACP" + - chebi: "CHEBI:10727" + - kegg.compound: "C05748" + - metanetx.chemical: "MNXM24502" + - sbo: "SBO:0000247" - !!omap - - id: s_2780 - - name: trans-oct-2-enoyl-ACP - - compartment: m - - formula: C8H13OSR + - id: "s_2780" + - name: "trans-oct-2-enoyl-ACP" + - compartment: "m" + - formula: "C8H13OSR" - charge: 0 - annotation: !!omap - - bigg.metabolite: toct2eACP - - kegg.compound: C05751 - - metanetx.chemical: MNXM23766 - - sbo: SBO:0000247 + - bigg.metabolite: "toct2eACP" + - kegg.compound: "C05751" + - metanetx.chemical: "MNXM23766" + - sbo: "SBO:0000247" - !!omap - - id: s_2781 - - name: lauroyl-CoA - - compartment: erm - - formula: C33H54N7O17P3S + - id: "s_2781" + - name: "lauroyl-CoA" + - compartment: "erm" + - formula: "C33H54N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ddcacoa - - chebi: CHEBI:57375 - - kegg.compound: C01832 - - metanetx.chemical: MNXM363 - - sbo: SBO:0000247 + - bigg.metabolite: "ddcacoa" + - chebi: "CHEBI:57375" + - kegg.compound: "C01832" + - metanetx.chemical: "MNXM363" + - sbo: "SBO:0000247" - !!omap - - id: s_2782 - - name: malonyl-CoA - - compartment: erm - - formula: C24H33N7O19P3S + - id: "s_2782" + - name: "malonyl-CoA" + - compartment: "erm" + - formula: "C24H33N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: malcoa - - chebi: CHEBI:57384 - - kegg.compound: C00083 - - metanetx.chemical: MNXM40 - - sbo: SBO:0000247 + - bigg.metabolite: "malcoa" + - chebi: "CHEBI:57384" + - kegg.compound: "C00083" + - metanetx.chemical: "MNXM40" + - sbo: "SBO:0000247" - !!omap - - id: s_2783 - - name: H+ - - compartment: erm - - formula: H + - id: "s_2783" + - name: "H+" + - compartment: "erm" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_2784 - - name: carbon dioxide - - compartment: erm - - formula: CO2 + - id: "s_2784" + - name: "carbon dioxide" + - compartment: "erm" + - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: co2 - - chebi: CHEBI:16526 - - kegg.compound: C00011 - - metanetx.chemical: MNXM13 - - sbo: SBO:0000247 + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - - id: s_2785 - - name: coenzyme A - - compartment: erm - - formula: C21H32N7O16P3S + - id: "s_2785" + - name: "coenzyme A" + - compartment: "erm" + - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: coa - - chebi: CHEBI:57287 - - kegg.compound: C00010 - - metanetx.chemical: MNXM12 - - sbo: SBO:0000247 + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - - id: s_2786 - - name: 3-oxotetradecanoyl-CoA - - compartment: erm - - formula: C35H56N7O18P3S + - id: "s_2786" + - name: "3-oxotetradecanoyl-CoA" + - compartment: "erm" + - formula: "C35H56N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3otdcoa - - chebi: CHEBI:28726 - - kegg.compound: C05261 - - metanetx.chemical: MNXM707 - - sbo: SBO:0000247 + - bigg.metabolite: "3otdcoa" + - chebi: "CHEBI:28726" + - kegg.compound: "C05261" + - metanetx.chemical: "MNXM707" + - sbo: "SBO:0000247" - !!omap - - id: s_2787 - - name: myristoyl-CoA - - compartment: erm - - formula: C35H58N7O17P3S + - id: "s_2787" + - name: "myristoyl-CoA" + - compartment: "erm" + - formula: "C35H58N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: tdcoa - - chebi: CHEBI:57385 - - kegg.compound: C02593 - - metanetx.chemical: MNXM224 - - sbo: SBO:0000247 + - bigg.metabolite: "tdcoa" + - chebi: "CHEBI:57385" + - kegg.compound: "C02593" + - metanetx.chemical: "MNXM224" + - sbo: "SBO:0000247" - !!omap - - id: s_2788 - - name: 3-oxopalmitoyl-CoA - - compartment: erm - - formula: C37H60N7O18P3S + - id: "s_2788" + - name: "3-oxopalmitoyl-CoA" + - compartment: "erm" + - formula: "C37H60N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3ohdcoa - - chebi: CHEBI:57349 - - kegg.compound: C05259 - - metanetx.chemical: MNXM738 - - sbo: SBO:0000247 + - bigg.metabolite: "3ohdcoa" + - chebi: "CHEBI:57349" + - kegg.compound: "C05259" + - metanetx.chemical: "MNXM738" + - sbo: "SBO:0000247" - !!omap - - id: s_2789 - - name: palmitoyl-CoA - - compartment: erm - - formula: C37H62N7O17P3S + - id: "s_2789" + - name: "palmitoyl-CoA" + - compartment: "erm" + - formula: "C37H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: pmtcoa - - chebi: CHEBI:57379 - - kegg.compound: C00154 - - metanetx.chemical: MNXM88 - - sbo: SBO:0000247 + - bigg.metabolite: "pmtcoa" + - chebi: "CHEBI:57379" + - kegg.compound: "C00154" + - metanetx.chemical: "MNXM88" + - sbo: "SBO:0000247" - !!omap - - id: s_2790 - - name: 3-oxooctadecanoyl-CoA - - compartment: erm - - formula: C39H64N7O18P3S + - id: "s_2790" + - name: "3-oxooctadecanoyl-CoA" + - compartment: "erm" + - formula: "C39H64N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3ohodcoa - - chebi: CHEBI:50571 - - kegg.compound: C16216 - - metanetx.chemical: MNXM513 - - sbo: SBO:0000247 + - bigg.metabolite: "3ohodcoa" + - chebi: "CHEBI:50571" + - kegg.compound: "C16216" + - metanetx.chemical: "MNXM513" + - sbo: "SBO:0000247" - !!omap - - id: s_2791 - - name: stearoyl-CoA - - compartment: erm - - formula: C39H66N7O17P3S + - id: "s_2791" + - name: "stearoyl-CoA" + - compartment: "erm" + - formula: "C39H66N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: stcoa - - chebi: CHEBI:57394 - - kegg.compound: C00412 - - metanetx.chemical: MNXM272 - - sbo: SBO:0000247 + - bigg.metabolite: "stcoa" + - chebi: "CHEBI:57394" + - kegg.compound: "C00412" + - metanetx.chemical: "MNXM272" + - sbo: "SBO:0000247" - !!omap - - id: s_2792 - - name: 3-oxoicosanoyl-CoA - - compartment: erm - - formula: C41H68N7O18P3S + - id: "s_2792" + - name: "3-oxoicosanoyl-CoA" + - compartment: "erm" + - formula: "C41H68N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2251 - - chebi: CHEBI:52327 - - metanetx.chemical: MNXM36762 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2251" + - chebi: "CHEBI:52327" + - metanetx.chemical: "MNXM36762" + - sbo: "SBO:0000247" - !!omap - - id: s_2793 - - name: icosanoyl-CoA - - compartment: erm - - formula: C41H70N7O17P3S + - id: "s_2793" + - name: "icosanoyl-CoA" + - compartment: "erm" + - formula: "C41H70N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: arachcoa - - chebi: CHEBI:15527 - - kegg.compound: C02041 - - metanetx.chemical: MNXM1429 - - sbo: SBO:0000247 + - bigg.metabolite: "arachcoa" + - chebi: "CHEBI:15527" + - kegg.compound: "C02041" + - metanetx.chemical: "MNXM1429" + - sbo: "SBO:0000247" - !!omap - - id: s_2794 - - name: 3-oxodocosanoyl-CoA - - compartment: erm - - formula: C43H72N7O18P3S + - id: "s_2794" + - name: "3-oxodocosanoyl-CoA" + - compartment: "erm" + - formula: "C43H72N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2250 - - chebi: CHEBI:52328 - - metanetx.chemical: MNXM36756 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2250" + - chebi: "CHEBI:52328" + - metanetx.chemical: "MNXM36756" + - sbo: "SBO:0000247" - !!omap - - id: s_2795 - - name: docosanoyl-CoA - - compartment: erm - - formula: C43H74N7O17P3S + - id: "s_2795" + - name: "docosanoyl-CoA" + - compartment: "erm" + - formula: "C43H74N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: docoscoa - - chebi: CHEBI:65088 - - kegg.compound: C16528 - - metanetx.chemical: MNXM10780 - - sbo: SBO:0000247 + - bigg.metabolite: "docoscoa" + - chebi: "CHEBI:65088" + - kegg.compound: "C16528" + - metanetx.chemical: "MNXM10780" + - sbo: "SBO:0000247" - !!omap - - id: s_2796 - - name: 3-oxotetracosanoyl-CoA - - compartment: erm - - formula: C45H76N7O18P3S + - id: "s_2796" + - name: "3-oxotetracosanoyl-CoA" + - compartment: "erm" + - formula: "C45H76N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2253 - - chebi: CHEBI:52329 - - metanetx.chemical: MNXM36773 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2253" + - chebi: "CHEBI:52329" + - metanetx.chemical: "MNXM36773" + - sbo: "SBO:0000247" - !!omap - - id: s_2797 - - name: tetracosanoyl-CoA - - compartment: erm - - formula: C45H78N7O17P3S + - id: "s_2797" + - name: "tetracosanoyl-CoA" + - compartment: "erm" + - formula: "C45H78N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ttccoa - - chebi: CHEBI:52974 - - kegg.compound: C16529 - - metanetx.chemical: MNXM1504 - - sbo: SBO:0000247 + - bigg.metabolite: "ttccoa" + - chebi: "CHEBI:52974" + - kegg.compound: "C16529" + - metanetx.chemical: "MNXM1504" + - sbo: "SBO:0000247" - !!omap - - id: s_2798 - - name: 3-oxohexacosanoyl-CoA - - compartment: erm - - formula: C47H80N7O18P3S + - id: "s_2798" + - name: "3-oxohexacosanoyl-CoA" + - compartment: "erm" + - formula: "C47H80N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3ohxccoa - - chebi: CHEBI:52977 - - metanetx.chemical: MNXM36758 - - sbo: SBO:0000247 + - bigg.metabolite: "3ohxccoa" + - chebi: "CHEBI:52977" + - metanetx.chemical: "MNXM36758" + - sbo: "SBO:0000247" - !!omap - - id: s_2799 - - name: NADPH - - compartment: erm - - formula: C21H26N7O17P3 + - id: "s_2799" + - name: "NADPH" + - compartment: "erm" + - formula: "C21H26N7O17P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: nadph - - chebi: CHEBI:57783 - - kegg.compound: C00005 - - metanetx.chemical: MNXM6 - - sbo: SBO:0000247 + - bigg.metabolite: "nadph" + - chebi: "CHEBI:57783" + - kegg.compound: "C00005" + - metanetx.chemical: "MNXM6" + - sbo: "SBO:0000247" - !!omap - - id: s_2800 - - name: NADP(+) - - compartment: erm - - formula: C21H25N7O17P3 + - id: "s_2800" + - name: "NADP(+)" + - compartment: "erm" + - formula: "C21H25N7O17P3" - charge: -3 - annotation: !!omap - - bigg.metabolite: nadp - - chebi: CHEBI:58349 - - kegg.compound: C00006 - - metanetx.chemical: MNXM5 - - sbo: SBO:0000247 + - bigg.metabolite: "nadp" + - chebi: "CHEBI:58349" + - kegg.compound: "C00006" + - metanetx.chemical: "MNXM5" + - sbo: "SBO:0000247" - !!omap - - id: s_2801 - - name: (S)-3-hydroxytetradecanoyl-CoA - - compartment: erm - - formula: C35H58N7O18P3S + - id: "s_2801" + - name: "(S)-3-hydroxytetradecanoyl-CoA" + - compartment: "erm" + - formula: "C35H58N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3htdcoa - - chebi: CHEBI:27466 - - kegg.compound: C05260 - - metanetx.chemical: MNXM767 - - sbo: SBO:0000247 + - bigg.metabolite: "3htdcoa" + - chebi: "CHEBI:27466" + - kegg.compound: "C05260" + - metanetx.chemical: "MNXM767" + - sbo: "SBO:0000247" - !!omap - - id: s_2802 - - name: (S)-3-hydroxypalmitoyl-CoA - - compartment: erm - - formula: C37H62N7O18P3S + - id: "s_2802" + - name: "(S)-3-hydroxypalmitoyl-CoA" + - compartment: "erm" + - formula: "C37H62N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: 3hhdcoa - - chebi: CHEBI:27402 - - kegg.compound: C05258 - - metanetx.chemical: MNXM825 - - sbo: SBO:0000247 + - bigg.metabolite: "3hhdcoa" + - chebi: "CHEBI:27402" + - kegg.compound: "C05258" + - metanetx.chemical: "MNXM825" + - sbo: "SBO:0000247" - !!omap - - id: s_2803 - - name: 3-hydroxyoctadecanoyl-CoA - - compartment: erm - - formula: C39H66N7O18P3S + - id: "s_2803" + - name: "3-hydroxyoctadecanoyl-CoA" + - compartment: "erm" + - formula: "C39H66N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2248 - - chebi: CHEBI:50583 - - kegg.compound: C16217 - - metanetx.chemical: MNXM1309 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2248" + - chebi: "CHEBI:50583" + - kegg.compound: "C16217" + - metanetx.chemical: "MNXM1309" + - sbo: "SBO:0000247" - !!omap - - id: s_2804 - - name: 3-hydroxyicosanoyl-CoA - - compartment: erm - - formula: C41H70N7O18P3S + - id: "s_2804" + - name: "3-hydroxyicosanoyl-CoA" + - compartment: "erm" + - formula: "C41H70N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2247 - - chebi: CHEBI:52324 - - metanetx.chemical: MNXM146349 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2247" + - chebi: "CHEBI:52324" + - metanetx.chemical: "MNXM146349" + - sbo: "SBO:0000247" - !!omap - - id: s_2805 - - name: 3-hydroxydocosanoyl-CoA - - compartment: erm - - formula: C43H74N7O18P3S + - id: "s_2805" + - name: "3-hydroxydocosanoyl-CoA" + - compartment: "erm" + - formula: "C43H74N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2246 - - chebi: CHEBI:52325 - - metanetx.chemical: MNXM162568 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2246" + - chebi: "CHEBI:52325" + - metanetx.chemical: "MNXM162568" + - sbo: "SBO:0000247" - !!omap - - id: s_2806 - - name: 3-hydroxytetracosanoyl-CoA - - compartment: erm - - formula: C45H78N7O18P3S + - id: "s_2806" + - name: "3-hydroxytetracosanoyl-CoA" + - compartment: "erm" + - formula: "C45H78N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2249 - - chebi: CHEBI:52326 - - metanetx.chemical: MNXM36558 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2249" + - chebi: "CHEBI:52326" + - metanetx.chemical: "MNXM36558" + - sbo: "SBO:0000247" - !!omap - - id: s_2807 - - name: (S)-3-hydroxyhexacosanoyl-CoA - - compartment: erm - - formula: C47H82N7O18P3S + - id: "s_2807" + - name: "(S)-3-hydroxyhexacosanoyl-CoA" + - compartment: "erm" + - formula: "C47H82N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: CHEBI:52976 - - metanetx.chemical: MNXM31741 - - sbo: SBO:0000247 + - chebi: "CHEBI:52976" + - metanetx.chemical: "MNXM31741" + - sbo: "SBO:0000247" - !!omap - - id: s_2808 - - name: H2O - - compartment: erm - - formula: H2O + - id: "s_2808" + - name: "H2O" + - compartment: "erm" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_2809 - - name: trans-tetradec-2-enoyl-CoA - - compartment: erm - - formula: C35H56N7O17P3S + - id: "s_2809" + - name: "trans-tetradec-2-enoyl-CoA" + - compartment: "erm" + - formula: "C35H56N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: td2coa - - chebi: CHEBI:61405 - - kegg.compound: C05273 - - metanetx.chemical: MNXM654 - - sbo: SBO:0000247 + - bigg.metabolite: "td2coa" + - chebi: "CHEBI:61405" + - kegg.compound: "C05273" + - metanetx.chemical: "MNXM654" + - sbo: "SBO:0000247" - !!omap - - id: s_2810 - - name: trans-hexadec-2-enoyl-CoA - - compartment: erm - - formula: C37H60N7O17P3S + - id: "s_2810" + - name: "trans-hexadec-2-enoyl-CoA" + - compartment: "erm" + - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hdd2coa - - kegg.compound: C05272 - - metanetx.chemical: MNXM581 - - sbo: SBO:0000247 + - bigg.metabolite: "hdd2coa" + - kegg.compound: "C05272" + - metanetx.chemical: "MNXM581" + - sbo: "SBO:0000247" - !!omap - - id: s_2811 - - name: trans-octadec-2-enoyl-CoA - - compartment: erm - - formula: C39H64N7O17P3S + - id: "s_2811" + - name: "trans-octadec-2-enoyl-CoA" + - compartment: "erm" + - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: od2coa - - chebi: CHEBI:50570 - - kegg.compound: C16218 - - metanetx.chemical: MNXM954 - - sbo: SBO:0000247 + - bigg.metabolite: "od2coa" + - chebi: "CHEBI:50570" + - kegg.compound: "C16218" + - metanetx.chemical: "MNXM954" + - sbo: "SBO:0000247" - !!omap - - id: s_2812 - - name: trans-icos-2-enoyl-CoA - - compartment: erm - - formula: C41H68N7O17P3S + - id: "s_2812" + - name: "trans-icos-2-enoyl-CoA" + - compartment: "erm" + - formula: "C41H68N7O17P3S" - charge: -4 - annotation: !!omap - - metanetx.chemical: MNXM22115 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM22115" + - sbo: "SBO:0000247" - !!omap - - id: s_2813 - - name: trans-docos-2-enoyl-CoA - - compartment: erm - - formula: C43H72N7O17P3S + - id: "s_2813" + - name: "trans-docos-2-enoyl-CoA" + - compartment: "erm" + - formula: "C43H72N7O17P3S" - charge: -4 - annotation: !!omap - - metanetx.chemical: MNXM97615 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM97615" + - sbo: "SBO:0000247" - !!omap - - id: s_2814 - - name: trans-tetracos-2-enoyl-CoA - - compartment: erm - - formula: C45H76N7O17P3S + - id: "s_2814" + - name: "trans-tetracos-2-enoyl-CoA" + - compartment: "erm" + - formula: "C45H76N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2245 - - chebi: CHEBI:75068 - - metanetx.chemical: MNXM97616 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2245" + - chebi: "CHEBI:75068" + - metanetx.chemical: "MNXM97616" + - sbo: "SBO:0000247" - !!omap - - id: s_2815 - - name: trans-hexacos-2-enoyl-CoA - - compartment: erm - - formula: C47H80N7O17P3S + - id: "s_2815" + - name: "trans-hexacos-2-enoyl-CoA" + - compartment: "erm" + - formula: "C47H80N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hxc2coa - - chebi: CHEBI:52975 - - metanetx.chemical: MNXM114303 - - sbo: SBO:0000247 + - bigg.metabolite: "hxc2coa" + - chebi: "CHEBI:52975" + - metanetx.chemical: "MNXM114303" + - sbo: "SBO:0000247" - !!omap - - id: s_2816 - - name: hexacosanoyl-CoA - - compartment: erm - - formula: C47H82N7O17P3S + - id: "s_2816" + - name: "hexacosanoyl-CoA" + - compartment: "erm" + - formula: "C47H82N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hexccoa - - chebi: CHEBI:52966 - - metanetx.chemical: MNXM1190 - - sbo: SBO:0000247 + - bigg.metabolite: "hexccoa" + - chebi: "CHEBI:52966" + - metanetx.chemical: "MNXM1190" + - sbo: "SBO:0000247" - !!omap - - id: s_2817 - - name: oxygen - - compartment: erm - - formula: O2 + - id: "s_2817" + - name: "oxygen" + - compartment: "erm" + - formula: "O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: o2 - - chebi: CHEBI:15379 - - kegg.compound: C00007 - - metanetx.chemical: MNXM4 - - sbo: SBO:0000247 + - bigg.metabolite: "o2" + - chebi: "CHEBI:15379" + - kegg.compound: "C00007" + - metanetx.chemical: "MNXM4" + - sbo: "SBO:0000247" - !!omap - - id: s_2818 - - name: NADH - - compartment: erm - - formula: C21H27N7O14P2 + - id: "s_2818" + - name: "NADH" + - compartment: "erm" + - formula: "C21H27N7O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: nadh - - chebi: CHEBI:57945 - - kegg.compound: C00004 - - metanetx.chemical: MNXM10 - - sbo: SBO:0000247 + - bigg.metabolite: "nadh" + - chebi: "CHEBI:57945" + - kegg.compound: "C00004" + - metanetx.chemical: "MNXM10" + - sbo: "SBO:0000247" - !!omap - - id: s_2819 - - name: palmitoleoyl-CoA(4-) - - compartment: erm - - formula: C37H60N7O17P3S + - id: "s_2819" + - name: "palmitoleoyl-CoA(4-)" + - compartment: "erm" + - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hdcoa - - chebi: CHEBI:61540 - - kegg.compound: C21072 - - metanetx.chemical: MNXM781 - - sbo: SBO:0000247 + - bigg.metabolite: "hdcoa" + - chebi: "CHEBI:61540" + - kegg.compound: "C21072" + - metanetx.chemical: "MNXM781" + - sbo: "SBO:0000247" - !!omap - - id: s_2820 - - name: NAD - - compartment: erm - - formula: C21H26N7O14P2 + - id: "s_2820" + - name: "NAD" + - compartment: "erm" + - formula: "C21H26N7O14P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: nad - - chebi: CHEBI:57540 - - kegg.compound: C00003 - - metanetx.chemical: MNXM8 - - sbo: SBO:0000247 + - bigg.metabolite: "nad" + - chebi: "CHEBI:57540" + - kegg.compound: "C00003" + - metanetx.chemical: "MNXM8" + - sbo: "SBO:0000247" - !!omap - - id: s_2821 - - name: oleoyl-CoA - - compartment: erm - - formula: C39H64N7O17P3S + - id: "s_2821" + - name: "oleoyl-CoA" + - compartment: "erm" + - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ocdce9coa - - chebi: CHEBI:57387 - - kegg.compound: C00510 - - metanetx.chemical: MNXM686 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdce9coa" + - chebi: "CHEBI:57387" + - kegg.compound: "C00510" + - metanetx.chemical: "MNXM686" + - sbo: "SBO:0000247" - !!omap - - id: s_2822 - - name: butyrate - - compartment: e - - formula: C4H7O2 + - id: "s_2822" + - name: "butyrate" + - compartment: "e" + - formula: "C4H7O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: but - - chebi: CHEBI:17968 - - kegg.compound: C00246 - - metanetx.chemical: MNXM458 - - sbo: SBO:0000247 + - bigg.metabolite: "but" + - chebi: "CHEBI:17968" + - kegg.compound: "C00246" + - metanetx.chemical: "MNXM458" + - sbo: "SBO:0000247" - !!omap - - id: s_2824 - - name: hexanoate - - compartment: e - - formula: C6H11O2 + - id: "s_2824" + - name: "hexanoate" + - compartment: "e" + - formula: "C6H11O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hxa - - chebi: CHEBI:17120 - - kegg.compound: C01585 - - metanetx.chemical: MNXM1653 - - sbo: SBO:0000247 + - bigg.metabolite: "hxa" + - chebi: "CHEBI:17120" + - kegg.compound: "C01585" + - metanetx.chemical: "MNXM1653" + - sbo: "SBO:0000247" - !!omap - - id: s_2826 - - name: oleate - - compartment: e - - formula: C18H33O2 + - id: "s_2826" + - name: "oleate" + - compartment: "e" + - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdcea - - chebi: CHEBI:30823 - - kegg.compound: C00712 - - metanetx.chemical: MNXM306 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - - id: s_2828 - - name: butyrate - - compartment: c - - formula: C4H7O2 + - id: "s_2828" + - name: "butyrate" + - compartment: "c" + - formula: "C4H7O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: but - - chebi: CHEBI:17968 - - kegg.compound: C00246 - - metanetx.chemical: MNXM458 - - sbo: SBO:0000247 + - bigg.metabolite: "but" + - chebi: "CHEBI:17968" + - kegg.compound: "C00246" + - metanetx.chemical: "MNXM458" + - sbo: "SBO:0000247" - !!omap - - id: s_2829 - - name: hexanoate - - compartment: c - - formula: C6H11O2 + - id: "s_2829" + - name: "hexanoate" + - compartment: "c" + - formula: "C6H11O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hxa - - chebi: CHEBI:17120 - - kegg.compound: C01585 - - metanetx.chemical: MNXM1653 - - sbo: SBO:0000247 + - bigg.metabolite: "hxa" + - chebi: "CHEBI:17120" + - kegg.compound: "C01585" + - metanetx.chemical: "MNXM1653" + - sbo: "SBO:0000247" - !!omap - - id: s_2831 - - name: ATP - - compartment: erm - - formula: C10H12N5O13P3 + - id: "s_2831" + - name: "ATP" + - compartment: "erm" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: atp - - chebi: CHEBI:30616 - - kegg.compound: C00002 - - metanetx.chemical: MNXM3 - - sbo: SBO:0000247 + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - - id: s_2832 - - name: laurate - - compartment: erm - - formula: C12H23O2 + - id: "s_2832" + - name: "laurate" + - compartment: "erm" + - formula: "C12H23O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ddca - - chebi: CHEBI:18262 - - kegg.compound: C02679 - - metanetx.chemical: MNXM402 - - sbo: SBO:0000247 + - bigg.metabolite: "ddca" + - chebi: "CHEBI:18262" + - kegg.compound: "C02679" + - metanetx.chemical: "MNXM402" + - sbo: "SBO:0000247" - !!omap - - id: s_2833 - - name: AMP - - compartment: erm - - formula: C10H12N5O7P + - id: "s_2833" + - name: "AMP" + - compartment: "erm" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: amp - - chebi: CHEBI:456215 - - kegg.compound: C00020 - - metanetx.chemical: MNXM14 - - sbo: SBO:0000247 + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - - id: s_2834 - - name: diphosphate - - compartment: erm - - formula: HO7P2 + - id: "s_2834" + - name: "diphosphate" + - compartment: "erm" + - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ppi - - chebi: CHEBI:33019 - - kegg.compound: C00013 - - metanetx.chemical: MNXM11 - - sbo: SBO:0000247 + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - - id: s_2835 - - name: myristate - - compartment: erm - - formula: C14H27O2 + - id: "s_2835" + - name: "myristate" + - compartment: "erm" + - formula: "C14H27O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ttdca - - chebi: CHEBI:30807 - - kegg.compound: C06424 - - metanetx.chemical: MNXM314 - - sbo: SBO:0000247 + - bigg.metabolite: "ttdca" + - chebi: "CHEBI:30807" + - kegg.compound: "C06424" + - metanetx.chemical: "MNXM314" + - sbo: "SBO:0000247" - !!omap - - id: s_2836 - - name: palmitate - - compartment: erm - - formula: C16H31O2 + - id: "s_2836" + - name: "palmitate" + - compartment: "erm" + - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdca - - chebi: CHEBI:7896 - - kegg.compound: C00249 - - metanetx.chemical: MNXM108 - - sbo: SBO:0000247 + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - - id: s_2837 - - name: palmitoleate - - compartment: erm - - formula: C16H29O2 + - id: "s_2837" + - name: "palmitoleate" + - compartment: "erm" + - formula: "C16H29O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdcea - - chebi: CHEBI:32372 - - kegg.compound: C08362 - - metanetx.chemical: MNXM162245 - - sbo: SBO:0000247 + - bigg.metabolite: "hdcea" + - chebi: "CHEBI:32372" + - kegg.compound: "C08362" + - metanetx.chemical: "MNXM162245" + - sbo: "SBO:0000247" - !!omap - - id: s_2838 - - name: stearate - - compartment: erm - - formula: C18H35O2 + - id: "s_2838" + - name: "stearate" + - compartment: "erm" + - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdca - - chebi: CHEBI:25629 - - kegg.compound: C01530 - - metanetx.chemical: MNXM236 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - - id: s_2839 - - name: oleate - - compartment: erm - - formula: C18H33O2 + - id: "s_2839" + - name: "oleate" + - compartment: "erm" + - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdcea - - chebi: CHEBI:30823 - - kegg.compound: C00712 - - metanetx.chemical: MNXM306 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - - id: s_2840 - - name: ATP - - compartment: lp - - formula: C10H12N5O13P3 + - id: "s_2840" + - name: "ATP" + - compartment: "lp" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: atp - - chebi: CHEBI:30616 - - kegg.compound: C00002 - - metanetx.chemical: MNXM3 - - sbo: SBO:0000247 + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - - id: s_2841 - - name: laurate - - compartment: lp - - formula: C12H23O2 + - id: "s_2841" + - name: "laurate" + - compartment: "lp" + - formula: "C12H23O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ddca - - chebi: CHEBI:18262 - - kegg.compound: C02679 - - metanetx.chemical: MNXM402 - - sbo: SBO:0000247 + - bigg.metabolite: "ddca" + - chebi: "CHEBI:18262" + - kegg.compound: "C02679" + - metanetx.chemical: "MNXM402" + - sbo: "SBO:0000247" - !!omap - - id: s_2842 - - name: AMP - - compartment: lp - - formula: C10H12N5O7P + - id: "s_2842" + - name: "AMP" + - compartment: "lp" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: amp - - chebi: CHEBI:456215 - - kegg.compound: C00020 - - metanetx.chemical: MNXM14 - - sbo: SBO:0000247 + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - - id: s_2843 - - name: lauroyl-CoA - - compartment: lp - - formula: C33H54N7O17P3S + - id: "s_2843" + - name: "lauroyl-CoA" + - compartment: "lp" + - formula: "C33H54N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ddcacoa - - chebi: CHEBI:57375 - - kegg.compound: C01832 - - metanetx.chemical: MNXM363 - - sbo: SBO:0000247 + - bigg.metabolite: "ddcacoa" + - chebi: "CHEBI:57375" + - kegg.compound: "C01832" + - metanetx.chemical: "MNXM363" + - sbo: "SBO:0000247" - !!omap - - id: s_2844 - - name: myristate - - compartment: lp - - formula: C14H27O2 + - id: "s_2844" + - name: "myristate" + - compartment: "lp" + - formula: "C14H27O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ttdca - - chebi: CHEBI:30807 - - kegg.compound: C06424 - - metanetx.chemical: MNXM314 - - sbo: SBO:0000247 + - bigg.metabolite: "ttdca" + - chebi: "CHEBI:30807" + - kegg.compound: "C06424" + - metanetx.chemical: "MNXM314" + - sbo: "SBO:0000247" - !!omap - - id: s_2845 - - name: myristoyl-CoA - - compartment: lp - - formula: C35H58N7O17P3S + - id: "s_2845" + - name: "myristoyl-CoA" + - compartment: "lp" + - formula: "C35H58N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: tdcoa - - chebi: CHEBI:57385 - - kegg.compound: C02593 - - metanetx.chemical: MNXM224 - - sbo: SBO:0000247 + - bigg.metabolite: "tdcoa" + - chebi: "CHEBI:57385" + - kegg.compound: "C02593" + - metanetx.chemical: "MNXM224" + - sbo: "SBO:0000247" - !!omap - - id: s_2846 - - name: palmitate - - compartment: lp - - formula: C16H31O2 + - id: "s_2846" + - name: "palmitate" + - compartment: "lp" + - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdca - - chebi: CHEBI:7896 - - kegg.compound: C00249 - - metanetx.chemical: MNXM108 - - sbo: SBO:0000247 + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - - id: s_2847 - - name: palmitoyl-CoA - - compartment: lp - - formula: C37H62N7O17P3S + - id: "s_2847" + - name: "palmitoyl-CoA" + - compartment: "lp" + - formula: "C37H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: pmtcoa - - chebi: CHEBI:57379 - - kegg.compound: C00154 - - metanetx.chemical: MNXM88 - - sbo: SBO:0000247 + - bigg.metabolite: "pmtcoa" + - chebi: "CHEBI:57379" + - kegg.compound: "C00154" + - metanetx.chemical: "MNXM88" + - sbo: "SBO:0000247" - !!omap - - id: s_2848 - - name: palmitoleate - - compartment: lp - - formula: C16H29O2 + - id: "s_2848" + - name: "palmitoleate" + - compartment: "lp" + - formula: "C16H29O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdcea - - chebi: CHEBI:32372 - - kegg.compound: C08362 - - metanetx.chemical: MNXM162245 - - sbo: SBO:0000247 + - bigg.metabolite: "hdcea" + - chebi: "CHEBI:32372" + - kegg.compound: "C08362" + - metanetx.chemical: "MNXM162245" + - sbo: "SBO:0000247" - !!omap - - id: s_2849 - - name: palmitoleoyl-CoA(4-) - - compartment: lp - - formula: C37H60N7O17P3S + - id: "s_2849" + - name: "palmitoleoyl-CoA(4-)" + - compartment: "lp" + - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hdcoa - - chebi: CHEBI:61540 - - kegg.compound: C21072 - - metanetx.chemical: MNXM781 - - sbo: SBO:0000247 + - bigg.metabolite: "hdcoa" + - chebi: "CHEBI:61540" + - kegg.compound: "C21072" + - metanetx.chemical: "MNXM781" + - sbo: "SBO:0000247" - !!omap - - id: s_2850 - - name: stearate - - compartment: lp - - formula: C18H35O2 + - id: "s_2850" + - name: "stearate" + - compartment: "lp" + - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdca - - chebi: CHEBI:25629 - - kegg.compound: C01530 - - metanetx.chemical: MNXM236 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - - id: s_2851 - - name: stearoyl-CoA - - compartment: lp - - formula: C39H66N7O17P3S + - id: "s_2851" + - name: "stearoyl-CoA" + - compartment: "lp" + - formula: "C39H66N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: stcoa - - chebi: CHEBI:57394 - - kegg.compound: C00412 - - metanetx.chemical: MNXM272 - - sbo: SBO:0000247 + - bigg.metabolite: "stcoa" + - chebi: "CHEBI:57394" + - kegg.compound: "C00412" + - metanetx.chemical: "MNXM272" + - sbo: "SBO:0000247" - !!omap - - id: s_2852 - - name: oleate - - compartment: lp - - formula: C18H33O2 + - id: "s_2852" + - name: "oleate" + - compartment: "lp" + - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdcea - - chebi: CHEBI:30823 - - kegg.compound: C00712 - - metanetx.chemical: MNXM306 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - - id: s_2853 - - name: oleoyl-CoA - - compartment: lp - - formula: C39H64N7O17P3S + - id: "s_2853" + - name: "oleoyl-CoA" + - compartment: "lp" + - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ocdce9coa - - chebi: CHEBI:57387 - - kegg.compound: C00510 - - metanetx.chemical: MNXM686 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdce9coa" + - chebi: "CHEBI:57387" + - kegg.compound: "C00510" + - metanetx.chemical: "MNXM686" + - sbo: "SBO:0000247" - !!omap - - id: s_2854 - - name: palmitoleoyl-CoA(4-) - - compartment: p - - formula: C37H60N7O17P3S + - id: "s_2854" + - name: "palmitoleoyl-CoA(4-)" + - compartment: "p" + - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hdcoa - - chebi: CHEBI:61540 - - kegg.compound: C21072 - - metanetx.chemical: MNXM781 - - sbo: SBO:0000247 + - bigg.metabolite: "hdcoa" + - chebi: "CHEBI:61540" + - kegg.compound: "C21072" + - metanetx.chemical: "MNXM781" + - sbo: "SBO:0000247" - !!omap - - id: s_2855 - - name: oleate - - compartment: p - - formula: C18H33O2 + - id: "s_2855" + - name: "oleate" + - compartment: "p" + - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdcea - - chebi: CHEBI:30823 - - kegg.compound: C00712 - - metanetx.chemical: MNXM306 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - - id: s_2856 - - name: ATP - - compartment: ce - - formula: C10H12N5O13P3 + - id: "s_2856" + - name: "ATP" + - compartment: "ce" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: atp - - chebi: CHEBI:30616 - - kegg.compound: C00002 - - metanetx.chemical: MNXM3 - - sbo: SBO:0000247 + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - - id: s_2857 - - name: coenzyme A - - compartment: ce - - formula: C21H32N7O16P3S + - id: "s_2857" + - name: "coenzyme A" + - compartment: "ce" + - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: coa - - chebi: CHEBI:57287 - - kegg.compound: C00010 - - metanetx.chemical: MNXM12 - - sbo: SBO:0000247 + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - - id: s_2858 - - name: arachidate - - compartment: ce - - formula: C20H39O2 + - id: "s_2858" + - name: "arachidate" + - compartment: "ce" + - formula: "C20H39O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: arach - - chebi: CHEBI:32360 - - kegg.compound: C06425 - - metanetx.chemical: MNXM2976 - - sbo: SBO:0000247 + - bigg.metabolite: "arach" + - chebi: "CHEBI:32360" + - kegg.compound: "C06425" + - metanetx.chemical: "MNXM2976" + - sbo: "SBO:0000247" - !!omap - - id: s_2859 - - name: AMP - - compartment: ce - - formula: C10H12N5O7P + - id: "s_2859" + - name: "AMP" + - compartment: "ce" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: amp - - chebi: CHEBI:456215 - - kegg.compound: C00020 - - metanetx.chemical: MNXM14 - - sbo: SBO:0000247 + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - - id: s_2860 - - name: diphosphate - - compartment: ce - - formula: HO7P2 + - id: "s_2860" + - name: "diphosphate" + - compartment: "ce" + - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ppi - - chebi: CHEBI:33019 - - kegg.compound: C00013 - - metanetx.chemical: MNXM11 - - sbo: SBO:0000247 + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - - id: s_2861 - - name: icosanoyl-CoA - - compartment: ce - - formula: C41H70N7O17P3S + - id: "s_2861" + - name: "icosanoyl-CoA" + - compartment: "ce" + - formula: "C41H70N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: arachcoa - - chebi: CHEBI:15527 - - kegg.compound: C02041 - - metanetx.chemical: MNXM1429 - - sbo: SBO:0000247 + - bigg.metabolite: "arachcoa" + - chebi: "CHEBI:15527" + - kegg.compound: "C02041" + - metanetx.chemical: "MNXM1429" + - sbo: "SBO:0000247" - !!omap - - id: s_2862 - - name: behenate - - compartment: ce - - formula: C22H43O2 + - id: "s_2862" + - name: "behenate" + - compartment: "ce" + - formula: "C22H43O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: docosac - - chebi: CHEBI:23858 - - kegg.compound: C08281 - - metanetx.chemical: MNXM7102 - - sbo: SBO:0000247 + - bigg.metabolite: "docosac" + - chebi: "CHEBI:23858" + - kegg.compound: "C08281" + - metanetx.chemical: "MNXM7102" + - sbo: "SBO:0000247" - !!omap - - id: s_2863 - - name: docosanoyl-CoA - - compartment: ce - - formula: C43H74N7O17P3S + - id: "s_2863" + - name: "docosanoyl-CoA" + - compartment: "ce" + - formula: "C43H74N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: docoscoa - - chebi: CHEBI:65088 - - kegg.compound: C16528 - - metanetx.chemical: MNXM10780 - - sbo: SBO:0000247 + - bigg.metabolite: "docoscoa" + - chebi: "CHEBI:65088" + - kegg.compound: "C16528" + - metanetx.chemical: "MNXM10780" + - sbo: "SBO:0000247" - !!omap - - id: s_2864 - - name: lignoceric acid - - compartment: ce - - formula: C24H47O2 + - id: "s_2864" + - name: "lignoceric acid" + - compartment: "ce" + - formula: "C24H47O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: lgnc - - chebi: CHEBI:31014 - - kegg.compound: C08320 - - metanetx.chemical: MNXM3297 - - sbo: SBO:0000247 + - bigg.metabolite: "lgnc" + - chebi: "CHEBI:31014" + - kegg.compound: "C08320" + - metanetx.chemical: "MNXM3297" + - sbo: "SBO:0000247" - !!omap - - id: s_2865 - - name: tetracosanoyl-CoA - - compartment: ce - - formula: C45H78N7O17P3S + - id: "s_2865" + - name: "tetracosanoyl-CoA" + - compartment: "ce" + - formula: "C45H78N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ttccoa - - chebi: CHEBI:52974 - - kegg.compound: C16529 - - metanetx.chemical: MNXM1504 - - sbo: SBO:0000247 + - bigg.metabolite: "ttccoa" + - chebi: "CHEBI:52974" + - kegg.compound: "C16529" + - metanetx.chemical: "MNXM1504" + - sbo: "SBO:0000247" - !!omap - - id: s_2866 - - name: cerotic acid - - compartment: ce - - formula: C26H51O2 + - id: "s_2866" + - name: "cerotic acid" + - compartment: "ce" + - formula: "C26H51O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hexc - - chebi: CHEBI:31013 - - metanetx.chemical: MNXM46158 - - sbo: SBO:0000247 + - bigg.metabolite: "hexc" + - chebi: "CHEBI:31013" + - metanetx.chemical: "MNXM46158" + - sbo: "SBO:0000247" - !!omap - - id: s_2867 - - name: hexacosanoyl-CoA - - compartment: ce - - formula: C47H82N7O17P3S + - id: "s_2867" + - name: "hexacosanoyl-CoA" + - compartment: "ce" + - formula: "C47H82N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hexccoa - - chebi: CHEBI:52966 - - metanetx.chemical: MNXM1190 - - sbo: SBO:0000247 + - bigg.metabolite: "hexccoa" + - chebi: "CHEBI:52966" + - metanetx.chemical: "MNXM1190" + - sbo: "SBO:0000247" - !!omap - - id: s_2868 - - name: behenate - - compartment: erm - - formula: C22H43O2 + - id: "s_2868" + - name: "behenate" + - compartment: "erm" + - formula: "C22H43O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: docosac - - chebi: CHEBI:23858 - - kegg.compound: C08281 - - metanetx.chemical: MNXM7102 - - sbo: SBO:0000247 + - bigg.metabolite: "docosac" + - chebi: "CHEBI:23858" + - kegg.compound: "C08281" + - metanetx.chemical: "MNXM7102" + - sbo: "SBO:0000247" - !!omap - - id: s_2869 - - name: lignoceric acid - - compartment: erm - - formula: C24H47O2 + - id: "s_2869" + - name: "lignoceric acid" + - compartment: "erm" + - formula: "C24H47O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: lgnc - - chebi: CHEBI:31014 - - kegg.compound: C08320 - - metanetx.chemical: MNXM3297 - - sbo: SBO:0000247 + - bigg.metabolite: "lgnc" + - chebi: "CHEBI:31014" + - kegg.compound: "C08320" + - metanetx.chemical: "MNXM3297" + - sbo: "SBO:0000247" - !!omap - - id: s_2870 - - name: cerotic acid - - compartment: erm - - formula: C26H51O2 + - id: "s_2870" + - name: "cerotic acid" + - compartment: "erm" + - formula: "C26H51O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hexc - - chebi: CHEBI:31013 - - metanetx.chemical: MNXM46158 - - sbo: SBO:0000247 + - bigg.metabolite: "hexc" + - chebi: "CHEBI:31013" + - metanetx.chemical: "MNXM46158" + - sbo: "SBO:0000247" - !!omap - - id: s_2871 - - name: behenate - - compartment: lp - - formula: C22H43O2 + - id: "s_2871" + - name: "behenate" + - compartment: "lp" + - formula: "C22H43O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: docosac - - chebi: CHEBI:23858 - - kegg.compound: C08281 - - metanetx.chemical: MNXM7102 - - sbo: SBO:0000247 + - bigg.metabolite: "docosac" + - chebi: "CHEBI:23858" + - kegg.compound: "C08281" + - metanetx.chemical: "MNXM7102" + - sbo: "SBO:0000247" - !!omap - - id: s_2872 - - name: docosanoyl-CoA - - compartment: lp - - formula: C43H74N7O17P3S + - id: "s_2872" + - name: "docosanoyl-CoA" + - compartment: "lp" + - formula: "C43H74N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: docoscoa - - chebi: CHEBI:65088 - - kegg.compound: C16528 - - metanetx.chemical: MNXM10780 - - sbo: SBO:0000247 + - bigg.metabolite: "docoscoa" + - chebi: "CHEBI:65088" + - kegg.compound: "C16528" + - metanetx.chemical: "MNXM10780" + - sbo: "SBO:0000247" - !!omap - - id: s_2873 - - name: lignoceric acid - - compartment: lp - - formula: C24H47O2 + - id: "s_2873" + - name: "lignoceric acid" + - compartment: "lp" + - formula: "C24H47O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: lgnc - - chebi: CHEBI:31014 - - kegg.compound: C08320 - - metanetx.chemical: MNXM3297 - - sbo: SBO:0000247 + - bigg.metabolite: "lgnc" + - chebi: "CHEBI:31014" + - kegg.compound: "C08320" + - metanetx.chemical: "MNXM3297" + - sbo: "SBO:0000247" - !!omap - - id: s_2874 - - name: tetracosanoyl-CoA - - compartment: lp - - formula: C45H78N7O17P3S + - id: "s_2874" + - name: "tetracosanoyl-CoA" + - compartment: "lp" + - formula: "C45H78N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ttccoa - - chebi: CHEBI:52974 - - kegg.compound: C16529 - - metanetx.chemical: MNXM1504 - - sbo: SBO:0000247 + - bigg.metabolite: "ttccoa" + - chebi: "CHEBI:52974" + - kegg.compound: "C16529" + - metanetx.chemical: "MNXM1504" + - sbo: "SBO:0000247" - !!omap - - id: s_2875 - - name: cerotic acid - - compartment: lp - - formula: C26H51O2 + - id: "s_2875" + - name: "cerotic acid" + - compartment: "lp" + - formula: "C26H51O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hexc - - chebi: CHEBI:31013 - - metanetx.chemical: MNXM46158 - - sbo: SBO:0000247 + - bigg.metabolite: "hexc" + - chebi: "CHEBI:31013" + - metanetx.chemical: "MNXM46158" + - sbo: "SBO:0000247" - !!omap - - id: s_2876 - - name: hexacosanoyl-CoA - - compartment: lp - - formula: C47H82N7O17P3S + - id: "s_2876" + - name: "hexacosanoyl-CoA" + - compartment: "lp" + - formula: "C47H82N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hexccoa - - chebi: CHEBI:52966 - - metanetx.chemical: MNXM1190 - - sbo: SBO:0000247 + - bigg.metabolite: "hexccoa" + - chebi: "CHEBI:52966" + - metanetx.chemical: "MNXM1190" + - sbo: "SBO:0000247" - !!omap - - id: s_2877 - - name: palmitoleoyl-CoA(4-) - - compartment: c - - formula: C37H60N7O17P3S + - id: "s_2877" + - name: "palmitoleoyl-CoA(4-)" + - compartment: "c" + - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hdcoa - - chebi: CHEBI:61540 - - kegg.compound: C21072 - - metanetx.chemical: MNXM781 - - sbo: SBO:0000247 + - bigg.metabolite: "hdcoa" + - chebi: "CHEBI:61540" + - kegg.compound: "C21072" + - metanetx.chemical: "MNXM781" + - sbo: "SBO:0000247" - !!omap - - id: s_2878 - - name: icosanoyl-CoA - - compartment: c - - formula: C41H70N7O17P3S + - id: "s_2878" + - name: "icosanoyl-CoA" + - compartment: "c" + - formula: "C41H70N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: arachcoa - - chebi: CHEBI:15527 - - kegg.compound: C02041 - - metanetx.chemical: MNXM1429 - - sbo: SBO:0000247 + - bigg.metabolite: "arachcoa" + - chebi: "CHEBI:15527" + - kegg.compound: "C02041" + - metanetx.chemical: "MNXM1429" + - sbo: "SBO:0000247" - !!omap - - id: s_2879 - - name: icosanoyl-CoA - - compartment: p - - formula: C41H70N7O17P3S + - id: "s_2879" + - name: "icosanoyl-CoA" + - compartment: "p" + - formula: "C41H70N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: arachcoa - - chebi: CHEBI:15527 - - kegg.compound: C02041 - - metanetx.chemical: MNXM1429 - - sbo: SBO:0000247 + - bigg.metabolite: "arachcoa" + - chebi: "CHEBI:15527" + - kegg.compound: "C02041" + - metanetx.chemical: "MNXM1429" + - sbo: "SBO:0000247" - !!omap - - id: s_2880 - - name: docosanoyl-CoA - - compartment: c - - formula: C43H74N7O17P3S + - id: "s_2880" + - name: "docosanoyl-CoA" + - compartment: "c" + - formula: "C43H74N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: docoscoa - - chebi: CHEBI:65088 - - kegg.compound: C16528 - - metanetx.chemical: MNXM10780 - - sbo: SBO:0000247 + - bigg.metabolite: "docoscoa" + - chebi: "CHEBI:65088" + - kegg.compound: "C16528" + - metanetx.chemical: "MNXM10780" + - sbo: "SBO:0000247" - !!omap - - id: s_2881 - - name: docosanoyl-CoA - - compartment: p - - formula: C43H74N7O17P3S + - id: "s_2881" + - name: "docosanoyl-CoA" + - compartment: "p" + - formula: "C43H74N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: docoscoa - - chebi: CHEBI:65088 - - kegg.compound: C16528 - - metanetx.chemical: MNXM10780 - - sbo: SBO:0000247 + - bigg.metabolite: "docoscoa" + - chebi: "CHEBI:65088" + - kegg.compound: "C16528" + - metanetx.chemical: "MNXM10780" + - sbo: "SBO:0000247" - !!omap - - id: s_2882 - - name: butyrate - - compartment: p - - formula: C4H7O2 + - id: "s_2882" + - name: "butyrate" + - compartment: "p" + - formula: "C4H7O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: but - - chebi: CHEBI:17968 - - kegg.compound: C00246 - - metanetx.chemical: MNXM458 - - sbo: SBO:0000247 + - bigg.metabolite: "but" + - chebi: "CHEBI:17968" + - kegg.compound: "C00246" + - metanetx.chemical: "MNXM458" + - sbo: "SBO:0000247" - !!omap - - id: s_2883 - - name: hexanoate - - compartment: p - - formula: C6H11O2 + - id: "s_2883" + - name: "hexanoate" + - compartment: "p" + - formula: "C6H11O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hxa - - chebi: CHEBI:17120 - - kegg.compound: C01585 - - metanetx.chemical: MNXM1653 - - sbo: SBO:0000247 + - bigg.metabolite: "hxa" + - chebi: "CHEBI:17120" + - kegg.compound: "C01585" + - metanetx.chemical: "MNXM1653" + - sbo: "SBO:0000247" - !!omap - - id: s_2884 - - name: butanoyl-CoA - - compartment: p - - formula: C25H38N7O17P3S + - id: "s_2884" + - name: "butanoyl-CoA" + - compartment: "p" + - formula: "C25H38N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: btcoa - - chebi: CHEBI:57371 - - kegg.compound: C00136 - - metanetx.chemical: MNXM233 - - sbo: SBO:0000247 + - bigg.metabolite: "btcoa" + - chebi: "CHEBI:57371" + - kegg.compound: "C00136" + - metanetx.chemical: "MNXM233" + - sbo: "SBO:0000247" - !!omap - - id: s_2885 - - name: hexanoyl-CoA - - compartment: p - - formula: C27H46N7O17P3S + - id: "s_2885" + - name: "hexanoyl-CoA" + - compartment: "p" + - formula: "C27H46N7O17P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: hxcoa - - chebi: CHEBI:27540 - - kegg.compound: C05270 - - metanetx.chemical: MNXM553 - - sbo: SBO:0000247 + - bigg.metabolite: "hxcoa" + - chebi: "CHEBI:27540" + - kegg.compound: "C05270" + - metanetx.chemical: "MNXM553" + - sbo: "SBO:0000247" - !!omap - - id: s_2886 - - name: but-2-enoyl-CoA - - compartment: p - - formula: C25H40N7O17P3S + - id: "s_2886" + - name: "but-2-enoyl-CoA" + - compartment: "p" + - formula: "C25H40N7O17P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: b2coa - - chebi: CHEBI:36926 - - kegg.compound: C00877 - - metanetx.chemical: MNXM214 - - sbo: SBO:0000247 + - bigg.metabolite: "b2coa" + - chebi: "CHEBI:36926" + - kegg.compound: "C00877" + - metanetx.chemical: "MNXM214" + - sbo: "SBO:0000247" - !!omap - - id: s_2887 - - name: trans-hex-2-enoyl-CoA - - compartment: p - - formula: C27H44N7O17P3S + - id: "s_2887" + - name: "trans-hex-2-enoyl-CoA" + - compartment: "p" + - formula: "C27H44N7O17P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: hx2coa - - chebi: CHEBI:28706 - - kegg.compound: C05271 - - metanetx.chemical: MNXM753 - - sbo: SBO:0000247 + - bigg.metabolite: "hx2coa" + - chebi: "CHEBI:28706" + - kegg.compound: "C05271" + - metanetx.chemical: "MNXM753" + - sbo: "SBO:0000247" - !!omap - - id: s_2888 - - name: trans-oct-2-enoyl-CoA - - compartment: p - - formula: C29H44N7O17P3S + - id: "s_2888" + - name: "trans-oct-2-enoyl-CoA" + - compartment: "p" + - formula: "C29H44N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: oc2coa - - chebi: CHEBI:27537 - - kegg.compound: C05276 - - metanetx.chemical: MNXM784 - - sbo: SBO:0000247 + - bigg.metabolite: "oc2coa" + - chebi: "CHEBI:27537" + - kegg.compound: "C05276" + - metanetx.chemical: "MNXM784" + - sbo: "SBO:0000247" - !!omap - - id: s_2889 - - name: trans-icos-2-enoyl-CoA - - compartment: p - - formula: C41H68N7O17P3S + - id: "s_2889" + - name: "trans-icos-2-enoyl-CoA" + - compartment: "p" + - formula: "C41H68N7O17P3S" - charge: -4 - annotation: !!omap - - metanetx.chemical: MNXM22115 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM22115" + - sbo: "SBO:0000247" - !!omap - - id: s_2890 - - name: trans-docos-2-enoyl-CoA - - compartment: p - - formula: C43H72N7O17P3S + - id: "s_2890" + - name: "trans-docos-2-enoyl-CoA" + - compartment: "p" + - formula: "C43H72N7O17P3S" - charge: -4 - annotation: !!omap - - metanetx.chemical: MNXM97615 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM97615" + - sbo: "SBO:0000247" - !!omap - - id: s_2891 - - name: trans-tetracos-2-enoyl-CoA - - compartment: p - - formula: C45H76N7O17P3S + - id: "s_2891" + - name: "trans-tetracos-2-enoyl-CoA" + - compartment: "p" + - formula: "C45H76N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2245 - - chebi: CHEBI:75068 - - metanetx.chemical: MNXM97616 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2245" + - chebi: "CHEBI:75068" + - metanetx.chemical: "MNXM97616" + - sbo: "SBO:0000247" - !!omap - - id: s_2892 - - name: trans-2,cis-9-hexadecadienoyl-CoA - - compartment: p - - formula: C37H62N7O17P3S + - id: "s_2892" + - name: "trans-2,cis-9-hexadecadienoyl-CoA" + - compartment: "p" + - formula: "C37H62N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:78178 - - metanetx.chemical: MNXM146680 - - sbo: SBO:0000247 + - chebi: "CHEBI:78178" + - metanetx.chemical: "MNXM146680" + - sbo: "SBO:0000247" - !!omap - - id: s_2893 - - name: cis-tetradec-7-enoyl-CoA - - compartment: p - - formula: C35H60N7O17P3S + - id: "s_2893" + - name: "cis-tetradec-7-enoyl-CoA" + - compartment: "p" + - formula: "C35H60N7O17P3S" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_2894 - - name: trans-2,cis-7-tetradecadienoyl-CoA - - compartment: p - - formula: C35H58N7O17P3S + - id: "s_2894" + - name: "trans-2,cis-7-tetradecadienoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88067 - - sbo: SBO:0000247 + - chebi: "CHEBI:88067" + - sbo: "SBO:0000247" - !!omap - - id: s_2895 - - name: cis-dodec-5-enoyl-CoA - - compartment: p - - formula: C33H56N7O17P3S + - id: "s_2895" + - name: "cis-dodec-5-enoyl-CoA" + - compartment: "p" + - formula: "C33H56N7O17P3S" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_2896 - - name: trans-2,cis-5-dodecadienoyl-CoA - - compartment: p - - formula: C33H54N7O17P3S + - id: "s_2896" + - name: "trans-2,cis-5-dodecadienoyl-CoA" + - compartment: "p" + - formula: "C33H54N7O17P3S" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_2897 - - name: trans-2,cis-9-octadecadienoyl-CoA - - compartment: p - - formula: C39H62N7O17P3S + - id: "s_2897" + - name: "trans-2,cis-9-octadecadienoyl-CoA" + - compartment: "p" + - formula: "C39H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: lnlccoa - - chebi: CHEBI:15530 - - kegg.compound: C02050 - - metanetx.chemical: MNXM638 - - sbo: SBO:0000247 + - bigg.metabolite: "lnlccoa" + - chebi: "CHEBI:15530" + - kegg.compound: "C02050" + - metanetx.chemical: "MNXM638" + - sbo: "SBO:0000247" - !!omap - - id: s_2898 - - name: cis-hexadec-7-enoyl-CoA - - compartment: p - - formula: C37H64N7O17P3S + - id: "s_2898" + - name: "cis-hexadec-7-enoyl-CoA" + - compartment: "p" + - formula: "C37H64N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88008 - - metanetx.chemical: MNXM149511 - - sbo: SBO:0000247 + - chebi: "CHEBI:88008" + - metanetx.chemical: "MNXM149511" + - sbo: "SBO:0000247" - !!omap - - id: s_2899 - - name: trans-2,cis-7-hexadecadienoyl-CoA - - compartment: p - - formula: C37H62N7O17P3S + - id: "s_2899" + - name: "trans-2,cis-7-hexadecadienoyl-CoA" + - compartment: "p" + - formula: "C37H62N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88086 - - sbo: SBO:0000247 + - chebi: "CHEBI:88086" + - sbo: "SBO:0000247" - !!omap - - id: s_2900 - - name: cis-tetradec-5-enoyl-CoA - - compartment: p - - formula: C35H60N7O17P3S + - id: "s_2900" + - name: "cis-tetradec-5-enoyl-CoA" + - compartment: "p" + - formula: "C35H60N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:70712 - - metanetx.chemical: MNXM103862 - - sbo: SBO:0000247 + - chebi: "CHEBI:70712" + - metanetx.chemical: "MNXM103862" + - sbo: "SBO:0000247" - !!omap - - id: s_2901 - - name: trans-2,cis-5-tetradecadienoyl-CoA - - compartment: p - - formula: C35H58N7O17P3S + - id: "s_2901" + - name: "trans-2,cis-5-tetradecadienoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O17P3S" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_2902 - - name: (R)-3-hydroxybutanoyl-CoA - - compartment: p - - formula: C25H38N7O18P3S + - id: "s_2902" + - name: "(R)-3-hydroxybutanoyl-CoA" + - compartment: "p" + - formula: "C25H38N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: CHEBI:15452 - - kegg.compound: C03561 - - metanetx.chemical: MNXM1058 - - sbo: SBO:0000247 + - chebi: "CHEBI:15452" + - kegg.compound: "C03561" + - metanetx.chemical: "MNXM1058" + - sbo: "SBO:0000247" - !!omap - - id: s_2903 - - name: (R)-3-hydroxyhexanoyl-CoA - - compartment: p - - formula: C27H46N7O18P3S + - id: "s_2903" + - name: "(R)-3-hydroxyhexanoyl-CoA" + - compartment: "p" + - formula: "C27H46N7O18P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: R_3hhcoa - - chebi: CHEBI:74474 - - sbo: SBO:0000247 + - bigg.metabolite: "R_3hhcoa" + - chebi: "CHEBI:74474" + - sbo: "SBO:0000247" - !!omap - - id: s_2904 - - name: (R)-3-hydroxyoctanoyl-CoA - - compartment: p - - formula: C29H50N7O18P3S + - id: "s_2904" + - name: "(R)-3-hydroxyoctanoyl-CoA" + - compartment: "p" + - formula: "C29H50N7O18P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: R_3hocoa - - chebi: CHEBI:28573 - - kegg.compound: C05278 - - metanetx.chemical: MNXM31570 - - sbo: SBO:0000247 + - bigg.metabolite: "R_3hocoa" + - chebi: "CHEBI:28573" + - kegg.compound: "C05278" + - metanetx.chemical: "MNXM31570" + - sbo: "SBO:0000247" - !!omap - - id: s_2905 - - name: (R)-3-hydroxyicosanoyl-CoA - - compartment: p - - formula: C41H70N7O18P3S + - id: "s_2905" + - name: "(R)-3-hydroxyicosanoyl-CoA" + - compartment: "p" + - formula: "C41H70N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: CHEBI:76453 - - metanetx.chemical: MNXM36530 - - sbo: SBO:0000247 + - chebi: "CHEBI:76453" + - metanetx.chemical: "MNXM36530" + - sbo: "SBO:0000247" - !!omap - - id: s_2906 - - name: (R)-3-hydroxydocosanoyl-CoA - - compartment: p - - formula: C43H74N7O18P3S + - id: "s_2906" + - name: "(R)-3-hydroxydocosanoyl-CoA" + - compartment: "p" + - formula: "C43H74N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: CHEBI:76375 - - metanetx.chemical: MNXM162568 - - sbo: SBO:0000247 + - chebi: "CHEBI:76375" + - metanetx.chemical: "MNXM162568" + - sbo: "SBO:0000247" - !!omap - - id: s_2907 - - name: (R)-3-hydroxytetracosanoyl-CoA - - compartment: p - - formula: C45H78N7O18P3S + - id: "s_2907" + - name: "(R)-3-hydroxytetracosanoyl-CoA" + - compartment: "p" + - formula: "C45H78N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: CHEBI:76463 - - metanetx.chemical: MNXM36558 - - sbo: SBO:0000247 + - chebi: "CHEBI:76463" + - metanetx.chemical: "MNXM36558" + - sbo: "SBO:0000247" - !!omap - - id: s_2908 - - name: (R)-3-hydroxy-cis-hexadec-9-enoyl-CoA - - compartment: p - - formula: C37H64N7O18P3S + - id: "s_2908" + - name: "(R)-3-hydroxy-cis-hexadec-9-enoyl-CoA" + - compartment: "p" + - formula: "C37H64N7O18P3S" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_2909 - - name: (R)-3-hydroxy-cis-tetradec-7-enoyl-CoA - - compartment: p - - formula: C35H60N7O18P3S + - id: "s_2909" + - name: "(R)-3-hydroxy-cis-tetradec-7-enoyl-CoA" + - compartment: "p" + - formula: "C35H60N7O18P3S" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_2910 - - name: (R)-3-hydroxy-cis-dodec-5-enoyl-CoA - - compartment: p - - formula: C33H56N7O18P3S + - id: "s_2910" + - name: "(R)-3-hydroxy-cis-dodec-5-enoyl-CoA" + - compartment: "p" + - formula: "C33H56N7O18P3S" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_2911 - - name: (R)-3-hydroxy-cis-octadec-9-enoyl-CoA - - compartment: p - - formula: C39H68N7O18P3S + - id: "s_2911" + - name: "(R)-3-hydroxy-cis-octadec-9-enoyl-CoA" + - compartment: "p" + - formula: "C39H68N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:87781 - - metanetx.chemical: MNXM149457 - - sbo: SBO:0000247 + - chebi: "CHEBI:87781" + - metanetx.chemical: "MNXM149457" + - sbo: "SBO:0000247" - !!omap - - id: s_2912 - - name: (R)-3-hydroxy-cis-hexadec-7-enoyl-CoA - - compartment: p - - formula: C37H64N7O18P3S + - id: "s_2912" + - name: "(R)-3-hydroxy-cis-hexadec-7-enoyl-CoA" + - compartment: "p" + - formula: "C37H64N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88087 - - sbo: SBO:0000247 + - chebi: "CHEBI:88087" + - sbo: "SBO:0000247" - !!omap - - id: s_2913 - - name: (R)-3-hydroxy-cis-tetradec-5-enoyl-CoA - - compartment: p - - formula: C35H60N7O18P3S + - id: "s_2913" + - name: "(R)-3-hydroxy-cis-tetradec-5-enoyl-CoA" + - compartment: "p" + - formula: "C35H60N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88072 - - sbo: SBO:0000247 + - chebi: "CHEBI:88072" + - sbo: "SBO:0000247" - !!omap - - id: s_2914 - - name: acetoacetyl-CoA - - compartment: p - - formula: C25H36N7O18P3S + - id: "s_2914" + - name: "acetoacetyl-CoA" + - compartment: "p" + - formula: "C25H36N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: aacoa - - chebi: CHEBI:57286 - - kegg.compound: C00332 - - metanetx.chemical: MNXM133 - - sbo: SBO:0000247 + - bigg.metabolite: "aacoa" + - chebi: "CHEBI:57286" + - kegg.compound: "C00332" + - metanetx.chemical: "MNXM133" + - sbo: "SBO:0000247" - !!omap - - id: s_2915 - - name: 3-oxohexanoyl-CoA - - compartment: p - - formula: C27H44N7O18P3S + - id: "s_2915" + - name: "3-oxohexanoyl-CoA" + - compartment: "p" + - formula: "C27H44N7O18P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: 3ohcoa - - chebi: CHEBI:27648 - - kegg.compound: C05269 - - metanetx.chemical: MNXM717 - - sbo: SBO:0000247 + - bigg.metabolite: "3ohcoa" + - chebi: "CHEBI:27648" + - kegg.compound: "C05269" + - metanetx.chemical: "MNXM717" + - sbo: "SBO:0000247" - !!omap - - id: s_2916 - - name: 3-oxooctanoyl-CoA - - compartment: p - - formula: C29H48N7O18P3S + - id: "s_2916" + - name: "3-oxooctanoyl-CoA" + - compartment: "p" + - formula: "C29H48N7O18P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: 3oocoa - - chebi: CHEBI:28264 - - kegg.compound: C05267 - - metanetx.chemical: MNXM706 - - sbo: SBO:0000247 + - bigg.metabolite: "3oocoa" + - chebi: "CHEBI:28264" + - kegg.compound: "C05267" + - metanetx.chemical: "MNXM706" + - sbo: "SBO:0000247" - !!omap - - id: s_2917 - - name: 3-oxoicosanoyl-CoA - - compartment: p - - formula: C41H68N7O18P3S + - id: "s_2917" + - name: "3-oxoicosanoyl-CoA" + - compartment: "p" + - formula: "C41H68N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2251 - - chebi: CHEBI:52327 - - metanetx.chemical: MNXM36762 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2251" + - chebi: "CHEBI:52327" + - metanetx.chemical: "MNXM36762" + - sbo: "SBO:0000247" - !!omap - - id: s_2918 - - name: 3-oxodocosanoyl-CoA - - compartment: p - - formula: C43H72N7O18P3S + - id: "s_2918" + - name: "3-oxodocosanoyl-CoA" + - compartment: "p" + - formula: "C43H72N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2250 - - chebi: CHEBI:52328 - - metanetx.chemical: MNXM36756 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2250" + - chebi: "CHEBI:52328" + - metanetx.chemical: "MNXM36756" + - sbo: "SBO:0000247" - !!omap - - id: s_2919 - - name: 3-oxotetracosanoyl-CoA - - compartment: p - - formula: C45H76N7O18P3S + - id: "s_2919" + - name: "3-oxotetracosanoyl-CoA" + - compartment: "p" + - formula: "C45H76N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: CE2253 - - chebi: CHEBI:52329 - - metanetx.chemical: MNXM36773 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2253" + - chebi: "CHEBI:52329" + - metanetx.chemical: "MNXM36773" + - sbo: "SBO:0000247" - !!omap - - id: s_2920 - - name: 3-oxo-cis-hexadec-9-enoyl-CoA - - compartment: p - - formula: C37H62N7O18P3S + - id: "s_2920" + - name: "3-oxo-cis-hexadec-9-enoyl-CoA" + - compartment: "p" + - formula: "C37H62N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:53152 - - sbo: SBO:0000247 + - chebi: "CHEBI:53152" + - sbo: "SBO:0000247" - !!omap - - id: s_2921 - - name: 3-oxo-cis-tetradec-7-enoyl-CoA - - compartment: p - - formula: C35H58N7O18P3S + - id: "s_2921" + - name: "3-oxo-cis-tetradec-7-enoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O18P3S" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_2922 - - name: 3-oxo-cis-dodec-5-enoyl-CoA - - compartment: p - - formula: C33H54N7O18P3S + - id: "s_2922" + - name: "3-oxo-cis-dodec-5-enoyl-CoA" + - compartment: "p" + - formula: "C33H54N7O18P3S" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_2923 - - name: 3-oxo-cis-octadec-9-enoyl-CoA - - compartment: p - - formula: C39H66N7O18P3S + - id: "s_2923" + - name: "3-oxo-cis-octadec-9-enoyl-CoA" + - compartment: "p" + - formula: "C39H66N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:78146 - - sbo: SBO:0000247 + - chebi: "CHEBI:78146" + - sbo: "SBO:0000247" - !!omap - - id: s_2924 - - name: 3-oxo-cis-hexadec-7-enoyl-CoA - - compartment: p - - formula: C37H62N7O18P3S + - id: "s_2924" + - name: "3-oxo-cis-hexadec-7-enoyl-CoA" + - compartment: "p" + - formula: "C37H62N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88090 - - metanetx.chemical: MNXM150996 - - sbo: SBO:0000247 + - chebi: "CHEBI:88090" + - metanetx.chemical: "MNXM150996" + - sbo: "SBO:0000247" - !!omap - - id: s_2925 - - name: 3-oxo-cis-tetradec-5-enoyl-CoA - - compartment: p - - formula: C35H58N7O18P3S + - id: "s_2925" + - name: "3-oxo-cis-tetradec-5-enoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88080 - - metanetx.chemical: MNXM147795 - - sbo: SBO:0000247 + - chebi: "CHEBI:88080" + - metanetx.chemical: "MNXM147795" + - sbo: "SBO:0000247" - !!omap - - id: s_2926 - - name: cis-dec-3-enoyl-CoA - - compartment: p - - formula: C31H52N7O17P3S + - id: "s_2926" + - name: "cis-dec-3-enoyl-CoA" + - compartment: "p" + - formula: "C31H52N7O17P3S" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM164218 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM164218" + - sbo: "SBO:0000247" - !!omap - - id: s_2927 - - name: cis-dodec-3-enoyl-CoA - - compartment: p - - formula: C33H56N7O17P3S + - id: "s_2927" + - name: "cis-dodec-3-enoyl-CoA" + - compartment: "p" + - formula: "C33H56N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:27989 - - kegg.compound: C02944 - - metanetx.chemical: MNXM3949 - - sbo: SBO:0000247 + - chebi: "CHEBI:27989" + - kegg.compound: "C02944" + - metanetx.chemical: "MNXM3949" + - sbo: "SBO:0000247" - !!omap - - id: s_2928 - - name: trans-3,cis-5-dodecadienoyl-CoA - - compartment: p - - formula: C33H54N7O17P3S + - id: "s_2928" + - name: "trans-3,cis-5-dodecadienoyl-CoA" + - compartment: "p" + - formula: "C33H54N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:139121 - - sbo: SBO:0000247 + - chebi: "CHEBI:139121" + - sbo: "SBO:0000247" - !!omap - - id: s_2929 - - name: trans-dodec-3-enoyl-CoA - - compartment: p - - formula: C33H56N7O17P3S + - id: "s_2929" + - name: "trans-dodec-3-enoyl-CoA" + - compartment: "p" + - formula: "C33H56N7O17P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: dd3coa - - sbo: SBO:0000247 + - bigg.metabolite: "dd3coa" + - sbo: "SBO:0000247" - !!omap - - id: s_2930 - - name: trans-3,cis-5-tetradecadienoyl-CoA - - compartment: p - - formula: C35H58N7O17P3S + - id: "s_2930" + - name: "trans-3,cis-5-tetradecadienoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:72001 - - metanetx.chemical: MNXM9966 - - sbo: SBO:0000247 + - chebi: "CHEBI:72001" + - metanetx.chemical: "MNXM9966" + - sbo: "SBO:0000247" - !!omap - - id: s_2931 - - name: trans-tetradec-3-enoyl-CoA - - compartment: p - - formula: C35H60N7O17P3S + - id: "s_2931" + - name: "trans-tetradec-3-enoyl-CoA" + - compartment: "p" + - formula: "C35H60N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88083 - - metanetx.chemical: MNXM7189 - - sbo: SBO:0000247 + - chebi: "CHEBI:88083" + - metanetx.chemical: "MNXM7189" + - sbo: "SBO:0000247" - !!omap - - id: s_2932 - - name: trans-2,trans-4-dodecadienoyl-CoA - - compartment: p - - formula: C33H54N7O17P3S + - id: "s_2932" + - name: "trans-2,trans-4-dodecadienoyl-CoA" + - compartment: "p" + - formula: "C33H54N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:28002 - - kegg.compound: C05280 - - metanetx.chemical: MNXM2008 - - sbo: SBO:0000247 + - chebi: "CHEBI:28002" + - kegg.compound: "C05280" + - metanetx.chemical: "MNXM2008" + - sbo: "SBO:0000247" - !!omap - - id: s_2933 - - name: trans-2,trans-4-tetradecadienoyl-CoA - - compartment: p - - formula: C35H58N7O17P3S + - id: "s_2933" + - name: "trans-2,trans-4-tetradecadienoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88084 - - metanetx.chemical: MNXM147629 - - sbo: SBO:0000247 + - chebi: "CHEBI:88084" + - metanetx.chemical: "MNXM147629" + - sbo: "SBO:0000247" - !!omap - - id: s_2934 - - name: glycerol 3-phosphate - - compartment: erm - - formula: C3H7O6P + - id: "s_2934" + - name: "glycerol 3-phosphate" + - compartment: "erm" + - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: glyc3p - - chebi: CHEBI:57597 - - kegg.compound: C00093 - - metanetx.chemical: MNXM66 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc3p" + - chebi: "CHEBI:57597" + - kegg.compound: "C00093" + - metanetx.chemical: "MNXM66" + - sbo: "SBO:0000247" - !!omap - - id: s_2935 - - name: 1-acyl-sn-glycerol 3-phosphate (16:0) - - compartment: erm - - formula: C19H39O7P + - id: "s_2935" + - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" + - compartment: "erm" + - formula: "C19H39O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1hdecg3p - - chebi: CHEBI:15799 - - kegg.compound: C04036 - - metanetx.chemical: MNXM2455 - - sbo: SBO:0000247 + - bigg.metabolite: "1hdecg3p" + - chebi: "CHEBI:15799" + - kegg.compound: "C04036" + - metanetx.chemical: "MNXM2455" + - sbo: "SBO:0000247" - !!omap - - id: s_2936 - - name: 1-acyl-sn-glycerol 3-phosphate (16:1) - - compartment: erm - - formula: C19H37O7P + - id: "s_2936" + - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" + - compartment: "erm" + - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75070 - - metanetx.chemical: MNXM66496 - - sbo: SBO:0000247 + - chebi: "CHEBI:75070" + - metanetx.chemical: "MNXM66496" + - sbo: "SBO:0000247" - !!omap - - id: s_2937 - - name: 1-acyl-sn-glycerol 3-phosphate (18:0) - - compartment: erm - - formula: C21H43O7P + - id: "s_2937" + - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" + - compartment: "erm" + - formula: "C21H43O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1odecg3p - - chebi: CHEBI:74850 - - metanetx.chemical: MNXM32950 - - sbo: SBO:0000247 + - bigg.metabolite: "1odecg3p" + - chebi: "CHEBI:74850" + - metanetx.chemical: "MNXM32950" + - sbo: "SBO:0000247" - !!omap - - id: s_2938 - - name: 1-acyl-sn-glycerol 3-phosphate (18:1) - - compartment: erm - - formula: C21H41O7P + - id: "s_2938" + - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" + - compartment: "erm" + - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62837 - - metanetx.chemical: MNXM32960 - - sbo: SBO:0000247 + - chebi: "CHEBI:62837" + - metanetx.chemical: "MNXM32960" + - sbo: "SBO:0000247" - !!omap - - id: s_2939 - - name: dihydroxyacetone phosphate - - compartment: erm - - formula: C3H5O6P + - id: "s_2939" + - name: "dihydroxyacetone phosphate" + - compartment: "erm" + - formula: "C3H5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: dhap - - chebi: CHEBI:57642 - - kegg.compound: C00111 - - metanetx.chemical: MNXM77 - - sbo: SBO:0000247 + - bigg.metabolite: "dhap" + - chebi: "CHEBI:57642" + - kegg.compound: "C00111" + - metanetx.chemical: "MNXM77" + - sbo: "SBO:0000247" - !!omap - - id: s_2940 - - name: acylglycerone phosphate (16:0) - - compartment: erm - - formula: C19H37O7P + - id: "s_2940" + - name: "acylglycerone phosphate (16:0)" + - compartment: "erm" + - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17868 - - kegg.compound: C01192 - - metanetx.chemical: MNXM1061 - - sbo: SBO:0000247 + - chebi: "CHEBI:17868" + - kegg.compound: "C01192" + - metanetx.chemical: "MNXM1061" + - sbo: "SBO:0000247" - !!omap - - id: s_2941 - - name: acylglycerone phosphate (16:1) - - compartment: erm - - formula: C19H35O7P + - id: "s_2941" + - name: "acylglycerone phosphate (16:1)" + - compartment: "erm" + - formula: "C19H35O7P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_2942 - - name: acylglycerone phosphate (18:0) - - compartment: erm - - formula: C21H41O7P + - id: "s_2942" + - name: "acylglycerone phosphate (18:0)" + - compartment: "erm" + - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:36476 - - kegg.compound: C03805 - - metanetx.chemical: MNXM33006 - - sbo: SBO:0000247 + - chebi: "CHEBI:36476" + - kegg.compound: "C03805" + - metanetx.chemical: "MNXM33006" + - sbo: "SBO:0000247" - !!omap - - id: s_2943 - - name: acylglycerone phosphate (18:1) - - compartment: erm - - formula: C21H39O7P + - id: "s_2943" + - name: "acylglycerone phosphate (18:1)" + - compartment: "erm" + - formula: "C21H39O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:36475 - - kegg.compound: C03630 - - metanetx.chemical: MNXM32961 - - sbo: SBO:0000247 + - chebi: "CHEBI:36475" + - kegg.compound: "C03630" + - metanetx.chemical: "MNXM32961" + - sbo: "SBO:0000247" - !!omap - - id: s_2944 - - name: 1-acyl-sn-glycerol 3-phosphate (16:0) - - compartment: lp - - formula: C19H39O7P + - id: "s_2944" + - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" + - compartment: "lp" + - formula: "C19H39O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1hdecg3p - - chebi: CHEBI:15799 - - kegg.compound: C04036 - - metanetx.chemical: MNXM2455 - - sbo: SBO:0000247 + - bigg.metabolite: "1hdecg3p" + - chebi: "CHEBI:15799" + - kegg.compound: "C04036" + - metanetx.chemical: "MNXM2455" + - sbo: "SBO:0000247" - !!omap - - id: s_2945 - - name: 1-acyl-sn-glycerol 3-phosphate (16:1) - - compartment: lp - - formula: C19H37O7P + - id: "s_2945" + - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" + - compartment: "lp" + - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75070 - - metanetx.chemical: MNXM66496 - - sbo: SBO:0000247 + - chebi: "CHEBI:75070" + - metanetx.chemical: "MNXM66496" + - sbo: "SBO:0000247" - !!omap - - id: s_2946 - - name: 1-acyl-sn-glycerol 3-phosphate (18:0) - - compartment: lp - - formula: C21H43O7P + - id: "s_2946" + - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" + - compartment: "lp" + - formula: "C21H43O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1odecg3p - - chebi: CHEBI:74850 - - metanetx.chemical: MNXM32950 - - sbo: SBO:0000247 + - bigg.metabolite: "1odecg3p" + - chebi: "CHEBI:74850" + - metanetx.chemical: "MNXM32950" + - sbo: "SBO:0000247" - !!omap - - id: s_2947 - - name: 1-acyl-sn-glycerol 3-phosphate (18:1) - - compartment: lp - - formula: C21H41O7P + - id: "s_2947" + - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" + - compartment: "lp" + - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62837 - - metanetx.chemical: MNXM32960 - - sbo: SBO:0000247 + - chebi: "CHEBI:62837" + - metanetx.chemical: "MNXM32960" + - sbo: "SBO:0000247" - !!omap - - id: s_2948 - - name: acylglycerone phosphate (16:0) - - compartment: lp - - formula: C19H37O7P + - id: "s_2948" + - name: "acylglycerone phosphate (16:0)" + - compartment: "lp" + - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17868 - - kegg.compound: C01192 - - metanetx.chemical: MNXM1061 - - sbo: SBO:0000247 + - chebi: "CHEBI:17868" + - kegg.compound: "C01192" + - metanetx.chemical: "MNXM1061" + - sbo: "SBO:0000247" - !!omap - - id: s_2949 - - name: acylglycerone phosphate (16:1) - - compartment: lp - - formula: C19H35O7P + - id: "s_2949" + - name: "acylglycerone phosphate (16:1)" + - compartment: "lp" + - formula: "C19H35O7P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_2950 - - name: acylglycerone phosphate (18:0) - - compartment: lp - - formula: C21H41O7P + - id: "s_2950" + - name: "acylglycerone phosphate (18:0)" + - compartment: "lp" + - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:36476 - - kegg.compound: C03805 - - metanetx.chemical: MNXM33006 - - sbo: SBO:0000247 + - chebi: "CHEBI:36476" + - kegg.compound: "C03805" + - metanetx.chemical: "MNXM33006" + - sbo: "SBO:0000247" - !!omap - - id: s_2951 - - name: acylglycerone phosphate (18:1) - - compartment: lp - - formula: C21H39O7P + - id: "s_2951" + - name: "acylglycerone phosphate (18:1)" + - compartment: "lp" + - formula: "C21H39O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:36475 - - kegg.compound: C03630 - - metanetx.chemical: MNXM32961 - - sbo: SBO:0000247 + - chebi: "CHEBI:36475" + - kegg.compound: "C03630" + - metanetx.chemical: "MNXM32961" + - sbo: "SBO:0000247" - !!omap - - id: s_2952 - - name: NADPH - - compartment: lp - - formula: C21H26N7O17P3 + - id: "s_2952" + - name: "NADPH" + - compartment: "lp" + - formula: "C21H26N7O17P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: nadph - - chebi: CHEBI:57783 - - kegg.compound: C00005 - - metanetx.chemical: MNXM6 - - sbo: SBO:0000247 + - bigg.metabolite: "nadph" + - chebi: "CHEBI:57783" + - kegg.compound: "C00005" + - metanetx.chemical: "MNXM6" + - sbo: "SBO:0000247" - !!omap - - id: s_2953 - - name: NADP(+) - - compartment: lp - - formula: C21H25N7O17P3 + - id: "s_2953" + - name: "NADP(+)" + - compartment: "lp" + - formula: "C21H25N7O17P3" - charge: -3 - annotation: !!omap - - bigg.metabolite: nadp - - chebi: CHEBI:58349 - - kegg.compound: C00006 - - metanetx.chemical: MNXM5 - - sbo: SBO:0000247 + - bigg.metabolite: "nadp" + - chebi: "CHEBI:58349" + - kegg.compound: "C00006" + - metanetx.chemical: "MNXM5" + - sbo: "SBO:0000247" - !!omap - - id: s_2954 - - name: phosphatidate (1-16:0, 2-16:1) - - compartment: erm - - formula: C35H67O8P + - id: "s_2954" + - name: "phosphatidate (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C35H67O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:73998 - - metanetx.chemical: MNXM66470 - - sbo: SBO:0000247 + - chebi: "CHEBI:73998" + - metanetx.chemical: "MNXM66470" + - sbo: "SBO:0000247" - !!omap - - id: s_2955 - - name: phosphatidate (1-16:0, 2-18:1) - - compartment: erm - - formula: C37H71O8P + - id: "s_2955" + - name: "phosphatidate (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:64844 - - kegg.compound: C13889 - - metanetx.chemical: MNXM66476 - - sbo: SBO:0000247 + - chebi: "CHEBI:64844" + - kegg.compound: "C13889" + - metanetx.chemical: "MNXM66476" + - sbo: "SBO:0000247" - !!omap - - id: s_2956 - - name: phosphatidate (1-16:1, 2-16:1) - - compartment: erm - - formula: C35H65O8P + - id: "s_2956" + - name: "phosphatidate (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C35H65O8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pa161 - - chebi: CHEBI:75071 - - metanetx.chemical: MNXM66504 - - sbo: SBO:0000247 + - bigg.metabolite: "pa161" + - chebi: "CHEBI:75071" + - metanetx.chemical: "MNXM66504" + - sbo: "SBO:0000247" - !!omap - - id: s_2957 - - name: phosphatidate (1-16:1, 2-18:1) - - compartment: erm - - formula: C37H69O8P + - id: "s_2957" + - name: "phosphatidate (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM66509 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM66509" + - sbo: "SBO:0000247" - !!omap - - id: s_2958 - - name: phosphatidate (1-18:0, 2-16:1) - - compartment: erm - - formula: C37H71O8P + - id: "s_2958" + - name: "phosphatidate (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75073 - - metanetx.chemical: MNXM66631 - - sbo: SBO:0000247 + - chebi: "CHEBI:75073" + - metanetx.chemical: "MNXM66631" + - sbo: "SBO:0000247" - !!omap - - id: s_2959 - - name: phosphatidate (1-18:0, 2-18:1) - - compartment: erm - - formula: C39H75O8P + - id: "s_2959" + - name: "phosphatidate (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C39H75O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:74847 - - metanetx.chemical: MNXM66635 - - sbo: SBO:0000247 + - chebi: "CHEBI:74847" + - metanetx.chemical: "MNXM66635" + - sbo: "SBO:0000247" - !!omap - - id: s_2960 - - name: phosphatidate (1-18:1, 2-16:1) - - compartment: erm - - formula: C37H69O8P + - id: "s_2960" + - name: "phosphatidate (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75074 - - metanetx.chemical: MNXM66663 - - sbo: SBO:0000247 + - chebi: "CHEBI:75074" + - metanetx.chemical: "MNXM66663" + - sbo: "SBO:0000247" - !!omap - - id: s_2961 - - name: phosphatidate (1-18:1, 2-18:1) - - compartment: erm - - formula: C39H73O8P + - id: "s_2961" + - name: "phosphatidate (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C39H73O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:83775 - - metanetx.chemical: MNXM51075 - - sbo: SBO:0000247 + - chebi: "CHEBI:83775" + - metanetx.chemical: "MNXM51075" + - sbo: "SBO:0000247" - !!omap - - id: s_2962 - - name: phosphatidate (1-16:0, 2-18:1) - - compartment: lp - - formula: C37H71O8P + - id: "s_2962" + - name: "phosphatidate (1-16:0, 2-18:1)" + - compartment: "lp" + - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:64844 - - kegg.compound: C13889 - - metanetx.chemical: MNXM66476 - - sbo: SBO:0000247 + - chebi: "CHEBI:64844" + - kegg.compound: "C13889" + - metanetx.chemical: "MNXM66476" + - sbo: "SBO:0000247" - !!omap - - id: s_2963 - - name: phosphatidate (1-16:1, 2-18:1) - - compartment: lp - - formula: C37H69O8P + - id: "s_2963" + - name: "phosphatidate (1-16:1, 2-18:1)" + - compartment: "lp" + - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM66509 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM66509" + - sbo: "SBO:0000247" - !!omap - - id: s_2964 - - name: phosphatidate (1-18:0, 2-18:1) - - compartment: lp - - formula: C39H75O8P + - id: "s_2964" + - name: "phosphatidate (1-18:0, 2-18:1)" + - compartment: "lp" + - formula: "C39H75O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:74847 - - metanetx.chemical: MNXM66635 - - sbo: SBO:0000247 + - chebi: "CHEBI:74847" + - metanetx.chemical: "MNXM66635" + - sbo: "SBO:0000247" - !!omap - - id: s_2965 - - name: phosphatidate (1-18:1, 2-18:1) - - compartment: lp - - formula: C39H73O8P + - id: "s_2965" + - name: "phosphatidate (1-18:1, 2-18:1)" + - compartment: "lp" + - formula: "C39H73O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:83775 - - metanetx.chemical: MNXM51075 - - sbo: SBO:0000247 + - chebi: "CHEBI:83775" + - metanetx.chemical: "MNXM51075" + - sbo: "SBO:0000247" - !!omap - - id: s_2966 - - name: phosphate - - compartment: erm - - formula: HO4P + - id: "s_2966" + - name: "phosphate" + - compartment: "erm" + - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pi - - chebi: CHEBI:43474 - - kegg.compound: C00009 - - metanetx.chemical: MNXM9 - - sbo: SBO:0000247 + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - - id: s_2967 - - name: diglyceride (1-16:0, 2-16:1) - - compartment: erm - - formula: C35H66O5 + - id: "s_2967" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:84394 - - metanetx.chemical: MNXM49375 - - sbo: SBO:0000247 + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - - id: s_2968 - - name: diglyceride (1-16:0, 2-18:1) - - compartment: erm - - formula: C37H70O5 + - id: "s_2968" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88454 - - metanetx.chemical: MNXM49380 - - sbo: SBO:0000247 + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - - id: s_2969 - - name: diglyceride (1-16:1, 2-16:1) - - compartment: erm - - formula: C35H64O5 + - id: "s_2969" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr161 - - chebi: CHEBI:84417 - - metanetx.chemical: MNXM176611 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - - id: s_2970 - - name: diglyceride (1-16:1, 2-18:1) - - compartment: erm - - formula: C37H68O5 + - id: "s_2970" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88500 - - metanetx.chemical: MNXM49417 - - sbo: SBO:0000247 + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - - id: s_2971 - - name: diglyceride (1-18:0, 2-16:1) - - compartment: erm - - formula: C37H70O5 + - id: "s_2971" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88527 - - metanetx.chemical: MNXM49511 - - sbo: SBO:0000247 + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - - id: s_2972 - - name: diglyceride (1-18:0, 2-18:1) - - compartment: erm - - formula: C39H74O5 + - id: "s_2972" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75468 - - metanetx.chemical: MNXM49514 - - sbo: SBO:0000247 + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - - id: s_2973 - - name: diglyceride (1-18:1, 2-16:1) - - compartment: erm - - formula: C37H68O5 + - id: "s_2973" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89229 - - metanetx.chemical: MNXM49575 - - sbo: SBO:0000247 + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - - id: s_2974 - - name: diglyceride (1-18:1, 2-18:1) - - compartment: erm - - formula: C39H72O5 + - id: "s_2974" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr181 - - chebi: CHEBI:52333 - - metanetx.chemical: MNXM9533 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - - id: s_2975 - - name: phosphatidate (1-16:0, 2-16:1) - - compartment: vm - - formula: C35H67O8P + - id: "s_2975" + - name: "phosphatidate (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C35H67O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:73998 - - metanetx.chemical: MNXM66470 - - sbo: SBO:0000247 + - chebi: "CHEBI:73998" + - metanetx.chemical: "MNXM66470" + - sbo: "SBO:0000247" - !!omap - - id: s_2976 - - name: H2O - - compartment: vm - - formula: H2O + - id: "s_2976" + - name: "H2O" + - compartment: "vm" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_2977 - - name: phosphate - - compartment: vm - - formula: HO4P + - id: "s_2977" + - name: "phosphate" + - compartment: "vm" + - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pi - - chebi: CHEBI:43474 - - kegg.compound: C00009 - - metanetx.chemical: MNXM9 - - sbo: SBO:0000247 + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - - id: s_2978 - - name: diglyceride (1-16:0, 2-16:1) - - compartment: vm - - formula: C35H66O5 + - id: "s_2978" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:84394 - - metanetx.chemical: MNXM49375 - - sbo: SBO:0000247 + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - - id: s_2979 - - name: phosphatidate (1-16:0, 2-18:1) - - compartment: vm - - formula: C37H71O8P + - id: "s_2979" + - name: "phosphatidate (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:64844 - - kegg.compound: C13889 - - metanetx.chemical: MNXM66476 - - sbo: SBO:0000247 + - chebi: "CHEBI:64844" + - kegg.compound: "C13889" + - metanetx.chemical: "MNXM66476" + - sbo: "SBO:0000247" - !!omap - - id: s_2980 - - name: diglyceride (1-16:0, 2-18:1) - - compartment: vm - - formula: C37H70O5 + - id: "s_2980" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88454 - - metanetx.chemical: MNXM49380 - - sbo: SBO:0000247 + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - - id: s_2981 - - name: phosphatidate (1-16:1, 2-16:1) - - compartment: vm - - formula: C35H65O8P + - id: "s_2981" + - name: "phosphatidate (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C35H65O8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pa161 - - chebi: CHEBI:75071 - - metanetx.chemical: MNXM66504 - - sbo: SBO:0000247 + - bigg.metabolite: "pa161" + - chebi: "CHEBI:75071" + - metanetx.chemical: "MNXM66504" + - sbo: "SBO:0000247" - !!omap - - id: s_2982 - - name: diglyceride (1-16:1, 2-16:1) - - compartment: vm - - formula: C35H64O5 + - id: "s_2982" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr161 - - chebi: CHEBI:84417 - - metanetx.chemical: MNXM176611 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - - id: s_2983 - - name: phosphatidate (1-16:1, 2-18:1) - - compartment: vm - - formula: C37H69O8P + - id: "s_2983" + - name: "phosphatidate (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM66509 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM66509" + - sbo: "SBO:0000247" - !!omap - - id: s_2984 - - name: diglyceride (1-16:1, 2-18:1) - - compartment: vm - - formula: C37H68O5 + - id: "s_2984" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88500 - - metanetx.chemical: MNXM49417 - - sbo: SBO:0000247 + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - - id: s_2985 - - name: phosphatidate (1-18:0, 2-16:1) - - compartment: vm - - formula: C37H71O8P + - id: "s_2985" + - name: "phosphatidate (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75073 - - metanetx.chemical: MNXM66631 - - sbo: SBO:0000247 + - chebi: "CHEBI:75073" + - metanetx.chemical: "MNXM66631" + - sbo: "SBO:0000247" - !!omap - - id: s_2986 - - name: diglyceride (1-18:0, 2-16:1) - - compartment: vm - - formula: C37H70O5 + - id: "s_2986" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88527 - - metanetx.chemical: MNXM49511 - - sbo: SBO:0000247 + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - - id: s_2987 - - name: phosphatidate (1-18:0, 2-18:1) - - compartment: vm - - formula: C39H75O8P + - id: "s_2987" + - name: "phosphatidate (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C39H75O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:74847 - - metanetx.chemical: MNXM66635 - - sbo: SBO:0000247 + - chebi: "CHEBI:74847" + - metanetx.chemical: "MNXM66635" + - sbo: "SBO:0000247" - !!omap - - id: s_2988 - - name: diglyceride (1-18:0, 2-18:1) - - compartment: vm - - formula: C39H74O5 + - id: "s_2988" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75468 - - metanetx.chemical: MNXM49514 - - sbo: SBO:0000247 + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - - id: s_2989 - - name: phosphatidate (1-18:1, 2-16:1) - - compartment: vm - - formula: C37H69O8P + - id: "s_2989" + - name: "phosphatidate (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75074 - - metanetx.chemical: MNXM66663 - - sbo: SBO:0000247 + - chebi: "CHEBI:75074" + - metanetx.chemical: "MNXM66663" + - sbo: "SBO:0000247" - !!omap - - id: s_2990 - - name: diglyceride (1-18:1, 2-16:1) - - compartment: vm - - formula: C37H68O5 + - id: "s_2990" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89229 - - metanetx.chemical: MNXM49575 - - sbo: SBO:0000247 + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - - id: s_2991 - - name: phosphatidate (1-18:1, 2-18:1) - - compartment: vm - - formula: C39H73O8P + - id: "s_2991" + - name: "phosphatidate (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C39H73O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:83775 - - metanetx.chemical: MNXM51075 - - sbo: SBO:0000247 + - chebi: "CHEBI:83775" + - metanetx.chemical: "MNXM51075" + - sbo: "SBO:0000247" - !!omap - - id: s_2992 - - name: diglyceride (1-18:1, 2-18:1) - - compartment: vm - - formula: C39H72O5 + - id: "s_2992" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr181 - - chebi: CHEBI:52333 - - metanetx.chemical: MNXM9533 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - - id: s_2993 - - name: phosphatidate (1-16:0, 2-16:1) - - compartment: gm - - formula: C35H67O8P + - id: "s_2993" + - name: "phosphatidate (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C35H67O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:73998 - - metanetx.chemical: MNXM66470 - - sbo: SBO:0000247 + - chebi: "CHEBI:73998" + - metanetx.chemical: "MNXM66470" + - sbo: "SBO:0000247" - !!omap - - id: s_2994 - - name: H2O - - compartment: gm - - formula: H2O + - id: "s_2994" + - name: "H2O" + - compartment: "gm" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_2995 - - name: phosphate - - compartment: gm - - formula: HO4P + - id: "s_2995" + - name: "phosphate" + - compartment: "gm" + - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pi - - chebi: CHEBI:43474 - - kegg.compound: C00009 - - metanetx.chemical: MNXM9 - - sbo: SBO:0000247 + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - - id: s_2996 - - name: diglyceride (1-16:0, 2-16:1) - - compartment: gm - - formula: C35H66O5 + - id: "s_2996" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:84394 - - metanetx.chemical: MNXM49375 - - sbo: SBO:0000247 + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - - id: s_2997 - - name: phosphatidate (1-16:0, 2-18:1) - - compartment: gm - - formula: C37H71O8P + - id: "s_2997" + - name: "phosphatidate (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:64844 - - kegg.compound: C13889 - - metanetx.chemical: MNXM66476 - - sbo: SBO:0000247 + - chebi: "CHEBI:64844" + - kegg.compound: "C13889" + - metanetx.chemical: "MNXM66476" + - sbo: "SBO:0000247" - !!omap - - id: s_2998 - - name: diglyceride (1-16:0, 2-18:1) - - compartment: gm - - formula: C37H70O5 + - id: "s_2998" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88454 - - metanetx.chemical: MNXM49380 - - sbo: SBO:0000247 + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - - id: s_2999 - - name: phosphatidate (1-16:1, 2-16:1) - - compartment: gm - - formula: C35H65O8P + - id: "s_2999" + - name: "phosphatidate (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C35H65O8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pa161 - - chebi: CHEBI:75071 - - metanetx.chemical: MNXM66504 - - sbo: SBO:0000247 + - bigg.metabolite: "pa161" + - chebi: "CHEBI:75071" + - metanetx.chemical: "MNXM66504" + - sbo: "SBO:0000247" - !!omap - - id: s_3000 - - name: diglyceride (1-16:1, 2-16:1) - - compartment: gm - - formula: C35H64O5 + - id: "s_3000" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr161 - - chebi: CHEBI:84417 - - metanetx.chemical: MNXM176611 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - - id: s_3001 - - name: phosphatidate (1-16:1, 2-18:1) - - compartment: gm - - formula: C37H69O8P + - id: "s_3001" + - name: "phosphatidate (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM66509 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM66509" + - sbo: "SBO:0000247" - !!omap - - id: s_3002 - - name: diglyceride (1-16:1, 2-18:1) - - compartment: gm - - formula: C37H68O5 + - id: "s_3002" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88500 - - metanetx.chemical: MNXM49417 - - sbo: SBO:0000247 + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - - id: s_3003 - - name: phosphatidate (1-18:0, 2-16:1) - - compartment: gm - - formula: C37H71O8P + - id: "s_3003" + - name: "phosphatidate (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75073 - - metanetx.chemical: MNXM66631 - - sbo: SBO:0000247 + - chebi: "CHEBI:75073" + - metanetx.chemical: "MNXM66631" + - sbo: "SBO:0000247" - !!omap - - id: s_3004 - - name: diglyceride (1-18:0, 2-16:1) - - compartment: gm - - formula: C37H70O5 + - id: "s_3004" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88527 - - metanetx.chemical: MNXM49511 - - sbo: SBO:0000247 + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - - id: s_3005 - - name: phosphatidate (1-18:0, 2-18:1) - - compartment: gm - - formula: C39H75O8P + - id: "s_3005" + - name: "phosphatidate (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C39H75O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:74847 - - metanetx.chemical: MNXM66635 - - sbo: SBO:0000247 + - chebi: "CHEBI:74847" + - metanetx.chemical: "MNXM66635" + - sbo: "SBO:0000247" - !!omap - - id: s_3006 - - name: diglyceride (1-18:0, 2-18:1) - - compartment: gm - - formula: C39H74O5 + - id: "s_3006" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75468 - - metanetx.chemical: MNXM49514 - - sbo: SBO:0000247 + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - - id: s_3007 - - name: phosphatidate (1-18:1, 2-16:1) - - compartment: gm - - formula: C37H69O8P + - id: "s_3007" + - name: "phosphatidate (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75074 - - metanetx.chemical: MNXM66663 - - sbo: SBO:0000247 + - chebi: "CHEBI:75074" + - metanetx.chemical: "MNXM66663" + - sbo: "SBO:0000247" - !!omap - - id: s_3008 - - name: diglyceride (1-18:1, 2-16:1) - - compartment: gm - - formula: C37H68O5 + - id: "s_3008" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89229 - - metanetx.chemical: MNXM49575 - - sbo: SBO:0000247 + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - - id: s_3009 - - name: phosphatidate (1-18:1, 2-18:1) - - compartment: gm - - formula: C39H73O8P + - id: "s_3009" + - name: "phosphatidate (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C39H73O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:83775 - - metanetx.chemical: MNXM51075 - - sbo: SBO:0000247 + - chebi: "CHEBI:83775" + - metanetx.chemical: "MNXM51075" + - sbo: "SBO:0000247" - !!omap - - id: s_3010 - - name: diglyceride (1-18:1, 2-18:1) - - compartment: gm - - formula: C39H72O5 + - id: "s_3010" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr181 - - chebi: CHEBI:52333 - - metanetx.chemical: MNXM9533 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - - id: s_3011 - - name: triglyceride (1-16:0, 2-16:1, 3-16:0) - - compartment: erm - - formula: C51H96O6 + - id: "s_3011" + - name: "triglyceride (1-16:0, 2-16:1, 3-16:0)" + - compartment: "erm" + - formula: "C51H96O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:85427 - - metanetx.chemical: MNXM84113 - - sbo: SBO:0000247 + - chebi: "CHEBI:85427" + - metanetx.chemical: "MNXM84113" + - sbo: "SBO:0000247" - !!omap - - id: s_3012 - - name: triglyceride (1-16:0, 2-18:1, 3-16:0) - - compartment: erm - - formula: C53H100O6 + - id: "s_3012" + - name: "triglyceride (1-16:0, 2-18:1, 3-16:0)" + - compartment: "erm" + - formula: "C53H100O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89759 - - metanetx.chemical: MNXM84120 - - sbo: SBO:0000247 + - chebi: "CHEBI:89759" + - metanetx.chemical: "MNXM84120" + - sbo: "SBO:0000247" - !!omap - - id: s_3013 - - name: triglyceride (1-16:1, 2-16:1, 3-16:0) - - compartment: erm - - formula: C51H94O6 + - id: "s_3013" + - name: "triglyceride (1-16:1, 2-16:1, 3-16:0)" + - compartment: "erm" + - formula: "C51H94O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag1619Z1619Z160 - - sbo: SBO:0000247 + - bigg.metabolite: "tag1619Z1619Z160" + - sbo: "SBO:0000247" - !!omap - - id: s_3014 - - name: triglyceride (1-16:1, 2-18:1, 3-16:0) - - compartment: erm - - formula: C53H98O6 + - id: "s_3014" + - name: "triglyceride (1-16:1, 2-18:1, 3-16:0)" + - compartment: "erm" + - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3015 - - name: triglyceride (1-18:0, 2-16:1, 3-16:0) - - compartment: erm - - formula: C53H100O6 + - id: "s_3015" + - name: "triglyceride (1-18:0, 2-16:1, 3-16:0)" + - compartment: "erm" + - formula: "C53H100O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3016 - - name: triglyceride (1-18:0, 2-18:1, 3-16:0) - - compartment: erm - - formula: C55H104O6 + - id: "s_3016" + - name: "triglyceride (1-18:0, 2-18:1, 3-16:0)" + - compartment: "erm" + - formula: "C55H104O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89755 - - metanetx.chemical: MNXM84227 - - sbo: SBO:0000247 + - chebi: "CHEBI:89755" + - metanetx.chemical: "MNXM84227" + - sbo: "SBO:0000247" - !!omap - - id: s_3017 - - name: triglyceride (1-18:1, 2-16:1, 3-16:0) - - compartment: erm - - formula: C53H98O6 + - id: "s_3017" + - name: "triglyceride (1-18:1, 2-16:1, 3-16:0)" + - compartment: "erm" + - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3018 - - name: triglyceride (1-18:1, 2-18:1, 3-16:0) - - compartment: erm - - formula: C55H102O6 + - id: "s_3018" + - name: "triglyceride (1-18:1, 2-18:1, 3-16:0)" + - compartment: "erm" + - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88999 - - metanetx.chemical: MNXM85598 - - sbo: SBO:0000247 + - chebi: "CHEBI:88999" + - metanetx.chemical: "MNXM85598" + - sbo: "SBO:0000247" - !!omap - - id: s_3019 - - name: triglyceride (1-16:0, 2-16:1, 3-16:1) - - compartment: erm - - formula: C51H94O6 + - id: "s_3019" + - name: "triglyceride (1-16:0, 2-16:1, 3-16:1)" + - compartment: "erm" + - formula: "C51H94O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89765 - - metanetx.chemical: MNXM84138 - - sbo: SBO:0000247 + - chebi: "CHEBI:89765" + - metanetx.chemical: "MNXM84138" + - sbo: "SBO:0000247" - !!omap - - id: s_3020 - - name: triglyceride (1-16:0, 2-18:1, 3-16:1) - - compartment: erm - - formula: C53H98O6 + - id: "s_3020" + - name: "triglyceride (1-16:0, 2-18:1, 3-16:1)" + - compartment: "erm" + - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3021 - - name: triglyceride (1-16:1, 2-16:1, 3-16:1) - - compartment: erm - - formula: C51H92O6 + - id: "s_3021" + - name: "triglyceride (1-16:1, 2-16:1, 3-16:1)" + - compartment: "erm" + - formula: "C51H92O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag1619Z1619Z1619Z - - chebi: CHEBI:75841 - - metanetx.chemical: MNXM84424 - - sbo: SBO:0000247 + - bigg.metabolite: "tag1619Z1619Z1619Z" + - chebi: "CHEBI:75841" + - metanetx.chemical: "MNXM84424" + - sbo: "SBO:0000247" - !!omap - - id: s_3022 - - name: triglyceride (1-16:1, 2-18:1, 3-16:1) - - compartment: erm - - formula: C53H96O6 + - id: "s_3022" + - name: "triglyceride (1-16:1, 2-18:1, 3-16:1)" + - compartment: "erm" + - formula: "C53H96O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3023 - - name: triglyceride (1-18:0, 2-16:1, 3-16:1) - - compartment: erm - - formula: C53H98O6 + - id: "s_3023" + - name: "triglyceride (1-18:0, 2-16:1, 3-16:1)" + - compartment: "erm" + - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90053 - - metanetx.chemical: MNXM84428 - - sbo: SBO:0000247 + - chebi: "CHEBI:90053" + - metanetx.chemical: "MNXM84428" + - sbo: "SBO:0000247" - !!omap - - id: s_3024 - - name: triglyceride (1-18:0, 2-18:1, 3-16:1) - - compartment: erm - - formula: C55H102O6 + - id: "s_3024" + - name: "triglyceride (1-18:0, 2-18:1, 3-16:1)" + - compartment: "erm" + - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3025 - - name: triglyceride (1-18:1, 2-16:1, 3-16:1) - - compartment: erm - - formula: C53H96O6 + - id: "s_3025" + - name: "triglyceride (1-18:1, 2-16:1, 3-16:1)" + - compartment: "erm" + - formula: "C53H96O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag1819Z1619Z1619Z - - sbo: SBO:0000247 + - bigg.metabolite: "tag1819Z1619Z1619Z" + - sbo: "SBO:0000247" - !!omap - - id: s_3026 - - name: triglyceride (1-18:1, 2-18:1, 3-16:1) - - compartment: erm - - formula: C55H100O6 + - id: "s_3026" + - name: "triglyceride (1-18:1, 2-18:1, 3-16:1)" + - compartment: "erm" + - formula: "C55H100O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3027 - - name: triglyceride (1-16:0, 2-16:1, 3-18:0) - - compartment: erm - - formula: C53H100O6 + - id: "s_3027" + - name: "triglyceride (1-16:0, 2-16:1, 3-18:0)" + - compartment: "erm" + - formula: "C53H100O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89763 - - metanetx.chemical: MNXM84142 - - sbo: SBO:0000247 + - chebi: "CHEBI:89763" + - metanetx.chemical: "MNXM84142" + - sbo: "SBO:0000247" - !!omap - - id: s_3028 - - name: triglyceride (1-16:0, 2-18:1, 3-18:0) - - compartment: erm - - formula: C55H104O6 + - id: "s_3028" + - name: "triglyceride (1-16:0, 2-18:1, 3-18:0)" + - compartment: "erm" + - formula: "C55H104O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88998 - - metanetx.chemical: MNXM85401 - - sbo: SBO:0000247 + - chebi: "CHEBI:88998" + - metanetx.chemical: "MNXM85401" + - sbo: "SBO:0000247" - !!omap - - id: s_3029 - - name: triglyceride (1-16:1, 2-16:1, 3-18:0) - - compartment: erm - - formula: C53H98O6 + - id: "s_3029" + - name: "triglyceride (1-16:1, 2-16:1, 3-18:0)" + - compartment: "erm" + - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3030 - - name: triglyceride (1-16:1, 2-18:1, 3-18:0) - - compartment: erm - - formula: C55H102O6 + - id: "s_3030" + - name: "triglyceride (1-16:1, 2-18:1, 3-18:0)" + - compartment: "erm" + - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3031 - - name: triglyceride (1-18:0, 2-16:1, 3-18:0) - - compartment: erm - - formula: C55H104O6 + - id: "s_3031" + - name: "triglyceride (1-18:0, 2-16:1, 3-18:0)" + - compartment: "erm" + - formula: "C55H104O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89958 - - metanetx.chemical: MNXM84510 - - sbo: SBO:0000247 + - chebi: "CHEBI:89958" + - metanetx.chemical: "MNXM84510" + - sbo: "SBO:0000247" - !!omap - - id: s_3032 - - name: triglyceride (1-18:0, 2-18:1, 3-18:0) - - compartment: erm - - formula: C57H108O6 + - id: "s_3032" + - name: "triglyceride (1-18:0, 2-18:1, 3-18:0)" + - compartment: "erm" + - formula: "C57H108O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90305 - - sbo: SBO:0000247 + - chebi: "CHEBI:90305" + - sbo: "SBO:0000247" - !!omap - - id: s_3033 - - name: triglyceride (1-18:1, 2-16:1, 3-18:0) - - compartment: erm - - formula: C55H102O6 + - id: "s_3033" + - name: "triglyceride (1-18:1, 2-16:1, 3-18:0)" + - compartment: "erm" + - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3034 - - name: triglyceride (1-18:1, 2-18:1, 3-18:0) - - compartment: erm - - formula: C57H106O6 + - id: "s_3034" + - name: "triglyceride (1-18:1, 2-18:1, 3-18:0)" + - compartment: "erm" + - formula: "C57H106O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3035 - - name: triglyceride (1-16:0, 2-16:1, 3-18:1) - - compartment: erm - - formula: C53H98O6 + - id: "s_3035" + - name: "triglyceride (1-16:0, 2-16:1, 3-18:1)" + - compartment: "erm" + - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3036 - - name: triglyceride (1-16:0, 2-18:1, 3-18:1) - - compartment: erm - - formula: C55H102O6 + - id: "s_3036" + - name: "triglyceride (1-16:0, 2-18:1, 3-18:1)" + - compartment: "erm" + - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3037 - - name: triglyceride (1-16:1, 2-16:1, 3-18:1) - - compartment: erm - - formula: C53H96O6 + - id: "s_3037" + - name: "triglyceride (1-16:1, 2-16:1, 3-18:1)" + - compartment: "erm" + - formula: "C53H96O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag1619Z1619Z1819Z - - chebi: CHEBI:90051 - - metanetx.chemical: MNXM84429 - - sbo: SBO:0000247 + - bigg.metabolite: "tag1619Z1619Z1819Z" + - chebi: "CHEBI:90051" + - metanetx.chemical: "MNXM84429" + - sbo: "SBO:0000247" - !!omap - - id: s_3038 - - name: triglyceride (1-16:1, 2-18:1, 3-18:1) - - compartment: erm - - formula: C55H100O6 + - id: "s_3038" + - name: "triglyceride (1-16:1, 2-18:1, 3-18:1)" + - compartment: "erm" + - formula: "C55H100O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90048 - - metanetx.chemical: MNXM84530 - - sbo: SBO:0000247 + - chebi: "CHEBI:90048" + - metanetx.chemical: "MNXM84530" + - sbo: "SBO:0000247" - !!omap - - id: s_3039 - - name: triglyceride (1-18:0, 2-16:1, 3-18:1) - - compartment: erm - - formula: C55H102O6 + - id: "s_3039" + - name: "triglyceride (1-18:0, 2-16:1, 3-18:1)" + - compartment: "erm" + - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3040 - - name: triglyceride (1-18:0, 2-18:1, 3-18:1) - - compartment: erm - - formula: C57H106O6 + - id: "s_3040" + - name: "triglyceride (1-18:0, 2-18:1, 3-18:1)" + - compartment: "erm" + - formula: "C57H106O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3041 - - name: triglyceride (1-18:1, 2-16:1, 3-18:1) - - compartment: erm - - formula: C55H100O6 + - id: "s_3041" + - name: "triglyceride (1-18:1, 2-16:1, 3-18:1)" + - compartment: "erm" + - formula: "C55H100O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag1819Z1619Z1819Z - - chebi: CHEBI:88984 - - metanetx.chemical: MNXM85603 - - sbo: SBO:0000247 + - bigg.metabolite: "tag1819Z1619Z1819Z" + - chebi: "CHEBI:88984" + - metanetx.chemical: "MNXM85603" + - sbo: "SBO:0000247" - !!omap - - id: s_3042 - - name: triglyceride (1-18:1, 2-18:1, 3-18:1) - - compartment: erm - - formula: C57H104O6 + - id: "s_3042" + - name: "triglyceride (1-18:1, 2-18:1, 3-18:1)" + - compartment: "erm" + - formula: "C57H104O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88970 - - metanetx.chemical: MNXM85618 - - sbo: SBO:0000247 + - chebi: "CHEBI:88970" + - metanetx.chemical: "MNXM85618" + - sbo: "SBO:0000247" - !!omap - - id: s_3043 - - name: diglyceride (1-16:0, 2-16:1) - - compartment: lp - - formula: C35H66O5 + - id: "s_3043" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "lp" + - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:84394 - - metanetx.chemical: MNXM49375 - - sbo: SBO:0000247 + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - - id: s_3044 - - name: triglyceride (1-16:0, 2-16:1, 3-16:0) - - compartment: lp - - formula: C51H96O6 + - id: "s_3044" + - name: "triglyceride (1-16:0, 2-16:1, 3-16:0)" + - compartment: "lp" + - formula: "C51H96O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:85427 - - metanetx.chemical: MNXM84113 - - sbo: SBO:0000247 + - chebi: "CHEBI:85427" + - metanetx.chemical: "MNXM84113" + - sbo: "SBO:0000247" - !!omap - - id: s_3045 - - name: diglyceride (1-16:0, 2-18:1) - - compartment: lp - - formula: C37H70O5 + - id: "s_3045" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "lp" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88454 - - metanetx.chemical: MNXM49380 - - sbo: SBO:0000247 + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - - id: s_3046 - - name: triglyceride (1-16:0, 2-18:1, 3-16:0) - - compartment: lp - - formula: C53H100O6 + - id: "s_3046" + - name: "triglyceride (1-16:0, 2-18:1, 3-16:0)" + - compartment: "lp" + - formula: "C53H100O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89759 - - metanetx.chemical: MNXM84120 - - sbo: SBO:0000247 + - chebi: "CHEBI:89759" + - metanetx.chemical: "MNXM84120" + - sbo: "SBO:0000247" - !!omap - - id: s_3047 - - name: diglyceride (1-16:1, 2-16:1) - - compartment: lp - - formula: C35H64O5 + - id: "s_3047" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "lp" + - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr161 - - chebi: CHEBI:84417 - - metanetx.chemical: MNXM176611 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - - id: s_3048 - - name: triglyceride (1-16:1, 2-16:1, 3-16:0) - - compartment: lp - - formula: C51H94O6 + - id: "s_3048" + - name: "triglyceride (1-16:1, 2-16:1, 3-16:0)" + - compartment: "lp" + - formula: "C51H94O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag1619Z1619Z160 - - sbo: SBO:0000247 + - bigg.metabolite: "tag1619Z1619Z160" + - sbo: "SBO:0000247" - !!omap - - id: s_3049 - - name: diglyceride (1-16:1, 2-18:1) - - compartment: lp - - formula: C37H68O5 + - id: "s_3049" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "lp" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88500 - - metanetx.chemical: MNXM49417 - - sbo: SBO:0000247 + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - - id: s_3050 - - name: triglyceride (1-16:1, 2-18:1, 3-16:0) - - compartment: lp - - formula: C53H98O6 + - id: "s_3050" + - name: "triglyceride (1-16:1, 2-18:1, 3-16:0)" + - compartment: "lp" + - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3051 - - name: diglyceride (1-18:0, 2-16:1) - - compartment: lp - - formula: C37H70O5 + - id: "s_3051" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "lp" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88527 - - metanetx.chemical: MNXM49511 - - sbo: SBO:0000247 + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - - id: s_3052 - - name: triglyceride (1-18:0, 2-16:1, 3-16:0) - - compartment: lp - - formula: C53H100O6 + - id: "s_3052" + - name: "triglyceride (1-18:0, 2-16:1, 3-16:0)" + - compartment: "lp" + - formula: "C53H100O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3053 - - name: diglyceride (1-18:0, 2-18:1) - - compartment: lp - - formula: C39H74O5 + - id: "s_3053" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "lp" + - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75468 - - metanetx.chemical: MNXM49514 - - sbo: SBO:0000247 + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - - id: s_3054 - - name: triglyceride (1-18:0, 2-18:1, 3-16:0) - - compartment: lp - - formula: C55H104O6 + - id: "s_3054" + - name: "triglyceride (1-18:0, 2-18:1, 3-16:0)" + - compartment: "lp" + - formula: "C55H104O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89755 - - metanetx.chemical: MNXM84227 - - sbo: SBO:0000247 + - chebi: "CHEBI:89755" + - metanetx.chemical: "MNXM84227" + - sbo: "SBO:0000247" - !!omap - - id: s_3055 - - name: diglyceride (1-18:1, 2-16:1) - - compartment: lp - - formula: C37H68O5 + - id: "s_3055" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "lp" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89229 - - metanetx.chemical: MNXM49575 - - sbo: SBO:0000247 + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - - id: s_3056 - - name: triglyceride (1-18:1, 2-16:1, 3-16:0) - - compartment: lp - - formula: C53H98O6 + - id: "s_3056" + - name: "triglyceride (1-18:1, 2-16:1, 3-16:0)" + - compartment: "lp" + - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3057 - - name: diglyceride (1-18:1, 2-18:1) - - compartment: lp - - formula: C39H72O5 + - id: "s_3057" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "lp" + - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr181 - - chebi: CHEBI:52333 - - metanetx.chemical: MNXM9533 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - - id: s_3058 - - name: triglyceride (1-18:1, 2-18:1, 3-16:0) - - compartment: lp - - formula: C55H102O6 + - id: "s_3058" + - name: "triglyceride (1-18:1, 2-18:1, 3-16:0)" + - compartment: "lp" + - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88999 - - metanetx.chemical: MNXM85598 - - sbo: SBO:0000247 + - chebi: "CHEBI:88999" + - metanetx.chemical: "MNXM85598" + - sbo: "SBO:0000247" - !!omap - - id: s_3059 - - name: triglyceride (1-16:0, 2-16:1, 3-16:1) - - compartment: lp - - formula: C51H94O6 + - id: "s_3059" + - name: "triglyceride (1-16:0, 2-16:1, 3-16:1)" + - compartment: "lp" + - formula: "C51H94O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89765 - - metanetx.chemical: MNXM84138 - - sbo: SBO:0000247 + - chebi: "CHEBI:89765" + - metanetx.chemical: "MNXM84138" + - sbo: "SBO:0000247" - !!omap - - id: s_3060 - - name: triglyceride (1-16:0, 2-18:1, 3-16:1) - - compartment: lp - - formula: C53H98O6 + - id: "s_3060" + - name: "triglyceride (1-16:0, 2-18:1, 3-16:1)" + - compartment: "lp" + - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3061 - - name: triglyceride (1-16:1, 2-16:1, 3-16:1) - - compartment: lp - - formula: C51H92O6 + - id: "s_3061" + - name: "triglyceride (1-16:1, 2-16:1, 3-16:1)" + - compartment: "lp" + - formula: "C51H92O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag1619Z1619Z1619Z - - chebi: CHEBI:75841 - - metanetx.chemical: MNXM84424 - - sbo: SBO:0000247 + - bigg.metabolite: "tag1619Z1619Z1619Z" + - chebi: "CHEBI:75841" + - metanetx.chemical: "MNXM84424" + - sbo: "SBO:0000247" - !!omap - - id: s_3062 - - name: triglyceride (1-16:1, 2-18:1, 3-16:1) - - compartment: lp - - formula: C53H96O6 + - id: "s_3062" + - name: "triglyceride (1-16:1, 2-18:1, 3-16:1)" + - compartment: "lp" + - formula: "C53H96O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3063 - - name: triglyceride (1-18:0, 2-16:1, 3-16:1) - - compartment: lp - - formula: C53H98O6 + - id: "s_3063" + - name: "triglyceride (1-18:0, 2-16:1, 3-16:1)" + - compartment: "lp" + - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90053 - - metanetx.chemical: MNXM84428 - - sbo: SBO:0000247 + - chebi: "CHEBI:90053" + - metanetx.chemical: "MNXM84428" + - sbo: "SBO:0000247" - !!omap - - id: s_3064 - - name: triglyceride (1-18:0, 2-18:1, 3-16:1) - - compartment: lp - - formula: C55H102O6 + - id: "s_3064" + - name: "triglyceride (1-18:0, 2-18:1, 3-16:1)" + - compartment: "lp" + - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3065 - - name: triglyceride (1-18:1, 2-16:1, 3-16:1) - - compartment: lp - - formula: C53H96O6 + - id: "s_3065" + - name: "triglyceride (1-18:1, 2-16:1, 3-16:1)" + - compartment: "lp" + - formula: "C53H96O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag1819Z1619Z1619Z - - sbo: SBO:0000247 + - bigg.metabolite: "tag1819Z1619Z1619Z" + - sbo: "SBO:0000247" - !!omap - - id: s_3066 - - name: triglyceride (1-18:1, 2-18:1, 3-16:1) - - compartment: lp - - formula: C55H100O6 + - id: "s_3066" + - name: "triglyceride (1-18:1, 2-18:1, 3-16:1)" + - compartment: "lp" + - formula: "C55H100O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3067 - - name: triglyceride (1-16:0, 2-16:1, 3-18:0) - - compartment: lp - - formula: C53H100O6 + - id: "s_3067" + - name: "triglyceride (1-16:0, 2-16:1, 3-18:0)" + - compartment: "lp" + - formula: "C53H100O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89763 - - metanetx.chemical: MNXM84142 - - sbo: SBO:0000247 + - chebi: "CHEBI:89763" + - metanetx.chemical: "MNXM84142" + - sbo: "SBO:0000247" - !!omap - - id: s_3068 - - name: triglyceride (1-16:0, 2-18:1, 3-18:0) - - compartment: lp - - formula: C55H104O6 + - id: "s_3068" + - name: "triglyceride (1-16:0, 2-18:1, 3-18:0)" + - compartment: "lp" + - formula: "C55H104O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88998 - - metanetx.chemical: MNXM85401 - - sbo: SBO:0000247 + - chebi: "CHEBI:88998" + - metanetx.chemical: "MNXM85401" + - sbo: "SBO:0000247" - !!omap - - id: s_3069 - - name: triglyceride (1-16:1, 2-16:1, 3-18:0) - - compartment: lp - - formula: C53H98O6 + - id: "s_3069" + - name: "triglyceride (1-16:1, 2-16:1, 3-18:0)" + - compartment: "lp" + - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3070 - - name: triglyceride (1-16:1, 2-18:1, 3-18:0) - - compartment: lp - - formula: C55H102O6 + - id: "s_3070" + - name: "triglyceride (1-16:1, 2-18:1, 3-18:0)" + - compartment: "lp" + - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3071 - - name: triglyceride (1-18:0, 2-16:1, 3-18:0) - - compartment: lp - - formula: C55H104O6 + - id: "s_3071" + - name: "triglyceride (1-18:0, 2-16:1, 3-18:0)" + - compartment: "lp" + - formula: "C55H104O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89958 - - metanetx.chemical: MNXM84510 - - sbo: SBO:0000247 + - chebi: "CHEBI:89958" + - metanetx.chemical: "MNXM84510" + - sbo: "SBO:0000247" - !!omap - - id: s_3072 - - name: triglyceride (1-18:0, 2-18:1, 3-18:0) - - compartment: lp - - formula: C57H108O6 + - id: "s_3072" + - name: "triglyceride (1-18:0, 2-18:1, 3-18:0)" + - compartment: "lp" + - formula: "C57H108O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90305 - - sbo: SBO:0000247 + - chebi: "CHEBI:90305" + - sbo: "SBO:0000247" - !!omap - - id: s_3073 - - name: triglyceride (1-18:1, 2-16:1, 3-18:0) - - compartment: lp - - formula: C55H102O6 + - id: "s_3073" + - name: "triglyceride (1-18:1, 2-16:1, 3-18:0)" + - compartment: "lp" + - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3074 - - name: triglyceride (1-18:1, 2-18:1, 3-18:0) - - compartment: lp - - formula: C57H106O6 + - id: "s_3074" + - name: "triglyceride (1-18:1, 2-18:1, 3-18:0)" + - compartment: "lp" + - formula: "C57H106O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3075 - - name: triglyceride (1-16:0, 2-16:1, 3-18:1) - - compartment: lp - - formula: C53H98O6 + - id: "s_3075" + - name: "triglyceride (1-16:0, 2-16:1, 3-18:1)" + - compartment: "lp" + - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3076 - - name: triglyceride (1-16:0, 2-18:1, 3-18:1) - - compartment: lp - - formula: C55H102O6 + - id: "s_3076" + - name: "triglyceride (1-16:0, 2-18:1, 3-18:1)" + - compartment: "lp" + - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3077 - - name: triglyceride (1-16:1, 2-16:1, 3-18:1) - - compartment: lp - - formula: C53H96O6 + - id: "s_3077" + - name: "triglyceride (1-16:1, 2-16:1, 3-18:1)" + - compartment: "lp" + - formula: "C53H96O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag1619Z1619Z1819Z - - chebi: CHEBI:90051 - - metanetx.chemical: MNXM84429 - - sbo: SBO:0000247 + - bigg.metabolite: "tag1619Z1619Z1819Z" + - chebi: "CHEBI:90051" + - metanetx.chemical: "MNXM84429" + - sbo: "SBO:0000247" - !!omap - - id: s_3078 - - name: triglyceride (1-16:1, 2-18:1, 3-18:1) - - compartment: lp - - formula: C55H100O6 + - id: "s_3078" + - name: "triglyceride (1-16:1, 2-18:1, 3-18:1)" + - compartment: "lp" + - formula: "C55H100O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90048 - - metanetx.chemical: MNXM84530 - - sbo: SBO:0000247 + - chebi: "CHEBI:90048" + - metanetx.chemical: "MNXM84530" + - sbo: "SBO:0000247" - !!omap - - id: s_3079 - - name: triglyceride (1-18:0, 2-16:1, 3-18:1) - - compartment: lp - - formula: C55H102O6 + - id: "s_3079" + - name: "triglyceride (1-18:0, 2-16:1, 3-18:1)" + - compartment: "lp" + - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3080 - - name: triglyceride (1-18:0, 2-18:1, 3-18:1) - - compartment: lp - - formula: C57H106O6 + - id: "s_3080" + - name: "triglyceride (1-18:0, 2-18:1, 3-18:1)" + - compartment: "lp" + - formula: "C57H106O6" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3081 - - name: triglyceride (1-18:1, 2-16:1, 3-18:1) - - compartment: lp - - formula: C55H100O6 + - id: "s_3081" + - name: "triglyceride (1-18:1, 2-16:1, 3-18:1)" + - compartment: "lp" + - formula: "C55H100O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag1819Z1619Z1819Z - - chebi: CHEBI:88984 - - metanetx.chemical: MNXM85603 - - sbo: SBO:0000247 + - bigg.metabolite: "tag1819Z1619Z1819Z" + - chebi: "CHEBI:88984" + - metanetx.chemical: "MNXM85603" + - sbo: "SBO:0000247" - !!omap - - id: s_3082 - - name: triglyceride (1-18:1, 2-18:1, 3-18:1) - - compartment: lp - - formula: C57H104O6 + - id: "s_3082" + - name: "triglyceride (1-18:1, 2-18:1, 3-18:1)" + - compartment: "lp" + - formula: "C57H104O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88970 - - metanetx.chemical: MNXM85618 - - sbo: SBO:0000247 + - chebi: "CHEBI:88970" + - metanetx.chemical: "MNXM85618" + - sbo: "SBO:0000247" - !!omap - - id: s_3083 - - name: CTP - - compartment: erm - - formula: C9H12N3O14P3 + - id: "s_3083" + - name: "CTP" + - compartment: "erm" + - formula: "C9H12N3O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: ctp - - chebi: CHEBI:37563 - - kegg.compound: C00063 - - metanetx.chemical: MNXM63 - - sbo: SBO:0000247 + - bigg.metabolite: "ctp" + - chebi: "CHEBI:37563" + - kegg.compound: "C00063" + - metanetx.chemical: "MNXM63" + - sbo: "SBO:0000247" - !!omap - - id: s_3084 - - name: CDP-diacylglycerol (1-16:0, 2-16:1) - - compartment: erm - - formula: C44H79N3O15P2 + - id: "s_3084" + - name: "CDP-diacylglycerol (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C44H79N3O15P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3085 - - name: CDP-diacylglycerol (1-16:1, 2-16:1) - - compartment: erm - - formula: C44H77N3O15P2 + - id: "s_3085" + - name: "CDP-diacylglycerol (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C44H77N3O15P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:104012 - - metanetx.chemical: MNXM4508 - - sbo: SBO:0000247 + - chebi: "CHEBI:104012" + - metanetx.chemical: "MNXM4508" + - sbo: "SBO:0000247" - !!omap - - id: s_3086 - - name: CDP-diacylglycerol (1-18:0, 2-16:1) - - compartment: erm - - formula: C46H83N3O15P2 + - id: "s_3086" + - name: "CDP-diacylglycerol (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C46H83N3O15P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3087 - - name: CDP-diacylglycerol (1-18:1, 2-16:1) - - compartment: erm - - formula: C46H81N3O15P2 + - id: "s_3087" + - name: "CDP-diacylglycerol (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C46H81N3O15P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3088 - - name: CDP-diacylglycerol (1-16:0, 2-18:1) - - compartment: erm - - formula: C46H83N3O15P2 + - id: "s_3088" + - name: "CDP-diacylglycerol (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C46H83N3O15P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:34077 - - kegg.compound: C13892 - - metanetx.chemical: MNXM32787 - - sbo: SBO:0000247 + - chebi: "CHEBI:34077" + - kegg.compound: "C13892" + - metanetx.chemical: "MNXM32787" + - sbo: "SBO:0000247" - !!omap - - id: s_3089 - - name: CDP-diacylglycerol (1-16:1, 2-18:1) - - compartment: erm - - formula: C46H81N3O15P2 + - id: "s_3089" + - name: "CDP-diacylglycerol (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C46H81N3O15P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3090 - - name: CDP-diacylglycerol (1-18:0, 2-18:1) - - compartment: erm - - formula: C48H87N3O15P2 + - id: "s_3090" + - name: "CDP-diacylglycerol (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C48H87N3O15P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3091 - - name: CDP-diacylglycerol (1-18:1, 2-18:1) - - compartment: erm - - formula: C48H85N3O15P2 + - id: "s_3091" + - name: "CDP-diacylglycerol (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C48H85N3O15P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:104362 - - sbo: SBO:0000247 + - chebi: "CHEBI:104362" + - sbo: "SBO:0000247" - !!omap - - id: s_3092 - - name: phosphatidate (1-16:0, 2-16:1) - - compartment: mm - - formula: C35H67O8P + - id: "s_3092" + - name: "phosphatidate (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C35H67O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:73998 - - metanetx.chemical: MNXM66470 - - sbo: SBO:0000247 + - chebi: "CHEBI:73998" + - metanetx.chemical: "MNXM66470" + - sbo: "SBO:0000247" - !!omap - - id: s_3093 - - name: CTP - - compartment: mm - - formula: C9H12N3O14P3 + - id: "s_3093" + - name: "CTP" + - compartment: "mm" + - formula: "C9H12N3O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: ctp - - chebi: CHEBI:37563 - - kegg.compound: C00063 - - metanetx.chemical: MNXM63 - - sbo: SBO:0000247 + - bigg.metabolite: "ctp" + - chebi: "CHEBI:37563" + - kegg.compound: "C00063" + - metanetx.chemical: "MNXM63" + - sbo: "SBO:0000247" - !!omap - - id: s_3094 - - name: H+ - - compartment: mm - - formula: H + - id: "s_3094" + - name: "H+" + - compartment: "mm" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_3095 - - name: diphosphate - - compartment: mm - - formula: HO7P2 + - id: "s_3095" + - name: "diphosphate" + - compartment: "mm" + - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ppi - - chebi: CHEBI:33019 - - kegg.compound: C00013 - - metanetx.chemical: MNXM11 - - sbo: SBO:0000247 + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - - id: s_3096 - - name: CDP-diacylglycerol (1-16:0, 2-16:1) - - compartment: mm - - formula: C44H79N3O15P2 + - id: "s_3096" + - name: "CDP-diacylglycerol (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C44H79N3O15P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3097 - - name: phosphatidate (1-16:1, 2-16:1) - - compartment: mm - - formula: C35H65O8P + - id: "s_3097" + - name: "phosphatidate (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C35H65O8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pa161 - - chebi: CHEBI:75071 - - metanetx.chemical: MNXM66504 - - sbo: SBO:0000247 + - bigg.metabolite: "pa161" + - chebi: "CHEBI:75071" + - metanetx.chemical: "MNXM66504" + - sbo: "SBO:0000247" - !!omap - - id: s_3098 - - name: CDP-diacylglycerol (1-16:1, 2-16:1) - - compartment: mm - - formula: C44H77N3O15P2 + - id: "s_3098" + - name: "CDP-diacylglycerol (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C44H77N3O15P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:104012 - - metanetx.chemical: MNXM4508 - - sbo: SBO:0000247 + - chebi: "CHEBI:104012" + - metanetx.chemical: "MNXM4508" + - sbo: "SBO:0000247" - !!omap - - id: s_3099 - - name: phosphatidate (1-18:0, 2-16:1) - - compartment: mm - - formula: C37H71O8P + - id: "s_3099" + - name: "phosphatidate (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75073 - - metanetx.chemical: MNXM66631 - - sbo: SBO:0000247 + - chebi: "CHEBI:75073" + - metanetx.chemical: "MNXM66631" + - sbo: "SBO:0000247" - !!omap - - id: s_3100 - - name: CDP-diacylglycerol (1-18:0, 2-16:1) - - compartment: mm - - formula: C46H83N3O15P2 + - id: "s_3100" + - name: "CDP-diacylglycerol (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C46H83N3O15P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3101 - - name: phosphatidate (1-18:1, 2-16:1) - - compartment: mm - - formula: C37H69O8P + - id: "s_3101" + - name: "phosphatidate (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75074 - - metanetx.chemical: MNXM66663 - - sbo: SBO:0000247 + - chebi: "CHEBI:75074" + - metanetx.chemical: "MNXM66663" + - sbo: "SBO:0000247" - !!omap - - id: s_3102 - - name: CDP-diacylglycerol (1-18:1, 2-16:1) - - compartment: mm - - formula: C46H81N3O15P2 + - id: "s_3102" + - name: "CDP-diacylglycerol (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C46H81N3O15P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3103 - - name: phosphatidate (1-16:0, 2-18:1) - - compartment: mm - - formula: C37H71O8P + - id: "s_3103" + - name: "phosphatidate (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:64844 - - kegg.compound: C13889 - - metanetx.chemical: MNXM66476 - - sbo: SBO:0000247 + - chebi: "CHEBI:64844" + - kegg.compound: "C13889" + - metanetx.chemical: "MNXM66476" + - sbo: "SBO:0000247" - !!omap - - id: s_3104 - - name: CDP-diacylglycerol (1-16:0, 2-18:1) - - compartment: mm - - formula: C46H83N3O15P2 + - id: "s_3104" + - name: "CDP-diacylglycerol (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C46H83N3O15P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:34077 - - kegg.compound: C13892 - - metanetx.chemical: MNXM32787 - - sbo: SBO:0000247 + - chebi: "CHEBI:34077" + - kegg.compound: "C13892" + - metanetx.chemical: "MNXM32787" + - sbo: "SBO:0000247" - !!omap - - id: s_3105 - - name: phosphatidate (1-16:1, 2-18:1) - - compartment: mm - - formula: C37H69O8P + - id: "s_3105" + - name: "phosphatidate (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM66509 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM66509" + - sbo: "SBO:0000247" - !!omap - - id: s_3106 - - name: CDP-diacylglycerol (1-16:1, 2-18:1) - - compartment: mm - - formula: C46H81N3O15P2 + - id: "s_3106" + - name: "CDP-diacylglycerol (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C46H81N3O15P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3107 - - name: L-serine - - compartment: erm - - formula: C3H7NO3 + - id: "s_3107" + - name: "L-serine" + - compartment: "erm" + - formula: "C3H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ser__L - - chebi: CHEBI:17115 - - kegg.compound: C00065 - - metanetx.chemical: MNXM53 - - sbo: SBO:0000247 + - bigg.metabolite: "ser__L" + - chebi: "CHEBI:17115" + - kegg.compound: "C00065" + - metanetx.chemical: "MNXM53" + - sbo: "SBO:0000247" - !!omap - - id: s_3108 - - name: CMP - - compartment: erm - - formula: C9H12N3O8P + - id: "s_3108" + - name: "CMP" + - compartment: "erm" + - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: cmp - - chebi: CHEBI:60377 - - kegg.compound: C00055 - - metanetx.chemical: MNXM31 - - sbo: SBO:0000247 + - bigg.metabolite: "cmp" + - chebi: "CHEBI:60377" + - kegg.compound: "C00055" + - metanetx.chemical: "MNXM31" + - sbo: "SBO:0000247" - !!omap - - id: s_3109 - - name: phosphatidyl-L-serine (1-16:0, 2-16:1) - - compartment: erm - - formula: C38H72NO10P + - id: "s_3109" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C38H72NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89824 - - metanetx.chemical: MNXM78605 - - sbo: SBO:0000247 + - chebi: "CHEBI:89824" + - metanetx.chemical: "MNXM78605" + - sbo: "SBO:0000247" - !!omap - - id: s_3110 - - name: phosphatidyl-L-serine (1-16:1, 2-16:1) - - compartment: erm - - formula: C38H70NO10P + - id: "s_3110" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C38H70NO10P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM78637 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM78637" + - sbo: "SBO:0000247" - !!omap - - id: s_3111 - - name: phosphatidyl-L-serine (1-18:0, 2-16:1) - - compartment: erm - - formula: C40H76NO10P + - id: "s_3111" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90036 - - metanetx.chemical: MNXM78765 - - sbo: SBO:0000247 + - chebi: "CHEBI:90036" + - metanetx.chemical: "MNXM78765" + - sbo: "SBO:0000247" - !!omap - - id: s_3112 - - name: phosphatidyl-L-serine (1-18:1, 2-16:1) - - compartment: erm - - formula: C40H74NO10P + - id: "s_3112" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75101 - - metanetx.chemical: MNXM78797 - - sbo: SBO:0000247 + - chebi: "CHEBI:75101" + - metanetx.chemical: "MNXM78797" + - sbo: "SBO:0000247" - !!omap - - id: s_3113 - - name: phosphatidyl-L-serine (1-16:0, 2-18:1) - - compartment: erm - - formula: C40H76NO10P + - id: "s_3113" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:34086 - - kegg.compound: C13880 - - metanetx.chemical: MNXM32501 - - sbo: SBO:0000247 + - chebi: "CHEBI:34086" + - kegg.compound: "C13880" + - metanetx.chemical: "MNXM32501" + - sbo: "SBO:0000247" - !!omap - - id: s_3114 - - name: phosphatidyl-L-serine (1-16:1, 2-18:1) - - compartment: erm - - formula: C40H74NO10P + - id: "s_3114" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90032 - - metanetx.chemical: MNXM78642 - - sbo: SBO:0000247 + - chebi: "CHEBI:90032" + - metanetx.chemical: "MNXM78642" + - sbo: "SBO:0000247" - !!omap - - id: s_3115 - - name: phosphatidyl-L-serine (1-18:0, 2-18:1) - - compartment: erm - - formula: C42H80NO10P + - id: "s_3115" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C42H80NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:79096 - - metanetx.chemical: MNXM32529 - - sbo: SBO:0000247 + - chebi: "CHEBI:79096" + - metanetx.chemical: "MNXM32529" + - sbo: "SBO:0000247" - !!omap - - id: s_3116 - - name: phosphatidyl-L-serine (1-18:1, 2-18:1) - - compartment: erm - - formula: C42H78NO10P + - id: "s_3116" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C42H78NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60568 - - metanetx.chemical: MNXM32173 - - sbo: SBO:0000247 + - chebi: "CHEBI:60568" + - metanetx.chemical: "MNXM32173" + - sbo: "SBO:0000247" - !!omap - - id: s_3117 - - name: myo-inositol - - compartment: erm - - formula: C6H12O6 + - id: "s_3117" + - name: "myo-inositol" + - compartment: "erm" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: inost - - chebi: CHEBI:17268 - - kegg.compound: C00137 - - metanetx.chemical: MNXM127 - - sbo: SBO:0000247 + - bigg.metabolite: "inost" + - chebi: "CHEBI:17268" + - kegg.compound: "C00137" + - metanetx.chemical: "MNXM127" + - sbo: "SBO:0000247" - !!omap - - id: s_3118 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) - - compartment: erm - - formula: C41H77O13P + - id: "s_3118" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C41H77O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88396 - - metanetx.chemical: MNXM75492 - - sbo: SBO:0000247 + - chebi: "CHEBI:88396" + - metanetx.chemical: "MNXM75492" + - sbo: "SBO:0000247" - !!omap - - id: s_3119 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) - - compartment: erm - - formula: C41H75O13P + - id: "s_3119" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C41H75O13P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail161" + - sbo: "SBO:0000247" - !!omap - - id: s_3120 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) - - compartment: erm - - formula: C43H81O13P + - id: "s_3120" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88557 - - metanetx.chemical: MNXM75665 - - sbo: SBO:0000247 + - chebi: "CHEBI:88557" + - metanetx.chemical: "MNXM75665" + - sbo: "SBO:0000247" - !!omap - - id: s_3121 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) - - compartment: erm - - formula: C43H79O13P + - id: "s_3121" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88626 - - sbo: SBO:0000247 + - chebi: "CHEBI:88626" + - sbo: "SBO:0000247" - !!omap - - id: s_3122 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) - - compartment: erm - - formula: C43H81O13P + - id: "s_3122" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:73215 - - kegg.compound: C13888 - - metanetx.chemical: MNXM75499 - - sbo: SBO:0000247 + - chebi: "CHEBI:73215" + - kegg.compound: "C13888" + - metanetx.chemical: "MNXM75499" + - sbo: "SBO:0000247" - !!omap - - id: s_3123 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) - - compartment: erm - - formula: C43H79O13P + - id: "s_3123" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88562 - - sbo: SBO:0000247 + - chebi: "CHEBI:88562" + - sbo: "SBO:0000247" - !!omap - - id: s_3124 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) - - compartment: erm - - formula: C45H85O13P + - id: "s_3124" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C45H85O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77346 - - metanetx.chemical: MNXM75671 - - sbo: SBO:0000247 + - chebi: "CHEBI:77346" + - metanetx.chemical: "MNXM75671" + - sbo: "SBO:0000247" - !!omap - - id: s_3125 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) - - compartment: erm - - formula: C45H83O13P + - id: "s_3125" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C45H83O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88612 - - sbo: SBO:0000247 + - chebi: "CHEBI:88612" + - sbo: "SBO:0000247" - !!omap - - id: s_3126 - - name: sn-2-acyl-1-lysophosphatidylinositol (16:1) - - compartment: erm - - formula: C25H47O12P + - id: "s_3126" + - name: "sn-2-acyl-1-lysophosphatidylinositol (16:1)" + - compartment: "erm" + - formula: "C25H47O12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:138108 - - sbo: SBO:0000247 + - chebi: "CHEBI:138108" + - sbo: "SBO:0000247" - !!omap - - id: s_3127 - - name: sn-2-acyl-1-lysophosphatidylinositol (18:1) - - compartment: erm - - formula: C27H51O12P + - id: "s_3127" + - name: "sn-2-acyl-1-lysophosphatidylinositol (18:1)" + - compartment: "erm" + - formula: "C27H51O12P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3128 - - name: phosphatidyl-L-serine (1-16:0, 2-16:1) - - compartment: mm - - formula: C38H72NO10P + - id: "s_3128" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C38H72NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89824 - - metanetx.chemical: MNXM78605 - - sbo: SBO:0000247 + - chebi: "CHEBI:89824" + - metanetx.chemical: "MNXM78605" + - sbo: "SBO:0000247" - !!omap - - id: s_3129 - - name: carbon dioxide - - compartment: mm - - formula: CO2 + - id: "s_3129" + - name: "carbon dioxide" + - compartment: "mm" + - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: co2 - - chebi: CHEBI:16526 - - kegg.compound: C00011 - - metanetx.chemical: MNXM13 - - sbo: SBO:0000247 + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - - id: s_3130 - - name: phosphatidylethanolamine (1-16:0, 2-16:1) - - compartment: mm - - formula: C37H72NO8P + - id: "s_3130" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C37H72NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136147 - - sbo: SBO:0000247 + - chebi: "CHEBI:136147" + - sbo: "SBO:0000247" - !!omap - - id: s_3131 - - name: phosphatidyl-L-serine (1-16:1, 2-16:1) - - compartment: mm - - formula: C38H70NO10P + - id: "s_3131" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C38H70NO10P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM78637 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM78637" + - sbo: "SBO:0000247" - !!omap - - id: s_3132 - - name: phosphatidylethanolamine (1-16:1, 2-16:1) - - compartment: mm - - formula: C37H70NO8P + - id: "s_3132" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C37H70NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pe161 - - chebi: CHEBI:138792 - - sbo: SBO:0000247 + - bigg.metabolite: "pe161" + - chebi: "CHEBI:138792" + - sbo: "SBO:0000247" - !!omap - - id: s_3133 - - name: phosphatidyl-L-serine (1-18:0, 2-16:1) - - compartment: mm - - formula: C40H76NO10P + - id: "s_3133" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90036 - - metanetx.chemical: MNXM78765 - - sbo: SBO:0000247 + - chebi: "CHEBI:90036" + - metanetx.chemical: "MNXM78765" + - sbo: "SBO:0000247" - !!omap - - id: s_3134 - - name: phosphatidylethanolamine (1-18:0, 2-16:1) - - compartment: mm - - formula: C39H76NO8P + - id: "s_3134" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136155 - - sbo: SBO:0000247 + - chebi: "CHEBI:136155" + - sbo: "SBO:0000247" - !!omap - - id: s_3135 - - name: phosphatidyl-L-serine (1-18:1, 2-16:1) - - compartment: mm - - formula: C40H74NO10P + - id: "s_3135" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75101 - - metanetx.chemical: MNXM78797 - - sbo: SBO:0000247 + - chebi: "CHEBI:75101" + - metanetx.chemical: "MNXM78797" + - sbo: "SBO:0000247" - !!omap - - id: s_3136 - - name: phosphatidylethanolamine (1-18:1, 2-16:1) - - compartment: mm - - formula: C39H74NO8P + - id: "s_3136" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:82837 - - metanetx.chemical: MNXM71684 - - sbo: SBO:0000247 + - chebi: "CHEBI:82837" + - metanetx.chemical: "MNXM71684" + - sbo: "SBO:0000247" - !!omap - - id: s_3137 - - name: phosphatidyl-L-serine (1-16:0, 2-18:1) - - compartment: mm - - formula: C40H76NO10P + - id: "s_3137" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:34086 - - kegg.compound: C13880 - - metanetx.chemical: MNXM32501 - - sbo: SBO:0000247 + - chebi: "CHEBI:34086" + - kegg.compound: "C13880" + - metanetx.chemical: "MNXM32501" + - sbo: "SBO:0000247" - !!omap - - id: s_3138 - - name: phosphatidylethanolamine (1-16:0, 2-18:1) - - compartment: mm - - formula: C39H76NO8P + - id: "s_3138" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136148 - - sbo: SBO:0000247 + - chebi: "CHEBI:136148" + - sbo: "SBO:0000247" - !!omap - - id: s_3139 - - name: phosphatidyl-L-serine (1-16:1, 2-18:1) - - compartment: mm - - formula: C40H74NO10P + - id: "s_3139" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90032 - - metanetx.chemical: MNXM78642 - - sbo: SBO:0000247 + - chebi: "CHEBI:90032" + - metanetx.chemical: "MNXM78642" + - sbo: "SBO:0000247" - !!omap - - id: s_3140 - - name: phosphatidylethanolamine (1-16:1, 2-18:1) - - compartment: mm - - formula: C39H74NO8P + - id: "s_3140" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90464 - - sbo: SBO:0000247 + - chebi: "CHEBI:90464" + - sbo: "SBO:0000247" - !!omap - - id: s_3141 - - name: phosphatidyl-L-serine (1-18:0, 2-18:1) - - compartment: mm - - formula: C42H80NO10P + - id: "s_3141" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" + - compartment: "mm" + - formula: "C42H80NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:79096 - - metanetx.chemical: MNXM32529 - - sbo: SBO:0000247 + - chebi: "CHEBI:79096" + - metanetx.chemical: "MNXM32529" + - sbo: "SBO:0000247" - !!omap - - id: s_3142 - - name: phosphatidylethanolamine (1-18:0, 2-18:1) - - compartment: mm - - formula: C41H80NO8P + - id: "s_3142" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" + - compartment: "mm" + - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136162 - - sbo: SBO:0000247 + - chebi: "CHEBI:136162" + - sbo: "SBO:0000247" - !!omap - - id: s_3143 - - name: phosphatidyl-L-serine (1-18:1, 2-18:1) - - compartment: mm - - formula: C42H78NO10P + - id: "s_3143" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" + - compartment: "mm" + - formula: "C42H78NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60568 - - metanetx.chemical: MNXM32173 - - sbo: SBO:0000247 + - chebi: "CHEBI:60568" + - metanetx.chemical: "MNXM32173" + - sbo: "SBO:0000247" - !!omap - - id: s_3144 - - name: phosphatidylethanolamine (1-18:1, 2-18:1) - - compartment: mm - - formula: C41H78NO8P + - id: "s_3144" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" + - compartment: "mm" + - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136170 - - sbo: SBO:0000247 + - chebi: "CHEBI:136170" + - sbo: "SBO:0000247" - !!omap - - id: s_3145 - - name: phosphatidyl-L-serine (1-16:0, 2-16:1) - - compartment: gm - - formula: C38H72NO10P + - id: "s_3145" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C38H72NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89824 - - metanetx.chemical: MNXM78605 - - sbo: SBO:0000247 + - chebi: "CHEBI:89824" + - metanetx.chemical: "MNXM78605" + - sbo: "SBO:0000247" - !!omap - - id: s_3146 - - name: H+ - - compartment: gm - - formula: H + - id: "s_3146" + - name: "H+" + - compartment: "gm" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_3147 - - name: carbon dioxide - - compartment: gm - - formula: CO2 + - id: "s_3147" + - name: "carbon dioxide" + - compartment: "gm" + - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: co2 - - chebi: CHEBI:16526 - - kegg.compound: C00011 - - metanetx.chemical: MNXM13 - - sbo: SBO:0000247 + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - - id: s_3148 - - name: phosphatidylethanolamine (1-16:0, 2-16:1) - - compartment: gm - - formula: C37H72NO8P + - id: "s_3148" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C37H72NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136147 - - sbo: SBO:0000247 + - chebi: "CHEBI:136147" + - sbo: "SBO:0000247" - !!omap - - id: s_3149 - - name: phosphatidyl-L-serine (1-16:1, 2-16:1) - - compartment: gm - - formula: C38H70NO10P + - id: "s_3149" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C38H70NO10P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM78637 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM78637" + - sbo: "SBO:0000247" - !!omap - - id: s_3150 - - name: phosphatidylethanolamine (1-16:1, 2-16:1) - - compartment: gm - - formula: C37H70NO8P + - id: "s_3150" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C37H70NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pe161 - - chebi: CHEBI:138792 - - sbo: SBO:0000247 + - bigg.metabolite: "pe161" + - chebi: "CHEBI:138792" + - sbo: "SBO:0000247" - !!omap - - id: s_3151 - - name: phosphatidyl-L-serine (1-18:0, 2-16:1) - - compartment: gm - - formula: C40H76NO10P + - id: "s_3151" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90036 - - metanetx.chemical: MNXM78765 - - sbo: SBO:0000247 + - chebi: "CHEBI:90036" + - metanetx.chemical: "MNXM78765" + - sbo: "SBO:0000247" - !!omap - - id: s_3152 - - name: phosphatidylethanolamine (1-18:0, 2-16:1) - - compartment: gm - - formula: C39H76NO8P + - id: "s_3152" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136155 - - sbo: SBO:0000247 + - chebi: "CHEBI:136155" + - sbo: "SBO:0000247" - !!omap - - id: s_3153 - - name: phosphatidyl-L-serine (1-18:1, 2-16:1) - - compartment: gm - - formula: C40H74NO10P + - id: "s_3153" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75101 - - metanetx.chemical: MNXM78797 - - sbo: SBO:0000247 + - chebi: "CHEBI:75101" + - metanetx.chemical: "MNXM78797" + - sbo: "SBO:0000247" - !!omap - - id: s_3154 - - name: phosphatidylethanolamine (1-18:1, 2-16:1) - - compartment: gm - - formula: C39H74NO8P + - id: "s_3154" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:82837 - - metanetx.chemical: MNXM71684 - - sbo: SBO:0000247 + - chebi: "CHEBI:82837" + - metanetx.chemical: "MNXM71684" + - sbo: "SBO:0000247" - !!omap - - id: s_3155 - - name: phosphatidyl-L-serine (1-16:0, 2-18:1) - - compartment: gm - - formula: C40H76NO10P + - id: "s_3155" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:34086 - - kegg.compound: C13880 - - metanetx.chemical: MNXM32501 - - sbo: SBO:0000247 + - chebi: "CHEBI:34086" + - kegg.compound: "C13880" + - metanetx.chemical: "MNXM32501" + - sbo: "SBO:0000247" - !!omap - - id: s_3156 - - name: phosphatidylethanolamine (1-16:0, 2-18:1) - - compartment: gm - - formula: C39H76NO8P + - id: "s_3156" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136148 - - sbo: SBO:0000247 + - chebi: "CHEBI:136148" + - sbo: "SBO:0000247" - !!omap - - id: s_3157 - - name: phosphatidyl-L-serine (1-16:1, 2-18:1) - - compartment: gm - - formula: C40H74NO10P + - id: "s_3157" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90032 - - metanetx.chemical: MNXM78642 - - sbo: SBO:0000247 + - chebi: "CHEBI:90032" + - metanetx.chemical: "MNXM78642" + - sbo: "SBO:0000247" - !!omap - - id: s_3158 - - name: phosphatidylethanolamine (1-16:1, 2-18:1) - - compartment: gm - - formula: C39H74NO8P + - id: "s_3158" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90464 - - sbo: SBO:0000247 + - chebi: "CHEBI:90464" + - sbo: "SBO:0000247" - !!omap - - id: s_3159 - - name: phosphatidyl-L-serine (1-18:0, 2-18:1) - - compartment: gm - - formula: C42H80NO10P + - id: "s_3159" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C42H80NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:79096 - - metanetx.chemical: MNXM32529 - - sbo: SBO:0000247 + - chebi: "CHEBI:79096" + - metanetx.chemical: "MNXM32529" + - sbo: "SBO:0000247" - !!omap - - id: s_3160 - - name: phosphatidylethanolamine (1-18:0, 2-18:1) - - compartment: gm - - formula: C41H80NO8P + - id: "s_3160" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136162 - - sbo: SBO:0000247 + - chebi: "CHEBI:136162" + - sbo: "SBO:0000247" - !!omap - - id: s_3161 - - name: phosphatidyl-L-serine (1-18:1, 2-18:1) - - compartment: gm - - formula: C42H78NO10P + - id: "s_3161" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C42H78NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60568 - - metanetx.chemical: MNXM32173 - - sbo: SBO:0000247 + - chebi: "CHEBI:60568" + - metanetx.chemical: "MNXM32173" + - sbo: "SBO:0000247" - !!omap - - id: s_3162 - - name: phosphatidylethanolamine (1-18:1, 2-18:1) - - compartment: gm - - formula: C41H78NO8P + - id: "s_3162" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136170 - - sbo: SBO:0000247 + - chebi: "CHEBI:136170" + - sbo: "SBO:0000247" - !!omap - - id: s_3163 - - name: phosphatidyl-L-serine (1-16:0, 2-16:1) - - compartment: vm - - formula: C38H72NO10P + - id: "s_3163" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C38H72NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89824 - - metanetx.chemical: MNXM78605 - - sbo: SBO:0000247 + - chebi: "CHEBI:89824" + - metanetx.chemical: "MNXM78605" + - sbo: "SBO:0000247" - !!omap - - id: s_3164 - - name: H+ - - compartment: vm - - formula: H + - id: "s_3164" + - name: "H+" + - compartment: "vm" + - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: h - - chebi: CHEBI:24636 - - kegg.compound: C00080 - - metanetx.chemical: MNXM1 - - sbo: SBO:0000247 + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - - id: s_3165 - - name: carbon dioxide - - compartment: vm - - formula: CO2 + - id: "s_3165" + - name: "carbon dioxide" + - compartment: "vm" + - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: co2 - - chebi: CHEBI:16526 - - kegg.compound: C00011 - - metanetx.chemical: MNXM13 - - sbo: SBO:0000247 + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - - id: s_3166 - - name: phosphatidylethanolamine (1-16:0, 2-16:1) - - compartment: vm - - formula: C37H72NO8P + - id: "s_3166" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C37H72NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136147 - - sbo: SBO:0000247 + - chebi: "CHEBI:136147" + - sbo: "SBO:0000247" - !!omap - - id: s_3167 - - name: phosphatidyl-L-serine (1-16:1, 2-16:1) - - compartment: vm - - formula: C38H70NO10P + - id: "s_3167" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C38H70NO10P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM78637 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM78637" + - sbo: "SBO:0000247" - !!omap - - id: s_3168 - - name: phosphatidylethanolamine (1-16:1, 2-16:1) - - compartment: vm - - formula: C37H70NO8P + - id: "s_3168" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C37H70NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pe161 - - chebi: CHEBI:138792 - - sbo: SBO:0000247 + - bigg.metabolite: "pe161" + - chebi: "CHEBI:138792" + - sbo: "SBO:0000247" - !!omap - - id: s_3169 - - name: phosphatidyl-L-serine (1-18:0, 2-16:1) - - compartment: vm - - formula: C40H76NO10P + - id: "s_3169" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90036 - - metanetx.chemical: MNXM78765 - - sbo: SBO:0000247 + - chebi: "CHEBI:90036" + - metanetx.chemical: "MNXM78765" + - sbo: "SBO:0000247" - !!omap - - id: s_3170 - - name: phosphatidylethanolamine (1-18:0, 2-16:1) - - compartment: vm - - formula: C39H76NO8P + - id: "s_3170" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136155 - - sbo: SBO:0000247 + - chebi: "CHEBI:136155" + - sbo: "SBO:0000247" - !!omap - - id: s_3171 - - name: phosphatidyl-L-serine (1-18:1, 2-16:1) - - compartment: vm - - formula: C40H74NO10P + - id: "s_3171" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75101 - - metanetx.chemical: MNXM78797 - - sbo: SBO:0000247 + - chebi: "CHEBI:75101" + - metanetx.chemical: "MNXM78797" + - sbo: "SBO:0000247" - !!omap - - id: s_3172 - - name: phosphatidylethanolamine (1-18:1, 2-16:1) - - compartment: vm - - formula: C39H74NO8P + - id: "s_3172" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:82837 - - metanetx.chemical: MNXM71684 - - sbo: SBO:0000247 + - chebi: "CHEBI:82837" + - metanetx.chemical: "MNXM71684" + - sbo: "SBO:0000247" - !!omap - - id: s_3173 - - name: phosphatidyl-L-serine (1-16:0, 2-18:1) - - compartment: vm - - formula: C40H76NO10P + - id: "s_3173" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:34086 - - kegg.compound: C13880 - - metanetx.chemical: MNXM32501 - - sbo: SBO:0000247 + - chebi: "CHEBI:34086" + - kegg.compound: "C13880" + - metanetx.chemical: "MNXM32501" + - sbo: "SBO:0000247" - !!omap - - id: s_3174 - - name: phosphatidylethanolamine (1-16:0, 2-18:1) - - compartment: vm - - formula: C39H76NO8P + - id: "s_3174" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136148 - - sbo: SBO:0000247 + - chebi: "CHEBI:136148" + - sbo: "SBO:0000247" - !!omap - - id: s_3175 - - name: phosphatidyl-L-serine (1-16:1, 2-18:1) - - compartment: vm - - formula: C40H74NO10P + - id: "s_3175" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90032 - - metanetx.chemical: MNXM78642 - - sbo: SBO:0000247 + - chebi: "CHEBI:90032" + - metanetx.chemical: "MNXM78642" + - sbo: "SBO:0000247" - !!omap - - id: s_3176 - - name: phosphatidylethanolamine (1-16:1, 2-18:1) - - compartment: vm - - formula: C39H74NO8P + - id: "s_3176" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90464 - - sbo: SBO:0000247 + - chebi: "CHEBI:90464" + - sbo: "SBO:0000247" - !!omap - - id: s_3177 - - name: phosphatidyl-L-serine (1-18:0, 2-18:1) - - compartment: vm - - formula: C42H80NO10P + - id: "s_3177" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C42H80NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:79096 - - metanetx.chemical: MNXM32529 - - sbo: SBO:0000247 + - chebi: "CHEBI:79096" + - metanetx.chemical: "MNXM32529" + - sbo: "SBO:0000247" - !!omap - - id: s_3178 - - name: phosphatidylethanolamine (1-18:0, 2-18:1) - - compartment: vm - - formula: C41H80NO8P + - id: "s_3178" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136162 - - sbo: SBO:0000247 + - chebi: "CHEBI:136162" + - sbo: "SBO:0000247" - !!omap - - id: s_3179 - - name: phosphatidyl-L-serine (1-18:1, 2-18:1) - - compartment: vm - - formula: C42H78NO10P + - id: "s_3179" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C42H78NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60568 - - metanetx.chemical: MNXM32173 - - sbo: SBO:0000247 + - chebi: "CHEBI:60568" + - metanetx.chemical: "MNXM32173" + - sbo: "SBO:0000247" - !!omap - - id: s_3180 - - name: phosphatidylethanolamine (1-18:1, 2-18:1) - - compartment: vm - - formula: C41H78NO8P + - id: "s_3180" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136170 - - sbo: SBO:0000247 + - chebi: "CHEBI:136170" + - sbo: "SBO:0000247" - !!omap - - id: s_3181 - - name: phosphatidylethanolamine (1-16:0, 2-16:1) - - compartment: erm - - formula: C37H72NO8P + - id: "s_3181" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C37H72NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136147 - - sbo: SBO:0000247 + - chebi: "CHEBI:136147" + - sbo: "SBO:0000247" - !!omap - - id: s_3182 - - name: S-adenosyl-L-methionine - - compartment: erm - - formula: C15H23N6O5S + - id: "s_3182" + - name: "S-adenosyl-L-methionine" + - compartment: "erm" + - formula: "C15H23N6O5S" - charge: 1 - annotation: !!omap - - bigg.metabolite: amet - - chebi: CHEBI:15414 - - kegg.compound: C00019 - - metanetx.chemical: MNXM16 - - sbo: SBO:0000247 + - bigg.metabolite: "amet" + - chebi: "CHEBI:15414" + - kegg.compound: "C00019" + - metanetx.chemical: "MNXM16" + - sbo: "SBO:0000247" - !!omap - - id: s_3183 - - name: S-adenosyl-L-homocysteine - - compartment: erm - - formula: C14H20N6O5S + - id: "s_3183" + - name: "S-adenosyl-L-homocysteine" + - compartment: "erm" + - formula: "C14H20N6O5S" - charge: 0 - annotation: !!omap - - bigg.metabolite: ahcys - - chebi: CHEBI:16680 - - kegg.compound: C00021 - - metanetx.chemical: MNXM19 - - sbo: SBO:0000247 + - bigg.metabolite: "ahcys" + - chebi: "CHEBI:16680" + - kegg.compound: "C00021" + - metanetx.chemical: "MNXM19" + - sbo: "SBO:0000247" - !!omap - - id: s_3184 - - name: phosphatidyl-N-methylethanolamine (1-16:0, 2-16:1) - - compartment: erm - - formula: C38H74NO8P + - id: "s_3184" + - name: "phosphatidyl-N-methylethanolamine (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C38H74NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3185 - - name: phosphatidylethanolamine (1-16:1, 2-16:1) - - compartment: erm - - formula: C37H70NO8P + - id: "s_3185" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C37H70NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pe161 - - chebi: CHEBI:138792 - - sbo: SBO:0000247 + - bigg.metabolite: "pe161" + - chebi: "CHEBI:138792" + - sbo: "SBO:0000247" - !!omap - - id: s_3186 - - name: phosphatidyl-N-methylethanolamine (1-16:1, 2-16:1) - - compartment: erm - - formula: C38H72NO8P + - id: "s_3186" + - name: "phosphatidyl-N-methylethanolamine (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C38H72NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3187 - - name: phosphatidylethanolamine (1-18:0, 2-16:1) - - compartment: erm - - formula: C39H76NO8P + - id: "s_3187" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136155 - - sbo: SBO:0000247 + - chebi: "CHEBI:136155" + - sbo: "SBO:0000247" - !!omap - - id: s_3188 - - name: phosphatidyl-N-methylethanolamine (1-18:0, 2-16:1) - - compartment: erm - - formula: C40H78NO8P + - id: "s_3188" + - name: "phosphatidyl-N-methylethanolamine (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C40H78NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3189 - - name: phosphatidylethanolamine (1-18:1, 2-16:1) - - compartment: erm - - formula: C39H74NO8P + - id: "s_3189" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:82837 - - metanetx.chemical: MNXM71684 - - sbo: SBO:0000247 + - chebi: "CHEBI:82837" + - metanetx.chemical: "MNXM71684" + - sbo: "SBO:0000247" - !!omap - - id: s_3190 - - name: phosphatidyl-N-methylethanolamine (1-18:1, 2-16:1) - - compartment: erm - - formula: C40H76NO8P + - id: "s_3190" + - name: "phosphatidyl-N-methylethanolamine (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C40H76NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3191 - - name: phosphatidylethanolamine (1-16:0, 2-18:1) - - compartment: erm - - formula: C39H76NO8P + - id: "s_3191" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136148 - - sbo: SBO:0000247 + - chebi: "CHEBI:136148" + - sbo: "SBO:0000247" - !!omap - - id: s_3192 - - name: phosphatidyl-N-methylethanolamine (1-16:0, 2-18:1) - - compartment: erm - - formula: C40H78NO8P + - id: "s_3192" + - name: "phosphatidyl-N-methylethanolamine (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C40H78NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3193 - - name: phosphatidylethanolamine (1-16:1, 2-18:1) - - compartment: erm - - formula: C39H74NO8P + - id: "s_3193" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90464 - - sbo: SBO:0000247 + - chebi: "CHEBI:90464" + - sbo: "SBO:0000247" - !!omap - - id: s_3194 - - name: phosphatidyl-N-methylethanolamine (1-16:1, 2-18:1) - - compartment: erm - - formula: C40H76NO8P + - id: "s_3194" + - name: "phosphatidyl-N-methylethanolamine (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C40H76NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3195 - - name: phosphatidylethanolamine (1-18:0, 2-18:1) - - compartment: erm - - formula: C41H80NO8P + - id: "s_3195" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136162 - - sbo: SBO:0000247 + - chebi: "CHEBI:136162" + - sbo: "SBO:0000247" - !!omap - - id: s_3196 - - name: phosphatidyl-N-methylethanolamine (1-18:0, 2-18:1) - - compartment: erm - - formula: C42H82NO8P + - id: "s_3196" + - name: "phosphatidyl-N-methylethanolamine (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3197 - - name: phosphatidylethanolamine (1-18:1, 2-18:1) - - compartment: erm - - formula: C41H78NO8P + - id: "s_3197" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136170 - - sbo: SBO:0000247 + - chebi: "CHEBI:136170" + - sbo: "SBO:0000247" - !!omap - - id: s_3198 - - name: phosphatidyl-N-methylethanolamine (1-18:1, 2-18:1) - - compartment: erm - - formula: C42H80NO8P + - id: "s_3198" + - name: "phosphatidyl-N-methylethanolamine (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:85962 - - metanetx.chemical: MNXM72986 - - sbo: SBO:0000247 + - chebi: "CHEBI:85962" + - metanetx.chemical: "MNXM72986" + - sbo: "SBO:0000247" - !!omap - - id: s_3199 - - name: phosphatidyl-N,N-dimethylethanolamine (1-16:0, 2-16:1) - - compartment: erm - - formula: C39H76NO8P + - id: "s_3199" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3200 - - name: phosphatidyl-N,N-dimethylethanolamine (1-16:1, 2-16:1) - - compartment: erm - - formula: C39H74NO8P + - id: "s_3200" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3201 - - name: phosphatidyl-N,N-dimethylethanolamine (1-18:0, 2-16:1) - - compartment: erm - - formula: C41H80NO8P + - id: "s_3201" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3202 - - name: phosphatidyl-N,N-dimethylethanolamine (1-18:1, 2-16:1) - - compartment: erm - - formula: C41H78NO8P + - id: "s_3202" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3203 - - name: phosphatidyl-N,N-dimethylethanolamine (1-16:0, 2-18:1) - - compartment: erm - - formula: C41H80NO8P + - id: "s_3203" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3204 - - name: phosphatidyl-N,N-dimethylethanolamine (1-16:1, 2-18:1) - - compartment: erm - - formula: C41H78NO8P + - id: "s_3204" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3205 - - name: phosphatidyl-N,N-dimethylethanolamine (1-18:0, 2-18:1) - - compartment: erm - - formula: C43H84NO8P + - id: "s_3205" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C43H84NO8P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3206 - - name: phosphatidyl-N,N-dimethylethanolamine (1-18:1, 2-18:1) - - compartment: erm - - formula: C43H82NO8P + - id: "s_3206" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C43H82NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:85963 - - metanetx.chemical: MNXM72998 - - sbo: SBO:0000247 + - chebi: "CHEBI:85963" + - metanetx.chemical: "MNXM72998" + - sbo: "SBO:0000247" - !!omap - - id: s_3207 - - name: phosphatidylcholine (1-16:0, 2-16:1) - - compartment: erm - - formula: C40H78NO8P + - id: "s_3207" + - name: "phosphatidylcholine (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C40H78NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134592 - - sbo: SBO:0000247 + - chebi: "CHEBI:134592" + - sbo: "SBO:0000247" - !!omap - - id: s_3208 - - name: phosphatidylcholine (1-16:1, 2-16:1) - - compartment: erm - - formula: C40H76NO8P + - id: "s_3208" + - name: "phosphatidylcholine (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C40H76NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pc161 - - chebi: CHEBI:83717 - - metanetx.chemical: MNXM69377 - - sbo: SBO:0000247 + - bigg.metabolite: "pc161" + - chebi: "CHEBI:83717" + - metanetx.chemical: "MNXM69377" + - sbo: "SBO:0000247" - !!omap - - id: s_3209 - - name: phosphatidylcholine (1-18:0, 2-16:1) - - compartment: erm - - formula: C42H82NO8P + - id: "s_3209" + - name: "phosphatidylcholine (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:86097 - - metanetx.chemical: MNXM69528 - - sbo: SBO:0000247 + - chebi: "CHEBI:86097" + - metanetx.chemical: "MNXM69528" + - sbo: "SBO:0000247" - !!omap - - id: s_3210 - - name: phosphatidylcholine (1-18:1, 2-16:1) - - compartment: erm - - formula: C42H80NO8P + - id: "s_3210" + - name: "phosphatidylcholine (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:86100 - - metanetx.chemical: MNXM69658 - - sbo: SBO:0000247 + - chebi: "CHEBI:86100" + - metanetx.chemical: "MNXM69658" + - sbo: "SBO:0000247" - !!omap - - id: s_3211 - - name: phosphatidylcholine (1-16:0, 2-18:1) - - compartment: erm - - formula: C42H82NO8P + - id: "s_3211" + - name: "phosphatidylcholine (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134594 - - sbo: SBO:0000247 + - chebi: "CHEBI:134594" + - sbo: "SBO:0000247" - !!omap - - id: s_3212 - - name: phosphatidylcholine (1-16:1, 2-18:1) - - compartment: erm - - formula: C42H80NO8P + - id: "s_3212" + - name: "phosphatidylcholine (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:84811 - - metanetx.chemical: MNXM69383 - - sbo: SBO:0000247 + - chebi: "CHEBI:84811" + - metanetx.chemical: "MNXM69383" + - sbo: "SBO:0000247" - !!omap - - id: s_3213 - - name: phosphatidylcholine (1-18:0, 2-18:1) - - compartment: erm - - formula: C44H86NO8P + - id: "s_3213" + - name: "phosphatidylcholine (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C44H86NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75034 - - metanetx.chemical: MNXM32526 - - sbo: SBO:0000247 + - chebi: "CHEBI:75034" + - metanetx.chemical: "MNXM32526" + - sbo: "SBO:0000247" - !!omap - - id: s_3214 - - name: phosphatidylcholine (1-18:1, 2-18:1) - - compartment: erm - - formula: C44H84NO8P + - id: "s_3214" + - name: "phosphatidylcholine (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C44H84NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:74669 - - metanetx.chemical: MNXM8549 - - sbo: SBO:0000247 + - chebi: "CHEBI:74669" + - metanetx.chemical: "MNXM8549" + - sbo: "SBO:0000247" - !!omap - - id: s_3215 - - name: CDP - - compartment: erm - - formula: C9H12N3O11P2 + - id: "s_3215" + - name: "CDP" + - compartment: "erm" + - formula: "C9H12N3O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: cdp - - chebi: CHEBI:58069 - - kegg.compound: C00112 - - metanetx.chemical: MNXM220 - - sbo: SBO:0000247 + - bigg.metabolite: "cdp" + - chebi: "CHEBI:58069" + - kegg.compound: "C00112" + - metanetx.chemical: "MNXM220" + - sbo: "SBO:0000247" - !!omap - - id: s_3216 - - name: CDP-ethanolamine - - compartment: erm - - formula: C11H19N4O11P2 + - id: "s_3216" + - name: "CDP-ethanolamine" + - compartment: "erm" + - formula: "C11H19N4O11P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: cdpea - - chebi: CHEBI:57876 - - kegg.compound: C00570 - - metanetx.chemical: MNXM449 - - sbo: SBO:0000247 + - bigg.metabolite: "cdpea" + - chebi: "CHEBI:57876" + - kegg.compound: "C00570" + - metanetx.chemical: "MNXM449" + - sbo: "SBO:0000247" - !!omap - - id: s_3217 - - name: CDP-choline - - compartment: erm - - formula: C14H25N4O11P2 + - id: "s_3217" + - name: "CDP-choline" + - compartment: "erm" + - formula: "C14H25N4O11P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: cdpchol - - chebi: CHEBI:16436 - - kegg.compound: C00307 - - metanetx.chemical: MNXM283 - - sbo: SBO:0000247 + - bigg.metabolite: "cdpchol" + - chebi: "CHEBI:16436" + - kegg.compound: "C00307" + - metanetx.chemical: "MNXM283" + - sbo: "SBO:0000247" - !!omap - - id: s_3218 - - name: glycerol 3-phosphate - - compartment: mm - - formula: C3H7O6P + - id: "s_3218" + - name: "glycerol 3-phosphate" + - compartment: "mm" + - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: glyc3p - - chebi: CHEBI:57597 - - kegg.compound: C00093 - - metanetx.chemical: MNXM66 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc3p" + - chebi: "CHEBI:57597" + - kegg.compound: "C00093" + - metanetx.chemical: "MNXM66" + - sbo: "SBO:0000247" - !!omap - - id: s_3219 - - name: CMP - - compartment: mm - - formula: C9H12N3O8P + - id: "s_3219" + - name: "CMP" + - compartment: "mm" + - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: cmp - - chebi: CHEBI:60377 - - kegg.compound: C00055 - - metanetx.chemical: MNXM31 - - sbo: SBO:0000247 + - bigg.metabolite: "cmp" + - chebi: "CHEBI:60377" + - kegg.compound: "C00055" + - metanetx.chemical: "MNXM31" + - sbo: "SBO:0000247" - !!omap - - id: s_3220 - - name: 3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:0, 2-16:1) - - compartment: mm - - formula: C38H74O13P2 + - id: "s_3220" + - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C38H74O13P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3221 - - name: 3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:1, 2-16:1) - - compartment: mm - - formula: C38H72O13P2 + - id: "s_3221" + - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C38H72O13P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3222 - - name: 3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-18:0, 2-16:1) - - compartment: mm - - formula: C40H78O13P2 + - id: "s_3222" + - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C40H78O13P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3223 - - name: 3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-18:1, 2-16:1) - - compartment: mm - - formula: C40H76O13P2 + - id: "s_3223" + - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C40H76O13P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3224 - - name: 3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:0, 2-18:1) - - compartment: mm - - formula: C40H78O13P2 + - id: "s_3224" + - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C40H78O13P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM725269 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM725269" + - sbo: "SBO:0000247" - !!omap - - id: s_3225 - - name: 3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:1, 2-18:1) - - compartment: mm - - formula: C40H76O13P2 + - id: "s_3225" + - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C40H76O13P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3226 - - name: H2O - - compartment: mm - - formula: H2O + - id: "s_3226" + - name: "H2O" + - compartment: "mm" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_3227 - - name: phosphatidylglycerol (1-16:0, 2-16:1) - - compartment: mm - - formula: C38H73O10P + - id: "s_3227" + - name: "phosphatidylglycerol (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C38H73O10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136224 - - sbo: SBO:0000247 + - chebi: "CHEBI:136224" + - sbo: "SBO:0000247" - !!omap - - id: s_3228 - - name: phosphate - - compartment: mm - - formula: HO4P + - id: "s_3228" + - name: "phosphate" + - compartment: "mm" + - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pi - - chebi: CHEBI:43474 - - kegg.compound: C00009 - - metanetx.chemical: MNXM9 - - sbo: SBO:0000247 + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - - id: s_3229 - - name: phosphatidylglycerol (1-16:1, 2-16:1) - - compartment: mm - - formula: C38H71O10P + - id: "s_3229" + - name: "phosphatidylglycerol (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C38H71O10P" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3230 - - name: phosphatidylglycerol (1-18:0, 2-16:1) - - compartment: mm - - formula: C40H77O10P + - id: "s_3230" + - name: "phosphatidylglycerol (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C40H77O10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89270 - - sbo: SBO:0000247 + - chebi: "CHEBI:89270" + - sbo: "SBO:0000247" - !!omap - - id: s_3231 - - name: phosphatidylglycerol (1-18:1, 2-16:1) - - compartment: mm - - formula: C40H75O10P + - id: "s_3231" + - name: "phosphatidylglycerol (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C40H75O10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89093 - - sbo: SBO:0000247 + - chebi: "CHEBI:89093" + - sbo: "SBO:0000247" - !!omap - - id: s_3232 - - name: phosphatidylglycerol (1-16:0, 2-18:1) - - compartment: mm - - formula: C40H77O10P + - id: "s_3232" + - name: "phosphatidylglycerol (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C40H77O10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:34080 - - kegg.compound: C13833 - - sbo: SBO:0000247 + - chebi: "CHEBI:34080" + - kegg.compound: "C13833" + - sbo: "SBO:0000247" - !!omap - - id: s_3233 - - name: phosphatidylglycerol (1-16:1, 2-18:1) - - compartment: mm - - formula: C40H75O10P + - id: "s_3233" + - name: "phosphatidylglycerol (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C40H75O10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89398 - - sbo: SBO:0000247 + - chebi: "CHEBI:89398" + - sbo: "SBO:0000247" - !!omap - - id: s_3234 - - name: cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-16:1) - - compartment: mm - - formula: C73H138O17P2 + - id: "s_3234" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C73H138O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM120766 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM120766" + - sbo: "SBO:0000247" - !!omap - - id: s_3235 - - name: cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-16:1) - - compartment: mm - - formula: C73H136O17P2 + - id: "s_3235" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C73H136O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM120775 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM120775" + - sbo: "SBO:0000247" - !!omap - - id: s_3236 - - name: cardiolipin (1-16:0, 2-16:1, 3-18:0, 4-16:1) - - compartment: mm - - formula: C75H142O17P2 + - id: "s_3236" + - name: "cardiolipin (1-16:0, 2-16:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C75H142O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM120785 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM120785" + - sbo: "SBO:0000247" - !!omap - - id: s_3237 - - name: cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-16:1) - - compartment: mm - - formula: C75H140O17P2 + - id: "s_3237" + - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM120792 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM120792" + - sbo: "SBO:0000247" - !!omap - - id: s_3238 - - name: cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-18:1) - - compartment: mm - - formula: C75H142O17P2 + - id: "s_3238" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C75H142O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM120768 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM120768" + - sbo: "SBO:0000247" - !!omap - - id: s_3239 - - name: cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-18:1) - - compartment: mm - - formula: C75H140O17P2 + - id: "s_3239" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM120778 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM120778" + - sbo: "SBO:0000247" - !!omap - - id: s_3240 - - name: cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-16:1) - - compartment: mm - - formula: C73H136O17P2 + - id: "s_3240" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C73H136O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3241 - - name: cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-16:1) - - compartment: mm - - formula: C73H134O17P2 + - id: "s_3241" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C73H134O17P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: clpn161 - - chebi: CHEBI:104873 - - metanetx.chemical: MNXM4501 - - sbo: SBO:0000247 + - bigg.metabolite: "clpn161" + - chebi: "CHEBI:104873" + - metanetx.chemical: "MNXM4501" + - sbo: "SBO:0000247" - !!omap - - id: s_3242 - - name: cardiolipin (1-16:1, 2-16:1, 3-18:0, 4-16:1) - - compartment: mm - - formula: C75H140O17P2 + - id: "s_3242" + - name: "cardiolipin (1-16:1, 2-16:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3243 - - name: cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-16:1) - - compartment: mm - - formula: C75H138O17P2 + - id: "s_3243" + - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C75H138O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM121254 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM121254" + - sbo: "SBO:0000247" - !!omap - - id: s_3244 - - name: cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-18:1) - - compartment: mm - - formula: C75H140O17P2 + - id: "s_3244" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3245 - - name: cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-18:1) - - compartment: mm - - formula: C75H138O17P2 + - id: "s_3245" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C75H138O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM121237 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM121237" + - sbo: "SBO:0000247" - !!omap - - id: s_3246 - - name: cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-16:1) - - compartment: mm - - formula: C75H142O17P2 + - id: "s_3246" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C75H142O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3247 - - name: cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-16:1) - - compartment: mm - - formula: C75H140O17P2 + - id: "s_3247" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3248 - - name: cardiolipin (1-18:0, 2-16:1, 3-18:0, 4-16:1) - - compartment: mm - - formula: C77H146O17P2 + - id: "s_3248" + - name: "cardiolipin (1-18:0, 2-16:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C77H146O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3249 - - name: cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-16:1) - - compartment: mm - - formula: C77H144O17P2 + - id: "s_3249" + - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3250 - - name: cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-18:1) - - compartment: mm - - formula: C77H146O17P2 + - id: "s_3250" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C77H146O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3251 - - name: cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-18:1) - - compartment: mm - - formula: C77H144O17P2 + - id: "s_3251" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3252 - - name: cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-16:1) - - compartment: mm - - formula: C75H140O17P2 + - id: "s_3252" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3253 - - name: cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-16:1) - - compartment: mm - - formula: C75H138O17P2 + - id: "s_3253" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C75H138O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3254 - - name: cardiolipin (1-18:1, 2-16:1, 3-18:0, 4-16:1) - - compartment: mm - - formula: C77H144O17P2 + - id: "s_3254" + - name: "cardiolipin (1-18:1, 2-16:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3255 - - name: cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-16:1) - - compartment: mm - - formula: C77H142O17P2 + - id: "s_3255" + - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C77H142O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3256 - - name: cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-18:1) - - compartment: mm - - formula: C77H144O17P2 + - id: "s_3256" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3257 - - name: cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-18:1) - - compartment: mm - - formula: C77H142O17P2 + - id: "s_3257" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C77H142O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3258 - - name: cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-16:1) - - compartment: mm - - formula: C75H142O17P2 + - id: "s_3258" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C75H142O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3259 - - name: cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-16:1) - - compartment: mm - - formula: C75H140O17P2 + - id: "s_3259" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM120922 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM120922" + - sbo: "SBO:0000247" - !!omap - - id: s_3260 - - name: cardiolipin (1-16:0, 2-18:1, 3-18:0, 4-16:1) - - compartment: mm - - formula: C77H146O17P2 + - id: "s_3260" + - name: "cardiolipin (1-16:0, 2-18:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C77H146O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3261 - - name: cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-16:1) - - compartment: mm - - formula: C77H144O17P2 + - id: "s_3261" + - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM120940 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM120940" + - sbo: "SBO:0000247" - !!omap - - id: s_3262 - - name: cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-18:1) - - compartment: mm - - formula: C77H146O17P2 + - id: "s_3262" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C77H146O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3263 - - name: cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-18:1) - - compartment: mm - - formula: C77H144O17P2 + - id: "s_3263" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM120924 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM120924" + - sbo: "SBO:0000247" - !!omap - - id: s_3264 - - name: cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-16:1) - - compartment: mm - - formula: C75H140O17P2 + - id: "s_3264" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3265 - - name: cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-16:1) - - compartment: mm - - formula: C75H138O17P2 + - id: "s_3265" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C75H138O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3266 - - name: cardiolipin (1-16:1, 2-18:1, 3-18:0, 4-16:1) - - compartment: mm - - formula: C77H144O17P2 + - id: "s_3266" + - name: "cardiolipin (1-16:1, 2-18:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3267 - - name: cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-16:1) - - compartment: mm - - formula: C77H142O17P2 + - id: "s_3267" + - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C77H142O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3268 - - name: cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-18:1) - - compartment: mm - - formula: C77H144O17P2 + - id: "s_3268" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3269 - - name: cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-18:1) - - compartment: mm - - formula: C77H142O17P2 + - id: "s_3269" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C77H142O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3270 - - name: monolysocardiolipin (2-16:1, 3-16:0, 4-16:1) - - compartment: mm - - formula: C57H108O16P2 + - id: "s_3270" + - name: "monolysocardiolipin (2-16:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C57H108O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3271 - - name: palmitate - - compartment: mm - - formula: C16H31O2 + - id: "s_3271" + - name: "palmitate" + - compartment: "mm" + - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdca - - chebi: CHEBI:7896 - - kegg.compound: C00249 - - metanetx.chemical: MNXM108 - - sbo: SBO:0000247 + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - - id: s_3272 - - name: monolysocardiolipin (2-16:1, 3-16:1, 4-16:1) - - compartment: mm - - formula: C57H106O16P2 + - id: "s_3272" + - name: "monolysocardiolipin (2-16:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C57H106O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3273 - - name: monolysocardiolipin (2-16:1, 3-18:0, 4-16:1) - - compartment: mm - - formula: C59H112O16P2 + - id: "s_3273" + - name: "monolysocardiolipin (2-16:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C59H112O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3274 - - name: monolysocardiolipin (2-16:1, 3-18:1, 4-16:1) - - compartment: mm - - formula: C59H110O16P2 + - id: "s_3274" + - name: "monolysocardiolipin (2-16:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C59H110O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3275 - - name: monolysocardiolipin (2-16:1, 3-16:0, 4-18:1) - - compartment: mm - - formula: C59H112O16P2 + - id: "s_3275" + - name: "monolysocardiolipin (2-16:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C59H112O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3276 - - name: monolysocardiolipin (2-16:1, 3-16:1, 4-18:1) - - compartment: mm - - formula: C59H110O16P2 + - id: "s_3276" + - name: "monolysocardiolipin (2-16:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C59H110O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3277 - - name: stearate - - compartment: mm - - formula: C18H35O2 + - id: "s_3277" + - name: "stearate" + - compartment: "mm" + - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdca - - chebi: CHEBI:25629 - - kegg.compound: C01530 - - metanetx.chemical: MNXM236 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - - id: s_3278 - - name: monolysocardiolipin (2-18:1, 3-16:0, 4-16:1) - - compartment: mm - - formula: C59H112O16P2 + - id: "s_3278" + - name: "monolysocardiolipin (2-18:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C59H112O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3279 - - name: monolysocardiolipin (2-18:1, 3-16:1, 4-16:1) - - compartment: mm - - formula: C59H110O16P2 + - id: "s_3279" + - name: "monolysocardiolipin (2-18:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C59H110O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3280 - - name: monolysocardiolipin (2-18:1, 3-18:0, 4-16:1) - - compartment: mm - - formula: C61H116O16P2 + - id: "s_3280" + - name: "monolysocardiolipin (2-18:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C61H116O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3281 - - name: monolysocardiolipin (2-18:1, 3-18:1, 4-16:1) - - compartment: mm - - formula: C61H114O16P2 + - id: "s_3281" + - name: "monolysocardiolipin (2-18:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C61H114O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3282 - - name: monolysocardiolipin (2-18:1, 3-16:0, 4-18:1) - - compartment: mm - - formula: C61H116O16P2 + - id: "s_3282" + - name: "monolysocardiolipin (2-18:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C61H116O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3283 - - name: monolysocardiolipin (2-18:1, 3-16:1, 4-18:1) - - compartment: mm - - formula: C61H114O16P2 + - id: "s_3283" + - name: "monolysocardiolipin (2-18:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C61H114O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3284 - - name: monolysocardiolipin (1-16:0, 2-16:1, 4-16:1) - - compartment: mm - - formula: C57H108O16P2 + - id: "s_3284" + - name: "monolysocardiolipin (1-16:0, 2-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C57H108O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3285 - - name: monolysocardiolipin (1-16:0, 2-16:1, 4-18:1) - - compartment: mm - - formula: C59H112O16P2 + - id: "s_3285" + - name: "monolysocardiolipin (1-16:0, 2-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C59H112O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3286 - - name: monolysocardiolipin (1-16:1, 2-16:1, 4-16:1) - - compartment: mm - - formula: C57H106O16P2 + - id: "s_3286" + - name: "monolysocardiolipin (1-16:1, 2-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C57H106O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3287 - - name: monolysocardiolipin (1-16:1, 2-16:1, 4-18:1) - - compartment: mm - - formula: C59H110O16P2 + - id: "s_3287" + - name: "monolysocardiolipin (1-16:1, 2-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C59H110O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3288 - - name: monolysocardiolipin (1-18:0, 2-16:1, 4-16:1) - - compartment: mm - - formula: C59H112O16P2 + - id: "s_3288" + - name: "monolysocardiolipin (1-18:0, 2-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C59H112O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3289 - - name: monolysocardiolipin (1-18:0, 2-16:1, 4-18:1) - - compartment: mm - - formula: C61H116O16P2 + - id: "s_3289" + - name: "monolysocardiolipin (1-18:0, 2-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C61H116O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3290 - - name: monolysocardiolipin (1-18:1, 2-16:1, 4-16:1) - - compartment: mm - - formula: C59H110O16P2 + - id: "s_3290" + - name: "monolysocardiolipin (1-18:1, 2-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C59H110O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3291 - - name: monolysocardiolipin (1-18:1, 2-16:1, 4-18:1) - - compartment: mm - - formula: C61H114O16P2 + - id: "s_3291" + - name: "monolysocardiolipin (1-18:1, 2-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C61H114O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3292 - - name: monolysocardiolipin (1-16:0, 2-18:1, 4-16:1) - - compartment: mm - - formula: C59H112O16P2 + - id: "s_3292" + - name: "monolysocardiolipin (1-16:0, 2-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C59H112O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3293 - - name: monolysocardiolipin (1-16:0, 2-18:1, 4-18:1) - - compartment: mm - - formula: C61H116O16P2 + - id: "s_3293" + - name: "monolysocardiolipin (1-16:0, 2-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C61H116O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3294 - - name: monolysocardiolipin (1-16:1, 2-18:1, 4-16:1) - - compartment: mm - - formula: C59H110O16P2 + - id: "s_3294" + - name: "monolysocardiolipin (1-16:1, 2-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C59H110O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3295 - - name: monolysocardiolipin (1-16:1, 2-18:1, 4-18:1) - - compartment: mm - - formula: C61H114O16P2 + - id: "s_3295" + - name: "monolysocardiolipin (1-16:1, 2-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C61H114O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3296 - - name: phosphatidylcholine (1-16:0, 2-16:1) - - compartment: mm - - formula: C40H78NO8P + - id: "s_3296" + - name: "phosphatidylcholine (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C40H78NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134592 - - sbo: SBO:0000247 + - chebi: "CHEBI:134592" + - sbo: "SBO:0000247" - !!omap - - id: s_3297 - - name: 1-acylglycerophosphocholine (16:0) - - compartment: mm - - formula: C24H50NO7P + - id: "s_3297" + - name: "1-acylglycerophosphocholine (16:0)" + - compartment: "mm" + - formula: "C24H50NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc160 - - chebi: CHEBI:72998 - - kegg.compound: C04102 - - metanetx.chemical: MNXM32510 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc160" + - chebi: "CHEBI:72998" + - kegg.compound: "C04102" + - metanetx.chemical: "MNXM32510" + - sbo: "SBO:0000247" - !!omap - - id: s_3298 - - name: phosphatidylcholine (1-16:1, 2-16:1) - - compartment: mm - - formula: C40H76NO8P + - id: "s_3298" + - name: "phosphatidylcholine (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C40H76NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pc161 - - chebi: CHEBI:83717 - - metanetx.chemical: MNXM69377 - - sbo: SBO:0000247 + - bigg.metabolite: "pc161" + - chebi: "CHEBI:83717" + - metanetx.chemical: "MNXM69377" + - sbo: "SBO:0000247" - !!omap - - id: s_3299 - - name: 1-acylglycerophosphocholine (16:1) - - compartment: mm - - formula: C24H48NO7P + - id: "s_3299" + - name: "1-acylglycerophosphocholine (16:1)" + - compartment: "mm" + - formula: "C24H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc161 - - chebi: CHEBI:73851 - - metanetx.chemical: MNXM32519 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc161" + - chebi: "CHEBI:73851" + - metanetx.chemical: "MNXM32519" + - sbo: "SBO:0000247" - !!omap - - id: s_3300 - - name: phosphatidylcholine (1-18:0, 2-16:1) - - compartment: mm - - formula: C42H82NO8P + - id: "s_3300" + - name: "phosphatidylcholine (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:86097 - - metanetx.chemical: MNXM69528 - - sbo: SBO:0000247 + - chebi: "CHEBI:86097" + - metanetx.chemical: "MNXM69528" + - sbo: "SBO:0000247" - !!omap - - id: s_3301 - - name: 1-acylglycerophosphocholine (18:0) - - compartment: mm - - formula: C26H54NO7P + - id: "s_3301" + - name: "1-acylglycerophosphocholine (18:0)" + - compartment: "mm" + - formula: "C26H54NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc180 - - chebi: CHEBI:73858 - - metanetx.chemical: MNXM32545 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc180" + - chebi: "CHEBI:73858" + - metanetx.chemical: "MNXM32545" + - sbo: "SBO:0000247" - !!omap - - id: s_3302 - - name: phosphatidylcholine (1-18:1, 2-16:1) - - compartment: mm - - formula: C42H80NO8P + - id: "s_3302" + - name: "phosphatidylcholine (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:86100 - - metanetx.chemical: MNXM69658 - - sbo: SBO:0000247 + - chebi: "CHEBI:86100" + - metanetx.chemical: "MNXM69658" + - sbo: "SBO:0000247" - !!omap - - id: s_3303 - - name: 1-acylglycerophosphocholine (18:1) - - compartment: mm - - formula: C26H52NO7P + - id: "s_3303" + - name: "1-acylglycerophosphocholine (18:1)" + - compartment: "mm" + - formula: "C26H52NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc181 - - chebi: CHEBI:28610 - - kegg.compound: C03916 - - metanetx.chemical: MNXM13872 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc181" + - chebi: "CHEBI:28610" + - kegg.compound: "C03916" + - metanetx.chemical: "MNXM13872" + - sbo: "SBO:0000247" - !!omap - - id: s_3304 - - name: phosphatidylcholine (1-16:0, 2-18:1) - - compartment: mm - - formula: C42H82NO8P + - id: "s_3304" + - name: "phosphatidylcholine (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134594 - - sbo: SBO:0000247 + - chebi: "CHEBI:134594" + - sbo: "SBO:0000247" - !!omap - - id: s_3305 - - name: phosphatidylcholine (1-16:1, 2-18:1) - - compartment: mm - - formula: C42H80NO8P + - id: "s_3305" + - name: "phosphatidylcholine (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:84811 - - metanetx.chemical: MNXM69383 - - sbo: SBO:0000247 + - chebi: "CHEBI:84811" + - metanetx.chemical: "MNXM69383" + - sbo: "SBO:0000247" - !!omap - - id: s_3306 - - name: phosphatidylcholine (1-18:0, 2-18:1) - - compartment: mm - - formula: C44H86NO8P + - id: "s_3306" + - name: "phosphatidylcholine (1-18:0, 2-18:1)" + - compartment: "mm" + - formula: "C44H86NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75034 - - metanetx.chemical: MNXM32526 - - sbo: SBO:0000247 + - chebi: "CHEBI:75034" + - metanetx.chemical: "MNXM32526" + - sbo: "SBO:0000247" - !!omap - - id: s_3307 - - name: phosphatidylcholine (1-18:1, 2-18:1) - - compartment: mm - - formula: C44H84NO8P + - id: "s_3307" + - name: "phosphatidylcholine (1-18:1, 2-18:1)" + - compartment: "mm" + - formula: "C44H84NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:74669 - - metanetx.chemical: MNXM8549 - - sbo: SBO:0000247 + - chebi: "CHEBI:74669" + - metanetx.chemical: "MNXM8549" + - sbo: "SBO:0000247" - !!omap - - id: s_3308 - - name: cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-16:1) - - compartment: mm - - formula: C77H144O17P2 + - id: "s_3308" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3309 - - name: cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-16:1) - - compartment: mm - - formula: C77H142O17P2 + - id: "s_3309" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C77H142O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3310 - - name: cardiolipin (1-18:1, 2-18:1, 3-18:0, 4-16:1) - - compartment: mm - - formula: C79H148O17P2 + - id: "s_3310" + - name: "cardiolipin (1-18:1, 2-18:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C79H148O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3311 - - name: cardiolipin (1-18:1, 2-18:1, 3-18:1, 4-16:1) - - compartment: mm - - formula: C79H146O17P2 + - id: "s_3311" + - name: "cardiolipin (1-18:1, 2-18:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C79H146O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3312 - - name: cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-18:1) - - compartment: mm - - formula: C79H148O17P2 + - id: "s_3312" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C79H148O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3313 - - name: cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-18:1) - - compartment: mm - - formula: C79H146O17P2 + - id: "s_3313" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C79H146O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3314 - - name: cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-18:1) - - compartment: mm - - formula: C77H144O17P2 + - id: "s_3314" + - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3315 - - name: cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-18:1) - - compartment: mm - - formula: C77H142O17P2 + - id: "s_3315" + - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C77H142O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3316 - - name: cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-18:1) - - compartment: mm - - formula: C79H148O17P2 + - id: "s_3316" + - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C79H148O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3317 - - name: cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-18:1) - - compartment: mm - - formula: C79H146O17P2 + - id: "s_3317" + - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C79H146O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3318 - - name: cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-18:1) - - compartment: mm - - formula: C79H148O17P2 + - id: "s_3318" + - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C79H148O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3319 - - name: cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-18:1) - - compartment: mm - - formula: C79H146O17P2 + - id: "s_3319" + - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C79H146O17P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3320 - - name: palmitoleoyl-CoA(4-) - - compartment: mm - - formula: C37H60N7O17P3S + - id: "s_3320" + - name: "palmitoleoyl-CoA(4-)" + - compartment: "mm" + - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: hdcoa - - chebi: CHEBI:61540 - - kegg.compound: C21072 - - metanetx.chemical: MNXM781 - - sbo: SBO:0000247 + - bigg.metabolite: "hdcoa" + - chebi: "CHEBI:61540" + - kegg.compound: "C21072" + - metanetx.chemical: "MNXM781" + - sbo: "SBO:0000247" - !!omap - - id: s_3321 - - name: coenzyme A - - compartment: mm - - formula: C21H32N7O16P3S + - id: "s_3321" + - name: "coenzyme A" + - compartment: "mm" + - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: coa - - chebi: CHEBI:57287 - - kegg.compound: C00010 - - metanetx.chemical: MNXM12 - - sbo: SBO:0000247 + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - - id: s_3322 - - name: oleoyl-CoA - - compartment: mm - - formula: C39H64N7O17P3S + - id: "s_3322" + - name: "oleoyl-CoA" + - compartment: "mm" + - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ocdce9coa - - chebi: CHEBI:57387 - - kegg.compound: C00510 - - metanetx.chemical: MNXM686 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdce9coa" + - chebi: "CHEBI:57387" + - kegg.compound: "C00510" + - metanetx.chemical: "MNXM686" + - sbo: "SBO:0000247" - !!omap - - id: s_3323 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) - - compartment: ce - - formula: C41H77O13P + - id: "s_3323" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C41H77O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88396 - - metanetx.chemical: MNXM75492 - - sbo: SBO:0000247 + - chebi: "CHEBI:88396" + - metanetx.chemical: "MNXM75492" + - sbo: "SBO:0000247" - !!omap - - id: s_3324 - - name: ADP - - compartment: ce - - formula: C10H12N5O10P2 + - id: "s_3324" + - name: "ADP" + - compartment: "ce" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: adp - - chebi: CHEBI:456216 - - kegg.compound: C00008 - - metanetx.chemical: MNXM7 - - sbo: SBO:0000247 + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - - id: s_3325 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) - - compartment: ce - - formula: C41H78O16P2 + - id: "s_3325" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3326 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) - - compartment: ce - - formula: C41H75O13P + - id: "s_3326" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C41H75O13P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail161" + - sbo: "SBO:0000247" - !!omap - - id: s_3327 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) - - compartment: ce - - formula: C41H76O16P2 + - id: "s_3327" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail4p161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail4p161" + - sbo: "SBO:0000247" - !!omap - - id: s_3328 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) - - compartment: ce - - formula: C43H81O13P + - id: "s_3328" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88557 - - metanetx.chemical: MNXM75665 - - sbo: SBO:0000247 + - chebi: "CHEBI:88557" + - metanetx.chemical: "MNXM75665" + - sbo: "SBO:0000247" - !!omap - - id: s_3329 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) - - compartment: ce - - formula: C43H82O16P2 + - id: "s_3329" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3330 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) - - compartment: ce - - formula: C43H79O13P + - id: "s_3330" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88626 - - sbo: SBO:0000247 + - chebi: "CHEBI:88626" + - sbo: "SBO:0000247" - !!omap - - id: s_3331 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) - - compartment: ce - - formula: C43H80O16P2 + - id: "s_3331" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3332 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) - - compartment: ce - - formula: C43H81O13P + - id: "s_3332" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:73215 - - kegg.compound: C13888 - - metanetx.chemical: MNXM75499 - - sbo: SBO:0000247 + - chebi: "CHEBI:73215" + - kegg.compound: "C13888" + - metanetx.chemical: "MNXM75499" + - sbo: "SBO:0000247" - !!omap - - id: s_3333 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) - - compartment: ce - - formula: C43H82O16P2 + - id: "s_3333" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3334 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) - - compartment: ce - - formula: C43H79O13P + - id: "s_3334" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88562 - - sbo: SBO:0000247 + - chebi: "CHEBI:88562" + - sbo: "SBO:0000247" - !!omap - - id: s_3335 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) - - compartment: ce - - formula: C43H80O16P2 + - id: "s_3335" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3336 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) - - compartment: ce - - formula: C45H85O13P + - id: "s_3336" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C45H85O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77346 - - metanetx.chemical: MNXM75671 - - sbo: SBO:0000247 + - chebi: "CHEBI:77346" + - metanetx.chemical: "MNXM75671" + - sbo: "SBO:0000247" - !!omap - - id: s_3337 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) - - compartment: ce - - formula: C45H86O16P2 + - id: "s_3337" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77277 - - sbo: SBO:0000247 + - chebi: "CHEBI:77277" + - sbo: "SBO:0000247" - !!omap - - id: s_3338 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) - - compartment: ce - - formula: C45H83O13P + - id: "s_3338" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C45H83O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88612 - - sbo: SBO:0000247 + - chebi: "CHEBI:88612" + - sbo: "SBO:0000247" - !!omap - - id: s_3339 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) - - compartment: ce - - formula: C45H84O16P2 + - id: "s_3339" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3340 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) - - compartment: vm - - formula: C41H77O13P + - id: "s_3340" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C41H77O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88396 - - metanetx.chemical: MNXM75492 - - sbo: SBO:0000247 + - chebi: "CHEBI:88396" + - metanetx.chemical: "MNXM75492" + - sbo: "SBO:0000247" - !!omap - - id: s_3341 - - name: ATP - - compartment: vm - - formula: C10H12N5O13P3 + - id: "s_3341" + - name: "ATP" + - compartment: "vm" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: atp - - chebi: CHEBI:30616 - - kegg.compound: C00002 - - metanetx.chemical: MNXM3 - - sbo: SBO:0000247 + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - - id: s_3342 - - name: ADP - - compartment: vm - - formula: C10H12N5O10P2 + - id: "s_3342" + - name: "ADP" + - compartment: "vm" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: adp - - chebi: CHEBI:456216 - - kegg.compound: C00008 - - metanetx.chemical: MNXM7 - - sbo: SBO:0000247 + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - - id: s_3343 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) - - compartment: vm - - formula: C41H78O16P2 + - id: "s_3343" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3344 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) - - compartment: vm - - formula: C41H75O13P + - id: "s_3344" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C41H75O13P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail161" + - sbo: "SBO:0000247" - !!omap - - id: s_3345 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) - - compartment: vm - - formula: C41H76O16P2 + - id: "s_3345" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail4p161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail4p161" + - sbo: "SBO:0000247" - !!omap - - id: s_3346 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) - - compartment: vm - - formula: C43H81O13P + - id: "s_3346" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88557 - - metanetx.chemical: MNXM75665 - - sbo: SBO:0000247 + - chebi: "CHEBI:88557" + - metanetx.chemical: "MNXM75665" + - sbo: "SBO:0000247" - !!omap - - id: s_3347 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) - - compartment: vm - - formula: C43H82O16P2 + - id: "s_3347" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3348 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) - - compartment: vm - - formula: C43H79O13P + - id: "s_3348" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88626 - - sbo: SBO:0000247 + - chebi: "CHEBI:88626" + - sbo: "SBO:0000247" - !!omap - - id: s_3349 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) - - compartment: vm - - formula: C43H80O16P2 + - id: "s_3349" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3350 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) - - compartment: vm - - formula: C43H81O13P + - id: "s_3350" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:73215 - - kegg.compound: C13888 - - metanetx.chemical: MNXM75499 - - sbo: SBO:0000247 + - chebi: "CHEBI:73215" + - kegg.compound: "C13888" + - metanetx.chemical: "MNXM75499" + - sbo: "SBO:0000247" - !!omap - - id: s_3351 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) - - compartment: vm - - formula: C43H82O16P2 + - id: "s_3351" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3352 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) - - compartment: vm - - formula: C43H79O13P + - id: "s_3352" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88562 - - sbo: SBO:0000247 + - chebi: "CHEBI:88562" + - sbo: "SBO:0000247" - !!omap - - id: s_3353 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) - - compartment: vm - - formula: C43H80O16P2 + - id: "s_3353" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3354 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) - - compartment: vm - - formula: C45H85O13P + - id: "s_3354" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C45H85O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77346 - - metanetx.chemical: MNXM75671 - - sbo: SBO:0000247 + - chebi: "CHEBI:77346" + - metanetx.chemical: "MNXM75671" + - sbo: "SBO:0000247" - !!omap - - id: s_3355 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) - - compartment: vm - - formula: C45H86O16P2 + - id: "s_3355" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77277 - - sbo: SBO:0000247 + - chebi: "CHEBI:77277" + - sbo: "SBO:0000247" - !!omap - - id: s_3356 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) - - compartment: vm - - formula: C45H83O13P + - id: "s_3356" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C45H83O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88612 - - sbo: SBO:0000247 + - chebi: "CHEBI:88612" + - sbo: "SBO:0000247" - !!omap - - id: s_3357 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) - - compartment: vm - - formula: C45H84O16P2 + - id: "s_3357" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3358 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) - - compartment: gm - - formula: C41H77O13P + - id: "s_3358" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C41H77O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88396 - - metanetx.chemical: MNXM75492 - - sbo: SBO:0000247 + - chebi: "CHEBI:88396" + - metanetx.chemical: "MNXM75492" + - sbo: "SBO:0000247" - !!omap - - id: s_3359 - - name: ATP - - compartment: gm - - formula: C10H12N5O13P3 + - id: "s_3359" + - name: "ATP" + - compartment: "gm" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: atp - - chebi: CHEBI:30616 - - kegg.compound: C00002 - - metanetx.chemical: MNXM3 - - sbo: SBO:0000247 + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - - id: s_3360 - - name: ADP - - compartment: gm - - formula: C10H12N5O10P2 + - id: "s_3360" + - name: "ADP" + - compartment: "gm" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: adp - - chebi: CHEBI:456216 - - kegg.compound: C00008 - - metanetx.chemical: MNXM7 - - sbo: SBO:0000247 + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - - id: s_3361 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) - - compartment: gm - - formula: C41H78O16P2 + - id: "s_3361" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3362 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) - - compartment: gm - - formula: C41H75O13P + - id: "s_3362" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C41H75O13P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail161" + - sbo: "SBO:0000247" - !!omap - - id: s_3363 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) - - compartment: gm - - formula: C41H76O16P2 + - id: "s_3363" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail4p161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail4p161" + - sbo: "SBO:0000247" - !!omap - - id: s_3364 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) - - compartment: gm - - formula: C43H81O13P + - id: "s_3364" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88557 - - metanetx.chemical: MNXM75665 - - sbo: SBO:0000247 + - chebi: "CHEBI:88557" + - metanetx.chemical: "MNXM75665" + - sbo: "SBO:0000247" - !!omap - - id: s_3365 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) - - compartment: gm - - formula: C43H82O16P2 + - id: "s_3365" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3366 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) - - compartment: gm - - formula: C43H79O13P + - id: "s_3366" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88626 - - sbo: SBO:0000247 + - chebi: "CHEBI:88626" + - sbo: "SBO:0000247" - !!omap - - id: s_3367 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) - - compartment: gm - - formula: C43H80O16P2 + - id: "s_3367" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3368 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) - - compartment: gm - - formula: C43H81O13P + - id: "s_3368" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:73215 - - kegg.compound: C13888 - - metanetx.chemical: MNXM75499 - - sbo: SBO:0000247 + - chebi: "CHEBI:73215" + - kegg.compound: "C13888" + - metanetx.chemical: "MNXM75499" + - sbo: "SBO:0000247" - !!omap - - id: s_3369 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) - - compartment: gm - - formula: C43H82O16P2 + - id: "s_3369" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3370 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) - - compartment: gm - - formula: C43H79O13P + - id: "s_3370" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88562 - - sbo: SBO:0000247 + - chebi: "CHEBI:88562" + - sbo: "SBO:0000247" - !!omap - - id: s_3371 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) - - compartment: gm - - formula: C43H80O16P2 + - id: "s_3371" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3372 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) - - compartment: gm - - formula: C45H85O13P + - id: "s_3372" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C45H85O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77346 - - metanetx.chemical: MNXM75671 - - sbo: SBO:0000247 + - chebi: "CHEBI:77346" + - metanetx.chemical: "MNXM75671" + - sbo: "SBO:0000247" - !!omap - - id: s_3373 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) - - compartment: gm - - formula: C45H86O16P2 + - id: "s_3373" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77277 - - sbo: SBO:0000247 + - chebi: "CHEBI:77277" + - sbo: "SBO:0000247" - !!omap - - id: s_3374 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) - - compartment: gm - - formula: C45H83O13P + - id: "s_3374" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C45H83O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88612 - - sbo: SBO:0000247 + - chebi: "CHEBI:88612" + - sbo: "SBO:0000247" - !!omap - - id: s_3375 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) - - compartment: gm - - formula: C45H84O16P2 + - id: "s_3375" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3376 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) - - compartment: n - - formula: C41H77O13P + - id: "s_3376" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" + - compartment: "n" + - formula: "C41H77O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88396 - - metanetx.chemical: MNXM75492 - - sbo: SBO:0000247 + - chebi: "CHEBI:88396" + - metanetx.chemical: "MNXM75492" + - sbo: "SBO:0000247" - !!omap - - id: s_3377 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) - - compartment: n - - formula: C41H78O16P2 + - id: "s_3377" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" + - compartment: "n" + - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3378 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) - - compartment: n - - formula: C41H75O13P + - id: "s_3378" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" + - compartment: "n" + - formula: "C41H75O13P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail161" + - sbo: "SBO:0000247" - !!omap - - id: s_3379 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) - - compartment: n - - formula: C41H76O16P2 + - id: "s_3379" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" + - compartment: "n" + - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail4p161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail4p161" + - sbo: "SBO:0000247" - !!omap - - id: s_3380 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) - - compartment: n - - formula: C43H81O13P + - id: "s_3380" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" + - compartment: "n" + - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88557 - - metanetx.chemical: MNXM75665 - - sbo: SBO:0000247 + - chebi: "CHEBI:88557" + - metanetx.chemical: "MNXM75665" + - sbo: "SBO:0000247" - !!omap - - id: s_3381 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) - - compartment: n - - formula: C43H82O16P2 + - id: "s_3381" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" + - compartment: "n" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3382 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) - - compartment: n - - formula: C43H79O13P + - id: "s_3382" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" + - compartment: "n" + - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88626 - - sbo: SBO:0000247 + - chebi: "CHEBI:88626" + - sbo: "SBO:0000247" - !!omap - - id: s_3383 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) - - compartment: n - - formula: C43H80O16P2 + - id: "s_3383" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" + - compartment: "n" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3384 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) - - compartment: n - - formula: C43H81O13P + - id: "s_3384" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" + - compartment: "n" + - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:73215 - - kegg.compound: C13888 - - metanetx.chemical: MNXM75499 - - sbo: SBO:0000247 + - chebi: "CHEBI:73215" + - kegg.compound: "C13888" + - metanetx.chemical: "MNXM75499" + - sbo: "SBO:0000247" - !!omap - - id: s_3385 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) - - compartment: n - - formula: C43H82O16P2 + - id: "s_3385" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" + - compartment: "n" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3386 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) - - compartment: n - - formula: C43H79O13P + - id: "s_3386" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" + - compartment: "n" + - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88562 - - sbo: SBO:0000247 + - chebi: "CHEBI:88562" + - sbo: "SBO:0000247" - !!omap - - id: s_3387 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) - - compartment: n - - formula: C43H80O16P2 + - id: "s_3387" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" + - compartment: "n" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3388 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) - - compartment: n - - formula: C45H85O13P + - id: "s_3388" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" + - compartment: "n" + - formula: "C45H85O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77346 - - metanetx.chemical: MNXM75671 - - sbo: SBO:0000247 + - chebi: "CHEBI:77346" + - metanetx.chemical: "MNXM75671" + - sbo: "SBO:0000247" - !!omap - - id: s_3389 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) - - compartment: n - - formula: C45H86O16P2 + - id: "s_3389" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" + - compartment: "n" + - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77277 - - sbo: SBO:0000247 + - chebi: "CHEBI:77277" + - sbo: "SBO:0000247" - !!omap - - id: s_3390 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) - - compartment: n - - formula: C45H83O13P + - id: "s_3390" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" + - compartment: "n" + - formula: "C45H83O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88612 - - sbo: SBO:0000247 + - chebi: "CHEBI:88612" + - sbo: "SBO:0000247" - !!omap - - id: s_3391 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) - - compartment: n - - formula: C45H84O16P2 + - id: "s_3391" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" + - compartment: "n" + - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3392 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) - - compartment: vm - - formula: C41H78O16P2 + - id: "s_3392" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3393 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) - - compartment: vm - - formula: C41H76O16P2 + - id: "s_3393" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail3p161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail3p161" + - sbo: "SBO:0000247" - !!omap - - id: s_3394 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) - - compartment: vm - - formula: C43H82O16P2 + - id: "s_3394" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3395 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) - - compartment: vm - - formula: C43H80O16P2 + - id: "s_3395" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3396 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) - - compartment: vm - - formula: C43H82O16P2 + - id: "s_3396" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3397 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) - - compartment: vm - - formula: C43H80O16P2 + - id: "s_3397" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3398 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) - - compartment: vm - - formula: C45H86O16P2 + - id: "s_3398" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77347 - - sbo: SBO:0000247 + - chebi: "CHEBI:77347" + - sbo: "SBO:0000247" - !!omap - - id: s_3399 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) - - compartment: vm - - formula: C45H84O16P2 + - id: "s_3399" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77344 - - sbo: SBO:0000247 + - chebi: "CHEBI:77344" + - sbo: "SBO:0000247" - !!omap - - id: s_3400 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) - - compartment: n - - formula: C41H79O19P3 + - id: "s_3400" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "n" + - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3401 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) - - compartment: n - - formula: C41H77O19P3 + - id: "s_3401" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "n" + - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3402 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) - - compartment: n - - formula: C43H83O19P3 + - id: "s_3402" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "n" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3403 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) - - compartment: n - - formula: C43H81O19P3 + - id: "s_3403" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "n" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3404 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) - - compartment: n - - formula: C43H83O19P3 + - id: "s_3404" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "n" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3405 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) - - compartment: n - - formula: C43H81O19P3 + - id: "s_3405" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "n" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3406 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) - - compartment: n - - formula: C45H87O19P3 + - id: "s_3406" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "n" + - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77279 - - sbo: SBO:0000247 + - chebi: "CHEBI:77279" + - sbo: "SBO:0000247" - !!omap - - id: s_3407 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) - - compartment: n - - formula: C45H85O19P3 + - id: "s_3407" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "n" + - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3408 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) - - compartment: ce - - formula: C41H79O19P3 + - id: "s_3408" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3409 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) - - compartment: ce - - formula: C41H77O19P3 + - id: "s_3409" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3410 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) - - compartment: ce - - formula: C43H83O19P3 + - id: "s_3410" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3411 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) - - compartment: ce - - formula: C43H81O19P3 + - id: "s_3411" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3412 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) - - compartment: ce - - formula: C43H83O19P3 + - id: "s_3412" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3413 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) - - compartment: ce - - formula: C43H81O19P3 + - id: "s_3413" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3414 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) - - compartment: ce - - formula: C45H87O19P3 + - id: "s_3414" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77279 - - sbo: SBO:0000247 + - chebi: "CHEBI:77279" + - sbo: "SBO:0000247" - !!omap - - id: s_3415 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) - - compartment: ce - - formula: C45H85O19P3 + - id: "s_3415" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3416 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) - - compartment: vm - - formula: C41H79O19P3 + - id: "s_3416" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3417 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) - - compartment: vm - - formula: C41H77O19P3 + - id: "s_3417" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3418 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) - - compartment: vm - - formula: C43H83O19P3 + - id: "s_3418" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3419 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) - - compartment: vm - - formula: C43H81O19P3 + - id: "s_3419" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3420 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) - - compartment: vm - - formula: C43H83O19P3 + - id: "s_3420" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3421 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) - - compartment: vm - - formula: C43H81O19P3 + - id: "s_3421" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3422 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) - - compartment: vm - - formula: C45H87O19P3 + - id: "s_3422" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3423 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) - - compartment: vm - - formula: C45H85O19P3 + - id: "s_3423" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3424 - - name: 1-acylglycerophosphoethanolamine (16:0) - - compartment: erm - - formula: C21H44NO7P + - id: "s_3424" + - name: "1-acylglycerophosphoethanolamine (16:0)" + - compartment: "erm" + - formula: "C21H44NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpe160 - - chebi: CHEBI:90452 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpe160" + - chebi: "CHEBI:90452" + - sbo: "SBO:0000247" - !!omap - - id: s_3425 - - name: 1-acylglycerophosphoethanolamine (16:1) - - compartment: erm - - formula: C21H42NO7P + - id: "s_3425" + - name: "1-acylglycerophosphoethanolamine (16:1)" + - compartment: "erm" + - formula: "C21H42NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpe161 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpe161" + - sbo: "SBO:0000247" - !!omap - - id: s_3426 - - name: 1-acylglycerophosphoethanolamine (18:0) - - compartment: erm - - formula: C23H48NO7P + - id: "s_3426" + - name: "1-acylglycerophosphoethanolamine (18:0)" + - compartment: "erm" + - formula: "C23H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpe180 - - chebi: CHEBI:64576 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpe180" + - chebi: "CHEBI:64576" + - sbo: "SBO:0000247" - !!omap - - id: s_3427 - - name: 1-acylglycerophosphoethanolamine (18:1) - - compartment: erm - - formula: C23H46NO7P + - id: "s_3427" + - name: "1-acylglycerophosphoethanolamine (18:1)" + - compartment: "erm" + - formula: "C23H46NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpe181 - - chebi: CHEBI:64575 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpe181" + - chebi: "CHEBI:64575" + - sbo: "SBO:0000247" - !!omap - - id: s_3428 - - name: 1-acylglycerophosphocholine (16:0) - - compartment: erm - - formula: C24H50NO7P + - id: "s_3428" + - name: "1-acylglycerophosphocholine (16:0)" + - compartment: "erm" + - formula: "C24H50NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc160 - - chebi: CHEBI:72998 - - kegg.compound: C04102 - - metanetx.chemical: MNXM32510 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc160" + - chebi: "CHEBI:72998" + - kegg.compound: "C04102" + - metanetx.chemical: "MNXM32510" + - sbo: "SBO:0000247" - !!omap - - id: s_3429 - - name: 1-acylglycerophosphocholine (16:1) - - compartment: erm - - formula: C24H48NO7P + - id: "s_3429" + - name: "1-acylglycerophosphocholine (16:1)" + - compartment: "erm" + - formula: "C24H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc161 - - chebi: CHEBI:73851 - - metanetx.chemical: MNXM32519 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc161" + - chebi: "CHEBI:73851" + - metanetx.chemical: "MNXM32519" + - sbo: "SBO:0000247" - !!omap - - id: s_3430 - - name: 1-acylglycerophosphocholine (18:0) - - compartment: erm - - formula: C26H54NO7P + - id: "s_3430" + - name: "1-acylglycerophosphocholine (18:0)" + - compartment: "erm" + - formula: "C26H54NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc180 - - chebi: CHEBI:73858 - - metanetx.chemical: MNXM32545 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc180" + - chebi: "CHEBI:73858" + - metanetx.chemical: "MNXM32545" + - sbo: "SBO:0000247" - !!omap - - id: s_3431 - - name: 1-acylglycerophosphocholine (18:1) - - compartment: erm - - formula: C26H52NO7P + - id: "s_3431" + - name: "1-acylglycerophosphocholine (18:1)" + - compartment: "erm" + - formula: "C26H52NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc181 - - chebi: CHEBI:28610 - - kegg.compound: C03916 - - metanetx.chemical: MNXM13872 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc181" + - chebi: "CHEBI:28610" + - kegg.compound: "C03916" + - metanetx.chemical: "MNXM13872" + - sbo: "SBO:0000247" - !!omap - - id: s_3432 - - name: episterol - - compartment: erm - - formula: C28H46O + - id: "s_3432" + - name: "episterol" + - compartment: "erm" + - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: epist - - chebi: CHEBI:23929 - - kegg.compound: C15777 - - metanetx.chemical: MNXM52365 - - sbo: SBO:0000247 + - bigg.metabolite: "epist" + - chebi: "CHEBI:23929" + - kegg.compound: "C15777" + - metanetx.chemical: "MNXM52365" + - sbo: "SBO:0000247" - !!omap - - id: s_3433 - - name: episteryl oleate - - compartment: erm - - formula: C46H78O2 + - id: "s_3433" + - name: "episteryl oleate" + - compartment: "erm" + - formula: "C46H78O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52375 - - metanetx.chemical: MNXM52367 - - sbo: SBO:0000247 + - chebi: "CHEBI:52375" + - metanetx.chemical: "MNXM52367" + - sbo: "SBO:0000247" - !!omap - - id: s_3434 - - name: episteryl palmitoleate - - compartment: erm - - formula: C44H74O2 + - id: "s_3434" + - name: "episteryl palmitoleate" + - compartment: "erm" + - formula: "C44H74O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52376 - - metanetx.chemical: MNXM52369 - - sbo: SBO:0000247 + - chebi: "CHEBI:52376" + - metanetx.chemical: "MNXM52369" + - sbo: "SBO:0000247" - !!omap - - id: s_3435 - - name: fecosterol - - compartment: erm - - formula: C28H46O + - id: "s_3435" + - name: "fecosterol" + - compartment: "erm" + - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: fecost - - chebi: CHEBI:17038 - - kegg.compound: C04525 - - metanetx.chemical: MNXM1741 - - sbo: SBO:0000247 + - bigg.metabolite: "fecost" + - chebi: "CHEBI:17038" + - kegg.compound: "C04525" + - metanetx.chemical: "MNXM1741" + - sbo: "SBO:0000247" - !!omap - - id: s_3436 - - name: fecosteryl oleate - - compartment: erm - - formula: C46H78O2 + - id: "s_3436" + - name: "fecosteryl oleate" + - compartment: "erm" + - formula: "C46H78O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52379 - - metanetx.chemical: MNXM53170 - - sbo: SBO:0000247 + - chebi: "CHEBI:52379" + - metanetx.chemical: "MNXM53170" + - sbo: "SBO:0000247" - !!omap - - id: s_3437 - - name: fecosteryl palmitoleate - - compartment: erm - - formula: C44H74O2 + - id: "s_3437" + - name: "fecosteryl palmitoleate" + - compartment: "erm" + - formula: "C44H74O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52380 - - metanetx.chemical: MNXM53171 - - sbo: SBO:0000247 + - chebi: "CHEBI:52380" + - metanetx.chemical: "MNXM53171" + - sbo: "SBO:0000247" - !!omap - - id: s_3438 - - name: lanosterol - - compartment: erm - - formula: C30H50O + - id: "s_3438" + - name: "lanosterol" + - compartment: "erm" + - formula: "C30H50O" - charge: 0 - annotation: !!omap - - bigg.metabolite: lanost - - chebi: CHEBI:16521 - - kegg.compound: C01724 - - metanetx.chemical: MNXM482 - - sbo: SBO:0000247 + - bigg.metabolite: "lanost" + - chebi: "CHEBI:16521" + - kegg.compound: "C01724" + - metanetx.chemical: "MNXM482" + - sbo: "SBO:0000247" - !!omap - - id: s_3439 - - name: lanosteryl oleate - - compartment: erm - - formula: C48H82O2 + - id: "s_3439" + - name: "lanosteryl oleate" + - compartment: "erm" + - formula: "C48H82O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52382 - - metanetx.chemical: MNXM59726 - - sbo: SBO:0000247 + - chebi: "CHEBI:52382" + - metanetx.chemical: "MNXM59726" + - sbo: "SBO:0000247" - !!omap - - id: s_3440 - - name: lanosteryl palmitoleate - - compartment: erm - - formula: C46H78O2 + - id: "s_3440" + - name: "lanosteryl palmitoleate" + - compartment: "erm" + - formula: "C46H78O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52383 - - metanetx.chemical: MNXM59727 - - sbo: SBO:0000247 + - chebi: "CHEBI:52383" + - metanetx.chemical: "MNXM59727" + - sbo: "SBO:0000247" - !!omap - - id: s_3441 - - name: ergosterol - - compartment: erm - - formula: C28H44O + - id: "s_3441" + - name: "ergosterol" + - compartment: "erm" + - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: ergst - - chebi: CHEBI:16933 - - kegg.compound: C01694 - - metanetx.chemical: MNXM922 - - sbo: SBO:0000247 + - bigg.metabolite: "ergst" + - chebi: "CHEBI:16933" + - kegg.compound: "C01694" + - metanetx.chemical: "MNXM922" + - sbo: "SBO:0000247" - !!omap - - id: s_3442 - - name: ergosteryl oleate - - compartment: erm - - formula: C46H76O2 + - id: "s_3442" + - name: "ergosteryl oleate" + - compartment: "erm" + - formula: "C46H76O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52377 - - metanetx.chemical: MNXM52466 - - sbo: SBO:0000247 + - chebi: "CHEBI:52377" + - metanetx.chemical: "MNXM52466" + - sbo: "SBO:0000247" - !!omap - - id: s_3443 - - name: ergosteryl palmitoleate - - compartment: erm - - formula: C44H72O2 + - id: "s_3443" + - name: "ergosteryl palmitoleate" + - compartment: "erm" + - formula: "C44H72O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52378 - - metanetx.chemical: MNXM52467 - - sbo: SBO:0000247 + - chebi: "CHEBI:52378" + - metanetx.chemical: "MNXM52467" + - sbo: "SBO:0000247" - !!omap - - id: s_3444 - - name: zymosterol - - compartment: erm - - formula: C27H44O + - id: "s_3444" + - name: "zymosterol" + - compartment: "erm" + - formula: "C27H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: zymst - - chebi: CHEBI:18252 - - kegg.compound: C05437 - - metanetx.chemical: MNXM574 - - sbo: SBO:0000247 + - bigg.metabolite: "zymst" + - chebi: "CHEBI:18252" + - kegg.compound: "C05437" + - metanetx.chemical: "MNXM574" + - sbo: "SBO:0000247" - !!omap - - id: s_3445 - - name: zymosteryl oleate - - compartment: erm - - formula: C45H76O2 + - id: "s_3445" + - name: "zymosteryl oleate" + - compartment: "erm" + - formula: "C45H76O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52384 - - metanetx.chemical: MNXM89472 - - sbo: SBO:0000247 + - chebi: "CHEBI:52384" + - metanetx.chemical: "MNXM89472" + - sbo: "SBO:0000247" - !!omap - - id: s_3446 - - name: zymosteryl palmitoleate - - compartment: erm - - formula: C43H72O2 + - id: "s_3446" + - name: "zymosteryl palmitoleate" + - compartment: "erm" + - formula: "C43H72O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52385 - - metanetx.chemical: MNXM89473 - - sbo: SBO:0000247 + - chebi: "CHEBI:52385" + - metanetx.chemical: "MNXM89473" + - sbo: "SBO:0000247" - !!omap - - id: s_3447 - - name: sn-glycero-3-phosphocholine - - compartment: erm - - formula: C8H20NO6P + - id: "s_3447" + - name: "sn-glycero-3-phosphocholine" + - compartment: "erm" + - formula: "C8H20NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: g3pc - - chebi: CHEBI:16870 - - kegg.compound: C00670 - - metanetx.chemical: MNXM367 - - sbo: SBO:0000247 + - bigg.metabolite: "g3pc" + - chebi: "CHEBI:16870" + - kegg.compound: "C00670" + - metanetx.chemical: "MNXM367" + - sbo: "SBO:0000247" - !!omap - - id: s_3448 - - name: phosphatidylcholine (1-16:0, 2-16:1) - - compartment: ce - - formula: C40H78NO8P + - id: "s_3448" + - name: "phosphatidylcholine (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C40H78NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134592 - - sbo: SBO:0000247 + - chebi: "CHEBI:134592" + - sbo: "SBO:0000247" - !!omap - - id: s_3449 - - name: H2O - - compartment: ce - - formula: H2O + - id: "s_3449" + - name: "H2O" + - compartment: "ce" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_3450 - - name: 1-acylglycerophosphocholine (16:0) - - compartment: ce - - formula: C24H50NO7P + - id: "s_3450" + - name: "1-acylglycerophosphocholine (16:0)" + - compartment: "ce" + - formula: "C24H50NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc160 - - chebi: CHEBI:72998 - - kegg.compound: C04102 - - metanetx.chemical: MNXM32510 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc160" + - chebi: "CHEBI:72998" + - kegg.compound: "C04102" + - metanetx.chemical: "MNXM32510" + - sbo: "SBO:0000247" - !!omap - - id: s_3451 - - name: palmitoleate - - compartment: ce - - formula: C16H29O2 + - id: "s_3451" + - name: "palmitoleate" + - compartment: "ce" + - formula: "C16H29O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdcea - - chebi: CHEBI:32372 - - kegg.compound: C08362 - - metanetx.chemical: MNXM162245 - - sbo: SBO:0000247 + - bigg.metabolite: "hdcea" + - chebi: "CHEBI:32372" + - kegg.compound: "C08362" + - metanetx.chemical: "MNXM162245" + - sbo: "SBO:0000247" - !!omap - - id: s_3452 - - name: phosphatidylcholine (1-16:1, 2-16:1) - - compartment: ce - - formula: C40H76NO8P + - id: "s_3452" + - name: "phosphatidylcholine (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C40H76NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pc161 - - chebi: CHEBI:83717 - - metanetx.chemical: MNXM69377 - - sbo: SBO:0000247 + - bigg.metabolite: "pc161" + - chebi: "CHEBI:83717" + - metanetx.chemical: "MNXM69377" + - sbo: "SBO:0000247" - !!omap - - id: s_3453 - - name: 1-acylglycerophosphocholine (16:1) - - compartment: ce - - formula: C24H48NO7P + - id: "s_3453" + - name: "1-acylglycerophosphocholine (16:1)" + - compartment: "ce" + - formula: "C24H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc161 - - chebi: CHEBI:73851 - - metanetx.chemical: MNXM32519 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc161" + - chebi: "CHEBI:73851" + - metanetx.chemical: "MNXM32519" + - sbo: "SBO:0000247" - !!omap - - id: s_3454 - - name: phosphatidylcholine (1-18:0, 2-16:1) - - compartment: ce - - formula: C42H82NO8P + - id: "s_3454" + - name: "phosphatidylcholine (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:86097 - - metanetx.chemical: MNXM69528 - - sbo: SBO:0000247 + - chebi: "CHEBI:86097" + - metanetx.chemical: "MNXM69528" + - sbo: "SBO:0000247" - !!omap - - id: s_3455 - - name: 1-acylglycerophosphocholine (18:0) - - compartment: ce - - formula: C26H54NO7P + - id: "s_3455" + - name: "1-acylglycerophosphocholine (18:0)" + - compartment: "ce" + - formula: "C26H54NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc180 - - chebi: CHEBI:73858 - - metanetx.chemical: MNXM32545 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc180" + - chebi: "CHEBI:73858" + - metanetx.chemical: "MNXM32545" + - sbo: "SBO:0000247" - !!omap - - id: s_3456 - - name: phosphatidylcholine (1-18:1, 2-16:1) - - compartment: ce - - formula: C42H80NO8P + - id: "s_3456" + - name: "phosphatidylcholine (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:86100 - - metanetx.chemical: MNXM69658 - - sbo: SBO:0000247 + - chebi: "CHEBI:86100" + - metanetx.chemical: "MNXM69658" + - sbo: "SBO:0000247" - !!omap - - id: s_3457 - - name: 1-acylglycerophosphocholine (18:1) - - compartment: ce - - formula: C26H52NO7P + - id: "s_3457" + - name: "1-acylglycerophosphocholine (18:1)" + - compartment: "ce" + - formula: "C26H52NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc181 - - chebi: CHEBI:28610 - - kegg.compound: C03916 - - metanetx.chemical: MNXM13872 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc181" + - chebi: "CHEBI:28610" + - kegg.compound: "C03916" + - metanetx.chemical: "MNXM13872" + - sbo: "SBO:0000247" - !!omap - - id: s_3458 - - name: phosphatidylcholine (1-16:0, 2-18:1) - - compartment: ce - - formula: C42H82NO8P + - id: "s_3458" + - name: "phosphatidylcholine (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134594 - - sbo: SBO:0000247 + - chebi: "CHEBI:134594" + - sbo: "SBO:0000247" - !!omap - - id: s_3459 - - name: oleate - - compartment: ce - - formula: C18H33O2 + - id: "s_3459" + - name: "oleate" + - compartment: "ce" + - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdcea - - chebi: CHEBI:30823 - - kegg.compound: C00712 - - metanetx.chemical: MNXM306 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - - id: s_3460 - - name: phosphatidylcholine (1-16:1, 2-18:1) - - compartment: ce - - formula: C42H80NO8P + - id: "s_3460" + - name: "phosphatidylcholine (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:84811 - - metanetx.chemical: MNXM69383 - - sbo: SBO:0000247 + - chebi: "CHEBI:84811" + - metanetx.chemical: "MNXM69383" + - sbo: "SBO:0000247" - !!omap - - id: s_3461 - - name: phosphatidylcholine (1-18:0, 2-18:1) - - compartment: ce - - formula: C44H86NO8P + - id: "s_3461" + - name: "phosphatidylcholine (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C44H86NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75034 - - metanetx.chemical: MNXM32526 - - sbo: SBO:0000247 + - chebi: "CHEBI:75034" + - metanetx.chemical: "MNXM32526" + - sbo: "SBO:0000247" - !!omap - - id: s_3462 - - name: phosphatidylcholine (1-18:1, 2-18:1) - - compartment: ce - - formula: C44H84NO8P + - id: "s_3462" + - name: "phosphatidylcholine (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C44H84NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:74669 - - metanetx.chemical: MNXM8549 - - sbo: SBO:0000247 + - chebi: "CHEBI:74669" + - metanetx.chemical: "MNXM8549" + - sbo: "SBO:0000247" - !!omap - - id: s_3463 - - name: palmitate - - compartment: ce - - formula: C16H31O2 + - id: "s_3463" + - name: "palmitate" + - compartment: "ce" + - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: hdca - - chebi: CHEBI:7896 - - kegg.compound: C00249 - - metanetx.chemical: MNXM108 - - sbo: SBO:0000247 + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - - id: s_3464 - - name: stearate - - compartment: ce - - formula: C18H35O2 + - id: "s_3464" + - name: "stearate" + - compartment: "ce" + - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdca - - chebi: CHEBI:25629 - - kegg.compound: C01530 - - metanetx.chemical: MNXM236 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - - id: s_3465 - - name: phosphatidylethanolamine (1-16:0, 2-16:1) - - compartment: ce - - formula: C37H72NO8P + - id: "s_3465" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C37H72NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136147 - - sbo: SBO:0000247 + - chebi: "CHEBI:136147" + - sbo: "SBO:0000247" - !!omap - - id: s_3466 - - name: 1-acylglycerophosphoethanolamine (16:0) - - compartment: ce - - formula: C21H44NO7P + - id: "s_3466" + - name: "1-acylglycerophosphoethanolamine (16:0)" + - compartment: "ce" + - formula: "C21H44NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpe160 - - chebi: CHEBI:90452 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpe160" + - chebi: "CHEBI:90452" + - sbo: "SBO:0000247" - !!omap - - id: s_3467 - - name: phosphatidylethanolamine (1-16:1, 2-16:1) - - compartment: ce - - formula: C37H70NO8P + - id: "s_3467" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C37H70NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pe161 - - chebi: CHEBI:138792 - - sbo: SBO:0000247 + - bigg.metabolite: "pe161" + - chebi: "CHEBI:138792" + - sbo: "SBO:0000247" - !!omap - - id: s_3468 - - name: 1-acylglycerophosphoethanolamine (16:1) - - compartment: ce - - formula: C21H42NO7P + - id: "s_3468" + - name: "1-acylglycerophosphoethanolamine (16:1)" + - compartment: "ce" + - formula: "C21H42NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpe161 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpe161" + - sbo: "SBO:0000247" - !!omap - - id: s_3469 - - name: phosphatidylethanolamine (1-18:0, 2-16:1) - - compartment: ce - - formula: C39H76NO8P + - id: "s_3469" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136155 - - sbo: SBO:0000247 + - chebi: "CHEBI:136155" + - sbo: "SBO:0000247" - !!omap - - id: s_3470 - - name: 1-acylglycerophosphoethanolamine (18:0) - - compartment: ce - - formula: C23H48NO7P + - id: "s_3470" + - name: "1-acylglycerophosphoethanolamine (18:0)" + - compartment: "ce" + - formula: "C23H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpe180 - - chebi: CHEBI:64576 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpe180" + - chebi: "CHEBI:64576" + - sbo: "SBO:0000247" - !!omap - - id: s_3471 - - name: phosphatidylethanolamine (1-18:1, 2-16:1) - - compartment: ce - - formula: C39H74NO8P + - id: "s_3471" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:82837 - - metanetx.chemical: MNXM71684 - - sbo: SBO:0000247 + - chebi: "CHEBI:82837" + - metanetx.chemical: "MNXM71684" + - sbo: "SBO:0000247" - !!omap - - id: s_3472 - - name: 1-acylglycerophosphoethanolamine (18:1) - - compartment: ce - - formula: C23H46NO7P + - id: "s_3472" + - name: "1-acylglycerophosphoethanolamine (18:1)" + - compartment: "ce" + - formula: "C23H46NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpe181 - - chebi: CHEBI:64575 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpe181" + - chebi: "CHEBI:64575" + - sbo: "SBO:0000247" - !!omap - - id: s_3473 - - name: phosphatidylethanolamine (1-16:0, 2-18:1) - - compartment: ce - - formula: C39H76NO8P + - id: "s_3473" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136148 - - sbo: SBO:0000247 + - chebi: "CHEBI:136148" + - sbo: "SBO:0000247" - !!omap - - id: s_3474 - - name: phosphatidylethanolamine (1-16:1, 2-18:1) - - compartment: ce - - formula: C39H74NO8P + - id: "s_3474" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90464 - - sbo: SBO:0000247 + - chebi: "CHEBI:90464" + - sbo: "SBO:0000247" - !!omap - - id: s_3475 - - name: phosphatidylethanolamine (1-18:0, 2-18:1) - - compartment: ce - - formula: C41H80NO8P + - id: "s_3475" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136162 - - sbo: SBO:0000247 + - chebi: "CHEBI:136162" + - sbo: "SBO:0000247" - !!omap - - id: s_3476 - - name: phosphatidylethanolamine (1-18:1, 2-18:1) - - compartment: ce - - formula: C41H78NO8P + - id: "s_3476" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136170 - - sbo: SBO:0000247 + - chebi: "CHEBI:136170" + - sbo: "SBO:0000247" - !!omap - - id: s_3477 - - name: sn-glycero-3-phosphoethanolamine - - compartment: ce - - formula: C5H14NO6P + - id: "s_3477" + - name: "sn-glycero-3-phosphoethanolamine" + - compartment: "ce" + - formula: "C5H14NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: g3pe - - chebi: CHEBI:16929 - - kegg.compound: C01233 - - metanetx.chemical: MNXM368 - - sbo: SBO:0000247 + - bigg.metabolite: "g3pe" + - chebi: "CHEBI:16929" + - kegg.compound: "C01233" + - metanetx.chemical: "MNXM368" + - sbo: "SBO:0000247" - !!omap - - id: s_3478 - - name: phosphatidyl-L-serine (1-16:0, 2-16:1) - - compartment: ce - - formula: C38H72NO10P + - id: "s_3478" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C38H72NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89824 - - metanetx.chemical: MNXM78605 - - sbo: SBO:0000247 + - chebi: "CHEBI:89824" + - metanetx.chemical: "MNXM78605" + - sbo: "SBO:0000247" - !!omap - - id: s_3479 - - name: 1-acylglycerophosphoserine (16:0) - - compartment: ce - - formula: C22H44NO9P + - id: "s_3479" + - name: "1-acylglycerophosphoserine (16:0)" + - compartment: "ce" + - formula: "C22H44NO9P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM78597 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM78597" + - sbo: "SBO:0000247" - !!omap - - id: s_3480 - - name: phosphatidyl-L-serine (1-16:1, 2-16:1) - - compartment: ce - - formula: C38H70NO10P + - id: "s_3480" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C38H70NO10P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM78637 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM78637" + - sbo: "SBO:0000247" - !!omap - - id: s_3481 - - name: 1-acylglycerophosphoserine (16:1) - - compartment: ce - - formula: C22H42NO9P + - id: "s_3481" + - name: "1-acylglycerophosphoserine (16:1)" + - compartment: "ce" + - formula: "C22H42NO9P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM78629 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM78629" + - sbo: "SBO:0000247" - !!omap - - id: s_3482 - - name: phosphatidyl-L-serine (1-18:0, 2-16:1) - - compartment: ce - - formula: C40H76NO10P + - id: "s_3482" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90036 - - metanetx.chemical: MNXM78765 - - sbo: SBO:0000247 + - chebi: "CHEBI:90036" + - metanetx.chemical: "MNXM78765" + - sbo: "SBO:0000247" - !!omap - - id: s_3483 - - name: 1-acylglycerophosphoserine (18:0) - - compartment: ce - - formula: C24H48NO9P + - id: "s_3483" + - name: "1-acylglycerophosphoserine (18:0)" + - compartment: "ce" + - formula: "C24H48NO9P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:85403 - - metanetx.chemical: MNXM78757 - - sbo: SBO:0000247 + - chebi: "CHEBI:85403" + - metanetx.chemical: "MNXM78757" + - sbo: "SBO:0000247" - !!omap - - id: s_3484 - - name: phosphatidyl-L-serine (1-18:1, 2-16:1) - - compartment: ce - - formula: C40H74NO10P + - id: "s_3484" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75101 - - metanetx.chemical: MNXM78797 - - sbo: SBO:0000247 + - chebi: "CHEBI:75101" + - metanetx.chemical: "MNXM78797" + - sbo: "SBO:0000247" - !!omap - - id: s_3485 - - name: 1-acylglycerophosphoserine (18:1) - - compartment: ce - - formula: C24H46NO9P + - id: "s_3485" + - name: "1-acylglycerophosphoserine (18:1)" + - compartment: "ce" + - formula: "C24H46NO9P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52649 - - metanetx.chemical: MNXM32944 - - sbo: SBO:0000247 + - chebi: "CHEBI:52649" + - metanetx.chemical: "MNXM32944" + - sbo: "SBO:0000247" - !!omap - - id: s_3486 - - name: phosphatidyl-L-serine (1-16:0, 2-18:1) - - compartment: ce - - formula: C40H76NO10P + - id: "s_3486" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:34086 - - kegg.compound: C13880 - - metanetx.chemical: MNXM32501 - - sbo: SBO:0000247 + - chebi: "CHEBI:34086" + - kegg.compound: "C13880" + - metanetx.chemical: "MNXM32501" + - sbo: "SBO:0000247" - !!omap - - id: s_3487 - - name: phosphatidyl-L-serine (1-16:1, 2-18:1) - - compartment: ce - - formula: C40H74NO10P + - id: "s_3487" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90032 - - metanetx.chemical: MNXM78642 - - sbo: SBO:0000247 + - chebi: "CHEBI:90032" + - metanetx.chemical: "MNXM78642" + - sbo: "SBO:0000247" - !!omap - - id: s_3488 - - name: phosphatidyl-L-serine (1-18:0, 2-18:1) - - compartment: ce - - formula: C42H80NO10P + - id: "s_3488" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C42H80NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:79096 - - metanetx.chemical: MNXM32529 - - sbo: SBO:0000247 + - chebi: "CHEBI:79096" + - metanetx.chemical: "MNXM32529" + - sbo: "SBO:0000247" - !!omap - - id: s_3489 - - name: phosphatidyl-L-serine (1-18:1, 2-18:1) - - compartment: ce - - formula: C42H78NO10P + - id: "s_3489" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C42H78NO10P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:60568 - - metanetx.chemical: MNXM32173 - - sbo: SBO:0000247 + - chebi: "CHEBI:60568" + - metanetx.chemical: "MNXM32173" + - sbo: "SBO:0000247" - !!omap - - id: s_3490 - - name: sn-glycero-3-phosphoserine - - compartment: ce - - formula: C6H14NO8P + - id: "s_3490" + - name: "sn-glycero-3-phosphoserine" + - compartment: "ce" + - formula: "C6H14NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: g3ps - - chebi: CHEBI:64945 - - sbo: SBO:0000247 + - bigg.metabolite: "g3ps" + - chebi: "CHEBI:64945" + - sbo: "SBO:0000247" - !!omap - - id: s_3491 - - name: 1-acylglycerophosphoinositol (16:0) - - compartment: ce - - formula: C25H49O12P + - id: "s_3491" + - name: "1-acylglycerophosphoinositol (16:0)" + - compartment: "ce" + - formula: "C25H49O12P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pailpalm_hs - - chebi: CHEBI:73218 - - sbo: SBO:0000247 + - bigg.metabolite: "pailpalm_hs" + - chebi: "CHEBI:73218" + - sbo: "SBO:0000247" - !!omap - - id: s_3492 - - name: 1-acylglycerophosphoinositol (16:1) - - compartment: ce - - formula: C25H47O12P + - id: "s_3492" + - name: "1-acylglycerophosphoinositol (16:1)" + - compartment: "ce" + - formula: "C25H47O12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:138108 - - sbo: SBO:0000247 + - chebi: "CHEBI:138108" + - sbo: "SBO:0000247" - !!omap - - id: s_3493 - - name: 1-acylglycerophosphoinositol (18:0) - - compartment: ce - - formula: C27H53O12P + - id: "s_3493" + - name: "1-acylglycerophosphoinositol (18:0)" + - compartment: "ce" + - formula: "C27H53O12P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pailste_hs - - chebi: CHEBI:83054 - - sbo: SBO:0000247 + - bigg.metabolite: "pailste_hs" + - chebi: "CHEBI:83054" + - sbo: "SBO:0000247" - !!omap - - id: s_3494 - - name: 1-acylglycerophosphoinositol (18:1) - - compartment: ce - - formula: C27H51O12P + - id: "s_3494" + - name: "1-acylglycerophosphoinositol (18:1)" + - compartment: "ce" + - formula: "C27H51O12P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:82753 - - sbo: SBO:0000247 + - chebi: "CHEBI:82753" + - sbo: "SBO:0000247" - !!omap - - id: s_3495 - - name: 1-(sn-glycero-3-phospho)-1D-myo-inositol - - compartment: ce - - formula: C9H18O11P + - id: "s_3495" + - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol" + - compartment: "ce" + - formula: "C9H18O11P" - charge: -1 - annotation: !!omap - - bigg.metabolite: g3pi - - chebi: CHEBI:58444 - - kegg.compound: C01225 - - metanetx.chemical: MNXM1517 - - sbo: SBO:0000247 + - bigg.metabolite: "g3pi" + - chebi: "CHEBI:58444" + - kegg.compound: "C01225" + - metanetx.chemical: "MNXM1517" + - sbo: "SBO:0000247" - !!omap - - id: s_3496 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) - - compartment: c - - formula: C41H79O19P3 + - id: "s_3496" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "c" + - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3497 - - name: diglyceride (1-16:0, 2-16:1) - - compartment: c - - formula: C35H66O5 + - id: "s_3497" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "c" + - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:84394 - - metanetx.chemical: MNXM49375 - - sbo: SBO:0000247 + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - - id: s_3498 - - name: 1D-myo-inositol 1,4,5-trisphosphate - - compartment: c - - formula: C6H9O15P3 + - id: "s_3498" + - name: "1D-myo-inositol 1,4,5-trisphosphate" + - compartment: "c" + - formula: "C6H9O15P3" - charge: -6 - annotation: !!omap - - bigg.metabolite: mi145p - - chebi: CHEBI:203600 - - kegg.compound: C01245 - - metanetx.chemical: MNXM200 - - sbo: SBO:0000247 + - bigg.metabolite: "mi145p" + - chebi: "CHEBI:203600" + - kegg.compound: "C01245" + - metanetx.chemical: "MNXM200" + - sbo: "SBO:0000247" - !!omap - - id: s_3499 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) - - compartment: c - - formula: C41H77O19P3 + - id: "s_3499" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "c" + - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3500 - - name: diglyceride (1-16:1, 2-16:1) - - compartment: c - - formula: C35H64O5 + - id: "s_3500" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "c" + - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr161 - - chebi: CHEBI:84417 - - metanetx.chemical: MNXM176611 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - - id: s_3501 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) - - compartment: c - - formula: C43H83O19P3 + - id: "s_3501" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "c" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3502 - - name: diglyceride (1-18:0, 2-16:1) - - compartment: c - - formula: C37H70O5 + - id: "s_3502" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "c" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88527 - - metanetx.chemical: MNXM49511 - - sbo: SBO:0000247 + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - - id: s_3503 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) - - compartment: c - - formula: C43H81O19P3 + - id: "s_3503" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "c" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3504 - - name: diglyceride (1-18:1, 2-16:1) - - compartment: c - - formula: C37H68O5 + - id: "s_3504" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "c" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89229 - - metanetx.chemical: MNXM49575 - - sbo: SBO:0000247 + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - - id: s_3505 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) - - compartment: c - - formula: C43H83O19P3 + - id: "s_3505" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "c" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3506 - - name: diglyceride (1-16:0, 2-18:1) - - compartment: c - - formula: C37H70O5 + - id: "s_3506" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "c" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88454 - - metanetx.chemical: MNXM49380 - - sbo: SBO:0000247 + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - - id: s_3507 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) - - compartment: c - - formula: C43H81O19P3 + - id: "s_3507" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "c" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3508 - - name: diglyceride (1-16:1, 2-18:1) - - compartment: c - - formula: C37H68O5 + - id: "s_3508" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "c" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88500 - - metanetx.chemical: MNXM49417 - - sbo: SBO:0000247 + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - - id: s_3509 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) - - compartment: c - - formula: C45H87O19P3 + - id: "s_3509" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "c" + - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77279 - - sbo: SBO:0000247 + - chebi: "CHEBI:77279" + - sbo: "SBO:0000247" - !!omap - - id: s_3510 - - name: diglyceride (1-18:0, 2-18:1) - - compartment: c - - formula: C39H74O5 + - id: "s_3510" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "c" + - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75468 - - metanetx.chemical: MNXM49514 - - sbo: SBO:0000247 + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - - id: s_3511 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) - - compartment: c - - formula: C45H85O19P3 + - id: "s_3511" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "c" + - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3512 - - name: diglyceride (1-18:1, 2-18:1) - - compartment: c - - formula: C39H72O5 + - id: "s_3512" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "c" + - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr181 - - chebi: CHEBI:52333 - - metanetx.chemical: MNXM9533 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - - id: s_3513 - - name: diglyceride (1-16:0, 2-16:1) - - compartment: n - - formula: C35H66O5 + - id: "s_3513" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "n" + - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:84394 - - metanetx.chemical: MNXM49375 - - sbo: SBO:0000247 + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - - id: s_3514 - - name: diglyceride (1-16:1, 2-16:1) - - compartment: n - - formula: C35H64O5 + - id: "s_3514" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "n" + - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr161 - - chebi: CHEBI:84417 - - metanetx.chemical: MNXM176611 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - - id: s_3515 - - name: diglyceride (1-18:0, 2-16:1) - - compartment: n - - formula: C37H70O5 + - id: "s_3515" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "n" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88527 - - metanetx.chemical: MNXM49511 - - sbo: SBO:0000247 + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - - id: s_3516 - - name: diglyceride (1-18:1, 2-16:1) - - compartment: n - - formula: C37H68O5 + - id: "s_3516" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "n" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89229 - - metanetx.chemical: MNXM49575 - - sbo: SBO:0000247 + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - - id: s_3517 - - name: diglyceride (1-16:0, 2-18:1) - - compartment: n - - formula: C37H70O5 + - id: "s_3517" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "n" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88454 - - metanetx.chemical: MNXM49380 - - sbo: SBO:0000247 + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - - id: s_3518 - - name: diglyceride (1-16:1, 2-18:1) - - compartment: n - - formula: C37H68O5 + - id: "s_3518" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "n" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88500 - - metanetx.chemical: MNXM49417 - - sbo: SBO:0000247 + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - - id: s_3519 - - name: diglyceride (1-18:0, 2-18:1) - - compartment: n - - formula: C39H74O5 + - id: "s_3519" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "n" + - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75468 - - metanetx.chemical: MNXM49514 - - sbo: SBO:0000247 + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - - id: s_3520 - - name: diglyceride (1-18:1, 2-18:1) - - compartment: n - - formula: C39H72O5 + - id: "s_3520" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "n" + - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr181 - - chebi: CHEBI:52333 - - metanetx.chemical: MNXM9533 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - - id: s_3521 - - name: diglyceride (1-16:0, 2-16:1) - - compartment: mm - - formula: C35H66O5 + - id: "s_3521" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:84394 - - metanetx.chemical: MNXM49375 - - sbo: SBO:0000247 + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - - id: s_3522 - - name: diglyceride (1-16:1, 2-16:1) - - compartment: mm - - formula: C35H64O5 + - id: "s_3522" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr161 - - chebi: CHEBI:84417 - - metanetx.chemical: MNXM176611 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - - id: s_3523 - - name: diglyceride (1-18:0, 2-16:1) - - compartment: mm - - formula: C37H70O5 + - id: "s_3523" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88527 - - metanetx.chemical: MNXM49511 - - sbo: SBO:0000247 + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - - id: s_3524 - - name: diglyceride (1-18:1, 2-16:1) - - compartment: mm - - formula: C37H68O5 + - id: "s_3524" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:89229 - - metanetx.chemical: MNXM49575 - - sbo: SBO:0000247 + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - - id: s_3525 - - name: diglyceride (1-16:0, 2-18:1) - - compartment: mm - - formula: C37H70O5 + - id: "s_3525" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88454 - - metanetx.chemical: MNXM49380 - - sbo: SBO:0000247 + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - - id: s_3526 - - name: diglyceride (1-16:1, 2-18:1) - - compartment: mm - - formula: C37H68O5 + - id: "s_3526" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88500 - - metanetx.chemical: MNXM49417 - - sbo: SBO:0000247 + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - - id: s_3527 - - name: phosphatidate (1-16:0, 2-16:1) - - compartment: ce - - formula: C35H67O8P + - id: "s_3527" + - name: "phosphatidate (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C35H67O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:73998 - - metanetx.chemical: MNXM66470 - - sbo: SBO:0000247 + - chebi: "CHEBI:73998" + - metanetx.chemical: "MNXM66470" + - sbo: "SBO:0000247" - !!omap - - id: s_3528 - - name: phosphatidate (1-16:1, 2-16:1) - - compartment: ce - - formula: C35H65O8P + - id: "s_3528" + - name: "phosphatidate (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C35H65O8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pa161 - - chebi: CHEBI:75071 - - metanetx.chemical: MNXM66504 - - sbo: SBO:0000247 + - bigg.metabolite: "pa161" + - chebi: "CHEBI:75071" + - metanetx.chemical: "MNXM66504" + - sbo: "SBO:0000247" - !!omap - - id: s_3529 - - name: phosphatidate (1-18:0, 2-16:1) - - compartment: ce - - formula: C37H71O8P + - id: "s_3529" + - name: "phosphatidate (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75073 - - metanetx.chemical: MNXM66631 - - sbo: SBO:0000247 + - chebi: "CHEBI:75073" + - metanetx.chemical: "MNXM66631" + - sbo: "SBO:0000247" - !!omap - - id: s_3530 - - name: phosphatidate (1-18:1, 2-16:1) - - compartment: ce - - formula: C37H69O8P + - id: "s_3530" + - name: "phosphatidate (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75074 - - metanetx.chemical: MNXM66663 - - sbo: SBO:0000247 + - chebi: "CHEBI:75074" + - metanetx.chemical: "MNXM66663" + - sbo: "SBO:0000247" - !!omap - - id: s_3531 - - name: phosphatidate (1-16:0, 2-18:1) - - compartment: ce - - formula: C37H71O8P + - id: "s_3531" + - name: "phosphatidate (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:64844 - - kegg.compound: C13889 - - metanetx.chemical: MNXM66476 - - sbo: SBO:0000247 + - chebi: "CHEBI:64844" + - kegg.compound: "C13889" + - metanetx.chemical: "MNXM66476" + - sbo: "SBO:0000247" - !!omap - - id: s_3532 - - name: phosphatidate (1-16:1, 2-18:1) - - compartment: ce - - formula: C37H69O8P + - id: "s_3532" + - name: "phosphatidate (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM66509 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM66509" + - sbo: "SBO:0000247" - !!omap - - id: s_3533 - - name: phosphatidate (1-18:0, 2-18:1) - - compartment: ce - - formula: C39H75O8P + - id: "s_3533" + - name: "phosphatidate (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C39H75O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:74847 - - metanetx.chemical: MNXM66635 - - sbo: SBO:0000247 + - chebi: "CHEBI:74847" + - metanetx.chemical: "MNXM66635" + - sbo: "SBO:0000247" - !!omap - - id: s_3534 - - name: phosphatidate (1-18:1, 2-18:1) - - compartment: ce - - formula: C39H73O8P + - id: "s_3534" + - name: "phosphatidate (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C39H73O8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:83775 - - metanetx.chemical: MNXM51075 - - sbo: SBO:0000247 + - chebi: "CHEBI:83775" + - metanetx.chemical: "MNXM51075" + - sbo: "SBO:0000247" - !!omap - - id: s_3535 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) - - compartment: ce - - formula: C41H78O16P2 + - id: "s_3535" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3536 - - name: phosphate - - compartment: ce - - formula: HO4P + - id: "s_3536" + - name: "phosphate" + - compartment: "ce" + - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pi - - chebi: CHEBI:43474 - - kegg.compound: C00009 - - metanetx.chemical: MNXM9 - - sbo: SBO:0000247 + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - - id: s_3537 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) - - compartment: ce - - formula: C41H76O16P2 + - id: "s_3537" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail3p161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail3p161" + - sbo: "SBO:0000247" - !!omap - - id: s_3538 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) - - compartment: ce - - formula: C43H82O16P2 + - id: "s_3538" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3539 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) - - compartment: ce - - formula: C43H80O16P2 + - id: "s_3539" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3540 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) - - compartment: ce - - formula: C43H82O16P2 + - id: "s_3540" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3541 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) - - compartment: ce - - formula: C43H80O16P2 + - id: "s_3541" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3542 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) - - compartment: ce - - formula: C45H86O16P2 + - id: "s_3542" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77347 - - sbo: SBO:0000247 + - chebi: "CHEBI:77347" + - sbo: "SBO:0000247" - !!omap - - id: s_3543 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) - - compartment: ce - - formula: C45H84O16P2 + - id: "s_3543" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77344 - - sbo: SBO:0000247 + - chebi: "CHEBI:77344" + - sbo: "SBO:0000247" - !!omap - - id: s_3544 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) - - compartment: c - - formula: C41H78O16P2 + - id: "s_3544" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" + - compartment: "c" + - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3545 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) - - compartment: c - - formula: C41H77O13P + - id: "s_3545" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" + - compartment: "c" + - formula: "C41H77O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88396 - - metanetx.chemical: MNXM75492 - - sbo: SBO:0000247 + - chebi: "CHEBI:88396" + - metanetx.chemical: "MNXM75492" + - sbo: "SBO:0000247" - !!omap - - id: s_3546 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) - - compartment: c - - formula: C41H76O16P2 + - id: "s_3546" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" + - compartment: "c" + - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail3p161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail3p161" + - sbo: "SBO:0000247" - !!omap - - id: s_3547 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) - - compartment: c - - formula: C41H75O13P + - id: "s_3547" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" + - compartment: "c" + - formula: "C41H75O13P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail161" + - sbo: "SBO:0000247" - !!omap - - id: s_3548 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) - - compartment: c - - formula: C43H82O16P2 + - id: "s_3548" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" + - compartment: "c" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3549 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) - - compartment: c - - formula: C43H81O13P + - id: "s_3549" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" + - compartment: "c" + - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88557 - - metanetx.chemical: MNXM75665 - - sbo: SBO:0000247 + - chebi: "CHEBI:88557" + - metanetx.chemical: "MNXM75665" + - sbo: "SBO:0000247" - !!omap - - id: s_3550 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) - - compartment: c - - formula: C43H80O16P2 + - id: "s_3550" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" + - compartment: "c" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3551 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) - - compartment: c - - formula: C43H79O13P + - id: "s_3551" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" + - compartment: "c" + - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88626 - - sbo: SBO:0000247 + - chebi: "CHEBI:88626" + - sbo: "SBO:0000247" - !!omap - - id: s_3552 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) - - compartment: c - - formula: C43H82O16P2 + - id: "s_3552" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" + - compartment: "c" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3553 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) - - compartment: c - - formula: C43H81O13P + - id: "s_3553" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" + - compartment: "c" + - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:73215 - - kegg.compound: C13888 - - metanetx.chemical: MNXM75499 - - sbo: SBO:0000247 + - chebi: "CHEBI:73215" + - kegg.compound: "C13888" + - metanetx.chemical: "MNXM75499" + - sbo: "SBO:0000247" - !!omap - - id: s_3554 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) - - compartment: c - - formula: C43H80O16P2 + - id: "s_3554" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" + - compartment: "c" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3555 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) - - compartment: c - - formula: C43H79O13P + - id: "s_3555" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" + - compartment: "c" + - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88562 - - sbo: SBO:0000247 + - chebi: "CHEBI:88562" + - sbo: "SBO:0000247" - !!omap - - id: s_3556 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) - - compartment: c - - formula: C45H86O16P2 + - id: "s_3556" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" + - compartment: "c" + - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77347 - - sbo: SBO:0000247 + - chebi: "CHEBI:77347" + - sbo: "SBO:0000247" - !!omap - - id: s_3557 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) - - compartment: c - - formula: C45H85O13P + - id: "s_3557" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" + - compartment: "c" + - formula: "C45H85O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77346 - - metanetx.chemical: MNXM75671 - - sbo: SBO:0000247 + - chebi: "CHEBI:77346" + - metanetx.chemical: "MNXM75671" + - sbo: "SBO:0000247" - !!omap - - id: s_3558 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) - - compartment: c - - formula: C45H84O16P2 + - id: "s_3558" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" + - compartment: "c" + - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77344 - - sbo: SBO:0000247 + - chebi: "CHEBI:77344" + - sbo: "SBO:0000247" - !!omap - - id: s_3559 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) - - compartment: c - - formula: C45H83O13P + - id: "s_3559" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" + - compartment: "c" + - formula: "C45H83O13P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88612 - - sbo: SBO:0000247 + - chebi: "CHEBI:88612" + - sbo: "SBO:0000247" - !!omap - - id: s_3560 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) - - compartment: erm - - formula: C41H78O16P2 + - id: "s_3560" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3561 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) - - compartment: erm - - formula: C41H76O16P2 + - id: "s_3561" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail3p161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail3p161" + - sbo: "SBO:0000247" - !!omap - - id: s_3562 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) - - compartment: erm - - formula: C43H82O16P2 + - id: "s_3562" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3563 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) - - compartment: erm - - formula: C43H80O16P2 + - id: "s_3563" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3564 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) - - compartment: erm - - formula: C43H82O16P2 + - id: "s_3564" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3565 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) - - compartment: erm - - formula: C43H80O16P2 + - id: "s_3565" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3566 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) - - compartment: erm - - formula: C45H86O16P2 + - id: "s_3566" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77347 - - sbo: SBO:0000247 + - chebi: "CHEBI:77347" + - sbo: "SBO:0000247" - !!omap - - id: s_3567 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) - - compartment: erm - - formula: C45H84O16P2 + - id: "s_3567" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77344 - - sbo: SBO:0000247 + - chebi: "CHEBI:77344" + - sbo: "SBO:0000247" - !!omap - - id: s_3568 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) - - compartment: gm - - formula: C41H78O16P2 + - id: "s_3568" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3569 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) - - compartment: gm - - formula: C41H76O16P2 + - id: "s_3569" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail3p161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail3p161" + - sbo: "SBO:0000247" - !!omap - - id: s_3570 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) - - compartment: gm - - formula: C43H82O16P2 + - id: "s_3570" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3571 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) - - compartment: gm - - formula: C43H80O16P2 + - id: "s_3571" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3572 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) - - compartment: gm - - formula: C43H82O16P2 + - id: "s_3572" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3573 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) - - compartment: gm - - formula: C43H80O16P2 + - id: "s_3573" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3574 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) - - compartment: gm - - formula: C45H86O16P2 + - id: "s_3574" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77347 - - sbo: SBO:0000247 + - chebi: "CHEBI:77347" + - sbo: "SBO:0000247" - !!omap - - id: s_3575 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) - - compartment: gm - - formula: C45H84O16P2 + - id: "s_3575" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77344 - - sbo: SBO:0000247 + - chebi: "CHEBI:77344" + - sbo: "SBO:0000247" - !!omap - - id: s_3576 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) - - compartment: c - - formula: C41H78O16P2 + - id: "s_3576" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" + - compartment: "c" + - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3577 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) - - compartment: c - - formula: C41H76O16P2 + - id: "s_3577" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" + - compartment: "c" + - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail4p161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail4p161" + - sbo: "SBO:0000247" - !!omap - - id: s_3578 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) - - compartment: c - - formula: C43H82O16P2 + - id: "s_3578" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" + - compartment: "c" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3579 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) - - compartment: c - - formula: C43H80O16P2 + - id: "s_3579" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" + - compartment: "c" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3580 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) - - compartment: c - - formula: C43H82O16P2 + - id: "s_3580" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" + - compartment: "c" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3581 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) - - compartment: c - - formula: C43H80O16P2 + - id: "s_3581" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" + - compartment: "c" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3582 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) - - compartment: c - - formula: C45H86O16P2 + - id: "s_3582" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" + - compartment: "c" + - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77277 - - sbo: SBO:0000247 + - chebi: "CHEBI:77277" + - sbo: "SBO:0000247" - !!omap - - id: s_3583 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) - - compartment: c - - formula: C45H84O16P2 + - id: "s_3583" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" + - compartment: "c" + - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3584 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) - - compartment: erm - - formula: C41H78O16P2 + - id: "s_3584" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3585 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) - - compartment: erm - - formula: C41H76O16P2 + - id: "s_3585" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pail4p161 - - sbo: SBO:0000247 + - bigg.metabolite: "pail4p161" + - sbo: "SBO:0000247" - !!omap - - id: s_3586 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) - - compartment: erm - - formula: C43H82O16P2 + - id: "s_3586" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3587 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) - - compartment: erm - - formula: C43H80O16P2 + - id: "s_3587" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3588 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) - - compartment: erm - - formula: C43H82O16P2 + - id: "s_3588" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3589 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) - - compartment: erm - - formula: C43H80O16P2 + - id: "s_3589" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3590 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) - - compartment: erm - - formula: C45H86O16P2 + - id: "s_3590" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77277 - - sbo: SBO:0000247 + - chebi: "CHEBI:77277" + - sbo: "SBO:0000247" - !!omap - - id: s_3591 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) - - compartment: erm - - formula: C45H84O16P2 + - id: "s_3591" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3592 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) - - compartment: ce - - formula: C41H79O19P3 + - id: "s_3592" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3593 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) - - compartment: ce - - formula: C41H77O19P3 + - id: "s_3593" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3594 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) - - compartment: ce - - formula: C43H83O19P3 + - id: "s_3594" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3595 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) - - compartment: ce - - formula: C43H81O19P3 + - id: "s_3595" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3596 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) - - compartment: ce - - formula: C43H83O19P3 + - id: "s_3596" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3597 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) - - compartment: ce - - formula: C43H81O19P3 + - id: "s_3597" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3598 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) - - compartment: ce - - formula: C45H87O19P3 + - id: "s_3598" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3599 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) - - compartment: ce - - formula: C45H85O19P3 + - id: "s_3599" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3600 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) - - compartment: c - - formula: C41H79O19P3 + - id: "s_3600" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "c" + - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3601 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) - - compartment: c - - formula: C41H77O19P3 + - id: "s_3601" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "c" + - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3602 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) - - compartment: c - - formula: C43H83O19P3 + - id: "s_3602" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "c" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3603 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) - - compartment: c - - formula: C43H81O19P3 + - id: "s_3603" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "c" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3604 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) - - compartment: c - - formula: C43H83O19P3 + - id: "s_3604" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "c" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3605 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) - - compartment: c - - formula: C43H81O19P3 + - id: "s_3605" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "c" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3606 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) - - compartment: c - - formula: C45H87O19P3 + - id: "s_3606" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "c" + - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3607 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) - - compartment: c - - formula: C45H85O19P3 + - id: "s_3607" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "c" + - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3608 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) - - compartment: erm - - formula: C41H79O19P3 + - id: "s_3608" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3609 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) - - compartment: erm - - formula: C41H77O19P3 + - id: "s_3609" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3610 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) - - compartment: erm - - formula: C43H83O19P3 + - id: "s_3610" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3611 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) - - compartment: erm - - formula: C43H81O19P3 + - id: "s_3611" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3612 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) - - compartment: erm - - formula: C43H83O19P3 + - id: "s_3612" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3613 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) - - compartment: erm - - formula: C43H81O19P3 + - id: "s_3613" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3614 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) - - compartment: erm - - formula: C45H87O19P3 + - id: "s_3614" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - chebi: CHEBI:77279 - - sbo: SBO:0000247 + - chebi: "CHEBI:77279" + - sbo: "SBO:0000247" - !!omap - - id: s_3615 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) - - compartment: erm - - formula: C45H85O19P3 + - id: "s_3615" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3616 - - name: 1,2-diacylglycerol 3-diphosphate (1-16:0, 2-16:1) - - compartment: vm - - formula: C35H68O11P2 + - id: "s_3616" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C35H68O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3617 - - name: 1,2-diacylglycerol 3-diphosphate (1-16:1, 2-16:1) - - compartment: vm - - formula: C35H66O11P2 + - id: "s_3617" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C35H66O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3618 - - name: 1,2-diacylglycerol 3-diphosphate (1-18:0, 2-16:1) - - compartment: vm - - formula: C37H72O11P2 + - id: "s_3618" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C37H72O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3619 - - name: 1,2-diacylglycerol 3-diphosphate (1-18:1, 2-16:1) - - compartment: vm - - formula: C37H70O11P2 + - id: "s_3619" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C37H70O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3620 - - name: 1,2-diacylglycerol 3-diphosphate (1-16:0, 2-18:1) - - compartment: vm - - formula: C37H72O11P2 + - id: "s_3620" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C37H72O11P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:34087 - - kegg.compound: C13890 - - sbo: SBO:0000247 + - chebi: "CHEBI:34087" + - kegg.compound: "C13890" + - sbo: "SBO:0000247" - !!omap - - id: s_3621 - - name: 1,2-diacylglycerol 3-diphosphate (1-16:1, 2-18:1) - - compartment: vm - - formula: C37H70O11P2 + - id: "s_3621" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C37H70O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3622 - - name: 1,2-diacylglycerol 3-diphosphate (1-18:0, 2-18:1) - - compartment: vm - - formula: C39H76O11P2 + - id: "s_3622" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C39H76O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3623 - - name: 1,2-diacylglycerol 3-diphosphate (1-18:1, 2-18:1) - - compartment: vm - - formula: C39H74O11P2 + - id: "s_3623" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C39H74O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3624 - - name: 1,2-diacylglycerol 3-diphosphate (1-16:0, 2-16:1) - - compartment: gm - - formula: C35H68O11P2 + - id: "s_3624" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C35H68O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3625 - - name: 1,2-diacylglycerol 3-diphosphate (1-16:1, 2-16:1) - - compartment: gm - - formula: C35H66O11P2 + - id: "s_3625" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C35H66O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3626 - - name: 1,2-diacylglycerol 3-diphosphate (1-18:0, 2-16:1) - - compartment: gm - - formula: C37H72O11P2 + - id: "s_3626" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C37H72O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3627 - - name: 1,2-diacylglycerol 3-diphosphate (1-18:1, 2-16:1) - - compartment: gm - - formula: C37H70O11P2 + - id: "s_3627" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C37H70O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3628 - - name: 1,2-diacylglycerol 3-diphosphate (1-16:0, 2-18:1) - - compartment: gm - - formula: C37H72O11P2 + - id: "s_3628" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C37H72O11P2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:34087 - - kegg.compound: C13890 - - sbo: SBO:0000247 + - chebi: "CHEBI:34087" + - kegg.compound: "C13890" + - sbo: "SBO:0000247" - !!omap - - id: s_3629 - - name: 1,2-diacylglycerol 3-diphosphate (1-16:1, 2-18:1) - - compartment: gm - - formula: C37H70O11P2 + - id: "s_3629" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C37H70O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3630 - - name: 1,2-diacylglycerol 3-diphosphate (1-18:0, 2-18:1) - - compartment: gm - - formula: C39H76O11P2 + - id: "s_3630" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C39H76O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3631 - - name: 1,2-diacylglycerol 3-diphosphate (1-18:1, 2-18:1) - - compartment: gm - - formula: C39H74O11P2 + - id: "s_3631" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C39H74O11P2" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3632 - - name: 1-acyl-sn-glycerol 3-phosphate (16:0) - - compartment: c - - formula: C19H39O7P + - id: "s_3632" + - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" + - compartment: "c" + - formula: "C19H39O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1hdecg3p - - chebi: CHEBI:15799 - - kegg.compound: C04036 - - metanetx.chemical: MNXM2455 - - sbo: SBO:0000247 + - bigg.metabolite: "1hdecg3p" + - chebi: "CHEBI:15799" + - kegg.compound: "C04036" + - metanetx.chemical: "MNXM2455" + - sbo: "SBO:0000247" - !!omap - - id: s_3633 - - name: 1-monoglyceride (16:0) - - compartment: c - - formula: C19H38O4 + - id: "s_3633" + - name: "1-monoglyceride (16:0)" + - compartment: "c" + - formula: "C19H38O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: mag160 - - chebi: CHEBI:134127 - - sbo: SBO:0000247 + - bigg.metabolite: "mag160" + - chebi: "CHEBI:134127" + - sbo: "SBO:0000247" - !!omap - - id: s_3634 - - name: 1-acyl-sn-glycerol 3-phosphate (16:1) - - compartment: c - - formula: C19H37O7P + - id: "s_3634" + - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" + - compartment: "c" + - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75070 - - metanetx.chemical: MNXM66496 - - sbo: SBO:0000247 + - chebi: "CHEBI:75070" + - metanetx.chemical: "MNXM66496" + - sbo: "SBO:0000247" - !!omap - - id: s_3635 - - name: 1-monoglyceride (16:1) - - compartment: c - - formula: C19H36O4 + - id: "s_3635" + - name: "1-monoglyceride (16:1)" + - compartment: "c" + - formula: "C19H36O4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134128 - - sbo: SBO:0000247 + - chebi: "CHEBI:134128" + - sbo: "SBO:0000247" - !!omap - - id: s_3636 - - name: 1-acyl-sn-glycerol 3-phosphate (18:0) - - compartment: c - - formula: C21H43O7P + - id: "s_3636" + - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" + - compartment: "c" + - formula: "C21H43O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1odecg3p - - chebi: CHEBI:74850 - - metanetx.chemical: MNXM32950 - - sbo: SBO:0000247 + - bigg.metabolite: "1odecg3p" + - chebi: "CHEBI:74850" + - metanetx.chemical: "MNXM32950" + - sbo: "SBO:0000247" - !!omap - - id: s_3637 - - name: 1-monoglyceride (18:0) - - compartment: c - - formula: C21H42O4 + - id: "s_3637" + - name: "1-monoglyceride (18:0)" + - compartment: "c" + - formula: "C21H42O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: mag180 - - chebi: CHEBI:134129 - - sbo: SBO:0000247 + - bigg.metabolite: "mag180" + - chebi: "CHEBI:134129" + - sbo: "SBO:0000247" - !!omap - - id: s_3638 - - name: 1-acyl-sn-glycerol 3-phosphate (18:1) - - compartment: c - - formula: C21H41O7P + - id: "s_3638" + - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" + - compartment: "c" + - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62837 - - metanetx.chemical: MNXM32960 - - sbo: SBO:0000247 + - chebi: "CHEBI:62837" + - metanetx.chemical: "MNXM32960" + - sbo: "SBO:0000247" - !!omap - - id: s_3639 - - name: 1-monoglyceride (18:1) - - compartment: c - - formula: C21H40O4 + - id: "s_3639" + - name: "1-monoglyceride (18:1)" + - compartment: "c" + - formula: "C21H40O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: magole_hs - - chebi: CHEBI:134130 - - sbo: SBO:0000247 + - bigg.metabolite: "magole_hs" + - chebi: "CHEBI:134130" + - sbo: "SBO:0000247" - !!omap - - id: s_3640 - - name: 1-acyl-sn-glycerol 3-phosphate (16:0) - - compartment: vm - - formula: C19H39O7P + - id: "s_3640" + - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" + - compartment: "vm" + - formula: "C19H39O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1hdecg3p - - chebi: CHEBI:15799 - - kegg.compound: C04036 - - metanetx.chemical: MNXM2455 - - sbo: SBO:0000247 + - bigg.metabolite: "1hdecg3p" + - chebi: "CHEBI:15799" + - kegg.compound: "C04036" + - metanetx.chemical: "MNXM2455" + - sbo: "SBO:0000247" - !!omap - - id: s_3641 - - name: 1-monoglyceride (16:0) - - compartment: vm - - formula: C19H38O4 + - id: "s_3641" + - name: "1-monoglyceride (16:0)" + - compartment: "vm" + - formula: "C19H38O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: mag160 - - chebi: CHEBI:134127 - - sbo: SBO:0000247 + - bigg.metabolite: "mag160" + - chebi: "CHEBI:134127" + - sbo: "SBO:0000247" - !!omap - - id: s_3642 - - name: 1-acyl-sn-glycerol 3-phosphate (16:1) - - compartment: vm - - formula: C19H37O7P + - id: "s_3642" + - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" + - compartment: "vm" + - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75070 - - metanetx.chemical: MNXM66496 - - sbo: SBO:0000247 + - chebi: "CHEBI:75070" + - metanetx.chemical: "MNXM66496" + - sbo: "SBO:0000247" - !!omap - - id: s_3643 - - name: 1-monoglyceride (16:1) - - compartment: vm - - formula: C19H36O4 + - id: "s_3643" + - name: "1-monoglyceride (16:1)" + - compartment: "vm" + - formula: "C19H36O4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134128 - - sbo: SBO:0000247 + - chebi: "CHEBI:134128" + - sbo: "SBO:0000247" - !!omap - - id: s_3644 - - name: 1-acyl-sn-glycerol 3-phosphate (18:0) - - compartment: vm - - formula: C21H43O7P + - id: "s_3644" + - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" + - compartment: "vm" + - formula: "C21H43O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1odecg3p - - chebi: CHEBI:74850 - - metanetx.chemical: MNXM32950 - - sbo: SBO:0000247 + - bigg.metabolite: "1odecg3p" + - chebi: "CHEBI:74850" + - metanetx.chemical: "MNXM32950" + - sbo: "SBO:0000247" - !!omap - - id: s_3645 - - name: 1-monoglyceride (18:0) - - compartment: vm - - formula: C21H42O4 + - id: "s_3645" + - name: "1-monoglyceride (18:0)" + - compartment: "vm" + - formula: "C21H42O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: mag180 - - chebi: CHEBI:134129 - - sbo: SBO:0000247 + - bigg.metabolite: "mag180" + - chebi: "CHEBI:134129" + - sbo: "SBO:0000247" - !!omap - - id: s_3646 - - name: 1-acyl-sn-glycerol 3-phosphate (18:1) - - compartment: vm - - formula: C21H41O7P + - id: "s_3646" + - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" + - compartment: "vm" + - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62837 - - metanetx.chemical: MNXM32960 - - sbo: SBO:0000247 + - chebi: "CHEBI:62837" + - metanetx.chemical: "MNXM32960" + - sbo: "SBO:0000247" - !!omap - - id: s_3647 - - name: 1-monoglyceride (18:1) - - compartment: vm - - formula: C21H40O4 + - id: "s_3647" + - name: "1-monoglyceride (18:1)" + - compartment: "vm" + - formula: "C21H40O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: magole_hs - - chebi: CHEBI:134130 - - sbo: SBO:0000247 + - bigg.metabolite: "magole_hs" + - chebi: "CHEBI:134130" + - sbo: "SBO:0000247" - !!omap - - id: s_3648 - - name: 1-acyl-sn-glycerol 3-phosphate (16:0) - - compartment: gm - - formula: C19H39O7P + - id: "s_3648" + - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" + - compartment: "gm" + - formula: "C19H39O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1hdecg3p - - chebi: CHEBI:15799 - - kegg.compound: C04036 - - metanetx.chemical: MNXM2455 - - sbo: SBO:0000247 + - bigg.metabolite: "1hdecg3p" + - chebi: "CHEBI:15799" + - kegg.compound: "C04036" + - metanetx.chemical: "MNXM2455" + - sbo: "SBO:0000247" - !!omap - - id: s_3649 - - name: 1-monoglyceride (16:0) - - compartment: gm - - formula: C19H38O4 + - id: "s_3649" + - name: "1-monoglyceride (16:0)" + - compartment: "gm" + - formula: "C19H38O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: mag160 - - chebi: CHEBI:134127 - - sbo: SBO:0000247 + - bigg.metabolite: "mag160" + - chebi: "CHEBI:134127" + - sbo: "SBO:0000247" - !!omap - - id: s_3650 - - name: 1-acyl-sn-glycerol 3-phosphate (16:1) - - compartment: gm - - formula: C19H37O7P + - id: "s_3650" + - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" + - compartment: "gm" + - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75070 - - metanetx.chemical: MNXM66496 - - sbo: SBO:0000247 + - chebi: "CHEBI:75070" + - metanetx.chemical: "MNXM66496" + - sbo: "SBO:0000247" - !!omap - - id: s_3651 - - name: 1-monoglyceride (16:1) - - compartment: gm - - formula: C19H36O4 + - id: "s_3651" + - name: "1-monoglyceride (16:1)" + - compartment: "gm" + - formula: "C19H36O4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134128 - - sbo: SBO:0000247 + - chebi: "CHEBI:134128" + - sbo: "SBO:0000247" - !!omap - - id: s_3652 - - name: 1-acyl-sn-glycerol 3-phosphate (18:0) - - compartment: gm - - formula: C21H43O7P + - id: "s_3652" + - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" + - compartment: "gm" + - formula: "C21H43O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1odecg3p - - chebi: CHEBI:74850 - - metanetx.chemical: MNXM32950 - - sbo: SBO:0000247 + - bigg.metabolite: "1odecg3p" + - chebi: "CHEBI:74850" + - metanetx.chemical: "MNXM32950" + - sbo: "SBO:0000247" - !!omap - - id: s_3653 - - name: 1-monoglyceride (18:0) - - compartment: gm - - formula: C21H42O4 + - id: "s_3653" + - name: "1-monoglyceride (18:0)" + - compartment: "gm" + - formula: "C21H42O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: mag180 - - chebi: CHEBI:134129 - - sbo: SBO:0000247 + - bigg.metabolite: "mag180" + - chebi: "CHEBI:134129" + - sbo: "SBO:0000247" - !!omap - - id: s_3654 - - name: 1-acyl-sn-glycerol 3-phosphate (18:1) - - compartment: gm - - formula: C21H41O7P + - id: "s_3654" + - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" + - compartment: "gm" + - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:62837 - - metanetx.chemical: MNXM32960 - - sbo: SBO:0000247 + - chebi: "CHEBI:62837" + - metanetx.chemical: "MNXM32960" + - sbo: "SBO:0000247" - !!omap - - id: s_3655 - - name: 1-monoglyceride (18:1) - - compartment: gm - - formula: C21H40O4 + - id: "s_3655" + - name: "1-monoglyceride (18:1)" + - compartment: "gm" + - formula: "C21H40O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: magole_hs - - chebi: CHEBI:134130 - - sbo: SBO:0000247 + - bigg.metabolite: "magole_hs" + - chebi: "CHEBI:134130" + - sbo: "SBO:0000247" - !!omap - - id: s_3656 - - name: ergosteryl palmitoleate - - compartment: lp - - formula: C44H72O2 + - id: "s_3656" + - name: "ergosteryl palmitoleate" + - compartment: "lp" + - formula: "C44H72O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52378 - - metanetx.chemical: MNXM52467 - - sbo: SBO:0000247 + - chebi: "CHEBI:52378" + - metanetx.chemical: "MNXM52467" + - sbo: "SBO:0000247" - !!omap - - id: s_3657 - - name: H2O - - compartment: lp - - formula: H2O + - id: "s_3657" + - name: "H2O" + - compartment: "lp" + - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: h2o - - chebi: CHEBI:15377 - - kegg.compound: C00001 - - metanetx.chemical: MNXM2 - - sbo: SBO:0000247 + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - - id: s_3658 - - name: ergosteryl oleate - - compartment: lp - - formula: C46H76O2 + - id: "s_3658" + - name: "ergosteryl oleate" + - compartment: "lp" + - formula: "C46H76O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52377 - - metanetx.chemical: MNXM52466 - - sbo: SBO:0000247 + - chebi: "CHEBI:52377" + - metanetx.chemical: "MNXM52466" + - sbo: "SBO:0000247" - !!omap - - id: s_3659 - - name: episteryl palmitoleate - - compartment: lp - - formula: C44H74O2 + - id: "s_3659" + - name: "episteryl palmitoleate" + - compartment: "lp" + - formula: "C44H74O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52376 - - metanetx.chemical: MNXM52369 - - sbo: SBO:0000247 + - chebi: "CHEBI:52376" + - metanetx.chemical: "MNXM52369" + - sbo: "SBO:0000247" - !!omap - - id: s_3660 - - name: episterol - - compartment: lp - - formula: C28H46O + - id: "s_3660" + - name: "episterol" + - compartment: "lp" + - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: epist - - chebi: CHEBI:23929 - - kegg.compound: C15777 - - metanetx.chemical: MNXM52365 - - sbo: SBO:0000247 + - bigg.metabolite: "epist" + - chebi: "CHEBI:23929" + - kegg.compound: "C15777" + - metanetx.chemical: "MNXM52365" + - sbo: "SBO:0000247" - !!omap - - id: s_3661 - - name: episteryl oleate - - compartment: lp - - formula: C46H78O2 + - id: "s_3661" + - name: "episteryl oleate" + - compartment: "lp" + - formula: "C46H78O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52375 - - metanetx.chemical: MNXM52367 - - sbo: SBO:0000247 + - chebi: "CHEBI:52375" + - metanetx.chemical: "MNXM52367" + - sbo: "SBO:0000247" - !!omap - - id: s_3662 - - name: fecosteryl palmitoleate - - compartment: lp - - formula: C44H74O2 + - id: "s_3662" + - name: "fecosteryl palmitoleate" + - compartment: "lp" + - formula: "C44H74O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52380 - - metanetx.chemical: MNXM53171 - - sbo: SBO:0000247 + - chebi: "CHEBI:52380" + - metanetx.chemical: "MNXM53171" + - sbo: "SBO:0000247" - !!omap - - id: s_3663 - - name: fecosteryl oleate - - compartment: lp - - formula: C46H78O2 + - id: "s_3663" + - name: "fecosteryl oleate" + - compartment: "lp" + - formula: "C46H78O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52379 - - metanetx.chemical: MNXM53170 - - sbo: SBO:0000247 + - chebi: "CHEBI:52379" + - metanetx.chemical: "MNXM53170" + - sbo: "SBO:0000247" - !!omap - - id: s_3664 - - name: lanosteryl palmitoleate - - compartment: lp - - formula: C46H78O2 + - id: "s_3664" + - name: "lanosteryl palmitoleate" + - compartment: "lp" + - formula: "C46H78O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52383 - - metanetx.chemical: MNXM59727 - - sbo: SBO:0000247 + - chebi: "CHEBI:52383" + - metanetx.chemical: "MNXM59727" + - sbo: "SBO:0000247" - !!omap - - id: s_3665 - - name: lanosterol - - compartment: lp - - formula: C30H50O + - id: "s_3665" + - name: "lanosterol" + - compartment: "lp" + - formula: "C30H50O" - charge: 0 - annotation: !!omap - - bigg.metabolite: lanost - - chebi: CHEBI:16521 - - kegg.compound: C01724 - - metanetx.chemical: MNXM482 - - sbo: SBO:0000247 + - bigg.metabolite: "lanost" + - chebi: "CHEBI:16521" + - kegg.compound: "C01724" + - metanetx.chemical: "MNXM482" + - sbo: "SBO:0000247" - !!omap - - id: s_3666 - - name: lanosteryl oleate - - compartment: lp - - formula: C48H82O2 + - id: "s_3666" + - name: "lanosteryl oleate" + - compartment: "lp" + - formula: "C48H82O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52382 - - metanetx.chemical: MNXM59726 - - sbo: SBO:0000247 + - chebi: "CHEBI:52382" + - metanetx.chemical: "MNXM59726" + - sbo: "SBO:0000247" - !!omap - - id: s_3667 - - name: zymosteryl palmitoleate - - compartment: lp - - formula: C43H72O2 + - id: "s_3667" + - name: "zymosteryl palmitoleate" + - compartment: "lp" + - formula: "C43H72O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52385 - - metanetx.chemical: MNXM89473 - - sbo: SBO:0000247 + - chebi: "CHEBI:52385" + - metanetx.chemical: "MNXM89473" + - sbo: "SBO:0000247" - !!omap - - id: s_3668 - - name: zymosteryl oleate - - compartment: lp - - formula: C45H76O2 + - id: "s_3668" + - name: "zymosteryl oleate" + - compartment: "lp" + - formula: "C45H76O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52384 - - metanetx.chemical: MNXM89472 - - sbo: SBO:0000247 + - chebi: "CHEBI:52384" + - metanetx.chemical: "MNXM89472" + - sbo: "SBO:0000247" - !!omap - - id: s_3669 - - name: zymosteryl palmitoleate - - compartment: ce - - formula: C43H72O2 + - id: "s_3669" + - name: "zymosteryl palmitoleate" + - compartment: "ce" + - formula: "C43H72O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52385 - - metanetx.chemical: MNXM89473 - - sbo: SBO:0000247 + - chebi: "CHEBI:52385" + - metanetx.chemical: "MNXM89473" + - sbo: "SBO:0000247" - !!omap - - id: s_3670 - - name: zymosteryl oleate - - compartment: ce - - formula: C45H76O2 + - id: "s_3670" + - name: "zymosteryl oleate" + - compartment: "ce" + - formula: "C45H76O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:52384 - - metanetx.chemical: MNXM89472 - - sbo: SBO:0000247 + - chebi: "CHEBI:52384" + - metanetx.chemical: "MNXM89472" + - sbo: "SBO:0000247" - !!omap - - id: s_3671 - - name: 1-monoglyceride (16:0) - - compartment: lp - - formula: C19H38O4 + - id: "s_3671" + - name: "1-monoglyceride (16:0)" + - compartment: "lp" + - formula: "C19H38O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: mag160 - - chebi: CHEBI:134127 - - sbo: SBO:0000247 + - bigg.metabolite: "mag160" + - chebi: "CHEBI:134127" + - sbo: "SBO:0000247" - !!omap - - id: s_3672 - - name: 1-monoglyceride (16:1) - - compartment: lp - - formula: C19H36O4 + - id: "s_3672" + - name: "1-monoglyceride (16:1)" + - compartment: "lp" + - formula: "C19H36O4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134128 - - sbo: SBO:0000247 + - chebi: "CHEBI:134128" + - sbo: "SBO:0000247" - !!omap - - id: s_3673 - - name: 1-monoglyceride (18:0) - - compartment: lp - - formula: C21H42O4 + - id: "s_3673" + - name: "1-monoglyceride (18:0)" + - compartment: "lp" + - formula: "C21H42O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: mag180 - - chebi: CHEBI:134129 - - sbo: SBO:0000247 + - bigg.metabolite: "mag180" + - chebi: "CHEBI:134129" + - sbo: "SBO:0000247" - !!omap - - id: s_3674 - - name: 1-monoglyceride (18:1) - - compartment: lp - - formula: C21H40O4 + - id: "s_3674" + - name: "1-monoglyceride (18:1)" + - compartment: "lp" + - formula: "C21H40O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: magole_hs - - chebi: CHEBI:134130 - - sbo: SBO:0000247 + - bigg.metabolite: "magole_hs" + - chebi: "CHEBI:134130" + - sbo: "SBO:0000247" - !!omap - - id: s_3675 - - name: diglyceride (1-16:0, 2-18:1) - - compartment: m - - formula: C37H70O5 + - id: "s_3675" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "m" + - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88454 - - metanetx.chemical: MNXM49380 - - sbo: SBO:0000247 + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - - id: s_3676 - - name: 1-monoglyceride (16:0) - - compartment: m - - formula: C19H38O4 + - id: "s_3676" + - name: "1-monoglyceride (16:0)" + - compartment: "m" + - formula: "C19H38O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: mag160 - - chebi: CHEBI:134127 - - sbo: SBO:0000247 + - bigg.metabolite: "mag160" + - chebi: "CHEBI:134127" + - sbo: "SBO:0000247" - !!omap - - id: s_3677 - - name: oleate - - compartment: m - - formula: C18H33O2 + - id: "s_3677" + - name: "oleate" + - compartment: "m" + - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: ocdcea - - chebi: CHEBI:30823 - - kegg.compound: C00712 - - metanetx.chemical: MNXM306 - - sbo: SBO:0000247 + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - - id: s_3678 - - name: diglyceride (1-16:1, 2-18:1) - - compartment: m - - formula: C37H68O5 + - id: "s_3678" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "m" + - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88500 - - metanetx.chemical: MNXM49417 - - sbo: SBO:0000247 + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - - id: s_3679 - - name: 1-monoglyceride (16:1) - - compartment: m - - formula: C19H36O4 + - id: "s_3679" + - name: "1-monoglyceride (16:1)" + - compartment: "m" + - formula: "C19H36O4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134128 - - sbo: SBO:0000247 + - chebi: "CHEBI:134128" + - sbo: "SBO:0000247" - !!omap - - id: s_3680 - - name: diglyceride (1-18:0, 2-18:1) - - compartment: m - - formula: C39H74O5 + - id: "s_3680" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "m" + - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75468 - - metanetx.chemical: MNXM49514 - - sbo: SBO:0000247 + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - - id: s_3681 - - name: 1-monoglyceride (18:0) - - compartment: m - - formula: C21H42O4 + - id: "s_3681" + - name: "1-monoglyceride (18:0)" + - compartment: "m" + - formula: "C21H42O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: mag180 - - chebi: CHEBI:134129 - - sbo: SBO:0000247 + - bigg.metabolite: "mag180" + - chebi: "CHEBI:134129" + - sbo: "SBO:0000247" - !!omap - - id: s_3682 - - name: diglyceride (1-18:1, 2-18:1) - - compartment: m - - formula: C39H72O5 + - id: "s_3682" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "m" + - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 12dgr181 - - chebi: CHEBI:52333 - - metanetx.chemical: MNXM9533 - - sbo: SBO:0000247 + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - - id: s_3683 - - name: 1-monoglyceride (18:1) - - compartment: m - - formula: C21H40O4 + - id: "s_3683" + - name: "1-monoglyceride (18:1)" + - compartment: "m" + - formula: "C21H40O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: magole_hs - - chebi: CHEBI:134130 - - sbo: SBO:0000247 + - bigg.metabolite: "magole_hs" + - chebi: "CHEBI:134130" + - sbo: "SBO:0000247" - !!omap - - id: s_3684 - - name: glycerol - - compartment: lp - - formula: C3H8O3 + - id: "s_3684" + - name: "glycerol" + - compartment: "lp" + - formula: "C3H8O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: glyc - - chebi: CHEBI:17754 - - kegg.compound: C00116 - - metanetx.chemical: MNXM89612 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc" + - chebi: "CHEBI:17754" + - kegg.compound: "C00116" + - metanetx.chemical: "MNXM89612" + - sbo: "SBO:0000247" - !!omap - - id: s_3685 - - name: 1-acylglycerophosphoethanolamine (16:0) - - compartment: lp - - formula: C21H44NO7P + - id: "s_3685" + - name: "1-acylglycerophosphoethanolamine (16:0)" + - compartment: "lp" + - formula: "C21H44NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpe160 - - chebi: CHEBI:90452 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpe160" + - chebi: "CHEBI:90452" + - sbo: "SBO:0000247" - !!omap - - id: s_3686 - - name: phosphatidylethanolamine (1-16:0, 2-18:1) - - compartment: lp - - formula: C39H76NO8P + - id: "s_3686" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" + - compartment: "lp" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136148 - - sbo: SBO:0000247 + - chebi: "CHEBI:136148" + - sbo: "SBO:0000247" - !!omap - - id: s_3687 - - name: 1-acylglycerophosphoethanolamine (16:1) - - compartment: lp - - formula: C21H42NO7P + - id: "s_3687" + - name: "1-acylglycerophosphoethanolamine (16:1)" + - compartment: "lp" + - formula: "C21H42NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpe161 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpe161" + - sbo: "SBO:0000247" - !!omap - - id: s_3688 - - name: phosphatidylethanolamine (1-16:1, 2-18:1) - - compartment: lp - - formula: C39H74NO8P + - id: "s_3688" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" + - compartment: "lp" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:90464 - - sbo: SBO:0000247 + - chebi: "CHEBI:90464" + - sbo: "SBO:0000247" - !!omap - - id: s_3689 - - name: 1-acylglycerophosphoethanolamine (18:0) - - compartment: lp - - formula: C23H48NO7P + - id: "s_3689" + - name: "1-acylglycerophosphoethanolamine (18:0)" + - compartment: "lp" + - formula: "C23H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpe180 - - chebi: CHEBI:64576 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpe180" + - chebi: "CHEBI:64576" + - sbo: "SBO:0000247" - !!omap - - id: s_3690 - - name: phosphatidylethanolamine (1-18:0, 2-18:1) - - compartment: lp - - formula: C41H80NO8P + - id: "s_3690" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" + - compartment: "lp" + - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136162 - - sbo: SBO:0000247 + - chebi: "CHEBI:136162" + - sbo: "SBO:0000247" - !!omap - - id: s_3691 - - name: 1-acylglycerophosphoethanolamine (18:1) - - compartment: lp - - formula: C23H46NO7P + - id: "s_3691" + - name: "1-acylglycerophosphoethanolamine (18:1)" + - compartment: "lp" + - formula: "C23H46NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpe181 - - chebi: CHEBI:64575 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpe181" + - chebi: "CHEBI:64575" + - sbo: "SBO:0000247" - !!omap - - id: s_3692 - - name: phosphatidylethanolamine (1-18:1, 2-18:1) - - compartment: lp - - formula: C41H78NO8P + - id: "s_3692" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" + - compartment: "lp" + - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136170 - - sbo: SBO:0000247 + - chebi: "CHEBI:136170" + - sbo: "SBO:0000247" - !!omap - - id: s_3693 - - name: phosphatidylcholine (1-16:0, 2-16:1) - - compartment: lp - - formula: C40H78NO8P + - id: "s_3693" + - name: "phosphatidylcholine (1-16:0, 2-16:1)" + - compartment: "lp" + - formula: "C40H78NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134592 - - sbo: SBO:0000247 + - chebi: "CHEBI:134592" + - sbo: "SBO:0000247" - !!omap - - id: s_3694 - - name: 1-acylglycerophosphocholine (16:0) - - compartment: lp - - formula: C24H50NO7P + - id: "s_3694" + - name: "1-acylglycerophosphocholine (16:0)" + - compartment: "lp" + - formula: "C24H50NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc160 - - chebi: CHEBI:72998 - - kegg.compound: C04102 - - metanetx.chemical: MNXM32510 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc160" + - chebi: "CHEBI:72998" + - kegg.compound: "C04102" + - metanetx.chemical: "MNXM32510" + - sbo: "SBO:0000247" - !!omap - - id: s_3695 - - name: phosphatidylcholine (1-16:1, 2-16:1) - - compartment: lp - - formula: C40H76NO8P + - id: "s_3695" + - name: "phosphatidylcholine (1-16:1, 2-16:1)" + - compartment: "lp" + - formula: "C40H76NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pc161 - - chebi: CHEBI:83717 - - metanetx.chemical: MNXM69377 - - sbo: SBO:0000247 + - bigg.metabolite: "pc161" + - chebi: "CHEBI:83717" + - metanetx.chemical: "MNXM69377" + - sbo: "SBO:0000247" - !!omap - - id: s_3696 - - name: 1-acylglycerophosphocholine (16:1) - - compartment: lp - - formula: C24H48NO7P + - id: "s_3696" + - name: "1-acylglycerophosphocholine (16:1)" + - compartment: "lp" + - formula: "C24H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc161 - - chebi: CHEBI:73851 - - metanetx.chemical: MNXM32519 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc161" + - chebi: "CHEBI:73851" + - metanetx.chemical: "MNXM32519" + - sbo: "SBO:0000247" - !!omap - - id: s_3697 - - name: phosphatidylcholine (1-18:0, 2-16:1) - - compartment: lp - - formula: C42H82NO8P + - id: "s_3697" + - name: "phosphatidylcholine (1-18:0, 2-16:1)" + - compartment: "lp" + - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:86097 - - metanetx.chemical: MNXM69528 - - sbo: SBO:0000247 + - chebi: "CHEBI:86097" + - metanetx.chemical: "MNXM69528" + - sbo: "SBO:0000247" - !!omap - - id: s_3698 - - name: 1-acylglycerophosphocholine (18:0) - - compartment: lp - - formula: C26H54NO7P + - id: "s_3698" + - name: "1-acylglycerophosphocholine (18:0)" + - compartment: "lp" + - formula: "C26H54NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc180 - - chebi: CHEBI:73858 - - metanetx.chemical: MNXM32545 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc180" + - chebi: "CHEBI:73858" + - metanetx.chemical: "MNXM32545" + - sbo: "SBO:0000247" - !!omap - - id: s_3699 - - name: phosphatidylcholine (1-18:1, 2-16:1) - - compartment: lp - - formula: C42H80NO8P + - id: "s_3699" + - name: "phosphatidylcholine (1-18:1, 2-16:1)" + - compartment: "lp" + - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:86100 - - metanetx.chemical: MNXM69658 - - sbo: SBO:0000247 + - chebi: "CHEBI:86100" + - metanetx.chemical: "MNXM69658" + - sbo: "SBO:0000247" - !!omap - - id: s_3700 - - name: 1-acylglycerophosphocholine (18:1) - - compartment: lp - - formula: C26H52NO7P + - id: "s_3700" + - name: "1-acylglycerophosphocholine (18:1)" + - compartment: "lp" + - formula: "C26H52NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: 1agpc181 - - chebi: CHEBI:28610 - - kegg.compound: C03916 - - metanetx.chemical: MNXM13872 - - sbo: SBO:0000247 + - bigg.metabolite: "1agpc181" + - chebi: "CHEBI:28610" + - kegg.compound: "C03916" + - metanetx.chemical: "MNXM13872" + - sbo: "SBO:0000247" - !!omap - - id: s_3701 - - name: phosphatidylcholine (1-16:0, 2-18:1) - - compartment: lp - - formula: C42H82NO8P + - id: "s_3701" + - name: "phosphatidylcholine (1-16:0, 2-18:1)" + - compartment: "lp" + - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:134594 - - sbo: SBO:0000247 + - chebi: "CHEBI:134594" + - sbo: "SBO:0000247" - !!omap - - id: s_3702 - - name: phosphatidylcholine (1-16:1, 2-18:1) - - compartment: lp - - formula: C42H80NO8P + - id: "s_3702" + - name: "phosphatidylcholine (1-16:1, 2-18:1)" + - compartment: "lp" + - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:84811 - - metanetx.chemical: MNXM69383 - - sbo: SBO:0000247 + - chebi: "CHEBI:84811" + - metanetx.chemical: "MNXM69383" + - sbo: "SBO:0000247" - !!omap - - id: s_3703 - - name: phosphatidylcholine (1-18:0, 2-18:1) - - compartment: lp - - formula: C44H86NO8P + - id: "s_3703" + - name: "phosphatidylcholine (1-18:0, 2-18:1)" + - compartment: "lp" + - formula: "C44H86NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75034 - - metanetx.chemical: MNXM32526 - - sbo: SBO:0000247 + - chebi: "CHEBI:75034" + - metanetx.chemical: "MNXM32526" + - sbo: "SBO:0000247" - !!omap - - id: s_3704 - - name: phosphatidylcholine (1-18:1, 2-18:1) - - compartment: lp - - formula: C44H84NO8P + - id: "s_3704" + - name: "phosphatidylcholine (1-18:1, 2-18:1)" + - compartment: "lp" + - formula: "C44H84NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:74669 - - metanetx.chemical: MNXM8549 - - sbo: SBO:0000247 + - chebi: "CHEBI:74669" + - metanetx.chemical: "MNXM8549" + - sbo: "SBO:0000247" - !!omap - - id: s_3705 - - name: phosphatidylethanolamine (1-16:0, 2-16:1) - - compartment: lp - - formula: C37H72NO8P + - id: "s_3705" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" + - compartment: "lp" + - formula: "C37H72NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136147 - - sbo: SBO:0000247 + - chebi: "CHEBI:136147" + - sbo: "SBO:0000247" - !!omap - - id: s_3706 - - name: phosphatidylethanolamine (1-16:1, 2-16:1) - - compartment: lp - - formula: C37H70NO8P + - id: "s_3706" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" + - compartment: "lp" + - formula: "C37H70NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pe161 - - chebi: CHEBI:138792 - - sbo: SBO:0000247 + - bigg.metabolite: "pe161" + - chebi: "CHEBI:138792" + - sbo: "SBO:0000247" - !!omap - - id: s_3707 - - name: phosphatidylethanolamine (1-18:0, 2-16:1) - - compartment: lp - - formula: C39H76NO8P + - id: "s_3707" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" + - compartment: "lp" + - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:136155 - - sbo: SBO:0000247 + - chebi: "CHEBI:136155" + - sbo: "SBO:0000247" - !!omap - - id: s_3708 - - name: phosphatidylethanolamine (1-18:1, 2-16:1) - - compartment: lp - - formula: C39H74NO8P + - id: "s_3708" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" + - compartment: "lp" + - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: CHEBI:82837 - - metanetx.chemical: MNXM71684 - - sbo: SBO:0000247 + - chebi: "CHEBI:82837" + - metanetx.chemical: "MNXM71684" + - sbo: "SBO:0000247" - !!omap - - id: s_3709 - - name: ergosterol ester backbone - - compartment: erm - - formula: C28H42 + - id: "s_3709" + - name: "ergosterol ester backbone" + - compartment: "erm" + - formula: "C28H42" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM5739 - - sbo: SBO:0000649 + - metanetx.chemical: "MNXM5739" + - sbo: "SBO:0000649" - !!omap - - id: s_3710 - - name: phosphatidyl-L-serine backbone - - compartment: erm - - formula: C6H10NO6P + - id: "s_3710" + - name: "phosphatidyl-L-serine backbone" + - compartment: "erm" + - formula: "C6H10NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: ps_cho - - kegg.compound: C02737 - - metanetx.chemical: MNXM221 - - sbo: SBO:0000649 + - bigg.metabolite: "ps_cho" + - kegg.compound: "C02737" + - metanetx.chemical: "MNXM221" + - sbo: "SBO:0000649" - !!omap - - id: s_3711 - - name: phosphatidylcholine backbone - - compartment: erm - - formula: C8H16NO3P + - id: "s_3711" + - name: "phosphatidylcholine backbone" + - compartment: "erm" + - formula: "C8H16NO3P" - charge: 1 - annotation: !!omap - - bigg.metabolite: pchol_cho - - kegg.compound: C00157 - - metanetx.chemical: MNXM96952 - - sbo: SBO:0000649 + - bigg.metabolite: "pchol_cho" + - kegg.compound: "C00157" + - metanetx.chemical: "MNXM96952" + - sbo: "SBO:0000649" - !!omap - - id: s_3712 - - name: phosphatidylethanolamine backbone - - compartment: erm - - formula: C5H10NO4P + - id: "s_3712" + - name: "phosphatidylethanolamine backbone" + - compartment: "erm" + - formula: "C5H10NO4P" - charge: 0 - annotation: !!omap - - bigg.metabolite: pe_hs - - kegg.compound: C00350 - - metanetx.chemical: MNXM115 - - sbo: SBO:0000649 + - bigg.metabolite: "pe_hs" + - kegg.compound: "C00350" + - metanetx.chemical: "MNXM115" + - sbo: "SBO:0000649" - !!omap - - id: s_3713 - - name: triglyceride backbone - - compartment: erm - - formula: C3H2 + - id: "s_3713" + - name: "triglyceride backbone" + - compartment: "erm" + - formula: "C3H2" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag_cho - - kegg.compound: C00422 - - metanetx.chemical: MNXM248 - - sbo: SBO:0000649 + - bigg.metabolite: "tag_cho" + - kegg.compound: "C00422" + - metanetx.chemical: "MNXM248" + - sbo: "SBO:0000649" - !!omap - - id: s_3714 - - name: heme a - - compartment: c - - formula: C49H55FeN4O6 + - id: "s_3714" + - name: "heme a" + - compartment: "c" + - formula: "C49H55FeN4O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: hemeA - - chebi: CHEBI:24479 - - kegg.compound: C15670 - - metanetx.chemical: MNXM53309 - - sbo: SBO:0000247 + - bigg.metabolite: "hemeA" + - chebi: "CHEBI:24479" + - kegg.compound: "C15670" + - metanetx.chemical: "MNXM53309" + - sbo: "SBO:0000247" - !!omap - - id: s_3715 - - name: raffinose - - compartment: e - - formula: C18H32O16 + - id: "s_3715" + - name: "raffinose" + - compartment: "e" + - formula: "C18H32O16" - charge: 0 - annotation: !!omap - - bigg.metabolite: raffin - - chebi: CHEBI:16634 - - kegg.compound: C00492 - - metanetx.chemical: MNXM621 - - sbo: SBO:0000247 + - bigg.metabolite: "raffin" + - chebi: "CHEBI:16634" + - kegg.compound: "C00492" + - metanetx.chemical: "MNXM621" + - sbo: "SBO:0000247" - !!omap - - id: s_3716 - - name: melibiose - - compartment: e - - formula: C12H22O11 + - id: "s_3716" + - name: "melibiose" + - compartment: "e" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: melib - - chebi: CHEBI:28053 - - kegg.compound: C05402 - - metanetx.chemical: MNXM1434 - - sbo: SBO:0000247 + - bigg.metabolite: "melib" + - chebi: "CHEBI:28053" + - kegg.compound: "C05402" + - metanetx.chemical: "MNXM1434" + - sbo: "SBO:0000247" - !!omap - - id: s_3717 - - name: protein - - compartment: c + - id: "s_3717" + - name: "protein" + - compartment: "c" + - formula: "" - annotation: !!omap - - bigg.metabolite: protein - - kegg.compound: C00492 - - metanetx.chemical: MNXM621 - - sbo: SBO:0000649 + - bigg.metabolite: "protein" + - kegg.compound: "C00492" + - metanetx.chemical: "MNXM621" + - sbo: "SBO:0000649" - !!omap - - id: s_3718 - - name: carbohydrate - - compartment: c + - id: "s_3718" + - name: "carbohydrate" + - compartment: "c" + - formula: "" - annotation: !!omap - - kegg.compound: C05402 - - metanetx.chemical: MNXM1434 - - sbo: SBO:0000649 + - kegg.compound: "C05402" + - metanetx.chemical: "MNXM1434" + - sbo: "SBO:0000649" - !!omap - - id: s_3719 - - name: RNA - - compartment: c + - id: "s_3719" + - name: "RNA" + - compartment: "c" + - formula: "" - annotation: !!omap - - bigg.metabolite: rna - - sbo: SBO:0000649 + - bigg.metabolite: "rna" + - sbo: "SBO:0000649" - !!omap - - id: s_3720 - - name: DNA - - compartment: c + - id: "s_3720" + - name: "DNA" + - compartment: "c" + - formula: "" - annotation: !!omap - - bigg.metabolite: dna - - sbo: SBO:0000649 + - bigg.metabolite: "dna" + - sbo: "SBO:0000649" - !!omap - - id: s_3721 - - name: ceramide backbone - - compartment: g - - formula: HNO2 + - id: "s_3721" + - name: "ceramide backbone" + - compartment: "g" + - formula: "HNO2" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3722 - - name: ceramide backbone - - compartment: c - - formula: HNO2 + - id: "s_3722" + - name: "ceramide backbone" + - compartment: "c" + - formula: "HNO2" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3723 - - name: inositol phosphomannosylinositol phosphoceramide backbone - - compartment: c - - formula: C18H33NO23P2 + - id: "s_3723" + - name: "inositol phosphomannosylinositol phosphoceramide backbone" + - compartment: "c" + - formula: "C18H33NO23P2" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3724 - - name: inositol-P-ceramide backbone - - compartment: c - - formula: C6H12NO10P + - id: "s_3724" + - name: "inositol-P-ceramide backbone" + - compartment: "c" + - formula: "C6H12NO10P" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3725 - - name: mannosylinositol phosphorylceramide backbone - - compartment: c - - formula: C12H22NO15P + - id: "s_3725" + - name: "mannosylinositol phosphorylceramide backbone" + - compartment: "c" + - formula: "C12H22NO15P" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3726 - - name: long-chain base backbone - - compartment: er - - formula: H4N + - id: "s_3726" + - name: "long-chain base backbone" + - compartment: "er" + - formula: "H4N" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3727 - - name: long-chain base backbone - - compartment: c - - formula: H4N + - id: "s_3727" + - name: "long-chain base backbone" + - compartment: "c" + - formula: "H4N" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3728 - - name: long-chain base phosphate backbone - - compartment: er - - formula: H3NO3P + - id: "s_3728" + - name: "long-chain base phosphate backbone" + - compartment: "er" + - formula: "H3NO3P" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3729 - - name: long-chain base phosphate backbone - - compartment: c - - formula: H3NO3P + - id: "s_3729" + - name: "long-chain base phosphate backbone" + - compartment: "c" + - formula: "H3NO3P" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3730 - - name: phosphatidate backbone - - compartment: erm - - formula: C3H5O4P + - id: "s_3730" + - name: "phosphatidate backbone" + - compartment: "erm" + - formula: "C3H5O4P" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3731 - - name: phosphatidate backbone - - compartment: c - - formula: C3H5O4P + - id: "s_3731" + - name: "phosphatidate backbone" + - compartment: "c" + - formula: "C3H5O4P" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3732 - - name: diglyceride backbone - - compartment: erm - - formula: C3H4O + - id: "s_3732" + - name: "diglyceride backbone" + - compartment: "erm" + - formula: "C3H4O" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3733 - - name: diglyceride backbone - - compartment: c - - formula: C3H4O + - id: "s_3733" + - name: "diglyceride backbone" + - compartment: "c" + - formula: "C3H4O" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3734 - - name: sn-2-acyl-1-lysophosphatidylinositol backbone - - compartment: erm - - formula: C9H11O10P + - id: "s_3734" + - name: "sn-2-acyl-1-lysophosphatidylinositol backbone" + - compartment: "erm" + - formula: "C9H11O10P" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3735 - - name: sn-2-acyl-1-lysophosphatidylinositol backbone - - compartment: c - - formula: C9H11O10P + - id: "s_3735" + - name: "sn-2-acyl-1-lysophosphatidylinositol backbone" + - compartment: "c" + - formula: "C9H11O10P" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3736 - - name: phosphatidylglycerol backbone - - compartment: mm - - formula: C6H11O6P + - id: "s_3736" + - name: "phosphatidylglycerol backbone" + - compartment: "mm" + - formula: "C6H11O6P" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3737 - - name: phosphatidylglycerol backbone - - compartment: c - - formula: C6H11O6P + - id: "s_3737" + - name: "phosphatidylglycerol backbone" + - compartment: "c" + - formula: "C6H11O6P" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3738 - - name: cardiolipin backbone - - compartment: mm - - formula: C9H14O9P2 + - id: "s_3738" + - name: "cardiolipin backbone" + - compartment: "mm" + - formula: "C9H14O9P2" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3739 - - name: cardiolipin backbone - - compartment: c - - formula: C9H14O9P2 + - id: "s_3739" + - name: "cardiolipin backbone" + - compartment: "c" + - formula: "C9H14O9P2" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3740 - - name: C16:0 chain - - compartment: c - - formula: C16H32O2 + - id: "s_3740" + - name: "C16:0 chain" + - compartment: "c" + - formula: "C16H32O2" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3741 - - name: C16:1 chain - - compartment: c - - formula: C16H30O2 + - id: "s_3741" + - name: "C16:1 chain" + - compartment: "c" + - formula: "C16H30O2" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3742 - - name: C18:0 chain - - compartment: c - - formula: C18H36O2 + - id: "s_3742" + - name: "C18:0 chain" + - compartment: "c" + - formula: "C18H36O2" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3743 - - name: C18:1 chain - - compartment: c - - formula: C18H34O2 + - id: "s_3743" + - name: "C18:1 chain" + - compartment: "c" + - formula: "C18H34O2" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3744 - - name: C24:0 chain - - compartment: c - - formula: C24H48O2 + - id: "s_3744" + - name: "C24:0 chain" + - compartment: "c" + - formula: "C24H48O2" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3745 - - name: C26:0 chain - - compartment: c - - formula: C26H52O2 + - id: "s_3745" + - name: "C26:0 chain" + - compartment: "c" + - formula: "C26H52O2" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3746 - - name: lipid backbone - - compartment: c + - id: "s_3746" + - name: "lipid backbone" + - compartment: "c" + - formula: "" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3747 - - name: lipid chain - - compartment: c + - id: "s_3747" + - name: "lipid chain" + - compartment: "c" + - formula: "" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_3748 - - name: Cytochrome c - - compartment: m - - formula: C40H40FeN6O6S2 + - id: "s_3748" + - name: "Cytochrome c" + - compartment: "m" + - formula: "C40H40FeN6O6S2" - charge: -2 - annotation: !!omap - - bigg.metabolite: cytc - - chebi: CHEBI:83739 - - kegg.compound: C00524 - - sbo: SBO:0000247 + - bigg.metabolite: "cytc" + - chebi: "CHEBI:83739" + - kegg.compound: "C00524" + - sbo: "SBO:0000247" - !!omap - - id: s_3749 - - name: Apocytochrome c - - compartment: m - - formula: C6H10N2O2S2 + - id: "s_3749" + - name: "Apocytochrome c" + - compartment: "m" + - formula: "C6H10N2O2S2" - charge: 0 - annotation: !!omap - - bigg.metabolite: apocytc - - chebi: CHEBI:15697 - - kegg.compound: C02248 - - metanetx.chemical: MNXM2100 - - sbo: SBO:0000247 + - bigg.metabolite: "apocytc" + - chebi: "CHEBI:15697" + - kegg.compound: "C02248" + - metanetx.chemical: "MNXM2100" + - sbo: "SBO:0000247" - !!omap - - id: s_3750 - - name: diacetyl - - compartment: c - - formula: C4H6O2 + - id: "s_3750" + - name: "diacetyl" + - compartment: "c" + - formula: "C4H6O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: diact - - chebi: CHEBI:16583 - - kegg.compound: C00741 - - metanetx.chemical: MNXM1467 - - sbo: SBO:0000247 + - bigg.metabolite: "diact" + - chebi: "CHEBI:16583" + - kegg.compound: "C00741" + - metanetx.chemical: "MNXM1467" + - sbo: "SBO:0000247" - !!omap - - id: s_3751 - - name: (R)-acetoin - - compartment: n - - formula: C4H8O2 + - id: "s_3751" + - name: "(R)-acetoin" + - compartment: "n" + - formula: "C4H8O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: actn__R - - chebi: CHEBI:15686 - - kegg.compound: C00810 - - metanetx.chemical: MNXM664 - - sbo: SBO:0000247 + - bigg.metabolite: "actn__R" + - chebi: "CHEBI:15686" + - kegg.compound: "C00810" + - metanetx.chemical: "MNXM664" + - sbo: "SBO:0000247" - !!omap - - id: s_3752 - - name: diacetyl - - compartment: n - - formula: C4H6O2 + - id: "s_3752" + - name: "diacetyl" + - compartment: "n" + - formula: "C4H6O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: diact - - chebi: CHEBI:16583 - - kegg.compound: C00741 - - metanetx.chemical: MNXM1467 - - sbo: SBO:0000247 + - bigg.metabolite: "diact" + - chebi: "CHEBI:16583" + - kegg.compound: "C00741" + - metanetx.chemical: "MNXM1467" + - sbo: "SBO:0000247" - !!omap - - id: s_3753 - - name: NADH - - compartment: n - - formula: C21H27N7O14P2 + - id: "s_3753" + - name: "NADH" + - compartment: "n" + - formula: "C21H27N7O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: nadh - - chebi: CHEBI:57945 - - kegg.compound: C00004 - - metanetx.chemical: MNXM10 - - sbo: SBO:0000247 + - bigg.metabolite: "nadh" + - chebi: "CHEBI:57945" + - kegg.compound: "C00004" + - metanetx.chemical: "MNXM10" + - sbo: "SBO:0000247" - !!omap - - id: s_3754 - - name: L-glutamyl-tRNA(Gln) - - compartment: m - - formula: C5H8NO3R + - id: "s_3754" + - name: "L-glutamyl-tRNA(Gln)" + - compartment: "m" + - formula: "C5H8NO3R" - charge: 0 - annotation: !!omap - - bigg.metabolite: glutrna_gln - - chebi: CHEBI:29165 - - kegg.compound: C06112 - - metanetx.chemical: MNXM91213 - - sbo: SBO:0000247 + - bigg.metabolite: "glutrna_gln" + - chebi: "CHEBI:29165" + - kegg.compound: "C06112" + - metanetx.chemical: "MNXM91213" + - sbo: "SBO:0000247" - !!omap - - id: s_3755 - - name: L-glutamine - - compartment: m - - formula: C5H10N2O3 + - id: "s_3755" + - name: "L-glutamine" + - compartment: "m" + - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: gln__L - - chebi: CHEBI:18050 - - kegg.compound: C00064 - - metanetx.chemical: MNXM37 - - sbo: SBO:0000247 + - bigg.metabolite: "gln__L" + - chebi: "CHEBI:18050" + - kegg.compound: "C00064" + - metanetx.chemical: "MNXM37" + - sbo: "SBO:0000247" - !!omap - - id: s_3756 - - name: Gln-tRNA(Gln) - - compartment: m - - formula: C5H10N2O2R + - id: "s_3756" + - name: "Gln-tRNA(Gln)" + - compartment: "m" + - formula: "C5H10N2O2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: glntrna - - chebi: CHEBI:29166 - - kegg.compound: C02282 - - metanetx.chemical: MNXM89810 - - sbo: SBO:0000247 + - bigg.metabolite: "glntrna" + - chebi: "CHEBI:29166" + - kegg.compound: "C02282" + - metanetx.chemical: "MNXM89810" + - sbo: "SBO:0000247" - !!omap - - id: s_3757 - - name: Met-Ala - - compartment: v - - formula: C8H16N2O3S + - id: "s_3757" + - name: "Met-Ala" + - compartment: "v" + - formula: "C8H16N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: met_L_ala__L - - chebi: CHEBI:73610 - - metanetx.chemical: MNXM61647 - - sbo: SBO:0000247 + - bigg.metabolite: "met_L_ala__L" + - chebi: "CHEBI:73610" + - metanetx.chemical: "MNXM61647" + - sbo: "SBO:0000247" - !!omap - - id: s_3758 - - name: L-methionine - - compartment: v - - formula: C5H11NO2S + - id: "s_3758" + - name: "L-methionine" + - compartment: "v" + - formula: "C5H11NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: met__L - - chebi: CHEBI:16643 - - kegg.compound: C00073 - - metanetx.chemical: MNXM61 - - sbo: SBO:0000247 + - bigg.metabolite: "met__L" + - chebi: "CHEBI:16643" + - kegg.compound: "C00073" + - metanetx.chemical: "MNXM61" + - sbo: "SBO:0000247" - !!omap - - id: s_3759 - - name: L-alanine - - compartment: v - - formula: C3H7NO2 + - id: "s_3759" + - name: "L-alanine" + - compartment: "v" + - formula: "C3H7NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala__L - - chebi: CHEBI:16977 - - kegg.compound: C00041 - - metanetx.chemical: MNXM32 - - sbo: SBO:0000247 + - bigg.metabolite: "ala__L" + - chebi: "CHEBI:16977" + - kegg.compound: "C00041" + - metanetx.chemical: "MNXM32" + - sbo: "SBO:0000247" - !!omap - - id: s_3760 - - name: ADP-D-ribose 1''-phosphate - - compartment: c - - formula: C15H20N5O17P3 + - id: "s_3760" + - name: "ADP-D-ribose 1''-phosphate" + - compartment: "c" + - formula: "C15H20N5O17P3" - charge: -4 - annotation: !!omap - - chebi: CHEBI:58753 - - metanetx.chemical: MNXM5039 - - sbo: SBO:0000247 + - chebi: "CHEBI:58753" + - metanetx.chemical: "MNXM5039" + - sbo: "SBO:0000247" - !!omap - - id: s_3761 - - name: ADP-ribose - - compartment: c - - formula: C15H21N5O14P2 + - id: "s_3761" + - name: "ADP-ribose" + - compartment: "c" + - formula: "C15H21N5O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: adprib - - chebi: CHEBI:57967 - - kegg.compound: C00301 - - metanetx.chemical: MNXM48596 - - sbo: SBO:0000247 + - bigg.metabolite: "adprib" + - chebi: "CHEBI:57967" + - kegg.compound: "C00301" + - metanetx.chemical: "MNXM48596" + - sbo: "SBO:0000247" - !!omap - - id: s_3762 - - name: quinone - - compartment: c - - formula: C6H4O2 + - id: "s_3762" + - name: "quinone" + - compartment: "c" + - formula: "C6H4O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:16509 - - kegg.compound: C00472 - - metanetx.chemical: MNXM769 - - sbo: SBO:0000247 + - chebi: "CHEBI:16509" + - kegg.compound: "C00472" + - metanetx.chemical: "MNXM769" + - sbo: "SBO:0000247" - !!omap - - id: s_3763 - - name: 1,4-benzosemiquinone - - compartment: c - - formula: C6H5O2 + - id: "s_3763" + - name: "1,4-benzosemiquinone" + - compartment: "c" + - formula: "C6H5O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17977 - - kegg.compound: C02389 - - metanetx.chemical: MNXM7107 - - sbo: SBO:0000247 + - chebi: "CHEBI:17977" + - kegg.compound: "C02389" + - metanetx.chemical: "MNXM7107" + - sbo: "SBO:0000247" - !!omap - - id: s_3764 - - name: UDP-N-acetyl-alpha-D-glucosamine - - compartment: er - - formula: C17H25N3O17P2 + - id: "s_3764" + - name: "UDP-N-acetyl-alpha-D-glucosamine" + - compartment: "er" + - formula: "C17H25N3O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: uacgam - - chebi: CHEBI:57705 - - kegg.compound: C00043 - - metanetx.chemical: MNXM47 - - sbo: SBO:0000247 + - bigg.metabolite: "uacgam" + - chebi: "CHEBI:57705" + - kegg.compound: "C00043" + - metanetx.chemical: "MNXM47" + - sbo: "SBO:0000247" - !!omap - - id: s_3765 - - name: N-Acetyl-D-glucosaminyldiphosphodolichol - - compartment: er - - formula: C28H51NO12P2R + - id: "s_3765" + - name: "N-Acetyl-D-glucosaminyldiphosphodolichol" + - compartment: "er" + - formula: "C28H51NO12P2R" - charge: 0 - annotation: !!omap - - bigg.metabolite: naglc2p - - chebi: CHEBI:18278 - - kegg.compound: C04500 - - metanetx.chemical: MNXM818 - - sbo: SBO:0000247 + - bigg.metabolite: "naglc2p" + - chebi: "CHEBI:18278" + - kegg.compound: "C04500" + - metanetx.chemical: "MNXM818" + - sbo: "SBO:0000247" - !!omap - - id: s_3766 - - name: UDP - - compartment: er - - formula: C9H11N2O12P2 + - id: "s_3766" + - name: "UDP" + - compartment: "er" + - formula: "C9H11N2O12P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: udp - - chebi: CHEBI:58223 - - kegg.compound: C00015 - - metanetx.chemical: MNXM17 - - sbo: SBO:0000247 + - bigg.metabolite: "udp" + - chebi: "CHEBI:58223" + - kegg.compound: "C00015" + - metanetx.chemical: "MNXM17" + - sbo: "SBO:0000247" - !!omap - - id: s_3767 - - name: N,N'-Chitobiosyldiphosphodolichol - - compartment: er - - formula: C36H64N2O17P2R + - id: "s_3767" + - name: "N,N'-Chitobiosyldiphosphodolichol" + - compartment: "er" + - formula: "C36H64N2O17P2R" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3768 - - name: D-ribofuranose 5-phosphate - - compartment: c - - formula: C5H9O8P + - id: "s_3768" + - name: "D-ribofuranose 5-phosphate" + - compartment: "c" + - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:78346 - - kegg.compound: C00117 - - metanetx.chemical: MNXM722712 - - sbo: SBO:0000247 + - chebi: "CHEBI:78346" + - kegg.compound: "C00117" + - metanetx.chemical: "MNXM722712" + - sbo: "SBO:0000247" - !!omap - - id: s_3769 - - name: Oxalate - - compartment: p - - formula: C2O4 + - id: "s_3769" + - name: "Oxalate" + - compartment: "p" + - formula: "C2O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: oxa - - chebi: CHEBI:30623 - - kegg.compound: C00209 - - metanetx.chemical: MNXM291 - - sbo: SBO:0000247 + - bigg.metabolite: "oxa" + - chebi: "CHEBI:30623" + - kegg.compound: "C00209" + - metanetx.chemical: "MNXM291" + - sbo: "SBO:0000247" - !!omap - - id: s_3770 - - name: Oxalyl-CoA - - compartment: p - - formula: C23H31N7O19P3S + - id: "s_3770" + - name: "Oxalyl-CoA" + - compartment: "p" + - formula: "C23H31N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: oxalcoa - - chebi: CHEBI:57388 - - kegg.compound: C00313 - - metanetx.chemical: MNXM618 - - sbo: SBO:0000247 + - bigg.metabolite: "oxalcoa" + - chebi: "CHEBI:57388" + - kegg.compound: "C00313" + - metanetx.chemical: "MNXM618" + - sbo: "SBO:0000247" - !!omap - - id: s_3771 - - name: G00171 - - compartment: er - - formula: C86H142N4O67R + - id: "s_3771" + - name: "G00171" + - compartment: "er" + - formula: "C86H142N4O67R" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3772 - - name: D-glucose - - compartment: er - - formula: C6H12O6 + - id: "s_3772" + - name: "D-glucose" + - compartment: "er" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: glc__D - - chebi: CHEBI:4167 - - kegg.compound: C00031 - - metanetx.chemical: MNXM41 - - sbo: SBO:0000247 + - bigg.metabolite: "glc__D" + - chebi: "CHEBI:4167" + - kegg.compound: "C00031" + - metanetx.chemical: "MNXM41" + - sbo: "SBO:0000247" - !!omap - - id: s_3773 - - name: G00010 - - compartment: er - - formula: C80H132N4O62R + - id: "s_3773" + - name: "G00010" + - compartment: "er" + - formula: "C80H132N4O62R" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3774 - - name: G00011 - - compartment: er - - formula: C74H122N4O57R + - id: "s_3774" + - name: "G00011" + - compartment: "er" + - formula: "C74H122N4O57R" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM6479 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM6479" + - sbo: "SBO:0000247" - !!omap - - id: s_3775 - - name: sodium - - compartment: v - - formula: Na + - id: "s_3775" + - name: "sodium" + - compartment: "v" + - formula: "Na" - charge: 1 - annotation: !!omap - - bigg.metabolite: na1 - - chebi: CHEBI:29101 - - kegg.compound: C01330 - - metanetx.chemical: MNXM27 - - sbo: SBO:0000247 + - bigg.metabolite: "na1" + - chebi: "CHEBI:29101" + - kegg.compound: "C01330" + - metanetx.chemical: "MNXM27" + - sbo: "SBO:0000247" - !!omap - - id: s_3776 - - name: potassium - - compartment: v - - formula: K + - id: "s_3776" + - name: "potassium" + - compartment: "v" + - formula: "K" - charge: 1 - annotation: !!omap - - bigg.metabolite: k - - chebi: CHEBI:29103 - - kegg.compound: C00238 - - metanetx.chemical: MNXM95 - - sbo: SBO:0000247 + - bigg.metabolite: "k" + - chebi: "CHEBI:29103" + - kegg.compound: "C00238" + - metanetx.chemical: "MNXM95" + - sbo: "SBO:0000247" - !!omap - - id: s_3777 - - name: chloride - - compartment: v - - formula: Cl + - id: "s_3777" + - name: "chloride" + - compartment: "v" + - formula: "Cl" - charge: -1 - annotation: !!omap - - bigg.metabolite: cl - - chebi: CHEBI:17996 - - kegg.compound: C00698 - - metanetx.chemical: MNXM43 - - sbo: SBO:0000247 + - bigg.metabolite: "cl" + - chebi: "CHEBI:17996" + - kegg.compound: "C00698" + - metanetx.chemical: "MNXM43" + - sbo: "SBO:0000247" - !!omap - - id: s_3778 - - name: chloride - - compartment: c - - formula: Cl + - id: "s_3778" + - name: "chloride" + - compartment: "c" + - formula: "Cl" - charge: -1 - annotation: !!omap - - bigg.metabolite: cl - - chebi: CHEBI:17996 - - kegg.compound: C00698 - - metanetx.chemical: MNXM43 - - sbo: SBO:0000247 + - bigg.metabolite: "cl" + - chebi: "CHEBI:17996" + - kegg.compound: "C00698" + - metanetx.chemical: "MNXM43" + - sbo: "SBO:0000247" - !!omap - - id: s_3779 - - name: D-fructose - - compartment: v - - formula: C6H12O6 + - id: "s_3779" + - name: "D-fructose" + - compartment: "v" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: fru - - chebi: CHEBI:15824 - - kegg.compound: C00095 - - metanetx.chemical: MNXM175 - - sbo: SBO:0000247 + - bigg.metabolite: "fru" + - chebi: "CHEBI:15824" + - kegg.compound: "C00095" + - metanetx.chemical: "MNXM175" + - sbo: "SBO:0000247" - !!omap - - id: s_3780 - - name: D-galactose - - compartment: v - - formula: C6H12O6 + - id: "s_3780" + - name: "D-galactose" + - compartment: "v" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: gal - - chebi: CHEBI:4139 - - kegg.compound: C00124 - - metanetx.chemical: MNXM390 - - sbo: SBO:0000247 + - bigg.metabolite: "gal" + - chebi: "CHEBI:4139" + - kegg.compound: "C00124" + - metanetx.chemical: "MNXM390" + - sbo: "SBO:0000247" - !!omap - - id: s_3781 - - name: UMP - - compartment: er - - formula: C9H11N2O9P + - id: "s_3781" + - name: "UMP" + - compartment: "er" + - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: ump - - chebi: CHEBI:57865 - - kegg.compound: C00105 - - metanetx.chemical: MNXM80 - - sbo: SBO:0000247 + - bigg.metabolite: "ump" + - chebi: "CHEBI:57865" + - kegg.compound: "C00105" + - metanetx.chemical: "MNXM80" + - sbo: "SBO:0000247" - !!omap - - id: s_3782 - - name: cadmium(2+) - - compartment: c - - formula: Cd + - id: "s_3782" + - name: "cadmium(2+)" + - compartment: "c" + - formula: "Cd" - charge: 2 - annotation: !!omap - - bigg.metabolite: cd2 - - chebi: CHEBI:48775 - - kegg.compound: C01413 - - metanetx.chemical: MNXM4505 - - sbo: SBO:0000247 + - bigg.metabolite: "cd2" + - chebi: "CHEBI:48775" + - kegg.compound: "C01413" + - metanetx.chemical: "MNXM4505" + - sbo: "SBO:0000247" - !!omap - - id: s_3783 - - name: cadmium(2+) - - compartment: e - - formula: Cd + - id: "s_3783" + - name: "cadmium(2+)" + - compartment: "e" + - formula: "Cd" - charge: 2 - annotation: !!omap - - bigg.metabolite: cd2 - - chebi: CHEBI:48775 - - kegg.compound: C01413 - - metanetx.chemical: MNXM4505 - - sbo: SBO:0000247 + - bigg.metabolite: "cd2" + - chebi: "CHEBI:48775" + - kegg.compound: "C01413" + - metanetx.chemical: "MNXM4505" + - sbo: "SBO:0000247" - !!omap - - id: s_3784 - - name: (sulfur carrier)-H - - compartment: m - - formula: R + - id: "s_3784" + - name: "(sulfur carrier)-H" + - compartment: "m" + - formula: "R" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3785 - - name: L-cysteine - - compartment: m - - formula: C3H7NO2S + - id: "s_3785" + - name: "L-cysteine" + - compartment: "m" + - formula: "C3H7NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: cys__L - - chebi: CHEBI:17561 - - kegg.compound: C00097 - - metanetx.chemical: MNXM55 - - sbo: SBO:0000247 + - bigg.metabolite: "cys__L" + - chebi: "CHEBI:17561" + - kegg.compound: "C00097" + - metanetx.chemical: "MNXM55" + - sbo: "SBO:0000247" - !!omap - - id: s_3786 - - name: (sulfur carrier)-SH - - compartment: m - - formula: SR + - id: "s_3786" + - name: "(sulfur carrier)-SH" + - compartment: "m" + - formula: "SR" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3787 - - name: cholesterol - - compartment: er - - formula: C27H46O + - id: "s_3787" + - name: "cholesterol" + - compartment: "er" + - formula: "C27H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: chsterol - - chebi: CHEBI:16113 - - kegg.compound: C00187 - - metanetx.chemical: MNXM103 - - sbo: SBO:0000247 + - bigg.metabolite: "chsterol" + - chebi: "CHEBI:16113" + - kegg.compound: "C00187" + - metanetx.chemical: "MNXM103" + - sbo: "SBO:0000247" - !!omap - - id: s_3788 - - name: cholesterol - - compartment: erm - - formula: C27H46O + - id: "s_3788" + - name: "cholesterol" + - compartment: "erm" + - formula: "C27H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: chsterol - - chebi: CHEBI:16113 - - kegg.compound: C00187 - - metanetx.chemical: MNXM103 - - sbo: SBO:0000247 + - bigg.metabolite: "chsterol" + - chebi: "CHEBI:16113" + - kegg.compound: "C00187" + - metanetx.chemical: "MNXM103" + - sbo: "SBO:0000247" - !!omap - - id: s_3789 - - name: 3-chlorobenzyl alcohol - - compartment: c - - formula: C7H7ClO + - id: "s_3789" + - name: "3-chlorobenzyl alcohol" + - compartment: "c" + - formula: "C7H7ClO" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3790 - - name: 3-chlorobenzaldehyde - - compartment: c - - formula: C7H5ClO + - id: "s_3790" + - name: "3-chlorobenzaldehyde" + - compartment: "c" + - formula: "C7H5ClO" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3791 - - name: 3-hydroxybenzyl alcohol - - compartment: c - - formula: C7H8O2 + - id: "s_3791" + - name: "3-hydroxybenzyl alcohol" + - compartment: "c" + - formula: "C7H8O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17069 - - kegg.compound: C03351 - - metanetx.chemical: MNXM2785 - - sbo: SBO:0000247 + - chebi: "CHEBI:17069" + - kegg.compound: "C03351" + - metanetx.chemical: "MNXM2785" + - sbo: "SBO:0000247" - !!omap - - id: s_3792 - - name: 3-hydroxybenzaldehyde - - compartment: c - - formula: C7H6O2 + - id: "s_3792" + - name: "3-hydroxybenzaldehyde" + - compartment: "c" + - formula: "C7H6O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:16207 - - kegg.compound: C03067 - - metanetx.chemical: MNXM2483 - - sbo: SBO:0000247 + - chebi: "CHEBI:16207" + - kegg.compound: "C03067" + - metanetx.chemical: "MNXM2483" + - sbo: "SBO:0000247" - !!omap - - id: s_3793 - - name: 3-methylbenzyl alcohol - - compartment: c - - formula: C8H10O + - id: "s_3793" + - name: "3-methylbenzyl alcohol" + - compartment: "c" + - formula: "C8H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 3mbzalc - - chebi: CHEBI:27995 - - kegg.compound: C07216 - - metanetx.chemical: MNXM3486 - - sbo: SBO:0000247 + - bigg.metabolite: "3mbzalc" + - chebi: "CHEBI:27995" + - kegg.compound: "C07216" + - metanetx.chemical: "MNXM3486" + - sbo: "SBO:0000247" - !!omap - - id: s_3794 - - name: 3-methylbenzaldehyde - - compartment: c - - formula: C8H8O + - id: "s_3794" + - name: "3-methylbenzaldehyde" + - compartment: "c" + - formula: "C8H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 3mbzald - - chebi: CHEBI:28476 - - kegg.compound: C07209 - - metanetx.chemical: MNXM4040 - - sbo: SBO:0000247 + - bigg.metabolite: "3mbzald" + - chebi: "CHEBI:28476" + - kegg.compound: "C07209" + - metanetx.chemical: "MNXM4040" + - sbo: "SBO:0000247" - !!omap - - id: s_3795 - - name: 4-isopropylbenzyl alcohol - - compartment: c - - formula: C10H14O + - id: "s_3795" + - name: "4-isopropylbenzyl alcohol" + - compartment: "c" + - formula: "C10H14O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:27628 - - kegg.compound: C06576 - - metanetx.chemical: MNXM5878 - - sbo: SBO:0000247 + - chebi: "CHEBI:27628" + - kegg.compound: "C06576" + - metanetx.chemical: "MNXM5878" + - sbo: "SBO:0000247" - !!omap - - id: s_3796 - - name: p-cumic aldehyde - - compartment: c - - formula: C10H12O + - id: "s_3796" + - name: "p-cumic aldehyde" + - compartment: "c" + - formula: "C10H12O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:28671 - - kegg.compound: C06577 - - metanetx.chemical: MNXM5879 - - sbo: SBO:0000247 + - chebi: "CHEBI:28671" + - kegg.compound: "C06577" + - metanetx.chemical: "MNXM5879" + - sbo: "SBO:0000247" - !!omap - - id: s_3797 - - name: 4-methylbenzyl alcohol - - compartment: c - - formula: C8H10O + - id: "s_3797" + - name: "4-methylbenzyl alcohol" + - compartment: "c" + - formula: "C8H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4mbzalc - - chebi: CHEBI:1895 - - kegg.compound: C06757 - - metanetx.chemical: MNXM3500 - - sbo: SBO:0000247 + - bigg.metabolite: "4mbzalc" + - chebi: "CHEBI:1895" + - kegg.compound: "C06757" + - metanetx.chemical: "MNXM3500" + - sbo: "SBO:0000247" - !!omap - - id: s_3798 - - name: 4-methylbenzaldehyde - - compartment: c - - formula: C8H8O + - id: "s_3798" + - name: "4-methylbenzaldehyde" + - compartment: "c" + - formula: "C8H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4mbzald - - chebi: CHEBI:28617 - - kegg.compound: C06758 - - metanetx.chemical: MNXM4077 - - sbo: SBO:0000247 + - bigg.metabolite: "4mbzald" + - chebi: "CHEBI:28617" + - kegg.compound: "C06758" + - metanetx.chemical: "MNXM4077" + - sbo: "SBO:0000247" - !!omap - - id: s_3799 - - name: benzyl alcohol - - compartment: c - - formula: C7H8O + - id: "s_3799" + - name: "benzyl alcohol" + - compartment: "c" + - formula: "C7H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: bzalc - - chebi: CHEBI:17987 - - kegg.compound: C00556 - - metanetx.chemical: MNXM562 - - sbo: SBO:0000247 + - bigg.metabolite: "bzalc" + - chebi: "CHEBI:17987" + - kegg.compound: "C00556" + - metanetx.chemical: "MNXM562" + - sbo: "SBO:0000247" - !!omap - - id: s_3800 - - name: benzaldehyde - - compartment: c - - formula: C7H6O + - id: "s_3800" + - name: "benzaldehyde" + - compartment: "c" + - formula: "C7H6O" - charge: 0 - annotation: !!omap - - bigg.metabolite: bzal - - chebi: CHEBI:17169 - - kegg.compound: C00261 - - metanetx.chemical: MNXM371 - - sbo: SBO:0000247 + - bigg.metabolite: "bzal" + - chebi: "CHEBI:17169" + - kegg.compound: "C00261" + - metanetx.chemical: "MNXM371" + - sbo: "SBO:0000247" - !!omap - - id: s_3801 - - name: Mn(2+) - - compartment: c - - formula: Mn + - id: "s_3801" + - name: "Mn(2+)" + - compartment: "c" + - formula: "Mn" - charge: 2 - annotation: !!omap - - bigg.metabolite: mn2 - - chebi: CHEBI:29035 - - kegg.compound: C19610 - - metanetx.chemical: MNXM2255 - - sbo: SBO:0000247 + - bigg.metabolite: "mn2" + - chebi: "CHEBI:29035" + - kegg.compound: "C19610" + - metanetx.chemical: "MNXM2255" + - sbo: "SBO:0000247" - !!omap - - id: s_3802 - - name: Mn(2+) - - compartment: er - - formula: Mn + - id: "s_3802" + - name: "Mn(2+)" + - compartment: "er" + - formula: "Mn" - charge: 2 - annotation: !!omap - - bigg.metabolite: mn2 - - chebi: CHEBI:29035 - - kegg.compound: C19610 - - metanetx.chemical: MNXM2255 - - sbo: SBO:0000247 + - bigg.metabolite: "mn2" + - chebi: "CHEBI:29035" + - kegg.compound: "C19610" + - metanetx.chemical: "MNXM2255" + - sbo: "SBO:0000247" - !!omap - - id: s_3805 - - name: Mannitol - - compartment: c - - formula: C6H14O6 + - id: "s_3805" + - name: "Mannitol" + - compartment: "c" + - formula: "C6H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: mnl - - chebi: CHEBI:16899 - - kegg.compound: C00392 - - metanetx.chemical: MNXM615 - - sbo: SBO:0000247 + - bigg.metabolite: "mnl" + - chebi: "CHEBI:16899" + - kegg.compound: "C00392" + - metanetx.chemical: "MNXM615" + - sbo: "SBO:0000247" - !!omap - - id: s_3806 - - name: 4-hydroxy-4-methyl-2-oxoglutarate - - compartment: c - - formula: C6H6O6 + - id: "s_3806" + - name: "4-hydroxy-4-methyl-2-oxoglutarate" + - compartment: "c" + - formula: "C6H6O6" - charge: -2 - annotation: !!omap - - chebi: CHEBI:58276 - - kegg.compound: C06033 - - metanetx.chemical: MNXM2196 - - sbo: SBO:0000247 + - chebi: "CHEBI:58276" + - kegg.compound: "C06033" + - metanetx.chemical: "MNXM2196" + - sbo: "SBO:0000247" - !!omap - - id: s_3807 - - name: L-methionine (S)-S-oxide - - compartment: c - - formula: C5H11NO3S + - id: "s_3807" + - name: "L-methionine (S)-S-oxide" + - compartment: "c" + - formula: "C5H11NO3S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:49031 - - kegg.compound: C15999 - - metanetx.chemical: MNXM722780 - - sbo: SBO:0000247 + - chebi: "CHEBI:49031" + - kegg.compound: "C15999" + - metanetx.chemical: "MNXM722780" + - sbo: "SBO:0000247" - !!omap - - id: s_3808 - - name: tRNA(Pro) - - compartment: m - - formula: RH + - id: "s_3808" + - name: "tRNA(Pro)" + - compartment: "m" + - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: trnapro - - chebi: CHEBI:29177 - - kegg.compound: C01649 - - metanetx.chemical: MNXM90667 - - sbo: SBO:0000247 + - bigg.metabolite: "trnapro" + - chebi: "CHEBI:29177" + - kegg.compound: "C01649" + - metanetx.chemical: "MNXM90667" + - sbo: "SBO:0000247" - !!omap - - id: s_3809 - - name: Pro-tRNA(Pro) - - compartment: m - - formula: C5H9NOR + - id: "s_3809" + - name: "Pro-tRNA(Pro)" + - compartment: "m" + - formula: "C5H9NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: protrna - - chebi: CHEBI:29154 - - kegg.compound: C02702 - - metanetx.chemical: MNXM247 - - sbo: SBO:0000247 + - bigg.metabolite: "protrna" + - chebi: "CHEBI:29154" + - kegg.compound: "C02702" + - metanetx.chemical: "MNXM247" + - sbo: "SBO:0000247" - !!omap - - id: s_3810 - - name: 5-oxo-L-proline - - compartment: c - - formula: C5H6NO3 + - id: "s_3810" + - name: "5-oxo-L-proline" + - compartment: "c" + - formula: "C5H6NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 5oxpro - - chebi: CHEBI:58402 - - kegg.compound: C01879 - - metanetx.chemical: MNXM722719 - - sbo: SBO:0000247 + - bigg.metabolite: "5oxpro" + - chebi: "CHEBI:58402" + - kegg.compound: "C01879" + - metanetx.chemical: "MNXM722719" + - sbo: "SBO:0000247" - !!omap - - id: s_3811 - - name: 4a-Hydroxytetrahydrobiopterin - - compartment: m - - formula: C9H15N5O4 + - id: "s_3811" + - name: "4a-Hydroxytetrahydrobiopterin" + - compartment: "m" + - formula: "C9H15N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: hthbp - - chebi: CHEBI:15642 - - kegg.compound: C15522 - - metanetx.chemical: MNXM31340 - - sbo: SBO:0000247 + - bigg.metabolite: "hthbp" + - chebi: "CHEBI:15642" + - kegg.compound: "C15522" + - metanetx.chemical: "MNXM31340" + - sbo: "SBO:0000247" - !!omap - - id: s_3812 - - name: Dihydrobiopterin - - compartment: m - - formula: C9H13N5O3 + - id: "s_3812" + - name: "Dihydrobiopterin" + - compartment: "m" + - formula: "C9H13N5O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: CE2705 - - chebi: CHEBI:20680 - - kegg.compound: C00268 - - metanetx.chemical: MNXM162257 - - sbo: SBO:0000247 + - bigg.metabolite: "CE2705" + - chebi: "CHEBI:20680" + - kegg.compound: "C00268" + - metanetx.chemical: "MNXM162257" + - sbo: "SBO:0000247" - !!omap - - id: s_3813 - - name: superoxide - - compartment: m - - formula: O2 + - id: "s_3813" + - name: "superoxide" + - compartment: "m" + - formula: "O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: o2s - - chebi: CHEBI:18421 - - kegg.compound: C00704 - - metanetx.chemical: MNXM330 - - sbo: SBO:0000247 + - bigg.metabolite: "o2s" + - chebi: "CHEBI:18421" + - kegg.compound: "C00704" + - metanetx.chemical: "MNXM330" + - sbo: "SBO:0000247" - !!omap - - id: s_3814 - - name: 2-deoxy-D-glucose 6-phosphate - - compartment: c - - formula: C6H11O8P + - id: "s_3814" + - name: "2-deoxy-D-glucose 6-phosphate" + - compartment: "c" + - formula: "C6H11O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 2doxg6p - - chebi: CHEBI:84760 - - kegg.compound: C06369 - - metanetx.chemical: MNXM3809 - - sbo: SBO:0000247 + - bigg.metabolite: "2doxg6p" + - chebi: "CHEBI:84760" + - kegg.compound: "C06369" + - metanetx.chemical: "MNXM3809" + - sbo: "SBO:0000247" - !!omap - - id: s_3815 - - name: 2-deoxy-D-glucose - - compartment: c - - formula: C6H12O5 + - id: "s_3815" + - name: "2-deoxy-D-glucose" + - compartment: "c" + - formula: "C6H12O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: 2dglc - - chebi: CHEBI:84755 - - kegg.compound: C00586 - - metanetx.chemical: MNXM2925 - - sbo: SBO:0000247 + - bigg.metabolite: "2dglc" + - chebi: "CHEBI:84755" + - kegg.compound: "C00586" + - metanetx.chemical: "MNXM2925" + - sbo: "SBO:0000247" - !!omap - - id: s_3816 - - name: [cytochrome c]-L-lysine - - compartment: c - - formula: C6H13N2O + - id: "s_3816" + - name: "[cytochrome c]-L-lysine" + - compartment: "c" + - formula: "C6H13N2O" - charge: 1 - annotation: !!omap - - chebi: CHEBI:29969 - - sbo: SBO:0000247 + - chebi: "CHEBI:29969" + - sbo: "SBO:0000247" - !!omap - - id: s_3817 - - name: [cytochrome c]-N6-methyl-L-lysine - - compartment: c - - formula: C7H15N2O + - id: "s_3817" + - name: "[cytochrome c]-N6-methyl-L-lysine" + - compartment: "c" + - formula: "C7H15N2O" - charge: 1 - annotation: !!omap - - chebi: CHEBI:61929 - - sbo: SBO:0000247 + - chebi: "CHEBI:61929" + - sbo: "SBO:0000247" - !!omap - - id: s_3818 - - name: S-adenosyl-L-methionine - - compartment: n - - formula: C15H23N6O5S + - id: "s_3818" + - name: "S-adenosyl-L-methionine" + - compartment: "n" + - formula: "C15H23N6O5S" - charge: 1 - annotation: !!omap - - bigg.metabolite: amet - - chebi: CHEBI:67040 - - kegg.compound: C00019 - - metanetx.chemical: MNXM16 - - sbo: SBO:0000247 + - bigg.metabolite: "amet" + - chebi: "CHEBI:67040" + - kegg.compound: "C00019" + - metanetx.chemical: "MNXM16" + - sbo: "SBO:0000247" - !!omap - - id: s_3819 - - name: L-lysine-[histone] - - compartment: n - - formula: C6H13N2OR2 + - id: "s_3819" + - name: "L-lysine-[histone]" + - compartment: "n" + - formula: "C6H13N2OR2" - charge: 1 - annotation: !!omap - - chebi: CHEBI:29969 - - metanetx.chemical: MNXM59465 - - sbo: SBO:0000247 + - chebi: "CHEBI:29969" + - metanetx.chemical: "MNXM59465" + - sbo: "SBO:0000247" - !!omap - - id: s_3820 - - name: S-adenosyl-L-homocysteine - - compartment: n - - formula: C14H20N6O5S + - id: "s_3820" + - name: "S-adenosyl-L-homocysteine" + - compartment: "n" + - formula: "C14H20N6O5S" - charge: 0 - annotation: !!omap - - bigg.metabolite: ahcys - - chebi: CHEBI:16680 - - kegg.compound: C00021 - - metanetx.chemical: MNXM19 - - sbo: SBO:0000247 + - bigg.metabolite: "ahcys" + - chebi: "CHEBI:16680" + - kegg.compound: "C00021" + - metanetx.chemical: "MNXM19" + - sbo: "SBO:0000247" - !!omap - - id: s_3821 - - name: N6-methyl-L-lysine-[histone] - - compartment: n - - formula: C7H15N2OR2 + - id: "s_3821" + - name: "N6-methyl-L-lysine-[histone]" + - compartment: "n" + - formula: "C7H15N2OR2" - charge: 1 - annotation: !!omap - - chebi: CHEBI:61929 - - metanetx.chemical: MNXM63025 - - sbo: SBO:0000247 + - chebi: "CHEBI:61929" + - metanetx.chemical: "MNXM63025" + - sbo: "SBO:0000247" - !!omap - - id: s_3822 - - name: Zn(2+) - - compartment: c - - formula: Zn + - id: "s_3822" + - name: "Zn(2+)" + - compartment: "c" + - formula: "Zn" - charge: 2 - annotation: !!omap - - bigg.metabolite: zn2 - - chebi: CHEBI:29105 - - kegg.compound: C00038 - - metanetx.chemical: MNXM149 - - sbo: SBO:0000247 + - bigg.metabolite: "zn2" + - chebi: "CHEBI:29105" + - kegg.compound: "C00038" + - metanetx.chemical: "MNXM149" + - sbo: "SBO:0000247" - !!omap - - id: s_3823 - - name: Zn(2+) - - compartment: er - - formula: Zn + - id: "s_3823" + - name: "Zn(2+)" + - compartment: "er" + - formula: "Zn" - charge: 2 - annotation: !!omap - - bigg.metabolite: zn2 - - chebi: CHEBI:29105 - - kegg.compound: C00038 - - metanetx.chemical: MNXM149 - - sbo: SBO:0000247 + - bigg.metabolite: "zn2" + - chebi: "CHEBI:29105" + - kegg.compound: "C00038" + - metanetx.chemical: "MNXM149" + - sbo: "SBO:0000247" - !!omap - - id: s_3826 - - name: Ferricytochrome b5 - - compartment: m - - formula: Fe + - id: "s_3826" + - name: "Ferricytochrome b5" + - compartment: "m" + - formula: "Fe" - charge: 3 - annotation: !!omap - - bigg.metabolite: ficytb5 - - chebi: CHEBI:18097 - - kegg.compound: C00996 - - metanetx.chemical: MNXM1083 - - sbo: SBO:0000247 + - bigg.metabolite: "ficytb5" + - chebi: "CHEBI:18097" + - kegg.compound: "C00996" + - metanetx.chemical: "MNXM1083" + - sbo: "SBO:0000247" - !!omap - - id: s_3827 - - name: Ferrocytochrome b5 - - compartment: m - - formula: Fe + - id: "s_3827" + - name: "Ferrocytochrome b5" + - compartment: "m" + - formula: "Fe" - charge: 2 - annotation: !!omap - - bigg.metabolite: focytb5 - - kegg.compound: C00999 - - sbo: SBO:0000247 + - bigg.metabolite: "focytb5" + - kegg.compound: "C00999" + - sbo: "SBO:0000247" - !!omap - - id: s_3828 - - name: (S)-benzoin - - compartment: c - - formula: C14H12O2 + - id: "s_3828" + - name: "(S)-benzoin" + - compartment: "c" + - formula: "C14H12O2" - charge: 0 - annotation: !!omap - - kegg.compound: C20227 - - metanetx.chemical: MNXM5393 - - sbo: SBO:0000247 + - kegg.compound: "C20227" + - metanetx.chemical: "MNXM5393" + - sbo: "SBO:0000247" - !!omap - - id: s_3829 - - name: benzil - - compartment: c - - formula: C14H10O2 + - id: "s_3829" + - name: "benzil" + - compartment: "c" + - formula: "C14H10O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:51507 - - kegg.compound: C20226 - - metanetx.chemical: MNXM2349 - - sbo: SBO:0000247 + - chebi: "CHEBI:51507" + - kegg.compound: "C20226" + - metanetx.chemical: "MNXM2349" + - sbo: "SBO:0000247" - !!omap - - id: s_3830 - - name: RX - - compartment: er - - formula: RX + - id: "s_3830" + - name: "RX" + - compartment: "er" + - formula: "RX" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17792 - - kegg.compound: C01322 - - metanetx.chemical: MNXM6428 - - sbo: SBO:0000247 + - chebi: "CHEBI:17792" + - kegg.compound: "C01322" + - metanetx.chemical: "MNXM6428" + - sbo: "SBO:0000247" - !!omap - - id: s_3831 - - name: glutathione - - compartment: er - - formula: C10H16N3O6S + - id: "s_3831" + - name: "glutathione" + - compartment: "er" + - formula: "C10H16N3O6S" - charge: -1 - annotation: !!omap - - bigg.metabolite: gthrd - - chebi: CHEBI:57925 - - kegg.compound: C00051 - - metanetx.chemical: MNXM57 - - sbo: SBO:0000247 + - bigg.metabolite: "gthrd" + - chebi: "CHEBI:57925" + - kegg.compound: "C00051" + - metanetx.chemical: "MNXM57" + - sbo: "SBO:0000247" - !!omap - - id: s_3832 - - name: HX - - compartment: er - - formula: X + - id: "s_3832" + - name: "HX" + - compartment: "er" + - formula: "X" - charge: -1 - annotation: !!omap - - chebi: CHEBI:16042 - - kegg.compound: C00462 - - metanetx.chemical: MNXM55844 - - sbo: SBO:0000247 + - chebi: "CHEBI:16042" + - kegg.compound: "C00462" + - metanetx.chemical: "MNXM55844" + - sbo: "SBO:0000247" - !!omap - - id: s_3833 - - name: R-S-glutathione - - compartment: er - - formula: C10H16N3O6SR + - id: "s_3833" + - name: "R-S-glutathione" + - compartment: "er" + - formula: "C10H16N3O6SR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17021 - - kegg.compound: C02320 - - metanetx.chemical: MNXM3350 - - sbo: SBO:0000247 + - chebi: "CHEBI:17021" + - kegg.compound: "C02320" + - metanetx.chemical: "MNXM3350" + - sbo: "SBO:0000247" - !!omap - - id: s_3834 - - name: RX - - compartment: c - - formula: RX + - id: "s_3834" + - name: "RX" + - compartment: "c" + - formula: "RX" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17792 - - kegg.compound: C01322 - - metanetx.chemical: MNXM6428 - - sbo: SBO:0000247 + - chebi: "CHEBI:17792" + - kegg.compound: "C01322" + - metanetx.chemical: "MNXM6428" + - sbo: "SBO:0000247" - !!omap - - id: s_3835 - - name: HX - - compartment: c - - formula: X + - id: "s_3835" + - name: "HX" + - compartment: "c" + - formula: "X" - charge: -1 - annotation: !!omap - - chebi: CHEBI:16042 - - kegg.compound: C00462 - - metanetx.chemical: MNXM55844 - - sbo: SBO:0000247 + - chebi: "CHEBI:16042" + - kegg.compound: "C00462" + - metanetx.chemical: "MNXM55844" + - sbo: "SBO:0000247" - !!omap - - id: s_3836 - - name: R-S-glutathione - - compartment: c - - formula: C10H16N3O6SR + - id: "s_3836" + - name: "R-S-glutathione" + - compartment: "c" + - formula: "C10H16N3O6SR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17021 - - kegg.compound: C02320 - - metanetx.chemical: MNXM3350 - - sbo: SBO:0000247 + - chebi: "CHEBI:17021" + - kegg.compound: "C02320" + - metanetx.chemical: "MNXM3350" + - sbo: "SBO:0000247" - !!omap - - id: s_3837 - - name: L-Methionine S-oxide - - compartment: c - - formula: C5H11NO3S + - id: "s_3837" + - name: "L-Methionine S-oxide" + - compartment: "c" + - formula: "C5H11NO3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: metsox_S__L - - chebi: CHEBI:17016 - - kegg.compound: C02989 - - metanetx.chemical: MNXM2246 - - sbo: SBO:0000247 + - bigg.metabolite: "metsox_S__L" + - chebi: "CHEBI:17016" + - kegg.compound: "C02989" + - metanetx.chemical: "MNXM2246" + - sbo: "SBO:0000247" - !!omap - - id: s_3838 - - name: Ala-Gly - - compartment: v - - formula: C5H10N2O3 + - id: "s_3838" + - name: "Ala-Gly" + - compartment: "v" + - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: L_alagly - - chebi: CHEBI:73757 - - metanetx.chemical: MNXM15783 - - sbo: SBO:0000247 + - bigg.metabolite: "L_alagly" + - chebi: "CHEBI:73757" + - metanetx.chemical: "MNXM15783" + - sbo: "SBO:0000247" - !!omap - - id: s_3839 - - name: L-glycine - - compartment: v - - formula: C2H5NO2 + - id: "s_3839" + - name: "L-glycine" + - compartment: "v" + - formula: "C2H5NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly - - chebi: CHEBI:15428 - - kegg.compound: C00037 - - metanetx.chemical: MNXM29 - - sbo: SBO:0000247 + - bigg.metabolite: "gly" + - chebi: "CHEBI:15428" + - kegg.compound: "C00037" + - metanetx.chemical: "MNXM29" + - sbo: "SBO:0000247" - !!omap - - id: s_3840 - - name: Ala-Leu - - compartment: v - - formula: C9H18N2O3 + - id: "s_3840" + - name: "Ala-Leu" + - compartment: "v" + - formula: "C9H18N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_L_ile__L - - chebi: CHEBI:73770 - - metanetx.chemical: MNXM15786 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_ile__L" + - chebi: "CHEBI:73770" + - metanetx.chemical: "MNXM15786" + - sbo: "SBO:0000247" - !!omap - - id: s_3841 - - name: Threo-3-hydroxy-L-aspartate - - compartment: c - - formula: C4H6NO5 + - id: "s_3841" + - name: "Threo-3-hydroxy-L-aspartate" + - compartment: "c" + - formula: "C4H6NO5" - charge: -1 - annotation: !!omap - - chebi: CHEBI:57251 - - kegg.compound: C11511 - - metanetx.chemical: MNXM4918 - - sbo: SBO:0000247 + - chebi: "CHEBI:57251" + - kegg.compound: "C11511" + - metanetx.chemical: "MNXM4918" + - sbo: "SBO:0000247" - !!omap - - id: s_3842 - - name: RX - - compartment: p - - formula: RX + - id: "s_3842" + - name: "RX" + - compartment: "p" + - formula: "RX" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17792 - - kegg.compound: C01322 - - metanetx.chemical: MNXM6428 - - sbo: SBO:0000247 + - chebi: "CHEBI:17792" + - kegg.compound: "C01322" + - metanetx.chemical: "MNXM6428" + - sbo: "SBO:0000247" - !!omap - - id: s_3843 - - name: glutathione - - compartment: p - - formula: C10H16N3O6S + - id: "s_3843" + - name: "glutathione" + - compartment: "p" + - formula: "C10H16N3O6S" - charge: -1 - annotation: !!omap - - bigg.metabolite: gthrd - - chebi: CHEBI:57925 - - kegg.compound: C00051 - - metanetx.chemical: MNXM57 - - sbo: SBO:0000247 + - bigg.metabolite: "gthrd" + - chebi: "CHEBI:57925" + - kegg.compound: "C00051" + - metanetx.chemical: "MNXM57" + - sbo: "SBO:0000247" - !!omap - - id: s_3844 - - name: HX - - compartment: p - - formula: X + - id: "s_3844" + - name: "HX" + - compartment: "p" + - formula: "X" - charge: -1 - annotation: !!omap - - chebi: CHEBI:16042 - - kegg.compound: C00462 - - metanetx.chemical: MNXM55844 - - sbo: SBO:0000247 + - chebi: "CHEBI:16042" + - kegg.compound: "C00462" + - metanetx.chemical: "MNXM55844" + - sbo: "SBO:0000247" - !!omap - - id: s_3845 - - name: R-S-glutathione - - compartment: p - - formula: C10H16N3O6SR + - id: "s_3845" + - name: "R-S-glutathione" + - compartment: "p" + - formula: "C10H16N3O6SR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17021 - - kegg.compound: C02320 - - metanetx.chemical: MNXM3350 - - sbo: SBO:0000247 + - chebi: "CHEBI:17021" + - kegg.compound: "C02320" + - metanetx.chemical: "MNXM3350" + - sbo: "SBO:0000247" - !!omap - - id: s_3846 - - name: dehydroascorbate - - compartment: c - - formula: C6H6O6 + - id: "s_3846" + - name: "dehydroascorbate" + - compartment: "c" + - formula: "C6H6O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: dhdascb - - chebi: CHEBI:27956 - - kegg.compound: C05422 - - metanetx.chemical: MNXM250 - - sbo: SBO:0000247 + - bigg.metabolite: "dhdascb" + - chebi: "CHEBI:27956" + - kegg.compound: "C05422" + - metanetx.chemical: "MNXM250" + - sbo: "SBO:0000247" - !!omap - - id: s_3847 - - name: ascorbate - - compartment: c - - formula: C6H8O6 + - id: "s_3847" + - name: "ascorbate" + - compartment: "c" + - formula: "C6H8O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: ascb__L - - chebi: CHEBI:38290 - - kegg.compound: C00072 - - metanetx.chemical: MNXM129 - - sbo: SBO:0000247 + - bigg.metabolite: "ascb__L" + - chebi: "CHEBI:38290" + - kegg.compound: "C00072" + - metanetx.chemical: "MNXM129" + - sbo: "SBO:0000247" - !!omap - - id: s_3848 - - name: dehydroascorbate - - compartment: p - - formula: C6H6O6 + - id: "s_3848" + - name: "dehydroascorbate" + - compartment: "p" + - formula: "C6H6O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: dhdascb - - chebi: CHEBI:27956 - - kegg.compound: C05422 - - metanetx.chemical: MNXM250 - - sbo: SBO:0000247 + - bigg.metabolite: "dhdascb" + - chebi: "CHEBI:27956" + - kegg.compound: "C05422" + - metanetx.chemical: "MNXM250" + - sbo: "SBO:0000247" - !!omap - - id: s_3849 - - name: glutathione disulfide - - compartment: p - - formula: C20H30N6O12S2 + - id: "s_3849" + - name: "glutathione disulfide" + - compartment: "p" + - formula: "C20H30N6O12S2" - charge: -2 - annotation: !!omap - - bigg.metabolite: gthox - - chebi: CHEBI:58297 - - kegg.compound: C00127 - - metanetx.chemical: MNXM151 - - sbo: SBO:0000247 + - bigg.metabolite: "gthox" + - chebi: "CHEBI:58297" + - kegg.compound: "C00127" + - metanetx.chemical: "MNXM151" + - sbo: "SBO:0000247" - !!omap - - id: s_3850 - - name: ascorbate - - compartment: p - - formula: C6H8O6 + - id: "s_3850" + - name: "ascorbate" + - compartment: "p" + - formula: "C6H8O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: ascb__L - - chebi: CHEBI:38290 - - kegg.compound: C00072 - - metanetx.chemical: MNXM129 - - sbo: SBO:0000247 + - bigg.metabolite: "ascb__L" + - chebi: "CHEBI:38290" + - kegg.compound: "C00072" + - metanetx.chemical: "MNXM129" + - sbo: "SBO:0000247" - !!omap - - id: s_3851 - - name: Cyanamide - - compartment: c - - formula: CH2N2 + - id: "s_3851" + - name: "Cyanamide" + - compartment: "c" + - formula: "CH2N2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:16698 - - kegg.compound: C01566 - - metanetx.chemical: MNXM4538 - - sbo: SBO:0000247 + - chebi: "CHEBI:16698" + - kegg.compound: "C01566" + - metanetx.chemical: "MNXM4538" + - sbo: "SBO:0000247" - !!omap - - id: s_3852 - - name: aldehydo-D-ribose 5-phosphate - - compartment: c - - formula: C5H9O8P + - id: "s_3852" + - name: "aldehydo-D-ribose 5-phosphate" + - compartment: "c" + - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:58273 - - kegg.compound: C00117 - - metanetx.chemical: MNXM722712 - - sbo: SBO:0000247 + - chebi: "CHEBI:58273" + - kegg.compound: "C00117" + - metanetx.chemical: "MNXM722712" + - sbo: "SBO:0000247" - !!omap - - id: s_3853 - - name: R-S-Cysteinylglycine - - compartment: c - - formula: C5H9N2O3SR + - id: "s_3853" + - name: "R-S-Cysteinylglycine" + - compartment: "c" + - formula: "C5H9N2O3SR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:8744 - - kegg.compound: C05729 - - metanetx.chemical: MNXM7734 - - sbo: SBO:0000247 + - chebi: "CHEBI:8744" + - kegg.compound: "C05729" + - metanetx.chemical: "MNXM7734" + - sbo: "SBO:0000247" - !!omap - - id: s_3854 - - name: S-Substituted L-cysteine - - compartment: c - - formula: C3H6NO2SR + - id: "s_3854" + - name: "S-Substituted L-cysteine" + - compartment: "c" + - formula: "C3H6NO2SR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:47910 - - kegg.compound: C05726 - - metanetx.chemical: MNXM96107 - - sbo: SBO:0000247 + - chebi: "CHEBI:47910" + - kegg.compound: "C05726" + - metanetx.chemical: "MNXM96107" + - sbo: "SBO:0000247" - !!omap - - id: s_3855 - - name: iron(3+) - - compartment: m - - formula: Fe + - id: "s_3855" + - name: "iron(3+)" + - compartment: "m" + - formula: "Fe" - charge: 3 - annotation: !!omap - - bigg.metabolite: fe3 - - chebi: CHEBI:29034 - - kegg.compound: C14819 - - metanetx.chemical: MNXM196 - - sbo: SBO:0000247 + - bigg.metabolite: "fe3" + - chebi: "CHEBI:29034" + - kegg.compound: "C14819" + - metanetx.chemical: "MNXM196" + - sbo: "SBO:0000247" - !!omap - - id: s_3856 - - name: Glycyl-tRNA(Ala) - - compartment: c - - formula: C2H5NOR + - id: "s_3856" + - name: "Glycyl-tRNA(Ala)" + - compartment: "c" + - formula: "C2H5NOR" - charge: 1 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3857 - - name: D-tyrosyl-tRNA(Tyr) - - compartment: c - - formula: C9H11NO2R + - id: "s_3857" + - name: "D-tyrosyl-tRNA(Tyr)" + - compartment: "c" + - formula: "C9H11NO2R" - charge: 1 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3858 - - name: D-tyrosine - - compartment: c - - formula: C9H11NO3 + - id: "s_3858" + - name: "D-tyrosine" + - compartment: "c" + - formula: "C9H11NO3" - charge: 0 - annotation: !!omap - - chebi: CHEBI:28479 - - kegg.compound: C06420 - - metanetx.chemical: MNXM5704 - - sbo: SBO:0000247 + - chebi: "CHEBI:28479" + - kegg.compound: "C06420" + - metanetx.chemical: "MNXM5704" + - sbo: "SBO:0000247" - !!omap - - id: s_3859 - - name: 4-nitrophenyl phosphate - - compartment: c - - formula: C6H4NO6P + - id: "s_3859" + - name: "4-nitrophenyl phosphate" + - compartment: "c" + - formula: "C6H4NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: HC01104 - - chebi: CHEBI:61146 - - kegg.compound: C03360 - - metanetx.chemical: MNXM3867 - - sbo: SBO:0000247 + - bigg.metabolite: "HC01104" + - chebi: "CHEBI:61146" + - kegg.compound: "C03360" + - metanetx.chemical: "MNXM3867" + - sbo: "SBO:0000247" - !!omap - - id: s_3860 - - name: 4-nitrophenol - - compartment: c - - formula: C6H4NO3 + - id: "s_3860" + - name: "4-nitrophenol" + - compartment: "c" + - formula: "C6H4NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 4nph - - chebi: CHEBI:57917 - - kegg.compound: C00870 - - metanetx.chemical: MNXM526 - - sbo: SBO:0000247 + - bigg.metabolite: "4nph" + - chebi: "CHEBI:57917" + - kegg.compound: "C00870" + - metanetx.chemical: "MNXM526" + - sbo: "SBO:0000247" - !!omap - - id: s_3861 - - name: L-iditol - - compartment: c - - formula: C6H14O6 + - id: "s_3861" + - name: "L-iditol" + - compartment: "c" + - formula: "C6H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: C01507 - - chebi: CHEBI:18202 - - kegg.compound: C01507 - - metanetx.chemical: MNXM3633 - - sbo: SBO:0000247 + - bigg.metabolite: "C01507" + - chebi: "CHEBI:18202" + - kegg.compound: "C01507" + - metanetx.chemical: "MNXM3633" + - sbo: "SBO:0000247" - !!omap - - id: s_3862 - - name: alpha-D-Galactose - - compartment: c - - formula: C6H12O6 + - id: "s_3862" + - name: "alpha-D-Galactose" + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: a_gal__D - - chebi: CHEBI:28061 - - kegg.compound: C00984 - - metanetx.chemical: MNXM390 - - sbo: SBO:0000247 + - bigg.metabolite: "a_gal__D" + - chebi: "CHEBI:28061" + - kegg.compound: "C00984" + - metanetx.chemical: "MNXM390" + - sbo: "SBO:0000247" - !!omap - - id: s_3863 - - name: 3-hydroxy-2-methylpropanoyl-CoA - - compartment: m - - formula: C25H38N7O18P3S + - id: "s_3863" + - name: "3-hydroxy-2-methylpropanoyl-CoA" + - compartment: "m" + - formula: "C25H38N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: CHEBI:57340 - - kegg.compound: C04047 - - metanetx.chemical: MNXM1034 - - sbo: SBO:0000247 + - chebi: "CHEBI:57340" + - kegg.compound: "C04047" + - metanetx.chemical: "MNXM1034" + - sbo: "SBO:0000247" - !!omap - - id: s_3864 - - name: 3-hydroxy-2-methylpropanoate - - compartment: m - - formula: C4H7O3 + - id: "s_3864" + - name: "3-hydroxy-2-methylpropanoate" + - compartment: "m" + - formula: "C4H7O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3hmp - - chebi: CHEBI:11805 - - kegg.compound: C01188 - - metanetx.chemical: MNXM396 - - sbo: SBO:0000247 + - bigg.metabolite: "3hmp" + - chebi: "CHEBI:11805" + - kegg.compound: "C01188" + - metanetx.chemical: "MNXM396" + - sbo: "SBO:0000247" - !!omap - - id: s_3865 - - name: sterols - - compartment: e - - formula: C19H31OR + - id: "s_3865" + - name: "sterols" + - compartment: "e" + - formula: "C19H31OR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:15889 - - kegg.compound: C00370 - - metanetx.chemical: MNXM82761 - - sbo: SBO:0000247 + - chebi: "CHEBI:15889" + - kegg.compound: "C00370" + - metanetx.chemical: "MNXM82761" + - sbo: "SBO:0000247" - !!omap - - id: s_3866 - - name: sterols - - compartment: c - - formula: C19H31OR + - id: "s_3866" + - name: "sterols" + - compartment: "c" + - formula: "C19H31OR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:15889 - - kegg.compound: C00370 - - metanetx.chemical: MNXM82761 - - sbo: SBO:0000247 + - chebi: "CHEBI:15889" + - kegg.compound: "C00370" + - metanetx.chemical: "MNXM82761" + - sbo: "SBO:0000247" - !!omap - - id: s_3867 - - name: 2-Phenylacetamide - - compartment: c - - formula: C8H9NO + - id: "s_3867" + - name: "2-Phenylacetamide" + - compartment: "c" + - formula: "C8H9NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: pad - - chebi: CHEBI:16562 - - kegg.compound: C02505 - - metanetx.chemical: MNXM2073 - - sbo: SBO:0000247 + - bigg.metabolite: "pad" + - chebi: "CHEBI:16562" + - kegg.compound: "C02505" + - metanetx.chemical: "MNXM2073" + - sbo: "SBO:0000247" - !!omap - - id: s_3868 - - name: (Indol-3-yl)acetamide - - compartment: c - - formula: C10H10N2O + - id: "s_3868" + - name: "(Indol-3-yl)acetamide" + - compartment: "c" + - formula: "C10H10N2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: iad - - chebi: CHEBI:16031 - - kegg.compound: C02693 - - metanetx.chemical: MNXM2239 - - sbo: SBO:0000247 + - bigg.metabolite: "iad" + - chebi: "CHEBI:16031" + - kegg.compound: "C02693" + - metanetx.chemical: "MNXM2239" + - sbo: "SBO:0000247" - !!omap - - id: s_3871 - - name: Acrylic acid - - compartment: c - - formula: C3H3O2 + - id: "s_3871" + - name: "Acrylic acid" + - compartment: "c" + - formula: "C3H3O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: acryl - - chebi: CHEBI:37080 - - kegg.compound: C00511 - - metanetx.chemical: MNXM1368 - - sbo: SBO:0000247 + - bigg.metabolite: "acryl" + - chebi: "CHEBI:37080" + - kegg.compound: "C00511" + - metanetx.chemical: "MNXM1368" + - sbo: "SBO:0000247" - !!omap - - id: s_3872 - - name: Acrylamide - - compartment: c - - formula: C3H5NO + - id: "s_3872" + - name: "Acrylamide" + - compartment: "c" + - formula: "C3H5NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: aa - - chebi: CHEBI:28619 - - kegg.compound: C01659 - - metanetx.chemical: MNXM3208 - - sbo: SBO:0000247 + - bigg.metabolite: "aa" + - chebi: "CHEBI:28619" + - kegg.compound: "C01659" + - metanetx.chemical: "MNXM3208" + - sbo: "SBO:0000247" - !!omap - - id: s_3873 - - name: Benzamide - - compartment: c - - formula: C7H7NO + - id: "s_3873" + - name: "Benzamide" + - compartment: "c" + - formula: "C7H7NO" - charge: 0 - annotation: !!omap - - chebi: CHEBI:28179 - - kegg.compound: C09815 - - metanetx.chemical: MNXM5065 - - sbo: SBO:0000247 + - chebi: "CHEBI:28179" + - kegg.compound: "C09815" + - metanetx.chemical: "MNXM5065" + - sbo: "SBO:0000247" - !!omap - - id: s_3874 - - name: Benzoate - - compartment: c - - formula: C7H5O2 + - id: "s_3874" + - name: "Benzoate" + - compartment: "c" + - formula: "C7H5O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: bz - - chebi: CHEBI:16150 - - kegg.compound: C00180 - - metanetx.chemical: MNXM217 - - sbo: SBO:0000247 + - bigg.metabolite: "bz" + - chebi: "CHEBI:16150" + - kegg.compound: "C00180" + - metanetx.chemical: "MNXM217" + - sbo: "SBO:0000247" - !!omap - - id: s_3875 - - name: D-gluconate - - compartment: c - - formula: C6H11O7 + - id: "s_3875" + - name: "D-gluconate" + - compartment: "c" + - formula: "C6H11O7" - charge: -1 - annotation: !!omap - - bigg.metabolite: glcn - - chebi: CHEBI:18391 - - kegg.compound: C00257 - - metanetx.chemical: MNXM341 - - sbo: SBO:0000247 + - bigg.metabolite: "glcn" + - chebi: "CHEBI:18391" + - kegg.compound: "C00257" + - metanetx.chemical: "MNXM341" + - sbo: "SBO:0000247" - !!omap - - id: s_3876 - - name: Protein C-terminal S-farnesyl-L-cysteine - - compartment: c - - formula: C20H32N2O3SR + - id: "s_3876" + - name: "Protein C-terminal S-farnesyl-L-cysteine" + - compartment: "c" + - formula: "C20H32N2O3SR" - charge: -1 - annotation: !!omap - - chebi: CHEBI:17171 - - kegg.compound: C04506 - - metanetx.chemical: MNXM5285 - - sbo: SBO:0000247 + - chebi: "CHEBI:17171" + - kegg.compound: "C04506" + - metanetx.chemical: "MNXM5285" + - sbo: "SBO:0000247" - !!omap - - id: s_3877 - - name: Protein C-terminal S-farnesyl-L-cysteine methyl ester - - compartment: c - - formula: C21H35N2O3SR + - id: "s_3877" + - name: "Protein C-terminal S-farnesyl-L-cysteine methyl ester" + - compartment: "c" + - formula: "C21H35N2O3SR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:15818 - - kegg.compound: C04748 - - metanetx.chemical: MNXM6400 - - sbo: SBO:0000247 + - chebi: "CHEBI:15818" + - kegg.compound: "C04748" + - metanetx.chemical: "MNXM6400" + - sbo: "SBO:0000247" - !!omap - - id: s_3878 - - name: 1-phosphatidyl-1D-myo-inositol - - compartment: er - - formula: C11H16O13PR2 + - id: "s_3878" + - name: "1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "C11H16O13PR2" - charge: -1 - annotation: !!omap - - bigg.metabolite: pail_cho - - chebi: CHEBI:57880 - - kegg.compound: C01194 - - metanetx.chemical: MNXM62 - - sbo: SBO:0000247 + - bigg.metabolite: "pail_cho" + - chebi: "CHEBI:57880" + - kegg.compound: "C01194" + - metanetx.chemical: "MNXM62" + - sbo: "SBO:0000247" - !!omap - - id: s_3879 - - name: G00143 - - compartment: er - - formula: C19H29NO18PR2 + - id: "s_3879" + - name: "G00143" + - compartment: "er" + - formula: "C19H29NO18PR2" - charge: -1 - annotation: !!omap - - chebi: CHEBI:57265 - - metanetx.chemical: MNXM92477 - - sbo: SBO:0000247 + - chebi: "CHEBI:57265" + - metanetx.chemical: "MNXM92477" + - sbo: "SBO:0000247" - !!omap - - id: s_3880 - - name: Ca(2+) - - compartment: c - - formula: Ca + - id: "s_3880" + - name: "Ca(2+)" + - compartment: "c" + - formula: "Ca" - charge: 2 - annotation: !!omap - - bigg.metabolite: ca2 - - chebi: CHEBI:29108 - - kegg.compound: C00076 - - metanetx.chemical: MNXM128 - - sbo: SBO:0000247 + - bigg.metabolite: "ca2" + - chebi: "CHEBI:29108" + - kegg.compound: "C00076" + - metanetx.chemical: "MNXM128" + - sbo: "SBO:0000247" - !!omap - - id: s_3881 - - name: ATP - - compartment: v - - formula: C10H12N5O13P3 + - id: "s_3881" + - name: "ATP" + - compartment: "v" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: atp - - chebi: CHEBI:30616 - - kegg.compound: C00002 - - metanetx.chemical: MNXM3 - - sbo: SBO:0000247 + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - - id: s_3882 - - name: Ca(2+) - - compartment: v - - formula: Ca + - id: "s_3882" + - name: "Ca(2+)" + - compartment: "v" + - formula: "Ca" - charge: 2 - annotation: !!omap - - bigg.metabolite: ca2 - - chebi: CHEBI:29108 - - kegg.compound: C00076 - - metanetx.chemical: MNXM128 - - sbo: SBO:0000247 + - bigg.metabolite: "ca2" + - chebi: "CHEBI:29108" + - kegg.compound: "C00076" + - metanetx.chemical: "MNXM128" + - sbo: "SBO:0000247" - !!omap - - id: s_3883 - - name: ADP - - compartment: v - - formula: C10H12N5O10P2 + - id: "s_3883" + - name: "ADP" + - compartment: "v" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: adp - - chebi: CHEBI:456216 - - kegg.compound: C00008 - - metanetx.chemical: MNXM7 - - sbo: SBO:0000247 + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - - id: s_3884 - - name: generic protein - - compartment: c - - formula: C2H4NOR + - id: "s_3884" + - name: "generic protein" + - compartment: "c" + - formula: "C2H4NOR" - charge: 1 - annotation: !!omap - - kegg.compound: C00017 - - sbo: SBO:0000247 + - kegg.compound: "C00017" + - sbo: "SBO:0000247" - !!omap - - id: s_3885 - - name: L-Arginyl-protein - - compartment: c - - formula: C8H17N5O2R + - id: "s_3885" + - name: "L-Arginyl-protein" + - compartment: "c" + - formula: "C8H17N5O2R" - charge: 2 - annotation: !!omap - - chebi: CHEBI:17518 - - kegg.compound: C16739 - - metanetx.chemical: MNXM73312 - - sbo: SBO:0000247 + - chebi: "CHEBI:17518" + - kegg.compound: "C16739" + - metanetx.chemical: "MNXM73312" + - sbo: "SBO:0000247" - !!omap - - id: s_3886 - - name: Protein asparagine - - compartment: er - - formula: C4H6N2O2R + - id: "s_3886" + - name: "Protein asparagine" + - compartment: "er" + - formula: "C4H6N2O2R" - charge: 0 - annotation: !!omap - - chebi: CHEBI:50347 - - kegg.compound: C03021 - - sbo: SBO:0000247 + - chebi: "CHEBI:50347" + - kegg.compound: "C03021" + - sbo: "SBO:0000247" - !!omap - - id: s_3887 - - name: G00008 - - compartment: er - - formula: C108H182N2O77P2R + - id: "s_3887" + - name: "G00008" + - compartment: "er" + - formula: "C108H182N2O77P2R" - charge: -2 - annotation: !!omap - - metanetx.chemical: MNXM9308 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM9308" + - sbo: "SBO:0000247" - !!omap - - id: s_3888 - - name: Dolichyl diphosphate - - compartment: er - - formula: C20H35O7P2R + - id: "s_3888" + - name: "Dolichyl diphosphate" + - compartment: "er" + - formula: "C20H35O7P2R" - charge: -3 - annotation: !!omap - - chebi: CHEBI:57497 - - kegg.compound: C00621 - - metanetx.chemical: MNXM2370 - - sbo: SBO:0000247 + - chebi: "CHEBI:57497" + - kegg.compound: "C00621" + - metanetx.chemical: "MNXM2370" + - sbo: "SBO:0000247" - !!omap - - id: s_3889 - - name: G00009 - - compartment: er - - formula: C92H152N4O72R + - id: "s_3889" + - name: "G00009" + - compartment: "er" + - formula: "C92H152N4O72R" - charge: 0 - annotation: !!omap - - chebi: CHEBI:132537 - - sbo: SBO:0000247 + - chebi: "CHEBI:132537" + - sbo: "SBO:0000247" - !!omap - - id: s_3890 - - name: GDP-alpha-D-mannose - - compartment: er - - formula: C16H23N5O16P2 + - id: "s_3890" + - name: "GDP-alpha-D-mannose" + - compartment: "er" + - formula: "C16H23N5O16P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: gdpmann - - chebi: CHEBI:57527 - - kegg.compound: C00096 - - metanetx.chemical: MNXM82 - - sbo: SBO:0000247 + - bigg.metabolite: "gdpmann" + - chebi: "CHEBI:57527" + - kegg.compound: "C00096" + - metanetx.chemical: "MNXM82" + - sbo: "SBO:0000247" - !!omap - - id: s_3891 - - name: G10694 - - compartment: er - - formula: C68H112N4O52R + - id: "s_3891" + - name: "G10694" + - compartment: "er" + - formula: "C68H112N4O52R" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3892 - - name: GDP - - compartment: er - - formula: C10H12N5O11P2 + - id: "s_3892" + - name: "GDP" + - compartment: "er" + - formula: "C10H12N5O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: gdp - - chebi: CHEBI:58189 - - kegg.compound: C00035 - - metanetx.chemical: MNXM30 - - sbo: SBO:0000247 + - bigg.metabolite: "gdp" + - chebi: "CHEBI:58189" + - kegg.compound: "C00035" + - metanetx.chemical: "MNXM30" + - sbo: "SBO:0000247" - !!omap - - id: s_3893 - - name: G01813 - - compartment: er - - formula: C74H122N4O57R + - id: "s_3893" + - name: "G01813" + - compartment: "er" + - formula: "C74H122N4O57R" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3894 - - name: G00003 - - compartment: er - - formula: C42H72N2O22P2R + - id: "s_3894" + - name: "G00003" + - compartment: "er" + - formula: "C42H72N2O22P2R" - charge: -2 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3895 - - name: G00004 - - compartment: er - - formula: C48H82N2O27P2R + - id: "s_3895" + - name: "G00004" + - compartment: "er" + - formula: "C48H82N2O27P2R" - charge: -2 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3896 - - name: G00005 - - compartment: er - - formula: C54H92N2O32P2R + - id: "s_3896" + - name: "G00005" + - compartment: "er" + - formula: "C54H92N2O32P2R" - charge: -2 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3897 - - name: 2-O-(6-phospho-alpha-D-mannosyl)-D-glycerate - - compartment: v - - formula: C9H14O12P + - id: "s_3897" + - name: "2-O-(6-phospho-alpha-D-mannosyl)-D-glycerate" + - compartment: "v" + - formula: "C9H14O12P" - charge: -3 - annotation: !!omap - - bigg.metabolite: man6pglyc - - chebi: CHEBI:60331 - - kegg.compound: C16699 - - metanetx.chemical: MNXM3470 - - sbo: SBO:0000247 + - bigg.metabolite: "man6pglyc" + - chebi: "CHEBI:60331" + - kegg.compound: "C16699" + - metanetx.chemical: "MNXM3470" + - sbo: "SBO:0000247" - !!omap - - id: s_3898 - - name: D-mannose 6-phosphate - - compartment: v - - formula: C6H11O9P + - id: "s_3898" + - name: "D-mannose 6-phosphate" + - compartment: "v" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: man6p - - chebi: CHEBI:17369 - - kegg.compound: C00275 - - metanetx.chemical: MNXM427 - - sbo: SBO:0000247 + - bigg.metabolite: "man6p" + - chebi: "CHEBI:17369" + - kegg.compound: "C00275" + - metanetx.chemical: "MNXM427" + - sbo: "SBO:0000247" - !!omap - - id: s_3899 - - name: D-Glycerate - - compartment: v - - formula: C3H5O4 + - id: "s_3899" + - name: "D-Glycerate" + - compartment: "v" + - formula: "C3H5O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: glyc__R - - chebi: CHEBI:16659 - - kegg.compound: C00258 - - metanetx.chemical: MNXM189 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc__R" + - chebi: "CHEBI:16659" + - kegg.compound: "C00258" + - metanetx.chemical: "MNXM189" + - sbo: "SBO:0000247" - !!omap - - id: s_3900 - - name: alpha-D-mannoside - - compartment: v - - formula: C6H11O6R + - id: "s_3900" + - name: "alpha-D-mannoside" + - compartment: "v" + - formula: "C6H11O6R" - charge: 0 - annotation: !!omap - - chebi: CHEBI:27535 - - kegg.compound: C02603 - - metanetx.chemical: MNXM3535 - - sbo: SBO:0000247 + - chebi: "CHEBI:27535" + - kegg.compound: "C02603" + - metanetx.chemical: "MNXM3535" + - sbo: "SBO:0000247" - !!omap - - id: s_3901 - - name: alpha-D-mannopyranose - - compartment: v - - formula: C6H12O6 + - id: "s_3901" + - name: "alpha-D-mannopyranose" + - compartment: "v" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:28729 - - kegg.compound: C00936 - - metanetx.chemical: MNXM919 - - sbo: SBO:0000247 + - chebi: "CHEBI:28729" + - kegg.compound: "C00936" + - metanetx.chemical: "MNXM919" + - sbo: "SBO:0000247" - !!omap - - id: s_3902 - - name: non glycosylated sugar acceptor - - compartment: v - - formula: HOR + - id: "s_3902" + - name: "non glycosylated sugar acceptor" + - compartment: "v" + - formula: "HOR" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3903 - - name: L-Threonylcarbamoyladenylate - - compartment: c - - formula: C15H19N6O11P + - id: "s_3903" + - name: "L-Threonylcarbamoyladenylate" + - compartment: "c" + - formula: "C15H19N6O11P" - charge: -2 - annotation: !!omap - - kegg.compound: C20641 - - metanetx.chemical: MNXM145767 - - sbo: SBO:0000247 + - kegg.compound: "C20641" + - metanetx.chemical: "MNXM145767" + - sbo: "SBO:0000247" - !!omap - - id: s_3904 - - name: D-Serine - - compartment: c - - formula: C3H7NO3 + - id: "s_3904" + - name: "D-Serine" + - compartment: "c" + - formula: "C3H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ser__D - - chebi: CHEBI:16523 - - kegg.compound: C00740 - - metanetx.chemical: MNXM694 - - sbo: SBO:0000247 + - bigg.metabolite: "ser__D" + - chebi: "CHEBI:16523" + - kegg.compound: "C00740" + - metanetx.chemical: "MNXM694" + - sbo: "SBO:0000247" - !!omap - - id: s_3905 - - name: O-acetyl-L-serine - - compartment: m - - formula: C5H9NO4 + - id: "s_3905" + - name: "O-acetyl-L-serine" + - compartment: "m" + - formula: "C5H9NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: acser - - chebi: CHEBI:17981 - - kegg.compound: C00979 - - metanetx.chemical: MNXM418 - - sbo: SBO:0000247 + - bigg.metabolite: "acser" + - chebi: "CHEBI:17981" + - kegg.compound: "C00979" + - metanetx.chemical: "MNXM418" + - sbo: "SBO:0000247" - !!omap - - id: s_3906 - - name: hydrogen sulfide - - compartment: m - - formula: HS + - id: "s_3906" + - name: "hydrogen sulfide" + - compartment: "m" + - formula: "HS" - charge: -1 - annotation: !!omap - - bigg.metabolite: h2s - - chebi: CHEBI:29919 - - kegg.compound: C00283 - - metanetx.chemical: MNXM89582 - - sbo: SBO:0000247 + - bigg.metabolite: "h2s" + - chebi: "CHEBI:29919" + - kegg.compound: "C00283" + - metanetx.chemical: "MNXM89582" + - sbo: "SBO:0000247" - !!omap - - id: s_3907 - - name: phosphatidate - - compartment: m - - formula: C5H7O8PR2 + - id: "s_3907" + - name: "phosphatidate" + - compartment: "m" + - formula: "C5H7O8PR2" - charge: 0 - annotation: !!omap - - bigg.metabolite: pa_EC - - chebi: CHEBI:16337 - - kegg.compound: C00416 - - metanetx.chemical: MNXM96054 - - sbo: SBO:0000247 + - bigg.metabolite: "pa_EC" + - chebi: "CHEBI:16337" + - kegg.compound: "C00416" + - metanetx.chemical: "MNXM96054" + - sbo: "SBO:0000247" - !!omap - - id: s_3908 - - name: CDP-diacylglycerol - - compartment: m - - formula: C14H19N3O15P2R2 + - id: "s_3908" + - name: "CDP-diacylglycerol" + - compartment: "m" + - formula: "C14H19N3O15P2R2" - charge: 0 - annotation: !!omap - - bigg.metabolite: cdpdag_cho - - chebi: CHEBI:17962 - - kegg.compound: C00269 - - metanetx.chemical: MNXM201 - - sbo: SBO:0000247 + - bigg.metabolite: "cdpdag_cho" + - chebi: "CHEBI:17962" + - kegg.compound: "C00269" + - metanetx.chemical: "MNXM201" + - sbo: "SBO:0000247" - !!omap - - id: s_3909 - - name: Sulfur donor - - compartment: c + - id: "s_3909" + - name: "Sulfur donor" + - compartment: "c" + - formula: "" - charge: 0 - annotation: !!omap - - chebi: CHEBI:80867 - - kegg.compound: C17023 - - metanetx.chemical: MNXM4111 - - sbo: SBO:0000247 + - chebi: "CHEBI:80867" + - kegg.compound: "C17023" + - metanetx.chemical: "MNXM4111" + - sbo: "SBO:0000247" - !!omap - - id: s_3910 - - name: ADP-5-ethyl-4-methylthiazole-2-carboxylate - - compartment: c - - formula: C17H19N6O12P2S + - id: "s_3910" + - name: "ADP-5-ethyl-4-methylthiazole-2-carboxylate" + - compartment: "c" + - formula: "C17H19N6O12P2S" - charge: -3 - annotation: !!omap - - chebi: CHEBI:134399 - - kegg.compound: C20784 - - metanetx.chemical: MNXM722955 - - sbo: SBO:0000247 + - chebi: "CHEBI:134399" + - kegg.compound: "C20784" + - metanetx.chemical: "MNXM722955" + - sbo: "SBO:0000247" - !!omap - - id: s_3911 - - name: Dolichyl beta-D-glucosyl phosphate - - compartment: er - - formula: C26H46O9PR + - id: "s_3911" + - name: "Dolichyl beta-D-glucosyl phosphate" + - compartment: "er" + - formula: "C26H46O9PR" - charge: -1 - annotation: !!omap - - chebi: CHEBI:57525 - - kegg.compound: C01246 - - metanetx.chemical: MNXM145615 - - sbo: SBO:0000247 + - chebi: "CHEBI:57525" + - kegg.compound: "C01246" + - metanetx.chemical: "MNXM145615" + - sbo: "SBO:0000247" - !!omap - - id: s_3912 - - name: G10599 - - compartment: er - - formula: C102H172N2O72P2R + - id: "s_3912" + - name: "G10599" + - compartment: "er" + - formula: "C102H172N2O72P2R" - charge: -2 - annotation: !!omap - - metanetx.chemical: MNXM9258 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM9258" + - sbo: "SBO:0000247" - !!omap - - id: s_3913 - - name: nitric oxide - - compartment: c - - formula: NO + - id: "s_3913" + - name: "nitric oxide" + - compartment: "c" + - formula: "NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: no - - chebi: CHEBI:16480 - - kegg.compound: C00533 - - metanetx.chemical: MNXM228 - - sbo: SBO:0000247 + - bigg.metabolite: "no" + - chebi: "CHEBI:16480" + - kegg.compound: "C00533" + - metanetx.chemical: "MNXM228" + - sbo: "SBO:0000247" - !!omap - - id: s_3914 - - name: nitrate - - compartment: c - - formula: NO3 + - id: "s_3914" + - name: "nitrate" + - compartment: "c" + - formula: "NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: no3 - - chebi: CHEBI:17632 - - kegg.compound: C00244 - - metanetx.chemical: MNXM207 - - sbo: SBO:0000247 + - bigg.metabolite: "no3" + - chebi: "CHEBI:17632" + - kegg.compound: "C00244" + - metanetx.chemical: "MNXM207" + - sbo: "SBO:0000247" - !!omap - - id: s_3915 - - name: (R)-Lipoate - - compartment: c - - formula: C8H13O2S2 + - id: "s_3915" + - name: "(R)-Lipoate" + - compartment: "c" + - formula: "C8H13O2S2" - charge: -1 - annotation: !!omap - - bigg.metabolite: lipoate - - chebi: CHEBI:83088 - - kegg.compound: C16241 - - metanetx.chemical: MNXM1484 - - sbo: SBO:0000247 + - bigg.metabolite: "lipoate" + - chebi: "CHEBI:83088" + - kegg.compound: "C16241" + - metanetx.chemical: "MNXM1484" + - sbo: "SBO:0000247" - !!omap - - id: s_3916 - - name: Lipoyl-AMP - - compartment: c - - formula: C18H25N5O8PS2 + - id: "s_3916" + - name: "Lipoyl-AMP" + - compartment: "c" + - formula: "C18H25N5O8PS2" - charge: -1 - annotation: !!omap - - bigg.metabolite: lipoamp - - chebi: CHEBI:83091 - - kegg.compound: C16238 - - metanetx.chemical: MNXM2392 - - sbo: SBO:0000247 + - bigg.metabolite: "lipoamp" + - chebi: "CHEBI:83091" + - kegg.compound: "C16238" + - metanetx.chemical: "MNXM2392" + - sbo: "SBO:0000247" - !!omap - - id: s_3917 - - name: Apoprotein - - compartment: c - - formula: NH2R + - id: "s_3917" + - name: "Apoprotein" + - compartment: "c" + - formula: "NH2R" - charge: 0 - annotation: !!omap - - chebi: CHEBI:13850 - - kegg.compound: C16240 - - metanetx.chemical: MNXM91491 - - sbo: SBO:0000247 + - chebi: "CHEBI:13850" + - kegg.compound: "C16240" + - metanetx.chemical: "MNXM91491" + - sbo: "SBO:0000247" - !!omap - - id: s_3918 - - name: Protein N6-(lipoyl)lysine - - compartment: c - - formula: C8H14NOS2R + - id: "s_3918" + - name: "Protein N6-(lipoyl)lysine" + - compartment: "c" + - formula: "C8H14NOS2R" - charge: 0 - annotation: !!omap - - chebi: CHEBI:80399 - - kegg.compound: C16237 - - metanetx.chemical: MNXM96070 - - sbo: SBO:0000247 + - chebi: "CHEBI:80399" + - kegg.compound: "C16237" + - metanetx.chemical: "MNXM96070" + - sbo: "SBO:0000247" - !!omap - - id: s_3923 - - name: N-(4-oxoglutarate)-L-cysteinylglycine - - compartment: c - - formula: C10H12N2O7S + - id: "s_3923" + - name: "N-(4-oxoglutarate)-L-cysteinylglycine" + - compartment: "c" + - formula: "C10H12N2O7S" - charge: -2 - annotation: !!omap - - chebi: CHEBI:138256 - - sbo: SBO:0000247 + - chebi: "CHEBI:138256" + - sbo: "SBO:0000247" - !!omap - - id: s_3924 - - name: N-(4-oxoglutarate)-L-cysteinylglycine - - compartment: m - - formula: C10H12N2O7S + - id: "s_3924" + - name: "N-(4-oxoglutarate)-L-cysteinylglycine" + - compartment: "m" + - formula: "C10H12N2O7S" - charge: -2 - annotation: !!omap - - chebi: CHEBI:138256 - - sbo: SBO:0000247 + - chebi: "CHEBI:138256" + - sbo: "SBO:0000247" - !!omap - - id: s_3925 - - name: L-cysteinylglycine - - compartment: m - - formula: C5H10N2O3S + - id: "s_3925" + - name: "L-cysteinylglycine" + - compartment: "m" + - formula: "C5H10N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: cgly - - chebi: CHEBI:4047 - - kegg.compound: C01419 - - metanetx.chemical: MNXM683 - - sbo: SBO:0000247 + - bigg.metabolite: "cgly" + - chebi: "CHEBI:4047" + - kegg.compound: "C01419" + - metanetx.chemical: "MNXM683" + - sbo: "SBO:0000247" - !!omap - - id: s_3926 - - name: chloride - - compartment: g - - formula: Cl + - id: "s_3926" + - name: "chloride" + - compartment: "g" + - formula: "Cl" - charge: -1 - annotation: !!omap - - bigg.metabolite: cl - - chebi: CHEBI:17996 - - kegg.compound: C00698 - - metanetx.chemical: MNXM43 - - sbo: SBO:0000247 + - bigg.metabolite: "cl" + - chebi: "CHEBI:17996" + - kegg.compound: "C00698" + - metanetx.chemical: "MNXM43" + - sbo: "SBO:0000247" - !!omap - - id: s_3927 - - name: ribonucleoside 5'-triphosphate - - compartment: c - - formula: C5H8O13P3R + - id: "s_3927" + - name: "ribonucleoside 5'-triphosphate" + - compartment: "c" + - formula: "C5H8O13P3R" - charge: -4 - annotation: !!omap - - chebi: CHEBI:61557 - - kegg.compound: C03802 - - metanetx.chemical: MNXM96380 - - sbo: SBO:0000247 + - chebi: "CHEBI:61557" + - kegg.compound: "C03802" + - metanetx.chemical: "MNXM96380" + - sbo: "SBO:0000247" - !!omap - - id: s_3928 - - name: ribonucleoside 5'-phosphate - - compartment: c - - formula: C5H8O7PR + - id: "s_3928" + - name: "ribonucleoside 5'-phosphate" + - compartment: "c" + - formula: "C5H8O7PR" - charge: -2 - annotation: !!omap - - chebi: CHEBI:58043 - - kegg.compound: C00171 - - metanetx.chemical: MNXM80910 - - sbo: SBO:0000247 + - chebi: "CHEBI:58043" + - kegg.compound: "C00171" + - metanetx.chemical: "MNXM80910" + - sbo: "SBO:0000247" - !!omap - - id: s_3929 - - name: 2'-deoxyribonucleoside 5'-triphosphate - - compartment: c - - formula: C5H8O12P3R + - id: "s_3929" + - name: "2'-deoxyribonucleoside 5'-triphosphate" + - compartment: "c" + - formula: "C5H8O12P3R" - charge: -4 - annotation: !!omap - - chebi: CHEBI:61560 - - kegg.compound: C00677 - - metanetx.chemical: MNXM96330 - - sbo: SBO:0000247 + - chebi: "CHEBI:61560" + - kegg.compound: "C00677" + - metanetx.chemical: "MNXM96330" + - sbo: "SBO:0000247" - !!omap - - id: s_3930 - - name: 2'-deoxyribonucleoside 5'-phosphate - - compartment: c - - formula: C5H8O6PR + - id: "s_3930" + - name: "2'-deoxyribonucleoside 5'-phosphate" + - compartment: "c" + - formula: "C5H8O6PR" - charge: -2 - annotation: !!omap - - chebi: CHEBI:65317 - - kegg.compound: C00676 - - metanetx.chemical: MNXM6057 - - sbo: SBO:0000247 + - chebi: "CHEBI:65317" + - kegg.compound: "C00676" + - metanetx.chemical: "MNXM6057" + - sbo: "SBO:0000247" - !!omap - - id: s_3931 - - name: superoxide - - compartment: c - - formula: O2 + - id: "s_3931" + - name: "superoxide" + - compartment: "c" + - formula: "O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: o2s - - chebi: CHEBI:18421 - - kegg.compound: C00704 - - metanetx.chemical: MNXM330 - - sbo: SBO:0000247 + - bigg.metabolite: "o2s" + - chebi: "CHEBI:18421" + - kegg.compound: "C00704" + - metanetx.chemical: "MNXM330" + - sbo: "SBO:0000247" - !!omap - - id: s_3932 - - name: G00012 - - compartment: er - - formula: C50H82N4O37 + - id: "s_3932" + - name: "G00012" + - compartment: "er" + - formula: "C50H82N4O37" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM9328 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM9328" + - sbo: "SBO:0000247" - !!omap - - id: s_3933 - - name: D-mannose - - compartment: er - - formula: C6H12O6 + - id: "s_3933" + - name: "D-mannose" + - compartment: "er" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: man - - chebi: CHEBI:4208 - - kegg.compound: C00159 - - metanetx.chemical: MNXM182 - - sbo: SBO:0000247 + - bigg.metabolite: "man" + - chebi: "CHEBI:4208" + - kegg.compound: "C00159" + - metanetx.chemical: "MNXM182" + - sbo: "SBO:0000247" - !!omap - - id: s_3934 - - name: Ethylnitronate - - compartment: c - - formula: C2H5NO2 + - id: "s_3934" + - name: "Ethylnitronate" + - compartment: "c" + - formula: "C2H5NO2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:16268 - - kegg.compound: C18091 - - metanetx.chemical: MNXM2143 - - sbo: SBO:0000247 + - chebi: "CHEBI:16268" + - kegg.compound: "C18091" + - metanetx.chemical: "MNXM2143" + - sbo: "SBO:0000247" - !!omap - - id: s_3935 - - name: Nitrite - - compartment: c - - formula: NO2 + - id: "s_3935" + - name: "Nitrite" + - compartment: "c" + - formula: "NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: no2 - - chebi: CHEBI:16301 - - kegg.compound: C00088 - - metanetx.chemical: MNXM107 - - sbo: SBO:0000247 + - bigg.metabolite: "no2" + - chebi: "CHEBI:16301" + - kegg.compound: "C00088" + - metanetx.chemical: "MNXM107" + - sbo: "SBO:0000247" - !!omap - - id: s_3936 - - name: iron(3+) - - compartment: e - - formula: Fe + - id: "s_3936" + - name: "iron(3+)" + - compartment: "e" + - formula: "Fe" - charge: 3 - annotation: !!omap - - bigg.metabolite: fe3 - - kegg.compound: C14819 - - metanetx.chemical: MNXM196 - - sbo: SBO:0000247 + - bigg.metabolite: "fe3" + - kegg.compound: "C14819" + - metanetx.chemical: "MNXM196" + - sbo: "SBO:0000247" - !!omap - - id: s_3937 - - name: Acyl-CoA - - compartment: er - - formula: C22H31N7O17P3SR + - id: "s_3937" + - name: "Acyl-CoA" + - compartment: "er" + - formula: "C22H31N7O17P3SR" - charge: -4 - annotation: !!omap - - bigg.metabolite: acoa - - chebi: CHEBI:58342 - - kegg.compound: C00040 - - metanetx.chemical: MNXM44 - - sbo: SBO:0000247 + - bigg.metabolite: "acoa" + - chebi: "CHEBI:58342" + - kegg.compound: "C00040" + - metanetx.chemical: "MNXM44" + - sbo: "SBO:0000247" - !!omap - - id: s_3938 - - name: 1-acyl-sn-glycerol 3-phosphate - - compartment: er - - formula: C4H6O7PR + - id: "s_3938" + - name: "1-acyl-sn-glycerol 3-phosphate" + - compartment: "er" + - formula: "C4H6O7PR" - charge: -2 - annotation: !!omap - - bigg.metabolite: 1ag3p_SC - - chebi: CHEBI:57970 - - kegg.compound: C00681 - - metanetx.chemical: MNXM145527 - - sbo: SBO:0000247 + - bigg.metabolite: "1ag3p_SC" + - chebi: "CHEBI:57970" + - kegg.compound: "C00681" + - metanetx.chemical: "MNXM145527" + - sbo: "SBO:0000247" - !!omap - - id: s_3939 - - name: 1,2-diacyl-sn-glycerol 3-phosphate - - compartment: er - - formula: C5H5O8PR2 + - id: "s_3939" + - name: "1,2-diacyl-sn-glycerol 3-phosphate" + - compartment: "er" + - formula: "C5H5O8PR2" - charge: -2 - annotation: !!omap - - bigg.metabolite: pa_EC - - chebi: CHEBI:58608 - - kegg.compound: C00416 - - metanetx.chemical: MNXM96054 - - sbo: SBO:0000247 + - bigg.metabolite: "pa_EC" + - chebi: "CHEBI:58608" + - kegg.compound: "C00416" + - metanetx.chemical: "MNXM96054" + - sbo: "SBO:0000247" - !!omap - - id: s_3940 - - name: Peptide diphthine - - compartment: c - - formula: C13H20N4O3R2 + - id: "s_3940" + - name: "Peptide diphthine" + - compartment: "c" + - formula: "C13H20N4O3R2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:18054 - - kegg.compound: C01573 - - metanetx.chemical: MNXM3980 - - sbo: SBO:0000247 + - chebi: "CHEBI:18054" + - kegg.compound: "C01573" + - metanetx.chemical: "MNXM3980" + - sbo: "SBO:0000247" - !!omap - - id: s_3941 - - name: Peptide diphthamide - - compartment: c - - formula: C13H22N5O2R2 + - id: "s_3941" + - name: "Peptide diphthamide" + - compartment: "c" + - formula: "C13H22N5O2R2" - charge: 1 - annotation: !!omap - - chebi: CHEBI:82696 - - kegg.compound: C02872 - - metanetx.chemical: MNXM51194 - - sbo: SBO:0000247 + - chebi: "CHEBI:82696" + - kegg.compound: "C02872" + - metanetx.chemical: "MNXM51194" + - sbo: "SBO:0000247" - !!omap - - id: s_3942 - - name: 8-oxo-dGTP - - compartment: p - - formula: C10H12N5O14P3 + - id: "s_3942" + - name: "8-oxo-dGTP" + - compartment: "p" + - formula: "C10H12N5O14P3" - charge: -4 - annotation: !!omap - - kegg.compound: C19967 - - metanetx.chemical: MNXM4425 - - sbo: SBO:0000247 + - kegg.compound: "C19967" + - metanetx.chemical: "MNXM4425" + - sbo: "SBO:0000247" - !!omap - - id: s_3943 - - name: 8-oxo-dGMP - - compartment: p - - formula: C10H12N5O8P + - id: "s_3943" + - name: "8-oxo-dGMP" + - compartment: "p" + - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - kegg.compound: C19968 - - metanetx.chemical: MNXM2497 - - sbo: SBO:0000247 + - kegg.compound: "C19968" + - metanetx.chemical: "MNXM2497" + - sbo: "SBO:0000247" - !!omap - - id: s_3944 - - name: Apoprotein - - compartment: m - - formula: NH2R + - id: "s_3944" + - name: "Apoprotein" + - compartment: "m" + - formula: "NH2R" - charge: 0 - annotation: !!omap - - chebi: CHEBI:13850 - - kegg.compound: C16240 - - metanetx.chemical: MNXM91491 - - sbo: SBO:0000247 + - chebi: "CHEBI:13850" + - kegg.compound: "C16240" + - metanetx.chemical: "MNXM91491" + - sbo: "SBO:0000247" - !!omap - - id: s_3945 - - name: Protein N6-(octanoyl)lysine - - compartment: m - - formula: C8H16NOR + - id: "s_3945" + - name: "Protein N6-(octanoyl)lysine" + - compartment: "m" + - formula: "C8H16NOR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:80398 - - kegg.compound: C16236 - - metanetx.chemical: MNXM4090 - - sbo: SBO:0000247 + - chebi: "CHEBI:80398" + - kegg.compound: "C16236" + - metanetx.chemical: "MNXM4090" + - sbo: "SBO:0000247" - !!omap - - id: s_3946 - - name: Lipoyl-[acp] - - compartment: m - - formula: C8H13OS3R + - id: "s_3946" + - name: "Lipoyl-[acp]" + - compartment: "m" + - formula: "C8H13OS3R" - charge: 0 - annotation: !!omap - - bigg.metabolite: lipACP - - chebi: CHEBI:80400 - - kegg.compound: C16239 - - metanetx.chemical: MNXM19093 - - sbo: SBO:0000247 + - bigg.metabolite: "lipACP" + - chebi: "CHEBI:80400" + - kegg.compound: "C16239" + - metanetx.chemical: "MNXM19093" + - sbo: "SBO:0000247" - !!omap - - id: s_3947 - - name: Protein N6-(lipoyl)lysine - - compartment: m - - formula: C8H14NOS2R + - id: "s_3947" + - name: "Protein N6-(lipoyl)lysine" + - compartment: "m" + - formula: "C8H14NOS2R" - charge: 0 - annotation: !!omap - - chebi: CHEBI:80399 - - kegg.compound: C16237 - - metanetx.chemical: MNXM96070 - - sbo: SBO:0000247 + - chebi: "CHEBI:80399" + - kegg.compound: "C16237" + - metanetx.chemical: "MNXM96070" + - sbo: "SBO:0000247" - !!omap - - id: s_3948 - - name: beta-D-Fructose 6-phosphate - - compartment: c - - formula: C6H11O9P + - id: "s_3948" + - name: "beta-D-Fructose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: f6p_B - - chebi: CHEBI:57634 - - kegg.compound: C05345 - - metanetx.chemical: MNXM89621 - - sbo: SBO:0000247 + - bigg.metabolite: "f6p_B" + - chebi: "CHEBI:57634" + - kegg.compound: "C05345" + - metanetx.chemical: "MNXM89621" + - sbo: "SBO:0000247" - !!omap - - id: s_3949 - - name: beta-D-Glucose - - compartment: c - - formula: C6H12O6 + - id: "s_3949" + - name: "beta-D-Glucose" + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: glc__bD - - chebi: CHEBI:15903 - - kegg.compound: C00221 - - metanetx.chemical: MNXM105 - - sbo: SBO:0000247 + - bigg.metabolite: "glc__bD" + - chebi: "CHEBI:15903" + - kegg.compound: "C00221" + - metanetx.chemical: "MNXM105" + - sbo: "SBO:0000247" - !!omap - - id: s_3950 - - name: beta-D-Glucose 6-phosphate - - compartment: c - - formula: C6H11O9P + - id: "s_3950" + - name: "beta-D-Glucose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: g6p_B - - chebi: CHEBI:58247 - - kegg.compound: C01172 - - metanetx.chemical: MNXM508 - - sbo: SBO:0000247 + - bigg.metabolite: "g6p_B" + - chebi: "CHEBI:58247" + - kegg.compound: "C01172" + - metanetx.chemical: "MNXM508" + - sbo: "SBO:0000247" - !!omap - - id: s_3951 - - name: alpha-D-Glucose - - compartment: c - - formula: C6H12O6 + - id: "s_3951" + - name: "alpha-D-Glucose" + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17925 - - kegg.compound: C00267 - - metanetx.chemical: MNXM99 - - sbo: SBO:0000247 + - chebi: "CHEBI:17925" + - kegg.compound: "C00267" + - metanetx.chemical: "MNXM99" + - sbo: "SBO:0000247" - !!omap - - id: s_3952 - - name: alpha-D-Glucose 6-phosphate - - compartment: c - - formula: C6H11O9P + - id: "s_3952" + - name: "alpha-D-Glucose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: g6p_A - - chebi: CHEBI:58225 - - kegg.compound: C00668 - - metanetx.chemical: MNXM215 - - sbo: SBO:0000247 + - bigg.metabolite: "g6p_A" + - chebi: "CHEBI:58225" + - kegg.compound: "C00668" + - metanetx.chemical: "MNXM215" + - sbo: "SBO:0000247" - !!omap - - id: s_3953 - - name: D-Glucosamine - - compartment: c - - formula: C6H14NO5 + - id: "s_3953" + - name: "D-Glucosamine" + - compartment: "c" + - formula: "C6H14NO5" - charge: 1 - annotation: !!omap - - bigg.metabolite: gam - - chebi: CHEBI:47977 - - kegg.compound: C00329 - - metanetx.chemical: MNXM533 - - sbo: SBO:0000247 + - bigg.metabolite: "gam" + - chebi: "CHEBI:47977" + - kegg.compound: "C00329" + - metanetx.chemical: "MNXM533" + - sbo: "SBO:0000247" - !!omap - - id: s_3954 - - name: beta-D-Fructose - - compartment: c - - formula: C6H12O6 + - id: "s_3954" + - name: "beta-D-Fructose" + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: fru_B - - chebi: CHEBI:28645 - - kegg.compound: C02336 - - metanetx.chemical: MNXM1542 - - sbo: SBO:0000247 + - bigg.metabolite: "fru_B" + - chebi: "CHEBI:28645" + - kegg.compound: "C02336" + - metanetx.chemical: "MNXM1542" + - sbo: "SBO:0000247" - !!omap - - id: s_3958 - - name: D-Glycerate - - compartment: c - - formula: C3H5O4 + - id: "s_3958" + - name: "D-Glycerate" + - compartment: "c" + - formula: "C3H5O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: glyc__R - - chebi: CHEBI:16659 - - kegg.compound: C00258 - - metanetx.chemical: MNXM189 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc__R" + - chebi: "CHEBI:16659" + - kegg.compound: "C00258" + - metanetx.chemical: "MNXM189" + - sbo: "SBO:0000247" - !!omap - - id: s_3959 - - name: 2-Propynal - - compartment: c - - formula: C3H2O + - id: "s_3959" + - name: "2-Propynal" + - compartment: "c" + - formula: "C3H2O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:27976 - - kegg.compound: C05985 - - metanetx.chemical: MNXM2716 - - sbo: SBO:0000247 + - chebi: "CHEBI:27976" + - kegg.compound: "C05985" + - metanetx.chemical: "MNXM2716" + - sbo: "SBO:0000247" - !!omap - - id: s_3960 - - name: Propynoate - - compartment: c - - formula: C3HO2 + - id: "s_3960" + - name: "Propynoate" + - compartment: "c" + - formula: "C3HO2" - charge: -1 - annotation: !!omap - - chebi: CHEBI:15364 - - kegg.compound: C00804 - - metanetx.chemical: MNXM2422 - - sbo: SBO:0000247 + - chebi: "CHEBI:15364" + - kegg.compound: "C00804" + - metanetx.chemical: "MNXM2422" + - sbo: "SBO:0000247" - !!omap - - id: s_3961 - - name: D-Glucuronolactone - - compartment: c - - formula: C6H8O6 + - id: "s_3961" + - name: "D-Glucuronolactone" + - compartment: "c" + - formula: "C6H8O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: glcurn - - chebi: CHEBI:18268 - - kegg.compound: C02670 - - metanetx.chemical: MNXM17108 - - sbo: SBO:0000247 + - bigg.metabolite: "glcurn" + - chebi: "CHEBI:18268" + - kegg.compound: "C02670" + - metanetx.chemical: "MNXM17108" + - sbo: "SBO:0000247" - !!omap - - id: s_3962 - - name: D-Glucarate - - compartment: c - - formula: C6H8O8 + - id: "s_3962" + - name: "D-Glucarate" + - compartment: "c" + - formula: "C6H8O8" - charge: -2 - annotation: !!omap - - bigg.metabolite: glcr - - chebi: CHEBI:30612 - - kegg.compound: C00818 - - metanetx.chemical: MNXM744 - - sbo: SBO:0000247 + - bigg.metabolite: "glcr" + - chebi: "CHEBI:30612" + - kegg.compound: "C00818" + - metanetx.chemical: "MNXM744" + - sbo: "SBO:0000247" - !!omap - - id: s_3963 - - name: 4-Trimethylammoniobutanal - - compartment: c - - formula: C7H16NO + - id: "s_3963" + - name: "4-Trimethylammoniobutanal" + - compartment: "c" + - formula: "C7H16NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: 4tmeabut - - chebi: CHEBI:18020 - - kegg.compound: C01149 - - metanetx.chemical: MNXM940 - - sbo: SBO:0000247 + - bigg.metabolite: "4tmeabut" + - chebi: "CHEBI:18020" + - kegg.compound: "C01149" + - metanetx.chemical: "MNXM940" + - sbo: "SBO:0000247" - !!omap - - id: s_3964 - - name: 4-Trimethylammoniobutanoate - - compartment: c - - formula: C7H15NO2 + - id: "s_3964" + - name: "4-Trimethylammoniobutanoate" + - compartment: "c" + - formula: "C7H15NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4tmeabutn - - chebi: CHEBI:1941 - - kegg.compound: C01181 - - metanetx.chemical: MNXM626 - - sbo: SBO:0000247 + - bigg.metabolite: "4tmeabutn" + - chebi: "CHEBI:1941" + - kegg.compound: "C01181" + - metanetx.chemical: "MNXM626" + - sbo: "SBO:0000247" - !!omap - - id: s_3965 - - name: (S)-Methylmalonate semialdehyde - - compartment: c - - formula: C4H5O3 + - id: "s_3965" + - name: "(S)-Methylmalonate semialdehyde" + - compartment: "c" + - formula: "C4H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: mmtsa - - chebi: CHEBI:62413 - - kegg.compound: C06002 - - metanetx.chemical: MNXM933 - - sbo: SBO:0000247 + - bigg.metabolite: "mmtsa" + - chebi: "CHEBI:62413" + - kegg.compound: "C06002" + - metanetx.chemical: "MNXM933" + - sbo: "SBO:0000247" - !!omap - - id: s_3966 - - name: Methylmalonate - - compartment: c - - formula: C4H4O4 + - id: "s_3966" + - name: "Methylmalonate" + - compartment: "c" + - formula: "C4H4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: mmal - - chebi: CHEBI:17453 - - kegg.compound: C02170 - - metanetx.chemical: MNXM1572 - - sbo: SBO:0000247 + - bigg.metabolite: "mmal" + - chebi: "CHEBI:17453" + - kegg.compound: "C02170" + - metanetx.chemical: "MNXM1572" + - sbo: "SBO:0000247" - !!omap - - id: s_3967 - - name: Imidazole-4-acetaldehyde - - compartment: c - - formula: C5H6N2O + - id: "s_3967" + - name: "Imidazole-4-acetaldehyde" + - compartment: "c" + - formula: "C5H6N2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: im4act - - chebi: CHEBI:27398 - - kegg.compound: C05130 - - metanetx.chemical: MNXM1745 - - sbo: SBO:0000247 + - bigg.metabolite: "im4act" + - chebi: "CHEBI:27398" + - kegg.compound: "C05130" + - metanetx.chemical: "MNXM1745" + - sbo: "SBO:0000247" - !!omap - - id: s_3968 - - name: Imidazole-4-acetate - - compartment: c - - formula: C5H5N2O2 + - id: "s_3968" + - name: "Imidazole-4-acetate" + - compartment: "c" + - formula: "C5H5N2O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: im4ac - - chebi: CHEBI:16974 - - kegg.compound: C02835 - - metanetx.chemical: MNXM1330 - - sbo: SBO:0000247 + - bigg.metabolite: "im4ac" + - chebi: "CHEBI:16974" + - kegg.compound: "C02835" + - metanetx.chemical: "MNXM1330" + - sbo: "SBO:0000247" - !!omap - - id: s_3969 - - name: 3alpha,7alpha-Dihydroxy-5beta-cholestan-26-al - - compartment: c - - formula: C27H46O3 + - id: "s_3969" + - name: "3alpha,7alpha-Dihydroxy-5beta-cholestan-26-al" + - compartment: "c" + - formula: "C27H46O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: xol7ah2al - - chebi: CHEBI:27428 - - kegg.compound: C05445 - - metanetx.chemical: MNXM1174 - - sbo: SBO:0000247 + - bigg.metabolite: "xol7ah2al" + - chebi: "CHEBI:27428" + - kegg.compound: "C05445" + - metanetx.chemical: "MNXM1174" + - sbo: "SBO:0000247" - !!omap - - id: s_3970 - - name: 3alpha,7alpha-Dihydroxy-5beta-cholestanate - - compartment: c - - formula: C27H45O4 + - id: "s_3970" + - name: "3alpha,7alpha-Dihydroxy-5beta-cholestanate" + - compartment: "c" + - formula: "C27H45O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: dhcholestanate - - chebi: CHEBI:16577 - - kegg.compound: C04554 - - metanetx.chemical: MNXM484588 - - sbo: SBO:0000247 + - bigg.metabolite: "dhcholestanate" + - chebi: "CHEBI:16577" + - kegg.compound: "C04554" + - metanetx.chemical: "MNXM484588" + - sbo: "SBO:0000247" - !!omap - - id: s_3971 - - name: 5-Hydroxyindoleacetaldehyde - - compartment: c - - formula: C10H9NO2 + - id: "s_3971" + - name: "5-Hydroxyindoleacetaldehyde" + - compartment: "c" + - formula: "C10H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: 5hoxindact - - chebi: CHEBI:50157 - - kegg.compound: C05634 - - metanetx.chemical: MNXM1057 - - sbo: SBO:0000247 + - bigg.metabolite: "5hoxindact" + - chebi: "CHEBI:50157" + - kegg.compound: "C05634" + - metanetx.chemical: "MNXM1057" + - sbo: "SBO:0000247" - !!omap - - id: s_3972 - - name: 5-Hydroxyindoleacetate - - compartment: c - - formula: C10H8NO3 + - id: "s_3972" + - name: "5-Hydroxyindoleacetate" + - compartment: "c" + - formula: "C10H8NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 5hoxindoa - - chebi: CHEBI:27823 - - kegg.compound: C05635 - - metanetx.chemical: MNXM1961 - - sbo: SBO:0000247 + - bigg.metabolite: "5hoxindoa" + - chebi: "CHEBI:27823" + - kegg.compound: "C05635" + - metanetx.chemical: "MNXM1961" + - sbo: "SBO:0000247" - !!omap - - id: s_3973 - - name: N4-Acetylaminobutanal - - compartment: c - - formula: C6H11NO2 + - id: "s_3973" + - name: "N4-Acetylaminobutanal" + - compartment: "c" + - formula: "C6H11NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: n4abutn - - chebi: CHEBI:7386 - - kegg.compound: C05936 - - metanetx.chemical: MNXM1527 - - sbo: SBO:0000247 + - bigg.metabolite: "n4abutn" + - chebi: "CHEBI:7386" + - kegg.compound: "C05936" + - metanetx.chemical: "MNXM1527" + - sbo: "SBO:0000247" - !!omap - - id: s_3974 - - name: 4-Acetamidobutanoate - - compartment: c - - formula: C6H10NO3 + - id: "s_3974" + - name: "4-Acetamidobutanoate" + - compartment: "c" + - formula: "C6H10NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: 4aabutn - - chebi: CHEBI:11951 - - kegg.compound: C02946 - - metanetx.chemical: MNXM2083 - - sbo: SBO:0000247 + - bigg.metabolite: "4aabutn" + - chebi: "CHEBI:11951" + - kegg.compound: "C02946" + - metanetx.chemical: "MNXM2083" + - sbo: "SBO:0000247" - !!omap - - id: s_3975 - - name: trans-3-Chloroallyl aldehyde - - compartment: c - - formula: C3H3ClO + - id: "s_3975" + - name: "trans-3-Chloroallyl aldehyde" + - compartment: "c" + - formula: "C3H3ClO" - charge: 0 - annotation: !!omap - - chebi: CHEBI:28452 - - kegg.compound: C06613 - - metanetx.chemical: MNXM5312 - - sbo: SBO:0000247 + - chebi: "CHEBI:28452" + - kegg.compound: "C06613" + - metanetx.chemical: "MNXM5312" + - sbo: "SBO:0000247" - !!omap - - id: s_3976 - - name: trans-3-Chloroacrylic acid - - compartment: c - - formula: C3H2ClO2 + - id: "s_3976" + - name: "trans-3-Chloroacrylic acid" + - compartment: "c" + - formula: "C3H2ClO2" - charge: -1 - annotation: !!omap - - chebi: CHEBI:19982 - - kegg.compound: C06614 - - metanetx.chemical: MNXM6086 - - sbo: SBO:0000247 + - chebi: "CHEBI:19982" + - kegg.compound: "C06614" + - metanetx.chemical: "MNXM6086" + - sbo: "SBO:0000247" - !!omap - - id: s_3977 - - name: cis-3-Chloroallyl aldehyde - - compartment: c - - formula: C3H3ClO + - id: "s_3977" + - name: "cis-3-Chloroallyl aldehyde" + - compartment: "c" + - formula: "C3H3ClO" - charge: 0 - annotation: !!omap - - chebi: CHEBI:80465 - - kegg.compound: C16348 - - metanetx.chemical: MNXM6216 - - sbo: SBO:0000247 + - chebi: "CHEBI:80465" + - kegg.compound: "C16348" + - metanetx.chemical: "MNXM6216" + - sbo: "SBO:0000247" - !!omap - - id: s_3978 - - name: cis-3-Chloroacrylic acid - - compartment: c - - formula: C3H2ClO2 + - id: "s_3978" + - name: "cis-3-Chloroacrylic acid" + - compartment: "c" + - formula: "C3H2ClO2" - charge: -1 - annotation: !!omap - - chebi: CHEBI:27397 - - kegg.compound: C06615 - - metanetx.chemical: MNXM46935 - - sbo: SBO:0000247 + - chebi: "CHEBI:27397" + - kegg.compound: "C06615" + - metanetx.chemical: "MNXM46935" + - sbo: "SBO:0000247" - !!omap - - id: s_3979 - - name: Chloroacetaldehyde - - compartment: c - - formula: C2H3ClO + - id: "s_3979" + - name: "Chloroacetaldehyde" + - compartment: "c" + - formula: "C2H3ClO" - charge: 0 - annotation: !!omap - - chebi: CHEBI:27871 - - kegg.compound: C06754 - - metanetx.chemical: MNXM1816 - - sbo: SBO:0000247 + - chebi: "CHEBI:27871" + - kegg.compound: "C06754" + - metanetx.chemical: "MNXM1816" + - sbo: "SBO:0000247" - !!omap - - id: s_3980 - - name: Chloroacetic acid - - compartment: c - - formula: C2H2ClO2 + - id: "s_3980" + - name: "Chloroacetic acid" + - compartment: "c" + - formula: "C2H2ClO2" - charge: -1 - annotation: !!omap - - chebi: CHEBI:27869 - - kegg.compound: C06755 - - metanetx.chemical: MNXM1468 - - sbo: SBO:0000247 + - chebi: "CHEBI:27869" + - kegg.compound: "C06755" + - metanetx.chemical: "MNXM1468" + - sbo: "SBO:0000247" - !!omap - - id: s_3981 - - name: Perillyl aldehyde - - compartment: c - - formula: C10H14O + - id: "s_3981" + - name: "Perillyl aldehyde" + - compartment: "c" + - formula: "C10H14O" - charge: 0 - annotation: !!omap - - bigg.metabolite: pylald - - chebi: CHEBI:15421 - - kegg.compound: C02576 - - metanetx.chemical: MNXM2149 - - sbo: SBO:0000247 + - bigg.metabolite: "pylald" + - chebi: "CHEBI:15421" + - kegg.compound: "C02576" + - metanetx.chemical: "MNXM2149" + - sbo: "SBO:0000247" - !!omap - - id: s_3982 - - name: Perillic acid - - compartment: c - - formula: C10H13O2 + - id: "s_3982" + - name: "Perillic acid" + - compartment: "c" + - formula: "C10H13O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: peracd - - chebi: CHEBI:36999 - - kegg.compound: C11924 - - metanetx.chemical: MNXM2414 - - sbo: SBO:0000247 + - bigg.metabolite: "peracd" + - chebi: "CHEBI:36999" + - kegg.compound: "C11924" + - metanetx.chemical: "MNXM2414" + - sbo: "SBO:0000247" - !!omap - - id: s_3983 - - name: 2-trans,6-trans-Farnesal - - compartment: c - - formula: C15H24O + - id: "s_3983" + - name: "2-trans,6-trans-Farnesal" + - compartment: "c" + - formula: "C15H24O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:15894 - - kegg.compound: C03461 - - metanetx.chemical: MNXM1959 - - sbo: SBO:0000247 + - chebi: "CHEBI:15894" + - kegg.compound: "C03461" + - metanetx.chemical: "MNXM1959" + - sbo: "SBO:0000247" - !!omap - - id: s_3984 - - name: Farnesoic acid - - compartment: c - - formula: C15H23O2 + - id: "s_3984" + - name: "Farnesoic acid" + - compartment: "c" + - formula: "C15H23O2" - charge: -1 - annotation: !!omap - - chebi: CHEBI:84162 - - kegg.compound: C16502 - - metanetx.chemical: MNXM3989 - - sbo: SBO:0000247 + - chebi: "CHEBI:84162" + - kegg.compound: "C16502" + - metanetx.chemical: "MNXM3989" + - sbo: "SBO:0000247" - !!omap - - id: s_3985 - - name: phospholipid - - compartment: erm - - formula: C5H6O8PR3 + - id: "s_3985" + - name: "phospholipid" + - compartment: "erm" + - formula: "C5H6O8PR3" - charge: 0 - annotation: !!omap - - chebi: CHEBI:16247 - - kegg.compound: C00865 - - sbo: SBO:0000247 + - chebi: "CHEBI:16247" + - kegg.compound: "C00865" + - sbo: "SBO:0000247" - !!omap - - id: s_3986 - - name: phospholipid - - compartment: gm - - formula: C5H6O8PR3 + - id: "s_3986" + - name: "phospholipid" + - compartment: "gm" + - formula: "C5H6O8PR3" - charge: 0 - annotation: !!omap - - chebi: CHEBI:16247 - - kegg.compound: C00865 - - sbo: SBO:0000247 + - chebi: "CHEBI:16247" + - kegg.compound: "C00865" + - sbo: "SBO:0000247" - !!omap - - id: s_3987 - - name: ADP - - compartment: erm - - formula: C10H12N5O10P2 + - id: "s_3987" + - name: "ADP" + - compartment: "erm" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: adp - - chebi: CHEBI:456216 - - kegg.compound: C00008 - - metanetx.chemical: MNXM7 - - sbo: SBO:0000247 + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - - id: s_3988 - - name: 1-oleoyl-sn-glycerol - - compartment: c - - formula: C21H40O4 + - id: "s_3988" + - name: "1-oleoyl-sn-glycerol" + - compartment: "c" + - formula: "C21H40O4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:75757 - - metanetx.chemical: MNXM62354 - - sbo: SBO:0000247 + - chebi: "CHEBI:75757" + - metanetx.chemical: "MNXM62354" + - sbo: "SBO:0000247" - !!omap - - id: s_3989 - - name: G10526 - - compartment: er - - formula: C66H112N2O42P2R + - id: "s_3989" + - name: "G10526" + - compartment: "er" + - formula: "C66H112N2O42P2R" - charge: -2 - annotation: !!omap - - chebi: CHEBI:132511 - - sbo: SBO:0000247 + - chebi: "CHEBI:132511" + - sbo: "SBO:0000247" - !!omap - - id: s_3990 - - name: G00006 - - compartment: er - - formula: C78H132N2O52P2R + - id: "s_3990" + - name: "G00006" + - compartment: "er" + - formula: "C78H132N2O52P2R" - charge: -2 - annotation: !!omap - - chebi: CHEBI:132515 - - sbo: SBO:0000247 + - chebi: "CHEBI:132515" + - sbo: "SBO:0000247" - !!omap - - id: s_3991 - - name: carnosine - - compartment: c - - formula: C9H14N4O3 + - id: "s_3991" + - name: "carnosine" + - compartment: "c" + - formula: "C9H14N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: carn - - chebi: CHEBI:15727 - - kegg.compound: C00386 - - metanetx.chemical: MNXM1419 - - sbo: SBO:0000247 + - bigg.metabolite: "carn" + - chebi: "CHEBI:15727" + - kegg.compound: "C00386" + - metanetx.chemical: "MNXM1419" + - sbo: "SBO:0000247" - !!omap - - id: s_3992 - - name: anserine - - compartment: c - - formula: C10H16N4O3 + - id: "s_3992" + - name: "anserine" + - compartment: "c" + - formula: "C10H16N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ans - - chebi: CHEBI:18323 - - kegg.compound: C01262 - - metanetx.chemical: MNXM2639 - - sbo: SBO:0000247 + - bigg.metabolite: "ans" + - chebi: "CHEBI:18323" + - kegg.compound: "C01262" + - metanetx.chemical: "MNXM2639" + - sbo: "SBO:0000247" - !!omap - - id: s_3993 - - name: G10595 - - compartment: er - - formula: C72H122N2O47P2R + - id: "s_3993" + - name: "G10595" + - compartment: "er" + - formula: "C72H122N2O47P2R" - charge: -2 - annotation: !!omap - - metanetx.chemical: MNXM9262 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM9262" + - sbo: "SBO:0000247" - !!omap - - id: s_3994 - - name: G10596 - - compartment: er - - formula: C78H132N2O52P2R + - id: "s_3994" + - name: "G10596" + - compartment: "er" + - formula: "C78H132N2O52P2R" - charge: -2 - annotation: !!omap - - metanetx.chemical: MNXM9265 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM9265" + - sbo: "SBO:0000247" - !!omap - - id: s_3995 - - name: G10597 - - compartment: er - - formula: C84H142N2O57P2R + - id: "s_3995" + - name: "G10597" + - compartment: "er" + - formula: "C84H142N2O57P2R" - charge: -2 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_3996 - - name: G00007 - - compartment: er - - formula: C90H152N2O62P2R + - id: "s_3996" + - name: "G00007" + - compartment: "er" + - formula: "C90H152N2O62P2R" - charge: -2 - annotation: !!omap - - kegg.compound: C05868 - - metanetx.chemical: MNXM31425 - - sbo: SBO:0000247 + - kegg.compound: "C05868" + - metanetx.chemical: "MNXM31425" + - sbo: "SBO:0000247" - !!omap - - id: s_3997 - - name: glycolate - - compartment: c - - formula: C2H3O3 + - id: "s_3997" + - name: "glycolate" + - compartment: "c" + - formula: "C2H3O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: glyclt - - chebi: CHEBI:29805 - - kegg.compound: C00160 - - metanetx.chemical: MNXM222 - - sbo: SBO:0000247 + - bigg.metabolite: "glyclt" + - chebi: "CHEBI:29805" + - kegg.compound: "C00160" + - metanetx.chemical: "MNXM222" + - sbo: "SBO:0000247" - !!omap - - id: s_3998 - - name: sucrose - - compartment: c - - formula: C12H22O11 + - id: "s_3998" + - name: "sucrose" + - compartment: "c" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: sucr - - chebi: CHEBI:17992 - - kegg.compound: C00089 - - metanetx.chemical: MNXM167 - - sbo: SBO:0000247 + - bigg.metabolite: "sucr" + - chebi: "CHEBI:17992" + - kegg.compound: "C00089" + - metanetx.chemical: "MNXM167" + - sbo: "SBO:0000247" - !!omap - - id: s_3999 - - name: Isomaltose - - compartment: c - - formula: C12H22O11 + - id: "s_3999" + - name: "Isomaltose" + - compartment: "c" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: isomal - - chebi: CHEBI:28189 - - kegg.compound: C00252 - - metanetx.chemical: MNXM58018 - - sbo: SBO:0000247 + - bigg.metabolite: "isomal" + - chebi: "CHEBI:28189" + - kegg.compound: "C00252" + - metanetx.chemical: "MNXM58018" + - sbo: "SBO:0000247" - !!omap - - id: s_4000 - - name: Dextrin - - compartment: c - - formula: C12H20O10 + - id: "s_4000" + - name: "Dextrin" + - compartment: "c" + - formula: "C12H20O10" - charge: 0 - annotation: !!omap - - bigg.metabolite: starch - - chebi: CHEBI:28675 - - kegg.compound: C00721 - - sbo: SBO:0000247 + - bigg.metabolite: "starch" + - chebi: "CHEBI:28675" + - kegg.compound: "C00721" + - sbo: "SBO:0000247" - !!omap - - id: s_4001 - - name: G10598 - - compartment: er - - formula: C96H162N2O67P2R + - id: "s_4001" + - name: "G10598" + - compartment: "er" + - formula: "C96H162N2O67P2R" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM9336 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM9336" + - sbo: "SBO:0000247" - !!omap - - id: s_4002 - - name: G00149 - - compartment: er + - id: "s_4002" + - name: "G00149" + - compartment: "er" + - formula: "" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM7903 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM7903" + - sbo: "SBO:0000247" - !!omap - - id: s_4003 - - name: G00140 - - compartment: er + - id: "s_4003" + - name: "G00140" + - compartment: "er" + - formula: "" - charge: 0 - annotation: !!omap - - metanetx.chemical: MNXM9266 - - sbo: SBO:0000247 + - metanetx.chemical: "MNXM9266" + - sbo: "SBO:0000247" - !!omap - - id: s_4004 - - name: Sulfur donor - - compartment: m + - id: "s_4004" + - name: "Sulfur donor" + - compartment: "m" + - formula: "" - charge: 0 - annotation: !!omap - - chebi: CHEBI:80867 - - kegg.compound: C17023 - - metanetx.chemical: MNXM4111 - - sbo: SBO:0000247 + - chebi: "CHEBI:80867" + - kegg.compound: "C17023" + - metanetx.chemical: "MNXM4111" + - sbo: "SBO:0000247" - !!omap - - id: s_4005 - - name: 5'-Deoxyadenosine - - compartment: m - - formula: C10H13N5O3 + - id: "s_4005" + - name: "5'-Deoxyadenosine" + - compartment: "m" + - formula: "C10H13N5O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: dad_5 - - chebi: CHEBI:17319 - - kegg.compound: C05198 - - metanetx.chemical: MNXM316 - - sbo: SBO:0000247 + - bigg.metabolite: "dad_5" + - chebi: "CHEBI:17319" + - kegg.compound: "C05198" + - metanetx.chemical: "MNXM316" + - sbo: "SBO:0000247" - !!omap - - id: s_4006 - - name: S-sulfanyl-[L-cysteine desulfurase] - - compartment: m + - id: "s_4006" + - name: "S-sulfanyl-[L-cysteine desulfurase]" + - compartment: "m" + - formula: "" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_4007 - - name: [disordered-form [Fe-S] cluster scaffold protein] - - compartment: m + - id: "s_4007" + - name: "[disordered-form [Fe-S] cluster scaffold protein]" + - compartment: "m" + - formula: "" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_4008 - - name: S-sulfanyl-[cysteine desulfurase]-[disordered-form scaffold protein] complex - - compartment: m + - id: "s_4008" + - name: "S-sulfanyl-[cysteine desulfurase]-[disordered-form scaffold protein] complex" + - compartment: "m" + - formula: "" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_4009 - - name: hydrogen cyanide - - compartment: m - - formula: CHN + - id: "s_4009" + - name: "hydrogen cyanide" + - compartment: "m" + - formula: "CHN" - charge: 0 - annotation: !!omap - - bigg.metabolite: cyan - - chebi: CHEBI:18407 - - kegg.compound: C01326 - - metanetx.chemical: MNXM254 - - sbo: SBO:0000247 + - bigg.metabolite: "cyan" + - chebi: "CHEBI:18407" + - kegg.compound: "C01326" + - metanetx.chemical: "MNXM254" + - sbo: "SBO:0000247" - !!omap - - id: s_4010 - - name: thiosulfate - - compartment: m - - formula: HO3S2 + - id: "s_4010" + - name: "thiosulfate" + - compartment: "m" + - formula: "HO3S2" - charge: -1 - annotation: !!omap - - bigg.metabolite: tsul - - chebi: CHEBI:33541 - - kegg.compound: C00320 - - metanetx.chemical: MNXM323 - - sbo: SBO:0000247 + - bigg.metabolite: "tsul" + - chebi: "CHEBI:33541" + - kegg.compound: "C00320" + - metanetx.chemical: "MNXM323" + - sbo: "SBO:0000247" - !!omap - - id: s_4011 - - name: sulphite - - compartment: m - - formula: O3S + - id: "s_4011" + - name: "sulphite" + - compartment: "m" + - formula: "O3S" - charge: -2 - annotation: !!omap - - bigg.metabolite: so3 - - chebi: CHEBI:17359 - - kegg.compound: C11481 - - metanetx.chemical: MNXM105630 - - sbo: SBO:0000247 + - bigg.metabolite: "so3" + - chebi: "CHEBI:17359" + - kegg.compound: "C11481" + - metanetx.chemical: "MNXM105630" + - sbo: "SBO:0000247" - !!omap - - id: s_4012 - - name: thiocyanate - - compartment: m - - formula: CNS + - id: "s_4012" + - name: "thiocyanate" + - compartment: "m" + - formula: "CNS" - charge: -1 - annotation: !!omap - - bigg.metabolite: tcynt - - chebi: CHEBI:29200 - - kegg.compound: C01755 - - metanetx.chemical: MNXM762 - - sbo: SBO:0000247 + - bigg.metabolite: "tcynt" + - chebi: "CHEBI:29200" + - kegg.compound: "C01755" + - metanetx.chemical: "MNXM762" + - sbo: "SBO:0000247" - !!omap - - id: s_4013 - - name: Mg(2+) - - compartment: c - - formula: Mg + - id: "s_4013" + - name: "Mg(2+)" + - compartment: "c" + - formula: "Mg" - charge: 2 - annotation: !!omap - - bigg.metabolite: mg2 - - chebi: CHEBI:18420 - - kegg.compound: C00305 - - metanetx.chemical: MNXM653 - - sbo: SBO:0000247 + - bigg.metabolite: "mg2" + - chebi: "CHEBI:18420" + - kegg.compound: "C00305" + - metanetx.chemical: "MNXM653" + - sbo: "SBO:0000247" - !!omap - - id: s_4014 - - name: Mg(2+) - - compartment: m - - formula: Mg + - id: "s_4014" + - name: "Mg(2+)" + - compartment: "m" + - formula: "Mg" - charge: 2 - annotation: !!omap - - bigg.metabolite: mg2 - - chebi: CHEBI:18420 - - kegg.compound: C00305 - - metanetx.chemical: MNXM653 - - sbo: SBO:0000247 + - bigg.metabolite: "mg2" + - chebi: "CHEBI:18420" + - kegg.compound: "C00305" + - metanetx.chemical: "MNXM653" + - sbo: "SBO:0000247" - !!omap - - id: s_4015 - - name: UDP-D-glucose - - compartment: er - - formula: C15H22N2O17P2 + - id: "s_4015" + - name: "UDP-D-glucose" + - compartment: "er" + - formula: "C15H22N2O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: udpg - - chebi: CHEBI:58367 - - kegg.compound: C00029 - - metanetx.chemical: MNXM722710 - - sbo: SBO:0000247 + - bigg.metabolite: "udpg" + - chebi: "CHEBI:58367" + - kegg.compound: "C00029" + - metanetx.chemical: "MNXM722710" + - sbo: "SBO:0000247" - !!omap - - id: s_4016 - - name: sulphate - - compartment: er - - formula: O4S + - id: "s_4016" + - name: "sulphate" + - compartment: "er" + - formula: "O4S" - charge: -2 - annotation: !!omap - - bigg.metabolite: so4 - - chebi: CHEBI:16189 - - kegg.compound: C00059 - - metanetx.chemical: MNXM58 - - sbo: SBO:0000247 + - bigg.metabolite: "so4" + - chebi: "CHEBI:16189" + - kegg.compound: "C00059" + - metanetx.chemical: "MNXM58" + - sbo: "SBO:0000247" - !!omap - - id: s_4017 - - name: N-Acetyl-D-glucosamine - - compartment: c - - formula: C8H15NO6 + - id: "s_4017" + - name: "N-Acetyl-D-glucosamine" + - compartment: "c" + - formula: "C8H15NO6" - charge: 0 - annotation: !!omap - - bigg.metabolite: acgam - - chebi: CHEBI:506227 - - kegg.compound: C00140 - - metanetx.chemical: MNXM143 - - sbo: SBO:0000247 + - bigg.metabolite: "acgam" + - chebi: "CHEBI:506227" + - kegg.compound: "C00140" + - metanetx.chemical: "MNXM143" + - sbo: "SBO:0000247" - !!omap - - id: s_4018 - - name: polyphosphate - - compartment: c - - formula: HO7P2 + - id: "s_4018" + - name: "polyphosphate" + - compartment: "c" + - formula: "HO7P2" - charge: -3 - annotation: !!omap - - chebi: CHEBI:16838 - - kegg.compound: C00404 - - metanetx.chemical: MNXM77738 - - sbo: SBO:0000247 + - chebi: "CHEBI:16838" + - kegg.compound: "C00404" + - metanetx.chemical: "MNXM77738" + - sbo: "SBO:0000247" - !!omap - - id: s_4019 - - name: Cu2(+) - - compartment: c - - formula: Cu + - id: "s_4019" + - name: "Cu2(+)" + - compartment: "c" + - formula: "Cu" - charge: 2 - annotation: !!omap - - bigg.metabolite: cu2 - - chebi: CHEBI:29036 - - kegg.compound: C00070 - - metanetx.chemical: MNXM632 - - sbo: SBO:0000247 + - bigg.metabolite: "cu2" + - chebi: "CHEBI:29036" + - kegg.compound: "C00070" + - metanetx.chemical: "MNXM632" + - sbo: "SBO:0000247" - !!omap - - id: s_4020 - - name: Cu2(+) - - compartment: g - - formula: Cu + - id: "s_4020" + - name: "Cu2(+)" + - compartment: "g" + - formula: "Cu" - charge: 2 - annotation: !!omap - - bigg.metabolite: cu2 - - chebi: CHEBI:29036 - - kegg.compound: C00070 - - metanetx.chemical: MNXM632 - - sbo: SBO:0000247 + - bigg.metabolite: "cu2" + - chebi: "CHEBI:29036" + - kegg.compound: "C00070" + - metanetx.chemical: "MNXM632" + - sbo: "SBO:0000247" - !!omap - - id: s_4021 - - name: 2-Oxoglutaramate - - compartment: c - - formula: C5H6NO4 + - id: "s_4021" + - name: "2-Oxoglutaramate" + - compartment: "c" + - formula: "C5H6NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: HC00591 - - chebi: CHEBI:16769 - - kegg.compound: C00940 - - metanetx.chemical: MNXM575 - - sbo: SBO:0000247 + - bigg.metabolite: "HC00591" + - chebi: "CHEBI:16769" + - kegg.compound: "C00940" + - metanetx.chemical: "MNXM575" + - sbo: "SBO:0000247" - !!omap - - id: s_4022 - - name: porphyrin - - compartment: m - - formula: C20H14N4 + - id: "s_4022" + - name: "porphyrin" + - compartment: "m" + - formula: "C20H14N4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:8337 - - kegg.compound: C05113 - - metanetx.chemical: MNXM2714 - - sbo: SBO:0000247 + - chebi: "CHEBI:8337" + - kegg.compound: "C05113" + - metanetx.chemical: "MNXM2714" + - sbo: "SBO:0000247" - !!omap - - id: s_4023 - - name: porphyrin - - compartment: c - - formula: C20H14N4 + - id: "s_4023" + - name: "porphyrin" + - compartment: "c" + - formula: "C20H14N4" - charge: 0 - annotation: !!omap - - chebi: CHEBI:8337 - - kegg.compound: C05113 - - metanetx.chemical: MNXM2714 - - sbo: SBO:0000247 + - chebi: "CHEBI:8337" + - kegg.compound: "C05113" + - metanetx.chemical: "MNXM2714" + - sbo: "SBO:0000247" - !!omap - - id: s_4024 - - name: Starch - - compartment: c - - formula: C12H22O11 + - id: "s_4024" + - name: "Starch" + - compartment: "c" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_4025 - - name: UDP-N-acetyl-alpha-D-glucosamine - - compartment: g - - formula: C17H25N3O17P2 + - id: "s_4025" + - name: "UDP-N-acetyl-alpha-D-glucosamine" + - compartment: "g" + - formula: "C17H25N3O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: uacgam - - chebi: CHEBI:57705 - - kegg.compound: C00043 - - metanetx.chemical: MNXM47 - - sbo: SBO:0000247 + - bigg.metabolite: "uacgam" + - chebi: "CHEBI:57705" + - kegg.compound: "C00043" + - metanetx.chemical: "MNXM47" + - sbo: "SBO:0000247" - !!omap - - id: s_4026 - - name: Zn(2+) - - compartment: m - - formula: Zn + - id: "s_4026" + - name: "Zn(2+)" + - compartment: "m" + - formula: "Zn" - charge: 2 - annotation: !!omap - - bigg.metabolite: zn2 - - chebi: CHEBI:29105 - - kegg.compound: C00038 - - metanetx.chemical: MNXM149 - - sbo: SBO:0000247 + - bigg.metabolite: "zn2" + - chebi: "CHEBI:29105" + - kegg.compound: "C00038" + - metanetx.chemical: "MNXM149" + - sbo: "SBO:0000247" - !!omap - - id: s_4027 - - name: Zn(2+) - - compartment: v - - formula: Zn + - id: "s_4027" + - name: "Zn(2+)" + - compartment: "v" + - formula: "Zn" - charge: 2 - annotation: !!omap - - bigg.metabolite: zn2 - - chebi: CHEBI:29105 - - kegg.compound: C00038 - - metanetx.chemical: MNXM149 - - sbo: SBO:0000247 + - bigg.metabolite: "zn2" + - chebi: "CHEBI:29105" + - kegg.compound: "C00038" + - metanetx.chemical: "MNXM149" + - sbo: "SBO:0000247" - !!omap - - id: s_4028 - - name: RX - - compartment: m - - formula: RX + - id: "s_4028" + - name: "RX" + - compartment: "m" + - formula: "RX" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17792 - - kegg.compound: C01322 - - metanetx.chemical: MNXM6428 - - sbo: SBO:0000247 + - chebi: "CHEBI:17792" + - kegg.compound: "C01322" + - metanetx.chemical: "MNXM6428" + - sbo: "SBO:0000247" - !!omap - - id: s_4029 - - name: HX - - compartment: m - - formula: X + - id: "s_4029" + - name: "HX" + - compartment: "m" + - formula: "X" - charge: -1 - annotation: !!omap - - chebi: CHEBI:16042 - - kegg.compound: C00462 - - metanetx.chemical: MNXM55844 - - sbo: SBO:0000247 + - chebi: "CHEBI:16042" + - kegg.compound: "C00462" + - metanetx.chemical: "MNXM55844" + - sbo: "SBO:0000247" - !!omap - - id: s_4030 - - name: R-S-glutathione - - compartment: m - - formula: C10H16N3O6SR + - id: "s_4030" + - name: "R-S-glutathione" + - compartment: "m" + - formula: "C10H16N3O6SR" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17021 - - kegg.compound: C02320 - - metanetx.chemical: MNXM3350 - - sbo: SBO:0000247 + - chebi: "CHEBI:17021" + - kegg.compound: "C02320" + - metanetx.chemical: "MNXM3350" + - sbo: "SBO:0000247" - !!omap - - id: s_4031 - - name: iron(3+) - - compartment: v - - formula: Fe + - id: "s_4031" + - name: "iron(3+)" + - compartment: "v" + - formula: "Fe" - charge: 3 - annotation: !!omap - - bigg.metabolite: fe3 - - chebi: CHEBI:29034 - - kegg.compound: C14819 - - metanetx.chemical: MNXM196 - - sbo: SBO:0000247 + - bigg.metabolite: "fe3" + - chebi: "CHEBI:29034" + - kegg.compound: "C14819" + - metanetx.chemical: "MNXM196" + - sbo: "SBO:0000247" - !!omap - - id: s_4032 - - name: [protein]-L-lysine - - compartment: c - - formula: C6H13N2O + - id: "s_4032" + - name: "[protein]-L-lysine" + - compartment: "c" + - formula: "C6H13N2O" - charge: 1 - annotation: !!omap - - bigg.metabolite: pcollglys - - chebi: CHEBI:29969 - - kegg.compound: C02188 - - sbo: SBO:0000247 + - bigg.metabolite: "pcollglys" + - chebi: "CHEBI:29969" + - kegg.compound: "C02188" + - sbo: "SBO:0000247" - !!omap - - id: s_4033 - - name: [protein]-N(6)-acetyl-L-lysine - - compartment: c - - formula: C8H14N2O2 + - id: "s_4033" + - name: "[protein]-N(6)-acetyl-L-lysine" + - compartment: "c" + - formula: "C8H14N2O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:61930 - - sbo: SBO:0000247 + - chebi: "CHEBI:61930" + - sbo: "SBO:0000247" - !!omap - - id: s_4034 - - name: Ala-Gln - - compartment: e - - formula: C8H15N3O4 + - id: "s_4034" + - name: "Ala-Gln" + - compartment: "e" + - formula: "C8H15N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_L_gln__L - - chebi: CHEBI:73788 - - metanetx.chemical: MNXM40495 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_gln__L" + - chebi: "CHEBI:73788" + - metanetx.chemical: "MNXM40495" + - sbo: "SBO:0000247" - !!omap - - id: s_4035 - - name: Ala-Gln - - compartment: c - - formula: C8H15N3O4 + - id: "s_4035" + - name: "Ala-Gln" + - compartment: "c" + - formula: "C8H15N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_L_gln__L - - chebi: CHEBI:73788 - - metanetx.chemical: MNXM40495 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_gln__L" + - chebi: "CHEBI:73788" + - metanetx.chemical: "MNXM40495" + - sbo: "SBO:0000247" - !!omap - - id: s_4036 - - name: Ala-Gln - - compartment: v - - formula: C8H15N3O4 + - id: "s_4036" + - name: "Ala-Gln" + - compartment: "v" + - formula: "C8H15N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_L_gln__L - - chebi: CHEBI:73788 - - metanetx.chemical: MNXM40495 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_gln__L" + - chebi: "CHEBI:73788" + - metanetx.chemical: "MNXM40495" + - sbo: "SBO:0000247" - !!omap - - id: s_4037 - - name: Ala-Glu - - compartment: e - - formula: C8H13N2O5 + - id: "s_4037" + - name: "Ala-Glu" + - compartment: "e" + - formula: "C8H13N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: LalaLglu - - chebi: CHEBI:61396 - - kegg.compound: C20958 - - metanetx.chemical: MNXM4026 - - sbo: SBO:0000247 + - bigg.metabolite: "LalaLglu" + - chebi: "CHEBI:61396" + - kegg.compound: "C20958" + - metanetx.chemical: "MNXM4026" + - sbo: "SBO:0000247" - !!omap - - id: s_4038 - - name: Ala-Glu - - compartment: c - - formula: C8H13N2O5 + - id: "s_4038" + - name: "Ala-Glu" + - compartment: "c" + - formula: "C8H13N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: LalaLglu - - chebi: CHEBI:61396 - - kegg.compound: C20958 - - metanetx.chemical: MNXM4026 - - sbo: SBO:0000247 + - bigg.metabolite: "LalaLglu" + - chebi: "CHEBI:61396" + - kegg.compound: "C20958" + - metanetx.chemical: "MNXM4026" + - sbo: "SBO:0000247" - !!omap - - id: s_4039 - - name: Ala-Glu - - compartment: v - - formula: C8H13N2O5 + - id: "s_4039" + - name: "Ala-Glu" + - compartment: "v" + - formula: "C8H13N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: LalaLglu - - chebi: CHEBI:61396 - - kegg.compound: C20958 - - metanetx.chemical: MNXM4026 - - sbo: SBO:0000247 + - bigg.metabolite: "LalaLglu" + - chebi: "CHEBI:61396" + - kegg.compound: "C20958" + - metanetx.chemical: "MNXM4026" + - sbo: "SBO:0000247" - !!omap - - id: s_4040 - - name: Ala-Thr - - compartment: e - - formula: C7H14N2O4 + - id: "s_4040" + - name: "Ala-Thr" + - compartment: "e" + - formula: "C7H14N2O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_L_Thr__L - - chebi: CHEBI:73762 - - metanetx.chemical: MNXM40497 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_Thr__L" + - chebi: "CHEBI:73762" + - metanetx.chemical: "MNXM40497" + - sbo: "SBO:0000247" - !!omap - - id: s_4041 - - name: Ala-Thr - - compartment: c - - formula: C7H14N2O4 + - id: "s_4041" + - name: "Ala-Thr" + - compartment: "c" + - formula: "C7H14N2O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_L_Thr__L - - chebi: CHEBI:73762 - - metanetx.chemical: MNXM40497 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_Thr__L" + - chebi: "CHEBI:73762" + - metanetx.chemical: "MNXM40497" + - sbo: "SBO:0000247" - !!omap - - id: s_4042 - - name: Ala-Thr - - compartment: v - - formula: C7H14N2O4 + - id: "s_4042" + - name: "Ala-Thr" + - compartment: "v" + - formula: "C7H14N2O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_L_Thr__L - - chebi: CHEBI:73762 - - metanetx.chemical: MNXM40497 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_Thr__L" + - chebi: "CHEBI:73762" + - metanetx.chemical: "MNXM40497" + - sbo: "SBO:0000247" - !!omap - - id: s_4043 - - name: L-threonine - - compartment: v - - formula: C4H9NO3 + - id: "s_4043" + - name: "L-threonine" + - compartment: "v" + - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: thr__L - - chebi: CHEBI:16857 - - kegg.compound: C00188 - - metanetx.chemical: MNXM142 - - sbo: SBO:0000247 + - bigg.metabolite: "thr__L" + - chebi: "CHEBI:16857" + - kegg.compound: "C00188" + - metanetx.chemical: "MNXM142" + - sbo: "SBO:0000247" - !!omap - - id: s_4044 - - name: thymidine 3'-monophosphate - - compartment: c - - formula: C10H13N2O8P + - id: "s_4044" + - name: "thymidine 3'-monophosphate" + - compartment: "c" + - formula: "C10H13N2O8P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:77843 - - metanetx.chemical: MNXM87165 - - sbo: SBO:0000247 + - chebi: "CHEBI:77843" + - metanetx.chemical: "MNXM87165" + - sbo: "SBO:0000247" - !!omap - - id: s_4045 - - name: thymidine 3'-monophosphate - - compartment: e - - formula: C10H13N2O8P + - id: "s_4045" + - name: "thymidine 3'-monophosphate" + - compartment: "e" + - formula: "C10H13N2O8P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:77843 - - metanetx.chemical: MNXM87165 - - sbo: SBO:0000247 + - chebi: "CHEBI:77843" + - metanetx.chemical: "MNXM87165" + - sbo: "SBO:0000247" - !!omap - - id: s_4046 - - name: thymidine 5'-monophosphate - - compartment: c - - formula: C10H13N2O8P + - id: "s_4046" + - name: "thymidine 5'-monophosphate" + - compartment: "c" + - formula: "C10H13N2O8P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:15245 - - metanetx.chemical: MNXM87167 - - sbo: SBO:0000247 + - chebi: "CHEBI:15245" + - metanetx.chemical: "MNXM87167" + - sbo: "SBO:0000247" - !!omap - - id: s_4047 - - name: thymidine 5'-monophosphate - - compartment: e - - formula: C10H13N2O8P + - id: "s_4047" + - name: "thymidine 5'-monophosphate" + - compartment: "e" + - formula: "C10H13N2O8P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:15245 - - metanetx.chemical: MNXM87167 - - sbo: SBO:0000247 + - chebi: "CHEBI:15245" + - metanetx.chemical: "MNXM87167" + - sbo: "SBO:0000247" - !!omap - - id: s_4048 - - name: glycerol 1-phosphate - - compartment: c - - formula: C3H7O6P + - id: "s_4048" + - name: "glycerol 1-phosphate" + - compartment: "c" + - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: glyc1p - - chebi: CHEBI:231935 - - kegg.compound: C03189 - - metanetx.chemical: MNXM682 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc1p" + - chebi: "CHEBI:231935" + - kegg.compound: "C03189" + - metanetx.chemical: "MNXM682" + - sbo: "SBO:0000247" - !!omap - - id: s_4049 - - name: glycerol 1-phosphate - - compartment: e - - formula: C3H7O6P + - id: "s_4049" + - name: "glycerol 1-phosphate" + - compartment: "e" + - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: glyc1p - - chebi: CHEBI:231935 - - kegg.compound: C03189 - - metanetx.chemical: MNXM682 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc1p" + - chebi: "CHEBI:231935" + - kegg.compound: "C03189" + - metanetx.chemical: "MNXM682" + - sbo: "SBO:0000247" - !!omap - - id: s_4050 - - name: Ala-His - - compartment: e - - formula: C9H14N4O3 + - id: "s_4050" + - name: "Ala-His" + - compartment: "e" + - formula: "C9H14N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_L_his__L - - chebi: CHEBI:73771 - - metanetx.chemical: MNXM40496 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_his__L" + - chebi: "CHEBI:73771" + - metanetx.chemical: "MNXM40496" + - sbo: "SBO:0000247" - !!omap - - id: s_4051 - - name: Ala-His - - compartment: c - - formula: C9H14N4O3 + - id: "s_4051" + - name: "Ala-His" + - compartment: "c" + - formula: "C9H14N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_L_his__L - - chebi: CHEBI:73771 - - metanetx.chemical: MNXM40496 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_his__L" + - chebi: "CHEBI:73771" + - metanetx.chemical: "MNXM40496" + - sbo: "SBO:0000247" - !!omap - - id: s_4052 - - name: Ala-His - - compartment: v - - formula: C9H14N4O3 + - id: "s_4052" + - name: "Ala-His" + - compartment: "v" + - formula: "C9H14N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_L_his__L - - chebi: CHEBI:73771 - - metanetx.chemical: MNXM40496 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_his__L" + - chebi: "CHEBI:73771" + - metanetx.chemical: "MNXM40496" + - sbo: "SBO:0000247" - !!omap - - id: s_4053 - - name: Gly-Asn - - compartment: e - - formula: C6H11N3O4 + - id: "s_4053" + - name: "Gly-Asn" + - compartment: "e" + - formula: "C6H11N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly_asn__L - - chebi: CHEBI:73888 - - metanetx.chemical: MNXM55268 - - sbo: SBO:0000247 + - bigg.metabolite: "gly_asn__L" + - chebi: "CHEBI:73888" + - metanetx.chemical: "MNXM55268" + - sbo: "SBO:0000247" - !!omap - - id: s_4054 - - name: Gly-Asn - - compartment: c - - formula: C6H11N3O4 + - id: "s_4054" + - name: "Gly-Asn" + - compartment: "c" + - formula: "C6H11N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly_asn__L - - chebi: CHEBI:73888 - - metanetx.chemical: MNXM55268 - - sbo: SBO:0000247 + - bigg.metabolite: "gly_asn__L" + - chebi: "CHEBI:73888" + - metanetx.chemical: "MNXM55268" + - sbo: "SBO:0000247" - !!omap - - id: s_4055 - - name: Gly-Asn - - compartment: v - - formula: C6H11N3O4 + - id: "s_4055" + - name: "Gly-Asn" + - compartment: "v" + - formula: "C6H11N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly_asn__L - - chebi: CHEBI:73888 - - metanetx.chemical: MNXM55268 - - sbo: SBO:0000247 + - bigg.metabolite: "gly_asn__L" + - chebi: "CHEBI:73888" + - metanetx.chemical: "MNXM55268" + - sbo: "SBO:0000247" - !!omap - - id: s_4056 - - name: Gly-Gln - - compartment: e - - formula: C7H13N3O4 + - id: "s_4056" + - name: "Gly-Gln" + - compartment: "e" + - formula: "C7H13N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly_gln__L - - chebi: CHEBI:73898 - - metanetx.chemical: MNXM55276 - - sbo: SBO:0000247 + - bigg.metabolite: "gly_gln__L" + - chebi: "CHEBI:73898" + - metanetx.chemical: "MNXM55276" + - sbo: "SBO:0000247" - !!omap - - id: s_4057 - - name: Gly-Gln - - compartment: c - - formula: C7H13N3O4 + - id: "s_4057" + - name: "Gly-Gln" + - compartment: "c" + - formula: "C7H13N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly_gln__L - - chebi: CHEBI:73898 - - metanetx.chemical: MNXM55276 - - sbo: SBO:0000247 + - bigg.metabolite: "gly_gln__L" + - chebi: "CHEBI:73898" + - metanetx.chemical: "MNXM55276" + - sbo: "SBO:0000247" - !!omap - - id: s_4058 - - name: Gly-Gln - - compartment: v - - formula: C7H13N3O4 + - id: "s_4058" + - name: "Gly-Gln" + - compartment: "v" + - formula: "C7H13N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly_gln__L - - chebi: CHEBI:73898 - - metanetx.chemical: MNXM55276 - - sbo: SBO:0000247 + - bigg.metabolite: "gly_gln__L" + - chebi: "CHEBI:73898" + - metanetx.chemical: "MNXM55276" + - sbo: "SBO:0000247" - !!omap - - id: s_4059 - - name: Gly-Glu - - compartment: e - - formula: C7H11N2O5 + - id: "s_4059" + - name: "Gly-Glu" + - compartment: "e" + - formula: "C7H11N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: gly_glu__L - - chebi: CHEBI:73784 - - metanetx.chemical: MNXM55454 - - sbo: SBO:0000247 + - bigg.metabolite: "gly_glu__L" + - chebi: "CHEBI:73784" + - metanetx.chemical: "MNXM55454" + - sbo: "SBO:0000247" - !!omap - - id: s_4060 - - name: Gly-Glu - - compartment: c - - formula: C7H11N2O5 + - id: "s_4060" + - name: "Gly-Glu" + - compartment: "c" + - formula: "C7H11N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: gly_glu__L - - chebi: CHEBI:73784 - - metanetx.chemical: MNXM55454 - - sbo: SBO:0000247 + - bigg.metabolite: "gly_glu__L" + - chebi: "CHEBI:73784" + - metanetx.chemical: "MNXM55454" + - sbo: "SBO:0000247" - !!omap - - id: s_4061 - - name: Gly-Glu - - compartment: v - - formula: C7H11N2O5 + - id: "s_4061" + - name: "Gly-Glu" + - compartment: "v" + - formula: "C7H11N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: gly_glu__L - - chebi: CHEBI:73784 - - metanetx.chemical: MNXM55454 - - sbo: SBO:0000247 + - bigg.metabolite: "gly_glu__L" + - chebi: "CHEBI:73784" + - metanetx.chemical: "MNXM55454" + - sbo: "SBO:0000247" - !!omap - - id: s_4062 - - name: glycerol 2-phosphate(2-) - - compartment: c - - formula: C3H7O6P + - id: "s_4062" + - name: "glycerol 2-phosphate(2-)" + - compartment: "c" + - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: glyc2p - - chebi: CHEBI:58083 - - kegg.compound: C02979 - - metanetx.chemical: MNXM2527 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc2p" + - chebi: "CHEBI:58083" + - kegg.compound: "C02979" + - metanetx.chemical: "MNXM2527" + - sbo: "SBO:0000247" - !!omap - - id: s_4063 - - name: glycerol 2-phosphate(2-) - - compartment: e - - formula: C3H7O6P + - id: "s_4063" + - name: "glycerol 2-phosphate(2-)" + - compartment: "e" + - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: glyc2p - - chebi: CHEBI:58083 - - kegg.compound: C02979 - - metanetx.chemical: MNXM2527 - - sbo: SBO:0000247 + - bigg.metabolite: "glyc2p" + - chebi: "CHEBI:58083" + - kegg.compound: "C02979" + - metanetx.chemical: "MNXM2527" + - sbo: "SBO:0000247" - !!omap - - id: s_4064 - - name: O-phospho-L-threonine - - compartment: c - - formula: C4H8NO6P + - id: "s_4064" + - name: "O-phospho-L-threonine" + - compartment: "c" + - formula: "C4H8NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: thrp - - chebi: CHEBI:58675 - - kegg.compound: C12147 - - metanetx.chemical: MNXM1492 - - sbo: SBO:0000247 + - bigg.metabolite: "thrp" + - chebi: "CHEBI:58675" + - kegg.compound: "C12147" + - metanetx.chemical: "MNXM1492" + - sbo: "SBO:0000247" - !!omap - - id: s_4065 - - name: O-phospho-L-threonine - - compartment: e - - formula: C4H8NO6P + - id: "s_4065" + - name: "O-phospho-L-threonine" + - compartment: "e" + - formula: "C4H8NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: thrp - - chebi: CHEBI:58675 - - kegg.compound: C12147 - - metanetx.chemical: MNXM1492 - - sbo: SBO:0000247 + - bigg.metabolite: "thrp" + - chebi: "CHEBI:58675" + - kegg.compound: "C12147" + - metanetx.chemical: "MNXM1492" + - sbo: "SBO:0000247" - !!omap - - id: s_4066 - - name: guanosine 2'-monophosphate - - compartment: c - - formula: C10H12N5O8P + - id: "s_4066" + - name: "guanosine 2'-monophosphate" + - compartment: "c" + - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:74604 - - metanetx.chemical: MNXM18285 - - sbo: SBO:0000247 + - chebi: "CHEBI:74604" + - metanetx.chemical: "MNXM18285" + - sbo: "SBO:0000247" - !!omap - - id: s_4067 - - name: guanosine 2'-monophosphate - - compartment: e - - formula: C10H12N5O8P + - id: "s_4067" + - name: "guanosine 2'-monophosphate" + - compartment: "e" + - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:74604 - - metanetx.chemical: MNXM18285 - - sbo: SBO:0000247 + - chebi: "CHEBI:74604" + - metanetx.chemical: "MNXM18285" + - sbo: "SBO:0000247" - !!omap - - id: s_4068 - - name: 3'-GMP - - compartment: c - - formula: C10H12N5O8P + - id: "s_4068" + - name: "3'-GMP" + - compartment: "c" + - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3gmp - - chebi: CHEBI:60732 - - kegg.compound: C06193 - - metanetx.chemical: MNXM2183 - - sbo: SBO:0000247 + - bigg.metabolite: "3gmp" + - chebi: "CHEBI:60732" + - kegg.compound: "C06193" + - metanetx.chemical: "MNXM2183" + - sbo: "SBO:0000247" - !!omap - - id: s_4069 - - name: 3'-GMP - - compartment: e - - formula: C10H12N5O8P + - id: "s_4069" + - name: "3'-GMP" + - compartment: "e" + - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3gmp - - chebi: CHEBI:60732 - - kegg.compound: C06193 - - metanetx.chemical: MNXM2183 - - sbo: SBO:0000247 + - bigg.metabolite: "3gmp" + - chebi: "CHEBI:60732" + - kegg.compound: "C06193" + - metanetx.chemical: "MNXM2183" + - sbo: "SBO:0000247" - !!omap - - id: s_4070 - - name: 2-phosphoglycolate - - compartment: e - - formula: C2H2O6P + - id: "s_4070" + - name: "2-phosphoglycolate" + - compartment: "e" + - formula: "C2H2O6P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 2pglyc - - chebi: CHEBI:58033 - - kegg.compound: C00988 - - metanetx.chemical: MNXM2074 - - sbo: SBO:0000247 + - bigg.metabolite: "2pglyc" + - chebi: "CHEBI:58033" + - kegg.compound: "C00988" + - metanetx.chemical: "MNXM2074" + - sbo: "SBO:0000247" - !!omap - - id: s_4071 - - name: 2-phosphoglycolate - - compartment: c - - formula: C2H2O6P + - id: "s_4071" + - name: "2-phosphoglycolate" + - compartment: "c" + - formula: "C2H2O6P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 2pglyc - - chebi: CHEBI:58033 - - kegg.compound: C00988 - - metanetx.chemical: MNXM2074 - - sbo: SBO:0000247 + - bigg.metabolite: "2pglyc" + - chebi: "CHEBI:58033" + - kegg.compound: "C00988" + - metanetx.chemical: "MNXM2074" + - sbo: "SBO:0000247" - !!omap - - id: s_4072 - - name: cysteamine S-phosphate - - compartment: c - - formula: C2H7NO3PS + - id: "s_4072" + - name: "cysteamine S-phosphate" + - compartment: "c" + - formula: "C2H7NO3PS" - charge: -1 - annotation: !!omap - - chebi: CHEBI:74631 - - metanetx.chemical: MNXM48297 - - sbo: SBO:0000247 + - chebi: "CHEBI:74631" + - metanetx.chemical: "MNXM48297" + - sbo: "SBO:0000247" - !!omap - - id: s_4073 - - name: cysteamine - - compartment: c - - formula: C2H8NS + - id: "s_4073" + - name: "cysteamine" + - compartment: "c" + - formula: "C2H8NS" - charge: 1 - annotation: !!omap - - bigg.metabolite: cysam - - chebi: CHEBI:58029 - - kegg.compound: C01678 - - metanetx.chemical: MNXM1226 - - sbo: SBO:0000247 + - bigg.metabolite: "cysam" + - chebi: "CHEBI:58029" + - kegg.compound: "C01678" + - metanetx.chemical: "MNXM1226" + - sbo: "SBO:0000247" - !!omap - - id: s_4074 - - name: cysteamine - - compartment: e - - formula: C2H8NS + - id: "s_4074" + - name: "cysteamine" + - compartment: "e" + - formula: "C2H8NS" - charge: 1 - annotation: !!omap - - bigg.metabolite: cysam - - chebi: CHEBI:58029 - - kegg.compound: C01678 - - metanetx.chemical: MNXM1226 - - sbo: SBO:0000247 + - bigg.metabolite: "cysam" + - chebi: "CHEBI:58029" + - kegg.compound: "C01678" + - metanetx.chemical: "MNXM1226" + - sbo: "SBO:0000247" - !!omap - - id: s_4075 - - name: cysteamine S-phosphate - - compartment: e - - formula: C2H7NO3PS + - id: "s_4075" + - name: "cysteamine S-phosphate" + - compartment: "e" + - formula: "C2H7NO3PS" - charge: -1 - annotation: !!omap - - chebi: CHEBI:74631 - - metanetx.chemical: MNXM48297 - - sbo: SBO:0000247 + - chebi: "CHEBI:74631" + - metanetx.chemical: "MNXM48297" + - sbo: "SBO:0000247" - !!omap - - id: s_4076 - - name: hypotaurine - - compartment: c - - formula: C2H7NO2S + - id: "s_4076" + - name: "hypotaurine" + - compartment: "c" + - formula: "C2H7NO2S" - charge: 0 - annotation: !!omap - - chebi: CHEBI:16668 - - kegg.compound: C00519 - - metanetx.chemical: MNXM726 - - sbo: SBO:0000247 + - chebi: "CHEBI:16668" + - kegg.compound: "C00519" + - metanetx.chemical: "MNXM726" + - sbo: "SBO:0000247" - !!omap - - id: s_4077 - - name: O-phosphonatooxy-D-serine(2-) - - compartment: c - - formula: C3H6NO6P + - id: "s_4077" + - name: "O-phosphonatooxy-D-serine(2-)" + - compartment: "c" + - formula: "C3H6NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pser__D - - chebi: CHEBI:58680 - - kegg.compound: C02532 - - metanetx.chemical: MNXM4752 - - sbo: SBO:0000247 + - bigg.metabolite: "pser__D" + - chebi: "CHEBI:58680" + - kegg.compound: "C02532" + - metanetx.chemical: "MNXM4752" + - sbo: "SBO:0000247" - !!omap - - id: s_4078 - - name: O-phosphonatooxy-D-serine(2-) - - compartment: e - - formula: C3H6NO6P + - id: "s_4078" + - name: "O-phosphonatooxy-D-serine(2-)" + - compartment: "e" + - formula: "C3H6NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pser__D - - chebi: CHEBI:58680 - - kegg.compound: C02532 - - metanetx.chemical: MNXM4752 - - sbo: SBO:0000247 + - bigg.metabolite: "pser__D" + - chebi: "CHEBI:58680" + - kegg.compound: "C02532" + - metanetx.chemical: "MNXM4752" + - sbo: "SBO:0000247" - !!omap - - id: s_4079 - - name: 2-aminobutanoate - - compartment: c - - formula: C4H9NO2 + - id: "s_4079" + - name: "2-aminobutanoate" + - compartment: "c" + - formula: "C4H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: C02356 - - chebi: CHEBI:35621 - - metanetx.chemical: MNXM15850 - - sbo: SBO:0000247 + - bigg.metabolite: "C02356" + - chebi: "CHEBI:35621" + - metanetx.chemical: "MNXM15850" + - sbo: "SBO:0000247" - !!omap - - id: s_4080 - - name: 2-aminobutanoate - - compartment: e - - formula: C4H9NO2 + - id: "s_4080" + - name: "2-aminobutanoate" + - compartment: "e" + - formula: "C4H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: C02356 - - chebi: CHEBI:35621 - - metanetx.chemical: MNXM15850 - - sbo: SBO:0000247 + - bigg.metabolite: "C02356" + - chebi: "CHEBI:35621" + - metanetx.chemical: "MNXM15850" + - sbo: "SBO:0000247" - !!omap - - id: s_4081 - - name: uridine 2'-phosphate - - compartment: c - - formula: C9H11N2O9P + - id: "s_4081" + - name: "uridine 2'-phosphate" + - compartment: "c" + - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:77802 - - kegg.compound: C03031 - - metanetx.chemical: MNXM13238 - - sbo: SBO:0000247 + - chebi: "CHEBI:77802" + - kegg.compound: "C03031" + - metanetx.chemical: "MNXM13238" + - sbo: "SBO:0000247" - !!omap - - id: s_4082 - - name: uridine 2'-phosphate - - compartment: e - - formula: C9H11N2O9P + - id: "s_4082" + - name: "uridine 2'-phosphate" + - compartment: "e" + - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:77802 - - kegg.compound: C03031 - - metanetx.chemical: MNXM13238 - - sbo: SBO:0000247 + - chebi: "CHEBI:77802" + - kegg.compound: "C03031" + - metanetx.chemical: "MNXM13238" + - sbo: "SBO:0000247" - !!omap - - id: s_4083 - - name: 3'-UMP - - compartment: c - - formula: C9H11N2O9P + - id: "s_4083" + - name: "3'-UMP" + - compartment: "c" + - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3ump - - chebi: CHEBI:60784 - - kegg.compound: C01368 - - metanetx.chemical: MNXM2184 - - sbo: SBO:0000247 + - bigg.metabolite: "3ump" + - chebi: "CHEBI:60784" + - kegg.compound: "C01368" + - metanetx.chemical: "MNXM2184" + - sbo: "SBO:0000247" - !!omap - - id: s_4084 - - name: 3'-UMP - - compartment: e - - formula: C9H11N2O9P + - id: "s_4084" + - name: "3'-UMP" + - compartment: "e" + - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3ump - - chebi: CHEBI:60784 - - kegg.compound: C01368 - - metanetx.chemical: MNXM2184 - - sbo: SBO:0000247 + - bigg.metabolite: "3ump" + - chebi: "CHEBI:60784" + - kegg.compound: "C01368" + - metanetx.chemical: "MNXM2184" + - sbo: "SBO:0000247" - !!omap - - id: s_4085 - - name: Gly-Met - - compartment: e - - formula: C7H14N2O3S + - id: "s_4085" + - name: "Gly-Met" + - compartment: "e" + - formula: "C7H14N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly_met__L - - chebi: CHEBI:74393 - - metanetx.chemical: MNXM55287 - - sbo: SBO:0000247 + - bigg.metabolite: "gly_met__L" + - chebi: "CHEBI:74393" + - metanetx.chemical: "MNXM55287" + - sbo: "SBO:0000247" - !!omap - - id: s_4086 - - name: Gly-Met - - compartment: c - - formula: C7H14N2O3S + - id: "s_4086" + - name: "Gly-Met" + - compartment: "c" + - formula: "C7H14N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly_met__L - - chebi: CHEBI:74393 - - metanetx.chemical: MNXM55287 - - sbo: SBO:0000247 + - bigg.metabolite: "gly_met__L" + - chebi: "CHEBI:74393" + - metanetx.chemical: "MNXM55287" + - sbo: "SBO:0000247" - !!omap - - id: s_4087 - - name: Gly-Met - - compartment: v - - formula: C7H14N2O3S + - id: "s_4087" + - name: "Gly-Met" + - compartment: "v" + - formula: "C7H14N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: gly_met__L - - chebi: CHEBI:74393 - - metanetx.chemical: MNXM55287 - - sbo: SBO:0000247 + - bigg.metabolite: "gly_met__L" + - chebi: "CHEBI:74393" + - metanetx.chemical: "MNXM55287" + - sbo: "SBO:0000247" - !!omap - - id: s_4088 - - name: N-phosphocreatine - - compartment: c - - formula: C4H8N3O5P + - id: "s_4088" + - name: "N-phosphocreatine" + - compartment: "c" + - formula: "C4H8N3O5P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:58092 - - metanetx.chemical: MNXM819 - - sbo: SBO:0000247 + - chebi: "CHEBI:58092" + - metanetx.chemical: "MNXM819" + - sbo: "SBO:0000247" - !!omap - - id: s_4089 - - name: creatinine - - compartment: c - - formula: C4H7N3O + - id: "s_4089" + - name: "creatinine" + - compartment: "c" + - formula: "C4H7N3O" - charge: 0 - annotation: !!omap - - bigg.metabolite: creat - - chebi: CHEBI:16737 - - kegg.compound: C00791 - - metanetx.chemical: MNXM1470 - - sbo: SBO:0000247 + - bigg.metabolite: "creat" + - chebi: "CHEBI:16737" + - kegg.compound: "C00791" + - metanetx.chemical: "MNXM1470" + - sbo: "SBO:0000247" - !!omap - - id: s_4090 - - name: N-phosphocreatine - - compartment: e - - formula: C4H8N3O5P + - id: "s_4090" + - name: "N-phosphocreatine" + - compartment: "e" + - formula: "C4H8N3O5P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:58092 - - metanetx.chemical: MNXM819 - - sbo: SBO:0000247 + - chebi: "CHEBI:58092" + - metanetx.chemical: "MNXM819" + - sbo: "SBO:0000247" - !!omap - - id: s_4091 - - name: creatinine - - compartment: e - - formula: C4H7N3O + - id: "s_4091" + - name: "creatinine" + - compartment: "e" + - formula: "C4H7N3O" - charge: 0 - annotation: !!omap - - bigg.metabolite: creat - - chebi: CHEBI:16737 - - kegg.compound: C00791 - - metanetx.chemical: MNXM1470 - - sbo: SBO:0000247 + - bigg.metabolite: "creat" + - chebi: "CHEBI:16737" + - kegg.compound: "C00791" + - metanetx.chemical: "MNXM1470" + - sbo: "SBO:0000247" - !!omap - - id: s_4092 - - name: N(omega)-phospho-L-arginine - - compartment: c - - formula: C6H14N4O5P + - id: "s_4092" + - name: "N(omega)-phospho-L-arginine" + - compartment: "c" + - formula: "C6H14N4O5P" - charge: -1 - annotation: !!omap - - bigg.metabolite: argp - - chebi: CHEBI:58477 - - kegg.compound: C05945 - - metanetx.chemical: MNXM3663 - - sbo: SBO:0000247 + - bigg.metabolite: "argp" + - chebi: "CHEBI:58477" + - kegg.compound: "C05945" + - metanetx.chemical: "MNXM3663" + - sbo: "SBO:0000247" - !!omap - - id: s_4093 - - name: N(omega)-phospho-L-arginine - - compartment: e - - formula: C6H14N4O5P + - id: "s_4093" + - name: "N(omega)-phospho-L-arginine" + - compartment: "e" + - formula: "C6H14N4O5P" - charge: -1 - annotation: !!omap - - bigg.metabolite: argp - - chebi: CHEBI:58477 - - kegg.compound: C05945 - - metanetx.chemical: MNXM3663 - - sbo: SBO:0000247 + - bigg.metabolite: "argp" + - chebi: "CHEBI:58477" + - kegg.compound: "C05945" + - metanetx.chemical: "MNXM3663" + - sbo: "SBO:0000247" - !!omap - - id: s_4094 - - name: 2',3'-cyclic GMP - - compartment: c - - formula: C10H11N5O7P + - id: "s_4094" + - name: "2',3'-cyclic GMP" + - compartment: "c" + - formula: "C10H11N5O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: 23cgmp - - chebi: CHEBI:60837 - - kegg.compound: C06194 - - metanetx.chemical: MNXM3149 - - sbo: SBO:0000247 + - bigg.metabolite: "23cgmp" + - chebi: "CHEBI:60837" + - kegg.compound: "C06194" + - metanetx.chemical: "MNXM3149" + - sbo: "SBO:0000247" - !!omap - - id: s_4095 - - name: 2',3'-cyclic GMP - - compartment: e - - formula: C10H11N5O7P + - id: "s_4095" + - name: "2',3'-cyclic GMP" + - compartment: "e" + - formula: "C10H11N5O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: 23cgmp - - chebi: CHEBI:60837 - - kegg.compound: C06194 - - metanetx.chemical: MNXM3149 - - sbo: SBO:0000247 + - bigg.metabolite: "23cgmp" + - chebi: "CHEBI:60837" + - kegg.compound: "C06194" + - metanetx.chemical: "MNXM3149" + - sbo: "SBO:0000247" - !!omap - - id: s_4096 - - name: O(4)-phospho-L-tyrosine - - compartment: c - - formula: C9H10NO6P + - id: "s_4096" + - name: "O(4)-phospho-L-tyrosine" + - compartment: "c" + - formula: "C9H10NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: tyrp - - chebi: CHEBI:62338 - - kegg.compound: C06501 - - metanetx.chemical: MNXM3323 - - sbo: SBO:0000247 + - bigg.metabolite: "tyrp" + - chebi: "CHEBI:62338" + - kegg.compound: "C06501" + - metanetx.chemical: "MNXM3323" + - sbo: "SBO:0000247" - !!omap - - id: s_4097 - - name: O(4)-phospho-L-tyrosine - - compartment: e - - formula: C9H10NO6P + - id: "s_4097" + - name: "O(4)-phospho-L-tyrosine" + - compartment: "e" + - formula: "C9H10NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: tyrp - - chebi: CHEBI:62338 - - kegg.compound: C06501 - - metanetx.chemical: MNXM3323 - - sbo: SBO:0000247 + - bigg.metabolite: "tyrp" + - chebi: "CHEBI:62338" + - kegg.compound: "C06501" + - metanetx.chemical: "MNXM3323" + - sbo: "SBO:0000247" - !!omap - - id: s_4098 - - name: triphosphate - - compartment: c - - formula: O10P3 + - id: "s_4098" + - name: "triphosphate" + - compartment: "c" + - formula: "O10P3" - charge: -5 - annotation: !!omap - - bigg.metabolite: pppi - - chebi: CHEBI:18036 - - kegg.compound: C00536 - - metanetx.chemical: MNXM332 - - sbo: SBO:0000247 + - bigg.metabolite: "pppi" + - chebi: "CHEBI:18036" + - kegg.compound: "C00536" + - metanetx.chemical: "MNXM332" + - sbo: "SBO:0000247" - !!omap - - id: s_4099 - - name: triphosphate - - compartment: e - - formula: O10P3 + - id: "s_4099" + - name: "triphosphate" + - compartment: "e" + - formula: "O10P3" - charge: -5 - annotation: !!omap - - bigg.metabolite: pppi - - chebi: CHEBI:18036 - - kegg.compound: C00536 - - metanetx.chemical: MNXM332 - - sbo: SBO:0000247 + - bigg.metabolite: "pppi" + - chebi: "CHEBI:18036" + - kegg.compound: "C00536" + - metanetx.chemical: "MNXM332" + - sbo: "SBO:0000247" - !!omap - - id: s_4100 - - name: cytidine 2'-phosphate - - compartment: c - - formula: C9H12N3O8P + - id: "s_4100" + - name: "cytidine 2'-phosphate" + - compartment: "c" + - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:77766 - - kegg.compound: C03104 - - metanetx.chemical: MNXM11237 - - sbo: SBO:0000247 + - chebi: "CHEBI:77766" + - kegg.compound: "C03104" + - metanetx.chemical: "MNXM11237" + - sbo: "SBO:0000247" - !!omap - - id: s_4101 - - name: cytidine 2'-phosphate - - compartment: e - - formula: C9H12N3O8P + - id: "s_4101" + - name: "cytidine 2'-phosphate" + - compartment: "e" + - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - chebi: CHEBI:77766 - - kegg.compound: C03104 - - metanetx.chemical: MNXM11237 - - sbo: SBO:0000247 + - chebi: "CHEBI:77766" + - kegg.compound: "C03104" + - metanetx.chemical: "MNXM11237" + - sbo: "SBO:0000247" - !!omap - - id: s_4102 - - name: 2',3'-cyclic UMP - - compartment: c - - formula: C9H10N2O8P + - id: "s_4102" + - name: "2',3'-cyclic UMP" + - compartment: "c" + - formula: "C9H10N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: 23cump - - chebi: CHEBI:60873 - - kegg.compound: C02355 - - metanetx.chemical: MNXM3150 - - sbo: SBO:0000247 + - bigg.metabolite: "23cump" + - chebi: "CHEBI:60873" + - kegg.compound: "C02355" + - metanetx.chemical: "MNXM3150" + - sbo: "SBO:0000247" - !!omap - - id: s_4103 - - name: 2',3'-cyclic UMP - - compartment: e - - formula: C9H10N2O8P + - id: "s_4103" + - name: "2',3'-cyclic UMP" + - compartment: "e" + - formula: "C9H10N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: 23cump - - chebi: CHEBI:60873 - - kegg.compound: C02355 - - metanetx.chemical: MNXM3150 - - sbo: SBO:0000247 + - bigg.metabolite: "23cump" + - chebi: "CHEBI:60873" + - kegg.compound: "C02355" + - metanetx.chemical: "MNXM3150" + - sbo: "SBO:0000247" - !!omap - - id: s_4104 - - name: 3-sulfino-L-alanine - - compartment: c - - formula: C3H6NO4S + - id: "s_4104" + - name: "3-sulfino-L-alanine" + - compartment: "c" + - formula: "C3H6NO4S" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3sala - - chebi: CHEBI:61085 - - kegg.compound: C00606 - - metanetx.chemical: MNXM498 - - sbo: SBO:0000247 + - bigg.metabolite: "3sala" + - chebi: "CHEBI:61085" + - kegg.compound: "C00606" + - metanetx.chemical: "MNXM498" + - sbo: "SBO:0000247" - !!omap - - id: s_4105 - - name: 3-sulfino-L-alanine - - compartment: e - - formula: C3H6NO4S + - id: "s_4105" + - name: "3-sulfino-L-alanine" + - compartment: "e" + - formula: "C3H6NO4S" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3sala - - chebi: CHEBI:61085 - - kegg.compound: C00606 - - metanetx.chemical: MNXM498 - - sbo: SBO:0000247 + - bigg.metabolite: "3sala" + - chebi: "CHEBI:61085" + - kegg.compound: "C00606" + - metanetx.chemical: "MNXM498" + - sbo: "SBO:0000247" - !!omap - - id: s_4106 - - name: 3'-AMP - - compartment: c - - formula: C10H12N5O7P + - id: "s_4106" + - name: "3'-AMP" + - compartment: "c" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3amp - - chebi: CHEBI:60880 - - kegg.compound: C01367 - - metanetx.chemical: MNXM1985 - - sbo: SBO:0000247 + - bigg.metabolite: "3amp" + - chebi: "CHEBI:60880" + - kegg.compound: "C01367" + - metanetx.chemical: "MNXM1985" + - sbo: "SBO:0000247" - !!omap - - id: s_4107 - - name: 3'-AMP - - compartment: e - - formula: C10H12N5O7P + - id: "s_4107" + - name: "3'-AMP" + - compartment: "e" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: 3amp - - chebi: CHEBI:60880 - - kegg.compound: C01367 - - metanetx.chemical: MNXM1985 - - sbo: SBO:0000247 + - bigg.metabolite: "3amp" + - chebi: "CHEBI:60880" + - kegg.compound: "C01367" + - metanetx.chemical: "MNXM1985" + - sbo: "SBO:0000247" - !!omap - - id: s_4108 - - name: 6-O-alpha-D-glucopyranosyl-D-fructofuranose - - compartment: c - - formula: C12H22O11 + - id: "s_4108" + - name: "6-O-alpha-D-glucopyranosyl-D-fructofuranose" + - compartment: "c" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: pala - - chebi: CHEBI:18394 - - kegg.compound: C01742 - - metanetx.chemical: MNXM3518 - - sbo: SBO:0000247 + - bigg.metabolite: "pala" + - chebi: "CHEBI:18394" + - kegg.compound: "C01742" + - metanetx.chemical: "MNXM3518" + - sbo: "SBO:0000247" - !!omap - - id: s_4109 - - name: 6-O-alpha-D-glucopyranosyl-D-fructofuranose - - compartment: e - - formula: C12H22O11 + - id: "s_4109" + - name: "6-O-alpha-D-glucopyranosyl-D-fructofuranose" + - compartment: "e" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: pala - - chebi: CHEBI:18394 - - kegg.compound: C01742 - - metanetx.chemical: MNXM3518 - - sbo: SBO:0000247 + - bigg.metabolite: "pala" + - chebi: "CHEBI:18394" + - kegg.compound: "C01742" + - metanetx.chemical: "MNXM3518" + - sbo: "SBO:0000247" - !!omap - - id: s_4110 - - name: N-acetyl-L-cysteine - - compartment: c - - formula: C5H8NO3S + - id: "s_4110" + - name: "N-acetyl-L-cysteine" + - compartment: "c" + - formula: "C5H8NO3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: CE1310 - - chebi: CHEBI:78236 - - kegg.compound: C06809 - - metanetx.chemical: MNXM98606 - - sbo: SBO:0000247 + - bigg.metabolite: "CE1310" + - chebi: "CHEBI:78236" + - kegg.compound: "C06809" + - metanetx.chemical: "MNXM98606" + - sbo: "SBO:0000247" - !!omap - - id: s_4111 - - name: N-acetyl-L-cysteine - - compartment: e - - formula: C5H8NO3S + - id: "s_4111" + - name: "N-acetyl-L-cysteine" + - compartment: "e" + - formula: "C5H8NO3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: CE1310 - - chebi: CHEBI:78236 - - kegg.compound: C06809 - - metanetx.chemical: MNXM98606 - - sbo: SBO:0000247 + - bigg.metabolite: "CE1310" + - chebi: "CHEBI:78236" + - kegg.compound: "C06809" + - metanetx.chemical: "MNXM98606" + - sbo: "SBO:0000247" - !!omap - - id: s_4112 - - name: tetrathionate - - compartment: c - - formula: O6S4 + - id: "s_4112" + - name: "tetrathionate" + - compartment: "c" + - formula: "O6S4" - charge: -2 - annotation: !!omap - - bigg.metabolite: tet - - chebi: CHEBI:15226 - - kegg.compound: C02084 - - metanetx.chemical: MNXM1781 - - sbo: SBO:0000247 + - bigg.metabolite: "tet" + - chebi: "CHEBI:15226" + - kegg.compound: "C02084" + - metanetx.chemical: "MNXM1781" + - sbo: "SBO:0000247" - !!omap - - id: s_4113 - - name: thiosulfate - - compartment: c - - formula: HO3S2 + - id: "s_4113" + - name: "thiosulfate" + - compartment: "c" + - formula: "HO3S2" - charge: -1 - annotation: !!omap - - bigg.metabolite: tsul - - chebi: CHEBI:33542 - - kegg.compound: C00320 - - metanetx.chemical: MNXM323 - - sbo: SBO:0000247 + - bigg.metabolite: "tsul" + - chebi: "CHEBI:33542" + - kegg.compound: "C00320" + - metanetx.chemical: "MNXM323" + - sbo: "SBO:0000247" - !!omap - - id: s_4114 - - name: tetrathionate - - compartment: e - - formula: O6S4 + - id: "s_4114" + - name: "tetrathionate" + - compartment: "e" + - formula: "O6S4" - charge: -2 - annotation: !!omap - - bigg.metabolite: tet - - chebi: CHEBI:15226 - - kegg.compound: C02084 - - metanetx.chemical: MNXM1781 - - sbo: SBO:0000247 + - bigg.metabolite: "tet" + - chebi: "CHEBI:15226" + - kegg.compound: "C02084" + - metanetx.chemical: "MNXM1781" + - sbo: "SBO:0000247" - !!omap - - id: s_4115 - - name: 2-hydroxyethane-1-sulfonate - - compartment: c - - formula: C2H5O4S + - id: "s_4115" + - name: "2-hydroxyethane-1-sulfonate" + - compartment: "c" + - formula: "C2H5O4S" - charge: -1 - annotation: !!omap - - bigg.metabolite: isetac - - chebi: CHEBI:61904 - - kegg.compound: C05123 - - metanetx.chemical: MNXM1630 - - sbo: SBO:0000247 + - bigg.metabolite: "isetac" + - chebi: "CHEBI:61904" + - kegg.compound: "C05123" + - metanetx.chemical: "MNXM1630" + - sbo: "SBO:0000247" - !!omap - - id: s_4116 - - name: 2-hydroxyethane-1-sulfonate - - compartment: e - - formula: C2H5O4S + - id: "s_4116" + - name: "2-hydroxyethane-1-sulfonate" + - compartment: "e" + - formula: "C2H5O4S" - charge: -1 - annotation: !!omap - - bigg.metabolite: isetac - - chebi: CHEBI:61904 - - kegg.compound: C05123 - - metanetx.chemical: MNXM1630 - - sbo: SBO:0000247 + - bigg.metabolite: "isetac" + - chebi: "CHEBI:61904" + - kegg.compound: "C05123" + - metanetx.chemical: "MNXM1630" + - sbo: "SBO:0000247" - !!omap - - id: s_4117 - - name: 5-dehydro-D-gluconate - - compartment: c - - formula: C6H9O7 + - id: "s_4117" + - name: "5-dehydro-D-gluconate" + - compartment: "c" + - formula: "C6H9O7" - charge: -1 - annotation: !!omap - - bigg.metabolite: 5dglcn - - chebi: CHEBI:58143 - - kegg.compound: C01062 - - metanetx.chemical: MNXM963 - - sbo: SBO:0000247 + - bigg.metabolite: "5dglcn" + - chebi: "CHEBI:58143" + - kegg.compound: "C01062" + - metanetx.chemical: "MNXM963" + - sbo: "SBO:0000247" - !!omap - - id: s_4118 - - name: 5-dehydro-D-gluconate - - compartment: e - - formula: C6H9O7 + - id: "s_4118" + - name: "5-dehydro-D-gluconate" + - compartment: "e" + - formula: "C6H9O7" - charge: -1 - annotation: !!omap - - bigg.metabolite: 5dglcn - - chebi: CHEBI:58143 - - kegg.compound: C01062 - - metanetx.chemical: MNXM963 - - sbo: SBO:0000247 + - bigg.metabolite: "5dglcn" + - chebi: "CHEBI:58143" + - kegg.compound: "C01062" + - metanetx.chemical: "MNXM963" + - sbo: "SBO:0000247" - !!omap - - id: s_4119 - - name: Ala-Asp - - compartment: e - - formula: C7H11N2O5 + - id: "s_4119" + - name: "Ala-Asp" + - compartment: "e" + - formula: "C7H11N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: ala_L_asp__L - - chebi: CHEBI:74363 - - metanetx.chemical: MNXM40494 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_asp__L" + - chebi: "CHEBI:74363" + - metanetx.chemical: "MNXM40494" + - sbo: "SBO:0000247" - !!omap - - id: s_4120 - - name: Ala-Asp - - compartment: c - - formula: C7H11N2O5 + - id: "s_4120" + - name: "Ala-Asp" + - compartment: "c" + - formula: "C7H11N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: ala_L_asp__L - - chebi: CHEBI:74363 - - metanetx.chemical: MNXM40494 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_asp__L" + - chebi: "CHEBI:74363" + - metanetx.chemical: "MNXM40494" + - sbo: "SBO:0000247" - !!omap - - id: s_4121 - - name: Ala-Asp - - compartment: v - - formula: C7H11N2O5 + - id: "s_4121" + - name: "Ala-Asp" + - compartment: "v" + - formula: "C7H11N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: ala_L_asp__L - - chebi: CHEBI:74363 - - metanetx.chemical: MNXM40494 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_asp__L" + - chebi: "CHEBI:74363" + - metanetx.chemical: "MNXM40494" + - sbo: "SBO:0000247" - !!omap - - id: s_4122 - - name: methyl alpha-D-glucopyranoside - - compartment: c - - formula: C7H14O6 + - id: "s_4122" + - name: "methyl alpha-D-glucopyranoside" + - compartment: "c" + - formula: "C7H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: madg - - chebi: CHEBI:320061 - - metanetx.chemical: MNXM724960 - - sbo: SBO:0000247 + - bigg.metabolite: "madg" + - chebi: "CHEBI:320061" + - metanetx.chemical: "MNXM724960" + - sbo: "SBO:0000247" - !!omap - - id: s_4123 - - name: methanol - - compartment: c - - formula: CH4O + - id: "s_4123" + - name: "methanol" + - compartment: "c" + - formula: "CH4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: meoh - - chebi: CHEBI:17790 - - kegg.compound: C00132 - - metanetx.chemical: MNXM157 - - sbo: SBO:0000247 + - bigg.metabolite: "meoh" + - chebi: "CHEBI:17790" + - kegg.compound: "C00132" + - metanetx.chemical: "MNXM157" + - sbo: "SBO:0000247" - !!omap - - id: s_4124 - - name: methanol - - compartment: e - - formula: CH4O + - id: "s_4124" + - name: "methanol" + - compartment: "e" + - formula: "CH4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: meoh - - chebi: CHEBI:17790 - - kegg.compound: C00132 - - metanetx.chemical: MNXM157 - - sbo: SBO:0000247 + - bigg.metabolite: "meoh" + - chebi: "CHEBI:17790" + - kegg.compound: "C00132" + - metanetx.chemical: "MNXM157" + - sbo: "SBO:0000247" - !!omap - - id: s_4125 - - name: methyl alpha-D-glucopyranoside - - compartment: e - - formula: C7H14O6 + - id: "s_4125" + - name: "methyl alpha-D-glucopyranoside" + - compartment: "e" + - formula: "C7H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: madg - - chebi: CHEBI:320061 - - metanetx.chemical: MNXM724960 - - sbo: SBO:0000247 + - bigg.metabolite: "madg" + - chebi: "CHEBI:320061" + - metanetx.chemical: "MNXM724960" + - sbo: "SBO:0000247" - !!omap - - id: s_4126 - - name: 2',3'-cyclic CMP - - compartment: c - - formula: C9H11N3O7P + - id: "s_4126" + - name: "2',3'-cyclic CMP" + - compartment: "c" + - formula: "C9H11N3O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: 23ccmp - - chebi: CHEBI:60877 - - kegg.compound: C02354 - - metanetx.chemical: MNXM3148 - - sbo: SBO:0000247 + - bigg.metabolite: "23ccmp" + - chebi: "CHEBI:60877" + - kegg.compound: "C02354" + - metanetx.chemical: "MNXM3148" + - sbo: "SBO:0000247" - !!omap - - id: s_4127 - - name: 2',3'-cyclic CMP - - compartment: e - - formula: C9H11N3O7P + - id: "s_4127" + - name: "2',3'-cyclic CMP" + - compartment: "e" + - formula: "C9H11N3O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: 23ccmp - - chebi: CHEBI:60877 - - kegg.compound: C02354 - - metanetx.chemical: MNXM3148 - - sbo: SBO:0000247 + - bigg.metabolite: "23ccmp" + - chebi: "CHEBI:60877" + - kegg.compound: "C02354" + - metanetx.chemical: "MNXM3148" + - sbo: "SBO:0000247" - !!omap - - id: s_4128 - - name: D-tagatose - - compartment: c - - formula: C6H12O6 + - id: "s_4128" + - name: "D-tagatose" + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag__D - - chebi: CHEBI:4249 - - kegg.compound: C00795 - - metanetx.chemical: MNXM92401 - - sbo: SBO:0000247 + - bigg.metabolite: "tag__D" + - chebi: "CHEBI:4249" + - kegg.compound: "C00795" + - metanetx.chemical: "MNXM92401" + - sbo: "SBO:0000247" - !!omap - - id: s_4129 - - name: D-tagatofuranose 6-phosphate - - compartment: c - - formula: C6H11O9P + - id: "s_4129" + - name: "D-tagatofuranose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: tag6p__D - - chebi: CHEBI:58695 - - kegg.compound: C01097 - - metanetx.chemical: MNXM795 - - sbo: SBO:0000247 + - bigg.metabolite: "tag6p__D" + - chebi: "CHEBI:58695" + - kegg.compound: "C01097" + - metanetx.chemical: "MNXM795" + - sbo: "SBO:0000247" - !!omap - - id: s_4130 - - name: D-tagatose - - compartment: e - - formula: C6H12O6 + - id: "s_4130" + - name: "D-tagatose" + - compartment: "e" + - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: tag__D - - chebi: CHEBI:4249 - - kegg.compound: C00795 - - metanetx.chemical: MNXM92401 - - sbo: SBO:0000247 + - bigg.metabolite: "tag__D" + - chebi: "CHEBI:4249" + - kegg.compound: "C00795" + - metanetx.chemical: "MNXM92401" + - sbo: "SBO:0000247" - !!omap - - id: s_4131 - - name: turanose - - compartment: e - - formula: C12H22O11 + - id: "s_4131" + - name: "turanose" + - compartment: "e" + - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - chebi: CHEBI:32528 - - kegg.compound: C19636 - - metanetx.chemical: MNXM161984 - - sbo: SBO:0000247 + - chebi: "CHEBI:32528" + - kegg.compound: "C19636" + - metanetx.chemical: "MNXM161984" + - sbo: "SBO:0000247" - !!omap - - id: s_4132 - - name: acetoacetate - - compartment: c - - formula: C4H5O3 + - id: "s_4132" + - name: "acetoacetate" + - compartment: "c" + - formula: "C4H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: acac - - chebi: CHEBI:13705 - - kegg.compound: C00164 - - metanetx.chemical: MNXM154 - - sbo: SBO:0000247 + - bigg.metabolite: "acac" + - chebi: "CHEBI:13705" + - kegg.compound: "C00164" + - metanetx.chemical: "MNXM154" + - sbo: "SBO:0000247" - !!omap - - id: s_4133 - - name: acetoacetate - - compartment: e - - formula: C4H5O3 + - id: "s_4133" + - name: "acetoacetate" + - compartment: "e" + - formula: "C4H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: acac - - chebi: CHEBI:13705 - - kegg.compound: C00164 - - metanetx.chemical: MNXM154 - - sbo: SBO:0000247 + - bigg.metabolite: "acac" + - chebi: "CHEBI:13705" + - kegg.compound: "C00164" + - metanetx.chemical: "MNXM154" + - sbo: "SBO:0000247" - !!omap - - id: s_4134 - - name: N(alpha)-acetyl-L-methionine - - compartment: c - - formula: C7H12NO3S + - id: "s_4134" + - name: "N(alpha)-acetyl-L-methionine" + - compartment: "c" + - formula: "C7H12NO3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: C02712 - - chebi: CHEBI:132957 - - kegg.compound: C02712 - - metanetx.chemical: MNXM7576 - - sbo: SBO:0000247 + - bigg.metabolite: "C02712" + - chebi: "CHEBI:132957" + - kegg.compound: "C02712" + - metanetx.chemical: "MNXM7576" + - sbo: "SBO:0000247" - !!omap - - id: s_4135 - - name: N(alpha)-acetyl-L-methionine - - compartment: e - - formula: C7H12NO3S + - id: "s_4135" + - name: "N(alpha)-acetyl-L-methionine" + - compartment: "e" + - formula: "C7H12NO3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: C02712 - - chebi: CHEBI:132957 - - kegg.compound: C02712 - - metanetx.chemical: MNXM7576 - - sbo: SBO:0000247 + - bigg.metabolite: "C02712" + - chebi: "CHEBI:132957" + - kegg.compound: "C02712" + - metanetx.chemical: "MNXM7576" + - sbo: "SBO:0000247" - !!omap - - id: s_4136 - - name: 3-oxalomalate(3-) - - compartment: c - - formula: C6H3O8 + - id: "s_4136" + - name: "3-oxalomalate(3-)" + - compartment: "c" + - formula: "C6H3O8" - charge: -3 - annotation: !!omap - - chebi: CHEBI:15593 - - kegg.compound: C01990 - - metanetx.chemical: MNXM3850 - - sbo: SBO:0000247 + - chebi: "CHEBI:15593" + - kegg.compound: "C01990" + - metanetx.chemical: "MNXM3850" + - sbo: "SBO:0000247" - !!omap - - id: s_4137 - - name: 3-oxalomalate(3-) - - compartment: e - - formula: C6H3O8 + - id: "s_4137" + - name: "3-oxalomalate(3-)" + - compartment: "e" + - formula: "C6H3O8" - charge: -3 - annotation: !!omap - - chebi: CHEBI:15593 - - kegg.compound: C01990 - - metanetx.chemical: MNXM3850 - - sbo: SBO:0000247 + - chebi: "CHEBI:15593" + - kegg.compound: "C01990" + - metanetx.chemical: "MNXM3850" + - sbo: "SBO:0000247" - !!omap - - id: s_4138 - - name: L-cysteate - - compartment: c - - formula: C3H6NO5S + - id: "s_4138" + - name: "L-cysteate" + - compartment: "c" + - formula: "C3H6NO5S" - charge: -1 - annotation: !!omap - - bigg.metabolite: Lcyst - - chebi: CHEBI:58090 - - kegg.compound: C00506 - - metanetx.chemical: MNXM713 - - sbo: SBO:0000247 + - bigg.metabolite: "Lcyst" + - chebi: "CHEBI:58090" + - kegg.compound: "C00506" + - metanetx.chemical: "MNXM713" + - sbo: "SBO:0000247" - !!omap - - id: s_4139 - - name: L-cysteate - - compartment: e - - formula: C3H6NO5S + - id: "s_4139" + - name: "L-cysteate" + - compartment: "e" + - formula: "C3H6NO5S" - charge: -1 - annotation: !!omap - - bigg.metabolite: Lcyst - - chebi: CHEBI:58090 - - kegg.compound: C00506 - - metanetx.chemical: MNXM713 - - sbo: SBO:0000247 + - bigg.metabolite: "Lcyst" + - chebi: "CHEBI:58090" + - kegg.compound: "C00506" + - metanetx.chemical: "MNXM713" + - sbo: "SBO:0000247" - !!omap - - id: s_4140 - - name: alpha-maltotriose - - compartment: e - - formula: C18H32O16 + - id: "s_4140" + - name: "alpha-maltotriose" + - compartment: "e" + - formula: "C18H32O16" - charge: 0 - annotation: !!omap - - bigg.metabolite: malttr - - chebi: CHEBI:61993 - - kegg.compound: C01835 - - metanetx.chemical: MNXM468 - - sbo: SBO:0000247 + - bigg.metabolite: "malttr" + - chebi: "CHEBI:61993" + - kegg.compound: "C01835" + - metanetx.chemical: "MNXM468" + - sbo: "SBO:0000247" - !!omap - - id: s_4141 - - name: 2-phospho-D-glyceric acid - - compartment: e - - formula: C3H4O7P + - id: "s_4141" + - name: "2-phospho-D-glyceric acid" + - compartment: "e" + - formula: "C3H4O7P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 2pg - - chebi: CHEBI:58289 - - kegg.compound: C00631 - - metanetx.chemical: MNXM275 - - sbo: SBO:0000247 + - bigg.metabolite: "2pg" + - chebi: "CHEBI:58289" + - kegg.compound: "C00631" + - metanetx.chemical: "MNXM275" + - sbo: "SBO:0000247" - !!omap - - id: s_4142 - - name: 3-phosphonato-D-glycerate(3-) - - compartment: e - - formula: C3H4O7P + - id: "s_4142" + - name: "3-phosphonato-D-glycerate(3-)" + - compartment: "e" + - formula: "C3H4O7P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 3pg - - chebi: CHEBI:58272 - - kegg.compound: C00197 - - metanetx.chemical: MNXM126 - - sbo: SBO:0000247 + - bigg.metabolite: "3pg" + - chebi: "CHEBI:58272" + - kegg.compound: "C00197" + - metanetx.chemical: "MNXM126" + - sbo: "SBO:0000247" - !!omap - - id: s_4143 - - name: Met-Ala - - compartment: e - - formula: C8H16N2O3S + - id: "s_4143" + - name: "Met-Ala" + - compartment: "e" + - formula: "C8H16N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: met_L_ala__L - - chebi: CHEBI:73610 - - metanetx.chemical: MNXM61647 - - sbo: SBO:0000247 + - bigg.metabolite: "met_L_ala__L" + - chebi: "CHEBI:73610" + - metanetx.chemical: "MNXM61647" + - sbo: "SBO:0000247" - !!omap - - id: s_4144 - - name: Met-Ala - - compartment: c - - formula: C8H16N2O3S + - id: "s_4144" + - name: "Met-Ala" + - compartment: "c" + - formula: "C8H16N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: met_L_ala__L - - chebi: CHEBI:73610 - - metanetx.chemical: MNXM61647 - - sbo: SBO:0000247 + - bigg.metabolite: "met_L_ala__L" + - chebi: "CHEBI:73610" + - metanetx.chemical: "MNXM61647" + - sbo: "SBO:0000247" - !!omap - - id: s_4145 - - name: D-glucose 1-phosphate - - compartment: e - - formula: C6H11O9P + - id: "s_4145" + - name: "D-glucose 1-phosphate" + - compartment: "e" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: g1p - - chebi: CHEBI:57629 - - kegg.compound: C00103 - - metanetx.chemical: MNXM89588 - - sbo: SBO:0000247 + - bigg.metabolite: "g1p" + - chebi: "CHEBI:57629" + - kegg.compound: "C00103" + - metanetx.chemical: "MNXM89588" + - sbo: "SBO:0000247" - !!omap - - id: s_4146 - - name: carbamoyl phosphate - - compartment: e - - formula: CH2NO5P + - id: "s_4146" + - name: "carbamoyl phosphate" + - compartment: "e" + - formula: "CH2NO5P" - charge: -2 - annotation: !!omap - - bigg.metabolite: cbp - - chebi: CHEBI:58228 - - kegg.compound: C00169 - - metanetx.chemical: MNXM138 - - sbo: SBO:0000247 + - bigg.metabolite: "cbp" + - chebi: "CHEBI:58228" + - kegg.compound: "C00169" + - metanetx.chemical: "MNXM138" + - sbo: "SBO:0000247" - !!omap - - id: s_4147 - - name: 3-phospho-serine - - compartment: e - - formula: C3H6NO6P + - id: "s_4147" + - name: "3-phospho-serine" + - compartment: "e" + - formula: "C3H6NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: pser__L - - chebi: CHEBI:57524 - - kegg.compound: C01005 - - metanetx.chemical: MNXM379 - - sbo: SBO:0000247 + - bigg.metabolite: "pser__L" + - chebi: "CHEBI:57524" + - kegg.compound: "C01005" + - metanetx.chemical: "MNXM379" + - sbo: "SBO:0000247" - !!omap - - id: s_4148 - - name: GMP - - compartment: e - - formula: C10H12N5O8P + - id: "s_4148" + - name: "GMP" + - compartment: "e" + - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: gmp - - chebi: CHEBI:58115 - - kegg.compound: C00144 - - metanetx.chemical: MNXM113 - - sbo: SBO:0000247 + - bigg.metabolite: "gmp" + - chebi: "CHEBI:58115" + - kegg.compound: "C00144" + - metanetx.chemical: "MNXM113" + - sbo: "SBO:0000247" - !!omap - - id: s_4149 - - name: myo-inositol hexakisphosphate - - compartment: e - - formula: C6H6O24P6 + - id: "s_4149" + - name: "myo-inositol hexakisphosphate" + - compartment: "e" + - formula: "C6H6O24P6" - charge: -12 - annotation: !!omap - - bigg.metabolite: minohp - - chebi: CHEBI:58130 - - kegg.compound: C01204 - - metanetx.chemical: MNXM491 - - sbo: SBO:0000247 + - bigg.metabolite: "minohp" + - chebi: "CHEBI:58130" + - kegg.compound: "C01204" + - metanetx.chemical: "MNXM491" + - sbo: "SBO:0000247" - !!omap - - id: s_4150 - - name: D-glucose 6-phosphate - - compartment: e - - formula: C6H11O9P + - id: "s_4150" + - name: "D-glucose 6-phosphate" + - compartment: "e" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: g6p - - chebi: CHEBI:61548 - - kegg.compound: C00092 - - metanetx.chemical: MNXM160 - - sbo: SBO:0000247 + - bigg.metabolite: "g6p" + - chebi: "CHEBI:61548" + - kegg.compound: "C00092" + - metanetx.chemical: "MNXM160" + - sbo: "SBO:0000247" - !!omap - - id: s_4151 - - name: UMP - - compartment: e - - formula: C9H11N2O9P + - id: "s_4151" + - name: "UMP" + - compartment: "e" + - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: ump - - chebi: CHEBI:57865 - - kegg.compound: C00105 - - metanetx.chemical: MNXM80 - - sbo: SBO:0000247 + - bigg.metabolite: "ump" + - chebi: "CHEBI:57865" + - kegg.compound: "C00105" + - metanetx.chemical: "MNXM80" + - sbo: "SBO:0000247" - !!omap - - id: s_4152 - - name: phosphoenolpyruvate - - compartment: e - - formula: C3H2O6P + - id: "s_4152" + - name: "phosphoenolpyruvate" + - compartment: "e" + - formula: "C3H2O6P" - charge: -3 - annotation: !!omap - - bigg.metabolite: pep - - chebi: CHEBI:58702 - - kegg.compound: C00074 - - metanetx.chemical: MNXM73 - - sbo: SBO:0000247 + - bigg.metabolite: "pep" + - chebi: "CHEBI:58702" + - kegg.compound: "C00074" + - metanetx.chemical: "MNXM73" + - sbo: "SBO:0000247" - !!omap - - id: s_4153 - - name: D-mannose 6-phosphate - - compartment: e - - formula: C6H11O9P + - id: "s_4153" + - name: "D-mannose 6-phosphate" + - compartment: "e" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: man6p - - chebi: CHEBI:58735 - - kegg.compound: C00275 - - metanetx.chemical: MNXM427 - - sbo: SBO:0000247 + - bigg.metabolite: "man6p" + - chebi: "CHEBI:58735" + - kegg.compound: "C00275" + - metanetx.chemical: "MNXM427" + - sbo: "SBO:0000247" - !!omap - - id: s_4154 - - name: O-phosphoethanolamine - - compartment: e - - formula: C2H7NO4P + - id: "s_4154" + - name: "O-phosphoethanolamine" + - compartment: "e" + - formula: "C2H7NO4P" - charge: -1 - annotation: !!omap - - bigg.metabolite: ethamp - - chebi: CHEBI:58190 - - kegg.compound: C00346 - - metanetx.chemical: MNXM187 - - sbo: SBO:0000247 + - bigg.metabolite: "ethamp" + - chebi: "CHEBI:58190" + - kegg.compound: "C00346" + - metanetx.chemical: "MNXM187" + - sbo: "SBO:0000247" - !!omap - - id: s_4155 - - name: 6-phospho-D-gluconate - - compartment: e - - formula: C6H10O10P + - id: "s_4155" + - name: "6-phospho-D-gluconate" + - compartment: "e" + - formula: "C6H10O10P" - charge: -3 - annotation: !!omap - - bigg.metabolite: 6pgc - - chebi: CHEBI:58759 - - kegg.compound: C00345 - - metanetx.chemical: MNXM325 - - sbo: SBO:0000247 + - bigg.metabolite: "6pgc" + - chebi: "CHEBI:58759" + - kegg.compound: "C00345" + - metanetx.chemical: "MNXM325" + - sbo: "SBO:0000247" - !!omap - - id: s_4156 - - name: D-mannose 1-phosphate - - compartment: e - - formula: C6H11O9P + - id: "s_4156" + - name: "D-mannose 1-phosphate" + - compartment: "e" + - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: man1p - - chebi: CHEBI:58409 - - kegg.compound: C00636 - - metanetx.chemical: MNXM721 - - sbo: SBO:0000247 + - bigg.metabolite: "man1p" + - chebi: "CHEBI:58409" + - kegg.compound: "C00636" + - metanetx.chemical: "MNXM721" + - sbo: "SBO:0000247" - !!omap - - id: s_4157 - - name: diphosphate - - compartment: e - - formula: HO7P2 + - id: "s_4157" + - name: "diphosphate" + - compartment: "e" + - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: ppi - - chebi: CHEBI:33019 - - kegg.compound: C00013 - - metanetx.chemical: MNXM11 - - sbo: SBO:0000247 + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - - id: s_4158 - - name: choline phosphate - - compartment: e - - formula: C5H13NO4P + - id: "s_4158" + - name: "choline phosphate" + - compartment: "e" + - formula: "C5H13NO4P" - charge: -1 - annotation: !!omap - - bigg.metabolite: cholp - - chebi: CHEBI:295975 - - kegg.compound: C00588 - - metanetx.chemical: MNXM229 - - sbo: SBO:0000247 + - bigg.metabolite: "cholp" + - chebi: "CHEBI:295975" + - kegg.compound: "C00588" + - metanetx.chemical: "MNXM229" + - sbo: "SBO:0000247" - !!omap - - id: s_4159 - - name: thiosulfate - - compartment: e - - formula: HO3S2 + - id: "s_4159" + - name: "thiosulfate" + - compartment: "e" + - formula: "HO3S2" - charge: -1 - annotation: !!omap - - bigg.metabolite: tsul - - chebi: CHEBI:33542 - - kegg.compound: C00320 - - metanetx.chemical: MNXM323 - - sbo: SBO:0000247 + - bigg.metabolite: "tsul" + - chebi: "CHEBI:33542" + - kegg.compound: "C00320" + - metanetx.chemical: "MNXM323" + - sbo: "SBO:0000247" - !!omap - - id: s_4160 - - name: AMP - - compartment: e - - formula: C10H12N5O7P + - id: "s_4160" + - name: "AMP" + - compartment: "e" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: amp - - chebi: CHEBI:456215 - - kegg.compound: C00020 - - metanetx.chemical: MNXM14 - - sbo: SBO:0000247 + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - - id: s_4161 - - name: 2',3'-cyclic AMP - - compartment: e - - formula: C10H11N5O6P + - id: "s_4161" + - name: "2',3'-cyclic AMP" + - compartment: "e" + - formula: "C10H11N5O6P" - charge: -1 - annotation: !!omap - - bigg.metabolite: 23camp - - chebi: CHEBI:60879 - - kegg.compound: C02353 - - metanetx.chemical: MNXM2598 - - sbo: SBO:0000247 + - bigg.metabolite: "23camp" + - chebi: "CHEBI:60879" + - kegg.compound: "C02353" + - metanetx.chemical: "MNXM2598" + - sbo: "SBO:0000247" - !!omap - - id: s_4162 - - name: adenosine 2'-phosphate - - compartment: e - - formula: C10H12N5O7P + - id: "s_4162" + - name: "adenosine 2'-phosphate" + - compartment: "e" + - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: amp2p - - chebi: CHEBI:77740 - - kegg.compound: C00946 - - metanetx.chemical: MNXM7028 - - sbo: SBO:0000247 + - bigg.metabolite: "amp2p" + - chebi: "CHEBI:77740" + - kegg.compound: "C00946" + - metanetx.chemical: "MNXM7028" + - sbo: "SBO:0000247" - !!omap - - id: s_4163 - - name: CMP - - compartment: e - - formula: C9H12N3O8P + - id: "s_4163" + - name: "CMP" + - compartment: "e" + - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: cmp - - chebi: CHEBI:60377 - - kegg.compound: C00055 - - metanetx.chemical: MNXM31 - - sbo: SBO:0000247 + - bigg.metabolite: "cmp" + - chebi: "CHEBI:60377" + - kegg.compound: "C00055" + - metanetx.chemical: "MNXM31" + - sbo: "SBO:0000247" - !!omap - - id: s_4164 - - name: D-Glucosamine - - compartment: e - - formula: C6H14NO5 + - id: "s_4164" + - name: "D-Glucosamine" + - compartment: "e" + - formula: "C6H14NO5" - charge: 1 - annotation: !!omap - - bigg.metabolite: gam - - chebi: CHEBI:58723 - - kegg.compound: C00329 - - metanetx.chemical: MNXM533 - - sbo: SBO:0000247 + - bigg.metabolite: "gam" + - chebi: "CHEBI:58723" + - kegg.compound: "C00329" + - metanetx.chemical: "MNXM533" + - sbo: "SBO:0000247" - !!omap - - id: s_4165 - - name: 2-deoxy-D-ribose - - compartment: e - - formula: C5H10O4 + - id: "s_4165" + - name: "2-deoxy-D-ribose" + - compartment: "e" + - formula: "C5H10O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: drib - - chebi: CHEBI:28816 - - kegg.compound: C08347 - - metanetx.chemical: MNXM2474 - - sbo: SBO:0000247 + - bigg.metabolite: "drib" + - chebi: "CHEBI:28816" + - kegg.compound: "C08347" + - metanetx.chemical: "MNXM2474" + - sbo: "SBO:0000247" - !!omap - - id: s_4166 - - name: L-citrulline - - compartment: e - - formula: C6H13N3O3 + - id: "s_4166" + - name: "L-citrulline" + - compartment: "e" + - formula: "C6H13N3O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: citr__L - - chebi: CHEBI:16349 - - kegg.compound: C00327 - - metanetx.chemical: MNXM211 - - sbo: SBO:0000247 + - bigg.metabolite: "citr__L" + - chebi: "CHEBI:16349" + - kegg.compound: "C00327" + - metanetx.chemical: "MNXM211" + - sbo: "SBO:0000247" - !!omap - - id: s_4167 - - name: glycerone - - compartment: e - - formula: C3H6O3 + - id: "s_4167" + - name: "glycerone" + - compartment: "e" + - formula: "C3H6O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: dha - - chebi: CHEBI:16016 - - kegg.compound: C00184 - - metanetx.chemical: MNXM460 - - sbo: SBO:0000247 + - bigg.metabolite: "dha" + - chebi: "CHEBI:16016" + - kegg.compound: "C00184" + - metanetx.chemical: "MNXM460" + - sbo: "SBO:0000247" - !!omap - - id: s_4168 - - name: Ala-Leu - - compartment: e - - formula: C9H18N2O3 + - id: "s_4168" + - name: "Ala-Leu" + - compartment: "e" + - formula: "C9H18N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_L_ile__L - - chebi: CHEBI:73770 - - metanetx.chemical: MNXM15786 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_ile__L" + - chebi: "CHEBI:73770" + - metanetx.chemical: "MNXM15786" + - sbo: "SBO:0000247" - !!omap - - id: s_4169 - - name: Ala-Leu - - compartment: c - - formula: C9H18N2O3 + - id: "s_4169" + - name: "Ala-Leu" + - compartment: "c" + - formula: "C9H18N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: ala_L_ile__L - - chebi: CHEBI:73770 - - metanetx.chemical: MNXM15786 - - sbo: SBO:0000247 + - bigg.metabolite: "ala_L_ile__L" + - chebi: "CHEBI:73770" + - metanetx.chemical: "MNXM15786" + - sbo: "SBO:0000247" - !!omap - - id: s_4170 - - name: Ala-Gly - - compartment: e - - formula: C5H10N2O3 + - id: "s_4170" + - name: "Ala-Gly" + - compartment: "e" + - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: L_alagly - - chebi: CHEBI:73757 - - metanetx.chemical: MNXM15783 - - sbo: SBO:0000247 + - bigg.metabolite: "L_alagly" + - chebi: "CHEBI:73757" + - metanetx.chemical: "MNXM15783" + - sbo: "SBO:0000247" - !!omap - - id: s_4171 - - name: Ala-Gly - - compartment: c - - formula: C5H10N2O3 + - id: "s_4171" + - name: "Ala-Gly" + - compartment: "c" + - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: L_alagly - - chebi: CHEBI:73757 - - metanetx.chemical: MNXM15783 - - sbo: SBO:0000247 + - bigg.metabolite: "L_alagly" + - chebi: "CHEBI:73757" + - metanetx.chemical: "MNXM15783" + - sbo: "SBO:0000247" - !!omap - - id: s_4172 - - name: N-acetyl-L-glutamate - - compartment: e - - formula: C7H9NO5 + - id: "s_4172" + - name: "N-acetyl-L-glutamate" + - compartment: "e" + - formula: "C7H9NO5" - charge: -2 - annotation: !!omap - - bigg.metabolite: acglu - - chebi: CHEBI:44337 - - kegg.compound: C00624 - - metanetx.chemical: MNXM730 - - sbo: SBO:0000247 + - bigg.metabolite: "acglu" + - chebi: "CHEBI:44337" + - kegg.compound: "C00624" + - metanetx.chemical: "MNXM730" + - sbo: "SBO:0000247" - !!omap - - id: s_4173 - - name: N-acetyl-L-glutamate - - compartment: c - - formula: C7H9NO5 + - id: "s_4173" + - name: "N-acetyl-L-glutamate" + - compartment: "c" + - formula: "C7H9NO5" - charge: -2 - annotation: !!omap - - bigg.metabolite: acglu - - chebi: CHEBI:44337 - - kegg.compound: C00624 - - metanetx.chemical: MNXM730 - - sbo: SBO:0000247 + - bigg.metabolite: "acglu" + - chebi: "CHEBI:44337" + - kegg.compound: "C00624" + - metanetx.chemical: "MNXM730" + - sbo: "SBO:0000247" - !!omap - - id: s_4174 - - name: lipoamide - - compartment: e - - formula: C8H15NOS2 + - id: "s_4174" + - name: "lipoamide" + - compartment: "e" + - formula: "C8H15NOS2" - charge: 0 - annotation: !!omap - - bigg.metabolite: lpam - - chebi: CHEBI:17460 - - kegg.compound: C00248 - - metanetx.chemical: MNXM1024 - - sbo: SBO:0000247 + - bigg.metabolite: "lpam" + - chebi: "CHEBI:17460" + - kegg.compound: "C00248" + - metanetx.chemical: "MNXM1024" + - sbo: "SBO:0000247" - !!omap - - id: s_4175 - - name: lipoamide - - compartment: c - - formula: C8H15NOS2 + - id: "s_4175" + - name: "lipoamide" + - compartment: "c" + - formula: "C8H15NOS2" - charge: 0 - annotation: !!omap - - bigg.metabolite: lpam - - chebi: CHEBI:17460 - - kegg.compound: C00248 - - metanetx.chemical: MNXM1024 - - sbo: SBO:0000247 + - bigg.metabolite: "lpam" + - chebi: "CHEBI:17460" + - kegg.compound: "C00248" + - metanetx.chemical: "MNXM1024" + - sbo: "SBO:0000247" - !!omap - - id: s_4176 - - name: L-Methionine S-oxide - - compartment: e - - formula: C5H11NO3S + - id: "s_4176" + - name: "L-Methionine S-oxide" + - compartment: "e" + - formula: "C5H11NO3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: metsox_S__L - - chebi: CHEBI:17016 - - kegg.compound: C02989 - - metanetx.chemical: MNXM2246 - - sbo: SBO:0000247 + - bigg.metabolite: "metsox_S__L" + - chebi: "CHEBI:17016" + - kegg.compound: "C02989" + - metanetx.chemical: "MNXM2246" + - sbo: "SBO:0000247" - !!omap - - id: s_4177 - - name: homogentisate - - compartment: c - - formula: C8H7O4 + - id: "s_4177" + - name: "homogentisate" + - compartment: "c" + - formula: "C8H7O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: hgentis - - chebi: CHEBI:16169 - - kegg.compound: C00544 - - metanetx.chemical: MNXM345 - - sbo: SBO:0000247 + - bigg.metabolite: "hgentis" + - chebi: "CHEBI:16169" + - kegg.compound: "C00544" + - metanetx.chemical: "MNXM345" + - sbo: "SBO:0000247" - !!omap - - id: s_4178 - - name: 4-maleylacetoacetate - - compartment: c - - formula: C8H6O6 + - id: "s_4178" + - name: "4-maleylacetoacetate" + - compartment: "c" + - formula: "C8H6O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: 4mlacac - - chebi: CHEBI:17105 - - kegg.compound: C01036 - - metanetx.chemical: MNXM691 - - sbo: SBO:0000247 + - bigg.metabolite: "4mlacac" + - chebi: "CHEBI:17105" + - kegg.compound: "C01036" + - metanetx.chemical: "MNXM691" + - sbo: "SBO:0000247" - !!omap - - id: s_4179 - - name: 4-fumarylacetoacetate - - compartment: c - - formula: C8H6O6 + - id: "s_4179" + - name: "4-fumarylacetoacetate" + - compartment: "c" + - formula: "C8H6O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: 4fumacac - - chebi: CHEBI:18034 - - kegg.compound: C01061 - - metanetx.chemical: MNXM708 - - sbo: SBO:0000247 + - bigg.metabolite: "4fumacac" + - chebi: "CHEBI:18034" + - kegg.compound: "C01061" + - metanetx.chemical: "MNXM708" + - sbo: "SBO:0000247" - !!omap - - id: s_4180 - - name: L-xylulose - - compartment: c - - formula: C5H10O5 + - id: "s_4180" + - name: "L-xylulose" + - compartment: "c" + - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: xylu__L - - chebi: CHEBI:17140 - - kegg.compound: C00312 - - metanetx.chemical: MNXM597 - - sbo: SBO:0000247 + - bigg.metabolite: "xylu__L" + - chebi: "CHEBI:17140" + - kegg.compound: "C00312" + - metanetx.chemical: "MNXM597" + - sbo: "SBO:0000247" - !!omap - - id: s_4181 - - name: D-arabinitol - - compartment: c - - formula: C5H12O5 + - id: "s_4181" + - name: "D-arabinitol" + - compartment: "c" + - formula: "C5H12O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: abt__D - - chebi: CHEBI:18333 - - kegg.compound: C01904 - - metanetx.chemical: MNXM1018 - - sbo: SBO:0000247 + - bigg.metabolite: "abt__D" + - chebi: "CHEBI:18333" + - kegg.compound: "C01904" + - metanetx.chemical: "MNXM1018" + - sbo: "SBO:0000247" - !!omap - - id: s_4182 - - name: 2-hydroxyglutarate - - compartment: c - - formula: C5H6O5 + - id: "s_4182" + - name: "2-hydroxyglutarate" + - compartment: "c" + - formula: "C5H6O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: 2hog - - chebi: CHEBI:11596 - - kegg.compound: C02630 - - metanetx.chemical: MNXM1210 - - sbo: SBO:0000247 + - bigg.metabolite: "2hog" + - chebi: "CHEBI:11596" + - kegg.compound: "C02630" + - metanetx.chemical: "MNXM1210" + - sbo: "SBO:0000247" - !!omap - - id: s_4183 - - name: propionyl-CoA - - compartment: c - - formula: C24H36N7O17P3S + - id: "s_4183" + - name: "propionyl-CoA" + - compartment: "c" + - formula: "C24H36N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: ppcoa - - chebi: CHEBI:57392 - - kegg.compound: C00100 - - metanetx.chemical: MNXM86 - - sbo: SBO:0000247 + - bigg.metabolite: "ppcoa" + - chebi: "CHEBI:57392" + - kegg.compound: "C00100" + - metanetx.chemical: "MNXM86" + - sbo: "SBO:0000247" - !!omap - - id: s_4184 - - name: 3-oxopropanoate - - compartment: c - - formula: C3H3O3 + - id: "s_4184" + - name: "3-oxopropanoate" + - compartment: "c" + - formula: "C3H3O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: msa - - chebi: CHEBI:33190 - - kegg.compound: C00222 - - metanetx.chemical: MNXM244 - - sbo: SBO:0000247 + - bigg.metabolite: "msa" + - chebi: "CHEBI:33190" + - kegg.compound: "C00222" + - metanetx.chemical: "MNXM244" + - sbo: "SBO:0000247" - !!omap - - id: s_4185 - - name: (R)-2,3-dihydroxy-3-methylbutanoate - - compartment: c - - formula: C5H9O4 + - id: "s_4185" + - name: "(R)-2,3-dihydroxy-3-methylbutanoate" + - compartment: "c" + - formula: "C5H9O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: 23dhmb - - chebi: CHEBI:49072 - - kegg.compound: C04272 - - metanetx.chemical: MNXM114097 - - sbo: SBO:0000247 + - bigg.metabolite: "23dhmb" + - chebi: "CHEBI:49072" + - kegg.compound: "C04272" + - metanetx.chemical: "MNXM114097" + - sbo: "SBO:0000247" - !!omap - - id: s_4186 - - name: 3-hydroxy-3-methyl-2-oxobutanoate - - compartment: c - - formula: C5H7O4 + - id: "s_4186" + - name: "3-hydroxy-3-methyl-2-oxobutanoate" + - compartment: "c" + - formula: "C5H7O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: 3hmoa - - chebi: CHEBI:11812 - - kegg.compound: C04181 - - metanetx.chemical: MNXM1638 - - sbo: SBO:0000247 + - bigg.metabolite: "3hmoa" + - chebi: "CHEBI:11812" + - kegg.compound: "C04181" + - metanetx.chemical: "MNXM1638" + - sbo: "SBO:0000247" - !!omap - - id: s_4187 - - name: 2-acetyllactic acid - - compartment: c - - formula: C5H7O4 + - id: "s_4187" + - name: "2-acetyllactic acid" + - compartment: "c" + - formula: "C5H7O4" - charge: -1 - annotation: !!omap - - chebi: CHEBI:57774 - - kegg.compound: C00900 - - metanetx.chemical: MNXM426 - - sbo: SBO:0000247 + - chebi: "CHEBI:57774" + - kegg.compound: "C00900" + - metanetx.chemical: "MNXM426" + - sbo: "SBO:0000247" - !!omap - - id: s_4188 - - name: (2S)-2-acetolactate - - compartment: c - - formula: C5H7O4 + - id: "s_4188" + - name: "(2S)-2-acetolactate" + - compartment: "c" + - formula: "C5H7O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: alac__S - - chebi: CHEBI:58476 - - kegg.compound: C06010 - - metanetx.chemical: MNXM114079 - - sbo: SBO:0000247 + - bigg.metabolite: "alac__S" + - chebi: "CHEBI:58476" + - kegg.compound: "C06010" + - metanetx.chemical: "MNXM114079" + - sbo: "SBO:0000247" - !!omap - - id: s_4189 - - name: (2R,3S)-3-methylmalate - - compartment: c - - formula: C5H6O5 + - id: "s_4189" + - name: "(2R,3S)-3-methylmalate" + - compartment: "c" + - formula: "C5H6O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: r3mmal - - chebi: CHEBI:58511 - - kegg.compound: C06032 - - metanetx.chemical: MNXM2512 - - sbo: SBO:0000247 + - bigg.metabolite: "r3mmal" + - chebi: "CHEBI:58511" + - kegg.compound: "C06032" + - metanetx.chemical: "MNXM2512" + - sbo: "SBO:0000247" - !!omap - - id: s_4190 - - name: trans-2,cis-9-octadecadienoyl-CoA - - compartment: c - - formula: C39H62N7O17P3S + - id: "s_4190" + - name: "trans-2,cis-9-octadecadienoyl-CoA" + - compartment: "c" + - formula: "C39H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: lnlccoa - - chebi: CHEBI:57383 - - kegg.compound: C02050 - - metanetx.chemical: MNXM638 - - sbo: SBO:0000247 + - bigg.metabolite: "lnlccoa" + - chebi: "CHEBI:57383" + - kegg.compound: "C02050" + - metanetx.chemical: "MNXM638" + - sbo: "SBO:0000247" - !!omap - - id: s_4191 - - name: (9Z,12Z)-octadecadienoate - - compartment: c - - formula: C18H31O2 + - id: "s_4191" + - name: "(9Z,12Z)-octadecadienoate" + - compartment: "c" + - formula: "C18H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: lnlc - - chebi: CHEBI:30245 - - kegg.compound: C01595 - - metanetx.chemical: MNXM293 - - sbo: SBO:0000247 + - bigg.metabolite: "lnlc" + - chebi: "CHEBI:30245" + - kegg.compound: "C01595" + - metanetx.chemical: "MNXM293" + - sbo: "SBO:0000247" - !!omap - - id: s_4192 - - name: stachyose - - compartment: c - - formula: C24H42O21 + - id: "s_4192" + - name: "stachyose" + - compartment: "c" + - formula: "C24H42O21" - charge: 0 - annotation: !!omap - - bigg.metabolite: stys - - chebi: CHEBI:17164 - - kegg.compound: C01613 - - metanetx.chemical: MNXM1503 - - sbo: SBO:0000247 + - bigg.metabolite: "stys" + - chebi: "CHEBI:17164" + - kegg.compound: "C01613" + - metanetx.chemical: "MNXM1503" + - sbo: "SBO:0000247" - !!omap - - id: s_4193 - - name: raffinose - - compartment: c - - formula: C18H32O16 + - id: "s_4193" + - name: "raffinose" + - compartment: "c" + - formula: "C18H32O16" - charge: 0 - annotation: !!omap - - bigg.metabolite: raffin - - chebi: CHEBI:16634 - - kegg.compound: C00492 - - metanetx.chemical: MNXM621 - - sbo: SBO:0000247 + - bigg.metabolite: "raffin" + - chebi: "CHEBI:16634" + - kegg.compound: "C00492" + - metanetx.chemical: "MNXM621" + - sbo: "SBO:0000247" - !!omap - - id: s_4194 - - name: 4-hydroxyphenyl acetate - - compartment: c - - formula: C8H8O3 + - id: "s_4194" + - name: "4-hydroxyphenyl acetate" + - compartment: "c" + - formula: "C8H8O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: 4hphac - - chebi: CHEBI:18101 - - kegg.compound: C00642 - - metanetx.chemical: MNXM3863 - - sbo: SBO:0000247 + - bigg.metabolite: "4hphac" + - chebi: "CHEBI:18101" + - kegg.compound: "C00642" + - metanetx.chemical: "MNXM3863" + - sbo: "SBO:0000247" - !!omap - - id: s_4195 - - name: Hydroquinone - - compartment: c - - formula: C6H6O2 + - id: "s_4195" + - name: "Hydroquinone" + - compartment: "c" + - formula: "C6H6O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: hqn - - chebi: CHEBI:17594 - - kegg.compound: C00530 - - metanetx.chemical: MNXM376 - - sbo: SBO:0000247 + - bigg.metabolite: "hqn" + - chebi: "CHEBI:17594" + - kegg.compound: "C00530" + - metanetx.chemical: "MNXM376" + - sbo: "SBO:0000247" - !!omap - - id: s_4196 - - name: ATP - - compartment: g - - formula: C10H12N5O13P3 + - id: "s_4196" + - name: "ATP" + - compartment: "g" + - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: atp - - chebi: CHEBI:30616 - - kegg.compound: C00002 - - metanetx.chemical: MNXM3 - - sbo: SBO:0000247 + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - - id: s_4197 - - name: Ca(2+) - - compartment: g - - formula: Ca + - id: "s_4197" + - name: "Ca(2+)" + - compartment: "g" + - formula: "Ca" - charge: 2 - annotation: !!omap - - bigg.metabolite: ca2 - - chebi: CHEBI:29108 - - kegg.compound: C00076 - - metanetx.chemical: MNXM128 - - sbo: SBO:0000247 + - bigg.metabolite: "ca2" + - chebi: "CHEBI:29108" + - kegg.compound: "C00076" + - metanetx.chemical: "MNXM128" + - sbo: "SBO:0000247" - !!omap - - id: s_4198 - - name: ADP - - compartment: g - - formula: C10H12N5O10P2 + - id: "s_4198" + - name: "ADP" + - compartment: "g" + - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: adp - - chebi: CHEBI:456216 - - kegg.compound: C00008 - - metanetx.chemical: MNXM7 - - sbo: SBO:0000247 + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - - id: s_4199 - - name: Ca(2+) - - compartment: e - - formula: Ca + - id: "s_4199" + - name: "Ca(2+)" + - compartment: "e" + - formula: "Ca" - charge: 2 - annotation: !!omap - - bigg.metabolite: ca2 - - chebi: CHEBI:29108 - - kegg.compound: C00076 - - metanetx.chemical: MNXM128 - - sbo: SBO:0000247 + - bigg.metabolite: "ca2" + - chebi: "CHEBI:29108" + - kegg.compound: "C00076" + - metanetx.chemical: "MNXM128" + - sbo: "SBO:0000247" - !!omap - - id: s_4200 - - name: chloride - - compartment: e - - formula: Cl + - id: "s_4200" + - name: "chloride" + - compartment: "e" + - formula: "Cl" - charge: -1 - annotation: !!omap - - bigg.metabolite: cl - - chebi: CHEBI:17996 - - kegg.compound: C00698 - - metanetx.chemical: MNXM43 - - sbo: SBO:0000247 + - bigg.metabolite: "cl" + - chebi: "CHEBI:17996" + - kegg.compound: "C00698" + - metanetx.chemical: "MNXM43" + - sbo: "SBO:0000247" - !!omap - - id: s_4201 - - name: Cu2(+) - - compartment: e - - formula: Cu + - id: "s_4201" + - name: "Cu2(+)" + - compartment: "e" + - formula: "Cu" - charge: 2 - annotation: !!omap - - bigg.metabolite: cu2 - - chebi: CHEBI:29036 - - kegg.compound: C00070 - - metanetx.chemical: MNXM632 - - sbo: SBO:0000247 + - bigg.metabolite: "cu2" + - chebi: "CHEBI:29036" + - kegg.compound: "C00070" + - metanetx.chemical: "MNXM632" + - sbo: "SBO:0000247" - !!omap - - id: s_4202 - - name: Mn(2+) - - compartment: e - - formula: Mn + - id: "s_4202" + - name: "Mn(2+)" + - compartment: "e" + - formula: "Mn" - charge: 2 - annotation: !!omap - - bigg.metabolite: mn2 - - chebi: CHEBI:29035 - - kegg.compound: C19610 - - metanetx.chemical: MNXM2255 - - sbo: SBO:0000247 + - bigg.metabolite: "mn2" + - chebi: "CHEBI:29035" + - kegg.compound: "C19610" + - metanetx.chemical: "MNXM2255" + - sbo: "SBO:0000247" - !!omap - - id: s_4203 - - name: Zn(2+) - - compartment: e - - formula: Zn + - id: "s_4203" + - name: "Zn(2+)" + - compartment: "e" + - formula: "Zn" - charge: 2 - annotation: !!omap - - bigg.metabolite: zn2 - - chebi: CHEBI:29105 - - kegg.compound: C00038 - - metanetx.chemical: MNXM149 - - sbo: SBO:0000247 + - bigg.metabolite: "zn2" + - chebi: "CHEBI:29105" + - kegg.compound: "C00038" + - metanetx.chemical: "MNXM149" + - sbo: "SBO:0000247" - !!omap - - id: s_4204 - - name: Mg(2+) - - compartment: e - - formula: Mg + - id: "s_4204" + - name: "Mg(2+)" + - compartment: "e" + - formula: "Mg" - charge: 2 - annotation: !!omap - - bigg.metabolite: mg2 - - chebi: CHEBI:18420 - - kegg.compound: C00305 - - metanetx.chemical: MNXM653 - - sbo: SBO:0000247 + - bigg.metabolite: "mg2" + - chebi: "CHEBI:18420" + - kegg.compound: "C00305" + - metanetx.chemical: "MNXM653" + - sbo: "SBO:0000247" - !!omap - - id: s_4205 - - name: cofactor - - compartment: c + - id: "s_4205" + - name: "cofactor" + - compartment: "c" + - formula: "" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_4206 - - name: ion - - compartment: c + - id: "s_4206" + - name: "ion" + - compartment: "c" + - formula: "" - annotation: !!omap - - sbo: SBO:0000649 + - sbo: "SBO:0000649" - !!omap - - id: s_4207 - - name: trans-4-hydroxy-L-proline - - compartment: c - - formula: C5H9NO3 + - id: "s_4207" + - name: "trans-4-hydroxy-L-proline" + - compartment: "c" + - formula: "C5H9NO3" - charge: 0 - annotation: !!omap - - chebi: CHEBI:18072 - - kegg.compound: C01157 - - metanetx.chemical: MNXM87584 - - sbo: SBO:0000247 + - chebi: "CHEBI:18072" + - kegg.compound: "C01157" + - metanetx.chemical: "MNXM87584" + - sbo: "SBO:0000247" - !!omap - - id: s_4208 - - name: 2,3-dihydroxy-3-methylbutanoate - - compartment: c - - formula: C5H9O4 + - id: "s_4208" + - name: "2,3-dihydroxy-3-methylbutanoate" + - compartment: "c" + - formula: "C5H9O4" - charge: -1 - annotation: !!omap - - chebi: CHEBI:11424 - - kegg.compound: C04039 - - metanetx.chemical: MNXM734 - - sbo: SBO:0000247 + - chebi: "CHEBI:11424" + - kegg.compound: "C04039" + - metanetx.chemical: "MNXM734" + - sbo: "SBO:0000247" - !!omap - - id: s_4209 - - name: Ferrocytochrome b5 - - compartment: erm + - id: "s_4209" + - name: "Ferrocytochrome b5" + - compartment: "erm" + - formula: "" - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_4210 - - name: Ferricytochrome b5 - - compartment: erm + - id: "s_4210" + - name: "Ferricytochrome b5" + - compartment: "erm" + - formula: "" - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_4211 - - name: hexanoyl-CoA - - compartment: m + - id: "s_4211" + - name: "hexanoyl-CoA" + - compartment: "m" + - formula: "" - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_4212 - - name: ethyl hexanoate - - compartment: m - - formula: C8H16O2 + - id: "s_4212" + - name: "ethyl hexanoate" + - compartment: "m" + - formula: "C8H16O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:86055 - - sbo: SBO:0000247 + - chebi: "CHEBI:86055" + - sbo: "SBO:0000247" - !!omap - - id: s_4213 - - name: octanoyl-CoA - - compartment: m - - formula: C29H46N7O17P3S + - id: "s_4213" + - name: "octanoyl-CoA" + - compartment: "m" + - formula: "C29H46N7O17P3S" - charge: -4 - annotation: !!omap - - chebi: CHEBI:15533 - - kegg.compound: C01944 - - sbo: SBO:0000247 + - chebi: "CHEBI:15533" + - kegg.compound: "C01944" + - sbo: "SBO:0000247" - !!omap - - id: s_4214 - - name: ethyl octanoate - - compartment: m - - formula: C10H20O2 + - id: "s_4214" + - name: "ethyl octanoate" + - compartment: "m" + - formula: "C10H20O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:87426 - - kegg.compound: C12292 - - sbo: SBO:0000247 + - chebi: "CHEBI:87426" + - kegg.compound: "C12292" + - sbo: "SBO:0000247" - !!omap - - id: s_4215 - - name: butanoyl-CoA - - compartment: m - - formula: C25H38N7O17P3S + - id: "s_4215" + - name: "butanoyl-CoA" + - compartment: "m" + - formula: "C25H38N7O17P3S" - charge: -4 - annotation: !!omap - - chebi: CHEBI:57371 - - kegg.compound: C00136 - - sbo: SBO:0000247 + - chebi: "CHEBI:57371" + - kegg.compound: "C00136" + - sbo: "SBO:0000247" - !!omap - - id: s_4216 - - name: ethyl butanoate - - compartment: m - - formula: C6H12O2 + - id: "s_4216" + - name: "ethyl butanoate" + - compartment: "m" + - formula: "C6H12O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88764 - - sbo: SBO:0000247 + - chebi: "CHEBI:88764" + - sbo: "SBO:0000247" - !!omap - - id: s_4217 - - name: hexanol - - compartment: m - - formula: C6H14O + - id: "s_4217" + - name: "hexanol" + - compartment: "m" + - formula: "C6H14O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:87393 - - sbo: SBO:0000247 + - chebi: "CHEBI:87393" + - sbo: "SBO:0000247" - !!omap - - id: s_4218 - - name: hexyl acetate - - compartment: m - - formula: C8H16O2 + - id: "s_4218" + - name: "hexyl acetate" + - compartment: "m" + - formula: "C8H16O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:87510 - - sbo: SBO:0000247 + - chebi: "CHEBI:87510" + - sbo: "SBO:0000247" - !!omap - - id: s_4219 - - name: decanoyl-CoA - - compartment: m - - formula: C31H50N7O17P3S + - id: "s_4219" + - name: "decanoyl-CoA" + - compartment: "m" + - formula: "C31H50N7O17P3S" - charge: -4 - annotation: !!omap - - chebi: CHEBI:61430 - - kegg.compound: C05274 - - sbo: SBO:0000247 + - chebi: "CHEBI:61430" + - kegg.compound: "C05274" + - sbo: "SBO:0000247" - !!omap - - id: s_4220 - - name: ethyl decanoate - - compartment: m - - formula: C12H24O2 + - id: "s_4220" + - name: "ethyl decanoate" + - compartment: "m" + - formula: "C12H24O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:87430 - - sbo: SBO:0000247 + - chebi: "CHEBI:87430" + - sbo: "SBO:0000247" - !!omap - - id: s_4221 - - name: ethyl hexanoate - - compartment: c - - formula: C8H16O2 + - id: "s_4221" + - name: "ethyl hexanoate" + - compartment: "c" + - formula: "C8H16O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:86055 - - sbo: SBO:0000247 + - chebi: "CHEBI:86055" + - sbo: "SBO:0000247" - !!omap - - id: s_4222 - - name: ethyl octanoate - - compartment: c - - formula: C10H20O2 + - id: "s_4222" + - name: "ethyl octanoate" + - compartment: "c" + - formula: "C10H20O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:87426 - - kegg.compound: C12292 - - sbo: SBO:0000247 + - chebi: "CHEBI:87426" + - kegg.compound: "C12292" + - sbo: "SBO:0000247" - !!omap - - id: s_4223 - - name: ethyl butanoate - - compartment: c - - formula: C6H12O2 + - id: "s_4223" + - name: "ethyl butanoate" + - compartment: "c" + - formula: "C6H12O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88764 - - sbo: SBO:0000247 + - chebi: "CHEBI:88764" + - sbo: "SBO:0000247" - !!omap - - id: s_4224 - - name: hexyl acetate - - compartment: c - - formula: C8H16O2 + - id: "s_4224" + - name: "hexyl acetate" + - compartment: "c" + - formula: "C8H16O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:87510 - - sbo: SBO:0000247 + - chebi: "CHEBI:87510" + - sbo: "SBO:0000247" - !!omap - - id: s_4225 - - name: ethyl decanoate - - compartment: c - - formula: C12H24O2 + - id: "s_4225" + - name: "ethyl decanoate" + - compartment: "c" + - formula: "C12H24O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:87430 - - sbo: SBO:0000247 + - chebi: "CHEBI:87430" + - sbo: "SBO:0000247" - !!omap - - id: s_4226 - - name: ethyl hexanoate - - compartment: e - - formula: C8H16O2 + - id: "s_4226" + - name: "ethyl hexanoate" + - compartment: "e" + - formula: "C8H16O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:86055 - - sbo: SBO:0000247 + - chebi: "CHEBI:86055" + - sbo: "SBO:0000247" - !!omap - - id: s_4227 - - name: ethyl octanoate - - compartment: e - - formula: C10H20O2 + - id: "s_4227" + - name: "ethyl octanoate" + - compartment: "e" + - formula: "C10H20O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:87426 - - kegg.compound: C12292 - - sbo: SBO:0000247 + - chebi: "CHEBI:87426" + - kegg.compound: "C12292" + - sbo: "SBO:0000247" - !!omap - - id: s_4228 - - name: ethyl butanoate - - compartment: e - - formula: C6H12O2 + - id: "s_4228" + - name: "ethyl butanoate" + - compartment: "e" + - formula: "C6H12O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:88764 - - sbo: SBO:0000247 + - chebi: "CHEBI:88764" + - sbo: "SBO:0000247" - !!omap - - id: s_4229 - - name: hexyl acetate - - compartment: e - - formula: C8H16O2 + - id: "s_4229" + - name: "hexyl acetate" + - compartment: "e" + - formula: "C8H16O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:87510 - - sbo: SBO:0000247 + - chebi: "CHEBI:87510" + - sbo: "SBO:0000247" - !!omap - - id: s_4230 - - name: ethyl decanoate - - compartment: e - - formula: C12H24O2 + - id: "s_4230" + - name: "ethyl decanoate" + - compartment: "e" + - formula: "C12H24O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:87430 - - sbo: SBO:0000247 + - chebi: "CHEBI:87430" + - sbo: "SBO:0000247" - !!omap - - id: s_4231 - - name: ethyl acetate - - compartment: m - - formula: C4H8O2 + - id: "s_4231" + - name: "ethyl acetate" + - compartment: "m" + - formula: "C4H8O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:27750 - - kegg.compound: C00849 - - sbo: SBO:0000247 + - chebi: "CHEBI:27750" + - kegg.compound: "C00849" + - sbo: "SBO:0000247" - !!omap - - id: s_4232 - - name: propanal - - compartment: c - - formula: C3H6O + - id: "s_4232" + - name: "propanal" + - compartment: "c" + - formula: "C3H6O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17153 - - kegg.compound: C00479 - - sbo: SBO:0000247 + - chebi: "CHEBI:17153" + - kegg.compound: "C00479" + - sbo: "SBO:0000247" - !!omap - - id: s_4233 - - name: propanol - - compartment: c - - formula: C3H8O + - id: "s_4233" + - name: "propanol" + - compartment: "c" + - formula: "C3H8O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:28831 - - kegg.compound: C05979 - - sbo: SBO:0000247 + - chebi: "CHEBI:28831" + - kegg.compound: "C05979" + - sbo: "SBO:0000247" - !!omap - - id: s_4234 - - name: propanal - - compartment: m - - formula: C3H6O + - id: "s_4234" + - name: "propanal" + - compartment: "m" + - formula: "C3H6O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17153 - - kegg.compound: C00479 - - sbo: SBO:0000247 + - chebi: "CHEBI:17153" + - kegg.compound: "C00479" + - sbo: "SBO:0000247" - !!omap - - id: s_4235 - - name: propanol - - compartment: m - - formula: C3H8O + - id: "s_4235" + - name: "propanol" + - compartment: "m" + - formula: "C3H8O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:28831 - - kegg.compound: C05979 - - sbo: SBO:0000247 + - chebi: "CHEBI:28831" + - kegg.compound: "C05979" + - sbo: "SBO:0000247" - !!omap - - id: s_4236 - - name: propanal - - compartment: e - - formula: C3H6O + - id: "s_4236" + - name: "propanal" + - compartment: "e" + - formula: "C3H6O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:17153 - - kegg.compound: C00479 - - sbo: SBO:0000247 + - chebi: "CHEBI:17153" + - kegg.compound: "C00479" + - sbo: "SBO:0000247" - !!omap - - id: s_4237 - - name: propanol - - compartment: e - - formula: C3H8O + - id: "s_4237" + - name: "propanol" + - compartment: "e" + - formula: "C3H8O" - charge: 0 - annotation: !!omap - - chebi: CHEBI:28831 - - kegg.compound: C05979 - - sbo: SBO:0000247 + - chebi: "CHEBI:28831" + - kegg.compound: "C05979" + - sbo: "SBO:0000247" - !!omap - - id: s_4238 - - name: methional - - compartment: c - - formula: C4H8OS + - id: "s_4238" + - name: "methional" + - compartment: "c" + - formula: "C4H8OS" - charge: 0 - annotation: !!omap - - chebi: CHEBI:49017 - - sbo: SBO:0000247 + - chebi: "CHEBI:49017" + - sbo: "SBO:0000247" - !!omap - - id: s_4239 - - name: methionol - - compartment: c - - formula: C4H10OS + - id: "s_4239" + - name: "methionol" + - compartment: "c" + - formula: "C4H10OS" - charge: 0 - annotation: !!omap - - chebi: CHEBI:49019 - - sbo: SBO:0000247 + - chebi: "CHEBI:49019" + - sbo: "SBO:0000247" - !!omap - - id: s_4240 - - name: methional - - compartment: m - - formula: C4H8OS + - id: "s_4240" + - name: "methional" + - compartment: "m" + - formula: "C4H8OS" - charge: 0 - annotation: !!omap - - chebi: CHEBI:49017 - - sbo: SBO:0000247 + - chebi: "CHEBI:49017" + - sbo: "SBO:0000247" - !!omap - - id: s_4241 - - name: methionol - - compartment: m - - formula: C4H10OS + - id: "s_4241" + - name: "methionol" + - compartment: "m" + - formula: "C4H10OS" - charge: 0 - annotation: !!omap - - chebi: CHEBI:49019 - - sbo: SBO:0000247 + - chebi: "CHEBI:49019" + - sbo: "SBO:0000247" - !!omap - - id: s_4242 - - name: methional - - compartment: e - - formula: C4H8OS + - id: "s_4242" + - name: "methional" + - compartment: "e" + - formula: "C4H8OS" - charge: 0 - annotation: !!omap - - chebi: CHEBI:49017 - - sbo: SBO:0000247 + - chebi: "CHEBI:49017" + - sbo: "SBO:0000247" - !!omap - - id: s_4243 - - name: methionol - - compartment: e - - formula: C4H10OS + - id: "s_4243" + - name: "methionol" + - compartment: "e" + - formula: "C4H10OS" - charge: 0 - annotation: !!omap - - chebi: CHEBI:49019 - - sbo: SBO:0000247 + - chebi: "CHEBI:49019" + - sbo: "SBO:0000247" - !!omap - - id: s_4244 - - name: (4-hydroxyphenyl)acetaldehyde - - compartment: c - - formula: C8H8O2 + - id: "s_4244" + - name: "(4-hydroxyphenyl)acetaldehyde" + - compartment: "c" + - formula: "C8H8O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:15621 - - sbo: SBO:0000247 + - chebi: "CHEBI:15621" + - sbo: "SBO:0000247" - !!omap - - id: s_4245 - - name: tyrosol - - compartment: c - - formula: C8H10O2 + - id: "s_4245" + - name: "tyrosol" + - compartment: "c" + - formula: "C8H10O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:1879 - - kegg.compound: C06044 - - sbo: SBO:0000247 + - chebi: "CHEBI:1879" + - kegg.compound: "C06044" + - sbo: "SBO:0000247" - !!omap - - id: s_4246 - - name: (4-hydroxyphenyl)acetaldehyde - - compartment: m - - formula: C8H8O2 + - id: "s_4246" + - name: "(4-hydroxyphenyl)acetaldehyde" + - compartment: "m" + - formula: "C8H8O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:15621 - - sbo: SBO:0000247 + - chebi: "CHEBI:15621" + - sbo: "SBO:0000247" - !!omap - - id: s_4247 - - name: tyrosol - - compartment: m - - formula: C8H10O2 + - id: "s_4247" + - name: "tyrosol" + - compartment: "m" + - formula: "C8H10O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:1879 - - kegg.compound: C06044 - - sbo: SBO:0000247 + - chebi: "CHEBI:1879" + - kegg.compound: "C06044" + - sbo: "SBO:0000247" - !!omap - - id: s_4248 - - name: (4-hydroxyphenyl)acetaldehyde - - compartment: e - - formula: C8H8O2 + - id: "s_4248" + - name: "(4-hydroxyphenyl)acetaldehyde" + - compartment: "e" + - formula: "C8H8O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:15621 - - sbo: SBO:0000247 + - chebi: "CHEBI:15621" + - sbo: "SBO:0000247" - !!omap - - id: s_4249 - - name: tyrosol - - compartment: e - - formula: C8H10O2 + - id: "s_4249" + - name: "tyrosol" + - compartment: "e" + - formula: "C8H10O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:1879 - - kegg.compound: C06044 - - sbo: SBO:0000247 + - chebi: "CHEBI:1879" + - kegg.compound: "C06044" + - sbo: "SBO:0000247" - !!omap - - id: s_4250 - - name: propionate - - compartment: c - - formula: C3H6O2 + - id: "s_4250" + - name: "propionate" + - compartment: "c" + - formula: "C3H6O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:30768 - - kegg.compound: C00163 - - sbo: SBO:0000247 + - chebi: "CHEBI:30768" + - kegg.compound: "C00163" + - sbo: "SBO:0000247" - !!omap - - id: s_4251 - - name: propionate - - compartment: p - - formula: C3H6O2 + - id: "s_4251" + - name: "propionate" + - compartment: "p" + - formula: "C3H6O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:30768 - - kegg.compound: C00163 - - sbo: SBO:0000247 + - chebi: "CHEBI:30768" + - kegg.compound: "C00163" + - sbo: "SBO:0000247" - !!omap - - id: s_4252 - - name: propionyl-CoA - - compartment: p - - formula: C24H36N7O17P3S + - id: "s_4252" + - name: "propionyl-CoA" + - compartment: "p" + - formula: "C24H36N7O17P3S" - charge: -4 - annotation: !!omap - - chebi: CHEBI:57386 - - kegg.compound: C00100 - - sbo: SBO:0000247 + - chebi: "CHEBI:57386" + - kegg.compound: "C00100" + - sbo: "SBO:0000247" - !!omap - - id: s_4253 - - name: ethyl propionate - - compartment: m - - formula: C5H10O2 + - id: "s_4253" + - name: "ethyl propionate" + - compartment: "m" + - formula: "C5H10O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:41330 - - sbo: SBO:0000247 + - chebi: "CHEBI:41330" + - sbo: "SBO:0000247" - !!omap - - id: s_4254 - - name: tyrosyl acetate - - compartment: c - - formula: C10H12O3 + - id: "s_4254" + - name: "tyrosyl acetate" + - compartment: "c" + - formula: "C10H12O3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_4255 - - name: tyrosyl acetate - - compartment: e - - formula: C10H12O3 + - id: "s_4255" + - name: "tyrosyl acetate" + - compartment: "e" + - formula: "C10H12O3" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_4256 - - name: methionyl acetate - - compartment: c - - formula: C6H12O2S + - id: "s_4256" + - name: "methionyl acetate" + - compartment: "c" + - formula: "C6H12O2S" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_4257 - - name: methionyl acetate - - compartment: e - - formula: C6H12O2S + - id: "s_4257" + - name: "methionyl acetate" + - compartment: "e" + - formula: "C6H12O2S" - charge: 0 - annotation: !!omap - - sbo: SBO:0000247 + - sbo: "SBO:0000247" - !!omap - - id: s_4258 - - name: propyl acetate - - compartment: c - - formula: C5H10O2 + - id: "s_4258" + - name: "propyl acetate" + - compartment: "c" + - formula: "C5H10O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:40116 - - sbo: SBO:0000247 + - chebi: "CHEBI:40116" + - sbo: "SBO:0000247" - !!omap - - id: s_4259 - - name: propyl acetate - - compartment: e - - formula: C5H10O2 + - id: "s_4259" + - name: "propyl acetate" + - compartment: "e" + - formula: "C5H10O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:40116 - - sbo: SBO:0000247 + - chebi: "CHEBI:40116" + - sbo: "SBO:0000247" - !!omap - - id: s_4261 - - name: ethyl propionate - - compartment: c - - formula: C5H10O2 + - id: "s_4261" + - name: "ethyl propionate" + - compartment: "c" + - formula: "C5H10O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:41330 - - sbo: SBO:0000247 + - chebi: "CHEBI:41330" + - sbo: "SBO:0000247" - !!omap - - id: s_4262 - - name: ethyl propionate - - compartment: e - - formula: C5H10O2 + - id: "s_4262" + - name: "ethyl propionate" + - compartment: "e" + - formula: "C5H10O2" - charge: 0 - annotation: !!omap - - chebi: CHEBI:41330 - - sbo: SBO:0000247 + - chebi: "CHEBI:41330" + - sbo: "SBO:0000247" - reactions: - !!omap - - id: r_0001 - - name: (R)-lactate:ferricytochrome-c 2-oxidoreductase + - id: "r_0001" + - name: "(R)-lactate:ferricytochrome-c 2-oxidoreductase" - metabolites: !!omap - s_0025: -1 - s_0709: -2 @@ -29814,22 +29841,22 @@ - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YDL174C and YEL039C) or (YDL174C and YJR048W) or (YEL039C and YEL071W) or (YEL071W and YJR048W) + - gene_reaction_rule: "(YDL174C and YEL039C) or (YDL174C and YJR048W) or (YEL039C and YEL071W) or (YEL071W and YJR048W)" - subsystem: - - sce00620 Pyruvate metabolism - - sce00920 Sulfur metabolism + - "sce00620 Pyruvate metabolism" + - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: - - 1.1.2.4 - - 1.1.99.- - - bigg.reaction: D_LACDcm - - kegg.reaction: R00197 - - metanetx.reaction: MNXR138960 - - sbo: SBO:0000176 + - "1.1.2.4" + - "1.1.99.-" + - bigg.reaction: "D_LACDcm" + - kegg.reaction: "R00197" + - metanetx.reaction: "MNXR138960" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0002 - - name: (R)-lactate:ferricytochrome-c 2-oxidoreductase + - id: "r_0002" + - name: "(R)-lactate:ferricytochrome-c 2-oxidoreductase" - metabolites: !!omap - s_0027: -1 - s_0709: -2 @@ -29837,22 +29864,22 @@ - s_1401: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YDL178W and YEL039C) or (YDL178W and YJR048W) + - gene_reaction_rule: "(YDL178W and YEL039C) or (YDL178W and YJR048W)" - subsystem: - - sce00620 Pyruvate metabolism - - sce00920 Sulfur metabolism + - "sce00620 Pyruvate metabolism" + - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: - - 1.1.2.4 - - 1.1.99.- - - bigg.reaction: D_LACDm - - kegg.reaction: R00197 - - metanetx.reaction: MNXR138960 - - sbo: SBO:0000176 + - "1.1.2.4" + - "1.1.99.-" + - bigg.reaction: "D_LACDm" + - kegg.reaction: "R00197" + - metanetx.reaction: "MNXR138960" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0003 - - name: (R,R)-butanediol dehydrogenase + - id: "r_0003" + - name: "(R,R)-butanediol dehydrogenase" - metabolites: !!omap - s_0020: 1 - s_0035: -1 @@ -29861,18 +29888,18 @@ - s_1203: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL060W - - subsystem: sce00650 Butanoate metabolism + - gene_reaction_rule: "YAL060W" + - subsystem: "sce00650 Butanoate metabolism" - annotation: !!omap - - ec-code: 1.1.1.4 - - bigg.reaction: BTDD_RR - - kegg.reaction: R02946 - - metanetx.reaction: MNXR107844 - - sbo: SBO:0000176 + - ec-code: "1.1.1.4" + - bigg.reaction: "BTDD_RR" + - kegg.reaction: "R02946" + - metanetx.reaction: "MNXR107844" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0004 - - name: (S)-lactate:ferricytochrome-c 2-oxidoreductase + - id: "r_0004" + - name: "(S)-lactate:ferricytochrome-c 2-oxidoreductase" - metabolites: !!omap - s_0063: -1 - s_0709: -2 @@ -29880,20 +29907,20 @@ - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YEL039C and YML054C) or (YJR048W and YML054C) + - gene_reaction_rule: "(YEL039C and YML054C) or (YJR048W and YML054C)" - subsystem: - - sce00620 Pyruvate metabolism - - sce00920 Sulfur metabolism + - "sce00620 Pyruvate metabolism" + - "sce00920 Sulfur metabolism" - annotation: !!omap - - ec-code: 1.1.2.3 - - bigg.reaction: L_LACD2cm - - kegg.reaction: R00196 - - metanetx.reaction: MNXR138959 - - sbo: SBO:0000176 + - ec-code: "1.1.2.3" + - bigg.reaction: "L_LACD2cm" + - kegg.reaction: "R00196" + - metanetx.reaction: "MNXR138959" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0005 - - name: 1,3-beta-glucan synthase + - id: "r_0005" + - name: "1,3-beta-glucan synthase" - metabolites: !!omap - s_0001: 1 - s_0794: 1 @@ -29901,20 +29928,20 @@ - s_1543: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR032W or YMR306W or (YLR342W and YCR034W) + - gene_reaction_rule: "YGR032W or YMR306W or (YLR342W and YCR034W)" - subsystem: - - sce00500 Starch and sucrose metabolism - - sce04011 MAPK signaling pathway - yeast + - "sce00500 Starch and sucrose metabolism" + - "sce04011 MAPK signaling pathway - yeast" - annotation: !!omap - - ec-code: 2.4.1.34 - - kegg.reaction: R03118 - - metanetx.reaction: MNXR143499 - - pmid: 7649185 - - sbo: SBO:0000176 + - ec-code: "2.4.1.34" + - kegg.reaction: "R03118" + - metanetx.reaction: "MNXR143499" + - pmid: "7649185" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0006 - - name: 1,6-beta-glucan synthase + - id: "r_0006" + - name: "1,6-beta-glucan synthase" - metabolites: !!omap - s_0004: 1 - s_0794: 1 @@ -29922,34 +29949,34 @@ - s_1543: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR143W or YPR159W + - gene_reaction_rule: "YGR143W or YPR159W" - annotation: !!omap - - pmid: 8321211 - - sbo: SBO:0000176 + - pmid: "8321211" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0007 - - name: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino)imidazole-4-carboxamide isomerase + - id: "r_0007" + - name: "1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino)imidazole-4-carboxamide isomerase" - metabolites: !!omap - s_0077: -1 - s_0312: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL020C + - gene_reaction_rule: "YIL020C" - subsystem: - - sce00340 Histidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00340 Histidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 5.3.1.16 - - bigg.reaction: PRMICI - - kegg.reaction: R04640 - - metanetx.reaction: MNXR103169 - - sbo: SBO:0000176 + - ec-code: "5.3.1.16" + - bigg.reaction: "PRMICI" + - kegg.reaction: "R04640" + - metanetx.reaction: "MNXR103169" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0012 - - name: 1-pyrroline-5-carboxylate dehydrogenase + - id: "r_0012" + - name: "1-pyrroline-5-carboxylate dehydrogenase" - metabolites: !!omap - s_0119: -1 - s_0799: 1 @@ -29959,21 +29986,21 @@ - s_1205: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR037W + - gene_reaction_rule: "YHR037W" - subsystem: - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00330 Arginine and proline metabolism + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00330 Arginine and proline metabolism" - annotation: !!omap - - ec-code: 1.2.1.88 - - bigg.reaction: P5CDm - - kegg.reaction: R00707 - - metanetx.reaction: MNXR102301 - - pmid: 387737 - - sbo: SBO:0000176 + - ec-code: "1.2.1.88" + - bigg.reaction: "P5CDm" + - kegg.reaction: "R00707" + - metanetx.reaction: "MNXR102301" + - pmid: "387737" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0013 - - name: 2,3-diketo-5-methylthio-1-phosphopentane degradation reaction + - id: "r_0013" + - name: "2,3-diketo-5-methylthio-1-phosphopentane degradation reaction" - metabolites: !!omap - s_0294: 1 - s_0311: -1 @@ -29983,18 +30010,18 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YEL038W and YMR009W - - subsystem: sce00270 Cysteine and methionine metabolism + - gene_reaction_rule: "YEL038W and YMR009W" + - subsystem: "sce00270 Cysteine and methionine metabolism" - annotation: !!omap - ec-code: - - 1.13.11.54 - - 3.1.3.77 - - pmid: 14506228 - - sbo: SBO:0000176 + - "1.13.11.54" + - "3.1.3.77" + - pmid: "14506228" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0014 - - name: 2,5-diamino-6-ribitylamino-4(3H)-pyrimidinone 5'-phosphate deaminase + - id: "r_0014" + - name: "2,5-diamino-6-ribitylamino-4(3H)-pyrimidinone 5'-phosphate deaminase" - metabolites: !!omap - s_0142: -1 - s_0313: 1 @@ -30003,21 +30030,21 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL066C - - subsystem: sce00740 Riboflavin metabolism + - gene_reaction_rule: "YOL066C" + - subsystem: "sce00740 Riboflavin metabolism" - annotation: !!omap - ec-code: - - 3.5.4.26 - - 5.4.99.28 - - bigg.reaction: DRTPPD - - kegg.reaction: R09377 - - metanetx.reaction: MNXR112805 - - pmid: 9068650 - - sbo: SBO:0000176 + - "3.5.4.26" + - "5.4.99.28" + - bigg.reaction: "DRTPPD" + - kegg.reaction: "R09377" + - metanetx.reaction: "MNXR112805" + - pmid: "9068650" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0015 - - name: 2,5-diamino-6-ribosylamino-4(3H)-pyrimidinone 5'-phosphate reductase (NADPH) + - id: "r_0015" + - name: "2,5-diamino-6-ribosylamino-4(3H)-pyrimidinone 5'-phosphate reductase (NADPH)" - metabolites: !!omap - s_0141: -1 - s_0142: 1 @@ -30026,18 +30053,18 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR153W - - subsystem: sce00740 Riboflavin metabolism + - gene_reaction_rule: "YBR153W" + - subsystem: "sce00740 Riboflavin metabolism" - annotation: !!omap - - ec-code: 1.1.1.302 - - kegg.reaction: R09376 - - metanetx.reaction: MNXR112804 - - pmid: 9068650 - - sbo: SBO:0000176 + - ec-code: "1.1.1.302" + - kegg.reaction: "R09376" + - metanetx.reaction: "MNXR112804" + - pmid: "9068650" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0016 - - name: 2-aceto-2-hydroxybutanoate synthase + - id: "r_0016" + - name: "2-aceto-2-hydroxybutanoate synthase" - metabolites: !!omap - s_0039: 1 - s_0179: -1 @@ -30046,27 +30073,27 @@ - s_1401: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YCL009C and YMR108W) or YMR108W + - gene_reaction_rule: "(YCL009C and YMR108W) or YMR108W" - subsystem: - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00650 Butanoate metabolism - - sce00660 C5-Branched dibasic acid metabolism - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00650 Butanoate metabolism" + - "sce00660 C5-Branched dibasic acid metabolism" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.2.1.6 - - bigg.reaction: ACHBSm - - kegg.reaction: R08648 - - metanetx.reaction: MNXR95260 - - pmid: 8972574 - - sbo: SBO:0000176 + - ec-code: "2.2.1.6" + - bigg.reaction: "ACHBSm" + - kegg.reaction: "R08648" + - metanetx.reaction: "MNXR95260" + - pmid: "8972574" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0017 - - name: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase + - id: "r_0017" + - name: "2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase" - metabolites: !!omap - s_0006: 1 - s_0148: -1 @@ -30075,20 +30102,20 @@ - s_0799: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL256W - - subsystem: sce00790 Folate biosynthesis + - gene_reaction_rule: "YNL256W" + - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: - - 2.5.1.15 - - 2.7.6.3 - - 4.1.2.25 - - kegg.reaction: R03503 - - metanetx.reaction: MNXR100694 - - sbo: SBO:0000176 + - "2.5.1.15" + - "2.7.6.3" + - "4.1.2.25" + - kegg.reaction: "R03503" + - metanetx.reaction: "MNXR100694" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0018 - - name: 2-aminoadipate transaminase + - id: "r_0018" + - name: "2-aminoadipate transaminase" - metabolites: !!omap - s_0176: -1 - s_0180: 1 @@ -30096,35 +30123,35 @@ - s_0991: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER152C or YGL202W or YJL060W + - gene_reaction_rule: "YER152C or YGL202W or YJL060W" - subsystem: - - sce00130 Ubiquinone and other terpenoid-quinone biosynthesis - - sce00270 Cysteine and methionine metabolism - - sce00300 Lysine biosynthesis - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00380 Tryptophan metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" + - "sce00270 Cysteine and methionine metabolism" + - "sce00300 Lysine biosynthesis" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00380 Tryptophan metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 2.6.1.39 - - 2.6.1.57 - - 2.6.1.7 - - bigg.reaction: AATA - - kegg.reaction: R01939 - - metanetx.reaction: MNXR95160 + - "2.6.1.39" + - "2.6.1.57" + - "2.6.1.7" + - bigg.reaction: "AATA" + - kegg.reaction: "R01939" + - metanetx.reaction: "MNXR95160" - pmid: - - 10714900 - - 19342587 - - sbo: SBO:0000176 + - "10714900" + - "19342587" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0019 - - name: 2-dehydropantoate 2-reductase + - id: "r_0019" + - name: "2-dehydropantoate 2-reductase" - metabolites: !!omap - s_0030: 1 - s_0149: -1 @@ -30133,20 +30160,20 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR063C + - gene_reaction_rule: "YHR063C" - subsystem: - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 1.1.1.169 - - bigg.reaction: DPR - - kegg.reaction: R02472 - - metanetx.reaction: MNXR97779 - - sbo: SBO:0000176 + - ec-code: "1.1.1.169" + - bigg.reaction: "DPR" + - kegg.reaction: "R02472" + - metanetx.reaction: "MNXR97779" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0020 - - name: 2-deoxy-D-arabino-heptulosonate 7-phosphate synthetase + - id: "r_0020" + - name: "2-deoxy-D-arabino-heptulosonate 7-phosphate synthetase" - metabolites: !!omap - s_0350: 1 - s_0552: -1 @@ -30155,22 +30182,22 @@ - s_1361: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR035W or YBR249C + - gene_reaction_rule: "YDR035W or YBR249C" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.5.1.54 - - bigg.reaction: DDPAm - - kegg.reaction: R01826 - - metanetx.reaction: MNXR97218 - - sbo: SBO:0000176 + - ec-code: "2.5.1.54" + - bigg.reaction: "DDPAm" + - kegg.reaction: "R01826" + - metanetx.reaction: "MNXR97218" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0021 - - name: 2-hexaprenyl-6-methoxy-1,4-benzoquinone methyltransferase + - id: "r_0021" + - name: "2-hexaprenyl-6-methoxy-1,4-benzoquinone methyltransferase" - metabolites: !!omap - s_0155: -1 - s_0156: 1 @@ -30179,26 +30206,26 @@ - s_1419: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C + - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - subsystem: - - sce00130 Ubiquinone and other terpenoid-quinone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 1.14.13.- - - 2.1.1.114 - - 2.1.1.201 - - 2.1.1.64 - - 2.7.-.- - - bigg.reaction: 2HPMBQMTm - - kegg.reaction: R04983 - - metanetx.reaction: MNXR109269 - - pmid: 15792955 - - sbo: SBO:0000176 + - "1.14.13.-" + - "2.1.1.114" + - "2.1.1.201" + - "2.1.1.64" + - "2.7.-.-" + - bigg.reaction: "2HPMBQMTm" + - kegg.reaction: "R04983" + - metanetx.reaction: "MNXR109269" + - pmid: "15792955" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0022 - - name: 2-hexaprenyl-6-methoxyphenol monooxygenase + - id: "r_0022" + - name: "2-hexaprenyl-6-methoxyphenol monooxygenase" - metabolites: !!omap - s_0155: 1 - s_0157: -1 @@ -30206,49 +30233,49 @@ - s_1278: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C + - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - subsystem: - - sce00130 Ubiquinone and other terpenoid-quinone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 1.14.13.- - - 2.1.1.114 - - 2.1.1.201 - - 2.1.1.64 - - 2.7.-.- - - bigg.reaction: 2HP6MPMOm - - kegg.reaction: R04982 - - metanetx.reaction: MNXR109268 - - pmid: 15792955 - - sbo: SBO:0000176 + - "1.14.13.-" + - "2.1.1.114" + - "2.1.1.201" + - "2.1.1.64" + - "2.7.-.-" + - bigg.reaction: "2HP6MPMOm" + - kegg.reaction: "R04982" + - metanetx.reaction: "MNXR109268" + - pmid: "15792955" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0023 - - name: 2-isopropylmalate hydratase + - id: "r_0023" + - name: "2-isopropylmalate hydratase" - metabolites: !!omap - s_0162: 1 - s_0165: -1 - s_0803: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL009C + - gene_reaction_rule: "YGL009C" - subsystem: - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.33 - - bigg.reaction: IPPMIb - - kegg.reaction: R03968 - - metanetx.reaction: MNXR100826 - - pmid: 3071717 - - sbo: SBO:0000176 + - ec-code: "4.2.1.33" + - bigg.reaction: "IPPMIb" + - kegg.reaction: "R03968" + - metanetx.reaction: "MNXR100826" + - pmid: "3071717" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0024 - - name: 2-isopropylmalate synthase + - id: "r_0024" + - name: "2-isopropylmalate synthase" - metabolites: !!omap - s_0162: 1 - s_0232: -1 @@ -30258,24 +30285,24 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL104C or YOR108W + - gene_reaction_rule: "YNL104C or YOR108W" - subsystem: - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.3.3.13 - - bigg.reaction: IPPS - - kegg.reaction: R01213 - - metanetx.reaction: MNXR100879 - - pmid: 6090272 - - sbo: SBO:0000176 + - ec-code: "2.3.3.13" + - bigg.reaction: "IPPS" + - kegg.reaction: "R01213" + - metanetx.reaction: "MNXR100879" + - pmid: "6090272" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0025 - - name: 2-isopropylmalate synthase + - id: "r_0025" + - name: "2-isopropylmalate synthase" - metabolites: !!omap - s_0164: 1 - s_0233: -1 @@ -30285,24 +30312,24 @@ - s_0807: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL104C + - gene_reaction_rule: "YNL104C" - subsystem: - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.3.3.13 - - bigg.reaction: IPPSm - - kegg.reaction: R01213 - - metanetx.reaction: MNXR100879 - - pmid: 6090272 - - sbo: SBO:0000176 + - ec-code: "2.3.3.13" + - bigg.reaction: "IPPSm" + - kegg.reaction: "R01213" + - metanetx.reaction: "MNXR100879" + - pmid: "6090272" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0026 - - name: 2-keto-4-methylthiobutyrate transamination + - id: "r_0026" + - name: "2-keto-4-methylthiobutyrate transamination" - metabolites: !!omap - s_0180: 1 - s_0294: -1 @@ -30310,38 +30337,38 @@ - s_1029: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR208W or YJR148W or YGL202W or YHR137W + - gene_reaction_rule: "YHR208W or YJR148W or YGL202W or YHR137W" - annotation: !!omap - - kegg.reaction: R07396 - - metanetx.reaction: MNXR95923 - - pmid: 14506228 - - sbo: SBO:0000176 + - kegg.reaction: "R07396" + - metanetx.reaction: "MNXR95923" + - pmid: "14506228" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0027 - - name: 2-methylcitrate dehydratase + - id: "r_0027" + - name: "2-methylcitrate dehydratase" - metabolites: !!omap - s_0454: 1 - s_0807: 1 - s_0834: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR234W + - gene_reaction_rule: "YDR234W" - subsystem: - - sce00300 Lysine biosynthesis - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00300 Lysine biosynthesis" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.36 - - kegg.reaction: R03444 - - metanetx.reaction: MNXR141287 - - pmid: 5908136 - - sbo: SBO:0000176 + - ec-code: "4.2.1.36" + - kegg.reaction: "R03444" + - metanetx.reaction: "MNXR141287" + - pmid: "5908136" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0028 - - name: 2-methylcitrate synthase + - id: "r_0028" + - name: "2-methylcitrate synthase" - metabolites: !!omap - s_0174: 1 - s_0532: 1 @@ -30351,26 +30378,26 @@ - s_1382: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR001W + - gene_reaction_rule: "YPR001W" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.3.3.1 - - bigg.reaction: MCITSm - - kegg.reaction: R00931 - - metanetx.reaction: MNXR101417 - - pmid: 16332871 - - sbo: SBO:0000176 + - ec-code: "2.3.3.1" + - bigg.reaction: "MCITSm" + - kegg.reaction: "R00931" + - metanetx.reaction: "MNXR101417" + - pmid: "16332871" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0029 - - name: 2-oxo-4-methyl-3-carboxypentanoate decarboxylation + - id: "r_0029" + - name: "2-oxo-4-methyl-3-carboxypentanoate decarboxylation" - metabolites: !!omap - s_0010: -1 - s_0291: 1 @@ -30378,26 +30405,26 @@ - s_0794: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR148W + - gene_reaction_rule: "YJR148W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.42 - - bigg.reaction: OMCDC - - kegg.reaction: R01652 - - metanetx.reaction: MNXR102180 - - sbo: SBO:0000176 + - ec-code: "2.6.1.42" + - bigg.reaction: "OMCDC" + - kegg.reaction: "R01652" + - metanetx.reaction: "MNXR102180" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0030 - - name: 2-oxo-4-methyl-3-carboxypentanoate decarboxylation + - id: "r_0030" + - name: "2-oxo-4-methyl-3-carboxypentanoate decarboxylation" - metabolites: !!omap - s_0011: -1 - s_0292: 1 @@ -30405,26 +30432,26 @@ - s_0799: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR208W + - gene_reaction_rule: "YHR208W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.42 - - bigg.reaction: OMCDCm - - kegg.reaction: R01652 - - metanetx.reaction: MNXR102180 - - sbo: SBO:0000176 + - ec-code: "2.6.1.42" + - bigg.reaction: "OMCDCm" + - kegg.reaction: "R01652" + - metanetx.reaction: "MNXR102180" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0032 - - name: 3',5'-bisphosphate nucleotidase + - id: "r_0032" + - name: "3',5'-bisphosphate nucleotidase" - metabolites: !!omap - s_0390: -1 - s_0423: 1 @@ -30432,21 +30459,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL064C + - gene_reaction_rule: "YOL064C" - subsystem: - - sce00920 Sulfur metabolism - - sce01130 Biosynthesis of antibiotics + - "sce00920 Sulfur metabolism" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 3.1.3.7 - - bigg.reaction: BPNT - - kegg.reaction: R00188 - - metanetx.reaction: MNXR96321 - - pmid: 7809627 - - sbo: SBO:0000176 + - ec-code: "3.1.3.7" + - bigg.reaction: "BPNT" + - kegg.reaction: "R00188" + - metanetx.reaction: "MNXR96321" + - pmid: "7809627" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0033 - - name: 3',5'-cyclic-nucleotide phosphodiesterase + - id: "r_0033" + - name: "3',5'-cyclic-nucleotide phosphodiesterase" - metabolites: !!omap - s_0192: -1 - s_0423: 1 @@ -30454,20 +30481,20 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL248W or YOR360C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YGL248W or YOR360C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: - - 3.1.4.17 - - 3.1.4.53 - - bigg.reaction: PDE1 - - kegg.reaction: R00191 - - metanetx.reaction: MNXR95886 - - sbo: SBO:0000176 + - "3.1.4.17" + - "3.1.4.53" + - bigg.reaction: "PDE1" + - kegg.reaction: "R00191" + - metanetx.reaction: "MNXR95886" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0034 - - name: 3',5'-cyclic-nucleotide phosphodiesterase + - id: "r_0034" + - name: "3',5'-cyclic-nucleotide phosphodiesterase" - metabolites: !!omap - s_0194: -1 - s_0584: 1 @@ -30475,17 +30502,17 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR360C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YOR360C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 3.1.4.53 - - bigg.reaction: PDE2 - - metanetx.reaction: MNXR136084 - - sbo: SBO:0000176 + - ec-code: "3.1.4.53" + - bigg.reaction: "PDE2" + - metanetx.reaction: "MNXR136084" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0035 - - name: 3',5'-cyclic-nucleotide phosphodiesterase + - id: "r_0035" + - name: "3',5'-cyclic-nucleotide phosphodiesterase" - metabolites: !!omap - s_0196: -1 - s_0794: 1 @@ -30493,17 +30520,17 @@ - s_0849: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR360C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YOR360C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 3.1.4.53 - - bigg.reaction: PDE3 - - metanetx.reaction: MNXR136083 - - sbo: SBO:0000176 + - ec-code: "3.1.4.53" + - bigg.reaction: "PDE3" + - metanetx.reaction: "MNXR136083" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0036 - - name: 3',5'-cyclic-nucleotide phosphodiesterase + - id: "r_0036" + - name: "3',5'-cyclic-nucleotide phosphodiesterase" - metabolites: !!omap - s_0195: -1 - s_0782: 1 @@ -30511,18 +30538,18 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR360C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YOR360C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 3.1.4.53 - - bigg.reaction: PDE4 - - kegg.reaction: R01234 - - metanetx.reaction: MNXR100078 - - sbo: SBO:0000176 + - ec-code: "3.1.4.53" + - bigg.reaction: "PDE4" + - kegg.reaction: "R01234" + - metanetx.reaction: "MNXR100078" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0037 - - name: 3',5'-cyclic-nucleotide phosphodiesterase + - id: "r_0037" + - name: "3',5'-cyclic-nucleotide phosphodiesterase" - metabolites: !!omap - s_0193: -1 - s_0526: 1 @@ -30530,17 +30557,17 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR360C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YOR360C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 3.1.4.53 - - bigg.reaction: PDE5 - - metanetx.reaction: MNXR136082 - - sbo: SBO:0000176 + - ec-code: "3.1.4.53" + - bigg.reaction: "PDE5" + - metanetx.reaction: "MNXR136082" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0038 - - name: 3,4-dihydroxy-2-butanone-4-phosphate synthase + - id: "r_0038" + - name: "3,4-dihydroxy-2-butanone-4-phosphate synthase" - metabolites: !!omap - s_0158: 1 - s_0577: -1 @@ -30548,76 +30575,76 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR487C + - gene_reaction_rule: "YDR487C" - subsystem: - - sce00740 Riboflavin metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00740 Riboflavin metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.99.12 - - bigg.reaction: DB4PS - - kegg.reaction: R07281 - - metanetx.reaction: MNXR97178 - - pmid: 12595523 - - sbo: SBO:0000176 + - ec-code: "4.1.99.12" + - bigg.reaction: "DB4PS" + - kegg.reaction: "R07281" + - metanetx.reaction: "MNXR97178" + - pmid: "12595523" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0039 - - name: 3-dehydroquinate dehydratase + - id: "r_0039" + - name: "3-dehydroquinate dehydratase" - metabolites: !!omap - s_0210: -1 - s_0211: 1 - s_0803: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR127W + - gene_reaction_rule: "YDR127W" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 1.1.1.25 - - 2.5.1.19 - - 2.7.1.71 - - 4.2.1.10 - - 4.2.3.4 - - bigg.reaction: DHQTi - - kegg.reaction: R03084 - - metanetx.reaction: MNXR97449 - - sbo: SBO:0000176 + - "1.1.1.25" + - "2.5.1.19" + - "2.7.1.71" + - "4.2.1.10" + - "4.2.3.4" + - bigg.reaction: "DHQTi" + - kegg.reaction: "R03084" + - metanetx.reaction: "MNXR97449" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0040 - - name: 3-dehydroquinate synthase + - id: "r_0040" + - name: "3-dehydroquinate synthase" - metabolites: !!omap - s_0210: 1 - s_0349: -1 - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR127W + - gene_reaction_rule: "YDR127W" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 1.1.1.25 - - 2.5.1.19 - - 2.7.1.71 - - 4.2.1.10 - - 4.2.3.4 - - bigg.reaction: DHQS - - kegg.reaction: R03083 - - metanetx.reaction: MNXR97447 - - pmid: 6355828 - - sbo: SBO:0000176 + - "1.1.1.25" + - "2.5.1.19" + - "2.7.1.71" + - "4.2.1.10" + - "4.2.3.4" + - bigg.reaction: "DHQS" + - kegg.reaction: "R03083" + - metanetx.reaction: "MNXR97447" + - pmid: "6355828" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0041 - - name: 3-dehydrosphinganine reductase + - id: "r_0041" + - name: "3-dehydrosphinganine reductase" - metabolites: !!omap - s_0231: -1 - s_0795: -1 @@ -30626,20 +30653,20 @@ - s_1445: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR265W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YBR265W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 1.1.1.102 - - kegg.reaction: R02978 - - metanetx.reaction: MNXR94866 + - ec-code: "1.1.1.102" + - kegg.reaction: "R02978" + - metanetx.reaction: "MNXR94866" - pmid: - - 18296751 - - 9804843 - - sbo: SBO:0000176 + - "18296751" + - "9804843" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0042 - - name: 3-deoxy-D-arabino-heptulosonate 7-phosphate synthetase + - id: "r_0042" + - name: "3-deoxy-D-arabino-heptulosonate 7-phosphate synthetase" - metabolites: !!omap - s_0349: 1 - s_0551: -1 @@ -30648,40 +30675,40 @@ - s_1360: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR249C or YDR035W + - gene_reaction_rule: "YBR249C or YDR035W" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.5.1.54 - - bigg.reaction: DDPA - - kegg.reaction: R01826 - - metanetx.reaction: MNXR97218 - - pmid: 2880280 - - sbo: SBO:0000176 + - ec-code: "2.5.1.54" + - bigg.reaction: "DDPA" + - kegg.reaction: "R01826" + - metanetx.reaction: "MNXR97218" + - pmid: "2880280" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0043 - - name: 3-hexaprenyl-4,5-dihydroxybenzoate hydroxylase + - id: "r_0043" + - name: "3-hexaprenyl-4,5-dihydroxybenzoate hydroxylase" - metabolites: !!omap - s_0212: 1 - s_0215: -1 - s_1275: -0.5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL252C or YDR376W + - gene_reaction_rule: "YPL252C or YDR376W" - annotation: !!omap - - bigg.reaction: 3OPHB5Hm - - kegg.reaction: R06865 - - metanetx.reaction: MNXR110601 - - pmid: 15792955 - - sbo: SBO:0000176 + - bigg.reaction: "3OPHB5Hm" + - kegg.reaction: "R06865" + - metanetx.reaction: "MNXR110601" + - pmid: "15792955" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0044 - - name: 3-hexaprenyl-4-hydroxy-5-methoxybenzoate decarboxylase + - id: "r_0044" + - name: "3-hexaprenyl-4-hydroxy-5-methoxybenzoate decarboxylase" - metabolites: !!omap - s_0157: 1 - s_0214: -1 @@ -30689,16 +30716,16 @@ - s_0799: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR538W and YDR539W + - gene_reaction_rule: "YDR538W and YDR539W" - annotation: !!omap - - kegg.reaction: R06866 - - metanetx.reaction: MNXR94901 - - pmid: 15792955 - - sbo: SBO:0000176 + - kegg.reaction: "R06866" + - metanetx.reaction: "MNXR94901" + - pmid: "15792955" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0045 - - name: 3-hydroxy-L-kynurenine hydrolase + - id: "r_0045" + - name: "3-hydroxy-L-kynurenine hydrolase" - metabolites: !!omap - s_0222: -1 - s_0224: 1 @@ -30707,18 +30734,18 @@ - s_0955: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR231C - - subsystem: sce00380 Tryptophan metabolism + - gene_reaction_rule: "YLR231C" + - subsystem: "sce00380 Tryptophan metabolism" - annotation: !!omap - - ec-code: 3.7.1.3 - - bigg.reaction: HKYNH - - kegg.reaction: R02668 - - metanetx.reaction: MNXR100656 - - sbo: SBO:0000176 + - ec-code: "3.7.1.3" + - bigg.reaction: "HKYNH" + - kegg.reaction: "R02668" + - metanetx.reaction: "MNXR100656" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0057 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxotetradecanoyl-CoA) + - id: "r_0057" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxotetradecanoyl-CoA)" - metabolites: !!omap - s_0054: -1 - s_0257: 1 @@ -30727,38 +30754,38 @@ - s_1206: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - bigg.reaction: HACD6p - - kegg.reaction: R04739 - - metanetx.reaction: MNXR100547 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - bigg.reaction: "HACD6p" + - kegg.reaction: "R04739" + - metanetx.reaction: "MNXR100547" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0058 - - name: 3-hydroxyanthranilate 3,4-dioxygenase + - id: "r_0058" + - name: "3-hydroxyanthranilate 3,4-dioxygenase" - metabolites: !!omap - s_0147: 1 - s_0224: -1 - s_1275: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR025C - - subsystem: sce00380 Tryptophan metabolism + - gene_reaction_rule: "YJR025C" + - subsystem: "sce00380 Tryptophan metabolism" - annotation: !!omap - - ec-code: 1.13.11.6 - - bigg.reaction: 3HAO - - kegg.reaction: R02665 - - metanetx.reaction: MNXR94889 - - pmid: 9539135 - - sbo: SBO:0000176 + - ec-code: "1.13.11.6" + - bigg.reaction: "3HAO" + - kegg.reaction: "R02665" + - metanetx.reaction: "MNXR94889" + - pmid: "9539135" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0059 - - name: 3-isopropylmalate 3-methyltransferase + - id: "r_0059" + - name: "3-isopropylmalate 3-methyltransferase" - metabolites: !!omap - s_0009: -1 - s_0217: 1 @@ -30766,38 +30793,38 @@ - s_1416: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER175C + - gene_reaction_rule: "YER175C" - annotation: !!omap - - ec-code: 2.1.1.145 - - pmid: 15147181 - - sbo: SBO:0000176 + - ec-code: "2.1.1.145" + - pmid: "15147181" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0060 - - name: 3-isopropylmalate dehydratase + - id: "r_0060" + - name: "3-isopropylmalate dehydratase" - metabolites: !!omap - s_0009: -1 - s_0165: 1 - s_0803: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL009C + - gene_reaction_rule: "YGL009C" - subsystem: - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.33 - - bigg.reaction: IPPMIa - - kegg.reaction: R04001 - - metanetx.reaction: MNXR100827 - - pmid: 3071717 - - sbo: SBO:0000176 + - ec-code: "4.2.1.33" + - bigg.reaction: "IPPMIa" + - kegg.reaction: "R04001" + - metanetx.reaction: "MNXR100827" + - pmid: "3071717" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0061 - - name: 3-isopropylmalate dehydrogenase + - id: "r_0061" + - name: "3-isopropylmalate dehydrogenase" - metabolites: !!omap - s_0009: -1 - s_0010: 1 @@ -30806,24 +30833,24 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL018W + - gene_reaction_rule: "YCL018W" - subsystem: - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00660 C5-Branched dibasic acid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00660 C5-Branched dibasic acid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.1.1.85 - - bigg.reaction: IPMD - - kegg.reaction: R04426 - - metanetx.reaction: MNXR100878 - - pmid: 6297759 - - sbo: SBO:0000176 + - ec-code: "1.1.1.85" + - bigg.reaction: "IPMD" + - kegg.reaction: "R04426" + - metanetx.reaction: "MNXR100878" + - pmid: "6297759" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0062 - - name: 3-methyl-2-oxobutanoate decarboxylase + - id: "r_0062" + - name: "3-methyl-2-oxobutanoate decarboxylase" - metabolites: !!omap - s_0232: -1 - s_0456: 1 @@ -30831,25 +30858,25 @@ - s_0937: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR087C or YLR044C or YLR134W + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 4.1.1.- - - 4.1.1.1 - - 4.1.1.43 - - 4.1.1.74 - - bigg.reaction: 3MOBDC - - metanetx.reaction: MNXR94922 - - pmid: 12902239 - - sbo: SBO:0000176 + - "4.1.1.-" + - "4.1.1.1" + - "4.1.1.43" + - "4.1.1.74" + - bigg.reaction: "3MOBDC" + - metanetx.reaction: "MNXR94922" + - pmid: "12902239" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0063 - - name: 3-methyl-2-oxobutanoate hydroxymethyltransferase + - id: "r_0063" + - name: "3-methyl-2-oxobutanoate hydroxymethyltransferase" - metabolites: !!omap - s_0150: 1 - s_0233: -1 @@ -30858,20 +30885,20 @@ - s_1488: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR176W + - gene_reaction_rule: "YBR176W" - subsystem: - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.1.2.11 - - bigg.reaction: MTMOHT - - kegg.reaction: R01226 - - metanetx.reaction: MNXR101702 - - sbo: SBO:0000176 + - ec-code: "2.1.2.11" + - bigg.reaction: "MTMOHT" + - kegg.reaction: "R01226" + - metanetx.reaction: "MNXR101702" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0064 - - name: 3-methyl-2-oxopentanoate decarboxylase + - id: "r_0064" + - name: "3-methyl-2-oxopentanoate decarboxylase" - metabolites: !!omap - s_0056: -1 - s_0166: 1 @@ -30879,26 +30906,26 @@ - s_0794: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL080C or YGR087C or YLR044C or YLR134W + - gene_reaction_rule: "YDL080C or YGR087C or YLR044C or YLR134W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 4.1.1.- - - 4.1.1.1 - - 4.1.1.43 - - 4.1.1.74 - - bigg.reaction: 3MOPDC - - kegg.reaction: R03894 - - metanetx.reaction: MNXR94925 - - pmid: 12902239 - - sbo: SBO:0000176 + - "4.1.1.-" + - "4.1.1.1" + - "4.1.1.43" + - "4.1.1.74" + - bigg.reaction: "3MOPDC" + - kegg.reaction: "R03894" + - metanetx.reaction: "MNXR94925" + - pmid: "12902239" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0065 - - name: 3-phosphoshikimate 1-carboxyvinyltransferase + - id: "r_0065" + - name: "3-phosphoshikimate 1-carboxyvinyltransferase" - metabolites: !!omap - s_0261: -1 - s_0324: 1 @@ -30906,28 +30933,28 @@ - s_1360: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR127W + - gene_reaction_rule: "YDR127W" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 1.1.1.25 - - 2.5.1.19 - - 2.7.1.71 - - 4.2.1.10 - - 4.2.3.4 - - bigg.reaction: PSCVT - - kegg.reaction: R03460 - - metanetx.reaction: MNXR103226 - - pmid: 6355828 - - sbo: SBO:0000176 + - "1.1.1.25" + - "2.5.1.19" + - "2.7.1.71" + - "4.2.1.10" + - "4.2.3.4" + - bigg.reaction: "PSCVT" + - kegg.reaction: "R03460" + - metanetx.reaction: "MNXR103226" + - pmid: "6355828" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0066 - - name: 4-amino-4-deoxychorismate synthase + - id: "r_0066" + - name: "4-amino-4-deoxychorismate synthase" - metabolites: !!omap - s_0269: 1 - s_0515: -1 @@ -30935,18 +30962,18 @@ - s_0999: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNR033W - - subsystem: sce00790 Folate biosynthesis + - gene_reaction_rule: "YNR033W" + - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - - ec-code: 2.6.1.85 - - bigg.reaction: ADCS - - kegg.reaction: R01716 - - metanetx.reaction: MNXR95440 - - sbo: SBO:0000176 + - ec-code: "2.6.1.85" + - bigg.reaction: "ADCS" + - kegg.reaction: "R01716" + - metanetx.reaction: "MNXR95440" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0067 - - name: 4-aminobenzoate synthase + - id: "r_0067" + - name: "4-aminobenzoate synthase" - metabolites: !!omap - s_0269: -1 - s_0271: 1 @@ -30954,17 +30981,17 @@ - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR289W + - gene_reaction_rule: "YMR289W" - annotation: !!omap - - ec-code: 4.1.3.38 - - bigg.reaction: ADCL - - kegg.reaction: R05553 - - metanetx.reaction: MNXR95436 - - sbo: SBO:0000176 + - ec-code: "4.1.3.38" + - bigg.reaction: "ADCL" + - kegg.reaction: "R05553" + - metanetx.reaction: "MNXR95436" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0068 - - name: 4-aminobutyrate transaminase + - id: "r_0068" + - name: "4-aminobutyrate transaminase" - metabolites: !!omap - s_0180: -1 - s_0734: -1 @@ -30972,24 +30999,24 @@ - s_1461: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR019W + - gene_reaction_rule: "YGR019W" - subsystem: - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00410 beta-Alanine metabolism - - sce00640 Propanoate metabolism - - sce00650 Butanoate metabolism + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00410 beta-Alanine metabolism" + - "sce00640 Propanoate metabolism" + - "sce00650 Butanoate metabolism" - annotation: !!omap - - ec-code: 2.6.1.19 - - bigg.reaction: ABTA - - kegg.reaction: R01648 - - metanetx.reaction: MNXR95186 - - pmid: 10590462 - - sbo: SBO:0000176 + - ec-code: "2.6.1.19" + - bigg.reaction: "ABTA" + - kegg.reaction: "R01648" + - metanetx.reaction: "MNXR95186" + - pmid: "10590462" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0069 - - name: 4-hydroxy-L-threonine synthase + - id: "r_0069" + - name: "4-hydroxy-L-threonine synthase" - metabolites: !!omap - s_0264: -1 - s_0285: 1 @@ -30997,23 +31024,23 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR053W + - gene_reaction_rule: "YCR053W" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00750 Vitamin B6 metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00750 Vitamin B6 metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.3.1 - - bigg.reaction: 4HTHRS - - kegg.reaction: R05086 - - metanetx.reaction: MNXR95024 - - pmid: 8082795 - - sbo: SBO:0000176 + - ec-code: "4.2.3.1" + - bigg.reaction: "4HTHRS" + - kegg.reaction: "R05086" + - metanetx.reaction: "MNXR95024" + - pmid: "8082795" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0070 - - name: 4-hydroxybenzoate formation + - id: "r_0070" + - name: "4-hydroxybenzoate formation" - metabolites: !!omap - s_0287: 1 - s_0290: -1 @@ -31022,16 +31049,17 @@ - s_0807: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 4HBZFm - - kegg.reaction: R01301 - - metanetx.reaction: MNXR95011 - - pmid: 11583838 - - sbo: SBO:0000176 + - bigg.reaction: "4HBZFm" + - kegg.reaction: "R01301" + - metanetx.reaction: "MNXR95011" + - pmid: "11583838" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_0072 - - name: 4-methyl-2-oxopentanoate decarboxylase + - id: "r_0072" + - name: "4-methyl-2-oxopentanoate decarboxylase" - metabolites: !!omap - s_0234: 1 - s_0291: -1 @@ -31039,21 +31067,21 @@ - s_0794: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL080C + - gene_reaction_rule: "YDL080C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 4.1.1.- - - bigg.reaction: 4MOPDC - - metanetx.reaction: MNXR137950 - - pmid: 12902239 - - sbo: SBO:0000176 + - ec-code: "4.1.1.-" + - bigg.reaction: "4MOPDC" + - metanetx.reaction: "MNXR137950" + - pmid: "12902239" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0073 - - name: 4PP-IP5 depyrophosphorylation to IP6 + - id: "r_0073" + - name: "4PP-IP5 depyrophosphorylation to IP6" - metabolites: !!omap - s_0279: -1 - s_0794: 1 @@ -31062,21 +31090,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR410W or YOR163W + - gene_reaction_rule: "YLR410W or YOR163W" - annotation: !!omap - ec-code: - - 2.7.4.21 - - 2.7.4.24 - - 3.6.1.52 - - 3.6.1.60 - - kegg.reaction: R05779 - - metanetx.reaction: MNXR103044 - - pmid: 17412958 - - sbo: SBO:0000176 + - "2.7.4.21" + - "2.7.4.24" + - "3.6.1.52" + - "3.6.1.60" + - kegg.reaction: "R05779" + - metanetx.reaction: "MNXR103044" + - pmid: "17412958" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0074 - - name: 4PP-IP5 pyrophosphorylation to 4,5-PP2-IP4 + - id: "r_0074" + - name: "4PP-IP5 pyrophosphorylation to 4,5-PP2-IP4" - metabolites: !!omap - s_0263: 1 - s_0279: -1 @@ -31085,18 +31113,18 @@ - s_0794: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR017C + - gene_reaction_rule: "YDR017C" - subsystem: - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - - ec-code: 2.7.4.21 - - pmid: 17412958 - - sbo: SBO:0000176 + - ec-code: "2.7.4.21" + - pmid: "17412958" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0075 - - name: 5'-methylthioadenosine phosphorylase + - id: "r_0075" + - name: "5'-methylthioadenosine phosphorylase" - metabolites: !!omap - s_0303: -1 - s_0383: 1 @@ -31104,19 +31132,19 @@ - s_1422: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR017W - - subsystem: sce00270 Cysteine and methionine metabolism + - gene_reaction_rule: "YLR017W" + - subsystem: "sce00270 Cysteine and methionine metabolism" - annotation: !!omap - - ec-code: 2.4.2.28 - - bigg.reaction: MTAP - - kegg.reaction: R01402 - - metanetx.reaction: MNXR101745 - - pmid: 14506228 - - sbo: SBO:0000176 + - ec-code: "2.4.2.28" + - bigg.reaction: "MTAP" + - kegg.reaction: "R01402" + - metanetx.reaction: "MNXR101745" + - pmid: "14506228" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0076 - - name: 5'-nucleotidase (CMP) + - id: "r_0076" + - name: "5'-nucleotidase (CMP)" - metabolites: !!omap - s_0526: -1 - s_0543: 1 @@ -31124,21 +31152,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER037W or YGL224C - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YER037W or YGL224C" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - - ec-code: 3.1.3.- - - bigg.reaction: NTD4 - - kegg.reaction: R00511 - - metanetx.reaction: MNXR102034 + - ec-code: "3.1.3.-" + - bigg.reaction: "NTD4" + - kegg.reaction: "R00511" + - metanetx.reaction: "MNXR102034" - pmid: - - 11934891 - - 23670538 - - sbo: SBO:0000176 + - "11934891" + - "23670538" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0077 - - name: 5'-nucleotidase (IMP) + - id: "r_0077" + - name: "5'-nucleotidase (IMP)" - metabolites: !!omap - s_0803: -1 - s_0849: -1 @@ -31146,21 +31174,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR155C + - gene_reaction_rule: "YOR155C" - subsystem: - - sce00230 Purine metabolism - - sce00760 Nicotinate and nicotinamide metabolism + - "sce00230 Purine metabolism" + - "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - - ec-code: 3.1.3.99 - - bigg.reaction: NTD11 - - kegg.reaction: R01126 - - metanetx.reaction: MNXR102030 - - pmid: 12735798 - - sbo: SBO:0000176 + - ec-code: "3.1.3.99" + - bigg.reaction: "NTD11" + - kegg.reaction: "R01126" + - metanetx.reaction: "MNXR102030" + - pmid: "12735798" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0078 - - name: 5'-nucleotidase (UMP) + - id: "r_0078" + - name: "5'-nucleotidase (UMP)" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -31168,21 +31196,21 @@ - s_1556: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER037W or YGL224C - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YER037W or YGL224C" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - - ec-code: 3.1.3.- - - bigg.reaction: NTD2 - - kegg.reaction: R00963 - - metanetx.reaction: MNXR102032 + - ec-code: "3.1.3.-" + - bigg.reaction: "NTD2" + - kegg.reaction: "R00963" + - metanetx.reaction: "MNXR102032" - pmid: - - 11934891 - - 23670538 - - sbo: SBO:0000176 + - "11934891" + - "23670538" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0079 - - name: 5'-phosphoribosylformyl glycinamidine synthetase + - id: "r_0079" + - name: "5'-phosphoribosylformyl glycinamidine synthetase" - metabolites: !!omap - s_0301: -1 - s_0302: 1 @@ -31195,21 +31223,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR061C + - gene_reaction_rule: "YGR061C" - subsystem: - - sce00230 Purine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 6.3.5.3 - - bigg.reaction: PRFGS - - kegg.reaction: R04463 - - metanetx.reaction: MNXR108904 - - sbo: SBO:0000176 + - ec-code: "6.3.5.3" + - bigg.reaction: "PRFGS" + - kegg.reaction: "R04463" + - metanetx.reaction: "MNXR108904" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0080 - - name: 5,10-methylenetetrahydrofolate reductase (NADPH) + - id: "r_0080" + - name: "5,10-methylenetetrahydrofolate reductase (NADPH)" - metabolites: !!omap - s_0306: -1 - s_0322: 1 @@ -31218,21 +31246,21 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL125W or YPL023C + - gene_reaction_rule: "YGL125W or YPL023C" - subsystem: - - sce00670 One carbon pool by folate - - sce01200 Carbon metabolism + - "sce00670 One carbon pool by folate" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 1.5.1.20 - - bigg.reaction: MTHFR3 - - kegg.reaction: R01224 - - metanetx.reaction: MNXR101752 - - pmid: 21623372 - - sbo: SBO:0000176 + - ec-code: "1.5.1.20" + - bigg.reaction: "MTHFR3" + - kegg.reaction: "R01224" + - metanetx.reaction: "MNXR101752" + - pmid: "21623372" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0081 - - name: 5-aminolevulinate synthase + - id: "r_0081" + - name: "5-aminolevulinate synthase" - metabolites: !!omap - s_0317: 1 - s_0460: 1 @@ -31242,21 +31270,21 @@ - s_1464: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR232W + - gene_reaction_rule: "YDR232W" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00860 Porphyrin and chlorophyll metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.3.1.37 - - bigg.reaction: ALASm - - kegg.reaction: R00830 - - metanetx.reaction: MNXR95695 - - sbo: SBO:0000176 + - ec-code: "2.3.1.37" + - bigg.reaction: "ALASm" + - kegg.reaction: "R00830" + - metanetx.reaction: "MNXR95695" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0082 - - name: 5-diphosphoinositol-1,2,3,4,6-pentakisphosphate diphosphohydrolase + - id: "r_0082" + - name: "5-diphosphoinositol-1,2,3,4,6-pentakisphosphate diphosphohydrolase" - metabolites: !!omap - s_0318: -1 - s_0794: 1 @@ -31265,19 +31293,19 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR163W + - gene_reaction_rule: "YOR163W" - annotation: !!omap - ec-code: - - 3.6.1.52 - - 3.6.1.60 - - kegg.reaction: R05779 - - metanetx.reaction: MNXR103044 - - pmid: 10419486 - - sbo: SBO:0000176 + - "3.6.1.52" + - "3.6.1.60" + - kegg.reaction: "R05779" + - metanetx.reaction: "MNXR103044" + - pmid: "10419486" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0083 - - name: 5-diphosphoinositol-1,2,3,4,6-pentakisphosphate synthase + - id: "r_0083" + - name: "5-diphosphoinositol-1,2,3,4,6-pentakisphosphate synthase" - metabolites: !!omap - s_0318: 1 - s_0394: 1 @@ -31285,20 +31313,20 @@ - s_1158: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR017C + - gene_reaction_rule: "YDR017C" - subsystem: - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - - ec-code: 2.7.4.21 - - kegg.reaction: R09087 - - metanetx.reaction: MNXR101584 - - pmid: 11956213 - - sbo: SBO:0000176 + - ec-code: "2.7.4.21" + - kegg.reaction: "R09087" + - metanetx.reaction: "MNXR101584" + - pmid: "11956213" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0084 - - name: 5-formethyltetrahydrofolate cyclo-ligase + - id: "r_0084" + - name: "5-formethyltetrahydrofolate cyclo-ligase" - metabolites: !!omap - s_0304: 1 - s_0319: -1 @@ -31307,18 +31335,18 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER183C - - subsystem: sce00670 One carbon pool by folate + - gene_reaction_rule: "YER183C" + - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - - ec-code: 6.3.3.2 - - bigg.reaction: FTHFCL - - kegg.reaction: R02301 - - metanetx.reaction: MNXR99668 - - sbo: SBO:0000176 + - ec-code: "6.3.3.2" + - bigg.reaction: "FTHFCL" + - kegg.reaction: "R02301" + - metanetx.reaction: "MNXR99668" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0085 - - name: 5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase + - id: "r_0085" + - name: "5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase" - metabolites: !!omap - s_0323: -1 - s_1012: -1 @@ -31326,56 +31354,56 @@ - s_1486: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER091C + - gene_reaction_rule: "YER091C" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00450 Selenocompound metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00450 Selenocompound metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.1.1.14 - - bigg.reaction: MHPGLUT - - kegg.reaction: R04405 - - metanetx.reaction: MNXR101555 - - pmid: 3542720 - - sbo: SBO:0000176 + - ec-code: "2.1.1.14" + - bigg.reaction: "MHPGLUT" + - kegg.reaction: "R04405" + - metanetx.reaction: "MNXR101555" + - pmid: "3542720" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0086 - - name: 5-methylthio-5-deoxy-D-ribulose 1-phosphate dehydratase + - id: "r_0086" + - name: "5-methylthio-5-deoxy-D-ribulose 1-phosphate dehydratase" - metabolites: !!omap - s_0311: 1 - s_0803: 1 - s_1423: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR024C + - gene_reaction_rule: "YJR024C" - annotation: !!omap - - bigg.reaction: MDRPD - - kegg.reaction: R07392 - - metanetx.reaction: MNXR125830 - - pmid: 14506228 - - sbo: SBO:0000176 + - bigg.reaction: "MDRPD" + - kegg.reaction: "R07392" + - metanetx.reaction: "MNXR125830" + - pmid: "14506228" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0087 - - name: 5-methylthioribose-1-phosphate isomerase + - id: "r_0087" + - name: "5-methylthioribose-1-phosphate isomerase" - metabolites: !!omap - s_1422: -1 - s_1423: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR118W + - gene_reaction_rule: "YPR118W" - annotation: !!omap - - bigg.reaction: MTRI - - kegg.reaction: R04420 - - metanetx.reaction: MNXR101759 - - pmid: 14506228 - - sbo: SBO:0000176 + - bigg.reaction: "MTRI" + - kegg.reaction: "R04420" + - metanetx.reaction: "MNXR101759" + - pmid: "14506228" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0088 - - name: 5PP-IP5 pyrophosphorylation to 4,5-PP2-IP4 + - id: "r_0088" + - name: "5PP-IP5 pyrophosphorylation to 4,5-PP2-IP4" - metabolites: !!omap - s_0263: 1 - s_0318: -1 @@ -31384,17 +31412,17 @@ - s_1322: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR410W + - gene_reaction_rule: "YLR410W" - annotation: !!omap - ec-code: - - 2.7.4.21 - - 2.7.4.24 - - pmid: 17412958 - - sbo: SBO:0000176 + - "2.7.4.21" + - "2.7.4.24" + - pmid: "17412958" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0089 - - name: 5PP-IP5 pyrophosphorylation to 5,6-PP2-IP4 + - id: "r_0089" + - name: "5PP-IP5 pyrophosphorylation to 5,6-PP2-IP4" - metabolites: !!omap - s_0309: 1 - s_0318: -1 @@ -31403,17 +31431,17 @@ - s_1322: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR410W + - gene_reaction_rule: "YLR410W" - annotation: !!omap - ec-code: - - 2.7.4.21 - - 2.7.4.24 - - pmid: 17412958 - - sbo: SBO:0000176 + - "2.7.4.21" + - "2.7.4.24" + - pmid: "17412958" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0090 - - name: 6-phosphofructo-2-kinase + - id: "r_0090" + - name: "6-phosphofructo-2-kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -31422,17 +31450,17 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL107C or YOL136C - - subsystem: sce00051 Fructose and mannose metabolism + - gene_reaction_rule: "YIL107C or YOL136C" + - subsystem: "sce00051 Fructose and mannose metabolism" - annotation: !!omap - - ec-code: 2.7.1.105 - - bigg.reaction: PFK26 - - metanetx.reaction: MNXR124534 - - sbo: SBO:0000176 + - ec-code: "2.7.1.105" + - bigg.reaction: "PFK26" + - metanetx.reaction: "MNXR124534" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0091 - - name: 6-phosphogluconolactonase + - id: "r_0091" + - name: "6-phosphogluconolactonase" - metabolites: !!omap - s_0335: -1 - s_0340: 1 @@ -31440,23 +31468,23 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR248W or YHR163W + - gene_reaction_rule: "YGR248W or YHR163W" - subsystem: - - sce00030 Pentose phosphate pathway - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00030 Pentose phosphate pathway" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 3.1.1.31 - - bigg.reaction: PGL - - kegg.reaction: R02035 - - metanetx.reaction: MNXR102539 - - pmid: 14454532 - - sbo: SBO:0000176 + - ec-code: "3.1.1.31" + - bigg.reaction: "PGL" + - kegg.reaction: "R02035" + - metanetx.reaction: "MNXR102539" + - pmid: "14454532" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0092 - - name: 6PP-IP5 depyrophosphorylation to IP6 + - id: "r_0092" + - name: "6PP-IP5 depyrophosphorylation to IP6" - metabolites: !!omap - s_0333: -1 - s_0794: 1 @@ -31465,21 +31493,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR410W or YOR163W + - gene_reaction_rule: "YLR410W or YOR163W" - annotation: !!omap - ec-code: - - 2.7.4.21 - - 2.7.4.24 - - 3.6.1.52 - - 3.6.1.60 - - kegg.reaction: R05779 - - metanetx.reaction: MNXR103044 - - pmid: 17412958 - - sbo: SBO:0000176 + - "2.7.4.21" + - "2.7.4.24" + - "3.6.1.52" + - "3.6.1.60" + - kegg.reaction: "R05779" + - metanetx.reaction: "MNXR103044" + - pmid: "17412958" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0093 - - name: 6PP-IP5 pyrophosphorylation to 5,6-PP2-IP4 + - id: "r_0093" + - name: "6PP-IP5 pyrophosphorylation to 5,6-PP2-IP4" - metabolites: !!omap - s_0309: 1 - s_0333: -1 @@ -31488,18 +31516,18 @@ - s_0794: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR017C + - gene_reaction_rule: "YDR017C" - subsystem: - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - - ec-code: 2.7.4.21 - - pmid: 17412958 - - sbo: SBO:0000176 + - ec-code: "2.7.4.21" + - pmid: "17412958" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0094 - - name: 8-amino-7-oxononanoate synthase + - id: "r_0094" + - name: "8-amino-7-oxononanoate synthase" - metabolites: !!omap - s_0352: 1 - s_0456: 1 @@ -31509,39 +31537,40 @@ - s_1368: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - kegg.reaction: R03210 - - metanetx.reaction: MNXR95854 - - pmid: 16269718 - - sbo: SBO:0000176 + - kegg.reaction: "R03210" + - metanetx.reaction: "MNXR95854" + - pmid: "16269718" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0095 - - name: acetaldehyde condensation + - id: "r_0095" + - name: "acetaldehyde condensation" - metabolites: !!omap - s_0020: 1 - s_0359: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR087C or YLR044C or YLR134W + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 4.1.1.- - - 4.1.1.1 - - 4.1.1.43 - - 4.1.1.74 - - bigg.reaction: ACALDCD - - metanetx.reaction: MNXR95211 - - pmid: 12902239 - - sbo: SBO:0000176 + - "4.1.1.-" + - "4.1.1.1" + - "4.1.1.43" + - "4.1.1.74" + - bigg.reaction: "ACALDCD" + - metanetx.reaction: "MNXR95211" + - pmid: "12902239" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0096 - - name: acetohydroxy acid isomeroreductase + - id: "r_0096" + - name: "acetohydroxy acid isomeroreductase" - metabolites: !!omap - s_0016: 1 - s_0146: -1 @@ -31550,22 +31579,22 @@ - s_1214: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR355C + - gene_reaction_rule: "YLR355C" - subsystem: - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.1.1.86 - - pmid: 8972574 - - sbo: SBO:0000176 + - ec-code: "1.1.1.86" + - pmid: "8972574" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0097 - - name: acetolactate synthase + - id: "r_0097" + - name: "acetolactate synthase" - metabolites: !!omap - s_0146: 1 - s_0460: 1 @@ -31573,26 +31602,26 @@ - s_1401: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YCL009C and YMR108W) or YMR108W + - gene_reaction_rule: "(YCL009C and YMR108W) or YMR108W" - subsystem: - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00650 Butanoate metabolism - - sce00660 C5-Branched dibasic acid metabolism - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00650 Butanoate metabolism" + - "sce00660 C5-Branched dibasic acid metabolism" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.2.1.6 - - kegg.reaction: R00006 - - metanetx.reaction: MNXR106335 - - pmid: 8972574 - - sbo: SBO:0000176 + - ec-code: "2.2.1.6" + - kegg.reaction: "R00006" + - metanetx.reaction: "MNXR106335" + - pmid: "8972574" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0099 - - name: acetyl-CoA ACP transacylase + - id: "r_0099" + - name: "acetyl-CoA ACP transacylase" - metabolites: !!omap - s_0372: 1 - s_0376: -1 @@ -31600,18 +31629,18 @@ - s_1845: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL192C - - subsystem: sce00190 Oxidative phosphorylation + - gene_reaction_rule: "YKL192C" + - subsystem: "sce00190 Oxidative phosphorylation" - annotation: !!omap - - bigg.reaction: ACOATAm - - kegg.reaction: R01624 - - metanetx.reaction: MNXR95376 - - pmid: 15387819 - - sbo: SBO:0000176 + - bigg.reaction: "ACOATAm" + - kegg.reaction: "R01624" + - metanetx.reaction: "MNXR95376" + - pmid: "15387819" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0100 - - name: acetyl-CoA C-acyltransferase (palmitoyl-CoA) + - id: "r_0100" + - name: "acetyl-CoA C-acyltransferase (palmitoyl-CoA)" - metabolites: !!omap - s_0250: -1 - s_0378: 1 @@ -31619,24 +31648,24 @@ - s_1305: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - bigg.reaction: ACACT8p - - metanetx.reaction: MNXR95204 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT8p" + - metanetx.reaction: "MNXR95204" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0101 - - name: acetyl-CoA C-acyltransferase (tetracosanoyl-CoA) + - id: "r_0101" + - name: "acetyl-CoA C-acyltransferase (tetracosanoyl-CoA)" - metabolites: !!omap - s_0243: -1 - s_0378: 1 @@ -31644,24 +31673,24 @@ - s_1482: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - bigg.reaction: ACACT9p - - metanetx.reaction: MNXR124343 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT9p" + - metanetx.reaction: "MNXR124343" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0102 - - name: acetyl-CoA C-acyltransferase (myristoyl-CoA) + - id: "r_0102" + - name: "acetyl-CoA C-acyltransferase (myristoyl-CoA)" - metabolites: !!omap - s_0253: -1 - s_0378: 1 @@ -31669,89 +31698,89 @@ - s_1179: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - bigg.reaction: ACACT7p - - kegg.reaction: R03991 - - metanetx.reaction: MNXR95203 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT7p" + - kegg.reaction: "R03991" + - metanetx.reaction: "MNXR95203" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0103 - - name: acetyl-CoA C-acetyltransferase + - id: "r_0103" + - name: "acetyl-CoA C-acetyltransferase" - metabolites: !!omap - s_0367: 1 - s_0373: -2 - s_0529: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPL028W + - gene_reaction_rule: "YPL028W" - subsystem: - - sce00071 Fatty acid degradation - - sce00072 Synthesis and degradation of ketone bodies - - sce00280 Valine, leucine and isoleucine degradation - - sce00310 Lysine degradation - - sce00380 Tryptophan metabolism - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce00650 Butanoate metabolism - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01212 Fatty acid metabolism + - "sce00071 Fatty acid degradation" + - "sce00072 Synthesis and degradation of ketone bodies" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00310 Lysine degradation" + - "sce00380 Tryptophan metabolism" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce00650 Butanoate metabolism" + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.9 - - bigg.reaction: ACACT1r - - kegg.reaction: R00238 - - metanetx.reaction: MNXR95194 - - sbo: SBO:0000176 + - ec-code: "2.3.1.9" + - bigg.reaction: "ACACT1r" + - kegg.reaction: "R00238" + - metanetx.reaction: "MNXR95194" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0104 - - name: acetyl-CoA C-acetyltransferase + - id: "r_0104" + - name: "acetyl-CoA C-acetyltransferase" - metabolites: !!omap - s_0370: 1 - s_0376: -2 - s_0532: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPL028W + - gene_reaction_rule: "YPL028W" - subsystem: - - sce00071 Fatty acid degradation - - sce00072 Synthesis and degradation of ketone bodies - - sce00280 Valine, leucine and isoleucine degradation - - sce00310 Lysine degradation - - sce00380 Tryptophan metabolism - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce00650 Butanoate metabolism - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01212 Fatty acid metabolism + - "sce00071 Fatty acid degradation" + - "sce00072 Synthesis and degradation of ketone bodies" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00310 Lysine degradation" + - "sce00380 Tryptophan metabolism" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce00650 Butanoate metabolism" + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.9 - - bigg.reaction: ACACT1m - - kegg.reaction: R00238 - - metanetx.reaction: MNXR95194 - - sbo: SBO:0000176 + - ec-code: "2.3.1.9" + - bigg.reaction: "ACACT1m" + - kegg.reaction: "R00238" + - metanetx.reaction: "MNXR95194" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0105 - - name: acetyl-CoA C-acyltransferase (lauroyl-CoA) + - id: "r_0105" + - name: "acetyl-CoA C-acyltransferase (lauroyl-CoA)" - metabolites: !!omap - s_0257: -1 - s_0378: 1 @@ -31759,25 +31788,25 @@ - s_1076: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - bigg.reaction: ACACT6p - - kegg.reaction: R03858 - - metanetx.reaction: MNXR95201 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT6p" + - kegg.reaction: "R03858" + - metanetx.reaction: "MNXR95201" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0106 - - name: acetyl-CoA C-acyltransferase (octanoyl-CoA) + - id: "r_0106" + - name: "acetyl-CoA C-acyltransferase (octanoyl-CoA)" - metabolites: !!omap - s_0239: -1 - s_0378: 1 @@ -31785,25 +31814,25 @@ - s_1258: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - bigg.reaction: ACACT4p - - kegg.reaction: R03778 - - metanetx.reaction: MNXR95198 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT4p" + - kegg.reaction: "R03778" + - metanetx.reaction: "MNXR95198" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0107 - - name: acetyl-CoA C-acyltransferase (decanoyl-CoA) + - id: "r_0107" + - name: "acetyl-CoA C-acyltransferase (decanoyl-CoA)" - metabolites: !!omap - s_0247: -1 - s_0378: 1 @@ -31811,24 +31840,24 @@ - s_0605: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - kegg.reaction: R04742 - - metanetx.reaction: MNXR95200 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - kegg.reaction: "R04742" + - metanetx.reaction: "MNXR95200" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0108 - - name: acetyl-Coa carboxylase + - id: "r_0108" + - name: "acetyl-Coa carboxylase" - metabolites: !!omap - s_0376: -1 - s_0397: 1 @@ -31839,26 +31868,26 @@ - s_1326: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR207C + - gene_reaction_rule: "YMR207C" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00620 Pyruvate metabolism - - sce00640 Propanoate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00061 Fatty acid biosynthesis" + - "sce00620 Pyruvate metabolism" + - "sce00640 Propanoate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: - - 6.3.4.14 - - 6.4.1.2 - - bigg.reaction: ACCOACrm - - kegg.reaction: R00742 - - metanetx.reaction: MNXR95219 - - pmid: 14761959 - - sbo: SBO:0000176 + - "6.3.4.14" + - "6.4.1.2" + - bigg.reaction: "ACCOACrm" + - kegg.reaction: "R00742" + - metanetx.reaction: "MNXR95219" + - pmid: "14761959" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0109 - - name: acetyl-CoA carboxylase, reaction + - id: "r_0109" + - name: "acetyl-CoA carboxylase, reaction" - metabolites: !!omap - s_0373: -1 - s_0394: 1 @@ -31869,24 +31898,24 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL141W and YNR016C + - gene_reaction_rule: "YDL141W and YNR016C" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00620 Pyruvate metabolism - - sce00640 Propanoate metabolism - - sce00780 Biotin metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00061 Fatty acid biosynthesis" + - "sce00620 Pyruvate metabolism" + - "sce00640 Propanoate metabolism" + - "sce00780 Biotin metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 6.3.4.14 - - bigg.reaction: ACCOAC - - kegg.reaction: R00742 - - metanetx.reaction: MNXR95219 - - sbo: SBO:0000176 + - ec-code: "6.3.4.14" + - bigg.reaction: "ACCOAC" + - kegg.reaction: "R00742" + - metanetx.reaction: "MNXR95219" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0111 - - name: acetyl-CoA hydrolase + - id: "r_0111" + - name: "acetyl-CoA hydrolase" - metabolites: !!omap - s_0365: 1 - s_0376: -1 @@ -31895,18 +31924,18 @@ - s_0807: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL015W - - subsystem: sce00620 Pyruvate metabolism + - gene_reaction_rule: "YBL015W" + - subsystem: "sce00620 Pyruvate metabolism" - annotation: !!omap - - ec-code: 3.1.2.1 - - bigg.reaction: ACOAHim - - kegg.reaction: R00227 - - metanetx.reaction: MNXR95363 - - sbo: SBO:0000176 + - ec-code: "3.1.2.1" + - bigg.reaction: "ACOAHim" + - kegg.reaction: "R00227" + - metanetx.reaction: "MNXR95363" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0112 - - name: acetyl-CoA synthetase + - id: "r_0112" + - name: "acetyl-CoA synthetase" - metabolites: !!omap - s_0362: -1 - s_0373: 1 @@ -31916,25 +31945,25 @@ - s_0633: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL054C or YLR153C + - gene_reaction_rule: "YAL054C or YLR153C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00620 Pyruvate metabolism - - sce00640 Propanoate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00620 Pyruvate metabolism" + - "sce00640 Propanoate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 6.2.1.1 - - bigg.reaction: ACS - - kegg.reaction: R00235 - - metanetx.reaction: MNXR95413 - - pmid: 8910545 - - sbo: SBO:0000176 + - ec-code: "6.2.1.1" + - bigg.reaction: "ACS" + - kegg.reaction: "R00235" + - metanetx.reaction: "MNXR95413" + - pmid: "8910545" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0113 - - name: acetyl-CoA synthetase + - id: "r_0113" + - name: "acetyl-CoA synthetase" - metabolites: !!omap - s_0365: -1 - s_0376: 1 @@ -31944,24 +31973,24 @@ - s_0636: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL054C + - gene_reaction_rule: "YAL054C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00620 Pyruvate metabolism - - sce00640 Propanoate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00620 Pyruvate metabolism" + - "sce00640 Propanoate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 6.2.1.1 - - bigg.reaction: ACSm - - kegg.reaction: R00235 - - metanetx.reaction: MNXR95413 - - sbo: SBO:0000176 + - ec-code: "6.2.1.1" + - bigg.reaction: "ACSm" + - kegg.reaction: "R00235" + - metanetx.reaction: "MNXR95413" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0114 - - name: acetyl-CoA synthetase nuclear + - id: "r_0114" + - name: "acetyl-CoA synthetase nuclear" - metabolites: !!omap - s_0366: -1 - s_0377: 1 @@ -31971,24 +32000,24 @@ - s_0637: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR153C + - gene_reaction_rule: "YLR153C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00620 Pyruvate metabolism - - sce00640 Propanoate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00620 Pyruvate metabolism" + - "sce00640 Propanoate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 6.2.1.1 - - kegg.reaction: R00235 - - metanetx.reaction: MNXR95413 - - pmid: 16857587 - - sbo: SBO:0000176 + - ec-code: "6.2.1.1" + - kegg.reaction: "R00235" + - metanetx.reaction: "MNXR95413" + - pmid: "16857587" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0115 - - name: acetylglutamate kinase + - id: "r_0115" + - name: "acetylglutamate kinase" - metabolites: !!omap - s_0397: 1 - s_0437: -1 @@ -31996,25 +32025,25 @@ - s_1192: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER069W + - gene_reaction_rule: "YER069W" - subsystem: - - sce00220 Arginine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 1.2.1.38 - - 2.7.2.8 - - bigg.reaction: ACGKm - - kegg.reaction: R02649 - - metanetx.reaction: MNXR95256 - - sbo: SBO:0000176 + - "1.2.1.38" + - "2.7.2.8" + - bigg.reaction: "ACGKm" + - kegg.reaction: "R02649" + - metanetx.reaction: "MNXR95256" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0116 - - name: acid phosphatase (secreted) + - id: "r_0116" + - name: "acid phosphatase (secreted)" - metabolites: !!omap - s_0715: -1 - s_0805: -1 @@ -32022,39 +32051,39 @@ - s_1406: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR093C or YAR071W or YBR092C or YHR215W + - gene_reaction_rule: "YBR093C or YAR071W or YBR092C or YHR215W" - subsystem: - - sce00730 Thiamine metabolism - - sce00740 Riboflavin metabolism - - sce04111 Cell cycle - yeast + - "sce00730 Thiamine metabolism" + - "sce00740 Riboflavin metabolism" + - "sce04111 Cell cycle - yeast" - annotation: !!omap - - ec-code: 3.1.3.2 - - bigg.reaction: ACP1e - - kegg.reaction: R00548 - - metanetx.reaction: MNXR95393 - - pmid: 13405892 - - sbo: SBO:0000176 + - ec-code: "3.1.3.2" + - bigg.reaction: "ACP1e" + - kegg.reaction: "R00548" + - metanetx.reaction: "MNXR95393" + - pmid: "13405892" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0117 - - name: aconitase + - id: "r_0117" + - name: "aconitase" - metabolites: !!omap - s_0012: 1 - s_0174: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR002W - - subsystem: sce00640 Propanoate metabolism + - gene_reaction_rule: "YPR002W" + - subsystem: "sce00640 Propanoate metabolism" - annotation: !!omap - - ec-code: 4.2.1.79 - - bigg.reaction: ACONT3m - - metanetx.reaction: MNXR95385 - - pmid: 16332871 - - sbo: SBO:0000176 + - ec-code: "4.2.1.79" + - bigg.reaction: "ACONT3m" + - metanetx.reaction: "MNXR95385" + - pmid: "16332871" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0118 - - name: acteylornithine transaminase + - id: "r_0118" + - name: "acteylornithine transaminase" - metabolites: !!omap - s_0145: -1 - s_0182: 1 @@ -32062,23 +32091,23 @@ - s_1182: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL140W + - gene_reaction_rule: "YOL140W" - subsystem: - - sce00220 Arginine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.11 - - bigg.reaction: ACOTAim - - kegg.reaction: R02283 - - metanetx.reaction: MNXR95388 - - sbo: SBO:0000176 + - ec-code: "2.6.1.11" + - bigg.reaction: "ACOTAim" + - kegg.reaction: "R02283" + - metanetx.reaction: "MNXR95388" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0119 - - name: acyl carrier protein synthase + - id: "r_0119" + - name: "acyl carrier protein synthase" - metabolites: !!omap - s_0392: 1 - s_0532: -1 @@ -32087,17 +32116,17 @@ - s_1308: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL148C + - gene_reaction_rule: "YPL148C" - annotation: !!omap - - ec-code: 2.7.8.7 - - bigg.reaction: ACPSm - - kegg.reaction: R10747 - - metanetx.reaction: MNXR95402 - - sbo: SBO:0000176 + - ec-code: "2.7.8.7" + - bigg.reaction: "ACPSm" + - kegg.reaction: "R10747" + - metanetx.reaction: "MNXR95402" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0120 - - name: acyl-CoA oxidase (decanoyl-CoA) + - id: "r_0120" + - name: "acyl-CoA oxidase (decanoyl-CoA)" - metabolites: !!omap - s_0605: -1 - s_0840: 1 @@ -32105,21 +32134,21 @@ - s_1507: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - metanetx.reaction: MNXR127526 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - metanetx.reaction: "MNXR127526" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0121 - - name: acyl-CoA oxidase (dodecanoyl-CoA) + - id: "r_0121" + - name: "acyl-CoA oxidase (dodecanoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1076: -1 @@ -32127,22 +32156,22 @@ - s_1510: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - bigg.reaction: ACOAO5p - - metanetx.reaction: MNXR95365 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - bigg.reaction: "ACOAO5p" + - metanetx.reaction: "MNXR95365" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0122 - - name: acyl-CoA oxidase (hexacosanoyl-CoA) + - id: "r_0122" + - name: "acyl-CoA oxidase (hexacosanoyl-CoA)" - metabolites: !!omap - s_0819: -1 - s_0840: 1 @@ -32150,22 +32179,22 @@ - s_1513: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - bigg.reaction: ACOAO9p - - metanetx.reaction: MNXR124346 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - bigg.reaction: "ACOAO9p" + - metanetx.reaction: "MNXR124346" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0123 - - name: acyl-CoA oxidase (hexadecanoyl-CoA) + - id: "r_0123" + - name: "acyl-CoA oxidase (hexadecanoyl-CoA)" - metabolites: !!omap - s_0823: 1 - s_0840: 1 @@ -32173,22 +32202,22 @@ - s_1305: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - bigg.reaction: ACOAO7p - - metanetx.reaction: MNXR95367 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - bigg.reaction: "ACOAO7p" + - metanetx.reaction: "MNXR95367" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0124 - - name: acyl-CoA oxidase (octadecanoyl-CoA) + - id: "r_0124" + - name: "acyl-CoA oxidase (octadecanoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1279: -1 @@ -32196,22 +32225,22 @@ - s_1516: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - bigg.reaction: ACOAO8p - - metanetx.reaction: MNXR95368 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - bigg.reaction: "ACOAO8p" + - metanetx.reaction: "MNXR95368" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0125 - - name: acyl-CoA oxidase (tetradecanoyl-CoA) + - id: "r_0125" + - name: "acyl-CoA oxidase (tetradecanoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1179: -1 @@ -32219,22 +32248,22 @@ - s_1519: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - bigg.reaction: ACOAO6p - - metanetx.reaction: MNXR95366 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - bigg.reaction: "ACOAO6p" + - metanetx.reaction: "MNXR95366" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0126 - - name: acyl-CoA:sterol acyltransferase (oleoyl-CoA:episterol), ER membrane + - id: "r_0126" + - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:episterol), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -32242,16 +32271,16 @@ - s_3433: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR048W - - subsystem: sce00100 Steroid biosynthesis + - gene_reaction_rule: "YCR048W" + - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - - ec-code: 2.3.1.26 - - pmid: 10672016 - - sbo: SBO:0000176 + - ec-code: "2.3.1.26" + - pmid: "10672016" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0127 - - name: acyl-CoA:sterol acyltransferase (oleoyl-CoA:ergosterol), ER membrane + - id: "r_0127" + - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:ergosterol), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -32259,17 +32288,17 @@ - s_3442: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W - - subsystem: sce00100 Steroid biosynthesis + - gene_reaction_rule: "YCR048W or YNR019W" + - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - - ec-code: 2.3.1.26 - - metanetx.reaction: MNXR119161 - - pmid: 10672016 - - sbo: SBO:0000176 + - ec-code: "2.3.1.26" + - metanetx.reaction: "MNXR119161" + - pmid: "10672016" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0128 - - name: acyl-CoA:sterol acyltransferase (oleoyl-CoA:fecosterol), ER membrane + - id: "r_0128" + - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:fecosterol), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -32277,16 +32306,16 @@ - s_3436: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR048W - - subsystem: sce00100 Steroid biosynthesis + - gene_reaction_rule: "YCR048W" + - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - - ec-code: 2.3.1.26 - - pmid: 10672016 - - sbo: SBO:0000176 + - ec-code: "2.3.1.26" + - pmid: "10672016" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0129 - - name: acyl-CoA:sterol acyltransferase (oleoyl-CoA:lanosterol), ER membrane + - id: "r_0129" + - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:lanosterol), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -32294,17 +32323,17 @@ - s_3439: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W - - subsystem: sce00100 Steroid biosynthesis + - gene_reaction_rule: "YCR048W" + - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - - ec-code: 2.3.1.26 - - metanetx.reaction: MNXR119159 - - pmid: 10672016 - - sbo: SBO:0000176 + - ec-code: "2.3.1.26" + - metanetx.reaction: "MNXR119159" + - pmid: "10672016" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0130 - - name: acyl-CoA:sterol acyltransferase (oleoyl-CoA:zymosterol), ER membrane + - id: "r_0130" + - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:zymosterol), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -32312,16 +32341,16 @@ - s_3445: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR048W - - subsystem: sce00100 Steroid biosynthesis + - gene_reaction_rule: "YCR048W" + - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - - ec-code: 2.3.1.26 - - pmid: 10672016 - - sbo: SBO:0000176 + - ec-code: "2.3.1.26" + - pmid: "10672016" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0131 - - name: acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:episterol), ER membrane + - id: "r_0131" + - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:episterol), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -32329,16 +32358,16 @@ - s_3434: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR048W - - subsystem: sce00100 Steroid biosynthesis + - gene_reaction_rule: "YCR048W" + - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - - ec-code: 2.3.1.26 - - pmid: 10672016 - - sbo: SBO:0000176 + - ec-code: "2.3.1.26" + - pmid: "10672016" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0132 - - name: acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:ergosterol), ER membrane + - id: "r_0132" + - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:ergosterol), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -32346,16 +32375,16 @@ - s_3443: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W - - subsystem: sce00100 Steroid biosynthesis + - gene_reaction_rule: "YCR048W or YNR019W" + - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - - ec-code: 2.3.1.26 - - pmid: 10672016 - - sbo: SBO:0000176 + - ec-code: "2.3.1.26" + - pmid: "10672016" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0133 - - name: acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:fecosterol), ER membrane + - id: "r_0133" + - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:fecosterol), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -32363,16 +32392,16 @@ - s_3437: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR048W - - subsystem: sce00100 Steroid biosynthesis + - gene_reaction_rule: "YCR048W" + - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - - ec-code: 2.3.1.26 - - pmid: 10672016 - - sbo: SBO:0000176 + - ec-code: "2.3.1.26" + - pmid: "10672016" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0134 - - name: acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:lanosterol), ER membrane + - id: "r_0134" + - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:lanosterol), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -32380,16 +32409,16 @@ - s_3440: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR048W - - subsystem: sce00100 Steroid biosynthesis + - gene_reaction_rule: "YCR048W" + - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - - ec-code: 2.3.1.26 - - pmid: 10672016 - - sbo: SBO:0000176 + - ec-code: "2.3.1.26" + - pmid: "10672016" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0135 - - name: acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:zymosterol), ER membrane + - id: "r_0135" + - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:zymosterol), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -32397,16 +32426,16 @@ - s_3446: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR048W - - subsystem: sce00100 Steroid biosynthesis + - gene_reaction_rule: "YCR048W" + - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - - ec-code: 2.3.1.26 - - pmid: 10672016 - - sbo: SBO:0000176 + - ec-code: "2.3.1.26" + - pmid: "10672016" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0137 - - name: acylation of GPI inositol at 2 position, GPI-anchor assembly, step 3 + - id: "r_0137" + - name: "acylation of GPI inositol at 2 position, GPI-anchor assembly, step 3" - metabolites: !!omap - s_0329: -1 - s_0330: 1 @@ -32414,16 +32443,16 @@ - s_1303: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL091C - - subsystem: sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - gene_reaction_rule: "YJL091C" + - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - - ec-code: 2.3.-.- - - pmid: 12714589 - - sbo: SBO:0000176 + - ec-code: "2.3.-.-" + - pmid: "12714589" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0138 - - name: adenine deaminase + - id: "r_0138" + - name: "adenine deaminase" - metabolites: !!omap - s_0383: -1 - s_0419: 1 @@ -32432,18 +32461,18 @@ - s_0843: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL141W - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YNL141W" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 3.5.4.2 - - bigg.reaction: ADD - - kegg.reaction: R01244 - - metanetx.reaction: MNXR95443 - - sbo: SBO:0000176 + - ec-code: "3.5.4.2" + - bigg.reaction: "ADD" + - kegg.reaction: "R01244" + - metanetx.reaction: "MNXR95443" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0139 - - name: adenine phosphoribosyltransferase + - id: "r_0139" + - name: "adenine phosphoribosyltransferase" - metabolites: !!omap - s_0383: -1 - s_0423: 1 @@ -32451,19 +32480,19 @@ - s_1386: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR441C or YML022W - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YDR441C or YML022W" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 2.4.2.7 - - bigg.reaction: ADPT - - kegg.reaction: R00190 - - metanetx.reaction: MNXR95482 - - pmid: 9864350 - - sbo: SBO:0000176 + - ec-code: "2.4.2.7" + - bigg.reaction: "ADPT" + - kegg.reaction: "R00190" + - metanetx.reaction: "MNXR95482" + - pmid: "9864350" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0140 - - name: adenosine deaminase + - id: "r_0140" + - name: "adenosine deaminase" - metabolites: !!omap - s_0386: -1 - s_0419: 1 @@ -32472,18 +32501,18 @@ - s_0856: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL141W - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YNL141W" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 3.5.4.2 - - bigg.reaction: ADA - - kegg.reaction: R01560 - - metanetx.reaction: MNXR95432 - - sbo: SBO:0000176 + - ec-code: "3.5.4.2" + - bigg.reaction: "ADA" + - kegg.reaction: "R01560" + - metanetx.reaction: "MNXR95432" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0142 - - name: adenosine kinase + - id: "r_0142" + - name: "adenosine kinase" - metabolites: !!omap - s_0386: -1 - s_0394: 1 @@ -32492,18 +32521,18 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR105W - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YJR105W" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 2.7.1.20 - - bigg.reaction: ADNK1 - - kegg.reaction: R00185 - - metanetx.reaction: MNXR95456 - - sbo: SBO:0000176 + - ec-code: "2.7.1.20" + - bigg.reaction: "ADNK1" + - kegg.reaction: "R00185" + - metanetx.reaction: "MNXR95456" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0143 - - name: adenosine monophosphate deaminase + - id: "r_0143" + - name: "adenosine monophosphate deaminase" - metabolites: !!omap - s_0419: 1 - s_0423: -1 @@ -32512,21 +32541,21 @@ - s_0849: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML035C + - gene_reaction_rule: "YML035C" - subsystem: - - sce00230 Purine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 3.5.4.6 - - bigg.reaction: AMPDA - - kegg.reaction: R00181 - - metanetx.reaction: MNXR95824 - - sbo: SBO:0000176 + - ec-code: "3.5.4.6" + - bigg.reaction: "AMPDA" + - kegg.reaction: "R00181" + - metanetx.reaction: "MNXR95824" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0144 - - name: adenosylhomocysteinase + - id: "r_0144" + - name: "adenosylhomocysteinase" - metabolites: !!omap - s_0386: 1 - s_0803: -1 @@ -32534,19 +32563,19 @@ - s_1413: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER043C - - subsystem: sce00270 Cysteine and methionine metabolism + - gene_reaction_rule: "YER043C" + - subsystem: "sce00270 Cysteine and methionine metabolism" - annotation: !!omap - - ec-code: 3.3.1.1 - - bigg.reaction: AHCi - - kegg.reaction: R00192 - - metanetx.reaction: MNXR95492 - - pmid: 15556636 - - sbo: SBO:0000176 + - ec-code: "3.3.1.1" + - bigg.reaction: "AHCi" + - kegg.reaction: "R00192" + - metanetx.reaction: "MNXR95492" + - pmid: "15556636" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0145 - - name: adenosylmethionine decarboxylase + - id: "r_0145" + - name: "adenosylmethionine decarboxylase" - metabolites: !!omap - s_0456: 1 - s_0794: -1 @@ -32554,21 +32583,21 @@ - s_1420: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL052C + - gene_reaction_rule: "YOL052C" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00330 Arginine and proline metabolism + - "sce00270 Cysteine and methionine metabolism" + - "sce00330 Arginine and proline metabolism" - annotation: !!omap - - ec-code: 4.1.1.50 - - bigg.reaction: ADMDC - - kegg.reaction: R00178 - - metanetx.reaction: MNXR95455 - - pmid: 3087344 - - sbo: SBO:0000176 + - ec-code: "4.1.1.50" + - bigg.reaction: "ADMDC" + - kegg.reaction: "R00178" + - metanetx.reaction: "MNXR95455" + - pmid: "3087344" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0146 - - name: adenosylmethionine-8-amino-7-oxononanoate transaminase + - id: "r_0146" + - name: "adenosylmethionine-8-amino-7-oxononanoate transaminase" - metabolites: !!omap - s_0341: 1 - s_0352: -1 @@ -32576,83 +32605,83 @@ - s_1416: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR058W - - subsystem: sce00780 Biotin metabolism + - gene_reaction_rule: "YNR058W" + - subsystem: "sce00780 Biotin metabolism" - annotation: !!omap - - ec-code: 2.6.1.62 - - bigg.reaction: AMAOTr - - kegg.reaction: R03231 - - metanetx.reaction: MNXR95806 - - sbo: SBO:0000176 + - ec-code: "2.6.1.62" + - bigg.reaction: "AMAOTr" + - kegg.reaction: "R03231" + - metanetx.reaction: "MNXR95806" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0147 - - name: adenylate cyclase + - id: "r_0147" + - name: "adenylate cyclase" - metabolites: !!omap - s_0192: 1 - s_0434: -1 - s_0633: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL005W + - gene_reaction_rule: "YJL005W" - subsystem: - - sce00230 Purine metabolism - - sce04113 Meiosis - yeast - - sce04213 Longevity regulating pathway - multiple species + - "sce00230 Purine metabolism" + - "sce04113 Meiosis - yeast" + - "sce04213 Longevity regulating pathway - multiple species" - annotation: !!omap - - ec-code: 4.6.1.1 - - bigg.reaction: ADNCYC - - kegg.reaction: R00089 - - metanetx.reaction: MNXR95444 - - sbo: SBO:0000176 + - ec-code: "4.6.1.1" + - bigg.reaction: "ADNCYC" + - kegg.reaction: "R00089" + - metanetx.reaction: "MNXR95444" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0148 - - name: adenylate kinase + - id: "r_0148" + - name: "adenylate kinase" - metabolites: !!omap - s_0394: 2 - s_0423: -1 - s_0434: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL166C or YDR226W + - gene_reaction_rule: "YDL166C or YDR226W" - subsystem: - - sce00230 Purine metabolism - - sce00730 Thiamine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00730 Thiamine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.3 - - bigg.reaction: ADK1 - - kegg.reaction: R00127 - - metanetx.reaction: MNXR95450 - - sbo: SBO:0000176 + - ec-code: "2.7.4.3" + - bigg.reaction: "ADK1" + - kegg.reaction: "R00127" + - metanetx.reaction: "MNXR95450" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0149 - - name: adenylate kinase + - id: "r_0149" + - name: "adenylate kinase" - metabolites: !!omap - s_0397: 2 - s_0424: -1 - s_0437: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER170W + - gene_reaction_rule: "YER170W" - subsystem: - - sce00230 Purine metabolism - - sce00730 Thiamine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00730 Thiamine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.10 - - bigg.reaction: ADK1m - - kegg.reaction: R00127 - - metanetx.reaction: MNXR95450 - - sbo: SBO:0000176 + - ec-code: "2.7.4.10" + - bigg.reaction: "ADK1m" + - kegg.reaction: "R00127" + - metanetx.reaction: "MNXR95450" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0150 - - name: adenylate kinase (GTP) + - id: "r_0150" + - name: "adenylate kinase (GTP)" - metabolites: !!omap - s_0397: 1 - s_0424: -1 @@ -32660,65 +32689,65 @@ - s_0786: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER170W + - gene_reaction_rule: "YER170W" - subsystem: - - sce00230 Purine metabolism - - sce00730 Thiamine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00730 Thiamine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.10 - - bigg.reaction: ADK3m - - metanetx.reaction: MNXR95452 - - sbo: SBO:0000176 + - ec-code: "2.7.4.10" + - bigg.reaction: "ADK3m" + - metanetx.reaction: "MNXR95452" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0151 - - name: adenylosuccinate lyase (AICAR) + - id: "r_0151" + - name: "adenylosuccinate lyase (AICAR)" - metabolites: !!omap - s_0299: -1 - s_0403: 1 - s_0725: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR359W + - gene_reaction_rule: "YLR359W" - subsystem: - - sce00230 Purine metabolism - - sce00250 Alanine, aspartate and glutamate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 4.3.2.2 - - bigg.reaction: ADSL2r - - kegg.reaction: R04559 - - metanetx.reaction: MNXR108966 - - sbo: SBO:0000176 + - ec-code: "4.3.2.2" + - bigg.reaction: "ADSL2r" + - kegg.reaction: "R04559" + - metanetx.reaction: "MNXR108966" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0152 - - name: adenylosuccinate lyase + - id: "r_0152" + - name: "adenylosuccinate lyase" - metabolites: !!omap - s_0393: -1 - s_0423: 1 - s_0725: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR359W + - gene_reaction_rule: "YLR359W" - subsystem: - - sce00230 Purine metabolism - - sce00250 Alanine, aspartate and glutamate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 4.3.2.2 - - bigg.reaction: ADSL1r - - kegg.reaction: R01083 - - metanetx.reaction: MNXR95493 - - sbo: SBO:0000176 + - ec-code: "4.3.2.2" + - bigg.reaction: "ADSL1r" + - kegg.reaction: "R01083" + - metanetx.reaction: "MNXR95493" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0153 - - name: adenylosuccinate synthase + - id: "r_0153" + - name: "adenylosuccinate synthase" - metabolites: !!omap - s_0393: 1 - s_0739: 1 @@ -32729,20 +32758,20 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL220W + - gene_reaction_rule: "YNL220W" - subsystem: - - sce00230 Purine metabolism - - sce00250 Alanine, aspartate and glutamate metabolism + - "sce00230 Purine metabolism" + - "sce00250 Alanine, aspartate and glutamate metabolism" - annotation: !!omap - - ec-code: 6.3.4.4 - - bigg.reaction: ADSS - - kegg.reaction: R01135 - - metanetx.reaction: MNXR95495 - - sbo: SBO:0000176 + - ec-code: "6.3.4.4" + - bigg.reaction: "ADSS" + - kegg.reaction: "R01135" + - metanetx.reaction: "MNXR95495" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0154 - - name: adenylyl-sulfate kinase + - id: "r_0154" + - name: "adenylyl-sulfate kinase" - metabolites: !!omap - s_0201: 1 - s_0298: -1 @@ -32751,21 +32780,21 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL001C + - gene_reaction_rule: "YKL001C" - subsystem: - - sce00230 Purine metabolism - - sce00920 Sulfur metabolism + - "sce00230 Purine metabolism" + - "sce00920 Sulfur metabolism" - annotation: !!omap - - ec-code: 2.7.1.25 - - bigg.reaction: ADSK - - kegg.reaction: R00509 - - metanetx.reaction: MNXR95159 - - pmid: 1654509 - - sbo: SBO:0000176 + - ec-code: "2.7.1.25" + - bigg.reaction: "ADSK" + - kegg.reaction: "R00509" + - metanetx.reaction: "MNXR95159" + - pmid: "1654509" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0155 - - name: ADP-ribose 2,3-cyclic phosphodiesterase + - id: "r_0155" + - name: "ADP-ribose 2,3-cyclic phosphodiesterase" - metabolites: !!omap - s_0131: -1 - s_0389: 1 @@ -32773,17 +32802,17 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR247W + - gene_reaction_rule: "YGR247W" - annotation: !!omap - - ec-code: 3.1.4.37 - - bigg.reaction: 23CAPPD - - metanetx.reaction: MNXR117324 - - pmid: 10734185 - - sbo: SBO:0000176 + - ec-code: "3.1.4.37" + - bigg.reaction: "23CAPPD" + - metanetx.reaction: "MNXR117324" + - pmid: "10734185" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0156 - - name: alanine glyoxylate aminotransferase + - id: "r_0156" + - name: "alanine glyoxylate aminotransferase" - metabolites: !!omap - s_0779: -1 - s_0955: -1 @@ -32791,25 +32820,25 @@ - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFL030W + - gene_reaction_rule: "YFL030W" - subsystem: - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00260 Glycine, serine and threonine metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce04146 Peroxisome + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.6.1.44 - - bigg.reaction: AGTi - - kegg.reaction: R00369 - - metanetx.reaction: MNXR95618 - - sbo: SBO:0000176 + - ec-code: "2.6.1.44" + - bigg.reaction: "AGTi" + - kegg.reaction: "R00369" + - metanetx.reaction: "MNXR95618" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0157 - - name: alanyl-tRNA synthetase + - id: "r_0157" + - name: "alanyl-tRNA synthetase" - metabolites: !!omap - s_0404: 1 - s_0423: 1 @@ -32819,19 +32848,19 @@ - s_1582: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR335C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YOR335C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.7 - - bigg.reaction: ALATRS - - kegg.reaction: R03038 - - metanetx.reaction: MNXR107903 - - pmid: 7761427 - - sbo: SBO:0000176 + - ec-code: "6.1.1.7" + - bigg.reaction: "ALATRS" + - kegg.reaction: "R03038" + - metanetx.reaction: "MNXR107903" + - pmid: "7761427" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0158 - - name: alcohol acetyltransferase (2-methylbutanol) + - id: "r_0158" + - name: "alcohol acetyltransferase (2-methylbutanol)" - metabolites: !!omap - s_0169: -1 - s_0172: 1 @@ -32839,17 +32868,17 @@ - s_0529: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR177C or YOR377W + - gene_reaction_rule: "YGR177C or YOR377W" - annotation: !!omap - - ec-code: 2.3.1.84 - - bigg.reaction: OHACT3 - - metanetx.reaction: MNXR102165 - - pmid: 12957907 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - bigg.reaction: "OHACT3" + - metanetx.reaction: "MNXR102165" + - pmid: "12957907" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0159 - - name: alcohol acetyltransferase (ethanol) + - id: "r_0159" + - name: "alcohol acetyltransferase (ethanol)" - metabolites: !!omap - s_0373: -1 - s_0529: 1 @@ -32857,16 +32886,16 @@ - s_0685: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR177C or YOR377W + - gene_reaction_rule: "YGR177C or YOR377W" - annotation: !!omap - - ec-code: 2.3.1.84 - - metanetx.reaction: MNXR117501 - - pmid: 12957907 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - metanetx.reaction: "MNXR117501" + - pmid: "12957907" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0160 - - name: alcohol acetyltransferase (isoamyl alcohol) + - id: "r_0160" + - name: "alcohol acetyltransferase (isoamyl alcohol)" - metabolites: !!omap - s_0373: -1 - s_0529: 1 @@ -32874,17 +32903,17 @@ - s_0929: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR177C or YOR377W + - gene_reaction_rule: "YGR177C or YOR377W" - annotation: !!omap - - ec-code: 2.3.1.84 - - bigg.reaction: OHACT2 - - metanetx.reaction: MNXR102164 - - pmid: 12957907 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - bigg.reaction: "OHACT2" + - metanetx.reaction: "MNXR102164" + - pmid: "12957907" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0161 - - name: alcohol acetyltransferase (isobutyl alcohol) + - id: "r_0161" + - name: "alcohol acetyltransferase (isobutyl alcohol)" - metabolites: !!omap - s_0373: -1 - s_0529: 1 @@ -32892,17 +32921,17 @@ - s_0935: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR177C or YOR377W + - gene_reaction_rule: "YGR177C or YOR377W" - annotation: !!omap - - ec-code: 2.3.1.84 - - bigg.reaction: OHACT4 - - metanetx.reaction: MNXR102166 - - pmid: 12957907 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - bigg.reaction: "OHACT4" + - metanetx.reaction: "MNXR102166" + - pmid: "12957907" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0162 - - name: alcohol acetyltransferase (phenylethanol alcohol) + - id: "r_0162" + - name: "alcohol acetyltransferase (phenylethanol alcohol)" - metabolites: !!omap - s_0185: -1 - s_0373: -1 @@ -32910,17 +32939,17 @@ - s_1316: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR177C or YOR377W + - gene_reaction_rule: "YGR177C or YOR377W" - annotation: !!omap - - ec-code: 2.3.1.84 - - bigg.reaction: OHACT5 - - metanetx.reaction: MNXR102167 - - pmid: 12957907 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - bigg.reaction: "OHACT5" + - metanetx.reaction: "MNXR102167" + - pmid: "12957907" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0163 - - name: alcohol dehydrogenase (ethanol to acetaldehyde) + - id: "r_0163" + - name: "alcohol dehydrogenase (ethanol to acetaldehyde)" - metabolites: !!omap - s_0359: 1 - s_0680: -1 @@ -32929,24 +32958,24 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR303C + - gene_reaction_rule: "YMR303C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.1 - - bigg.reaction: ALCD2x - - kegg.reaction: R00754 - - metanetx.reaction: MNXR95725 - - pmid: 12702265 - - sbo: SBO:0000176 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD2x" + - kegg.reaction: "R00754" + - metanetx.reaction: "MNXR95725" + - pmid: "12702265" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0164 - - name: alcohol dehydrogenase (glycerol, NADP) + - id: "r_0164" + - name: "alcohol dehydrogenase (glycerol, NADP)" - metabolites: !!omap - s_0570: -1 - s_0765: 1 @@ -32955,21 +32984,21 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR368W or YHR104W - - subsystem: sce00040 Pentose and glucuronate interconversions + - gene_reaction_rule: "YDR368W or YHR104W" + - subsystem: "sce00040 Pentose and glucuronate interconversions" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.21 - - bigg.reaction: ALCD19y - - kegg.reaction: R01041 - - metanetx.reaction: MNXR95711 - - pmid: 12210903 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.21" + - bigg.reaction: "ALCD19y" + - kegg.reaction: "R01041" + - metanetx.reaction: "MNXR95711" + - pmid: "12210903" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0165 - - name: mitochondrial alcohol dehydrogenase + - id: "r_0165" + - name: "mitochondrial alcohol dehydrogenase" - metabolites: !!omap - s_0361: -1 - s_0682: 1 @@ -32978,24 +33007,24 @@ - s_1205: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL256W or YMR083W + - gene_reaction_rule: "YGL256W or YMR083W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.1 - - bigg.reaction: ALCD2irm - - kegg.reaction: R00754 - - metanetx.reaction: MNXR95725 - - pmid: 12499363 - - sbo: SBO:0000176 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD2irm" + - kegg.reaction: "R00754" + - metanetx.reaction: "MNXR95725" + - pmid: "12499363" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0166 - - name: aldehyde dehydrogenase (2-methylbutanol, NAD) + - id: "r_0166" + - name: "aldehyde dehydrogenase (2-methylbutanol, NAD)" - metabolites: !!omap - s_0166: -1 - s_0169: 1 @@ -33004,27 +33033,27 @@ - s_1203: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR145W or YDL168W or YOL086C + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.1 - - 1.1.1.284 - - bigg.reaction: ALCD22xi - - metanetx.reaction: MNXR95716 - - pmid: 12702265 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" + - bigg.reaction: "ALCD22xi" + - metanetx.reaction: "MNXR95716" + - pmid: "12702265" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0167 - - name: aldehyde dehydrogenase (2-methylbutanol, NAD) + - id: "r_0167" + - name: "aldehyde dehydrogenase (2-methylbutanol, NAD)" - metabolites: !!omap - s_0168: -1 - s_0171: 1 @@ -33033,23 +33062,23 @@ - s_1205: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL256W or YMR083W + - gene_reaction_rule: "YGL256W or YMR083W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.1 - - bigg.reaction: ALCD22xim - - metanetx.reaction: MNXR95716 - - pmid: 12499363 - - sbo: SBO:0000176 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD22xim" + - metanetx.reaction: "MNXR95716" + - pmid: "12499363" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0168 - - name: aldehyde dehydrogenase (2-methylbutanol, NADP) + - id: "r_0168" + - name: "aldehyde dehydrogenase (2-methylbutanol, NADP)" - metabolites: !!omap - s_0166: -1 - s_0169: 1 @@ -33058,27 +33087,27 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR105W or YDR368W or YMR318C + - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00040 Pentose and glucuronate interconversions - - sce00561 Glycerolipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00040 Pentose and glucuronate interconversions" + - "sce00561 Glycerolipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.2 - - bigg.reaction: ALCD22yi - - metanetx.reaction: MNXR95717 + - "1.1.1.-" + - "1.1.1.2" + - bigg.reaction: "ALCD22yi" + - metanetx.reaction: "MNXR95717" - pmid: - - 12210903 - - 12423374 - - sbo: SBO:0000176 + - "12210903" + - "12423374" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0169 - - name: aldehyde dehydrogenase (2-phenylethanol, NAD) + - id: "r_0169" + - name: "aldehyde dehydrogenase (2-phenylethanol, NAD)" - metabolites: !!omap - s_0185: 1 - s_0794: -1 @@ -33087,28 +33116,28 @@ - s_1318: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR145W or YDL168W or YOL086C + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.1 - - 1.1.1.284 - - bigg.reaction: ALCD25xi - - kegg.reaction: R02611 - - metanetx.reaction: MNXR95722 - - pmid: 12702265 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" + - bigg.reaction: "ALCD25xi" + - kegg.reaction: "R02611" + - metanetx.reaction: "MNXR95722" + - pmid: "12702265" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0170 - - name: aldehyde dehydrogenase (2-phenylethanol, NAD) + - id: "r_0170" + - name: "aldehyde dehydrogenase (2-phenylethanol, NAD)" - metabolites: !!omap - s_0187: 1 - s_0799: -1 @@ -33117,24 +33146,24 @@ - s_1320: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL256W or YMR083W + - gene_reaction_rule: "YGL256W or YMR083W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.1 - - bigg.reaction: ALCD25xim - - kegg.reaction: R02611 - - metanetx.reaction: MNXR95722 - - pmid: 12499363 - - sbo: SBO:0000176 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD25xim" + - kegg.reaction: "R02611" + - metanetx.reaction: "MNXR95722" + - pmid: "12499363" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0171 - - name: aldehyde dehydrogenase (2-phenylethanol, NADP) + - id: "r_0171" + - name: "aldehyde dehydrogenase (2-phenylethanol, NADP)" - metabolites: !!omap - s_0185: 1 - s_0794: -1 @@ -33143,25 +33172,25 @@ - s_1318: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR105W or YMR318C + - gene_reaction_rule: "YCR105W or YMR318C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00040 Pentose and glucuronate interconversions - - sce00561 Glycerolipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00040 Pentose and glucuronate interconversions" + - "sce00561 Glycerolipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.2 - - bigg.reaction: ALCD25yi - - metanetx.reaction: MNXR95723 + - ec-code: "1.1.1.2" + - bigg.reaction: "ALCD25yi" + - metanetx.reaction: "MNXR95723" - pmid: - - 11742541 - - 12423374 - - sbo: SBO:0000176 + - "11742541" + - "12423374" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0172 - - name: aldehyde dehydrogenase (3-aminopropanal, NAD) + - id: "r_0172" + - name: "aldehyde dehydrogenase (3-aminopropanal, NAD)" - metabolites: !!omap - s_0208: -1 - s_0441: 1 @@ -33171,25 +33200,25 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR110C or YMR169C or YMR170C + - gene_reaction_rule: "YMR110C or YMR169C or YMR170C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00340 Histidine metabolism - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00410 beta-Alanine metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00340 Histidine metabolism" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 1.2.1.3 - - bigg.reaction: ALDD22x - - kegg.reaction: R00904 - - metanetx.reaction: MNXR95748 - - pmid: 12586697 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - bigg.reaction: "ALDD22x" + - kegg.reaction: "R00904" + - metanetx.reaction: "MNXR95748" + - pmid: "12586697" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0173 - - name: aldehyde dehydrogenase (acetaldehyde, NADP) + - id: "r_0173" + - name: "aldehyde dehydrogenase (acetaldehyde, NADP)" - metabolites: !!omap - s_0359: -1 - s_0362: 1 @@ -33199,31 +33228,31 @@ - s_1212: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL061W + - gene_reaction_rule: "YPL061W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce00310 Lysine degradation - - sce00330 Arginine and proline metabolism - - sce00340 Histidine metabolism - - sce00380 Tryptophan metabolism - - sce00410 beta-Alanine metabolism - - sce00561 Glycerolipid metabolism - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00310 Lysine degradation" + - "sce00330 Arginine and proline metabolism" + - "sce00340 Histidine metabolism" + - "sce00380 Tryptophan metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce00561 Glycerolipid metabolism" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.2.1.4 - - bigg.reaction: ALDD2y - - kegg.reaction: R00711 - - metanetx.reaction: MNXR95750 - - pmid: 15256563 - - sbo: SBO:0000176 + - ec-code: "1.2.1.4" + - bigg.reaction: "ALDD2y" + - kegg.reaction: "R00711" + - metanetx.reaction: "MNXR95750" + - pmid: "15256563" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0174 - - name: aldehyde dehydrogenase (acetylaldehyde, NAD) + - id: "r_0174" + - name: "aldehyde dehydrogenase (acetylaldehyde, NAD)" - metabolites: !!omap - s_0361: -1 - s_0365: 1 @@ -33233,31 +33262,31 @@ - s_1205: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR374W + - gene_reaction_rule: "YOR374W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce00310 Lysine degradation - - sce00330 Arginine and proline metabolism - - sce00340 Histidine metabolism - - sce00380 Tryptophan metabolism - - sce00410 beta-Alanine metabolism - - sce00561 Glycerolipid metabolism - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00310 Lysine degradation" + - "sce00330 Arginine and proline metabolism" + - "sce00340 Histidine metabolism" + - "sce00380 Tryptophan metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce00561 Glycerolipid metabolism" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.2.1.5 - - bigg.reaction: ALDD2xm - - kegg.reaction: R00710 - - metanetx.reaction: MNXR95749 - - pmid: 15256563 - - sbo: SBO:0000176 + - ec-code: "1.2.1.5" + - bigg.reaction: "ALDD2xm" + - kegg.reaction: "R00710" + - metanetx.reaction: "MNXR95749" + - pmid: "15256563" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0175 - - name: aldehyde dehydrogenase (acetylaldehyde, NADP) + - id: "r_0175" + - name: "aldehyde dehydrogenase (acetylaldehyde, NADP)" - metabolites: !!omap - s_0361: -1 - s_0365: 1 @@ -33267,31 +33296,31 @@ - s_1214: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER073W or YOR374W + - gene_reaction_rule: "YER073W or YOR374W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce00310 Lysine degradation - - sce00330 Arginine and proline metabolism - - sce00340 Histidine metabolism - - sce00380 Tryptophan metabolism - - sce00410 beta-Alanine metabolism - - sce00561 Glycerolipid metabolism - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00310 Lysine degradation" + - "sce00330 Arginine and proline metabolism" + - "sce00340 Histidine metabolism" + - "sce00380 Tryptophan metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce00561 Glycerolipid metabolism" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.2.1.5 - - bigg.reaction: ALDD2ym - - kegg.reaction: R00711 - - metanetx.reaction: MNXR95750 - - pmid: 15256563 - - sbo: SBO:0000176 + - ec-code: "1.2.1.5" + - bigg.reaction: "ALDD2ym" + - kegg.reaction: "R00711" + - metanetx.reaction: "MNXR95750" + - pmid: "15256563" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0176 - - name: aldehyde dehydrogenase (indole-3-acetaldehyde, NAD) + - id: "r_0176" + - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NAD)" - metabolites: !!omap - s_0799: 2 - s_0807: -1 @@ -33301,30 +33330,30 @@ - s_1205: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR374W + - gene_reaction_rule: "YOR374W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce00310 Lysine degradation - - sce00330 Arginine and proline metabolism - - sce00340 Histidine metabolism - - sce00380 Tryptophan metabolism - - sce00410 beta-Alanine metabolism - - sce00561 Glycerolipid metabolism - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00310 Lysine degradation" + - "sce00330 Arginine and proline metabolism" + - "sce00340 Histidine metabolism" + - "sce00380 Tryptophan metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce00561 Glycerolipid metabolism" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.2.1.5 - - bigg.reaction: ALDD20xm - - kegg.reaction: R02678 - - metanetx.reaction: MNXR95744 - - sbo: SBO:0000176 + - ec-code: "1.2.1.5" + - bigg.reaction: "ALDD20xm" + - kegg.reaction: "R02678" + - metanetx.reaction: "MNXR95744" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0177 - - name: aldehyde dehydrogenase (indole-3-acetaldehyde, NADP) + - id: "r_0177" + - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NADP)" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -33334,29 +33363,29 @@ - s_1212: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL061W + - gene_reaction_rule: "YPL061W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce00310 Lysine degradation - - sce00330 Arginine and proline metabolism - - sce00340 Histidine metabolism - - sce00380 Tryptophan metabolism - - sce00410 beta-Alanine metabolism - - sce00561 Glycerolipid metabolism - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00310 Lysine degradation" + - "sce00330 Arginine and proline metabolism" + - "sce00340 Histidine metabolism" + - "sce00380 Tryptophan metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce00561 Glycerolipid metabolism" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.2.1.4 - - bigg.reaction: ALDD20y - - metanetx.reaction: MNXR95746 - - sbo: SBO:0000176 + - ec-code: "1.2.1.4" + - bigg.reaction: "ALDD20y" + - metanetx.reaction: "MNXR95746" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0178 - - name: aldehyde dehydrogenase (indole-3-acetaldehyde, NADP) + - id: "r_0178" + - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NADP)" - metabolites: !!omap - s_0799: 2 - s_0807: -1 @@ -33366,30 +33395,30 @@ - s_1214: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER073W or YOR374W + - gene_reaction_rule: "YER073W or YOR374W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce00310 Lysine degradation - - sce00330 Arginine and proline metabolism - - sce00340 Histidine metabolism - - sce00380 Tryptophan metabolism - - sce00410 beta-Alanine metabolism - - sce00561 Glycerolipid metabolism - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00310 Lysine degradation" + - "sce00330 Arginine and proline metabolism" + - "sce00340 Histidine metabolism" + - "sce00380 Tryptophan metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce00561 Glycerolipid metabolism" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.2.1.5 - - bigg.reaction: ALDD20ym - - metanetx.reaction: MNXR95746 - - pmid: 9675847 - - sbo: SBO:0000176 + - ec-code: "1.2.1.5" + - bigg.reaction: "ALDD20ym" + - metanetx.reaction: "MNXR95746" + - pmid: "9675847" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0179 - - name: aldehyde dehydrogenase (isoamyl alcohol, NAD) + - id: "r_0179" + - name: "aldehyde dehydrogenase (isoamyl alcohol, NAD)" - metabolites: !!omap - s_0234: -1 - s_0794: -1 @@ -33398,28 +33427,28 @@ - s_1203: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR145W or YDL168W or YOL086C + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.1 - - 1.1.1.284 - - bigg.reaction: ALCD24xi - - kegg.reaction: R05685 - - metanetx.reaction: MNXR138038 - - pmid: 12702265 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" + - bigg.reaction: "ALCD24xi" + - kegg.reaction: "R05685" + - metanetx.reaction: "MNXR138038" + - pmid: "12702265" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0180 - - name: aldehyde dehydrogenase (isoamyl alcohol, NAD) + - id: "r_0180" + - name: "aldehyde dehydrogenase (isoamyl alcohol, NAD)" - metabolites: !!omap - s_0236: -1 - s_0799: -1 @@ -33428,24 +33457,24 @@ - s_1205: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL256W or YMR083W + - gene_reaction_rule: "YGL256W or YMR083W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.1 - - bigg.reaction: ALCD24xim - - kegg.reaction: R05685 - - metanetx.reaction: MNXR138038 - - pmid: 12499363 - - sbo: SBO:0000176 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD24xim" + - kegg.reaction: "R05685" + - metanetx.reaction: "MNXR138038" + - pmid: "12499363" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0181 - - name: aldehyde dehydrogenase (isoamyl alcohol, NADP) + - id: "r_0181" + - name: "aldehyde dehydrogenase (isoamyl alcohol, NADP)" - metabolites: !!omap - s_0234: -1 - s_0794: -1 @@ -33454,26 +33483,26 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR105W or YMR318C + - gene_reaction_rule: "YCR105W or YMR318C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00040 Pentose and glucuronate interconversions - - sce00561 Glycerolipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00040 Pentose and glucuronate interconversions" + - "sce00561 Glycerolipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.2 - - bigg.reaction: ALCD24yi - - kegg.reaction: R05686 - - metanetx.reaction: MNXR138039 + - ec-code: "1.1.1.2" + - bigg.reaction: "ALCD24yi" + - kegg.reaction: "R05686" + - metanetx.reaction: "MNXR138039" - pmid: - - 11742541 - - 12423374 - - sbo: SBO:0000176 + - "11742541" + - "12423374" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0182 - - name: aldehyde dehydrogenase (isobutyl alcohol, NAD) + - id: "r_0182" + - name: "aldehyde dehydrogenase (isobutyl alcohol, NAD)" - metabolites: !!omap - s_0794: -1 - s_0932: 1 @@ -33482,27 +33511,27 @@ - s_1203: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR145W or YDL168W or YOL086C + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.1 - - 1.1.1.284 - - bigg.reaction: ALCD23xi - - metanetx.reaction: MNXR95718 - - pmid: 12702265 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" + - bigg.reaction: "ALCD23xi" + - metanetx.reaction: "MNXR95718" + - pmid: "12702265" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0183 - - name: aldehyde dehydrogenase (isobutyl alcohol, NAD) + - id: "r_0183" + - name: "aldehyde dehydrogenase (isobutyl alcohol, NAD)" - metabolites: !!omap - s_0799: -1 - s_0934: 1 @@ -33511,23 +33540,23 @@ - s_1205: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL256W or YMR083W + - gene_reaction_rule: "YGL256W or YMR083W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.1 - - bigg.reaction: ALCD23xim - - metanetx.reaction: MNXR95718 - - pmid: 12499363 - - sbo: SBO:0000176 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD23xim" + - metanetx.reaction: "MNXR95718" + - pmid: "12499363" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0184 - - name: aldehyde dehydrogenase (isobutyl alcohol, NADP) + - id: "r_0184" + - name: "aldehyde dehydrogenase (isobutyl alcohol, NADP)" - metabolites: !!omap - s_0794: -1 - s_0932: 1 @@ -33536,25 +33565,25 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR105W or YMR318C + - gene_reaction_rule: "YCR105W or YMR318C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00040 Pentose and glucuronate interconversions - - sce00561 Glycerolipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00040 Pentose and glucuronate interconversions" + - "sce00561 Glycerolipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.2 - - bigg.reaction: ALCD23yi - - metanetx.reaction: MNXR95719 + - ec-code: "1.1.1.2" + - bigg.reaction: "ALCD23yi" + - metanetx.reaction: "MNXR95719" - pmid: - - 11742541 - - 12423374 - - sbo: SBO:0000176 + - "11742541" + - "12423374" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0185 - - name: aldehyde dehydrogenase (phenylacetaldehyde, NAD) + - id: "r_0185" + - name: "aldehyde dehydrogenase (phenylacetaldehyde, NAD)" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -33564,25 +33593,25 @@ - s_1321: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR169C or YMR170C + - gene_reaction_rule: "YMR169C or YMR170C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00340 Histidine metabolism - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00410 beta-Alanine metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00340 Histidine metabolism" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 1.2.1.3 - - bigg.reaction: ALDD19xr - - kegg.reaction: R02536 - - metanetx.reaction: MNXR95743 - - pmid: 8801420 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - bigg.reaction: "ALDD19xr" + - kegg.reaction: "R02536" + - metanetx.reaction: "MNXR95743" + - pmid: "8801420" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0186 - - name: aldehyde dehydrogenase (tryptophol, NAD) + - id: "r_0186" + - name: "aldehyde dehydrogenase (tryptophol, NAD)" - metabolites: !!omap - s_0794: -1 - s_0850: -1 @@ -33591,28 +33620,28 @@ - s_1529: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR145W or YDL168W or YOL086C + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.1 - - 1.1.1.284 - - bigg.reaction: ALCD26xi - - kegg.reaction: R02679 - - metanetx.reaction: MNXR95724 - - pmid: 12702265 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" + - bigg.reaction: "ALCD26xi" + - kegg.reaction: "R02679" + - metanetx.reaction: "MNXR95724" + - pmid: "12702265" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0187 - - name: aldehyde dehydrogenase (tryptophol, NAD) + - id: "r_0187" + - name: "aldehyde dehydrogenase (tryptophol, NAD)" - metabolites: !!omap - s_0799: -1 - s_0852: -1 @@ -33621,24 +33650,24 @@ - s_1531: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL256W or YMR083W + - gene_reaction_rule: "YGL256W or YMR083W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.1 - - bigg.reaction: ALCD26xim - - kegg.reaction: R02679 - - metanetx.reaction: MNXR95724 - - pmid: 12499363 - - sbo: SBO:0000176 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD26xim" + - kegg.reaction: "R02679" + - metanetx.reaction: "MNXR95724" + - pmid: "12499363" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0188 - - name: alkaline phosphatase (dihydroneopterin) + - id: "r_0188" + - name: "alkaline phosphatase (dihydroneopterin)" - metabolites: !!omap - s_0343: 1 - s_0346: -1 @@ -33647,23 +33676,23 @@ - s_1322: 3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR481C + - gene_reaction_rule: "YDR481C" - subsystem: - - sce00730 Thiamine metabolism - - sce00790 Folate biosynthesis + - "sce00730 Thiamine metabolism" + - "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: - - 3.1.3.1 - - 3.1.3.54 - - 3.1.7.6 - - bigg.reaction: AKP1 - - kegg.reaction: R04620 - - metanetx.reaction: MNXR139295 - - sbo: SBO:0000176 + - "3.1.3.1" + - "3.1.3.54" + - "3.1.7.6" + - bigg.reaction: "AKP1" + - kegg.reaction: "R04620" + - metanetx.reaction: "MNXR139295" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0189 - - name: allantoate amidinohydrolase + - id: "r_0189" + - name: "allantoate amidinohydrolase" - metabolites: !!omap - s_0405: -1 - s_0803: -1 @@ -33671,19 +33700,19 @@ - s_1555: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIR029W - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YIR029W" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 3.5.3.4 - - bigg.reaction: ALLTAHr - - kegg.reaction: R02422 - - metanetx.reaction: MNXR95767 - - pmid: 4604238 - - sbo: SBO:0000176 + - ec-code: "3.5.3.4" + - bigg.reaction: "ALLTAHr" + - kegg.reaction: "R02422" + - metanetx.reaction: "MNXR95767" + - pmid: "4604238" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0190 - - name: allantoinase, reaction + - id: "r_0190" + - name: "allantoinase, reaction" - metabolites: !!omap - s_0405: 1 - s_0407: -1 @@ -33691,19 +33720,19 @@ - s_0803: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIR027C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YIR027C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 3.5.2.5 - - bigg.reaction: ALLTN - - kegg.reaction: R02424 - - metanetx.reaction: MNXR95769 - - pmid: 4604238 - - sbo: SBO:0000176 + - ec-code: "3.5.2.5" + - bigg.reaction: "ALLTN" + - kegg.reaction: "R02424" + - metanetx.reaction: "MNXR95769" + - pmid: "4604238" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0191 - - name: allophanate hydrolase + - id: "r_0191" + - name: "allophanate hydrolase" - metabolites: !!omap - s_0419: 2 - s_0456: 2 @@ -33712,22 +33741,22 @@ - s_1554: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR208C + - gene_reaction_rule: "YBR208C" - subsystem: - - sce00220 Arginine biosynthesis - - sce00791 Atrazine degradation + - "sce00220 Arginine biosynthesis" + - "sce00791 Atrazine degradation" - annotation: !!omap - ec-code: - - 3.5.1.54 - - 6.3.4.6 - - bigg.reaction: ALPHNH - - kegg.reaction: R00005 - - metanetx.reaction: MNXR95786 - - sbo: SBO:0000176 + - "3.5.1.54" + - "6.3.4.6" + - bigg.reaction: "ALPHNH" + - kegg.reaction: "R00005" + - metanetx.reaction: "MNXR95786" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0192 - - name: alpha 1,2-mannosyltransferase + - id: "r_0192" + - name: "alpha 1,2-mannosyltransferase" - metabolites: !!omap - s_0414: 1 - s_0444: -1 @@ -33736,61 +33765,61 @@ - s_0797: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR199W or YBR205W or YDR483W or YJL139C or YKR061W or YNL029C or YOR099W or YPL053C + - gene_reaction_rule: "YBR199W or YBR205W or YDR483W or YJL139C or YKR061W or YNL029C or YOR099W or YPL053C" - subsystem: - - sce00513 Various types of N-glycan biosynthesis - - sce00514 Other types of O-glycan biosynthesis + - "sce00513 Various types of N-glycan biosynthesis" + - "sce00514 Other types of O-glycan biosynthesis" - annotation: !!omap - - ec-code: 2.4.1.- - - kegg.reaction: R05002 - - metanetx.reaction: MNXR109280 + - ec-code: "2.4.1.-" + - kegg.reaction: "R05002" + - metanetx.reaction: "MNXR109280" - pmid: - - 14752117 - - 21623372 - - 8631921 - - 9020857 - - sbo: SBO:0000176 + - "14752117" + - "21623372" + - "8631921" + - "9020857" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0193 - - name: alpha,alpha-trehalase + - id: "r_0193" + - name: "alpha,alpha-trehalase" - metabolites: !!omap - s_0566: 2 - s_0810: -1 - s_1522: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR026W or YBR001C - - subsystem: sce00500 Starch and sucrose metabolism + - gene_reaction_rule: "YPR026W or YBR001C" + - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - - ec-code: 3.2.1.28 - - bigg.reaction: TREHv - - kegg.reaction: R00010 - - metanetx.reaction: MNXR95163 - - sbo: SBO:0000176 + - ec-code: "3.2.1.28" + - bigg.reaction: "TREHv" + - kegg.reaction: "R00010" + - metanetx.reaction: "MNXR95163" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0194 - - name: alpha,alpha-trehalase + - id: "r_0194" + - name: "alpha,alpha-trehalase" - metabolites: !!omap - s_0563: 2 - s_0803: -1 - s_1520: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR001C - - subsystem: sce00500 Starch and sucrose metabolism + - gene_reaction_rule: "YDR001C" + - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - - ec-code: 3.2.1.28 - - bigg.reaction: TREH - - kegg.reaction: R00010 - - metanetx.reaction: MNXR95163 - - pmid: 8764988 - - sbo: SBO:0000176 + - ec-code: "3.2.1.28" + - bigg.reaction: "TREH" + - kegg.reaction: "R00010" + - metanetx.reaction: "MNXR95163" + - pmid: "8764988" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0195 - - name: alpha,alpha-trehalose-phosphate synthase (UDP-forming) + - id: "r_0195" + - name: "alpha,alpha-trehalose-phosphate synthase (UDP-forming)" - metabolites: !!omap - s_0409: 1 - s_0568: -1 @@ -33799,43 +33828,43 @@ - s_1543: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR126C and YDR074W and YML100W) or (YBR126C and YDR074W and YMR261C) - - subsystem: sce00500 Starch and sucrose metabolism + - gene_reaction_rule: "(YBR126C and YDR074W and YML100W) or (YBR126C and YDR074W and YMR261C)" + - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: - - 2.4.1.15 - - 3.1.3.12 - - bigg.reaction: TRE6PS - - kegg.reaction: R00836 - - metanetx.reaction: MNXR143415 - - pmid: 21623372 - - sbo: SBO:0000176 + - "2.4.1.15" + - "3.1.3.12" + - bigg.reaction: "TRE6PS" + - kegg.reaction: "R00836" + - metanetx.reaction: "MNXR143415" + - pmid: "21623372" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0198 - - name: alpha-glucosidase + - id: "r_0198" + - name: "alpha-glucosidase" - metabolites: !!omap - s_0563: 2 - s_0803: -1 - s_1105: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR299W or YGR287C or YGR292W or YIL172C or YJL216C or YJL221C + - gene_reaction_rule: "YBR299W or YGR287C or YGR292W or YIL172C or YJL216C or YJL221C" - subsystem: - - sce00052 Galactose metabolism - - sce00500 Starch and sucrose metabolism + - "sce00052 Galactose metabolism" + - "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: - - 3.2.1.10 - - 3.2.1.20 - - bigg.reaction: MALT - - kegg.reaction: R00028 - - metanetx.reaction: MNXR101350 - - sbo: SBO:0000176 + - "3.2.1.10" + - "3.2.1.20" + - bigg.reaction: "MALT" + - kegg.reaction: "R00028" + - metanetx.reaction: "MNXR101350" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0199 - - name: amidase + - id: "r_0199" + - name: "amidase" - metabolites: !!omap - s_0280: -1 - s_0281: 1 @@ -33843,18 +33872,18 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR242W or YMR293C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YDR242W or YMR293C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.3.5.7 - - bigg.reaction: AMID - - kegg.reaction: R03180 - - metanetx.reaction: MNXR95812 - - sbo: SBO:0000176 + - ec-code: "6.3.5.7" + - bigg.reaction: "AMID" + - kegg.reaction: "R03180" + - metanetx.reaction: "MNXR95812" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0200 - - name: Aminoacetone:oxygen oxidoreductase(deaminating)(flavin-containing) + - id: "r_0200" + - name: "Aminoacetone:oxygen oxidoreductase(deaminating)(flavin-containing)" - metabolites: !!omap - s_0418: -1 - s_0419: 1 @@ -33864,16 +33893,17 @@ - s_1275: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: AACTOOR - - kegg.reaction: R02529 - - metanetx.reaction: MNXR95149 - - pmid: 3086094 - - sbo: SBO:0000176 + - bigg.reaction: "AACTOOR" + - kegg.reaction: "R02529" + - metanetx.reaction: "MNXR95149" + - pmid: "3086094" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_0201 - - name: Aminobutyraldehyde dehydrogenase + - id: "r_0201" + - name: "Aminobutyraldehyde dehydrogenase" - metabolites: !!omap - s_0275: -1 - s_0738: 1 @@ -33883,30 +33913,30 @@ - s_1205: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR374W + - gene_reaction_rule: "YOR374W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce00310 Lysine degradation - - sce00330 Arginine and proline metabolism - - sce00340 Histidine metabolism - - sce00380 Tryptophan metabolism - - sce00410 beta-Alanine metabolism - - sce00561 Glycerolipid metabolism - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00310 Lysine degradation" + - "sce00330 Arginine and proline metabolism" + - "sce00340 Histidine metabolism" + - "sce00380 Tryptophan metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce00561 Glycerolipid metabolism" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.2.1.5 - - bigg.reaction: ABUTDm - - kegg.reaction: R02549 - - metanetx.reaction: MNXR95191 - - sbo: SBO:0000176 + - ec-code: "1.2.1.5" + - bigg.reaction: "ABUTDm" + - kegg.reaction: "R02549" + - metanetx.reaction: "MNXR95191" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0202 - - name: anthranilate phosphoribosyltransferase + - id: "r_0202" + - name: "anthranilate phosphoribosyltransferase" - metabolites: !!omap - s_0427: -1 - s_0633: 1 @@ -33914,22 +33944,22 @@ - s_1386: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR354W + - gene_reaction_rule: "YDR354W" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.4.2.18 - - bigg.reaction: ANPRT - - kegg.reaction: R01073 - - metanetx.reaction: MNXR95842 - - sbo: SBO:0000176 + - ec-code: "2.4.2.18" + - bigg.reaction: "ANPRT" + - kegg.reaction: "R01073" + - metanetx.reaction: "MNXR95842" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0203 - - name: anthranilate synthase + - id: "r_0203" + - name: "anthranilate synthase" - metabolites: !!omap - s_0427: 1 - s_0515: -1 @@ -33939,23 +33969,23 @@ - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER090W and YKL211C + - gene_reaction_rule: "YER090W and YKL211C" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.1.3.27 - - bigg.reaction: ANS - - kegg.reaction: R00986 - - metanetx.reaction: MNXR95843 - - pmid: 8001582 - - sbo: SBO:0000176 + - ec-code: "4.1.3.27" + - bigg.reaction: "ANS" + - kegg.reaction: "R00986" + - metanetx.reaction: "MNXR95843" + - pmid: "8001582" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0204 - - name: Ap4A hydrolase + - id: "r_0204" + - name: "Ap4A hydrolase" - metabolites: !!omap - s_0394: 2 - s_0794: 2 @@ -33963,18 +33993,18 @@ - s_1282: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR305C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YDR305C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 3.6.1.29 - - bigg.reaction: AP4AH - - kegg.reaction: R00125 - - metanetx.reaction: MNXR95856 - - sbo: SBO:0000176 + - ec-code: "3.6.1.29" + - bigg.reaction: "AP4AH" + - kegg.reaction: "R00125" + - metanetx.reaction: "MNXR95856" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0205 - - name: arabinose reductase + - id: "r_0205" + - name: "arabinose reductase" - metabolites: !!omap - s_0794: -1 - s_0961: 1 @@ -33983,20 +34013,20 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR104W - - subsystem: sce00040 Pentose and glucuronate interconversions + - gene_reaction_rule: "YHR104W" + - subsystem: "sce00040 Pentose and glucuronate interconversions" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.21 - - bigg.reaction: ARABR - - kegg.reaction: R01759 - - metanetx.reaction: MNXR107158 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.21" + - bigg.reaction: "ARABR" + - kegg.reaction: "R01759" + - metanetx.reaction: "MNXR107158" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0206 - - name: arginase + - id: "r_0206" + - name: "arginase" - metabolites: !!omap - s_0803: -1 - s_0965: -1 @@ -34004,46 +34034,46 @@ - s_1552: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL111W + - gene_reaction_rule: "YPL111W" - subsystem: - - sce00220 Arginine biosynthesis - - sce00330 Arginine and proline metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce00330 Arginine and proline metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 3.5.3.1 - - bigg.reaction: ARGN - - kegg.reaction: R00551 - - metanetx.reaction: MNXR95945 - - sbo: SBO:0000176 + - ec-code: "3.5.3.1" + - bigg.reaction: "ARGN" + - kegg.reaction: "R00551" + - metanetx.reaction: "MNXR95945" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0207 - - name: argininosuccinate lyase + - id: "r_0207" + - name: "argininosuccinate lyase" - metabolites: !!omap - s_0015: -1 - s_0725: 1 - s_0965: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR018C + - gene_reaction_rule: "YHR018C" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.3.2.1 - - bigg.reaction: ARGSL - - kegg.reaction: R01086 - - metanetx.reaction: MNXR138059 - - sbo: SBO:0000176 + - ec-code: "4.3.2.1" + - bigg.reaction: "ARGSL" + - kegg.reaction: "R01086" + - metanetx.reaction: "MNXR138059" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0208 - - name: argininosuccinate synthase + - id: "r_0208" + - name: "argininosuccinate synthase" - metabolites: !!omap - s_0015: 1 - s_0423: 1 @@ -34054,24 +34084,24 @@ - s_0979: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOL058W + - gene_reaction_rule: "YOL058W" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 6.3.4.5 - - bigg.reaction: ARGSS - - kegg.reaction: R01954 - - metanetx.reaction: MNXR138060 - - pmid: 35347 - - sbo: SBO:0000176 + - ec-code: "6.3.4.5" + - bigg.reaction: "ARGSS" + - kegg.reaction: "R01954" + - metanetx.reaction: "MNXR138060" + - pmid: "35347" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0209 - - name: arginyl-tRNA synthetase + - id: "r_0209" + - name: "arginyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0428: 1 @@ -34081,18 +34111,18 @@ - s_1583: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR341C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YDR341C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.19 - - bigg.reaction: ARGTRS - - kegg.reaction: R03646 - - metanetx.reaction: MNXR95950 - - sbo: SBO:0000176 + - ec-code: "6.1.1.19" + - bigg.reaction: "ARGTRS" + - kegg.reaction: "R03646" + - metanetx.reaction: "MNXR95950" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0210 - - name: arginyl-tRNA synthetase + - id: "r_0210" + - name: "arginyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0429: 1 @@ -34102,18 +34132,18 @@ - s_1584: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR091C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YHR091C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.19 - - bigg.reaction: ARGTRSm - - kegg.reaction: R03646 - - metanetx.reaction: MNXR95950 - - sbo: SBO:0000176 + - ec-code: "6.1.1.19" + - bigg.reaction: "ARGTRSm" + - kegg.reaction: "R03646" + - metanetx.reaction: "MNXR95950" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0211 - - name: asparagine synthase (glutamine-hydrolysing) + - id: "r_0211" + - name: "asparagine synthase (glutamine-hydrolysing)" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -34126,21 +34156,21 @@ - s_0999: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR124W or YPR145W + - gene_reaction_rule: "YGR124W or YPR145W" - subsystem: - - sce00250 Alanine, aspartate and glutamate metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 6.3.5.4 - - bigg.reaction: ASNS1 - - kegg.reaction: R00578 - - metanetx.reaction: MNXR96059 - - pmid: 9881155 - - sbo: SBO:0000176 + - ec-code: "6.3.5.4" + - bigg.reaction: "ASNS1" + - kegg.reaction: "R00578" + - metanetx.reaction: "MNXR96059" + - pmid: "9881155" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0212 - - name: Asparaginyl-tRNA synthetase + - id: "r_0212" + - name: "Asparaginyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0430: 1 @@ -34150,19 +34180,19 @@ - s_1585: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR019C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YHR019C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.22 - - bigg.reaction: ASNTRS - - kegg.reaction: R03648 - - metanetx.reaction: MNXR96064 - - pmid: 9605503 - - sbo: SBO:0000176 + - ec-code: "6.1.1.22" + - bigg.reaction: "ASNTRS" + - kegg.reaction: "R03648" + - metanetx.reaction: "MNXR96064" + - pmid: "9605503" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0213 - - name: asparaginyl-tRNA synthetase, miotchondrial + - id: "r_0213" + - name: "asparaginyl-tRNA synthetase, miotchondrial" - metabolites: !!omap - s_0424: 1 - s_0431: 1 @@ -34172,19 +34202,19 @@ - s_1586: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR024C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YCR024C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.22 - - bigg.reaction: ASNTRSm - - kegg.reaction: R03648 - - metanetx.reaction: MNXR96064 - - pmid: 9605503 - - sbo: SBO:0000176 + - ec-code: "6.1.1.22" + - bigg.reaction: "ASNTRSm" + - kegg.reaction: "R03648" + - metanetx.reaction: "MNXR96064" + - pmid: "9605503" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0214 - - name: aspartate carbamoyltransferase + - id: "r_0214" + - name: "aspartate carbamoyltransferase" - metabolites: !!omap - s_0455: -1 - s_0794: 1 @@ -34193,22 +34223,22 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL130C + - gene_reaction_rule: "YJL130C" - subsystem: - - sce00240 Pyrimidine metabolism - - sce00250 Alanine, aspartate and glutamate metabolism + - "sce00240 Pyrimidine metabolism" + - "sce00250 Alanine, aspartate and glutamate metabolism" - annotation: !!omap - ec-code: - - 2.1.3.2 - - 6.3.5.5 - - bigg.reaction: ASPCT - - kegg.reaction: R01397 - - metanetx.reaction: MNXR96080 - - sbo: SBO:0000176 + - "2.1.3.2" + - "6.3.5.5" + - bigg.reaction: "ASPCT" + - kegg.reaction: "R01397" + - metanetx.reaction: "MNXR96080" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0215 - - name: aspartate kinase + - id: "r_0215" + - name: "aspartate kinase" - metabolites: !!omap - s_0295: 1 - s_0394: 1 @@ -34216,27 +34246,27 @@ - s_0973: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER052C + - gene_reaction_rule: "YER052C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00261 Monobactam biosynthesis - - sce00270 Cysteine and methionine metabolism - - sce00300 Lysine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00261 Monobactam biosynthesis" + - "sce00270 Cysteine and methionine metabolism" + - "sce00300 Lysine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.7.2.4 - - bigg.reaction: ASPK - - kegg.reaction: R00480 - - metanetx.reaction: MNXR96085 - - pmid: 9315655 - - sbo: SBO:0000176 + - ec-code: "2.7.2.4" + - bigg.reaction: "ASPK" + - kegg.reaction: "R00480" + - metanetx.reaction: "MNXR96085" + - pmid: "9315655" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0216 - - name: aspartate transaminase + - id: "r_0216" + - name: "aspartate transaminase" - metabolites: !!omap - s_0180: -1 - s_0973: -1 @@ -34244,31 +34274,31 @@ - s_1271: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR027C + - gene_reaction_rule: "YLR027C" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00270 Cysteine and methionine metabolism - - sce00330 Arginine and proline metabolism - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00330 Arginine and proline metabolism" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.1 - - bigg.reaction: ASPTA - - kegg.reaction: R00355 - - metanetx.reaction: MNXR96079 - - pmid: 1859361 - - sbo: SBO:0000176 + - ec-code: "2.6.1.1" + - bigg.reaction: "ASPTA" + - kegg.reaction: "R00355" + - metanetx.reaction: "MNXR96079" + - pmid: "1859361" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0217 - - name: aspartate transaminase + - id: "r_0217" + - name: "aspartate transaminase" - metabolites: !!omap - s_0182: 1 - s_0975: 1 @@ -34276,31 +34306,31 @@ - s_1273: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL106W + - gene_reaction_rule: "YKL106W" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00270 Cysteine and methionine metabolism - - sce00330 Arginine and proline metabolism - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00330 Arginine and proline metabolism" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.1 - - bigg.reaction: ASPTAm - - kegg.reaction: R00355 - - metanetx.reaction: MNXR96079 - - pmid: 1482685 - - sbo: SBO:0000176 + - ec-code: "2.6.1.1" + - bigg.reaction: "ASPTAm" + - kegg.reaction: "R00355" + - metanetx.reaction: "MNXR96079" + - pmid: "1482685" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0218 - - name: aspartate transaminase + - id: "r_0218" + - name: "aspartate transaminase" - metabolites: !!omap - s_0184: -1 - s_0976: -1 @@ -34308,31 +34338,31 @@ - s_1274: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR027C + - gene_reaction_rule: "YLR027C" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00270 Cysteine and methionine metabolism - - sce00330 Arginine and proline metabolism - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00330 Arginine and proline metabolism" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.1 - - bigg.reaction: ASPTAp - - kegg.reaction: R00355 - - metanetx.reaction: MNXR96079 - - pmid: 9288922 - - sbo: SBO:0000176 + - ec-code: "2.6.1.1" + - bigg.reaction: "ASPTAp" + - kegg.reaction: "R00355" + - metanetx.reaction: "MNXR96079" + - pmid: "9288922" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0219 - - name: aspartate-semialdehyde dehydrogenase + - id: "r_0219" + - name: "aspartate-semialdehyde dehydrogenase" - metabolites: !!omap - s_0295: -1 - s_0794: -1 @@ -34342,27 +34372,27 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR158W + - gene_reaction_rule: "YDR158W" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00261 Monobactam biosynthesis - - sce00270 Cysteine and methionine metabolism - - sce00300 Lysine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00261 Monobactam biosynthesis" + - "sce00270 Cysteine and methionine metabolism" + - "sce00300 Lysine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.2.1.11 - - bigg.reaction: ASAD - - kegg.reaction: R02291 - - metanetx.reaction: MNXR96039 - - pmid: 2570346 - - sbo: SBO:0000176 + - ec-code: "1.2.1.11" + - bigg.reaction: "ASAD" + - kegg.reaction: "R02291" + - metanetx.reaction: "MNXR96039" + - pmid: "2570346" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0220 - - name: Aspartyl-tRNA synthetase + - id: "r_0220" + - name: "Aspartyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0432: 1 @@ -34372,19 +34402,19 @@ - s_1587: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL018C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YLL018C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.12 - - bigg.reaction: ASPTRS - - kegg.reaction: R05577 - - metanetx.reaction: MNXR96101 - - pmid: 3902099 - - sbo: SBO:0000176 + - ec-code: "6.1.1.12" + - bigg.reaction: "ASPTRS" + - kegg.reaction: "R05577" + - metanetx.reaction: "MNXR96101" + - pmid: "3902099" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0221 - - name: Aspartyl-tRNA synthetase + - id: "r_0221" + - name: "Aspartyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0433: 1 @@ -34394,19 +34424,19 @@ - s_1588: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL104W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YPL104W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.12 - - bigg.reaction: ASPTRSm - - kegg.reaction: R05577 - - metanetx.reaction: MNXR96101 - - pmid: 2668951 - - sbo: SBO:0000176 + - ec-code: "6.1.1.12" + - bigg.reaction: "ASPTRSm" + - kegg.reaction: "R05577" + - metanetx.reaction: "MNXR96101" + - pmid: "2668951" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0222 - - name: ATP adenylyltransferase + - id: "r_0222" + - name: "ATP adenylyltransferase" - metabolites: !!omap - s_0394: -1 - s_0434: -1 @@ -34415,20 +34445,20 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR530C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YDR530C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: - - 2.7.7.5 - - 2.7.7.53 - - bigg.reaction: ATPATF1 - - kegg.reaction: R00126 - - metanetx.reaction: MNXR95435 - - sbo: SBO:0000176 + - "2.7.7.5" + - "2.7.7.53" + - bigg.reaction: "ATPATF1" + - kegg.reaction: "R00126" + - metanetx.reaction: "MNXR95435" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0223 - - name: ATP adenylyltransferase + - id: "r_0223" + - name: "ATP adenylyltransferase" - metabolites: !!omap - s_0394: -1 - s_0785: -1 @@ -34437,21 +34467,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL050C + - gene_reaction_rule: "YCL050C" - subsystem: - - sce00230 Purine metabolism - - sce00920 Sulfur metabolism + - "sce00230 Purine metabolism" + - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: - - 2.7.7.5 - - 2.7.7.53 - - bigg.reaction: ATPATF2 - - metanetx.reaction: MNXR136085 - - sbo: SBO:0000176 + - "2.7.7.5" + - "2.7.7.53" + - bigg.reaction: "ATPATF2" + - metanetx.reaction: "MNXR136085" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0224 - - name: ATP adenylyltransferase + - id: "r_0224" + - name: "ATP adenylyltransferase" - metabolites: !!omap - s_0739: -1 - s_0785: -1 @@ -34460,21 +34490,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL050C + - gene_reaction_rule: "YCL050C" - subsystem: - - sce00230 Purine metabolism - - sce00920 Sulfur metabolism + - "sce00230 Purine metabolism" + - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: - - 2.7.7.5 - - 2.7.7.53 - - bigg.reaction: ATPATF3 - - metanetx.reaction: MNXR96127 - - sbo: SBO:0000176 + - "2.7.7.5" + - "2.7.7.53" + - bigg.reaction: "ATPATF3" + - metanetx.reaction: "MNXR96127" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0225 - - name: ATP phosphoribosyltransferase + - id: "r_0225" + - name: "ATP phosphoribosyltransferase" - metabolites: !!omap - s_0326: 1 - s_0434: -1 @@ -34482,21 +34512,21 @@ - s_1386: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER055C + - gene_reaction_rule: "YER055C" - subsystem: - - sce00340 Histidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00340 Histidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.4.2.17 - - bigg.reaction: ATPPRT - - kegg.reaction: R01071 - - metanetx.reaction: MNXR96132 - - sbo: SBO:0000176 + - ec-code: "2.4.2.17" + - bigg.reaction: "ATPPRT" + - kegg.reaction: "R01071" + - metanetx.reaction: "MNXR96132" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0226 - - name: ATP synthase + - id: "r_0226" + - name: "ATP synthase" - metabolites: !!omap - s_0397: -1 - s_0437: 1 @@ -34506,20 +34536,20 @@ - s_1326: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR322C-A and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W) or (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W and YPR020W) or (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR322C-A and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W and YJL180C and YLR393W and YNL315C and YOL077W-A and YCL005W-A) - - subsystem: sce00190 Oxidative phosphorylation + - gene_reaction_rule: "(Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR322C-A and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W) or (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W and YPR020W) or (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR322C-A and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W and YJL180C and YLR393W and YNL315C and YOL077W-A and YCL005W-A)" + - subsystem: "sce00190 Oxidative phosphorylation" - annotation: !!omap - - ec-code: 3.6.3.14 - - bigg.reaction: ATPS3m - - metanetx.reaction: MNXR96136 + - ec-code: "3.6.3.14" + - bigg.reaction: "ATPS3m" + - metanetx.reaction: "MNXR96136" - pmid: - - 6223276 - - 10576729 - - sbo: SBO:0000655 + - "6223276" + - "10576729" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_0227 - - name: ATPase, cytosolic + - id: "r_0227" + - name: "ATPase, cytosolic" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -34528,24 +34558,24 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YCR024C-A and YEL017C-A and YGL008C) or (YCR024C-A and YEL017C-A and YPL036W) or YER005W + - gene_reaction_rule: "(YCR024C-A and YEL017C-A and YGL008C) or (YCR024C-A and YEL017C-A and YPL036W) or YER005W" - subsystem: - - sce00190 Oxidative phosphorylation - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism + - "sce00190 Oxidative phosphorylation" + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: - - 3.6.1.5 - - 3.6.3.6 - - bigg.reaction: ATPS - - kegg.reaction: R00086 - - metanetx.reaction: MNXR96131 - - pmid: 10409709 - - sbo: SBO:0000176 + - "3.6.1.5" + - "3.6.3.6" + - bigg.reaction: "ATPS" + - kegg.reaction: "R00086" + - metanetx.reaction: "MNXR96131" + - pmid: "10409709" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0228 - - name: beta-1,4 mannosyltransferase + - id: "r_0228" + - name: "beta-1,4 mannosyltransferase" - metabolites: !!omap - s_0443: 1 - s_0739: 1 @@ -34554,20 +34584,20 @@ - s_1184: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR110W + - gene_reaction_rule: "YBR110W" - subsystem: - - sce00510 N-Glycan biosynthesis - - sce00513 Various types of N-glycan biosynthesis + - "sce00510 N-Glycan biosynthesis" + - "sce00513 Various types of N-glycan biosynthesis" - annotation: !!omap - - ec-code: 2.4.1.142 - - kegg.reaction: R04502 - - metanetx.reaction: MNXR108930 - - pmid: 6368538 - - sbo: SBO:0000176 + - ec-code: "2.4.1.142" + - kegg.reaction: "R04502" + - metanetx.reaction: "MNXR108930" + - pmid: "6368538" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0229 - - name: biotin synthase + - id: "r_0229" + - name: "biotin synthase" - metabolites: !!omap - s_0451: 1 - s_0612: -1 @@ -34575,15 +34605,15 @@ - s_1371: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR286C - - subsystem: sce00780 Biotin metabolism + - gene_reaction_rule: "YGR286C" + - subsystem: "sce00780 Biotin metabolism" - annotation: !!omap - - ec-code: 2.8.1.6 - - sbo: SBO:0000176 + - ec-code: "2.8.1.6" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0230 - - name: biotin-[acetyl-CoA-carboxylase] ligase + - id: "r_0230" + - name: "biotin-[acetyl-CoA-carboxylase] ligase" - metabolites: !!omap - s_0434: -1 - s_0451: -1 @@ -34592,24 +34622,24 @@ - s_0794: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL141W - - subsystem: sce00780 Biotin metabolism + - gene_reaction_rule: "YDL141W" + - subsystem: "sce00780 Biotin metabolism" - annotation: !!omap - ec-code: - - 6.3.4.- - - 6.3.4.10 - - 6.3.4.11 - - 6.3.4.15 - - 6.3.4.9 - - bigg.reaction: BACCL - - kegg.reaction: R01074 - - metanetx.reaction: MNXR96208 - - pmid: 9688262 - - sbo: SBO:0000176 + - "6.3.4.-" + - "6.3.4.10" + - "6.3.4.11" + - "6.3.4.15" + - "6.3.4.9" + - bigg.reaction: "BACCL" + - kegg.reaction: "R01074" + - metanetx.reaction: "MNXR96208" + - pmid: "9688262" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0231 - - name: C-14 sterol reductase + - id: "r_0231" + - name: "C-14 sterol reductase" - metabolites: !!omap - s_0122: 1 - s_0262: -1 @@ -34618,21 +34648,21 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL280C + - gene_reaction_rule: "YNL280C" - subsystem: - - sce00100 Steroid biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.3.1.70 - - bigg.reaction: C14STR - - kegg.reaction: R05639 - - metanetx.reaction: MNXR109728 - - sbo: SBO:0000176 + - ec-code: "1.3.1.70" + - bigg.reaction: "C14STR" + - kegg.reaction: "R05639" + - metanetx.reaction: "MNXR109728" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0233 - - name: C-22 sterol desaturase (NADP) + - id: "r_0233" + - name: "C-22 sterol desaturase (NADP)" - metabolites: !!omap - s_0662: 1 - s_0664: -1 @@ -34643,20 +34673,20 @@ - s_1275: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR015C + - gene_reaction_rule: "YMR015C" - subsystem: - - sce00100 Steroid biosynthesis - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.14.19.41 - - bigg.reaction: C22STDS - - kegg.reaction: R07506 - - metanetx.reaction: MNXR123636 - - sbo: SBO:0000176 + - ec-code: "1.14.19.41" + - bigg.reaction: "C22STDS" + - kegg.reaction: "R07506" + - metanetx.reaction: "MNXR123636" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0234 - - name: C-3 sterol dehydrogenase + - id: "r_0234" + - name: "C-3 sterol dehydrogenase" - metabolites: !!omap - s_0456: 1 - s_1207: -1 @@ -34665,18 +34695,18 @@ - s_1579: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL001C + - gene_reaction_rule: "YGL001C" - subsystem: - - sce00100 Steroid biosynthesis - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.170 - - pmid: 22194828 - - sbo: SBO:0000176 + - ec-code: "1.1.1.170" + - pmid: "22194828" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0235 - - name: C-3 sterol dehydrogenase (4-methylzymosterol) + - id: "r_0235" + - name: "C-3 sterol dehydrogenase (4-methylzymosterol)" - metabolites: !!omap - s_0209: 1 - s_0297: -1 @@ -34685,18 +34715,18 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL001C + - gene_reaction_rule: "YGL001C" - subsystem: - - sce00100 Steroid biosynthesis - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.170 - - metanetx.reaction: MNXR128630 - - sbo: SBO:0000176 + - ec-code: "1.1.1.170" + - metanetx.reaction: "MNXR128630" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0236 - - name: C-3 sterol keto reductase (4-methylzymosterol) + - id: "r_0236" + - name: "C-3 sterol keto reductase (4-methylzymosterol)" - metabolites: !!omap - s_0209: -1 - s_0296: 1 @@ -34705,19 +34735,19 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR100W + - gene_reaction_rule: "YLR100W" - subsystem: - - sce00100 Steroid biosynthesis - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.270 - - kegg.reaction: R07495 - - metanetx.reaction: MNXR111123 - - sbo: SBO:0000176 + - ec-code: "1.1.1.270" + - kegg.reaction: "R07495" + - metanetx.reaction: "MNXR111123" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0237 - - name: C-3 sterol keto reductase (zymosterol) + - id: "r_0237" + - name: "C-3 sterol keto reductase (zymosterol)" - metabolites: !!omap - s_0794: -1 - s_1207: 1 @@ -34726,19 +34756,19 @@ - s_1579: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR100W + - gene_reaction_rule: "YLR100W" - subsystem: - - sce00100 Steroid biosynthesis - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.270 - - bigg.reaction: HMR_1509 - - metanetx.reaction: MNXR123719 - - sbo: SBO:0000176 + - ec-code: "1.1.1.270" + - bigg.reaction: "HMR_1509" + - metanetx.reaction: "MNXR123719" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0238 - - name: C-4 methyl sterol oxidase + - id: "r_0238" + - name: "C-4 methyl sterol oxidase" - metabolites: !!omap - s_0296: -1 - s_0794: -1 @@ -34749,18 +34779,18 @@ - s_1576: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR060W + - gene_reaction_rule: "YGR060W" - subsystem: - - sce00100 Steroid biosynthesis - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.14.13.72 - - metanetx.reaction: MNXR128521 - - sbo: SBO:0000176 + - ec-code: "1.14.13.72" + - metanetx.reaction: "MNXR128521" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0239 - - name: C-4 methyl sterol oxidase + - id: "r_0239" + - name: "C-4 methyl sterol oxidase" - metabolites: !!omap - s_0794: -1 - s_0803: 2 @@ -34771,19 +34801,19 @@ - s_1577: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR060W + - gene_reaction_rule: "YGR060W" - subsystem: - - sce00100 Steroid biosynthesis - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.14.13.72 - - bigg.reaction: HMR_1503 - - metanetx.reaction: MNXR128522 - - sbo: SBO:0000176 + - ec-code: "1.14.13.72" + - bigg.reaction: "HMR_1503" + - metanetx.reaction: "MNXR128522" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0240 - - name: C-4 methyl sterol oxidase + - id: "r_0240" + - name: "C-4 methyl sterol oxidase" - metabolites: !!omap - s_0803: 1 - s_1207: 1 @@ -34793,18 +34823,18 @@ - s_1578: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR060W + - gene_reaction_rule: "YGR060W" - subsystem: - - sce00100 Steroid biosynthesis - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.14.13.72 - - pmid: 22194828 - - sbo: SBO:0000176 + - ec-code: "1.14.13.72" + - pmid: "22194828" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0241 - - name: C-4 sterol methyl oxidase (4,4-dimethylzymosterol) + - id: "r_0241" + - name: "C-4 sterol methyl oxidase (4,4-dimethylzymosterol)" - metabolites: !!omap - s_0122: -1 - s_0297: 1 @@ -34815,19 +34845,19 @@ - s_4210: 6 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR060W + - gene_reaction_rule: "YGR060W" - subsystem: - - sce00100 Steroid biosynthesis - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.14.13.72 - - kegg.reaction: R07509 - - metanetx.reaction: MNXR111130 - - sbo: SBO:0000176 + - ec-code: "1.14.13.72" + - kegg.reaction: "R07509" + - metanetx.reaction: "MNXR111130" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0242 - - name: C-5 sterol desaturase + - id: "r_0242" + - name: "C-5 sterol desaturase" - metabolites: !!omap - s_0657: -1 - s_0664: 1 @@ -34838,39 +34868,39 @@ - s_1275: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR056W + - gene_reaction_rule: "YLR056W" - subsystem: - - sce00100 Steroid biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.14.19.20 - - bigg.reaction: C5STDS - - metanetx.reaction: MNXR126641 - - sbo: SBO:0000176 + - ec-code: "1.14.19.20" + - bigg.reaction: "C5STDS" + - metanetx.reaction: "MNXR126641" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0243 - - name: C-8 sterol isomerase + - id: "r_0243" + - name: "C-8 sterol isomerase" - metabolites: !!omap - s_0657: 1 - s_0700: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR202W + - gene_reaction_rule: "YMR202W" - subsystem: - - sce00100 Steroid biosynthesis - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 5.-.-.- - - bigg.reaction: C8STI - - kegg.reaction: R07497 - - metanetx.reaction: MNXR96432 - - sbo: SBO:0000176 + - ec-code: "5.-.-.-" + - bigg.reaction: "C8STI" + - kegg.reaction: "R07497" + - metanetx.reaction: "MNXR96432" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0244 - - name: C-s24 sterol reductase + - id: "r_0244" + - name: "C-s24 sterol reductase" - metabolites: !!omap - s_0663: -1 - s_0667: 1 @@ -34879,20 +34909,20 @@ - s_1213: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL012W + - gene_reaction_rule: "YGL012W" - subsystem: - - sce00100 Steroid biosynthesis - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.3.1.71 - - bigg.reaction: C24STRer - - kegg.reaction: R05641 - - metanetx.reaction: MNXR96407 - - sbo: SBO:0000176 + - ec-code: "1.3.1.71" + - bigg.reaction: "C24STRer" + - kegg.reaction: "R05641" + - metanetx.reaction: "MNXR96407" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0249 - - name: CAAX farnesyltransferase + - id: "r_0249" + - name: "CAAX farnesyltransferase" - metabolites: !!omap - s_0286: -1 - s_0633: 1 @@ -34900,20 +34930,20 @@ - s_1231: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL090C and YKL019W + - gene_reaction_rule: "YDL090C and YKL019W" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01130 Biosynthesis of antibiotics + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.5.1.58 - - kegg.reaction: R07273 - - metanetx.reaction: MNXR110956 - - pmid: 1763050 - - sbo: SBO:0000176 + - ec-code: "2.5.1.58" + - kegg.reaction: "R07273" + - metanetx.reaction: "MNXR110956" + - pmid: "1763050" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0250 - - name: carbamoyl-phosphate synthase (glutamine-hydrolysing) + - id: "r_0250" + - name: "carbamoyl-phosphate synthase (glutamine-hydrolysing)" - metabolites: !!omap - s_0394: 2 - s_0434: -2 @@ -34926,22 +34956,22 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL130C and YJR109C and YOR303W + - gene_reaction_rule: "YJL130C and YJR109C and YOR303W" - subsystem: - - sce00240 Pyrimidine metabolism - - sce00250 Alanine, aspartate and glutamate metabolism + - "sce00240 Pyrimidine metabolism" + - "sce00250 Alanine, aspartate and glutamate metabolism" - annotation: !!omap - ec-code: - - 2.1.3.2 - - 6.3.5.5 - - bigg.reaction: CBPS - - kegg.reaction: R00575 - - metanetx.reaction: MNXR96485 - - sbo: SBO:0000176 + - "2.1.3.2" + - "6.3.5.5" + - bigg.reaction: "CBPS" + - kegg.reaction: "R00575" + - metanetx.reaction: "MNXR96485" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0252 - - name: carnitine O-acetyltransferase + - id: "r_0252" + - name: "carnitine O-acetyltransferase" - metabolites: !!omap - s_0021: -1 - s_0373: -1 @@ -34949,19 +34979,19 @@ - s_1235: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAR035W or YER024W - - subsystem: sce04146 Peroxisome + - gene_reaction_rule: "YAR035W or YER024W" + - subsystem: "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.7 - - bigg.reaction: CSNATr - - kegg.reaction: R02396 - - metanetx.reaction: MNXR96926 - - pmid: 11329169 - - sbo: SBO:0000176 + - ec-code: "2.3.1.7" + - bigg.reaction: "CSNATr" + - kegg.reaction: "R02396" + - metanetx.reaction: "MNXR96926" + - pmid: "11329169" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0253 - - name: carnitine O-acetyltransferase + - id: "r_0253" + - name: "carnitine O-acetyltransferase" - metabolites: !!omap - s_0024: -1 - s_0378: -1 @@ -34969,18 +34999,18 @@ - s_1237: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML042W - - subsystem: sce04146 Peroxisome + - gene_reaction_rule: "YML042W" + - subsystem: "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.7 - - bigg.reaction: CSNATp - - kegg.reaction: R02396 - - metanetx.reaction: MNXR96926 - - sbo: SBO:0000176 + - ec-code: "2.3.1.7" + - bigg.reaction: "CSNATp" + - kegg.reaction: "R02396" + - metanetx.reaction: "MNXR96926" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0254 - - name: carnitine O-acetyltransferase + - id: "r_0254" + - name: "carnitine O-acetyltransferase" - metabolites: !!omap - s_0023: 1 - s_0376: 1 @@ -34988,72 +35018,72 @@ - s_1236: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML042W - - subsystem: sce04146 Peroxisome + - gene_reaction_rule: "YML042W" + - subsystem: "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.7 - - bigg.reaction: CSNATm - - kegg.reaction: R02396 - - metanetx.reaction: MNXR96926 - - sbo: SBO:0000176 + - ec-code: "2.3.1.7" + - bigg.reaction: "CSNATm" + - kegg.reaction: "R02396" + - metanetx.reaction: "MNXR96926" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0255 - - name: catalase + - id: "r_0255" + - name: "catalase" - metabolites: !!omap - s_0803: 2 - s_0837: -2 - s_1275: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR088W + - gene_reaction_rule: "YGR088W" - subsystem: - - sce00380 Tryptophan metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04146 Peroxisome - - sce04213 Longevity regulating pathway - multiple species + - "sce00380 Tryptophan metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04146 Peroxisome" + - "sce04213 Longevity regulating pathway - multiple species" - annotation: !!omap - - ec-code: 1.11.1.6 - - bigg.reaction: CAT - - kegg.reaction: R00009 - - metanetx.reaction: MNXR96455 - - pmid: 3536508 - - sbo: SBO:0000176 + - ec-code: "1.11.1.6" + - bigg.reaction: "CAT" + - kegg.reaction: "R00009" + - metanetx.reaction: "MNXR96455" + - pmid: "3536508" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0256 - - name: catalase + - id: "r_0256" + - name: "catalase" - metabolites: !!omap - s_0809: 2 - s_0840: -2 - s_1279: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR256C + - gene_reaction_rule: "YDR256C" - subsystem: - - sce00380 Tryptophan metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04146 Peroxisome - - sce04213 Longevity regulating pathway - multiple species + - "sce00380 Tryptophan metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04146 Peroxisome" + - "sce04213 Longevity regulating pathway - multiple species" - annotation: !!omap - - ec-code: 1.11.1.6 - - bigg.reaction: CATp - - kegg.reaction: R00009 - - metanetx.reaction: MNXR96455 - - pmid: 9931255 - - sbo: SBO:0000176 + - ec-code: "1.11.1.6" + - bigg.reaction: "CATp" + - kegg.reaction: "R00009" + - metanetx.reaction: "MNXR96455" + - pmid: "9931255" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0259 - - name: ceramide-1 hydroxylase (24C) + - id: "r_0259" + - name: "ceramide-1 hydroxylase (24C)" - metabolites: !!omap - s_0475: -1 - s_0481: 1 @@ -35064,19 +35094,19 @@ - s_1276: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR297W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YDR297W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 1.-.-.- - - metanetx.reaction: MNXR126673 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126673" - pmid: - - 18296751 - - 9368039 - - sbo: SBO:0000176 + - "18296751" + - "9368039" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0260 - - name: ceramide-1 hydroxylase (24C) + - id: "r_0260" + - name: "ceramide-1 hydroxylase (24C)" - metabolites: !!omap - s_0475: -1 - s_0487: 1 @@ -35087,18 +35117,18 @@ - s_1276: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR272C + - gene_reaction_rule: "YMR272C" - annotation: !!omap - - ec-code: 1.-.-.- - - metanetx.reaction: MNXR126668 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126668" - pmid: - - 18296751 - - 9368039 - - sbo: SBO:0000176 + - "18296751" + - "9368039" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0261 - - name: ceramide-1 hydroxylase (26C) + - id: "r_0261" + - name: "ceramide-1 hydroxylase (26C)" - metabolites: !!omap - s_0478: -1 - s_0484: 1 @@ -35109,19 +35139,19 @@ - s_1276: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR297W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YDR297W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 1.-.-.- - - metanetx.reaction: MNXR126661 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126661" - pmid: - - 18296751 - - 9368039 - - sbo: SBO:0000176 + - "18296751" + - "9368039" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0262 - - name: ceramide-1 hydroxylase (26C) + - id: "r_0262" + - name: "ceramide-1 hydroxylase (26C)" - metabolites: !!omap - s_0478: -1 - s_0490: 1 @@ -35132,18 +35162,18 @@ - s_1276: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR272C + - gene_reaction_rule: "YMR272C" - annotation: !!omap - - ec-code: 1.-.-.- - - metanetx.reaction: MNXR126662 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126662" - pmid: - - 18296751 - - 9368039 - - sbo: SBO:0000176 + - "18296751" + - "9368039" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0263 - - name: ceramide-1 synthase (24C) + - id: "r_0263" + - name: "ceramide-1 synthase (24C)" - metabolites: !!omap - s_0475: 1 - s_0530: 1 @@ -35152,21 +35182,21 @@ - s_1480: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YHL003C and YMR298W) or (YKL008C and YMR298W) - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.24 - - bigg.reaction: CERS124er - - metanetx.reaction: MNXR126659 + - ec-code: "2.3.1.24" + - bigg.reaction: "CERS124er" + - metanetx.reaction: "MNXR126659" - pmid: - - 11387200 - - 15692566 - - 18296751 - - sbo: SBO:0000176 + - "11387200" + - "15692566" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0264 - - name: ceramide-1 synthase (26C) + - id: "r_0264" + - name: "ceramide-1 synthase (26C)" - metabolites: !!omap - s_0478: 1 - s_0530: 1 @@ -35175,22 +35205,22 @@ - s_1445: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YHL003C and YMR298W) or (YKL008C and YMR298W) - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.24 - - bigg.reaction: CERS126er - - kegg.reaction: R06517 - - metanetx.reaction: MNXR126619 + - ec-code: "2.3.1.24" + - bigg.reaction: "CERS126er" + - kegg.reaction: "R06517" + - metanetx.reaction: "MNXR126619" - pmid: - - 11387200 - - 15692566 - - 18296751 - - sbo: SBO:0000176 + - "11387200" + - "15692566" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0265 - - name: ceramide-2 synthase (24C) + - id: "r_0265" + - name: "ceramide-2 synthase (24C)" - metabolites: !!omap - s_0481: 1 - s_0530: 1 @@ -35199,21 +35229,21 @@ - s_1480: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YHL003C and YMR298W) or (YKL008C and YMR298W) - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.24 - - bigg.reaction: CERS224er - - metanetx.reaction: MNXR126660 + - ec-code: "2.3.1.24" + - bigg.reaction: "CERS224er" + - metanetx.reaction: "MNXR126660" - pmid: - - 11387200 - - 15692566 - - 18296751 - - sbo: SBO:0000176 + - "11387200" + - "15692566" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0266 - - name: ceramide-2 synthase (26C) + - id: "r_0266" + - name: "ceramide-2 synthase (26C)" - metabolites: !!omap - s_0484: 1 - s_0530: 1 @@ -35222,22 +35252,22 @@ - s_1366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YHL003C and YMR298W) or (YKL008C and YMR298W) - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.24 - - bigg.reaction: CERS226er - - kegg.reaction: R06527 - - metanetx.reaction: MNXR126618 + - ec-code: "2.3.1.24" + - bigg.reaction: "CERS226er" + - kegg.reaction: "R06527" + - metanetx.reaction: "MNXR126618" - pmid: - - 11387200 - - 15692566 - - 18296751 - - sbo: SBO:0000176 + - "11387200" + - "15692566" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0267 - - name: ceramide-3 synthase (24C) + - id: "r_0267" + - name: "ceramide-3 synthase (24C)" - metabolites: !!omap - s_0481: -1 - s_0493: 1 @@ -35248,18 +35278,18 @@ - s_1276: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR272C + - gene_reaction_rule: "YMR272C" - annotation: !!omap - - ec-code: 1.-.-.- - - metanetx.reaction: MNXR126670 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126670" - pmid: - - 18296751 - - 9368039 - - sbo: SBO:0000176 + - "18296751" + - "9368039" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0268 - - name: ceramide-3 synthase (26C) + - id: "r_0268" + - name: "ceramide-3 synthase (26C)" - metabolites: !!omap - s_0484: -1 - s_0496: 1 @@ -35270,18 +35300,18 @@ - s_1276: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR272C + - gene_reaction_rule: "YMR272C" - annotation: !!omap - - ec-code: 1.-.-.- - - metanetx.reaction: MNXR126669 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126669" - pmid: - - 18296751 - - 9368039 - - sbo: SBO:0000176 + - "18296751" + - "9368039" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0269 - - name: ceramide-4 synthase (24C) + - id: "r_0269" + - name: "ceramide-4 synthase (24C)" - metabolites: !!omap - s_0493: -1 - s_0499: 1 @@ -35292,18 +35322,18 @@ - s_1276: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR272C + - gene_reaction_rule: "YMR272C" - annotation: !!omap - - ec-code: 1.-.-.- - - metanetx.reaction: MNXR126672 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126672" - pmid: - - 18296751 - - 9368039 - - sbo: SBO:0000176 + - "18296751" + - "9368039" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0270 - - name: ceramide-4 synthase (26C) + - id: "r_0270" + - name: "ceramide-4 synthase (26C)" - metabolites: !!omap - s_0496: -1 - s_0502: 1 @@ -35314,18 +35344,18 @@ - s_1276: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR272C + - gene_reaction_rule: "YMR272C" - annotation: !!omap - - ec-code: 1.-.-.- - - metanetx.reaction: MNXR126671 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126671" - pmid: - - 18296751 - - 9368039 - - sbo: SBO:0000176 + - "18296751" + - "9368039" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0271 - - name: chitin deacetylase + - id: "r_0271" + - name: "chitin deacetylase" - metabolites: !!omap - s_0362: 1 - s_0509: -1 @@ -35334,17 +35364,17 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR307W or YLR308W - - subsystem: sce00520 Amino sugar and nucleotide sugar metabolism + - gene_reaction_rule: "YLR307W or YLR308W" + - subsystem: "sce00520 Amino sugar and nucleotide sugar metabolism" - annotation: !!omap - - ec-code: 3.5.1.41 - - kegg.reaction: R02333 - - metanetx.reaction: MNXR107444 - - sbo: SBO:0000176 + - ec-code: "3.5.1.41" + - kegg.reaction: "R02333" + - metanetx.reaction: "MNXR107444" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0272 - - name: chitin synthase + - id: "r_0272" + - name: "chitin synthase" - metabolites: !!omap - s_0509: 1 - s_0794: 1 @@ -35352,18 +35382,18 @@ - s_1544: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR023C or YBR038W or YNL192W - - subsystem: sce00520 Amino sugar and nucleotide sugar metabolism + - gene_reaction_rule: "YBR023C or YBR038W or YNL192W" + - subsystem: "sce00520 Amino sugar and nucleotide sugar metabolism" - annotation: !!omap - - ec-code: 2.4.1.16 - - kegg.reaction: R02335 - - metanetx.reaction: MNXR107446 - - pmid: 16408321 - - sbo: SBO:0000176 + - ec-code: "2.4.1.16" + - kegg.reaction: "R02335" + - metanetx.reaction: "MNXR107446" + - pmid: "16408321" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0273 - - name: choline kinase + - id: "r_0273" + - name: "choline kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -35372,19 +35402,19 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR133W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YLR133W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.1.32 - - bigg.reaction: CHOLK - - kegg.reaction: R01021 - - metanetx.reaction: MNXR96702 - - pmid: 10329685 - - sbo: SBO:0000176 + - ec-code: "2.7.1.32" + - bigg.reaction: "CHOLK" + - kegg.reaction: "R01021" + - metanetx.reaction: "MNXR96702" + - pmid: "10329685" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0274 - - name: choline phosphate cytididyltransferase + - id: "r_0274" + - name: "choline phosphate cytididyltransferase" - metabolites: !!omap - s_0469: 1 - s_0514: -1 @@ -35393,91 +35423,91 @@ - s_0794: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR202C + - gene_reaction_rule: "YGR202C" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.7.15 - - bigg.reaction: CHLPCTD - - kegg.reaction: R01890 - - metanetx.reaction: MNXR96686 - - sbo: SBO:0000176 + - ec-code: "2.7.7.15" + - bigg.reaction: "CHLPCTD" + - kegg.reaction: "R01890" + - metanetx.reaction: "MNXR96686" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0278 - - name: chorismate mutase + - id: "r_0278" + - name: "chorismate mutase" - metabolites: !!omap - s_0515: -1 - s_1377: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR060C + - gene_reaction_rule: "YPR060C" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 5.4.99.5 - - bigg.reaction: CHORM - - kegg.reaction: R01715 - - metanetx.reaction: MNXR96708 - - pmid: 3027508 - - sbo: SBO:0000176 + - ec-code: "5.4.99.5" + - bigg.reaction: "CHORM" + - kegg.reaction: "R01715" + - metanetx.reaction: "MNXR96708" + - pmid: "3027508" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0279 - - name: chorismate synthase + - id: "r_0279" + - name: "chorismate synthase" - metabolites: !!omap - s_0324: -1 - s_0515: 1 - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL148W + - gene_reaction_rule: "YGL148W" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.3.5 - - bigg.reaction: CHORS - - kegg.reaction: R01714 - - metanetx.reaction: MNXR96709 - - pmid: 8971708 - - sbo: SBO:0000176 + - ec-code: "4.2.3.5" + - bigg.reaction: "CHORS" + - kegg.reaction: "R01714" + - metanetx.reaction: "MNXR96709" + - pmid: "8971708" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0280 - - name: cis-aconitate(3-) to isocitrate + - id: "r_0280" + - name: "cis-aconitate(3-) to isocitrate" - metabolites: !!omap - s_0517: -1 - s_0807: -1 - s_0941: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR304C + - gene_reaction_rule: "YLR304C" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.3 - - bigg.reaction: ACN_b_m - - kegg.reaction: R01900 - - metanetx.reaction: MNXR95387 - - pmid: 21623372 - - sbo: SBO:0000176 + - ec-code: "4.2.1.3" + - bigg.reaction: "ACN_b_m" + - kegg.reaction: "R01900" + - metanetx.reaction: "MNXR95387" + - pmid: "21623372" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0281 - - name: cis-prenyltransferase step 01 + - id: "r_0281" + - name: "cis-prenyltransferase step 01" - metabolites: !!omap - s_0635: 1 - s_0692: -1 @@ -35485,20 +35515,20 @@ - s_0944: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - kegg.reaction: R02061 - - metanetx.reaction: MNXR99650 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - kegg.reaction: "R02061" + - metanetx.reaction: "MNXR99650" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0282 - - name: cis-prenyltransferase step 02 + - id: "r_0282" + - name: "cis-prenyltransferase step 02" - metabolites: !!omap - s_0635: 1 - s_0746: -1 @@ -35506,20 +35536,20 @@ - s_1312: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - kegg.reaction: R07475 - - metanetx.reaction: MNXR100137 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - kegg.reaction: "R07475" + - metanetx.reaction: "MNXR100137" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0283 - - name: cis-prenyltransferase step 03 + - id: "r_0283" + - name: "cis-prenyltransferase step 03" - metabolites: !!omap - s_0635: 1 - s_0830: 1 @@ -35527,20 +35557,20 @@ - s_1312: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - kegg.reaction: R05613 - - metanetx.reaction: MNXR103150 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - kegg.reaction: "R05613" + - metanetx.reaction: "MNXR103150" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0284 - - name: cis-prenyltransferase step 04 + - id: "r_0284" + - name: "cis-prenyltransferase step 04" - metabolites: !!omap - s_0635: 1 - s_0815: 1 @@ -35548,20 +35578,20 @@ - s_0944: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - kegg.reaction: R05612 - - metanetx.reaction: MNXR100621 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - kegg.reaction: "R05612" + - metanetx.reaction: "MNXR100621" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0285 - - name: cis-prenyltransferase step 05 + - id: "r_0285" + - name: "cis-prenyltransferase step 05" - metabolites: !!omap - s_0635: 1 - s_0815: -1 @@ -35569,20 +35599,20 @@ - s_1259: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - kegg.reaction: R05611 - - metanetx.reaction: MNXR109713 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - kegg.reaction: "R05611" + - metanetx.reaction: "MNXR109713" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0286 - - name: cis-prenyltransferase step 06 + - id: "r_0286" + - name: "cis-prenyltransferase step 06" - metabolites: !!omap - s_0635: 1 - s_0944: -1 @@ -35590,20 +35620,20 @@ - s_1259: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - kegg.reaction: R07267 - - metanetx.reaction: MNXR110950 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - kegg.reaction: "R07267" + - metanetx.reaction: "MNXR110950" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0287 - - name: cis-prenyltransferase step 07 + - id: "r_0287" + - name: "cis-prenyltransferase step 07" - metabolites: !!omap - s_0606: 1 - s_0635: 1 @@ -35611,20 +35641,20 @@ - s_1232: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - kegg.reaction: R08747 - - metanetx.reaction: MNXR112246 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - kegg.reaction: "R08747" + - metanetx.reaction: "MNXR112246" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0288 - - name: cis-prenyltransferase step 08 + - id: "r_0288" + - name: "cis-prenyltransferase step 08" - metabolites: !!omap - s_0606: -1 - s_0635: 1 @@ -35632,19 +35662,19 @@ - s_1549: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - metanetx.reaction: MNXR105052 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - metanetx.reaction: "MNXR105052" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0289 - - name: cis-prenyltransferase step 09 + - id: "r_0289" + - name: "cis-prenyltransferase step 09" - metabolites: !!omap - s_0635: 1 - s_0641: 1 @@ -35652,18 +35682,18 @@ - s_1549: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0290 - - name: cis-prenyltransferase step 10 + - id: "r_0290" + - name: "cis-prenyltransferase step 10" - metabolites: !!omap - s_0635: 1 - s_0641: -1 @@ -35671,18 +35701,18 @@ - s_1523: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0291 - - name: cis-prenyltransferase step 11 + - id: "r_0291" + - name: "cis-prenyltransferase step 11" - metabolites: !!omap - s_0635: 1 - s_0944: -1 @@ -35690,18 +35720,18 @@ - s_1523: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0292 - - name: cis-prenyltransferase step 12 + - id: "r_0292" + - name: "cis-prenyltransferase step 12" - metabolites: !!omap - s_0635: 1 - s_0944: -1 @@ -35709,18 +35739,18 @@ - s_1483: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0293 - - name: cis-prenyltransferase step 13 + - id: "r_0293" + - name: "cis-prenyltransferase step 13" - metabolites: !!omap - s_0635: 1 - s_0829: 1 @@ -35728,18 +35758,18 @@ - s_1310: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0294 - - name: cis-prenyltransferase step 14 + - id: "r_0294" + - name: "cis-prenyltransferase step 14" - metabolites: !!omap - s_0635: 1 - s_0814: 1 @@ -35747,18 +35777,18 @@ - s_0944: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0295 - - name: cis-prenyltransferase step 15 + - id: "r_0295" + - name: "cis-prenyltransferase step 15" - metabolites: !!omap - s_0635: 1 - s_0814: -1 @@ -35766,18 +35796,18 @@ - s_1246: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0296 - - name: cis-prenyltransferase step 16 + - id: "r_0296" + - name: "cis-prenyltransferase step 16" - metabolites: !!omap - s_0635: 1 - s_0944: -1 @@ -35785,18 +35815,18 @@ - s_1246: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0297 - - name: cis-prenyltransferase step 17 + - id: "r_0297" + - name: "cis-prenyltransferase step 17" - metabolites: !!omap - s_0635: 1 - s_0845: 1 @@ -35804,18 +35834,18 @@ - s_1229: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0298 - - name: cis-prenyltransferase step 18 + - id: "r_0298" + - name: "cis-prenyltransferase step 18" - metabolites: !!omap - s_0635: 1 - s_0813: 1 @@ -35823,18 +35853,18 @@ - s_0944: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0299 - - name: cis-prenyltransferase step 19 + - id: "r_0299" + - name: "cis-prenyltransferase step 19" - metabolites: !!omap - s_0635: 1 - s_0640: 1 @@ -35842,18 +35872,18 @@ - s_0944: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR002C or YMR101C + - gene_reaction_rule: "YBR002C or YMR101C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.87 - - pmid: 12702274 - - sbo: SBO:0000176 + - ec-code: "2.5.1.87" + - pmid: "12702274" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0300 - - name: citrate synthase + - id: "r_0300" + - name: "citrate synthase" - metabolites: !!omap - s_0376: -1 - s_0524: 1 @@ -35863,26 +35893,26 @@ - s_1273: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNR001C or YPR001W + - gene_reaction_rule: "YNR001C or YPR001W" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.3.3.1 - - bigg.reaction: CSm - - kegg.reaction: R00351 - - metanetx.reaction: MNXR96920 - - pmid: 9140965 - - sbo: SBO:0000176 + - ec-code: "2.3.3.1" + - bigg.reaction: "CSm" + - kegg.reaction: "R00351" + - metanetx.reaction: "MNXR96920" + - pmid: "9140965" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0301 - - name: citrate synthase, peroxisomal + - id: "r_0301" + - name: "citrate synthase, peroxisomal" - metabolites: !!omap - s_0378: -1 - s_0525: 1 @@ -35892,78 +35922,78 @@ - s_1274: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR005C + - gene_reaction_rule: "YCR005C" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.3.3.16 - - bigg.reaction: CSp - - kegg.reaction: R00351 - - metanetx.reaction: MNXR96920 - - pmid: 10587442 - - sbo: SBO:0000176 + - ec-code: "2.3.3.16" + - bigg.reaction: "CSp" + - kegg.reaction: "R00351" + - metanetx.reaction: "MNXR96920" + - pmid: "10587442" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0302 - - name: citrate to cis-aconitate(3-) + - id: "r_0302" + - name: "citrate to cis-aconitate(3-)" - metabolites: !!omap - s_0517: 1 - s_0524: -1 - s_0807: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR304C + - gene_reaction_rule: "YLR304C" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.3 - - bigg.reaction: ACN_a_m - - kegg.reaction: R01325 - - metanetx.reaction: MNXR95386 - - pmid: 21623372 - - sbo: SBO:0000176 + - ec-code: "4.2.1.3" + - bigg.reaction: "ACN_a_m" + - kegg.reaction: "R01325" + - metanetx.reaction: "MNXR95386" + - pmid: "21623372" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0303 - - name: citrate to cis-aconitate(3-), cytoplasmic + - id: "r_0303" + - name: "citrate to cis-aconitate(3-), cytoplasmic" - metabolites: !!omap - s_0516: 1 - s_0522: -1 - s_0803: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR304C + - gene_reaction_rule: "YLR304C" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.3 - - bigg.reaction: ACONTa - - kegg.reaction: R01325 - - metanetx.reaction: MNXR95386 - - pmid: 15975908 - - sbo: SBO:0000176 + - ec-code: "4.2.1.3" + - bigg.reaction: "ACONTa" + - kegg.reaction: "R01325" + - metanetx.reaction: "MNXR95386" + - pmid: "15975908" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0304 - - name: coproporphyrinogen oxidase (O2 required) + - id: "r_0304" + - name: "coproporphyrinogen oxidase (O2 required)" - metabolites: !!omap - s_0456: 2 - s_0538: -1 @@ -35973,20 +36003,20 @@ - s_1384: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR044W + - gene_reaction_rule: "YDR044W" - subsystem: - - sce00860 Porphyrin and chlorophyll metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 1.3.3.3 - - bigg.reaction: CPPPGO - - kegg.reaction: R03220 - - metanetx.reaction: MNXR96880 - - sbo: SBO:0000176 + - ec-code: "1.3.3.3" + - bigg.reaction: "CPPPGO" + - kegg.reaction: "R03220" + - metanetx.reaction: "MNXR96880" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0306 - - name: CTP synthase (glutamine) + - id: "r_0306" + - name: "CTP synthase (glutamine)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -35999,18 +36029,18 @@ - s_1559: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL039C or YJR103W - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YBL039C or YJR103W" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 6.3.4.2 - - bigg.reaction: CTPS2 - - kegg.reaction: R00573 - - metanetx.reaction: MNXR96945 - - sbo: SBO:0000176 + - ec-code: "6.3.4.2" + - bigg.reaction: "CTPS2" + - kegg.reaction: "R00573" + - metanetx.reaction: "MNXR96945" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0307 - - name: CTP synthase (NH3) + - id: "r_0307" + - name: "CTP synthase (NH3)" - metabolites: !!omap - s_0394: 1 - s_0419: -1 @@ -36021,18 +36051,18 @@ - s_1559: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL039C or YJR103W - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YBL039C or YJR103W" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 6.3.4.2 - - bigg.reaction: CTPS1 - - kegg.reaction: R00571 - - metanetx.reaction: MNXR96944 - - sbo: SBO:0000176 + - ec-code: "6.3.4.2" + - bigg.reaction: "CTPS1" + - kegg.reaction: "R00571" + - metanetx.reaction: "MNXR96944" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0308 - - name: cystathionine b-lyase + - id: "r_0308" + - name: "cystathionine b-lyase" - metabolites: !!omap - s_0419: 1 - s_0803: -1 @@ -36041,23 +36071,23 @@ - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR055W or YGL184C + - gene_reaction_rule: "YFR055W or YGL184C" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00450 Selenocompound metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00450 Selenocompound metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.4.1.8 - - bigg.reaction: CYSTL - - kegg.reaction: R01286 - - metanetx.reaction: MNXR96469 - - pmid: 10922376 - - sbo: SBO:0000176 + - ec-code: "4.4.1.8" + - bigg.reaction: "CYSTL" + - kegg.reaction: "R01286" + - metanetx.reaction: "MNXR96469" + - pmid: "10922376" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0309 - - name: cystathionine beta-synthase + - id: "r_0309" + - name: "cystathionine beta-synthase" - metabolites: !!omap - s_0803: 1 - s_0980: 1 @@ -36065,23 +36095,23 @@ - s_1039: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR155W + - gene_reaction_rule: "YGR155W" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00270 Cysteine and methionine metabolism - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.22 - - bigg.reaction: CYSTS - - kegg.reaction: R01290 - - metanetx.reaction: MNXR97019 - - pmid: 10766767 - - sbo: SBO:0000176 + - ec-code: "4.2.1.22" + - bigg.reaction: "CYSTS" + - kegg.reaction: "R01290" + - metanetx.reaction: "MNXR97019" + - pmid: "10766767" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0310 - - name: cystathionine g-lyase + - id: "r_0310" + - name: "cystathionine g-lyase" - metabolites: !!omap - s_0178: 1 - s_0419: 1 @@ -36090,24 +36120,24 @@ - s_0981: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL012W + - gene_reaction_rule: "YAL012W" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00270 Cysteine and methionine metabolism - - sce00450 Selenocompound metabolism - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00450 Selenocompound metabolism" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.4.1.1 - - bigg.reaction: CYSTGL - - kegg.reaction: R01001 - - metanetx.reaction: MNXR97012 - - pmid: 1577698 - - sbo: SBO:0000176 + - ec-code: "4.4.1.1" + - bigg.reaction: "CYSTGL" + - kegg.reaction: "R01001" + - metanetx.reaction: "MNXR97012" + - pmid: "1577698" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0311 - - name: cystathionine gamma-synthase + - id: "r_0311" + - name: "cystathionine gamma-synthase" - metabolites: !!omap - s_0362: 1 - s_0794: 1 @@ -36116,25 +36146,25 @@ - s_1233: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR130C + - gene_reaction_rule: "YJR130C" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00450 Selenocompound metabolism - - sce00920 Sulfur metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00450 Selenocompound metabolism" + - "sce00920 Sulfur metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.5.1.48 - - bigg.reaction: METB1 - - kegg.reaction: R03217 - - metanetx.reaction: MNXR95637 - - pmid: 10821189 - - sbo: SBO:0000176 + - ec-code: "2.5.1.48" + - bigg.reaction: "METB1" + - kegg.reaction: "R03217" + - metanetx.reaction: "MNXR95637" + - pmid: "10821189" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0312 - - name: cysteine synthase + - id: "r_0312" + - name: "cysteine synthase" - metabolites: !!omap - s_0362: 1 - s_0841: -1 @@ -36142,29 +36172,29 @@ - s_1234: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR303W + - gene_reaction_rule: "YLR303W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00920 Sulfur metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00920 Sulfur metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 2.5.1.47 - - 2.5.1.49 - - bigg.reaction: CYSS - - kegg.reaction: R00897 - - metanetx.reaction: MNXR97007 + - "2.5.1.47" + - "2.5.1.49" + - bigg.reaction: "CYSS" + - kegg.reaction: "R00897" + - metanetx.reaction: "MNXR97007" - pmid: - - 21623372 - - 7765825 - - sbo: SBO:0000176 + - "21623372" + - "7765825" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0313 - - name: cysteinyl-tRNA synthetase + - id: "r_0313" + - name: "cysteinyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -36174,19 +36204,19 @@ - s_1589: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL247W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YNL247W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.16 - - bigg.reaction: CYSTRS - - kegg.reaction: R03650 - - metanetx.reaction: MNXR97018 - - pmid: 9523015 - - sbo: SBO:0000176 + - ec-code: "6.1.1.16" + - bigg.reaction: "CYSTRS" + - kegg.reaction: "R03650" + - metanetx.reaction: "MNXR97018" + - pmid: "9523015" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0314 - - name: cytidine deaminase + - id: "r_0314" + - name: "cytidine deaminase" - metabolites: !!omap - s_0419: 1 - s_0543: -1 @@ -36195,18 +36225,18 @@ - s_1556: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR245C - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YLR245C" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.5.4.5 - - bigg.reaction: CYTD - - kegg.reaction: R01878 - - metanetx.reaction: MNXR97039 - - sbo: SBO:0000176 + - ec-code: "3.5.4.5" + - bigg.reaction: "CYTD" + - kegg.reaction: "R01878" + - metanetx.reaction: "MNXR97039" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0315 - - name: cytidine kinase (GTP) + - id: "r_0315" + - name: "cytidine kinase (GTP)" - metabolites: !!omap - s_0526: 1 - s_0543: -1 @@ -36215,18 +36245,18 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNR012W - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YNR012W" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 2.7.1.48 - - bigg.reaction: CYTDK2 - - kegg.reaction: R00517 - - metanetx.reaction: MNXR97042 - - sbo: SBO:0000176 + - ec-code: "2.7.1.48" + - bigg.reaction: "CYTDK2" + - kegg.reaction: "R00517" + - metanetx.reaction: "MNXR97042" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0317 - - name: cytochrome P450 lanosterol 14-alpha-demethylase (NADP) + - id: "r_0317" + - name: "cytochrome P450 lanosterol 14-alpha-demethylase (NADP)" - metabolites: !!omap - s_0262: 1 - s_0722: 1 @@ -36238,24 +36268,24 @@ - s_1275: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR007C and YHR042W + - gene_reaction_rule: "YHR007C and YHR042W" - subsystem: - - sce00100 Steroid biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 1.14.13.70 - - 1.6.2.4 - - bigg.reaction: LNS14DM - - kegg.reaction: R05640 - - metanetx.reaction: MNXR109729 - - pmid: 10622712 - - sbo: SBO:0000176 + - "1.14.13.70" + - "1.6.2.4" + - bigg.reaction: "LNS14DM" + - kegg.reaction: "R05640" + - metanetx.reaction: "MNXR109729" + - pmid: "10622712" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0318 - - name: cytosine deaminase + - id: "r_0318" + - name: "cytosine deaminase" - metabolites: !!omap - s_0419: 1 - s_0545: -1 @@ -36264,20 +36294,20 @@ - s_1550: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR062W + - gene_reaction_rule: "YPR062W" - subsystem: - - sce00240 Pyrimidine metabolism - - sce00330 Arginine and proline metabolism + - "sce00240 Pyrimidine metabolism" + - "sce00330 Arginine and proline metabolism" - annotation: !!omap - - ec-code: 3.5.4.1 - - bigg.reaction: CSND - - kegg.reaction: R00974 - - metanetx.reaction: MNXR96927 - - sbo: SBO:0000176 + - ec-code: "3.5.4.1" + - bigg.reaction: "CSND" + - kegg.reaction: "R00974" + - metanetx.reaction: "MNXR96927" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0319 - - name: D-arabinono-1,4-lactone oxidase + - id: "r_0319" + - name: "D-arabinono-1,4-lactone oxidase" - metabolites: !!omap - s_0547: -1 - s_0607: 1 @@ -36286,17 +36316,17 @@ - s_1275: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML086C + - gene_reaction_rule: "YML086C" - annotation: !!omap - - ec-code: 1.1.3.37 - - kegg.reaction: R02715 - - metanetx.reaction: MNXR107687 - - pmid: 10508108 - - sbo: SBO:0000176 + - ec-code: "1.1.3.37" + - kegg.reaction: "R02715" + - metanetx.reaction: "MNXR107687" + - pmid: "10508108" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0320 - - name: D-arabinose 1-dehydrogenase (NAD) + - id: "r_0320" + - name: "D-arabinose 1-dehydrogenase (NAD)" - metabolites: !!omap - s_0547: 1 - s_0548: -1 @@ -36305,18 +36335,18 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR041C + - gene_reaction_rule: "YMR041C" - annotation: !!omap - - ec-code: 1.1.1.116 - - bigg.reaction: ARAB1D1 - - kegg.reaction: R01574 - - metanetx.reaction: MNXR95907 - - pmid: 17097644 - - sbo: SBO:0000176 + - ec-code: "1.1.1.116" + - bigg.reaction: "ARAB1D1" + - kegg.reaction: "R01574" + - metanetx.reaction: "MNXR95907" + - pmid: "17097644" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0321 - - name: D-arabinose 1-dehydrogenase (NADP) + - id: "r_0321" + - name: "D-arabinose 1-dehydrogenase (NADP)" - metabolites: !!omap - s_0547: 1 - s_0548: -1 @@ -36325,42 +36355,42 @@ - s_1212: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR149W + - gene_reaction_rule: "YBR149W" - annotation: !!omap - - ec-code: 1.1.1.117 - - bigg.reaction: ARAB1D2 - - kegg.reaction: R01575 - - metanetx.reaction: MNXR95908 - - sbo: SBO:0000176 + - ec-code: "1.1.1.117" + - bigg.reaction: "ARAB1D2" + - kegg.reaction: "R01575" + - metanetx.reaction: "MNXR95908" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0322 - - name: D-fructose 1-phosphate D-glyceraldehyde-3-phosphate-lyase + - id: "r_0322" + - name: "D-fructose 1-phosphate D-glyceraldehyde-3-phosphate-lyase" - metabolites: !!omap - s_0556: -1 - s_0570: 1 - s_0629: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL060C + - gene_reaction_rule: "YKL060C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00030 Pentose phosphate pathway - - sce00051 Fructose and mannose metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00030 Pentose phosphate pathway" + - "sce00051 Fructose and mannose metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.1.2.13 - - bigg.reaction: FBA2 - - kegg.reaction: R02568 - - metanetx.reaction: MNXR99460 - - sbo: SBO:0000176 + - ec-code: "4.1.2.13" + - bigg.reaction: "FBA2" + - kegg.reaction: "R02568" + - metanetx.reaction: "MNXR99460" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0323 - - name: D-sorbitol dehydrogenase (D-fructose producing) + - id: "r_0323" + - name: "D-sorbitol dehydrogenase (D-fructose producing)" - metabolites: !!omap - s_0553: 1 - s_0561: -1 @@ -36369,20 +36399,20 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL246C or YJR159W + - gene_reaction_rule: "YDL246C or YJR159W" - subsystem: - - sce00040 Pentose and glucuronate interconversions - - sce00051 Fructose and mannose metabolism + - "sce00040 Pentose and glucuronate interconversions" + - "sce00051 Fructose and mannose metabolism" - annotation: !!omap - - ec-code: 1.1.1.14 - - bigg.reaction: SBTD_D2 - - kegg.reaction: R00875 - - metanetx.reaction: MNXR104283 - - sbo: SBO:0000176 + - ec-code: "1.1.1.14" + - bigg.reaction: "SBTD_D2" + - kegg.reaction: "R00875" + - metanetx.reaction: "MNXR104283" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0326 - - name: dCMP deaminase + - id: "r_0326" + - name: "dCMP deaminase" - metabolites: !!omap - s_0419: 1 - s_0589: -1 @@ -36391,18 +36421,18 @@ - s_0803: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR144C - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YHR144C" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.5.4.12 - - bigg.reaction: DCMPDA - - kegg.reaction: R01663 - - metanetx.reaction: MNXR97185 - - sbo: SBO:0000176 + - ec-code: "3.5.4.12" + - bigg.reaction: "DCMPDA" + - kegg.reaction: "R01663" + - metanetx.reaction: "MNXR97185" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0327 - - name: dCTP deaminase + - id: "r_0327" + - name: "dCTP deaminase" - metabolites: !!omap - s_0419: 1 - s_0590: -1 @@ -36411,18 +36441,18 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR144C - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YHR144C" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.5.4.12 - - bigg.reaction: DCTPD - - kegg.reaction: R02325 - - metanetx.reaction: MNXR97201 - - sbo: SBO:0000176 + - ec-code: "3.5.4.12" + - bigg.reaction: "DCTPD" + - kegg.reaction: "R02325" + - metanetx.reaction: "MNXR97201" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0328 - - name: deoxyadenosine deaminase + - id: "r_0328" + - name: "deoxyadenosine deaminase" - metabolites: !!omap - s_0132: -1 - s_0136: 1 @@ -36431,18 +36461,18 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL141W - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YNL141W" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 3.5.4.2 - - bigg.reaction: DADA - - kegg.reaction: R02556 - - metanetx.reaction: MNXR97076 - - sbo: SBO:0000176 + - ec-code: "3.5.4.2" + - bigg.reaction: "DADA" + - kegg.reaction: "R02556" + - metanetx.reaction: "MNXR97076" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0329 - - name: deoxycytidine deaminase + - id: "r_0329" + - name: "deoxycytidine deaminase" - metabolites: !!omap - s_0138: 1 - s_0419: 1 @@ -36451,18 +36481,18 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR245C - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YLR245C" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.5.4.5 - - bigg.reaction: DCYTD - - kegg.reaction: R02485 - - metanetx.reaction: MNXR97207 - - sbo: SBO:0000176 + - ec-code: "3.5.4.5" + - bigg.reaction: "DCYTD" + - kegg.reaction: "R02485" + - metanetx.reaction: "MNXR97207" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0330 - - name: deoxyguanylate kinase (dGMP:ATP) + - id: "r_0330" + - name: "deoxyguanylate kinase (dGMP:ATP)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -36470,18 +36500,18 @@ - s_0615: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR454C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YDR454C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 2.7.4.8 - - bigg.reaction: DGK1 - - kegg.reaction: R02090 - - metanetx.reaction: MNXR97320 - - sbo: SBO:0000176 + - ec-code: "2.7.4.8" + - bigg.reaction: "DGK1" + - kegg.reaction: "R02090" + - metanetx.reaction: "MNXR97320" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0331 - - name: deoxyhypusine synthase, cytosolic/mitochondrial + - id: "r_0331" + - name: "deoxyhypusine synthase, cytosolic/mitochondrial" - metabolites: !!omap - s_0274: 1 - s_0803: -1 @@ -36491,15 +36521,15 @@ - s_1537: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR068W + - gene_reaction_rule: "YHR068W" - annotation: !!omap - - ec-code: 2.5.1.46 - - metanetx.reaction: MNXR136013 - - sbo: SBO:0000176 + - ec-code: "2.5.1.46" + - metanetx.reaction: "MNXR136013" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0332 - - name: deoxyribokinase + - id: "r_0332" + - name: "deoxyribokinase" - metabolites: !!omap - s_0152: -1 - s_0153: 1 @@ -36508,18 +36538,18 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR036W - - subsystem: sce00030 Pentose phosphate pathway + - gene_reaction_rule: "YCR036W" + - subsystem: "sce00030 Pentose phosphate pathway" - annotation: !!omap - - ec-code: 2.7.1.15 - - bigg.reaction: DRBK - - kegg.reaction: R02750 - - metanetx.reaction: MNXR97781 - - sbo: SBO:0000176 + - ec-code: "2.7.1.15" + - bigg.reaction: "DRBK" + - kegg.reaction: "R02750" + - metanetx.reaction: "MNXR97781" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0334 - - name: dephospho-CoA kinase + - id: "r_0334" + - name: "dephospho-CoA kinase" - metabolites: !!omap - s_0200: -1 - s_0397: 1 @@ -36528,18 +36558,18 @@ - s_0799: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR196C - - subsystem: sce00770 Pantothenate and CoA biosynthesis + - gene_reaction_rule: "YDR196C" + - subsystem: "sce00770 Pantothenate and CoA biosynthesis" - annotation: !!omap - - ec-code: 2.7.1.24 - - bigg.reaction: DPCOAKm - - kegg.reaction: R00130 - - metanetx.reaction: MNXR97762 - - sbo: SBO:0000176 + - ec-code: "2.7.1.24" + - bigg.reaction: "DPCOAKm" + - kegg.reaction: "R00130" + - metanetx.reaction: "MNXR97762" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0335 - - name: dethiobiotin synthase + - id: "r_0335" + - name: "dethiobiotin synthase" - metabolites: !!omap - s_0341: -1 - s_0394: 1 @@ -36550,18 +36580,18 @@ - s_1322: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR057C - - subsystem: sce00780 Biotin metabolism + - gene_reaction_rule: "YNR057C" + - subsystem: "sce00780 Biotin metabolism" - annotation: !!omap - - ec-code: 6.3.3.3 - - bigg.reaction: DBTS - - kegg.reaction: R03182 - - metanetx.reaction: MNXR97180 - - sbo: SBO:0000176 + - ec-code: "6.3.3.3" + - bigg.reaction: "DBTS" + - kegg.reaction: "R03182" + - metanetx.reaction: "MNXR97180" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0340 - - name: dihydroceramidase + - id: "r_0340" + - name: "dihydroceramidase" - metabolites: !!omap - s_0475: 1 - s_0804: 1 @@ -36569,19 +36599,19 @@ - s_1445: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPL087W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YPL087W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - metanetx.reaction: MNXR126695 + - ec-code: "3.5.1.-" + - metanetx.reaction: "MNXR126695" - pmid: - - 10900202 - - 18296751 - - sbo: SBO:0000176 + - "10900202" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0341 - - name: dihydroceramidase + - id: "r_0341" + - name: "dihydroceramidase" - metabolites: !!omap - s_0478: 1 - s_0507: -1 @@ -36589,18 +36619,18 @@ - s_1445: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPL087W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YPL087W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- + - ec-code: "3.5.1.-" - pmid: - - 10900202 - - 18296751 - - sbo: SBO:0000176 + - "10900202" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0342 - - name: dihydroceramidase + - id: "r_0342" + - name: "dihydroceramidase" - metabolites: !!omap - s_0481: -1 - s_0804: -1 @@ -36608,19 +36638,19 @@ - s_1366: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL087W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YPL087W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - metanetx.reaction: MNXR126696 + - ec-code: "3.5.1.-" + - metanetx.reaction: "MNXR126696" - pmid: - - 10900202 - - 18296751 - - sbo: SBO:0000176 + - "10900202" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0343 - - name: dihydroceramidase + - id: "r_0343" + - name: "dihydroceramidase" - metabolites: !!omap - s_0484: -1 - s_0507: 1 @@ -36628,19 +36658,19 @@ - s_1366: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL087W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YPL087W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - metanetx.reaction: MNXR126694 + - ec-code: "3.5.1.-" + - metanetx.reaction: "MNXR126694" - pmid: - - 10900202 - - 18296751 - - sbo: SBO:0000176 + - "10900202" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0344 - - name: dihydrofolate reductase + - id: "r_0344" + - name: "dihydrofolate reductase" - metabolites: !!omap - s_0625: -1 - s_0794: -1 @@ -36649,20 +36679,20 @@ - s_1487: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR236W + - gene_reaction_rule: "YOR236W" - subsystem: - - sce00670 One carbon pool by folate - - sce00790 Folate biosynthesis + - "sce00670 One carbon pool by folate" + - "sce00790 Folate biosynthesis" - annotation: !!omap - - ec-code: 1.5.1.3 - - bigg.reaction: DHFR - - kegg.reaction: R00939 - - metanetx.reaction: MNXR97401 - - sbo: SBO:0000176 + - ec-code: "1.5.1.3" + - bigg.reaction: "DHFR" + - kegg.reaction: "R00939" + - metanetx.reaction: "MNXR97401" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0345 - - name: dihydrofolate reductase + - id: "r_0345" + - name: "dihydrofolate reductase" - metabolites: !!omap - s_0626: -1 - s_0799: -1 @@ -36671,20 +36701,20 @@ - s_1488: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR236W + - gene_reaction_rule: "YOR236W" - subsystem: - - sce00670 One carbon pool by folate - - sce00790 Folate biosynthesis + - "sce00670 One carbon pool by folate" + - "sce00790 Folate biosynthesis" - annotation: !!omap - - ec-code: 1.5.1.3 - - bigg.reaction: DHFRim - - kegg.reaction: R00939 - - metanetx.reaction: MNXR97401 - - sbo: SBO:0000176 + - ec-code: "1.5.1.3" + - bigg.reaction: "DHFRim" + - kegg.reaction: "R00939" + - metanetx.reaction: "MNXR97401" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0346 - - name: dihydrofolate synthase + - id: "r_0346" + - name: "dihydrofolate synthase" - metabolites: !!omap - s_0347: -1 - s_0394: 1 @@ -36695,39 +36725,39 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR113W - - subsystem: sce00790 Folate biosynthesis + - gene_reaction_rule: "YMR113W" + - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - - ec-code: 6.3.2.12 - - bigg.reaction: DHFS - - kegg.reaction: R02237 - - metanetx.reaction: MNXR140043 - - pmid: 11731153 - - sbo: SBO:0000176 + - ec-code: "6.3.2.12" + - bigg.reaction: "DHFS" + - kegg.reaction: "R02237" + - metanetx.reaction: "MNXR140043" + - pmid: "11731153" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0347 - - name: dihydroneopterin aldolase + - id: "r_0347" + - name: "dihydroneopterin aldolase" - metabolites: !!omap - s_0148: 1 - s_0344: -1 - s_0777: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL256W - - subsystem: sce00790 Folate biosynthesis + - gene_reaction_rule: "YNL256W" + - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: - - 2.5.1.15 - - 2.7.6.3 - - 4.1.2.25 - - kegg.reaction: R03504 - - metanetx.reaction: MNXR97415 - - sbo: SBO:0000176 + - "2.5.1.15" + - "2.7.6.3" + - "4.1.2.25" + - kegg.reaction: "R03504" + - metanetx.reaction: "MNXR97415" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0348 - - name: dihydroneopterin monophosphate dephosphorylase + - id: "r_0348" + - name: "dihydroneopterin monophosphate dephosphorylase" - metabolites: !!omap - s_0343: 1 - s_0345: -1 @@ -36735,17 +36765,17 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL100C + - gene_reaction_rule: "YDL100C" - annotation: !!omap - - ec-code: 3.6.-.- - - bigg.reaction: DNMPPA - - kegg.reaction: R04621 - - metanetx.reaction: MNXR126238 - - sbo: SBO:0000176 + - ec-code: "3.6.-.-" + - bigg.reaction: "DNMPPA" + - kegg.reaction: "R04621" + - metanetx.reaction: "MNXR126238" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0349 - - name: dihydroorotase + - id: "r_0349" + - name: "dihydroorotase" - metabolites: !!omap - s_0061: -1 - s_0794: 1 @@ -36753,19 +36783,19 @@ - s_1194: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR420W - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YLR420W" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.5.2.3 - - bigg.reaction: DHORTS - - kegg.reaction: R01993 - - metanetx.reaction: MNXR97428 - - pmid: 2897615 - - sbo: SBO:0000176 + - ec-code: "3.5.2.3" + - bigg.reaction: "DHORTS" + - kegg.reaction: "R01993" + - metanetx.reaction: "MNXR97428" + - pmid: "2897615" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0350 - - name: dihydropteroate synthase + - id: "r_0350" + - name: "dihydropteroate synthase" - metabolites: !!omap - s_0148: -1 - s_0273: -1 @@ -36773,20 +36803,20 @@ - s_0807: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL256W - - subsystem: sce00790 Folate biosynthesis + - gene_reaction_rule: "YNL256W" + - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: - - 2.5.1.15 - - 2.7.6.3 - - 4.1.2.25 - - kegg.reaction: R03066 - - metanetx.reaction: MNXR140386 - - sbo: SBO:0000176 + - "2.5.1.15" + - "2.7.6.3" + - "4.1.2.25" + - kegg.reaction: "R03066" + - metanetx.reaction: "MNXR140386" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0351 - - name: dihydropteroate synthase + - id: "r_0351" + - name: "dihydropteroate synthase" - metabolites: !!omap - s_0006: -1 - s_0273: -1 @@ -36794,71 +36824,71 @@ - s_0636: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL256W - - subsystem: sce00790 Folate biosynthesis + - gene_reaction_rule: "YNL256W" + - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: - - 2.5.1.15 - - 2.7.6.3 - - 4.1.2.25 - - bigg.reaction: FOLD3m - - kegg.reaction: R03067 - - metanetx.reaction: MNXR140085 - - sbo: SBO:0000176 + - "2.5.1.15" + - "2.7.6.3" + - "4.1.2.25" + - bigg.reaction: "FOLD3m" + - kegg.reaction: "R03067" + - metanetx.reaction: "MNXR140085" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0352 - - name: dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylbutanoate) + - id: "r_0352" + - name: "dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylbutanoate)" - metabolites: !!omap - s_0016: -1 - s_0233: 1 - s_0807: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR016C + - gene_reaction_rule: "YJR016C" - subsystem: - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.9 - - bigg.reaction: DHAD1m - - kegg.reaction: R04441 - - metanetx.reaction: MNXR97358 - - pmid: 14576278 - - sbo: SBO:0000176 + - ec-code: "4.2.1.9" + - bigg.reaction: "DHAD1m" + - kegg.reaction: "R04441" + - metanetx.reaction: "MNXR97358" + - pmid: "14576278" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0353 - - name: dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylpentanoate) + - id: "r_0353" + - name: "dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylpentanoate)" - metabolites: !!omap - s_0008: -1 - s_0060: 1 - s_0807: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR016C + - gene_reaction_rule: "YJR016C" - subsystem: - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.9 - - bigg.reaction: DHAD2m - - kegg.reaction: R05070 - - metanetx.reaction: MNXR97359 - - pmid: 14576278 - - sbo: SBO:0000176 + - ec-code: "4.2.1.9" + - bigg.reaction: "DHAD2m" + - kegg.reaction: "R05070" + - metanetx.reaction: "MNXR97359" + - pmid: "14576278" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0354 - - name: dihydroxyacetone kinase + - id: "r_0354" + - name: "dihydroxyacetone kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -36867,23 +36897,23 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFL053W or YML070W + - gene_reaction_rule: "YFL053W or YML070W" - subsystem: - - sce00051 Fructose and mannose metabolism - - sce00561 Glycerolipid metabolism - - sce01200 Carbon metabolism + - "sce00051 Fructose and mannose metabolism" + - "sce00561 Glycerolipid metabolism" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 2.7.1.28 - - 2.7.1.29 - - bigg.reaction: DHAK - - kegg.reaction: R01011 - - metanetx.reaction: MNXR97361 - - sbo: SBO:0000176 + - "2.7.1.28" + - "2.7.1.29" + - bigg.reaction: "DHAK" + - kegg.reaction: "R01011" + - metanetx.reaction: "MNXR97361" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0355 - - name: dimethylallyltranstransferase + - id: "r_0355" + - name: "dimethylallyltranstransferase" - metabolites: !!omap - s_0633: 1 - s_0745: 1 @@ -36891,48 +36921,48 @@ - s_1376: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL167W + - gene_reaction_rule: "YJL167W" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 2.5.1.1 - - 2.5.1.10 - - bigg.reaction: DMATT - - kegg.reaction: R01658 - - metanetx.reaction: MNXR97512 - - sbo: SBO:0000176 + - "2.5.1.1" + - "2.5.1.10" + - bigg.reaction: "DMATT" + - kegg.reaction: "R01658" + - metanetx.reaction: "MNXR97512" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0356 - - name: diphosphoglyceromutase + - id: "r_0356" + - name: "diphosphoglyceromutase" - metabolites: !!omap - s_0075: -1 - s_0140: 1 - s_0794: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL152C + - gene_reaction_rule: "YKL152C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00260 Glycine, serine and threonine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 5.4.2.11 - - bigg.reaction: DPGM - - kegg.reaction: R01662 - - metanetx.reaction: MNXR107112 - - pmid: 6313356 - - sbo: SBO:0000176 + - ec-code: "5.4.2.11" + - bigg.reaction: "DPGM" + - kegg.reaction: "R01662" + - metanetx.reaction: "MNXR107112" + - pmid: "6313356" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0357 - - name: diphosphoinositol-1,3,4,6-tetrakisphosphate diphosphohydrolase + - id: "r_0357" + - name: "diphosphoinositol-1,3,4,6-tetrakisphosphate diphosphohydrolase" - metabolites: !!omap - s_0309: -1 - s_0794: 3 @@ -36941,17 +36971,17 @@ - s_1322: 3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR163W + - gene_reaction_rule: "YOR163W" - annotation: !!omap - ec-code: - - 3.6.1.52 - - 3.6.1.60 - - pmid: 10419486 - - sbo: SBO:0000176 + - "3.6.1.52" + - "3.6.1.60" + - pmid: "10419486" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0358 - - name: diphosphoinositol-1,3,4,6-tetrakisphosphate synthase + - id: "r_0358" + - name: "diphosphoinositol-1,3,4,6-tetrakisphosphate synthase" - metabolites: !!omap - s_0309: 1 - s_0394: 1 @@ -36962,18 +36992,18 @@ - s_1322: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR017C + - gene_reaction_rule: "YDR017C" - subsystem: - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - - ec-code: 2.7.4.21 - - pmid: 11956213 - - sbo: SBO:0000176 + - ec-code: "2.7.4.21" + - pmid: "11956213" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0359 - - name: diphthine synthase + - id: "r_0359" + - name: "diphthine synthase" - metabolites: !!omap - s_0143: -1 - s_0144: 1 @@ -36982,18 +37012,18 @@ - s_1416: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR172C + - gene_reaction_rule: "YLR172C" - annotation: !!omap - - ec-code: 2.1.1.314 - - bigg.reaction: DIPS - - kegg.reaction: R04481 - - metanetx.reaction: MNXR108915 - - pmid: 1508200 - - sbo: SBO:0000176 + - ec-code: "2.1.1.314" + - bigg.reaction: "DIPS" + - kegg.reaction: "R04481" + - metanetx.reaction: "MNXR108915" + - pmid: "1508200" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0360 - - name: dolichol kinase + - id: "r_0360" + - name: "dolichol kinase" - metabolites: !!omap - s_0467: 1 - s_0539: -1 @@ -37002,18 +37032,18 @@ - s_0794: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR013C - - subsystem: sce00510 N-Glycan biosynthesis + - gene_reaction_rule: "YMR013C" + - subsystem: "sce00510 N-Glycan biosynthesis" - annotation: !!omap - - ec-code: 2.7.1.108 - - bigg.reaction: DOLK - - kegg.reaction: R01018 - - metanetx.reaction: MNXR106791 - - sbo: SBO:0000176 + - ec-code: "2.7.1.108" + - bigg.reaction: "DOLK" + - kegg.reaction: "R01018" + - metanetx.reaction: "MNXR106791" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0361 - - name: dolichyl-phosphate D-mannosyltransferase + - id: "r_0361" + - name: "dolichyl-phosphate D-mannosyltransferase" - metabolites: !!omap - s_0644: 1 - s_0645: -1 @@ -37022,37 +37052,37 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR183W - - subsystem: sce00510 N-Glycan biosynthesis + - gene_reaction_rule: "YPR183W" + - subsystem: "sce00510 N-Glycan biosynthesis" - annotation: !!omap - - ec-code: 2.4.1.83 - - bigg.reaction: DOLPMTcer - - kegg.reaction: R01009 - - metanetx.reaction: MNXR106788 - - sbo: SBO:0000176 + - ec-code: "2.4.1.83" + - bigg.reaction: "DOLPMTcer" + - kegg.reaction: "R01009" + - metanetx.reaction: "MNXR106788" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0362 - - name: dolichyl-phosphate-mannose--protein mannosyltransferase + - id: "r_0362" + - name: "dolichyl-phosphate-mannose--protein mannosyltransferase" - metabolites: !!omap - s_0644: -1 - s_0646: 1 - s_1108: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YAL023C and YDL095W) or YDL093W or YJR143C or YOR321W + - gene_reaction_rule: "(YAL023C and YDL095W) or YDL093W or YJR143C or YOR321W" - subsystem: - - sce00514 Other types of O-glycan biosynthesis - - sce00515 Mannose type O-glycan biosynthesis + - "sce00514 Other types of O-glycan biosynthesis" + - "sce00515 Mannose type O-glycan biosynthesis" - annotation: !!omap - - ec-code: 2.4.1.109 - - bigg.reaction: DOLPMMer - - metanetx.reaction: MNXR136057 - - sbo: SBO:0000176 + - ec-code: "2.4.1.109" + - bigg.reaction: "DOLPMMer" + - metanetx.reaction: "MNXR136057" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0363 - - name: dTMP kinase + - id: "r_0363" + - name: "dTMP kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -37060,18 +37090,18 @@ - s_0649: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR057W - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YJR057W" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 2.7.4.9 - - bigg.reaction: DTMPK - - kegg.reaction: R02094 - - metanetx.reaction: MNXR97804 - - sbo: SBO:0000176 + - ec-code: "2.7.4.9" + - bigg.reaction: "DTMPK" + - kegg.reaction: "R02094" + - metanetx.reaction: "MNXR97804" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0364 - - name: dUTP diphosphatase + - id: "r_0364" + - name: "dUTP diphosphatase" - metabolites: !!omap - s_0633: 1 - s_0654: 1 @@ -37080,60 +37110,60 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR069C or YBR252W - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YJR069C or YBR252W" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.6.1.23 - - bigg.reaction: DUTPDP - - kegg.reaction: R02100 - - metanetx.reaction: MNXR97822 - - sbo: SBO:0000176 + - ec-code: "3.6.1.23" + - bigg.reaction: "DUTPDP" + - kegg.reaction: "R02100" + - metanetx.reaction: "MNXR97822" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0365 - - name: endopolygalacturonase + - id: "r_0365" + - name: "endopolygalacturonase" - metabolites: !!omap - s_0560: 1 - s_0805: -1 - s_1309: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR153W - - subsystem: sce00040 Pentose and glucuronate interconversions + - gene_reaction_rule: "YJR153W" + - subsystem: "sce00040 Pentose and glucuronate interconversions" - annotation: !!omap - - ec-code: 3.2.1.15 - - bigg.reaction: EPGALURSe - - pmid: 10028181 - - sbo: SBO:0000176 + - ec-code: "3.2.1.15" + - bigg.reaction: "EPGALURSe" + - pmid: "10028181" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0366 - - name: enolase + - id: "r_0366" + - name: "enolase" - metabolites: !!omap - s_0188: -1 - s_0803: 1 - s_1360: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPL281C or YGR254W or YHR174W or YMR323W or YOR393W + - gene_reaction_rule: "YPL281C or YGR254W or YHR174W or YMR323W or YOR393W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids - - sce03018 RNA degradation + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" + - "sce03018 RNA degradation" - annotation: !!omap - - ec-code: 4.2.1.11 - - bigg.reaction: ENO - - kegg.reaction: R00658 - - metanetx.reaction: MNXR97932 - - pmid: 7520111 - - sbo: SBO:0000176 + - ec-code: "4.2.1.11" + - bigg.reaction: "ENO" + - kegg.reaction: "R00658" + - metanetx.reaction: "MNXR97932" + - pmid: "7520111" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0368 - - name: ethanolamine kinase + - id: "r_0368" + - name: "ethanolamine kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -37142,21 +37172,21 @@ - s_1239: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR147W or YLR133W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDR147W or YLR133W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: - - 2.7.1.32 - - 2.7.1.82 - - bigg.reaction: ETHAK - - kegg.reaction: R01468 - - metanetx.reaction: MNXR97969 - - pmid: 9506987 - - sbo: SBO:0000176 + - "2.7.1.32" + - "2.7.1.82" + - bigg.reaction: "ETHAK" + - kegg.reaction: "R01468" + - metanetx.reaction: "MNXR97969" + - pmid: "9506987" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0369 - - name: ethyl acetate-hydrolyzing esterase + - id: "r_0369" + - name: "ethyl acetate-hydrolyzing esterase" - metabolites: !!omap - s_0362: 1 - s_0680: 1 @@ -37165,37 +37195,37 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR126C + - gene_reaction_rule: "YOR126C" - annotation: !!omap - - ec-code: 3.1.-.- - - metanetx.reaction: MNXR121010 - - pmid: 10855721 - - sbo: SBO:0000176 + - ec-code: "3.1.-.-" + - metanetx.reaction: "MNXR121010" + - pmid: "10855721" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0370 - - name: exo-1,3-beta-glucan glucohydrase + - id: "r_0370" + - name: "exo-1,3-beta-glucan glucohydrase" - metabolites: !!omap - s_0003: -1 - s_0565: 1 - s_0805: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR261C or YGR282C or YLR300W or YNR067C or YOR190W - - subsystem: sce00500 Starch and sucrose metabolism + - gene_reaction_rule: "YDR261C or YGR282C or YLR300W or YNR067C or YOR190W" + - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: - - 3.2.1.58 - - 3.2.1.6 - - bigg.reaction: 13BGHe - - kegg.reaction: R00308 - - metanetx.reaction: MNXR106465 - - pmid: 8458852 - - sbo: SBO:0000176 + - "3.2.1.58" + - "3.2.1.6" + - bigg.reaction: "13BGHe" + - kegg.reaction: "R00308" + - metanetx.reaction: "MNXR106465" + - pmid: "8458852" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0373 - - name: farnesyltranstransferase + - id: "r_0373" + - name: "farnesyltranstransferase" - metabolites: !!omap - s_0189: 1 - s_0190: -1 @@ -37203,26 +37233,26 @@ - s_0943: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL069C + - gene_reaction_rule: "YPL069C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 2.5.1.- - - 2.5.1.1 - - 2.5.1.10 - - 2.5.1.29 - - bigg.reaction: FRTT - - kegg.reaction: R02061 - - metanetx.reaction: MNXR99650 - - pmid: 7665600 - - sbo: SBO:0000176 + - "2.5.1.-" + - "2.5.1.1" + - "2.5.1.10" + - "2.5.1.29" + - bigg.reaction: "FRTT" + - kegg.reaction: "R02061" + - metanetx.reaction: "MNXR99650" + - pmid: "7665600" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0399 - - name: fatty-acid--CoA ligase (decanoate) + - id: "r_0399" + - name: "fatty-acid--CoA ligase (decanoate)" - metabolites: !!omap - s_0426: 1 - s_0439: -1 @@ -37232,20 +37262,20 @@ - s_0638: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER015W + - gene_reaction_rule: "YER015W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR118203 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR118203" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0400 - - name: fatty-acid--CoA ligase (dodecanoate) + - id: "r_0400" + - name: "fatty-acid--CoA ligase (dodecanoate)" - metabolites: !!omap - s_0426: 1 - s_0439: -1 @@ -37255,21 +37285,21 @@ - s_1076: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER015W + - gene_reaction_rule: "YER015W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - bigg.reaction: FACOAL120p - - metanetx.reaction: MNXR120051 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - bigg.reaction: "FACOAL120p" + - metanetx.reaction: "MNXR120051" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0402 - - name: fatty-acid--CoA ligase (hexadecanoate) + - id: "r_0402" + - name: "fatty-acid--CoA ligase (hexadecanoate)" - metabolites: !!omap - s_0426: 1 - s_0439: -1 @@ -37279,22 +37309,22 @@ - s_1305: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER015W + - gene_reaction_rule: "YER015W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - bigg.reaction: FACOAL160p - - kegg.reaction: R01280 - - metanetx.reaction: MNXR99153 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - bigg.reaction: "FACOAL160p" + - kegg.reaction: "R01280" + - metanetx.reaction: "MNXR99153" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0410 - - name: fatty-acid--CoA ligase (octanoate) + - id: "r_0410" + - name: "fatty-acid--CoA ligase (octanoate)" - metabolites: !!omap - s_0426: 1 - s_0439: -1 @@ -37304,21 +37334,21 @@ - s_1258: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER015W + - gene_reaction_rule: "YER015W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - bigg.reaction: FACOAL80p - - metanetx.reaction: MNXR99205 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - bigg.reaction: "FACOAL80p" + - metanetx.reaction: "MNXR99205" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0412 - - name: fatty-acid--CoA ligase (tetradecanoate) + - id: "r_0412" + - name: "fatty-acid--CoA ligase (tetradecanoate)" - metabolites: !!omap - s_0426: 1 - s_0439: -1 @@ -37328,21 +37358,21 @@ - s_1179: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER015W + - gene_reaction_rule: "YER015W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - bigg.reaction: FACOAL140p - - metanetx.reaction: MNXR126663 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - bigg.reaction: "FACOAL140p" + - metanetx.reaction: "MNXR126663" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0436 - - name: ferrochelatase + - id: "r_0436" + - name: "ferrochelatase" - metabolites: !!omap - s_0712: 1 - s_0799: 2 @@ -37350,20 +37380,20 @@ - s_1383: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR176W + - gene_reaction_rule: "YOR176W" - subsystem: - - sce00860 Porphyrin and chlorophyll metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.99.1.1 - - bigg.reaction: FCLTm - - kegg.reaction: R00310 - - metanetx.reaction: MNXR99471 - - sbo: SBO:0000176 + - ec-code: "4.99.1.1" + - bigg.reaction: "FCLTm" + - kegg.reaction: "R00310" + - metanetx.reaction: "MNXR99471" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0437 - - name: ferrocytochrome-c:hydrogen-peroxide oxidoreductase + - id: "r_0437" + - name: "ferrocytochrome-c:hydrogen-peroxide oxidoreductase" - metabolites: !!omap - s_0709: 2 - s_0710: -2 @@ -37371,18 +37401,18 @@ - s_0838: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YEL039C and YKR066C) or (YJR048W and YKR066C) - - subsystem: sce00920 Sulfur metabolism + - gene_reaction_rule: "(YEL039C and YKR066C) or (YJR048W and YKR066C)" + - subsystem: "sce00920 Sulfur metabolism" - annotation: !!omap - - ec-code: 1.11.1.5 - - bigg.reaction: CCP2m - - kegg.reaction: R00017 - - metanetx.reaction: MNXR138164 - - sbo: SBO:0000176 + - ec-code: "1.11.1.5" + - bigg.reaction: "CCP2m" + - kegg.reaction: "R00017" + - metanetx.reaction: "MNXR138164" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0438 - - name: ferrocytochrome-c:oxygen oxidoreductase + - id: "r_0438" + - name: "ferrocytochrome-c:oxygen oxidoreductase" - metabolites: !!omap - s_0709: 1 - s_0710: -1 @@ -37392,20 +37422,20 @@ - s_1278: -0.25 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (Q0045 and Q0250 and Q0275 and YDL067C and YEL039C and YGL187C and YGL191W and YHR051W and YIL111W and YLR038C and YLR395C and YMR256C) or (Q0045 and Q0250 and Q0275 and YDL067C and YEL039C and YGL187C and YGL191W and YHR051W and YLR038C and YLR395C and YMR256C and YNL052W) or (Q0045 and Q0250 and Q0275 and YDL067C and YGL187C and YGL191W and YHR051W and YIL111W and YJR048W and YLR038C and YLR395C and YMR256C) or (Q0045 and Q0250 and Q0275 and YDL067C and YGL187C and YGL191W and YHR051W and YJR048W and YLR038C and YLR395C and YMR256C and YNL052W) or (Q0045 and Q0250 and Q0275 and YDL067C and YHR116W and YDR231C and YGR062C and YJL003W and YPL132W and YLL018C-A) + - gene_reaction_rule: "(Q0045 and Q0250 and Q0275 and YDL067C and YEL039C and YGL187C and YGL191W and YHR051W and YIL111W and YLR038C and YLR395C and YMR256C) or (Q0045 and Q0250 and Q0275 and YDL067C and YEL039C and YGL187C and YGL191W and YHR051W and YLR038C and YLR395C and YMR256C and YNL052W) or (Q0045 and Q0250 and Q0275 and YDL067C and YGL187C and YGL191W and YHR051W and YIL111W and YJR048W and YLR038C and YLR395C and YMR256C) or (Q0045 and Q0250 and Q0275 and YDL067C and YGL187C and YGL191W and YHR051W and YJR048W and YLR038C and YLR395C and YMR256C and YNL052W) or (Q0045 and Q0250 and Q0275 and YDL067C and YHR116W and YDR231C and YGR062C and YJL003W and YPL132W and YLL018C-A)" - subsystem: - - sce00190 Oxidative phosphorylation - - sce00920 Sulfur metabolism + - "sce00190 Oxidative phosphorylation" + - "sce00920 Sulfur metabolism" - annotation: !!omap - - ec-code: 1.9.3.1 - - kegg.reaction: R00081 - - metanetx.reaction: MNXR138955 - - pmid: 21964735 - - sbo: SBO:0000655 + - ec-code: "1.9.3.1" + - kegg.reaction: "R00081" + - metanetx.reaction: "MNXR138955" + - pmid: "21964735" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_0439 - - name: ubiquinol:ferricytochrome c reductase + - id: "r_0439" + - name: "ubiquinol:ferricytochrome c reductase" - metabolites: !!omap - s_0709: -2 - s_0710: 2 @@ -37415,17 +37445,17 @@ - s_1537: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (Q0105 and YBL045C and YDR529C and YEL024W and YEL039C and YFR033C and YGR183C and YHR001W-A and YJL166W and YOR065W and YPR191W) or (Q0105 and YBL045C and YDR529C and YEL024W and YFR033C and YGR183C and YHR001W-A and YJL166W and YJR048W and YOR065W and YPR191W) + - gene_reaction_rule: "(Q0105 and YBL045C and YDR529C and YEL024W and YEL039C and YFR033C and YGR183C and YHR001W-A and YJL166W and YOR065W and YPR191W) or (Q0105 and YBL045C and YDR529C and YEL024W and YFR033C and YGR183C and YHR001W-A and YJL166W and YJR048W and YOR065W and YPR191W)" - subsystem: - - sce00190 Oxidative phosphorylation - - sce00920 Sulfur metabolism + - "sce00190 Oxidative phosphorylation" + - "sce00920 Sulfur metabolism" - annotation: !!omap - - ec-code: 1.10.2.2 - - sbo: SBO:0000655 + - ec-code: "1.10.2.2" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_0440 - - name: FMN adenylyltransferase + - id: "r_0440" + - name: "FMN adenylyltransferase" - metabolites: !!omap - s_0434: -1 - s_0633: 1 @@ -37434,20 +37464,20 @@ - s_0794: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL045C + - gene_reaction_rule: "YDL045C" - subsystem: - - sce00740 Riboflavin metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00740 Riboflavin metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.7.2 - - bigg.reaction: FMNAT - - kegg.reaction: R00161 - - metanetx.reaction: MNXR95501 - - sbo: SBO:0000176 + - ec-code: "2.7.7.2" + - bigg.reaction: "FMNAT" + - kegg.reaction: "R00161" + - metanetx.reaction: "MNXR95501" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0441 - - name: FMN reductase + - id: "r_0441" + - name: "FMN reductase" - metabolites: !!omap - s_0714: -1 - s_0717: 1 @@ -37456,18 +37486,18 @@ - s_1203: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR011W + - gene_reaction_rule: "YLR011W" - annotation: !!omap - - ec-code: 1.5.1.39 - - bigg.reaction: FMNRx - - kegg.reaction: R05705 - - metanetx.reaction: MNXR99607 - - pmid: 15184374 - - sbo: SBO:0000176 + - ec-code: "1.5.1.39" + - bigg.reaction: "FMNRx" + - kegg.reaction: "R05705" + - metanetx.reaction: "MNXR99607" + - pmid: "15184374" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0442 - - name: FMN reductase + - id: "r_0442" + - name: "FMN reductase" - metabolites: !!omap - s_0714: -1 - s_0717: 1 @@ -37476,18 +37506,18 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR011W + - gene_reaction_rule: "YLR011W" - annotation: !!omap - - ec-code: 1.5.1.39 - - bigg.reaction: FMNRx2 - - kegg.reaction: R05706 - - metanetx.reaction: MNXR99597 - - pmid: 15184374 - - sbo: SBO:0000176 + - ec-code: "1.5.1.39" + - bigg.reaction: "FMNRx2" + - kegg.reaction: "R05706" + - metanetx.reaction: "MNXR99597" + - pmid: "15184374" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0443 - - name: formaldehyde dehydrogenase + - id: "r_0443" + - name: "formaldehyde dehydrogenase" - metabolites: !!omap - s_0721: -1 - s_0750: -1 @@ -37497,26 +37527,26 @@ - s_1421: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL168W + - gene_reaction_rule: "YDL168W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.1 - - 1.1.1.284 - - bigg.reaction: FALDH - - metanetx.reaction: MNXR99236 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" + - bigg.reaction: "FALDH" + - metanetx.reaction: "MNXR99236" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0445 - - name: formate dehydrogenase + - id: "r_0445" + - name: "formate dehydrogenase" - metabolites: !!omap - s_0456: 1 - s_0722: -1 @@ -37524,20 +37554,20 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR388C + - gene_reaction_rule: "YOR388C" - subsystem: - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01200 Carbon metabolism + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 1.2.1.2 - - bigg.reaction: FDH - - kegg.reaction: R00519 - - metanetx.reaction: MNXR99475 - - sbo: SBO:0000176 + - ec-code: "1.2.1.2" + - bigg.reaction: "FDH" + - kegg.reaction: "R00519" + - metanetx.reaction: "MNXR99475" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0446 - - name: formate-tetrahydrofolate ligase + - id: "r_0446" + - name: "formate-tetrahydrofolate ligase" - metabolites: !!omap - s_0120: 1 - s_0394: 1 @@ -37547,25 +37577,25 @@ - s_1487: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR204W - - subsystem: sce00670 One carbon pool by folate + - gene_reaction_rule: "YGR204W" + - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: - - 1.5.1.5 - - 3.5.4.9 - - 6.3.4.3 - - bigg.reaction: FTHFLi - - kegg.reaction: R00943 - - metanetx.reaction: MNXR99672 + - "1.5.1.5" + - "3.5.4.9" + - "6.3.4.3" + - bigg.reaction: "FTHFLi" + - kegg.reaction: "R00943" + - metanetx.reaction: "MNXR99672" - pmid: - - 10871621 - - 1916088 - - 8852837 - - sbo: SBO:0000176 + - "10871621" + - "1916088" + - "8852837" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0447 - - name: formate-tetrahydrofolate ligase + - id: "r_0447" + - name: "formate-tetrahydrofolate ligase" - metabolites: !!omap - s_0121: 1 - s_0397: 1 @@ -37575,25 +37605,25 @@ - s_1488: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR084W - - subsystem: sce00670 One carbon pool by folate + - gene_reaction_rule: "YBR084W" + - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: - - 1.5.1.5 - - 3.5.4.9 - - 6.3.4.3 - - bigg.reaction: FTHFLmi - - kegg.reaction: R00943 - - metanetx.reaction: MNXR99672 + - "1.5.1.5" + - "3.5.4.9" + - "6.3.4.3" + - bigg.reaction: "FTHFLmi" + - kegg.reaction: "R00943" + - metanetx.reaction: "MNXR99672" - pmid: - - 10871621 - - 1916088 - - 8852837 - - sbo: SBO:0000176 + - "10871621" + - "1916088" + - "8852837" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0448 - - name: fructose-2,6-bisphosphate 2-phosphatase + - id: "r_0448" + - name: "fructose-2,6-bisphosphate 2-phosphatase" - metabolites: !!omap - s_0442: -1 - s_0557: 1 @@ -37601,18 +37631,18 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR345W or YJL155C - - subsystem: sce00051 Fructose and mannose metabolism + - gene_reaction_rule: "YLR345W or YJL155C" + - subsystem: "sce00051 Fructose and mannose metabolism" - annotation: !!omap - - ec-code: 3.1.3.46 - - bigg.reaction: FBP26 - - kegg.reaction: R00763 - - metanetx.reaction: MNXR106671 - - sbo: SBO:0000176 + - ec-code: "3.1.3.46" + - bigg.reaction: "FBP26" + - kegg.reaction: "R00763" + - metanetx.reaction: "MNXR106671" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0449 - - name: fructose-bisphosphatase + - id: "r_0449" + - name: "fructose-bisphosphatase" - metabolites: !!omap - s_0555: -1 - s_0557: 1 @@ -37620,99 +37650,99 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR377C + - gene_reaction_rule: "YLR377C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00030 Pentose phosphate pathway - - sce00051 Fructose and mannose metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00030 Pentose phosphate pathway" + - "sce00051 Fructose and mannose metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 3.1.3.11 - - bigg.reaction: FBP - - kegg.reaction: R00762 - - metanetx.reaction: MNXR106670 - - sbo: SBO:0000176 + - ec-code: "3.1.3.11" + - bigg.reaction: "FBP" + - kegg.reaction: "R00762" + - metanetx.reaction: "MNXR106670" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0450 - - name: fructose-bisphosphate aldolase + - id: "r_0450" + - name: "fructose-bisphosphate aldolase" - metabolites: !!omap - s_0555: -1 - s_0629: 1 - s_0764: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL060C + - gene_reaction_rule: "YKL060C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00030 Pentose phosphate pathway - - sce00051 Fructose and mannose metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00030 Pentose phosphate pathway" + - "sce00051 Fructose and mannose metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.1.2.13 - - bigg.reaction: FBA - - metanetx.reaction: MNXR124532 - - pmid: 8435847 - - sbo: SBO:0000176 + - ec-code: "4.1.2.13" + - bigg.reaction: "FBA" + - metanetx.reaction: "MNXR124532" + - pmid: "8435847" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0451 - - name: fumarase + - id: "r_0451" + - name: "fumarase" - metabolites: !!omap - s_0068: 1 - s_0727: -1 - s_0807: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPL262W + - gene_reaction_rule: "YPL262W" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 4.2.1.2 - - bigg.reaction: FUMm - - kegg.reaction: R01082 - - metanetx.reaction: MNXR99705 - - pmid: 9627400 - - sbo: SBO:0000176 + - ec-code: "4.2.1.2" + - bigg.reaction: "FUMm" + - kegg.reaction: "R01082" + - metanetx.reaction: "MNXR99705" + - pmid: "9627400" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0452 - - name: fumarase, cytoplasmic + - id: "r_0452" + - name: "fumarase, cytoplasmic" - metabolites: !!omap - s_0066: 1 - s_0725: -1 - s_0803: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPL262W + - gene_reaction_rule: "YPL262W" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 4.2.1.2 - - bigg.reaction: FUM - - kegg.reaction: R01082 - - metanetx.reaction: MNXR99705 + - ec-code: "4.2.1.2" + - bigg.reaction: "FUM" + - kegg.reaction: "R01082" + - metanetx.reaction: "MNXR99705" - pmid: - - 11585823 - - 20231875 - - sbo: SBO:0000176 + - "11585823" + - "20231875" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0453 - - name: dihydoorotic acid dehydrogenase + - id: "r_0453" + - name: "dihydoorotic acid dehydrogenase" - metabolites: !!omap - s_0061: -1 - s_0725: -1 @@ -37720,19 +37750,19 @@ - s_1458: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL216W - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YKL216W" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 1.3.98.1 - - bigg.reaction: DHORDfum - - kegg.reaction: R01867 - - metanetx.reaction: MNXR97425 - - pmid: 1409592 - - sbo: SBO:0000176 + - ec-code: "1.3.98.1" + - bigg.reaction: "DHORDfum" + - kegg.reaction: "R01867" + - metanetx.reaction: "MNXR97425" + - pmid: "1409592" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0454 - - name: fumarate reductase + - id: "r_0454" + - name: "fumarate reductase" - metabolites: !!omap - s_0688: 1 - s_0690: -1 @@ -37741,21 +37771,21 @@ - s_1460: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YEL047C + - gene_reaction_rule: "YEL047C" - annotation: !!omap - - ec-code: 1.3.1.6 - - bigg.reaction: FRDm - - kegg.reaction: R00408 - - metanetx.reaction: MNXR99636 + - ec-code: "1.3.1.6" + - bigg.reaction: "FRDm" + - kegg.reaction: "R00408" + - metanetx.reaction: "MNXR99636" - pmid: - - 22672422 - - 8946166 - - 9587404 - - sbo: SBO:0000176 + - "22672422" + - "8946166" + - "9587404" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0455 - - name: soluble fumarate reductase + - id: "r_0455" + - name: "soluble fumarate reductase" - metabolites: !!omap - s_0687: 1 - s_0689: -1 @@ -37764,18 +37794,18 @@ - s_1458: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YEL047C + - gene_reaction_rule: "YEL047C" - annotation: !!omap - - ec-code: 1.3.1.6 - - bigg.reaction: FRD - - kegg.reaction: R00408 - - metanetx.reaction: MNXR99636 - - pmid: 22672422 - - sbo: SBO:0000176 + - ec-code: "1.3.1.6" + - bigg.reaction: "FRD" + - kegg.reaction: "R00408" + - metanetx.reaction: "MNXR99636" + - pmid: "22672422" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0457 - - name: g-glutamyltransferase + - id: "r_0457" + - name: "g-glutamyltransferase" - metabolites: !!omap - s_0750: -1 - s_0955: -1 @@ -37783,21 +37813,21 @@ - s_0987: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR299W + - gene_reaction_rule: "YLR299W" - subsystem: - - sce00430 Taurine and hypotaurine metabolism - - sce00480 Glutathione metabolism + - "sce00430 Taurine and hypotaurine metabolism" + - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: - - 2.3.2.2 - - 3.4.19.13 - - bigg.reaction: GTMLT - - metanetx.reaction: MNXR100451 - - sbo: SBO:0000176 + - "2.3.2.2" + - "3.4.19.13" + - bigg.reaction: "GTMLT" + - metanetx.reaction: "MNXR100451" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0458 - - name: galactokinase + - id: "r_0458" + - name: "galactokinase" - metabolites: !!omap - s_0394: 1 - s_0410: 1 @@ -37806,20 +37836,20 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR020W + - gene_reaction_rule: "YBR020W" - subsystem: - - sce00052 Galactose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism + - "sce00052 Galactose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" - annotation: !!omap - - ec-code: 2.7.1.6 - - bigg.reaction: GALKr - - kegg.reaction: R01092 - - metanetx.reaction: MNXR99985 - - sbo: SBO:0000176 + - ec-code: "2.7.1.6" + - bigg.reaction: "GALKr" + - kegg.reaction: "R01092" + - metanetx.reaction: "MNXR99985" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0459 - - name: galactose-1-phosphate uridylyltransferase + - id: "r_0459" + - name: "galactose-1-phosphate uridylyltransferase" - metabolites: !!omap - s_0410: -1 - s_0633: 1 @@ -37828,20 +37858,20 @@ - s_1559: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR018C + - gene_reaction_rule: "YBR018C" - subsystem: - - sce00052 Galactose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism + - "sce00052 Galactose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" - annotation: !!omap - - ec-code: 2.7.7.12 - - bigg.reaction: GALT - - kegg.reaction: R00502 - - metanetx.reaction: MNXR100014 - - sbo: SBO:0000176 + - ec-code: "2.7.7.12" + - bigg.reaction: "GALT" + - kegg.reaction: "R00502" + - metanetx.reaction: "MNXR100014" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0460 - - name: gamma-glutamylcysteine synthetase + - id: "r_0460" + - name: "gamma-glutamylcysteine synthetase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -37852,20 +37882,20 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL101C + - gene_reaction_rule: "YJL101C" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00480 Glutathione metabolism + - "sce00270 Cysteine and methionine metabolism" + - "sce00480 Glutathione metabolism" - annotation: !!omap - - ec-code: 6.3.2.2 - - bigg.reaction: GLUCYS - - kegg.reaction: R00894 - - metanetx.reaction: MNXR100074 - - sbo: SBO:0000176 + - ec-code: "6.3.2.2" + - bigg.reaction: "GLUCYS" + - kegg.reaction: "R00894" + - metanetx.reaction: "MNXR100074" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0461 - - name: geranylgeranyltranstransferase + - id: "r_0461" + - name: "geranylgeranyltranstransferase" - metabolites: !!omap - s_0189: -1 - s_0633: 1 @@ -37873,16 +37903,17 @@ - s_1311: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GGTT - - kegg.reaction: R07475 - - metanetx.reaction: MNXR100137 - - pmid: 15792955 - - sbo: SBO:0000176 + - bigg.reaction: "GGTT" + - kegg.reaction: "R07475" + - metanetx.reaction: "MNXR100137" + - pmid: "15792955" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_0462 - - name: geranyltranstransferase + - id: "r_0462" + - name: "geranyltranstransferase" - metabolites: !!omap - s_0190: 1 - s_0633: 1 @@ -37890,63 +37921,63 @@ - s_0943: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL167W + - gene_reaction_rule: "YJL167W" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 2.5.1.1 - - 2.5.1.10 - - bigg.reaction: GRTT - - kegg.reaction: R02003 - - metanetx.reaction: MNXR99634 - - sbo: SBO:0000176 + - "2.5.1.1" + - "2.5.1.10" + - bigg.reaction: "GRTT" + - kegg.reaction: "R02003" + - metanetx.reaction: "MNXR99634" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0463 - - name: glucan 1,4-alpha-glucosidase + - id: "r_0463" + - name: "glucan 1,4-alpha-glucosidase" - metabolites: !!omap - s_0563: 1 - s_0773: -1 - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR184W + - gene_reaction_rule: "YPR184W" - subsystem: - - sce00500 Starch and sucrose metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00500 Starch and sucrose metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.4.1.25 - - 3.2.1.33 - - bigg.reaction: GLCGSD - - metanetx.reaction: MNXR100180 - - pmid: 11094287 - - sbo: SBO:0000176 + - "2.4.1.25" + - "3.2.1.33" + - bigg.reaction: "GLCGSD" + - metanetx.reaction: "MNXR100180" + - pmid: "11094287" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0464 - - name: glucan 1,4-alpha-glucosidase, vacuole + - id: "r_0464" + - name: "glucan 1,4-alpha-glucosidase, vacuole" - metabolites: !!omap - s_0566: 1 - s_0774: -1 - s_0810: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL099W - - subsystem: sce00500 Starch and sucrose metabolism + - gene_reaction_rule: "YIL099W" + - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - - ec-code: 3.2.1.3 - - bigg.reaction: GLCGSDv - - metanetx.reaction: MNXR100180 - - pmid: 11486014 - - sbo: SBO:0000176 + - ec-code: "3.2.1.3" + - bigg.reaction: "GLCGSDv" + - metanetx.reaction: "MNXR100180" + - pmid: "11486014" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0465 - - name: glucosamine-6-phosphate deaminase + - id: "r_0465" + - name: "glucosamine-6-phosphate deaminase" - metabolites: !!omap - s_0412: -1 - s_0419: 1 @@ -37954,15 +37985,16 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: G6PDA - - metanetx.reaction: MNXR125024 - - pmid: 369615 - - sbo: SBO:0000176 + - bigg.reaction: "G6PDA" + - metanetx.reaction: "MNXR125024" + - pmid: "369615" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_0466 - - name: glucose 6-phosphate dehydrogenase + - id: "r_0466" + - name: "glucose 6-phosphate dehydrogenase" - metabolites: !!omap - s_0335: 1 - s_0568: -1 @@ -37971,49 +38003,49 @@ - s_1212: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL241C + - gene_reaction_rule: "YNL241C" - subsystem: - - sce00030 Pentose phosphate pathway - - sce00480 Glutathione metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00030 Pentose phosphate pathway" + - "sce00480 Glutathione metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 1.1.1.49 - - bigg.reaction: G6PDH2r - - kegg.reaction: R00835 - - metanetx.reaction: MNXR99907 - - pmid: 2269430 - - sbo: SBO:0000176 + - ec-code: "1.1.1.49" + - bigg.reaction: "G6PDH2r" + - kegg.reaction: "R00835" + - metanetx.reaction: "MNXR99907" + - pmid: "2269430" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0467 - - name: glucose-6-phosphate isomerase + - id: "r_0467" + - name: "glucose-6-phosphate isomerase" - metabolites: !!omap - s_0557: 1 - s_0568: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR196C + - gene_reaction_rule: "YBR196C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00030 Pentose phosphate pathway - - sce00500 Starch and sucrose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00030 Pentose phosphate pathway" + - "sce00500 Starch and sucrose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 5.3.1.9 - - bigg.reaction: PGI - - kegg.reaction: R00771 - - metanetx.reaction: MNXR106678 - - pmid: 8435847 - - sbo: SBO:0000176 + - ec-code: "5.3.1.9" + - bigg.reaction: "PGI" + - kegg.reaction: "R00771" + - metanetx.reaction: "MNXR106678" + - pmid: "8435847" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0468 - - name: glutamate 5-kinase + - id: "r_0468" + - name: "glutamate 5-kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -38021,22 +38053,22 @@ - s_0991: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR300C + - gene_reaction_rule: "YDR300C" - subsystem: - - sce00330 Arginine and proline metabolism - - sce00332 Carbapenem biosynthesis - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00330 Arginine and proline metabolism" + - "sce00332 Carbapenem biosynthesis" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.7.2.11 - - bigg.reaction: GLU5K - - kegg.reaction: R00239 - - metanetx.reaction: MNXR100277 - - sbo: SBO:0000176 + - ec-code: "2.7.2.11" + - bigg.reaction: "GLU5K" + - kegg.reaction: "R00239" + - metanetx.reaction: "MNXR100277" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0469 - - name: glutamate decarboxylase + - id: "r_0469" + - name: "glutamate decarboxylase" - metabolites: !!omap - s_0456: 1 - s_0734: 1 @@ -38044,24 +38076,24 @@ - s_0991: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR250W + - gene_reaction_rule: "YMR250W" - subsystem: - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00410 beta-Alanine metabolism - - sce00430 Taurine and hypotaurine metabolism - - sce00650 Butanoate metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce00430 Taurine and hypotaurine metabolism" + - "sce00650 Butanoate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.15 - - bigg.reaction: GLUDC - - kegg.reaction: R00261 - - metanetx.reaction: MNXR95942 - - pmid: 11031268 - - sbo: SBO:0000176 + - ec-code: "4.1.1.15" + - bigg.reaction: "GLUDC" + - kegg.reaction: "R00261" + - metanetx.reaction: "MNXR95942" + - pmid: "11031268" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0470 - - name: glutamate dehydrogenase (NAD) + - id: "r_0470" + - name: "glutamate dehydrogenase (NAD)" - metabolites: !!omap - s_0180: 1 - s_0419: 1 @@ -38072,23 +38104,23 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL215C + - gene_reaction_rule: "YDL215C" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00430 Taurine and hypotaurine metabolism - - sce00910 Nitrogen metabolism + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00430 Taurine and hypotaurine metabolism" + - "sce00910 Nitrogen metabolism" - annotation: !!omap - - ec-code: 1.4.1.2 - - bigg.reaction: GLUDxi - - kegg.reaction: R00243 - - metanetx.reaction: MNXR100085 - - pmid: 14554197 - - sbo: SBO:0000176 + - ec-code: "1.4.1.2" + - bigg.reaction: "GLUDxi" + - kegg.reaction: "R00243" + - metanetx.reaction: "MNXR100085" + - pmid: "14554197" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0471 - - name: glutamate dehydrogenase (NADP) + - id: "r_0471" + - name: "glutamate dehydrogenase (NADP)" - metabolites: !!omap - s_0180: -1 - s_0419: -1 @@ -38099,21 +38131,21 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL062W or YOR375C + - gene_reaction_rule: "YAL062W or YOR375C" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00910 Nitrogen metabolism + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00910 Nitrogen metabolism" - annotation: !!omap - - ec-code: 1.4.1.4 - - bigg.reaction: GLUDy - - kegg.reaction: R00248 - - metanetx.reaction: MNXR100086 - - sbo: SBO:0000176 + - ec-code: "1.4.1.4" + - bigg.reaction: "GLUDy" + - kegg.reaction: "R00248" + - metanetx.reaction: "MNXR100086" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0472 - - name: glutamate synthase (NADH2) + - id: "r_0472" + - name: "glutamate synthase (NADH2)" - metabolites: !!omap - s_0180: -1 - s_0794: -1 @@ -38123,24 +38155,24 @@ - s_1203: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL171C + - gene_reaction_rule: "YDL171C" - subsystem: - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00910 Nitrogen metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00910 Nitrogen metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.4.1.14 - - bigg.reaction: GLUSx - - kegg.reaction: R00093 - - metanetx.reaction: MNXR100289 - - pmid: 9657994 - - sbo: SBO:0000176 + - ec-code: "1.4.1.14" + - bigg.reaction: "GLUSx" + - kegg.reaction: "R00093" + - metanetx.reaction: "MNXR100289" + - pmid: "9657994" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0473 - - name: glutamate-5-semialdehyde dehydrogenase + - id: "r_0473" + - name: "glutamate-5-semialdehyde dehydrogenase" - metabolites: !!omap - s_0794: -1 - s_0986: -1 @@ -38150,23 +38182,23 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR323C + - gene_reaction_rule: "YOR323C" - subsystem: - - sce00330 Arginine and proline metabolism - - sce00332 Carbapenem biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00330 Arginine and proline metabolism" + - "sce00332 Carbapenem biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.2.1.41 - - bigg.reaction: G5SD - - kegg.reaction: R03313 - - metanetx.reaction: MNXR99896 - - sbo: SBO:0000176 + - ec-code: "1.2.1.41" + - bigg.reaction: "G5SD" + - kegg.reaction: "R03313" + - metanetx.reaction: "MNXR99896" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0475 - - name: glutaminase + - id: "r_0475" + - name: "glutaminase" - metabolites: !!omap - s_0419: 1 - s_0803: -1 @@ -38174,17 +38206,17 @@ - s_0999: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFL060C or YNL334C + - gene_reaction_rule: "YFL060C or YNL334C" - annotation: !!omap - - bigg.reaction: GLUN - - kegg.reaction: R00256 - - metanetx.reaction: MNXR100030 - - pmid: 3309138 - - sbo: SBO:0000176 + - bigg.reaction: "GLUN" + - kegg.reaction: "R00256" + - metanetx.reaction: "MNXR100030" + - pmid: "3309138" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0476 - - name: glutamine synthetase + - id: "r_0476" + - name: "glutamine synthetase" - metabolites: !!omap - s_0394: 1 - s_0419: -1 @@ -38195,24 +38227,24 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR035W + - gene_reaction_rule: "YPR035W" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00910 Nitrogen metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00910 Nitrogen metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 6.3.1.2 - - bigg.reaction: GLNS - - kegg.reaction: R00253 - - metanetx.reaction: MNXR100024 - - pmid: 9611819 - - sbo: SBO:0000176 + - ec-code: "6.3.1.2" + - bigg.reaction: "GLNS" + - kegg.reaction: "R00253" + - metanetx.reaction: "MNXR100024" + - pmid: "9611819" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0477 - - name: glutamine-fructose-6-phosphate transaminase + - id: "r_0477" + - name: "glutamine-fructose-6-phosphate transaminase" - metabolites: !!omap - s_0412: 1 - s_0557: -1 @@ -38220,22 +38252,22 @@ - s_0999: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR084W or YKL104C + - gene_reaction_rule: "YMR084W or YKL104C" - subsystem: - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01130 Biosynthesis of antibiotics + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.6.1.16 - - bigg.reaction: GF6PTA - - kegg.reaction: R00768 - - metanetx.reaction: MNXR106675 - - pmid: 2656689 - - sbo: SBO:0000176 + - ec-code: "2.6.1.16" + - bigg.reaction: "GF6PTA" + - kegg.reaction: "R00768" + - metanetx.reaction: "MNXR106675" + - pmid: "2656689" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0478 - - name: glutaminyl-tRNA synthetase + - id: "r_0478" + - name: "glutaminyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -38245,19 +38277,19 @@ - s_1590: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR168W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YOR168W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.18 - - bigg.reaction: GLNTRS - - kegg.reaction: R03652 - - metanetx.reaction: MNXR100257 - - pmid: 2991203 - - sbo: SBO:0000176 + - ec-code: "6.1.1.18" + - bigg.reaction: "GLNTRS" + - kegg.reaction: "R03652" + - metanetx.reaction: "MNXR100257" + - pmid: "2991203" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0479 - - name: glutamyl-tRNA synthetase + - id: "r_0479" + - name: "glutamyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -38267,21 +38299,21 @@ - s_1591: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL245W + - gene_reaction_rule: "YGL245W" - subsystem: - - sce00860 Porphyrin and chlorophyll metabolism - - sce00970 Aminoacyl-tRNA biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce00970 Aminoacyl-tRNA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 6.1.1.17 - - bigg.reaction: GLUTRS - - kegg.reaction: R05578 - - metanetx.reaction: MNXR100295 - - sbo: SBO:0000176 + - ec-code: "6.1.1.17" + - bigg.reaction: "GLUTRS" + - kegg.reaction: "R05578" + - metanetx.reaction: "MNXR100295" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0480 - - name: glutamyl-tRNA synthetase + - id: "r_0480" + - name: "glutamyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0437: -1 @@ -38291,22 +38323,22 @@ - s_1592: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL033W + - gene_reaction_rule: "YOL033W" - subsystem: - - sce00860 Porphyrin and chlorophyll metabolism - - sce00970 Aminoacyl-tRNA biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce00970 Aminoacyl-tRNA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 6.1.1.17 - - bigg.reaction: GLUTRSm - - kegg.reaction: R05578 - - metanetx.reaction: MNXR100295 - - pmid: 7607232 - - sbo: SBO:0000176 + - ec-code: "6.1.1.17" + - bigg.reaction: "GLUTRSm" + - kegg.reaction: "R05578" + - metanetx.reaction: "MNXR100295" + - pmid: "7607232" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0481 - - name: glutathione oxidoreductase + - id: "r_0481" + - name: "glutathione oxidoreductase" - metabolites: !!omap - s_0750: 2 - s_0754: -1 @@ -38315,18 +38347,18 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YCL035C and YPL091W) or (YDR098C and YPL091W) or (YDR513W and YPL091W) or (YER174C and YPL091W) - - subsystem: sce00480 Glutathione metabolism + - gene_reaction_rule: "(YCL035C and YPL091W) or (YDR098C and YPL091W) or (YDR513W and YPL091W) or (YER174C and YPL091W)" + - subsystem: "sce00480 Glutathione metabolism" - annotation: !!omap - - ec-code: 1.8.1.7 - - bigg.reaction: GTHOr - - kegg.reaction: R00115 - - metanetx.reaction: MNXR100098 - - sbo: SBO:0000176 + - ec-code: "1.8.1.7" + - bigg.reaction: "GTHOr" + - kegg.reaction: "R00115" + - metanetx.reaction: "MNXR100098" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0482 - - name: glutathione oxidoreductase + - id: "r_0482" + - name: "glutathione oxidoreductase" - metabolites: !!omap - s_0752: 2 - s_0756: -1 @@ -38335,19 +38367,19 @@ - s_1214: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL059W and YPL091W - - subsystem: sce00480 Glutathione metabolism + - gene_reaction_rule: "YPL059W and YPL091W" + - subsystem: "sce00480 Glutathione metabolism" - annotation: !!omap - - ec-code: 1.8.1.7 - - bigg.reaction: GTHOm - - kegg.reaction: R00115 - - metanetx.reaction: MNXR100098 - - pmid: 14672937 - - sbo: SBO:0000176 + - ec-code: "1.8.1.7" + - bigg.reaction: "GTHOm" + - kegg.reaction: "R00115" + - metanetx.reaction: "MNXR100098" + - pmid: "14672937" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0483 - - name: glutathione peridoxase + - id: "r_0483" + - name: "glutathione peridoxase" - metabolites: !!omap - s_0750: -2 - s_0754: 1 @@ -38355,20 +38387,20 @@ - s_0837: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL229C or YBR244W or YCL035C or YDR513W or YIR037W or YKL026C - - subsystem: sce00480 Glutathione metabolism + - gene_reaction_rule: "YNL229C or YBR244W or YCL035C or YDR513W or YIR037W or YKL026C" + - subsystem: "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: - - 1.11.1.15 - - 1.11.1.9 - - bigg.reaction: GTHPi - - kegg.reaction: R00274 - - metanetx.reaction: MNXR100446 - - sbo: SBO:0000176 + - "1.11.1.15" + - "1.11.1.9" + - bigg.reaction: "GTHPi" + - kegg.reaction: "R00274" + - metanetx.reaction: "MNXR100446" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0484 - - name: glutathione peroxidase, mitochondria + - id: "r_0484" + - name: "glutathione peroxidase, mitochondria" - metabolites: !!omap - s_0752: -2 - s_0756: 1 @@ -38376,17 +38408,17 @@ - s_0838: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL059W + - gene_reaction_rule: "YPL059W" - annotation: !!omap - - bigg.reaction: GTHPm - - kegg.reaction: R00274 - - metanetx.reaction: MNXR100446 - - pmid: 12138088 - - sbo: SBO:0000176 + - bigg.reaction: "GTHPm" + - kegg.reaction: "R00274" + - metanetx.reaction: "MNXR100446" + - pmid: "12138088" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0485 - - name: glutathione synthetase + - id: "r_0485" + - name: "glutathione synthetase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -38397,20 +38429,20 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL049W + - gene_reaction_rule: "YOL049W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00480 Glutathione metabolism + - "sce00270 Cysteine and methionine metabolism" + - "sce00480 Glutathione metabolism" - annotation: !!omap - - ec-code: 6.3.2.3 - - bigg.reaction: GTHS - - kegg.reaction: R00497 - - metanetx.reaction: MNXR100450 - - sbo: SBO:0000176 + - ec-code: "6.3.2.3" + - bigg.reaction: "GTHS" + - kegg.reaction: "R00497" + - metanetx.reaction: "MNXR100450" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0486 - - name: glyceraldehyde-3-phosphate dehydrogenase + - id: "r_0486" + - name: "glyceraldehyde-3-phosphate dehydrogenase" - metabolites: !!omap - s_0075: 1 - s_0764: -1 @@ -38420,24 +38452,24 @@ - s_1322: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR192C or YJL052W or YJR009C + - gene_reaction_rule: "YGR192C or YJL052W or YJR009C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.2.1.12 - - bigg.reaction: GAPD - - kegg.reaction: R01061 - - metanetx.reaction: MNXR100040 - - pmid: 3905788 - - sbo: SBO:0000176 + - ec-code: "1.2.1.12" + - bigg.reaction: "GAPD" + - kegg.reaction: "R01061" + - metanetx.reaction: "MNXR100040" + - pmid: "3905788" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0487 - - name: glycerol dehydrogenase (NADP-dependent) + - id: "r_0487" + - name: "glycerol dehydrogenase (NADP-dependent)" - metabolites: !!omap - s_0765: -1 - s_0771: 1 @@ -38446,19 +38478,19 @@ - s_1212: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR120W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR120W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 1.1.1.156 - - bigg.reaction: GLYCDy - - kegg.reaction: R01039 - - metanetx.reaction: MNXR100327 - - pmid: 11113971 - - sbo: SBO:0000176 + - ec-code: "1.1.1.156" + - bigg.reaction: "GLYCDy" + - kegg.reaction: "R01039" + - metanetx.reaction: "MNXR100327" + - pmid: "11113971" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0488 - - name: glycerol kinase + - id: "r_0488" + - name: "glycerol kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -38467,18 +38499,18 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHL032C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YHL032C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.7.1.30 - - bigg.reaction: GLYK - - kegg.reaction: R00847 - - metanetx.reaction: MNXR100348 - - sbo: SBO:0000176 + - ec-code: "2.7.1.30" + - bigg.reaction: "GLYK" + - kegg.reaction: "R00847" + - metanetx.reaction: "MNXR100348" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0489 - - name: glycerol-3-phosphatase + - id: "r_0489" + - name: "glycerol-3-phosphatase" - metabolites: !!omap - s_0765: 1 - s_0767: -1 @@ -38486,18 +38518,18 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER062C or YIL053W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YER062C or YIL053W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.3.21 - - bigg.reaction: G3PT - - kegg.reaction: R00841 - - metanetx.reaction: MNXR99894 - - sbo: SBO:0000176 + - ec-code: "3.1.3.21" + - bigg.reaction: "G3PT" + - kegg.reaction: "R00841" + - metanetx.reaction: "MNXR99894" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0490 - - name: glycerol-3-phosphate dehydrogenase (fad) + - id: "r_0490" + - name: "glycerol-3-phosphate dehydrogenase (fad)" - metabolites: !!omap - s_0632: 1 - s_0688: -1 @@ -38506,20 +38538,20 @@ - s_0799: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL155C + - gene_reaction_rule: "YIL155C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 1.1.5.3 - - bigg.reaction: G3PDm - - kegg.reaction: R00848 - - metanetx.reaction: MNXR99875 - - sbo: SBO:0000176 + - ec-code: "1.1.5.3" + - bigg.reaction: "G3PDm" + - kegg.reaction: "R00848" + - metanetx.reaction: "MNXR99875" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0491 - - name: glycerol-3-phosphate dehydrogenase (NAD) + - id: "r_0491" + - name: "glycerol-3-phosphate dehydrogenase (NAD)" - metabolites: !!omap - s_0629: -1 - s_0767: 1 @@ -38528,22 +38560,22 @@ - s_1203: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL022W or YOL059W + - gene_reaction_rule: "YDL022W or YOL059W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04011 MAPK signaling pathway - yeast + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04011 MAPK signaling pathway - yeast" - annotation: !!omap - - ec-code: 1.1.1.8 - - bigg.reaction: G3PD1ir - - kegg.reaction: R00842 - - metanetx.reaction: MNXR99876 - - pmid: 8196651 - - sbo: SBO:0000176 + - ec-code: "1.1.1.8" + - bigg.reaction: "G3PD1ir" + - kegg.reaction: "R00842" + - metanetx.reaction: "MNXR99876" + - pmid: "8196651" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0492 - - name: glycerol-3-phosphate dehydrogenase (NAD) + - id: "r_0492" + - name: "glycerol-3-phosphate dehydrogenase (NAD)" - metabolites: !!omap - s_0632: -1 - s_0770: 1 @@ -38552,21 +38584,21 @@ - s_1205: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL059W + - gene_reaction_rule: "YOL059W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04011 MAPK signaling pathway - yeast + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04011 MAPK signaling pathway - yeast" - annotation: !!omap - - ec-code: 1.1.1.8 - - bigg.reaction: G3PD1irm - - kegg.reaction: R00842 - - metanetx.reaction: MNXR99876 - - sbo: SBO:0000176 + - ec-code: "1.1.1.8" + - bigg.reaction: "G3PD1irm" + - kegg.reaction: "R00842" + - metanetx.reaction: "MNXR99876" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0497 - - name: glycerophosphodiester phosphodiesterase (glycerophosphocholine) + - id: "r_0497" + - name: "glycerophosphodiester phosphodiesterase (glycerophosphocholine)" - metabolites: !!omap - s_0512: 1 - s_0767: 1 @@ -38575,19 +38607,19 @@ - s_1433: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL110C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPL110C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.46 - - bigg.reaction: GPDDA1 - - kegg.reaction: R01030 - - metanetx.reaction: MNXR100410 - - pmid: 16141200 - - sbo: SBO:0000176 + - ec-code: "3.1.4.46" + - bigg.reaction: "GPDDA1" + - kegg.reaction: "R01030" + - metanetx.reaction: "MNXR100410" + - pmid: "16141200" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0499 - - name: glycinamide ribotide transformylase + - id: "r_0499" + - name: "glycinamide ribotide transformylase" - metabolites: !!omap - s_0120: -1 - s_0301: 1 @@ -38596,22 +38628,22 @@ - s_1487: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR408C + - gene_reaction_rule: "YDR408C" - subsystem: - - sce00230 Purine metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.1.2.2 - - bigg.reaction: GARFT - - kegg.reaction: R04325 - - metanetx.reaction: MNXR99623 - - sbo: SBO:0000176 + - ec-code: "2.1.2.2" + - bigg.reaction: "GARFT" + - kegg.reaction: "R04325" + - metanetx.reaction: "MNXR99623" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0500 - - name: glycine C-acetyltransferase + - id: "r_0500" + - name: "glycine C-acetyltransferase" - metabolites: !!omap - s_0373: 1 - s_0529: -1 @@ -38619,16 +38651,17 @@ - s_1003: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GLYAT - - kegg.reaction: R00371 - - metanetx.reaction: MNXR100313 - - pmid: 3086094 - - sbo: SBO:0000176 + - bigg.reaction: "GLYAT" + - kegg.reaction: "R00371" + - metanetx.reaction: "MNXR100313" + - pmid: "3086094" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_0501 - - name: glycine cleavage system + - id: "r_0501" + - name: "glycine cleavage system" - metabolites: !!omap - s_0307: 1 - s_0421: 1 @@ -38639,30 +38672,30 @@ - s_1488: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00020 Citrate cycle (TCA cycle) - - sce00260 Glycine, serine and threonine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.4.4.2 - - 1.8.1.4 - - 2.1.2.10 - - bigg.reaction: GLYCLm - - sbo: SBO:0000176 + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" + - bigg.reaction: "GLYCLm" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0502 - - name: glycine hydroxymethyltransferase + - id: "r_0502" + - name: "glycine hydroxymethyltransferase" - metabolites: !!omap - s_0306: 1 - s_0803: 1 @@ -38671,26 +38704,26 @@ - s_1487: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR058C + - gene_reaction_rule: "YLR058C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.1.2.1 - - bigg.reaction: GHMT2r - - kegg.reaction: R00945 - - metanetx.reaction: MNXR100142 - - pmid: 8852837 - - sbo: SBO:0000176 + - ec-code: "2.1.2.1" + - bigg.reaction: "GHMT2r" + - kegg.reaction: "R00945" + - metanetx.reaction: "MNXR100142" + - pmid: "8852837" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0503 - - name: glycine hydroxymethyltransferase + - id: "r_0503" + - name: "glycine hydroxymethyltransferase" - metabolites: !!omap - s_0307: 1 - s_0807: 1 @@ -38699,28 +38732,28 @@ - s_1488: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR263W + - gene_reaction_rule: "YBR263W" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.1.2.1 - - bigg.reaction: GHMT2rm - - kegg.reaction: R00945 - - metanetx.reaction: MNXR100142 + - ec-code: "2.1.2.1" + - bigg.reaction: "GHMT2rm" + - kegg.reaction: "R00945" + - metanetx.reaction: "MNXR100142" - pmid: - - 22672422 - - 8852837 - - sbo: SBO:0000176 + - "22672422" + - "8852837" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0504 - - name: glycine-cleavage complex (lipoamide) + - id: "r_0504" + - name: "glycine-cleavage complex (lipoamide)" - metabolites: !!omap - s_0460: 1 - s_0799: -1 @@ -38729,31 +38762,31 @@ - s_1409: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00020 Citrate cycle (TCA cycle) - - sce00260 Glycine, serine and threonine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.4.4.2 - - 1.8.1.4 - - 2.1.2.10 - - bigg.reaction: GCC2am - - metanetx.reaction: MNXR100065 - - sbo: SBO:0000176 + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" + - bigg.reaction: "GCC2am" + - metanetx.reaction: "MNXR100065" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0505 - - name: glycine-cleavage complex (lipoamide) + - id: "r_0505" + - name: "glycine-cleavage complex (lipoamide)" - metabolites: !!omap - s_0627: -1 - s_0799: 1 @@ -38762,36 +38795,36 @@ - s_1205: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YAL044C and YDR019C and YFL018C and YMR189W) or (YDR148C and YFL018C and YIL125W) + - gene_reaction_rule: "(YAL044C and YDR019C and YFL018C and YMR189W) or (YDR148C and YFL018C and YIL125W)" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00020 Citrate cycle (TCA cycle) - - sce00260 Glycine, serine and threonine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00310 Lysine degradation - - sce00380 Tryptophan metabolism - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00310 Lysine degradation" + - "sce00380 Tryptophan metabolism" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.2.4.2 - - 1.4.4.2 - - 1.8.1.4 - - 2.1.2.10 - - 2.3.1.61 - - bigg.reaction: GCC2cm - - kegg.reaction: R01698 - - metanetx.reaction: MNXR100066 - - sbo: SBO:0000176 + - "1.2.4.2" + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" + - "2.3.1.61" + - bigg.reaction: "GCC2cm" + - kegg.reaction: "R01698" + - metanetx.reaction: "MNXR100066" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0506 - - name: glycine-cleavage complex (lipoylprotein) + - id: "r_0506" + - name: "glycine-cleavage complex (lipoylprotein)" - metabolites: !!omap - s_0460: 1 - s_1005: -1 @@ -38799,32 +38832,32 @@ - s_1410: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00020 Citrate cycle (TCA cycle) - - sce00260 Glycine, serine and threonine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.4.4.2 - - 1.8.1.4 - - 2.1.2.10 - - bigg.reaction: GCCam - - kegg.reaction: R03425 - - metanetx.reaction: MNXR100067 - - sbo: SBO:0000176 + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" + - bigg.reaction: "GCCam" + - kegg.reaction: "R03425" + - metanetx.reaction: "MNXR100067" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0507 - - name: glycine-cleavage complex (lipoylprotein) + - id: "r_0507" + - name: "glycine-cleavage complex (lipoylprotein)" - metabolites: !!omap - s_0307: 1 - s_0421: 1 @@ -38834,32 +38867,32 @@ - s_1488: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00020 Citrate cycle (TCA cycle) - - sce00260 Glycine, serine and threonine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.4.4.2 - - 1.8.1.4 - - 2.1.2.10 - - bigg.reaction: GCCbim - - kegg.reaction: R04125 - - metanetx.reaction: MNXR100068 - - sbo: SBO:0000176 + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" + - bigg.reaction: "GCCbim" + - kegg.reaction: "R04125" + - metanetx.reaction: "MNXR100068" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0508 - - name: glycine-cleavage complex (lipoylprotein) + - id: "r_0508" + - name: "glycine-cleavage complex (lipoylprotein)" - metabolites: !!omap - s_0628: -1 - s_0799: 1 @@ -38868,32 +38901,32 @@ - s_1205: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00020 Citrate cycle (TCA cycle) - - sce00260 Glycine, serine and threonine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.4.4.2 - - 1.8.1.4 - - 2.1.2.10 - - bigg.reaction: GCCcm - - kegg.reaction: R03815 - - metanetx.reaction: MNXR100069 - - sbo: SBO:0000176 + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" + - bigg.reaction: "GCCcm" + - kegg.reaction: "R03815" + - metanetx.reaction: "MNXR100069" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0509 - - name: glycine-cleavage system (lipoamide) + - id: "r_0509" + - name: "glycine-cleavage system (lipoamide)" - metabolites: !!omap - s_0307: 1 - s_0421: 1 @@ -38902,30 +38935,30 @@ - s_1488: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00020 Citrate cycle (TCA cycle) - - sce00260 Glycine, serine and threonine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.4.4.2 - - 1.8.1.4 - - 2.1.2.10 - - bigg.reaction: GCC2bim - - sbo: SBO:0000176 + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" + - bigg.reaction: "GCC2bim" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0510 - - name: glycogen (starch) synthase + - id: "r_0510" + - name: "glycogen (starch) synthase" - metabolites: !!omap - s_0773: 1 - s_0794: 1 @@ -38933,38 +38966,38 @@ - s_1543: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YFR015C and YJL137C) or (YFR015C and YKR058W) or (YJL137C and YLR258W) or (YKR058W and YLR258W) - - subsystem: sce00500 Starch and sucrose metabolism + - gene_reaction_rule: "(YFR015C and YJL137C) or (YFR015C and YKR058W) or (YJL137C and YLR258W) or (YKR058W and YLR258W)" + - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: - - 2.4.1.11 - - 2.4.1.186 - - metanetx.reaction: MNXR143136 - - pmid: 8900126 - - sbo: SBO:0000176 + - "2.4.1.11" + - "2.4.1.186" + - metanetx.reaction: "MNXR143136" + - pmid: "8900126" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0511 - - name: glycogen phosphorylase + - id: "r_0511" + - name: "glycogen phosphorylase" - metabolites: !!omap - s_0567: 1 - s_0773: -1 - s_1322: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR160W + - gene_reaction_rule: "YPR160W" - subsystem: - - sce00500 Starch and sucrose metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00500 Starch and sucrose metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.4.1.1 - - bigg.reaction: GLCP - - metanetx.reaction: MNXR100214 - - sbo: SBO:0000176 + - ec-code: "2.4.1.1" + - bigg.reaction: "GLCP" + - metanetx.reaction: "MNXR100214" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0512 - - name: glycyl-tRNA synthetase + - id: "r_0512" + - name: "glycyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -38974,19 +39007,19 @@ - s_1593: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR121C or YPR081C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YBR121C or YPR081C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.14 - - bigg.reaction: GLYTRS - - kegg.reaction: R03654 - - metanetx.reaction: MNXR100365 - - pmid: 10874035 - - sbo: SBO:0000176 + - ec-code: "6.1.1.14" + - bigg.reaction: "GLYTRS" + - kegg.reaction: "R03654" + - metanetx.reaction: "MNXR100365" + - pmid: "10874035" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0514 - - name: GMP synthase + - id: "r_0514" + - name: "GMP synthase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -38999,18 +39032,18 @@ - s_1565: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR217W - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YMR217W" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 6.3.5.2 - - bigg.reaction: GMPS2 - - kegg.reaction: R01231 - - metanetx.reaction: MNXR100384 - - sbo: SBO:0000176 + - ec-code: "6.3.5.2" + - bigg.reaction: "GMPS2" + - kegg.reaction: "R01231" + - metanetx.reaction: "MNXR100384" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0518 - - name: GPI-anchor assembly, step 2 + - id: "r_0518" + - name: "GPI-anchor assembly, step 2" - metabolites: !!omap - s_0329: 1 - s_0331: -1 @@ -39019,18 +39052,18 @@ - s_0804: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR281W - - subsystem: sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - gene_reaction_rule: "YMR281W" + - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - - ec-code: 3.5.1.89 - - kegg.reaction: R05917 - - metanetx.reaction: MNXR95257 - - pmid: 10085243 - - sbo: SBO:0000176 + - ec-code: "3.5.1.89" + - kegg.reaction: "R05917" + - metanetx.reaction: "MNXR95257" + - pmid: "10085243" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0519 - - name: GPI-anchor assembly, step 5 + - id: "r_0519" + - name: "GPI-anchor assembly, step 5" - metabolites: !!omap - s_0330: -1 - s_0334: 1 @@ -39038,32 +39071,32 @@ - s_0646: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCL052C and YJR013W - - subsystem: sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - gene_reaction_rule: "YCL052C and YJR013W" + - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - - ec-code: 2.4.1.- - - pmid: 11102867 - - sbo: SBO:0000176 + - ec-code: "2.4.1.-" + - pmid: "11102867" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0520 - - name: GPI-anchor assembly, step 6 + - id: "r_0520" + - name: "GPI-anchor assembly, step 6" - metabolites: !!omap - s_0334: -1 - s_0337: 1 - s_1352: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL165C - - subsystem: sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - gene_reaction_rule: "YKL165C" + - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - - ec-code: 2.-.-.- - - pmid: 11102867 - - sbo: SBO:0000176 + - ec-code: "2.-.-.-" + - pmid: "11102867" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0521 - - name: GPI-anchor assembly, step 7 + - id: "r_0521" + - name: "GPI-anchor assembly, step 7" - metabolites: !!omap - s_0337: -1 - s_0339: 1 @@ -39071,32 +39104,32 @@ - s_0646: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR004C - - subsystem: sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - gene_reaction_rule: "YBR004C" + - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - - ec-code: 2.4.1.- - - pmid: 15623507 - - sbo: SBO:0000176 + - ec-code: "2.4.1.-" + - pmid: "15623507" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0522 - - name: GPI-anchor assembly, step 8 + - id: "r_0522" + - name: "GPI-anchor assembly, step 8" - metabolites: !!omap - s_0338: 1 - s_0339: -1 - s_0644: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL142C - - subsystem: sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - gene_reaction_rule: "YGL142C" + - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - - ec-code: 2.4.1.- - - pmid: 11102867 - - sbo: SBO:0000176 + - ec-code: "2.4.1.-" + - pmid: "11102867" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0523 - - name: GPI-anchor assembly, step 9 + - id: "r_0523" + - name: "GPI-anchor assembly, step 9" - metabolites: !!omap - s_0332: 1 - s_0338: -1 @@ -39104,16 +39137,16 @@ - s_1352: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR302W or YLL031C - - subsystem: sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - gene_reaction_rule: "YDR302W or YLL031C" + - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - - ec-code: 2.-.-.- - - pmid: 10793139 - - sbo: SBO:0000176 + - ec-code: "2.-.-.-" + - pmid: "10793139" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0524 - - name: GTP cyclohydrolase I + - id: "r_0524" + - name: "GTP cyclohydrolase I" - metabolites: !!omap - s_0346: 1 - s_0722: 1 @@ -39122,18 +39155,18 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR267C - - subsystem: sce00790 Folate biosynthesis + - gene_reaction_rule: "YGR267C" + - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - - ec-code: 3.5.4.16 - - bigg.reaction: GTPCI - - kegg.reaction: R00424 - - metanetx.reaction: MNXR100453 - - sbo: SBO:0000176 + - ec-code: "3.5.4.16" + - bigg.reaction: "GTPCI" + - kegg.reaction: "R00424" + - metanetx.reaction: "MNXR100453" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0525 - - name: GTP cyclohydrolase II + - id: "r_0525" + - name: "GTP cyclohydrolase II" - metabolites: !!omap - s_0141: 1 - s_0633: 1 @@ -39143,21 +39176,21 @@ - s_0803: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL033C + - gene_reaction_rule: "YBL033C" - subsystem: - - sce00740 Riboflavin metabolism - - sce00790 Folate biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00740 Riboflavin metabolism" + - "sce00790 Folate biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.5.4.25 - - bigg.reaction: GTPCII2 - - kegg.reaction: R00425 - - metanetx.reaction: MNXR100455 - - sbo: SBO:0000176 + - ec-code: "3.5.4.25" + - bigg.reaction: "GTPCII2" + - kegg.reaction: "R00425" + - metanetx.reaction: "MNXR100455" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0526 - - name: guanine deaminase + - id: "r_0526" + - name: "guanine deaminase" - metabolites: !!omap - s_0357: 1 - s_0419: 1 @@ -39166,19 +39199,19 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL238C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YDL238C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 3.5.4.3 - - bigg.reaction: GUAD - - kegg.reaction: R01676 - - metanetx.reaction: MNXR100464 - - pmid: 15565584 - - sbo: SBO:0000176 + - ec-code: "3.5.4.3" + - bigg.reaction: "GUAD" + - kegg.reaction: "R01676" + - metanetx.reaction: "MNXR100464" + - pmid: "15565584" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0527 - - name: guanine phosphoribosyltransferase + - id: "r_0527" + - name: "guanine phosphoribosyltransferase" - metabolites: !!omap - s_0633: 1 - s_0782: 1 @@ -39186,20 +39219,20 @@ - s_1386: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR399W + - gene_reaction_rule: "YDR399W" - subsystem: - - sce00230 Purine metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00230 Purine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.4.2.8 - - bigg.reaction: GUAPRT - - kegg.reaction: R01229 - - metanetx.reaction: MNXR100409 - - sbo: SBO:0000176 + - ec-code: "2.4.2.8" + - bigg.reaction: "GUAPRT" + - kegg.reaction: "R01229" + - metanetx.reaction: "MNXR100409" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0528 - - name: guanylate kinase + - id: "r_0528" + - name: "guanylate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -39207,18 +39240,18 @@ - s_0782: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR454C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YDR454C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 2.7.4.8 - - bigg.reaction: GK1 - - kegg.reaction: R00332 - - metanetx.reaction: MNXR100144 - - sbo: SBO:0000176 + - ec-code: "2.7.4.8" + - bigg.reaction: "GK1" + - kegg.reaction: "R00332" + - metanetx.reaction: "MNXR100144" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0529 - - name: guanylate kinase (GMP:dATP) + - id: "r_0529" + - name: "guanylate kinase (GMP:dATP)" - metabolites: !!omap - s_0582: 1 - s_0586: -1 @@ -39226,17 +39259,17 @@ - s_0782: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR454C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YDR454C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 2.7.4.8 - - bigg.reaction: GK2 - - metanetx.reaction: MNXR100145 - - sbo: SBO:0000176 + - ec-code: "2.7.4.8" + - bigg.reaction: "GK2" + - metanetx.reaction: "MNXR100145" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0530 - - name: heme O monooxygenase + - id: "r_0530" + - name: "heme O monooxygenase" - metabolites: !!omap - s_0807: 1 - s_0811: 1 @@ -39246,17 +39279,17 @@ - s_1278: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER141W or (YDR376W and YPL252C) + - gene_reaction_rule: "YER141W or (YDR376W and YPL252C)" - annotation: !!omap - - ec-code: 1.18.1.6 - - bigg.reaction: HEMEOMOm - - metanetx.reaction: MNXR100595 - - pmid: 11788607 - - sbo: SBO:0000176 + - ec-code: "1.18.1.6" + - bigg.reaction: "HEMEOMOm" + - metanetx.reaction: "MNXR100595" + - pmid: "11788607" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0531 - - name: Heme O synthase + - id: "r_0531" + - name: "Heme O synthase" - metabolites: !!omap - s_0191: -1 - s_0636: 1 @@ -39265,22 +39298,22 @@ - s_0812: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL172C + - gene_reaction_rule: "YPL172C" - subsystem: - - sce00190 Oxidative phosphorylation - - sce00860 Porphyrin and chlorophyll metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00190 Oxidative phosphorylation" + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.- - - bigg.reaction: HEMEOSm - - kegg.reaction: R07411 - - metanetx.reaction: MNXR100596 - - pmid: 11788607 - - sbo: SBO:0000176 + - ec-code: "2.5.1.-" + - bigg.reaction: "HEMEOSm" + - kegg.reaction: "R07411" + - metanetx.reaction: "MNXR100596" + - pmid: "11788607" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0532 - - name: hexaprenyldihydroxybenzoate methyltransferase + - id: "r_0532" + - name: "hexaprenyldihydroxybenzoate methyltransferase" - metabolites: !!omap - s_0154: -1 - s_0799: -1 @@ -39289,22 +39322,22 @@ - s_1535: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C + - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - subsystem: - - sce00130 Ubiquinone and other terpenoid-quinone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 1.14.13.- - - 2.1.1.114 - - 2.1.1.201 - - 2.1.1.64 - - 2.7.-.- - - sbo: SBO:0000176 + - "1.14.13.-" + - "2.1.1.114" + - "2.1.1.201" + - "2.1.1.64" + - "2.7.-.-" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0533 - - name: hexokinase (D-fructose:ATP) + - id: "r_0533" + - name: "hexokinase (D-fructose:ATP)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -39313,26 +39346,26 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR446W or YFR053C or YGL253W + - gene_reaction_rule: "YLR446W or YFR053C or YGL253W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00051 Fructose and mannose metabolism - - sce00052 Galactose metabolism - - sce00500 Starch and sucrose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00051 Fructose and mannose metabolism" + - "sce00052 Galactose metabolism" + - "sce00500 Starch and sucrose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 2.7.1.1 - - bigg.reaction: HEX7 - - kegg.reaction: R00760 - - metanetx.reaction: MNXR106668 - - sbo: SBO:0000176 + - ec-code: "2.7.1.1" + - bigg.reaction: "HEX7" + - kegg.reaction: "R00760" + - metanetx.reaction: "MNXR106668" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0534 - - name: hexokinase (D-glucose:ATP) + - id: "r_0534" + - name: "hexokinase (D-glucose:ATP)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -39341,29 +39374,29 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR446W or YCL040W or YFR053C or YGL253W or YDR516C + - gene_reaction_rule: "YLR446W or YCL040W or YFR053C or YGL253W or YDR516C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00051 Fructose and mannose metabolism - - sce00052 Galactose metabolism - - sce00500 Starch and sucrose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00051 Fructose and mannose metabolism" + - "sce00052 Galactose metabolism" + - "sce00500 Starch and sucrose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 2.7.1.1 - - 2.7.1.2 - - bigg.reaction: HEX1 - - kegg.reaction: R00299 - - metanetx.reaction: MNXR100612 - - pmid: 6394965 - - sbo: SBO:0000176 + - "2.7.1.1" + - "2.7.1.2" + - bigg.reaction: "HEX1" + - kegg.reaction: "R00299" + - metanetx.reaction: "MNXR100612" + - pmid: "6394965" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0535 - - name: hexokinase (D-mannose:ATP) + - id: "r_0535" + - name: "hexokinase (D-mannose:ATP)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -39372,26 +39405,26 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR446W or YFR053C or YGL253W + - gene_reaction_rule: "YLR446W or YFR053C or YGL253W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00051 Fructose and mannose metabolism - - sce00052 Galactose metabolism - - sce00500 Starch and sucrose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00051 Fructose and mannose metabolism" + - "sce00052 Galactose metabolism" + - "sce00500 Starch and sucrose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 2.7.1.1 - - bigg.reaction: HEX4 - - kegg.reaction: R01326 - - metanetx.reaction: MNXR95795 - - sbo: SBO:0000176 + - ec-code: "2.7.1.1" + - bigg.reaction: "HEX4" + - kegg.reaction: "R01326" + - metanetx.reaction: "MNXR95795" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0536 - - name: histidinol dehydrogenase + - id: "r_0536" + - name: "histidinol dehydrogenase" - metabolites: !!omap - s_0794: 3 - s_0803: -1 @@ -39401,24 +39434,24 @@ - s_1203: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL030C + - gene_reaction_rule: "YCL030C" - subsystem: - - sce00340 Histidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00340 Histidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 1.1.1.23 - - 3.5.4.19 - - 3.6.1.31 - - bigg.reaction: HISTD - - kegg.reaction: R01158 - - metanetx.reaction: MNXR100587 - - sbo: SBO:0000176 + - "1.1.1.23" + - "3.5.4.19" + - "3.6.1.31" + - bigg.reaction: "HISTD" + - kegg.reaction: "R01158" + - metanetx.reaction: "MNXR100587" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0537 - - name: histidinol-phosphatase + - id: "r_0537" + - name: "histidinol-phosphatase" - metabolites: !!omap - s_0803: -1 - s_1010: 1 @@ -39426,21 +39459,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR025C + - gene_reaction_rule: "YFR025C" - subsystem: - - sce00340 Histidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00340 Histidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 3.1.3.15 - - bigg.reaction: HISTP - - kegg.reaction: R03013 - - metanetx.reaction: MNXR100642 - - sbo: SBO:0000176 + - ec-code: "3.1.3.15" + - bigg.reaction: "HISTP" + - kegg.reaction: "R03013" + - metanetx.reaction: "MNXR100642" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0538 - - name: histidinol-phosphate transaminase + - id: "r_0538" + - name: "histidinol-phosphate transaminase" - metabolites: !!omap - s_0180: 1 - s_0207: -1 @@ -39448,25 +39481,25 @@ - s_1011: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL116W + - gene_reaction_rule: "YIL116W" - subsystem: - - sce00340 Histidine metabolism - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00340 Histidine metabolism" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.9 - - bigg.reaction: HSTPT - - kegg.reaction: R03243 - - metanetx.reaction: MNXR95852 - - sbo: SBO:0000176 + - ec-code: "2.6.1.9" + - bigg.reaction: "HSTPT" + - kegg.reaction: "R03243" + - metanetx.reaction: "MNXR95852" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0539 - - name: histidyl-tRNA synthetase + - id: "r_0539" + - name: "histidyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -39476,19 +39509,19 @@ - s_1594: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR033C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YPR033C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.21 - - bigg.reaction: HISTRS - - kegg.reaction: R03655 - - metanetx.reaction: MNXR100643 - - pmid: 1459448 - - sbo: SBO:0000176 + - ec-code: "6.1.1.21" + - bigg.reaction: "HISTRS" + - kegg.reaction: "R03655" + - metanetx.reaction: "MNXR100643" + - pmid: "1459448" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0540 - - name: histidyl-tRNA synthetase + - id: "r_0540" + - name: "histidyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0437: -1 @@ -39498,19 +39531,19 @@ - s_1595: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR033C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YPR033C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.21 - - bigg.reaction: HISTRSm - - kegg.reaction: R03655 - - metanetx.reaction: MNXR100643 - - pmid: 1459448 - - sbo: SBO:0000176 + - ec-code: "6.1.1.21" + - bigg.reaction: "HISTRSm" + - kegg.reaction: "R03655" + - metanetx.reaction: "MNXR100643" + - pmid: "1459448" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0541 - - name: hnRNP arginine N-methyltransferase + - id: "r_0541" + - name: "hnRNP arginine N-methyltransferase" - metabolites: !!omap - s_0794: 1 - s_1006: -1 @@ -39519,41 +39552,41 @@ - s_1416: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR034C + - gene_reaction_rule: "YBR034C" - annotation: !!omap - - ec-code: 2.1.1.- - - bigg.reaction: ARMT - - kegg.reaction: R01159 - - metanetx.reaction: MNXR141861 - - pmid: 8647869 - - sbo: SBO:0000176 + - ec-code: "2.1.1.-" + - bigg.reaction: "ARMT" + - kegg.reaction: "R01159" + - metanetx.reaction: "MNXR141861" + - pmid: "8647869" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0542 - - name: homoacontinate hydratase + - id: "r_0542" + - name: "homoacontinate hydratase" - metabolites: !!omap - s_0454: -1 - s_0807: -1 - s_0836: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL200C or YDR234W + - gene_reaction_rule: "YJL200C or YDR234W" - subsystem: - - sce00300 Lysine biosynthesis - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00300 Lysine biosynthesis" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.36 - - bigg.reaction: HACNHm - - kegg.reaction: R04371 - - metanetx.reaction: MNXR100552 - - pmid: 2507177 - - sbo: SBO:0000176 + - ec-code: "4.2.1.36" + - bigg.reaction: "HACNHm" + - kegg.reaction: "R04371" + - metanetx.reaction: "MNXR100552" + - pmid: "2507177" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0543 - - name: homocitrate synthase + - id: "r_0543" + - name: "homocitrate synthase" - metabolites: !!omap - s_0183: -1 - s_0377: -1 @@ -39563,22 +39596,22 @@ - s_0835: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL131W or YDL182W + - gene_reaction_rule: "YDL131W or YDL182W" - subsystem: - - sce00300 Lysine biosynthesis - - sce00620 Pyruvate metabolism - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00300 Lysine biosynthesis" + - "sce00620 Pyruvate metabolism" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.3.3.14 - - kegg.reaction: R00271 - - metanetx.reaction: MNXR141692 - - sbo: SBO:0000176 + - ec-code: "2.3.3.14" + - kegg.reaction: "R00271" + - metanetx.reaction: "MNXR141692" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0544 - - name: homocysteine S-methyltransferase + - id: "r_0544" + - name: "homocysteine S-methyltransferase" - metabolites: !!omap - s_0794: 1 - s_1012: -1 @@ -39587,21 +39620,21 @@ - s_1416: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL062C or YPL273W + - gene_reaction_rule: "YLL062C or YPL273W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00270 Cysteine and methionine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.1.1.10 - - bigg.reaction: HCYSMT - - kegg.reaction: R00650 - - metanetx.reaction: MNXR100577 - - pmid: 11013242 - - sbo: SBO:0000176 + - ec-code: "2.1.1.10" + - bigg.reaction: "HCYSMT" + - kegg.reaction: "R00650" + - metanetx.reaction: "MNXR100577" + - pmid: "11013242" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0545 - - name: homoisocitrate dehydrogenase + - id: "r_0545" + - name: "homoisocitrate dehydrogenase" - metabolites: !!omap - s_0177: 1 - s_0460: 1 @@ -39610,22 +39643,22 @@ - s_1205: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL094C + - gene_reaction_rule: "YIL094C" - subsystem: - - sce00300 Lysine biosynthesis - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00300 Lysine biosynthesis" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.1.1.87 - - kegg.reaction: R01934 - - metanetx.reaction: MNXR107239 - - pmid: 10714900 - - sbo: SBO:0000176 + - ec-code: "1.1.1.87" + - kegg.reaction: "R01934" + - metanetx.reaction: "MNXR107239" + - pmid: "10714900" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0546 - - name: homoserine dehydrogenase (NADH) + - id: "r_0546" + - name: "homoserine dehydrogenase (NADH)" - metabolites: !!omap - s_0794: -1 - s_0978: -1 @@ -39634,27 +39667,27 @@ - s_1203: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR139C + - gene_reaction_rule: "YJR139C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00270 Cysteine and methionine metabolism - - sce00300 Lysine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00300 Lysine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.1.1.3 - - bigg.reaction: HSDxi - - kegg.reaction: R01775 - - metanetx.reaction: MNXR100734 + - ec-code: "1.1.1.3" + - bigg.reaction: "HSDxi" + - kegg.reaction: "R01775" + - metanetx.reaction: "MNXR100734" - pmid: - - 8500624 - - 11341914 - - sbo: SBO:0000176 + - "8500624" + - "11341914" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0547 - - name: homoserine dehydrogenase (NADP) + - id: "r_0547" + - name: "homoserine dehydrogenase (NADP)" - metabolites: !!omap - s_0794: -1 - s_0978: -1 @@ -39663,25 +39696,25 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR139C + - gene_reaction_rule: "YJR139C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00270 Cysteine and methionine metabolism - - sce00300 Lysine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00300 Lysine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.1.1.3 - - bigg.reaction: HSDy - - kegg.reaction: R01775 - - metanetx.reaction: MNXR100734 - - pmid: 8500624 - - sbo: SBO:0000176 + - ec-code: "1.1.1.3" + - bigg.reaction: "HSDy" + - kegg.reaction: "R01775" + - metanetx.reaction: "MNXR100734" + - pmid: "8500624" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0548 - - name: homoserine kinase + - id: "r_0548" + - name: "homoserine kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -39690,22 +39723,22 @@ - s_1238: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR025W + - gene_reaction_rule: "YHR025W" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.7.1.39 - - bigg.reaction: HSK - - kegg.reaction: R01771 - - metanetx.reaction: MNXR100737 - - pmid: 8973190 - - sbo: SBO:0000176 + - ec-code: "2.7.1.39" + - bigg.reaction: "HSK" + - kegg.reaction: "R01771" + - metanetx.reaction: "MNXR100737" + - pmid: "8973190" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0549 - - name: homoserine O-trans-acetylase + - id: "r_0549" + - name: "homoserine O-trans-acetylase" - metabolites: !!omap - s_0373: -1 - s_0529: 1 @@ -39713,21 +39746,21 @@ - s_1233: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL277W + - gene_reaction_rule: "YNL277W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce01130 Biosynthesis of antibiotics + - "sce00270 Cysteine and methionine metabolism" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.3.1.31 - - bigg.reaction: HSERTA - - kegg.reaction: R01776 - - metanetx.reaction: MNXR100736 - - pmid: 16232856 - - sbo: SBO:0000176 + - ec-code: "2.3.1.31" + - bigg.reaction: "HSERTA" + - kegg.reaction: "R01776" + - metanetx.reaction: "MNXR100736" + - pmid: "16232856" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0550 - - name: hydrogen peroxide reductase (thioredoxin) + - id: "r_0550" + - name: "hydrogen peroxide reductase (thioredoxin)" - metabolites: !!omap - s_0794: -1 - s_0803: 2 @@ -39736,17 +39769,17 @@ - s_1620: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YDR453C and YGR209C) or (YDR453C and YLR043C) + - gene_reaction_rule: "(YDR453C and YGR209C) or (YDR453C and YLR043C)" - annotation: !!omap - - ec-code: 1.11.1.15 - - bigg.reaction: THIORDXi - - metanetx.reaction: MNXR104815 - - pmid: 15210711 - - sbo: SBO:0000176 + - ec-code: "1.11.1.15" + - bigg.reaction: "THIORDXi" + - metanetx.reaction: "MNXR104815" + - pmid: "15210711" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0551 - - name: hydrogen peroxide reductase (thioredoxin) + - id: "r_0551" + - name: "hydrogen peroxide reductase (thioredoxin)" - metabolites: !!omap - s_0799: -1 - s_0807: 2 @@ -39755,17 +39788,17 @@ - s_1621: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL064C and YCR083W + - gene_reaction_rule: "YBL064C and YCR083W" - annotation: !!omap - - ec-code: 1.11.1.15 - - bigg.reaction: THIORDXm - - metanetx.reaction: MNXR104815 - - pmid: 10821871 - - sbo: SBO:0000176 + - ec-code: "1.11.1.15" + - bigg.reaction: "THIORDXm" + - metanetx.reaction: "MNXR104815" + - pmid: "10821871" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0552 - - name: hydrogen peroxide reductase (thioredoxin) + - id: "r_0552" + - name: "hydrogen peroxide reductase (thioredoxin)" - metabolites: !!omap - s_0801: -1 - s_0809: 2 @@ -39774,18 +39807,18 @@ - s_1623: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YGR209C and YLR109W) or (YLR043C and YLR109W) - - subsystem: sce04122 Sulfur relay system + - gene_reaction_rule: "(YGR209C and YLR109W) or (YLR043C and YLR109W)" + - subsystem: "sce04122 Sulfur relay system" - annotation: !!omap - - ec-code: 1.11.1.15 - - bigg.reaction: THIORDXp - - metanetx.reaction: MNXR104815 - - pmid: 14640681 - - sbo: SBO:0000176 + - ec-code: "1.11.1.15" + - bigg.reaction: "THIORDXp" + - metanetx.reaction: "MNXR104815" + - pmid: "14640681" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0553 - - name: hydroxyacylglutathione hydrolase + - id: "r_0553" + - name: "hydroxyacylglutathione hydrolase" - metabolites: !!omap - s_0025: 1 - s_0033: -1 @@ -39794,18 +39827,18 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR272W - - subsystem: sce00620 Pyruvate metabolism + - gene_reaction_rule: "YDR272W" + - subsystem: "sce00620 Pyruvate metabolism" - annotation: !!omap - - ec-code: 3.1.2.6 - - bigg.reaction: GLYOX - - kegg.reaction: R01736 - - metanetx.reaction: MNXR100353 - - sbo: SBO:0000176 + - ec-code: "3.1.2.6" + - bigg.reaction: "GLYOX" + - kegg.reaction: "R01736" + - metanetx.reaction: "MNXR100353" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0554 - - name: hydroxyacylglutathione hydrolase + - id: "r_0554" + - name: "hydroxyacylglutathione hydrolase" - metabolites: !!omap - s_0027: 1 - s_0034: -1 @@ -39814,18 +39847,18 @@ - s_0807: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR040W - - subsystem: sce00620 Pyruvate metabolism + - gene_reaction_rule: "YOR040W" + - subsystem: "sce00620 Pyruvate metabolism" - annotation: !!omap - - ec-code: 3.1.2.6 - - bigg.reaction: GLYOXm - - kegg.reaction: R01736 - - metanetx.reaction: MNXR100353 - - sbo: SBO:0000176 + - ec-code: "3.1.2.6" + - bigg.reaction: "GLYOXm" + - kegg.reaction: "R01736" + - metanetx.reaction: "MNXR100353" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0555 - - name: hydroxybenzoate octaprenyltransferase + - id: "r_0555" + - name: "hydroxybenzoate octaprenyltransferase" - metabolites: !!omap - s_0216: 1 - s_0287: -1 @@ -39833,20 +39866,20 @@ - s_0831: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNR041C + - gene_reaction_rule: "YNR041C" - subsystem: - - sce00130 Ubiquinone and other terpenoid-quinone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.39 - - bigg.reaction: HBZOPT6m - - kegg.reaction: R05616 - - metanetx.reaction: MNXR100569 - - sbo: SBO:0000176 + - ec-code: "2.5.1.39" + - bigg.reaction: "HBZOPT6m" + - kegg.reaction: "R05616" + - metanetx.reaction: "MNXR100569" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0556 - - name: hydroxyethylthiazole kinase + - id: "r_0556" + - name: "hydroxyethylthiazole kinase" - metabolites: !!omap - s_0293: 1 - s_0310: -1 @@ -39855,20 +39888,20 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL214C - - subsystem: sce00730 Thiamine metabolism + - gene_reaction_rule: "YPL214C" + - subsystem: "sce00730 Thiamine metabolism" - annotation: !!omap - ec-code: - - 2.5.1.3 - - 2.7.1.50 - - bigg.reaction: HETZK - - kegg.reaction: R04448 - - metanetx.reaction: MNXR100611 - - sbo: SBO:0000176 + - "2.5.1.3" + - "2.7.1.50" + - bigg.reaction: "HETZK" + - kegg.reaction: "R04448" + - metanetx.reaction: "MNXR100611" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0557 - - name: hydroxymethylbilane synthase + - id: "r_0557" + - name: "hydroxymethylbilane synthase" - metabolites: !!omap - s_0419: 4 - s_0803: -1 @@ -39876,20 +39909,20 @@ - s_1378: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL205C + - gene_reaction_rule: "YDL205C" - subsystem: - - sce00860 Porphyrin and chlorophyll metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.61 - - bigg.reaction: HMBS - - kegg.reaction: R00084 - - metanetx.reaction: MNXR100658 - - sbo: SBO:0000176 + - ec-code: "2.5.1.61" + - bigg.reaction: "HMBS" + - kegg.reaction: "R00084" + - metanetx.reaction: "MNXR100658" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0558 - - name: hydroxymethylglutaryl CoA reductase + - id: "r_0558" + - name: "hydroxymethylglutaryl CoA reductase" - metabolites: !!omap - s_0028: 1 - s_0218: -1 @@ -39899,21 +39932,21 @@ - s_1212: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR450W or YML075C + - gene_reaction_rule: "YLR450W or YML075C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.34 - - bigg.reaction: HMGCOAR - - kegg.reaction: R02082 - - metanetx.reaction: MNXR107304 - - sbo: SBO:0000176 + - ec-code: "1.1.1.34" + - bigg.reaction: "HMGCOAR" + - kegg.reaction: "R02082" + - metanetx.reaction: "MNXR107304" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0559 - - name: hydroxymethylglutaryl CoA synthase + - id: "r_0559" + - name: "hydroxymethylglutaryl CoA synthase" - metabolites: !!omap - s_0218: 1 - s_0367: -1 @@ -39923,24 +39956,24 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML126C + - gene_reaction_rule: "YML126C" - subsystem: - - sce00072 Synthesis and degradation of ketone bodies - - sce00280 Valine, leucine and isoleucine degradation - - sce00650 Butanoate metabolism - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00072 Synthesis and degradation of ketone bodies" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00650 Butanoate metabolism" + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.3.3.10 - - bigg.reaction: HMGCOAS - - kegg.reaction: R01978 - - metanetx.reaction: MNXR107257 - - sbo: SBO:0000176 + - ec-code: "2.3.3.10" + - bigg.reaction: "HMGCOAS" + - kegg.reaction: "R01978" + - metanetx.reaction: "MNXR107257" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0560 - - name: hydroxymethylglutaryl CoA synthase + - id: "r_0560" + - name: "hydroxymethylglutaryl CoA synthase" - metabolites: !!omap - s_0221: 1 - s_0370: -1 @@ -39950,24 +39983,24 @@ - s_0807: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML126C + - gene_reaction_rule: "YML126C" - subsystem: - - sce00072 Synthesis and degradation of ketone bodies - - sce00280 Valine, leucine and isoleucine degradation - - sce00650 Butanoate metabolism - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00072 Synthesis and degradation of ketone bodies" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00650 Butanoate metabolism" + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.3.3.10 - - bigg.reaction: HMGCOASm - - kegg.reaction: R01978 - - metanetx.reaction: MNXR107257 - - sbo: SBO:0000176 + - ec-code: "2.3.3.10" + - bigg.reaction: "HMGCOASm" + - kegg.reaction: "R01978" + - metanetx.reaction: "MNXR107257" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0561 - - name: hydroxymethylpyrimidine kinase (ATP) + - id: "r_0561" + - name: "hydroxymethylpyrimidine kinase (ATP)" - metabolites: !!omap - s_0268: 1 - s_0270: -1 @@ -39976,20 +40009,20 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL055C or YPL258C or YPR121W - - subsystem: sce00730 Thiamine metabolism + - gene_reaction_rule: "YOL055C or YPL258C or YPR121W" + - subsystem: "sce00730 Thiamine metabolism" - annotation: !!omap - ec-code: - - 2.7.1.49 - - 2.7.4.7 - - bigg.reaction: HMPK1 - - kegg.reaction: R03471 - - metanetx.reaction: MNXR100664 - - sbo: SBO:0000176 + - "2.7.1.49" + - "2.7.4.7" + - bigg.reaction: "HMPK1" + - kegg.reaction: "R03471" + - metanetx.reaction: "MNXR100664" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0562 - - name: hypoxanthine phosphoribosyltransferase (Hypoxanthine) + - id: "r_0562" + - name: "hypoxanthine phosphoribosyltransferase (Hypoxanthine)" - metabolites: !!omap - s_0633: 1 - s_0843: -1 @@ -39997,20 +40030,20 @@ - s_1386: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR399W + - gene_reaction_rule: "YDR399W" - subsystem: - - sce00230 Purine metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00230 Purine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.4.2.8 - - bigg.reaction: HXPRT - - kegg.reaction: R01132 - - metanetx.reaction: MNXR100752 - - sbo: SBO:0000176 + - ec-code: "2.4.2.8" + - bigg.reaction: "HXPRT" + - kegg.reaction: "R01132" + - metanetx.reaction: "MNXR100752" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0563 - - name: Imidazole-glycerol-3-phosphate synthase + - id: "r_0563" + - name: "Imidazole-glycerol-3-phosphate synthase" - metabolites: !!omap - s_0312: -1 - s_0403: 1 @@ -40020,44 +40053,44 @@ - s_0999: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR248C + - gene_reaction_rule: "YBR248C" - subsystem: - - sce00340 Histidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00340 Histidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 2.4.2.- - - 4.1.3.- - - bigg.reaction: IG3PS - - kegg.reaction: R04558 - - metanetx.reaction: MNXR100811 - - sbo: SBO:0000176 + - "2.4.2.-" + - "4.1.3.-" + - bigg.reaction: "IG3PS" + - kegg.reaction: "R04558" + - metanetx.reaction: "MNXR100811" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0564 - - name: imidazoleglycerol-phosphate dehydratase + - id: "r_0564" + - name: "imidazoleglycerol-phosphate dehydratase" - metabolites: !!omap - s_0207: 1 - s_0550: -1 - s_0803: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR202W + - gene_reaction_rule: "YOR202W" - subsystem: - - sce00340 Histidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00340 Histidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.19 - - bigg.reaction: IGPDH - - kegg.reaction: R03457 - - metanetx.reaction: MNXR100813 - - sbo: SBO:0000176 + - ec-code: "4.2.1.19" + - bigg.reaction: "IGPDH" + - kegg.reaction: "R03457" + - metanetx.reaction: "MNXR100813" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0565 - - name: IMP dehydrogenase + - id: "r_0565" + - name: "IMP dehydrogenase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -40067,21 +40100,21 @@ - s_1565: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR216W or YLR432W or YML056C + - gene_reaction_rule: "YHR216W or YLR432W or YML056C" - subsystem: - - sce00230 Purine metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00230 Purine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 1.1.1.205 - - bigg.reaction: IMPD - - kegg.reaction: R01130 - - metanetx.reaction: MNXR100830 - - pmid: 11003640 - - sbo: SBO:0000176 + - ec-code: "1.1.1.205" + - bigg.reaction: "IMPD" + - kegg.reaction: "R01130" + - metanetx.reaction: "MNXR100830" + - pmid: "11003640" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0566 - - name: indole-3-glycerol-phosphate synthase + - id: "r_0566" + - name: "indole-3-glycerol-phosphate synthase" - metabolites: !!omap - s_0076: -1 - s_0086: 1 @@ -40090,25 +40123,25 @@ - s_0803: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL211C + - gene_reaction_rule: "YKL211C" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 4.1.1.48 - - 4.1.3.27 - - bigg.reaction: IGPS - - kegg.reaction: R03508 - - metanetx.reaction: MNXR100814 - - pmid: 6323449 - - sbo: SBO:0000176 + - "4.1.1.48" + - "4.1.3.27" + - bigg.reaction: "IGPS" + - kegg.reaction: "R03508" + - metanetx.reaction: "MNXR100814" + - pmid: "6323449" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0567 - - name: indole-3-pyruvate decarboxylase + - id: "r_0567" + - name: "indole-3-pyruvate decarboxylase" - metabolites: !!omap - s_0456: 1 - s_0794: -1 @@ -40116,26 +40149,26 @@ - s_0855: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR087C or YLR044C or YLR134W + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 4.1.1.- - - 4.1.1.1 - - 4.1.1.43 - - 4.1.1.74 - - bigg.reaction: INDPYRD - - kegg.reaction: R01974 - - metanetx.reaction: MNXR100837 - - pmid: 12902239 - - sbo: SBO:0000176 + - "4.1.1.-" + - "4.1.1.1" + - "4.1.1.43" + - "4.1.1.74" + - bigg.reaction: "INDPYRD" + - kegg.reaction: "R01974" + - metanetx.reaction: "MNXR100837" + - pmid: "12902239" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0568 - - name: inorganic diphosphatase + - id: "r_0568" + - name: "inorganic diphosphatase" - metabolites: !!omap - s_0633: -1 - s_0794: 1 @@ -40143,19 +40176,19 @@ - s_1322: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR011C - - subsystem: sce00190 Oxidative phosphorylation + - gene_reaction_rule: "YBR011C" + - subsystem: "sce00190 Oxidative phosphorylation" - annotation: !!omap - - ec-code: 3.6.1.1 - - bigg.reaction: PPA - - kegg.reaction: R00004 - - metanetx.reaction: MNXR100808 - - pmid: 8224193 - - sbo: SBO:0000176 + - ec-code: "3.6.1.1" + - bigg.reaction: "PPA" + - kegg.reaction: "R00004" + - metanetx.reaction: "MNXR100808" + - pmid: "8224193" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0569 - - name: inorganic diphosphatase + - id: "r_0569" + - name: "inorganic diphosphatase" - metabolites: !!omap - s_0636: -1 - s_0799: 1 @@ -40163,43 +40196,43 @@ - s_1326: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR267W - - subsystem: sce00190 Oxidative phosphorylation + - gene_reaction_rule: "YMR267W" + - subsystem: "sce00190 Oxidative phosphorylation" - annotation: !!omap - - ec-code: 3.6.1.1 - - bigg.reaction: PPAm - - kegg.reaction: R00004 - - metanetx.reaction: MNXR100808 - - pmid: 1648084 - - sbo: SBO:0000176 + - ec-code: "3.6.1.1" + - bigg.reaction: "PPAm" + - kegg.reaction: "R00004" + - metanetx.reaction: "MNXR100808" + - pmid: "1648084" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0570 - - name: inosine monophosphate cyclohydrolase + - id: "r_0570" + - name: "inosine monophosphate cyclohydrolase" - metabolites: !!omap - s_0803: 1 - s_0849: 1 - s_1365: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR028C or YMR120C + - gene_reaction_rule: "YLR028C or YMR120C" - subsystem: - - sce00230 Purine metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 2.1.2.3 - - 3.5.4.10 - - bigg.reaction: IMPC - - kegg.reaction: R01127 - - metanetx.reaction: MNXR100783 - - sbo: SBO:0000176 + - "2.1.2.3" + - "3.5.4.10" + - bigg.reaction: "IMPC" + - kegg.reaction: "R01127" + - metanetx.reaction: "MNXR100783" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0571 - - name: inositol-1,3,4,5,6-pentakisphosphate 2-kinase + - id: "r_0571" + - name: "inositol-1,3,4,5,6-pentakisphosphate 2-kinase" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -40208,20 +40241,20 @@ - s_1159: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR315C + - gene_reaction_rule: "YDR315C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.158 - - kegg.reaction: R05202 - - metanetx.reaction: MNXR109392 - - pmid: 10960485 - - sbo: SBO:0000176 + - ec-code: "2.7.1.158" + - kegg.reaction: "R05202" + - metanetx.reaction: "MNXR109392" + - pmid: "10960485" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0572 - - name: inositol-1,3,4,5-triphosphate 6-kinase, nucleus + - id: "r_0572" + - name: "inositol-1,3,4,5-triphosphate 6-kinase, nucleus" - metabolites: !!omap - s_0123: -1 - s_0398: 1 @@ -40230,21 +40263,21 @@ - s_1157: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR173C + - gene_reaction_rule: "YDR173C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - - ec-code: 2.7.1.151 - - kegg.reaction: R10953 - - metanetx.reaction: MNXR114260 - - pmid: 11956213 - - sbo: SBO:0000176 + - ec-code: "2.7.1.151" + - kegg.reaction: "R10953" + - metanetx.reaction: "MNXR114260" + - pmid: "11956213" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0573 - - name: inositol-1,4,5,6- tetrakisphosphate 3-kinase, nucleus + - id: "r_0573" + - name: "inositol-1,4,5,6- tetrakisphosphate 3-kinase, nucleus" - metabolites: !!omap - s_0124: -1 - s_0398: 1 @@ -40253,21 +40286,21 @@ - s_1157: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR173C + - gene_reaction_rule: "YDR173C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - - ec-code: 2.7.1.151 - - kegg.reaction: R05801 - - metanetx.reaction: MNXR109848 - - pmid: 11956213 - - sbo: SBO:0000176 + - ec-code: "2.7.1.151" + - kegg.reaction: "R05801" + - metanetx.reaction: "MNXR109848" + - pmid: "11956213" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0574 - - name: inositol-1,4,5-triphosphate 6-kinase, nucleus + - id: "r_0574" + - name: "inositol-1,4,5-triphosphate 6-kinase, nucleus" - metabolites: !!omap - s_0124: 1 - s_0125: -1 @@ -40276,21 +40309,21 @@ - s_0800: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR173C + - gene_reaction_rule: "YDR173C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - - ec-code: 2.7.1.151 - - kegg.reaction: R05800 - - metanetx.reaction: MNXR109847 - - pmid: 11956213 - - sbo: SBO:0000176 + - ec-code: "2.7.1.151" + - kegg.reaction: "R05800" + - metanetx.reaction: "MNXR109847" + - pmid: "11956213" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0575 - - name: inositol-1,4,5-trisphosphate 3-kinase, nucleus + - id: "r_0575" + - name: "inositol-1,4,5-trisphosphate 3-kinase, nucleus" - metabolites: !!omap - s_0123: 1 - s_0125: -1 @@ -40299,21 +40332,21 @@ - s_0800: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR173C + - gene_reaction_rule: "YDR173C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - - ec-code: 2.7.1.151 - - kegg.reaction: R03433 - - metanetx.reaction: MNXR108166 - - pmid: 11956213 - - sbo: SBO:0000176 + - ec-code: "2.7.1.151" + - kegg.reaction: "R03433" + - metanetx.reaction: "MNXR108166" + - pmid: "11956213" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0596 - - name: IPS phospholipase C + - id: "r_0596" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0475: 1 - s_0804: -1 @@ -40321,18 +40354,18 @@ - s_1116: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0597 - - name: IPS phospholipase C + - id: "r_0597" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0478: 1 - s_0804: -1 @@ -40340,18 +40373,18 @@ - s_1119: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0598 - - name: IPS phospholipase C + - id: "r_0598" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0487: 1 - s_0804: -1 @@ -40359,18 +40392,18 @@ - s_1128: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0599 - - name: IPS phospholipase C + - id: "r_0599" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0490: 1 - s_0804: -1 @@ -40378,18 +40411,18 @@ - s_1131: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0600 - - name: IPS phospholipase C + - id: "r_0600" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0481: 1 - s_0804: -1 @@ -40397,18 +40430,18 @@ - s_1122: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0601 - - name: IPS phospholipase C + - id: "r_0601" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0484: 1 - s_0804: -1 @@ -40416,18 +40449,18 @@ - s_1125: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0602 - - name: IPS phospholipase C + - id: "r_0602" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0493: 1 - s_0804: -1 @@ -40435,18 +40468,18 @@ - s_1134: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0603 - - name: IPS phospholipase C + - id: "r_0603" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0496: 1 - s_0804: -1 @@ -40454,18 +40487,18 @@ - s_1137: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0604 - - name: IPS phospholipase C + - id: "r_0604" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0499: 1 - s_0804: -1 @@ -40473,18 +40506,18 @@ - s_1140: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0605 - - name: IPS phospholipase C + - id: "r_0605" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0502: 1 - s_0804: -1 @@ -40492,18 +40525,18 @@ - s_1143: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0606 - - name: IPS phospholipase C + - id: "r_0606" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0475: 1 - s_0804: -1 @@ -40511,18 +40544,18 @@ - s_1109: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0607 - - name: IPS phospholipase C + - id: "r_0607" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0478: 1 - s_0804: -1 @@ -40530,18 +40563,18 @@ - s_1109: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0608 - - name: IPS phospholipase C + - id: "r_0608" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0487: 1 - s_0804: -1 @@ -40549,18 +40582,18 @@ - s_1109: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0609 - - name: IPS phospholipase C + - id: "r_0609" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0490: 1 - s_0804: -1 @@ -40568,18 +40601,18 @@ - s_1109: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0610 - - name: IPS phospholipase C + - id: "r_0610" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0481: 1 - s_0804: -1 @@ -40587,18 +40620,18 @@ - s_1109: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0611 - - name: IPS phospholipase C + - id: "r_0611" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0484: 1 - s_0804: -1 @@ -40606,18 +40639,18 @@ - s_1109: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0612 - - name: IPS phospholipase C + - id: "r_0612" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0493: 1 - s_0804: -1 @@ -40625,18 +40658,18 @@ - s_1109: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0613 - - name: IPS phospholipase C + - id: "r_0613" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0496: 1 - s_0804: -1 @@ -40644,18 +40677,18 @@ - s_1109: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0614 - - name: IPS phospholipase C + - id: "r_0614" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0499: 1 - s_0804: -1 @@ -40663,18 +40696,18 @@ - s_1109: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0615 - - name: IPS phospholipase C + - id: "r_0615" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0502: 1 - s_0804: -1 @@ -40682,18 +40715,18 @@ - s_1109: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0616 - - name: IPS phospholipase C + - id: "r_0616" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0129: 1 - s_0477: 1 @@ -40702,18 +40735,18 @@ - s_0896: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0617 - - name: IPS phospholipase C + - id: "r_0617" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0129: 1 - s_0480: 1 @@ -40722,18 +40755,18 @@ - s_0899: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0618 - - name: IPS phospholipase C + - id: "r_0618" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0129: 1 - s_0489: 1 @@ -40742,18 +40775,18 @@ - s_0908: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0619 - - name: IPS phospholipase C + - id: "r_0619" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0129: 1 - s_0492: 1 @@ -40762,18 +40795,18 @@ - s_0911: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0620 - - name: IPS phospholipase C + - id: "r_0620" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0129: 1 - s_0483: 1 @@ -40782,18 +40815,18 @@ - s_0902: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0621 - - name: IPS phospholipase C + - id: "r_0621" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0129: 1 - s_0486: 1 @@ -40802,18 +40835,18 @@ - s_0905: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0622 - - name: IPS phospholipase C + - id: "r_0622" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0129: 1 - s_0495: 1 @@ -40822,18 +40855,18 @@ - s_0914: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0623 - - name: IPS phospholipase C + - id: "r_0623" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0129: 1 - s_0498: 1 @@ -40842,18 +40875,18 @@ - s_0917: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0624 - - name: IPS phospholipase C + - id: "r_0624" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0129: 1 - s_0501: 1 @@ -40862,18 +40895,18 @@ - s_0920: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0625 - - name: IPS phospholipase C + - id: "r_0625" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0129: 1 - s_0504: 1 @@ -40882,18 +40915,18 @@ - s_0923: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0626 - - name: IPS phospholipase C + - id: "r_0626" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0477: 1 - s_0807: -1 @@ -40901,18 +40934,18 @@ - s_1118: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0627 - - name: IPS phospholipase C + - id: "r_0627" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0480: 1 - s_0807: -1 @@ -40920,18 +40953,18 @@ - s_1121: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0628 - - name: IPS phospholipase C + - id: "r_0628" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0489: 1 - s_0807: -1 @@ -40939,18 +40972,18 @@ - s_1130: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0629 - - name: IPS phospholipase C + - id: "r_0629" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0492: 1 - s_0807: -1 @@ -40958,18 +40991,18 @@ - s_1133: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0630 - - name: IPS phospholipase C + - id: "r_0630" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0483: 1 - s_0807: -1 @@ -40977,18 +41010,18 @@ - s_1124: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0631 - - name: IPS phospholipase C + - id: "r_0631" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0486: 1 - s_0807: -1 @@ -40996,18 +41029,18 @@ - s_1127: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0632 - - name: IPS phospholipase C + - id: "r_0632" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0495: 1 - s_0807: -1 @@ -41015,18 +41048,18 @@ - s_1136: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0633 - - name: IPS phospholipase C + - id: "r_0633" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0498: 1 - s_0807: -1 @@ -41034,18 +41067,18 @@ - s_1139: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0634 - - name: IPS phospholipase C + - id: "r_0634" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0501: 1 - s_0807: -1 @@ -41053,18 +41086,18 @@ - s_1142: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0635 - - name: IPS phospholipase C + - id: "r_0635" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0504: 1 - s_0807: -1 @@ -41072,18 +41105,18 @@ - s_1145: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0636 - - name: IPS phospholipase C + - id: "r_0636" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0477: 1 - s_0807: -1 @@ -41091,18 +41124,18 @@ - s_1110: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0637 - - name: IPS phospholipase C + - id: "r_0637" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0480: 1 - s_0807: -1 @@ -41110,18 +41143,18 @@ - s_1110: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0638 - - name: IPS phospholipase C + - id: "r_0638" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0489: 1 - s_0807: -1 @@ -41129,18 +41162,18 @@ - s_1110: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0639 - - name: IPS phospholipase C + - id: "r_0639" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0492: 1 - s_0807: -1 @@ -41148,18 +41181,18 @@ - s_1110: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0640 - - name: IPS phospholipase C + - id: "r_0640" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0483: 1 - s_0807: -1 @@ -41167,18 +41200,18 @@ - s_1110: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0641 - - name: IPS phospholipase C + - id: "r_0641" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0486: 1 - s_0807: -1 @@ -41186,18 +41219,18 @@ - s_1110: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0642 - - name: IPS phospholipase C + - id: "r_0642" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0495: 1 - s_0807: -1 @@ -41205,18 +41238,18 @@ - s_1110: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0643 - - name: IPS phospholipase C + - id: "r_0643" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0498: 1 - s_0807: -1 @@ -41224,18 +41257,18 @@ - s_1110: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0644 - - name: IPS phospholipase C + - id: "r_0644" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0501: 1 - s_0807: -1 @@ -41243,18 +41276,18 @@ - s_1110: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0645 - - name: IPS phospholipase C + - id: "r_0645" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0504: 1 - s_0807: -1 @@ -41262,18 +41295,18 @@ - s_1110: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 17880915 - - 18296751 - - sbo: SBO:0000176 + - "17880915" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0646 - - name: IPS phospholipase C + - id: "r_0646" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0127: 1 - s_0475: 1 @@ -41282,18 +41315,18 @@ - s_0894: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0647 - - name: IPS phospholipase C + - id: "r_0647" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0127: 1 - s_0478: 1 @@ -41302,18 +41335,18 @@ - s_0897: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0648 - - name: IPS phospholipase C + - id: "r_0648" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0127: 1 - s_0487: 1 @@ -41322,18 +41355,18 @@ - s_0906: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0649 - - name: IPS phospholipase C + - id: "r_0649" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0127: 1 - s_0490: 1 @@ -41342,18 +41375,18 @@ - s_0909: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0650 - - name: IPS phospholipase C + - id: "r_0650" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0127: 1 - s_0481: 1 @@ -41362,18 +41395,18 @@ - s_0900: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0651 - - name: IPS phospholipase C + - id: "r_0651" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0127: 1 - s_0484: 1 @@ -41382,18 +41415,18 @@ - s_0903: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0652 - - name: IPS phospholipase C + - id: "r_0652" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0127: 1 - s_0493: 1 @@ -41402,18 +41435,18 @@ - s_0912: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0653 - - name: IPS phospholipase C + - id: "r_0653" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0127: 1 - s_0496: 1 @@ -41422,18 +41455,18 @@ - s_0915: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0654 - - name: IPS phospholipase C + - id: "r_0654" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0127: 1 - s_0499: 1 @@ -41442,18 +41475,18 @@ - s_0918: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0655 - - name: IPS phospholipase C + - id: "r_0655" + - name: "IPS phospholipase C" - metabolites: !!omap - s_0127: 1 - s_0502: 1 @@ -41462,18 +41495,18 @@ - s_0921: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER019W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YER019W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- + - ec-code: "3.1.4.-" - pmid: - - 11006294 - - 18296751 - - sbo: SBO:0000176 + - "11006294" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0656 - - name: isoamyl acetate-hydrolyzing esterase + - id: "r_0656" + - name: "isoamyl acetate-hydrolyzing esterase" - metabolites: !!omap - s_0362: 1 - s_0794: 1 @@ -41482,17 +41515,17 @@ - s_0929: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR126C + - gene_reaction_rule: "YOR126C" - annotation: !!omap - - ec-code: 3.1.-.- - - bigg.reaction: ACHLE1 - - metanetx.reaction: MNXR95262 - - pmid: 10855721 - - sbo: SBO:0000176 + - ec-code: "3.1.-.-" + - bigg.reaction: "ACHLE1" + - metanetx.reaction: "MNXR95262" + - pmid: "10855721" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0657 - - name: isobutyl acetate-hydrolyzing esterase + - id: "r_0657" + - name: "isobutyl acetate-hydrolyzing esterase" - metabolites: !!omap - s_0362: 1 - s_0794: 1 @@ -41501,17 +41534,17 @@ - s_0935: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR126C + - gene_reaction_rule: "YOR126C" - annotation: !!omap - - ec-code: 3.1.-.- - - bigg.reaction: ACHLE2 - - metanetx.reaction: MNXR95263 - - pmid: 10855721 - - sbo: SBO:0000176 + - ec-code: "3.1.-.-" + - bigg.reaction: "ACHLE2" + - metanetx.reaction: "MNXR95263" + - pmid: "10855721" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0658 - - name: isocitrate dehydrogenase (NAD+) + - id: "r_0658" + - name: "isocitrate dehydrogenase (NAD+)" - metabolites: !!omap - s_0182: 1 - s_0460: 1 @@ -41520,25 +41553,25 @@ - s_1205: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL037C and YOR136W + - gene_reaction_rule: "YNL037C and YOR136W" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00020 Citrate cycle (TCA cycle)" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.1.1.41 - - bigg.reaction: ICDHxm - - kegg.reaction: R00709 - - metanetx.reaction: MNXR100782 - - pmid: 1644826 - - sbo: SBO:0000176 + - ec-code: "1.1.1.41" + - bigg.reaction: "ICDHxm" + - kegg.reaction: "R00709" + - metanetx.reaction: "MNXR100782" + - pmid: "1644826" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0659 - - name: isocitrate dehydrogenase (NADP) + - id: "r_0659" + - name: "isocitrate dehydrogenase (NADP)" - metabolites: !!omap - s_0180: 1 - s_0456: 1 @@ -41547,27 +41580,27 @@ - s_1212: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR174W + - gene_reaction_rule: "YLR174W" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00480 Glutathione metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids - - sce04146 Peroxisome + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00480 Glutathione metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.1.1.42 - - bigg.reaction: ICDHyr - - kegg.reaction: R00267 - - metanetx.reaction: MNXR100781 - - pmid: 9175438 - - sbo: SBO:0000176 + - ec-code: "1.1.1.42" + - bigg.reaction: "ICDHyr" + - kegg.reaction: "R00267" + - metanetx.reaction: "MNXR100781" + - pmid: "9175438" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0661 - - name: isocitrate dehydrogenase (NADP+), peroxisomal + - id: "r_0661" + - name: "isocitrate dehydrogenase (NADP+), peroxisomal" - metabolites: !!omap - s_0184: 1 - s_0462: 1 @@ -41576,50 +41609,50 @@ - s_1215: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL009W + - gene_reaction_rule: "YNL009W" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00480 Glutathione metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids - - sce04146 Peroxisome + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00480 Glutathione metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.1.1.42 - - bigg.reaction: ICDHyp - - kegg.reaction: R00267 - - metanetx.reaction: MNXR100781 - - pmid: 9175438 - - sbo: SBO:0000176 + - ec-code: "1.1.1.42" + - bigg.reaction: "ICDHyp" + - kegg.reaction: "R00267" + - metanetx.reaction: "MNXR100781" + - pmid: "9175438" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0662 - - name: isocitrate lyase + - id: "r_0662" + - name: "isocitrate lyase" - metabolites: !!omap - s_0779: 1 - s_0940: -1 - s_1458: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER065C + - gene_reaction_rule: "YER065C" - subsystem: - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01200 Carbon metabolism + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 4.1.3.1 - - 4.1.3.30 - - bigg.reaction: ICL - - kegg.reaction: R00479 - - metanetx.reaction: MNXR100789 - - sbo: SBO:0000176 + - "4.1.3.1" + - "4.1.3.30" + - bigg.reaction: "ICL" + - kegg.reaction: "R00479" + - metanetx.reaction: "MNXR100789" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0663 - - name: isoleucine transaminase + - id: "r_0663" + - name: "isoleucine transaminase" - metabolites: !!omap - s_0056: 1 - s_0180: -1 @@ -41627,27 +41660,27 @@ - s_1016: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR148W + - gene_reaction_rule: "YJR148W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.42 - - bigg.reaction: ILETA - - kegg.reaction: R02199 - - metanetx.reaction: MNXR96228 - - pmid: 8798704 - - sbo: SBO:0000176 + - ec-code: "2.6.1.42" + - bigg.reaction: "ILETA" + - kegg.reaction: "R02199" + - metanetx.reaction: "MNXR96228" + - pmid: "8798704" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0664 - - name: isoleucine transaminase + - id: "r_0664" + - name: "isoleucine transaminase" - metabolites: !!omap - s_0060: 1 - s_0182: -1 @@ -41655,27 +41688,27 @@ - s_1018: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR208W + - gene_reaction_rule: "YHR208W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.42 - - bigg.reaction: ILETAm - - kegg.reaction: R02199 - - metanetx.reaction: MNXR96228 - - pmid: 8798704 - - sbo: SBO:0000176 + - ec-code: "2.6.1.42" + - bigg.reaction: "ILETAm" + - kegg.reaction: "R02199" + - metanetx.reaction: "MNXR96228" + - pmid: "8798704" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0665 - - name: isoleucyl-tRNA synthetase + - id: "r_0665" + - name: "isoleucyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -41685,19 +41718,19 @@ - s_1596: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL076C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YBL076C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.5 - - bigg.reaction: ILETRS - - kegg.reaction: R03656 - - metanetx.reaction: MNXR100820 - - pmid: 7619074 - - sbo: SBO:0000176 + - ec-code: "6.1.1.5" + - bigg.reaction: "ILETRS" + - kegg.reaction: "R03656" + - metanetx.reaction: "MNXR100820" + - pmid: "7619074" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0666 - - name: isoleucyl-tRNA synthetase + - id: "r_0666" + - name: "isoleucyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0437: -1 @@ -41707,39 +41740,39 @@ - s_1597: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL040C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YPL040C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.5 - - bigg.reaction: ILETRSm - - kegg.reaction: R03656 - - metanetx.reaction: MNXR100820 - - pmid: 7607232 - - sbo: SBO:0000176 + - ec-code: "6.1.1.5" + - bigg.reaction: "ILETRSm" + - kegg.reaction: "R03656" + - metanetx.reaction: "MNXR100820" + - pmid: "7607232" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0667 - - name: isopentenyl-diphosphate D-isomerase + - id: "r_0667" + - name: "isopentenyl-diphosphate D-isomerase" - metabolites: !!omap - s_0943: -1 - s_1376: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPL117C + - gene_reaction_rule: "YPL117C" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 5.3.3.2 - - bigg.reaction: IPDDI - - kegg.reaction: R01123 - - metanetx.reaction: MNXR100796 - - sbo: SBO:0000176 + - ec-code: "5.3.3.2" + - bigg.reaction: "IPDDI" + - kegg.reaction: "R01123" + - metanetx.reaction: "MNXR100796" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0668 - - name: itaconate-CoA ligase (ADP-forming) + - id: "r_0668" + - name: "itaconate-CoA ligase (ADP-forming)" - metabolites: !!omap - s_0397: 1 - s_0437: -1 @@ -41749,24 +41782,24 @@ - s_1326: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR244C and YOR142W + - gene_reaction_rule: "YGR244C and YOR142W" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00640 Propanoate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00640 Propanoate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 6.2.1.5 - - bigg.reaction: ITCOALm - - kegg.reaction: R02404 - - metanetx.reaction: MNXR100884 - - pmid: 9874242 - - sbo: SBO:0000176 + - ec-code: "6.2.1.5" + - bigg.reaction: "ITCOALm" + - kegg.reaction: "R02404" + - metanetx.reaction: "MNXR100884" + - pmid: "9874242" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0669 - - name: ketol-acid reductoisomerase (2-aceto-2-hydroxybutanoate) + - id: "r_0669" + - name: "ketol-acid reductoisomerase (2-aceto-2-hydroxybutanoate)" - metabolites: !!omap - s_0008: 1 - s_0039: -1 @@ -41775,24 +41808,24 @@ - s_1214: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR355C + - gene_reaction_rule: "YLR355C" - subsystem: - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.1.1.86 - - bigg.reaction: KARA2im - - metanetx.reaction: MNXR100902 - - pmid: 3027658 - - sbo: SBO:0000176 + - ec-code: "1.1.1.86" + - bigg.reaction: "KARA2im" + - metanetx.reaction: "MNXR100902" + - pmid: "3027658" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0670 - - name: kynureninase + - id: "r_0670" + - name: "kynureninase" - metabolites: !!omap - s_0427: 1 - s_0794: 1 @@ -41801,19 +41834,19 @@ - s_1020: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR231C - - subsystem: sce00380 Tryptophan metabolism + - gene_reaction_rule: "YLR231C" + - subsystem: "sce00380 Tryptophan metabolism" - annotation: !!omap - - ec-code: 3.7.1.3 - - bigg.reaction: KYN - - kegg.reaction: R00987 - - metanetx.reaction: MNXR100946 - - pmid: 12062417 - - sbo: SBO:0000176 + - ec-code: "3.7.1.3" + - bigg.reaction: "KYN" + - kegg.reaction: "R00987" + - metanetx.reaction: "MNXR100946" + - pmid: "12062417" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0671 - - name: kynurenine 3-monooxygenase + - id: "r_0671" + - name: "kynurenine 3-monooxygenase" - metabolites: !!omap - s_0222: 1 - s_0794: -1 @@ -41824,19 +41857,19 @@ - s_1275: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL098W - - subsystem: sce00380 Tryptophan metabolism + - gene_reaction_rule: "YBL098W" + - subsystem: "sce00380 Tryptophan metabolism" - annotation: !!omap - - ec-code: 1.14.13.9 - - bigg.reaction: KYN3OX - - kegg.reaction: R01960 - - metanetx.reaction: MNXR100947 - - pmid: 12062417 - - sbo: SBO:0000176 + - ec-code: "1.14.13.9" + - bigg.reaction: "KYN3OX" + - kegg.reaction: "R01960" + - metanetx.reaction: "MNXR100947" + - pmid: "12062417" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0672 - - name: L-1-pyrroline-3-hydroxy-5-carboxylate dehydrogenase + - id: "r_0672" + - name: "L-1-pyrroline-3-hydroxy-5-carboxylate dehydrogenase" - metabolites: !!omap - s_0117: -1 - s_0678: 1 @@ -41846,20 +41879,20 @@ - s_1205: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR037W + - gene_reaction_rule: "YHR037W" - subsystem: - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00330 Arginine and proline metabolism + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00330 Arginine and proline metabolism" - annotation: !!omap - - ec-code: 1.2.1.88 - - bigg.reaction: PHCDm - - kegg.reaction: R04444 - - metanetx.reaction: MNXR102616 - - sbo: SBO:0000176 + - ec-code: "1.2.1.88" + - bigg.reaction: "PHCDm" + - kegg.reaction: "R04444" + - metanetx.reaction: "MNXR102616" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0673 - - name: L-4-hydroxyglutamate semialdehyde dehydrogenase + - id: "r_0673" + - name: "L-4-hydroxyglutamate semialdehyde dehydrogenase" - metabolites: !!omap - s_0678: 1 - s_0799: 2 @@ -41869,20 +41902,20 @@ - s_1205: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR037W + - gene_reaction_rule: "YHR037W" - subsystem: - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00330 Arginine and proline metabolism + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00330 Arginine and proline metabolism" - annotation: !!omap - - ec-code: 1.2.1.88 - - bigg.reaction: 4HGLSDm - - kegg.reaction: R05051 - - metanetx.reaction: MNXR95015 - - sbo: SBO:0000176 + - ec-code: "1.2.1.88" + - bigg.reaction: "4HGLSDm" + - kegg.reaction: "R05051" + - metanetx.reaction: "MNXR95015" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0674 - - name: L-alanine transaminase + - id: "r_0674" + - name: "L-alanine transaminase" - metabolites: !!omap - s_0182: -1 - s_0957: -1 @@ -41890,46 +41923,46 @@ - s_1401: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR089C + - gene_reaction_rule: "YLR089C" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.2 - - bigg.reaction: ALATA_Lm - - kegg.reaction: R00258 - - metanetx.reaction: MNXR95698 - - sbo: SBO:0000176 + - ec-code: "2.6.1.2" + - bigg.reaction: "ALATA_Lm" + - kegg.reaction: "R00258" + - metanetx.reaction: "MNXR95698" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0675 - - name: L-allo-threonine aldolase + - id: "r_0675" + - name: "L-allo-threonine aldolase" - metabolites: !!omap - s_0359: 1 - s_0958: -1 - s_1003: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YEL046C + - gene_reaction_rule: "YEL046C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.1.2.48 - - bigg.reaction: THRA2 - - kegg.reaction: R06171 - - metanetx.reaction: MNXR104834 - - pmid: 9151955 - - sbo: SBO:0000176 + - ec-code: "4.1.2.48" + - bigg.reaction: "THRA2" + - kegg.reaction: "R06171" + - metanetx.reaction: "MNXR104834" + - pmid: "9151955" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0676 - - name: L-allo-threonine dehydrogenase + - id: "r_0676" + - name: "L-allo-threonine dehydrogenase" - metabolites: !!omap - s_0794: 1 - s_0952: 1 @@ -41938,21 +41971,21 @@ - s_1212: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR226C + - gene_reaction_rule: "YMR226C" - subsystem: - - sce00240 Pyrimidine metabolism - - sce00260 Glycine, serine and threonine metabolism + - "sce00240 Pyrimidine metabolism" + - "sce00260 Glycine, serine and threonine metabolism" - annotation: !!omap - - ec-code: 1.1.1.381 - - bigg.reaction: ATHRDHr - - kegg.reaction: R10851 - - metanetx.reaction: MNXR96121 - - pmid: 12535615 - - sbo: SBO:0000176 + - ec-code: "1.1.1.381" + - bigg.reaction: "ATHRDHr" + - kegg.reaction: "R10851" + - metanetx.reaction: "MNXR96121" + - pmid: "12535615" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0678 - - name: L-aminoadipate-semialdehyde dehydrogenase (NADPH) + - id: "r_0678" + - name: "L-aminoadipate-semialdehyde dehydrogenase (NADPH)" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -41964,26 +41997,26 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR115C and YGL154C + - gene_reaction_rule: "YBR115C and YGL154C" - subsystem: - - sce00300 Lysine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00300 Lysine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 1.2.1.31 - - 1.2.1.95 - - 2.7.8.7 - - bigg.reaction: AASAD1 - - metanetx.reaction: MNXR95156 - - pmid: 3928261 - - sbo: SBO:0000176 + - "1.2.1.31" + - "1.2.1.95" + - "2.7.8.7" + - bigg.reaction: "AASAD1" + - metanetx.reaction: "MNXR95156" + - pmid: "3928261" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0679 - - name: L-asparaginase + - id: "r_0679" + - name: "L-asparaginase" - metabolites: !!omap - s_0419: 1 - s_0803: -1 @@ -41991,21 +42024,21 @@ - s_0973: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR321W + - gene_reaction_rule: "YDR321W" - subsystem: - - sce00250 Alanine, aspartate and glutamate metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.5.1.1 - - bigg.reaction: ASNN - - kegg.reaction: R00485 - - metanetx.reaction: MNXR96056 - - pmid: 8026756 - - sbo: SBO:0000176 + - ec-code: "3.5.1.1" + - bigg.reaction: "ASNN" + - kegg.reaction: "R00485" + - metanetx.reaction: "MNXR96056" + - pmid: "8026756" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0680 - - name: L-asparaginase + - id: "r_0680" + - name: "L-asparaginase" - metabolites: !!omap - s_0420: 1 - s_0805: -1 @@ -42013,18 +42046,18 @@ - s_0974: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR155C or YLR157C or YLR158C or YLR160C + - gene_reaction_rule: "YLR155C or YLR157C or YLR158C or YLR160C" - annotation: !!omap - - ec-code: 3.5.1.1 - - bigg.reaction: ASNNe - - kegg.reaction: R00485 - - metanetx.reaction: MNXR96056 - - pmid: 3042786 - - sbo: SBO:0000176 + - ec-code: "3.5.1.1" + - bigg.reaction: "ASNNe" + - kegg.reaction: "R00485" + - metanetx.reaction: "MNXR96056" + - pmid: "3042786" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0681 - - name: L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase + - id: "r_0681" + - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" - metabolites: !!omap - s_0180: -1 - s_0282: 1 @@ -42032,30 +42065,30 @@ - s_0991: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR027C + - gene_reaction_rule: "YLR027C" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00270 Cysteine and methionine metabolism - - sce00330 Arginine and proline metabolism - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00330 Arginine and proline metabolism" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.1 - - bigg.reaction: EHGLAT - - kegg.reaction: R03266 - - metanetx.reaction: MNXR97908 - - sbo: SBO:0000176 + - ec-code: "2.6.1.1" + - bigg.reaction: "EHGLAT" + - kegg.reaction: "R03266" + - metanetx.reaction: "MNXR97908" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0682 - - name: L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase + - id: "r_0682" + - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" - metabolites: !!omap - s_0182: -1 - s_0283: 1 @@ -42063,30 +42096,30 @@ - s_0993: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL106W + - gene_reaction_rule: "YKL106W" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00270 Cysteine and methionine metabolism - - sce00330 Arginine and proline metabolism - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00330 Arginine and proline metabolism" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.1 - - bigg.reaction: EHGLATm - - kegg.reaction: R03266 - - metanetx.reaction: MNXR97908 - - sbo: SBO:0000176 + - ec-code: "2.6.1.1" + - bigg.reaction: "EHGLATm" + - kegg.reaction: "R03266" + - metanetx.reaction: "MNXR97908" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0683 - - name: L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase + - id: "r_0683" + - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" - metabolites: !!omap - s_0184: -1 - s_0284: 1 @@ -42094,30 +42127,30 @@ - s_0995: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR027C + - gene_reaction_rule: "YLR027C" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00270 Cysteine and methionine metabolism - - sce00330 Arginine and proline metabolism - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00330 Arginine and proline metabolism" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.1 - - bigg.reaction: EHGLATp - - kegg.reaction: R03266 - - metanetx.reaction: MNXR97908 - - sbo: SBO:0000176 + - ec-code: "2.6.1.1" + - bigg.reaction: "EHGLATp" + - kegg.reaction: "R03266" + - metanetx.reaction: "MNXR97908" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0687 - - name: L-hydroxyproline reductase (NADP) + - id: "r_0687" + - name: "L-hydroxyproline reductase (NADP)" - metabolites: !!omap - s_0116: -1 - s_0794: -2 @@ -42126,16 +42159,16 @@ - s_4207: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER023W + - gene_reaction_rule: "YER023W" - annotation: !!omap - - ec-code: 1.5.1.2 - - kegg.reaction: R03293 - - metanetx.reaction: MNXR100699 - - sbo: SBO:0000176 + - ec-code: "1.5.1.2" + - kegg.reaction: "R03293" + - metanetx.reaction: "MNXR100699" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0688 - - name: L-lactaldehyde:NADP+ 1-oxidoreductase + - id: "r_0688" + - name: "L-lactaldehyde:NADP+ 1-oxidoreductase" - metabolites: !!omap - s_0062: 1 - s_0794: -1 @@ -42144,55 +42177,55 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR104W or YOL151W + - gene_reaction_rule: "YHR104W or YOL151W" - subsystem: - - sce00040 Pentose and glucuronate interconversions - - sce00620 Pyruvate metabolism - - sce00640 Propanoate metabolism - - sce04011 MAPK signaling pathway - yeast + - "sce00040 Pentose and glucuronate interconversions" + - "sce00620 Pyruvate metabolism" + - "sce00640 Propanoate metabolism" + - "sce04011 MAPK signaling pathway - yeast" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.21 - - 1.1.1.265 - - 1.1.1.283 - - bigg.reaction: LALDO3 - - kegg.reaction: R02260 - - metanetx.reaction: MNXR101010 - - pmid: 12722185 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.21" + - "1.1.1.265" + - "1.1.1.283" + - bigg.reaction: "LALDO3" + - kegg.reaction: "R02260" + - metanetx.reaction: "MNXR101010" + - pmid: "12722185" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0689 - - name: L-serine deaminase + - id: "r_0689" + - name: "L-serine deaminase" - metabolites: !!omap - s_0419: 1 - s_1039: -1 - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL064C + - gene_reaction_rule: "YCL064C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00270 Cysteine and methionine metabolism - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 4.3.1.17 - - 4.3.1.19 - - bigg.reaction: SERD_L - - kegg.reaction: R00220 - - metanetx.reaction: MNXR104339 - - pmid: 2194168 - - sbo: SBO:0000176 + - "4.3.1.17" + - "4.3.1.19" + - bigg.reaction: "SERD_L" + - kegg.reaction: "R00220" + - metanetx.reaction: "MNXR104339" + - pmid: "2194168" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0690 - - name: L-serine dehydrogenase + - id: "r_0690" + - name: "L-serine dehydrogenase" - metabolites: !!omap - s_0794: 1 - s_0960: 1 @@ -42201,21 +42234,21 @@ - s_1212: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR226C + - gene_reaction_rule: "YMR226C" - subsystem: - - sce00240 Pyrimidine metabolism - - sce00260 Glycine, serine and threonine metabolism + - "sce00240 Pyrimidine metabolism" + - "sce00260 Glycine, serine and threonine metabolism" - annotation: !!omap - - ec-code: 1.1.1.381 - - bigg.reaction: LSERDHr - - kegg.reaction: R06126 - - metanetx.reaction: MNXR101242 - - pmid: 12535615 - - sbo: SBO:0000176 + - ec-code: "1.1.1.381" + - bigg.reaction: "LSERDHr" + - kegg.reaction: "R06126" + - metanetx.reaction: "MNXR101242" + - pmid: "12535615" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0691 - - name: L-sorbitol dehydrogenase (L-sorbose-producing) + - id: "r_0691" + - name: "L-sorbitol dehydrogenase (L-sorbose-producing)" - metabolites: !!omap - s_0794: 1 - s_0989: -1 @@ -42224,91 +42257,91 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR159W + - gene_reaction_rule: "YJR159W" - subsystem: - - sce00040 Pentose and glucuronate interconversions - - sce00051 Fructose and mannose metabolism + - "sce00040 Pentose and glucuronate interconversions" + - "sce00051 Fructose and mannose metabolism" - annotation: !!omap - - ec-code: 1.1.1.14 - - bigg.reaction: SBTD_L - - metanetx.reaction: MNXR104284 - - sbo: SBO:0000176 + - ec-code: "1.1.1.14" + - bigg.reaction: "SBTD_L" + - metanetx.reaction: "MNXR104284" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0692 - - name: L-threonine deaminase + - id: "r_0692" + - name: "L-threonine deaminase" - metabolites: !!omap - s_0178: 1 - s_0419: 1 - s_1045: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL064C + - gene_reaction_rule: "YCL064C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00270 Cysteine and methionine metabolism - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 4.3.1.17 - - 4.3.1.19 - - bigg.reaction: THRD_L - - kegg.reaction: R00996 - - metanetx.reaction: MNXR104714 - - pmid: 1628804 - - sbo: SBO:0000176 + - "4.3.1.17" + - "4.3.1.19" + - bigg.reaction: "THRD_L" + - kegg.reaction: "R00996" + - metanetx.reaction: "MNXR104714" + - pmid: "1628804" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0693 - - name: L-threonine deaminase + - id: "r_0693" + - name: "L-threonine deaminase" - metabolites: !!omap - s_0179: 1 - s_0421: 1 - s_1047: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER086W + - gene_reaction_rule: "YER086W" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.3.1.19 - - bigg.reaction: THRD_Lm - - kegg.reaction: R00996 - - metanetx.reaction: MNXR104714 - - pmid: 3289762 - - sbo: SBO:0000176 + - ec-code: "4.3.1.19" + - bigg.reaction: "THRD_Lm" + - kegg.reaction: "R00996" + - metanetx.reaction: "MNXR104714" + - pmid: "3289762" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0694 - - name: L-tryptophan:oxygen 2,3-oxidoreductase (decyclizing) + - id: "r_0694" + - name: "L-tryptophan:oxygen 2,3-oxidoreductase (decyclizing)" - metabolites: !!omap - s_1048: -1 - s_1195: 1 - s_1275: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR078W - - subsystem: sce00380 Tryptophan metabolism + - gene_reaction_rule: "YJR078W" + - subsystem: "sce00380 Tryptophan metabolism" - annotation: !!omap - - ec-code: 1.13.11.52 - - bigg.reaction: TRPO2 - - kegg.reaction: R00678 - - metanetx.reaction: MNXR104944 - - pmid: 12062417 - - sbo: SBO:0000176 + - ec-code: "1.13.11.52" + - bigg.reaction: "TRPO2" + - kegg.reaction: "R00678" + - metanetx.reaction: "MNXR104944" + - pmid: "12062417" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0695 - - name: L-tyrosine N-formyltransferase + - id: "r_0695" + - name: "L-tyrosine N-formyltransferase" - metabolites: !!omap - s_0120: -1 - s_0794: 1 @@ -42317,16 +42350,16 @@ - s_1487: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR403W + - gene_reaction_rule: "YDR403W" - annotation: !!omap - - bigg.reaction: TYRNFT - - metanetx.reaction: MNXR104994 - - pmid: 8706696 - - sbo: SBO:0000176 + - bigg.reaction: "TYRNFT" + - metanetx.reaction: "MNXR104994" + - pmid: "8706696" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0696 - - name: lactaldehyde dehydrogenase + - id: "r_0696" + - name: "lactaldehyde dehydrogenase" - metabolites: !!omap - s_0062: -1 - s_0063: 1 @@ -42336,55 +42369,55 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL151W + - gene_reaction_rule: "YOL151W" - annotation: !!omap - - bigg.reaction: LCADi - - kegg.reaction: R01446 - - metanetx.reaction: MNXR101018 - - pmid: 3908097 - - sbo: SBO:0000176 + - bigg.reaction: "LCADi" + - kegg.reaction: "R01446" + - metanetx.reaction: "MNXR101018" + - pmid: "3908097" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0697 - - name: lactoylglutathione lyase + - id: "r_0697" + - name: "lactoylglutathione lyase" - metabolites: !!omap - s_0033: 1 - s_0750: -1 - s_1151: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML004C - - subsystem: sce00620 Pyruvate metabolism + - gene_reaction_rule: "YML004C" + - subsystem: "sce00620 Pyruvate metabolism" - annotation: !!omap - - ec-code: 4.4.1.5 - - bigg.reaction: LGTHL - - kegg.reaction: R02530 - - metanetx.reaction: MNXR100355 - - sbo: SBO:0000176 + - ec-code: "4.4.1.5" + - bigg.reaction: "LGTHL" + - kegg.reaction: "R02530" + - metanetx.reaction: "MNXR100355" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0698 - - name: lanosterol synthase + - id: "r_0698" + - name: "lanosterol synthase" - metabolites: !!omap - s_0037: -1 - s_1059: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR072W + - gene_reaction_rule: "YHR072W" - subsystem: - - sce00100 Steroid biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 5.4.99.7 - - bigg.reaction: LNSTLS - - kegg.reaction: R03199 - - metanetx.reaction: MNXR101117 - - sbo: SBO:0000176 + - ec-code: "5.4.99.7" + - bigg.reaction: "LNSTLS" + - kegg.reaction: "R03199" + - metanetx.reaction: "MNXR101117" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0699 - - name: leucine transaminase + - id: "r_0699" + - name: "leucine transaminase" - metabolites: !!omap - s_0180: -1 - s_0291: 1 @@ -42392,27 +42425,27 @@ - s_1021: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR148W + - gene_reaction_rule: "YJR148W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.42 - - bigg.reaction: LEUTA - - kegg.reaction: R01090 - - metanetx.reaction: MNXR96229 - - pmid: 9748245 - - sbo: SBO:0000176 + - ec-code: "2.6.1.42" + - bigg.reaction: "LEUTA" + - kegg.reaction: "R01090" + - metanetx.reaction: "MNXR96229" + - pmid: "9748245" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0700 - - name: leucine transaminase + - id: "r_0700" + - name: "leucine transaminase" - metabolites: !!omap - s_0182: -1 - s_0292: 1 @@ -42420,27 +42453,27 @@ - s_1023: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR208W + - gene_reaction_rule: "YHR208W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.42 - - bigg.reaction: LEUTAm - - kegg.reaction: R01090 - - metanetx.reaction: MNXR96229 - - pmid: 8798704 - - sbo: SBO:0000176 + - ec-code: "2.6.1.42" + - bigg.reaction: "LEUTAm" + - kegg.reaction: "R01090" + - metanetx.reaction: "MNXR96229" + - pmid: "8798704" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0701 - - name: leucyl-tRNA synthetase + - id: "r_0701" + - name: "leucyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -42450,19 +42483,19 @@ - s_1598: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL160W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YPL160W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.4 - - bigg.reaction: LEUTRS - - kegg.reaction: R03657 - - metanetx.reaction: MNXR101053 - - pmid: 9742237 - - sbo: SBO:0000176 + - ec-code: "6.1.1.4" + - bigg.reaction: "LEUTRS" + - kegg.reaction: "R03657" + - metanetx.reaction: "MNXR101053" + - pmid: "9742237" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0702 - - name: leucyl-tRNA synthetase + - id: "r_0702" + - name: "leucyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0437: -1 @@ -42472,114 +42505,114 @@ - s_1599: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR382C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YLR382C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.4 - - bigg.reaction: LEUTRSm - - kegg.reaction: R03657 - - metanetx.reaction: MNXR101053 - - pmid: 1990003 - - sbo: SBO:0000176 + - ec-code: "6.1.1.4" + - bigg.reaction: "LEUTRSm" + - kegg.reaction: "R03657" + - metanetx.reaction: "MNXR101053" + - pmid: "1990003" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0703 - - name: leukotriene A4 hydrolase + - id: "r_0703" + - name: "leukotriene A4 hydrolase" - metabolites: !!omap - s_0013: 1 - s_0803: -1 - s_1079: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL045W + - gene_reaction_rule: "YNL045W" - annotation: !!omap - - ec-code: 3.3.2.6 - - pmid: 11601994 - - sbo: SBO:0000176 + - ec-code: "3.3.2.6" + - pmid: "11601994" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0704 - - name: leukotriene A4 hydrolase + - id: "r_0704" + - name: "leukotriene A4 hydrolase" - metabolites: !!omap - s_0014: 1 - s_0808: -1 - s_1080: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL045W + - gene_reaction_rule: "YNL045W" - annotation: !!omap - - ec-code: 3.3.2.6 - - pmid: 11601994 - - sbo: SBO:0000176 + - ec-code: "3.3.2.6" + - pmid: "11601994" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0705 - - name: leukotriene A4 hydrolase + - id: "r_0705" + - name: "leukotriene A4 hydrolase" - metabolites: !!omap - s_0608: 1 - s_0803: -1 - s_1079: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL045W + - gene_reaction_rule: "YNL045W" - annotation: !!omap - - ec-code: 3.3.2.6 - - pmid: 11601994 - - sbo: SBO:0000176 + - ec-code: "3.3.2.6" + - pmid: "11601994" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0706 - - name: leukotriene A4 hydrolase + - id: "r_0706" + - name: "leukotriene A4 hydrolase" - metabolites: !!omap - s_0609: 1 - s_0808: -1 - s_1080: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL045W + - gene_reaction_rule: "YNL045W" - annotation: !!omap - - ec-code: 3.3.2.6 - - pmid: 11601994 - - sbo: SBO:0000176 + - ec-code: "3.3.2.6" + - pmid: "11601994" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0707 - - name: leukotriene A4 hydrolase + - id: "r_0707" + - name: "leukotriene A4 hydrolase" - metabolites: !!omap - s_0803: -1 - s_1079: -1 - s_1081: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL045W + - gene_reaction_rule: "YNL045W" - annotation: !!omap - - ec-code: 3.3.2.6 - - bigg.reaction: LTA4H - - kegg.reaction: R03057 - - metanetx.reaction: MNXR107919 - - pmid: 11601994 - - sbo: SBO:0000176 + - ec-code: "3.3.2.6" + - bigg.reaction: "LTA4H" + - kegg.reaction: "R03057" + - metanetx.reaction: "MNXR107919" + - pmid: "11601994" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0708 - - name: leukotriene A4 hydrolase + - id: "r_0708" + - name: "leukotriene A4 hydrolase" - metabolites: !!omap - s_0808: -1 - s_1080: -1 - s_1082: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL045W + - gene_reaction_rule: "YNL045W" - annotation: !!omap - - ec-code: 3.3.2.6 - - kegg.reaction: R03057 - - metanetx.reaction: MNXR107919 - - pmid: 11601994 - - sbo: SBO:0000176 + - ec-code: "3.3.2.6" + - kegg.reaction: "R03057" + - metanetx.reaction: "MNXR107919" + - pmid: "11601994" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0711 - - name: lysyl-tRNA synthetase + - id: "r_0711" + - name: "lysyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -42589,19 +42622,19 @@ - s_1600: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR037W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YDR037W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.6 - - bigg.reaction: LYSTRS - - kegg.reaction: R03658 - - metanetx.reaction: MNXR101264 - - pmid: 2903861 - - sbo: SBO:0000176 + - ec-code: "6.1.1.6" + - bigg.reaction: "LYSTRS" + - kegg.reaction: "R03658" + - metanetx.reaction: "MNXR101264" + - pmid: "2903861" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0712 - - name: lysyl-tRNA synthetase + - id: "r_0712" + - name: "lysyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0437: -1 @@ -42611,19 +42644,19 @@ - s_1601: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL073W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YNL073W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.6 - - bigg.reaction: LYSTRSm - - kegg.reaction: R03658 - - metanetx.reaction: MNXR101264 - - pmid: 2016746 - - sbo: SBO:0000176 + - ec-code: "6.1.1.6" + - bigg.reaction: "LYSTRSm" + - kegg.reaction: "R03658" + - metanetx.reaction: "MNXR101264" + - pmid: "2016746" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0713 - - name: malate dehydrogenase + - id: "r_0713" + - name: "malate dehydrogenase" - metabolites: !!omap - s_0068: -1 - s_0799: 1 @@ -42632,26 +42665,26 @@ - s_1273: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL085W + - gene_reaction_rule: "YKL085W" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00270 Cysteine and methionine metabolism - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00270 Cysteine and methionine metabolism" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 1.1.1.37 - - bigg.reaction: MDHm - - kegg.reaction: R00342 - - metanetx.reaction: MNXR101439 - - pmid: 9175438 - - sbo: SBO:0000176 + - ec-code: "1.1.1.37" + - bigg.reaction: "MDHm" + - kegg.reaction: "R00342" + - metanetx.reaction: "MNXR101439" + - pmid: "9175438" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0714 - - name: malate dehydrogenase, cytoplasmic + - id: "r_0714" + - name: "malate dehydrogenase, cytoplasmic" - metabolites: !!omap - s_0066: -1 - s_0794: 1 @@ -42660,26 +42693,26 @@ - s_1271: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOL126C + - gene_reaction_rule: "YOL126C" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00270 Cysteine and methionine metabolism - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00270 Cysteine and methionine metabolism" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 1.1.1.37 - - bigg.reaction: MDH - - kegg.reaction: R00342 - - metanetx.reaction: MNXR101439 - - pmid: 11914276 - - sbo: SBO:0000176 + - ec-code: "1.1.1.37" + - bigg.reaction: "MDH" + - kegg.reaction: "R00342" + - metanetx.reaction: "MNXR101439" + - pmid: "11914276" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0715 - - name: malate dehydrogenase, peroxisomal + - id: "r_0715" + - name: "malate dehydrogenase, peroxisomal" - metabolites: !!omap - s_0069: -1 - s_0801: 1 @@ -42688,26 +42721,26 @@ - s_1274: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL078C + - gene_reaction_rule: "YDL078C" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00270 Cysteine and methionine metabolism - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00270 Cysteine and methionine metabolism" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 1.1.1.37 - - bigg.reaction: MDHp - - kegg.reaction: R00342 - - metanetx.reaction: MNXR101439 - - pmid: 9175438 - - sbo: SBO:0000176 + - ec-code: "1.1.1.37" + - bigg.reaction: "MDHp" + - kegg.reaction: "R00342" + - metanetx.reaction: "MNXR101439" + - pmid: "9175438" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0716 - - name: malate synthase + - id: "r_0716" + - name: "malate synthase" - metabolites: !!omap - s_0066: 1 - s_0373: -1 @@ -42717,22 +42750,22 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIR031C or YNL117W + - gene_reaction_rule: "YIR031C or YNL117W" - subsystem: - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01200 Carbon metabolism + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 2.3.3.9 - - bigg.reaction: MALS - - kegg.reaction: R00472 - - metanetx.reaction: MNXR101347 - - sbo: SBO:0000176 + - ec-code: "2.3.3.9" + - bigg.reaction: "MALS" + - kegg.reaction: "R00472" + - metanetx.reaction: "MNXR101347" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0717 - - name: malate synthase + - id: "r_0717" + - name: "malate synthase" - metabolites: !!omap - s_0069: 1 - s_0378: -1 @@ -42742,23 +42775,23 @@ - s_0809: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL117W + - gene_reaction_rule: "YNL117W" - subsystem: - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01200 Carbon metabolism + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 2.3.3.9 - - bigg.reaction: MALSp - - kegg.reaction: R00472 - - metanetx.reaction: MNXR101347 - - pmid: 11846793 - - sbo: SBO:0000176 + - ec-code: "2.3.3.9" + - bigg.reaction: "MALSp" + - kegg.reaction: "R00472" + - metanetx.reaction: "MNXR101347" + - pmid: "11846793" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0718 - - name: malic enzyme (NAD) + - id: "r_0718" + - name: "malic enzyme (NAD)" - metabolites: !!omap - s_0068: -1 - s_0460: 1 @@ -42767,24 +42800,24 @@ - s_1401: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL029C + - gene_reaction_rule: "YKL029C" - subsystem: - - sce00620 Pyruvate metabolism - - sce01200 Carbon metabolism + - "sce00620 Pyruvate metabolism" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 1.1.1.38 - - bigg.reaction: ME1m - - kegg.reaction: R00214 - - metanetx.reaction: MNXR101446 + - ec-code: "1.1.1.38" + - bigg.reaction: "ME1m" + - kegg.reaction: "R00214" + - metanetx.reaction: "MNXR101446" - pmid: - - 9603875 - - 15491864 - - 22851014 - - sbo: SBO:0000176 + - "9603875" + - "15491864" + - "22851014" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0719 - - name: malic enzyme (NADP) + - id: "r_0719" + - name: "malic enzyme (NADP)" - metabolites: !!omap - s_0068: -1 - s_0460: 1 @@ -42793,24 +42826,24 @@ - s_1401: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL029C + - gene_reaction_rule: "YKL029C" - subsystem: - - sce00620 Pyruvate metabolism - - sce01200 Carbon metabolism + - "sce00620 Pyruvate metabolism" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 1.1.1.38 - - bigg.reaction: ME2m - - kegg.reaction: R00214 - - metanetx.reaction: MNXR101446 + - ec-code: "1.1.1.38" + - bigg.reaction: "ME2m" + - kegg.reaction: "R00214" + - metanetx.reaction: "MNXR101446" - pmid: - - 9603875 - - 15491864 - - 22851014 - - sbo: SBO:0000176 + - "9603875" + - "15491864" + - "22851014" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0721 - - name: malonyl-CoA-ACP transacylase + - id: "r_0721" + - name: "malonyl-CoA-ACP transacylase" - metabolites: !!omap - s_0465: 1 - s_0532: 1 @@ -42818,23 +42851,23 @@ - s_1845: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL192C and YOR221C + - gene_reaction_rule: "YKL192C and YOR221C" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00190 Oxidative phosphorylation - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism + - "sce00061 Fatty acid biosynthesis" + - "sce00190 Oxidative phosphorylation" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.39 - - bigg.reaction: MCOATAm - - kegg.reaction: R01626 - - metanetx.reaction: MNXR101421 - - pmid: 15387819 - - sbo: SBO:0000176 + - ec-code: "2.3.1.39" + - bigg.reaction: "MCOATAm" + - kegg.reaction: "R01626" + - metanetx.reaction: "MNXR101421" + - pmid: "15387819" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0722 - - name: mannose-1-phosphate guanylyltransferase + - id: "r_0722" + - name: "mannose-1-phosphate guanylyltransferase" - metabolites: !!omap - s_0573: -1 - s_0633: 1 @@ -42843,42 +42876,42 @@ - s_0794: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL055C + - gene_reaction_rule: "YDL055C" - subsystem: - - sce00051 Fructose and mannose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00051 Fructose and mannose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.7.13 - - bigg.reaction: MAN1PT - - kegg.reaction: R00885 - - metanetx.reaction: MNXR101375 - - sbo: SBO:0000176 + - ec-code: "2.7.7.13" + - bigg.reaction: "MAN1PT" + - kegg.reaction: "R00885" + - metanetx.reaction: "MNXR101375" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0723 - - name: mannose-6-phosphate isomerase + - id: "r_0723" + - name: "mannose-6-phosphate isomerase" - metabolites: !!omap - s_0557: 1 - s_0574: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER003C + - gene_reaction_rule: "YER003C" - subsystem: - - sce00051 Fructose and mannose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00051 Fructose and mannose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 5.3.1.8 - - bigg.reaction: MAN6PI - - kegg.reaction: R00772 - - metanetx.reaction: MNXR106679 - - sbo: SBO:0000176 + - ec-code: "5.3.1.8" + - bigg.reaction: "MAN6PI" + - kegg.reaction: "R00772" + - metanetx.reaction: "MNXR106679" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0724 - - name: methenyltetrahydrifikate cyclohydrolase + - id: "r_0724" + - name: "methenyltetrahydrifikate cyclohydrolase" - metabolites: !!omap - s_0121: 1 - s_0305: -1 @@ -42886,21 +42919,21 @@ - s_0807: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR084W - - subsystem: sce00670 One carbon pool by folate + - gene_reaction_rule: "YBR084W" + - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: - - 1.5.1.5 - - 3.5.4.9 - - 6.3.4.3 - - bigg.reaction: MTHFCm - - kegg.reaction: R01655 - - metanetx.reaction: MNXR101748 - - sbo: SBO:0000176 + - "1.5.1.5" + - "3.5.4.9" + - "6.3.4.3" + - bigg.reaction: "MTHFCm" + - kegg.reaction: "R01655" + - metanetx.reaction: "MNXR101748" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0725 - - name: methenyltetrahydrofolate cyclohydrolase + - id: "r_0725" + - name: "methenyltetrahydrofolate cyclohydrolase" - metabolites: !!omap - s_0120: 1 - s_0304: -1 @@ -42908,21 +42941,21 @@ - s_0803: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR204W - - subsystem: sce00670 One carbon pool by folate + - gene_reaction_rule: "YGR204W" + - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: - - 1.5.1.5 - - 3.5.4.9 - - 6.3.4.3 - - bigg.reaction: MTHFC - - kegg.reaction: R01655 - - metanetx.reaction: MNXR101748 - - sbo: SBO:0000176 + - "1.5.1.5" + - "3.5.4.9" + - "6.3.4.3" + - bigg.reaction: "MTHFC" + - kegg.reaction: "R01655" + - metanetx.reaction: "MNXR101748" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0726 - - name: methionine adenosyltransferase + - id: "r_0726" + - name: "methionine adenosyltransferase" - metabolites: !!omap - s_0434: -1 - s_0633: 1 @@ -42932,22 +42965,22 @@ - s_1416: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR502C or YLR180W + - gene_reaction_rule: "YDR502C or YLR180W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.5.1.6 - - bigg.reaction: METAT - - kegg.reaction: R00177 - - metanetx.reaction: MNXR101407 - - pmid: 194884 - - sbo: SBO:0000176 + - ec-code: "2.5.1.6" + - bigg.reaction: "METAT" + - kegg.reaction: "R00177" + - metanetx.reaction: "MNXR101407" + - pmid: "194884" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0727 - - name: methionine synthase + - id: "r_0727" + - name: "methionine synthase" - metabolites: !!omap - s_0322: -1 - s_1012: -1 @@ -42955,23 +42988,23 @@ - s_1487: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER091C + - gene_reaction_rule: "YER091C" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00450 Selenocompound metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00450 Selenocompound metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.1.1.14 - - bigg.reaction: METS - - kegg.reaction: R00946 - - metanetx.reaction: MNXR101481 - - pmid: 16083849 - - sbo: SBO:0000176 + - ec-code: "2.1.1.14" + - bigg.reaction: "METS" + - kegg.reaction: "R00946" + - metanetx.reaction: "MNXR101481" + - pmid: "16083849" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0728 - - name: methionyl-tRNA formyltransferase + - id: "r_0728" + - name: "methionyl-tRNA formyltransferase" - metabolites: !!omap - s_0121: -1 - s_0713: 1 @@ -42980,20 +43013,20 @@ - s_1488: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL013W + - gene_reaction_rule: "YBL013W" - subsystem: - - sce00670 One carbon pool by folate - - sce00970 Aminoacyl-tRNA biosynthesis + - "sce00670 One carbon pool by folate" + - "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 2.1.2.9 - - bigg.reaction: FMETTRSm - - kegg.reaction: R03940 - - metanetx.reaction: MNXR99604 - - sbo: SBO:0000176 + - ec-code: "2.1.2.9" + - bigg.reaction: "FMETTRSm" + - kegg.reaction: "R03940" + - metanetx.reaction: "MNXR99604" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0729 - - name: methionyl-tRNA synthetase + - id: "r_0729" + - name: "methionyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -43003,21 +43036,21 @@ - s_1602: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR264C + - gene_reaction_rule: "YGR264C" - subsystem: - - sce00450 Selenocompound metabolism - - sce00970 Aminoacyl-tRNA biosynthesis + - "sce00450 Selenocompound metabolism" + - "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.10 - - bigg.reaction: METTRS - - kegg.reaction: R03659 - - metanetx.reaction: MNXR101488 - - pmid: 6304034 - - sbo: SBO:0000176 + - ec-code: "6.1.1.10" + - bigg.reaction: "METTRS" + - kegg.reaction: "R03659" + - metanetx.reaction: "MNXR101488" + - pmid: "6304034" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0730 - - name: methionyl-tRNA synthetase + - id: "r_0730" + - name: "methionyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0437: -1 @@ -43027,21 +43060,21 @@ - s_1603: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR171C + - gene_reaction_rule: "YGR171C" - subsystem: - - sce00450 Selenocompound metabolism - - sce00970 Aminoacyl-tRNA biosynthesis + - "sce00450 Selenocompound metabolism" + - "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.10 - - bigg.reaction: METTRSm - - kegg.reaction: R03659 - - metanetx.reaction: MNXR101488 - - pmid: 2645139 - - sbo: SBO:0000176 + - ec-code: "6.1.1.10" + - bigg.reaction: "METTRSm" + - kegg.reaction: "R03659" + - metanetx.reaction: "MNXR101488" + - pmid: "2645139" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0731 - - name: methylenetetrahydrofolate dehydrogenase (NAD) + - id: "r_0731" + - name: "methylenetetrahydrofolate dehydrogenase (NAD)" - metabolites: !!omap - s_0304: 1 - s_0306: -1 @@ -43049,18 +43082,18 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR080W - - subsystem: sce00670 One carbon pool by folate + - gene_reaction_rule: "YKR080W" + - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - - ec-code: 1.5.1.15 - - bigg.reaction: MTHFD2i - - kegg.reaction: R01218 - - metanetx.reaction: MNXR101750 - - sbo: SBO:0000176 + - ec-code: "1.5.1.15" + - bigg.reaction: "MTHFD2i" + - kegg.reaction: "R01218" + - metanetx.reaction: "MNXR101750" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0732 - - name: methylenetetrahydrofolate dehydrogenase (NADP) + - id: "r_0732" + - name: "methylenetetrahydrofolate dehydrogenase (NADP)" - metabolites: !!omap - s_0304: 1 - s_0306: -1 @@ -43068,21 +43101,21 @@ - s_1212: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR204W - - subsystem: sce00670 One carbon pool by folate + - gene_reaction_rule: "YGR204W" + - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: - - 1.5.1.5 - - 3.5.4.9 - - 6.3.4.3 - - bigg.reaction: MTHFD - - kegg.reaction: R01220 - - metanetx.reaction: MNXR101749 - - sbo: SBO:0000176 + - "1.5.1.5" + - "3.5.4.9" + - "6.3.4.3" + - bigg.reaction: "MTHFD" + - kegg.reaction: "R01220" + - metanetx.reaction: "MNXR101749" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0733 - - name: methylenetetrahydrofolate dehydrogenase (NADP) + - id: "r_0733" + - name: "methylenetetrahydrofolate dehydrogenase (NADP)" - metabolites: !!omap - s_0305: 1 - s_0307: -1 @@ -43090,47 +43123,47 @@ - s_1214: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR084W - - subsystem: sce00670 One carbon pool by folate + - gene_reaction_rule: "YBR084W" + - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: - - 1.5.1.5 - - 3.5.4.9 - - 6.3.4.3 - - bigg.reaction: MTHFDm - - kegg.reaction: R01220 - - metanetx.reaction: MNXR101749 + - "1.5.1.5" + - "3.5.4.9" + - "6.3.4.3" + - bigg.reaction: "MTHFDm" + - kegg.reaction: "R01220" + - metanetx.reaction: "MNXR101749" - pmid: - - 10871621 - - 1916088 - - 8852837 - - sbo: SBO:0000176 + - "10871621" + - "1916088" + - "8852837" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0734 - - name: methylisocitrate lyase + - id: "r_0734" + - name: "methylisocitrate lyase" - metabolites: !!omap - s_0012: -1 - s_1401: 1 - s_1460: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR006C + - gene_reaction_rule: "YPR006C" - subsystem: - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01200 Carbon metabolism + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 4.1.3.30 - - bigg.reaction: MCITL2m - - kegg.reaction: R00409 - - metanetx.reaction: MNXR101415 - - pmid: 16332871 - - sbo: SBO:0000176 + - ec-code: "4.1.3.30" + - bigg.reaction: "MCITL2m" + - kegg.reaction: "R00409" + - metanetx.reaction: "MNXR101415" + - pmid: "16332871" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0735 - - name: mevalonate kinase (atp) + - id: "r_0735" + - name: "mevalonate kinase (atp)" - metabolites: !!omap - s_0019: 1 - s_0028: -1 @@ -43139,22 +43172,22 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR208W + - gene_reaction_rule: "YMR208W" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce04146 Peroxisome + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.7.1.36 - - bigg.reaction: MEVK1 - - kegg.reaction: R02245 - - metanetx.reaction: MNXR101495 - - sbo: SBO:0000176 + - ec-code: "2.7.1.36" + - bigg.reaction: "MEVK1" + - kegg.reaction: "R02245" + - metanetx.reaction: "MNXR101495" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0736 - - name: mevalonate kinase (ctp) + - id: "r_0736" + - name: "mevalonate kinase (ctp)" - metabolites: !!omap - s_0019: 1 - s_0028: -1 @@ -43163,21 +43196,21 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR208W + - gene_reaction_rule: "YMR208W" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce04146 Peroxisome + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.7.1.36 - - bigg.reaction: MEVK2 - - metanetx.reaction: MNXR101496 - - sbo: SBO:0000176 + - ec-code: "2.7.1.36" + - bigg.reaction: "MEVK2" + - metanetx.reaction: "MNXR101496" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0737 - - name: mevalonate kinase (gtp) + - id: "r_0737" + - name: "mevalonate kinase (gtp)" - metabolites: !!omap - s_0019: 1 - s_0028: -1 @@ -43186,21 +43219,21 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR208W + - gene_reaction_rule: "YMR208W" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce04146 Peroxisome + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.7.1.36 - - bigg.reaction: MEVK3 - - metanetx.reaction: MNXR101497 - - sbo: SBO:0000176 + - ec-code: "2.7.1.36" + - bigg.reaction: "MEVK3" + - metanetx.reaction: "MNXR101497" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0738 - - name: mevalonate kinase (UTP) + - id: "r_0738" + - name: "mevalonate kinase (UTP)" - metabolites: !!omap - s_0019: 1 - s_0028: -1 @@ -43209,21 +43242,21 @@ - s_1559: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR208W + - gene_reaction_rule: "YMR208W" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce04146 Peroxisome + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.7.1.36 - - bigg.reaction: MEVK4 - - metanetx.reaction: MNXR101498 - - sbo: SBO:0000176 + - ec-code: "2.7.1.36" + - bigg.reaction: "MEVK4" + - metanetx.reaction: "MNXR101498" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0739 - - name: mevalonate pyrophoshate decarboxylase + - id: "r_0739" + - name: "mevalonate pyrophoshate decarboxylase" - metabolites: !!omap - s_0018: -1 - s_0394: 1 @@ -43233,21 +43266,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNR043W + - gene_reaction_rule: "YNR043W" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 4.1.1.33 - - bigg.reaction: DPMVD - - kegg.reaction: R01121 - - metanetx.reaction: MNXR97776 - - sbo: SBO:0000176 + - ec-code: "4.1.1.33" + - bigg.reaction: "DPMVD" + - kegg.reaction: "R01121" + - metanetx.reaction: "MNXR97776" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0747 - - name: MIPC synthase + - id: "r_0747" + - name: "MIPC synthase" - metabolites: !!omap - s_0740: 1 - s_0744: -1 @@ -43256,20 +43289,20 @@ - s_1117: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR036C and YBR161W) or (YBR036C and YPL057C) + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - annotation: !!omap - ec-code: - - 2.-.-.- - - 2.4.-.- - - metanetx.reaction: MNXR126697 + - "2.-.-.-" + - "2.4.-.-" + - metanetx.reaction: "MNXR126697" - pmid: - - 12954640 - - 18296751 - - sbo: SBO:0000176 + - "12954640" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0748 - - name: MIPC synthase + - id: "r_0748" + - name: "MIPC synthase" - metabolites: !!omap - s_0740: 1 - s_0744: -1 @@ -43278,19 +43311,19 @@ - s_1120: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR036C and YBR161W) or (YBR036C and YPL057C) + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - annotation: !!omap - ec-code: - - 2.-.-.- - - 2.4.-.- + - "2.-.-.-" + - "2.4.-.-" - pmid: - - 12954640 - - 18296751 - - sbo: SBO:0000176 + - "12954640" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0749 - - name: MIPC synthase + - id: "r_0749" + - name: "MIPC synthase" - metabolites: !!omap - s_0740: 1 - s_0744: -1 @@ -43299,19 +43332,19 @@ - s_1129: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR036C and YBR161W) or (YBR036C and YPL057C) + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - annotation: !!omap - ec-code: - - 2.-.-.- - - 2.4.-.- + - "2.-.-.-" + - "2.4.-.-" - pmid: - - 12954640 - - 18296751 - - sbo: SBO:0000176 + - "12954640" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0750 - - name: MIPC synthase + - id: "r_0750" + - name: "MIPC synthase" - metabolites: !!omap - s_0740: 1 - s_0744: -1 @@ -43320,19 +43353,19 @@ - s_1132: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR036C and YBR161W) or (YBR036C and YPL057C) + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - annotation: !!omap - ec-code: - - 2.-.-.- - - 2.4.-.- + - "2.-.-.-" + - "2.4.-.-" - pmid: - - 12954640 - - 18296751 - - sbo: SBO:0000176 + - "12954640" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0751 - - name: MIPC synthase + - id: "r_0751" + - name: "MIPC synthase" - metabolites: !!omap - s_0740: 1 - s_0744: -1 @@ -43341,19 +43374,19 @@ - s_1123: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR036C and YBR161W) or (YBR036C and YPL057C) + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - annotation: !!omap - ec-code: - - 2.-.-.- - - 2.4.-.- + - "2.-.-.-" + - "2.4.-.-" - pmid: - - 12954640 - - 18296751 - - sbo: SBO:0000176 + - "12954640" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0752 - - name: MIPC synthase + - id: "r_0752" + - name: "MIPC synthase" - metabolites: !!omap - s_0740: 1 - s_0744: -1 @@ -43362,19 +43395,19 @@ - s_1126: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR036C and YBR161W) or (YBR036C and YPL057C) + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - annotation: !!omap - ec-code: - - 2.-.-.- - - 2.4.-.- + - "2.-.-.-" + - "2.4.-.-" - pmid: - - 12954640 - - 18296751 - - sbo: SBO:0000176 + - "12954640" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0753 - - name: MIPC synthase + - id: "r_0753" + - name: "MIPC synthase" - metabolites: !!omap - s_0740: 1 - s_0744: -1 @@ -43383,19 +43416,19 @@ - s_1135: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR036C and YBR161W) or (YBR036C and YPL057C) + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - annotation: !!omap - ec-code: - - 2.-.-.- - - 2.4.-.- + - "2.-.-.-" + - "2.4.-.-" - pmid: - - 12954640 - - 18296751 - - sbo: SBO:0000176 + - "12954640" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0754 - - name: MIPC synthase + - id: "r_0754" + - name: "MIPC synthase" - metabolites: !!omap - s_0740: 1 - s_0744: -1 @@ -43404,19 +43437,19 @@ - s_1138: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR036C and YBR161W) or (YBR036C and YPL057C) + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - annotation: !!omap - ec-code: - - 2.-.-.- - - 2.4.-.- + - "2.-.-.-" + - "2.4.-.-" - pmid: - - 12954640 - - 18296751 - - sbo: SBO:0000176 + - "12954640" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0755 - - name: MIPC synthase + - id: "r_0755" + - name: "MIPC synthase" - metabolites: !!omap - s_0740: 1 - s_0744: -1 @@ -43425,19 +43458,19 @@ - s_1141: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR036C and YBR161W) or (YBR036C and YPL057C) + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - annotation: !!omap - ec-code: - - 2.-.-.- - - 2.4.-.- + - "2.-.-.-" + - "2.4.-.-" - pmid: - - 12954640 - - 18296751 - - sbo: SBO:0000176 + - "12954640" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0756 - - name: MIPC synthase + - id: "r_0756" + - name: "MIPC synthase" - metabolites: !!omap - s_0740: 1 - s_0744: -1 @@ -43446,19 +43479,19 @@ - s_1144: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR036C and YBR161W) or (YBR036C and YPL057C) + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - annotation: !!omap - ec-code: - - 2.-.-.- - - 2.4.-.- + - "2.-.-.-" + - "2.4.-.-" - pmid: - - 12954640 - - 18296751 - - sbo: SBO:0000176 + - "12954640" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0757 - - name: myo-inositol 1-phosphatase + - id: "r_0757" + - name: "myo-inositol 1-phosphatase" - metabolites: !!omap - s_0126: -1 - s_0803: -1 @@ -43466,39 +43499,39 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR287W or YHR046C + - gene_reaction_rule: "YDR287W or YHR046C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.25 - - bigg.reaction: MI1PP - - kegg.reaction: R01185 - - metanetx.reaction: MNXR101570 - - pmid: 10844654 - - sbo: SBO:0000176 + - ec-code: "3.1.3.25" + - bigg.reaction: "MI1PP" + - kegg.reaction: "R01185" + - metanetx.reaction: "MNXR101570" + - pmid: "10844654" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0758 - - name: myo-inositol-1-phosphate synthase + - id: "r_0758" + - name: "myo-inositol-1-phosphate synthase" - metabolites: !!omap - s_0126: 1 - s_0568: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL153C + - gene_reaction_rule: "YJL153C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce01130 Biosynthesis of antibiotics + - "sce00562 Inositol phosphate metabolism" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 5.5.1.4 - - bigg.reaction: MI1PS - - metanetx.reaction: MNXR101571 - - sbo: SBO:0000176 + - ec-code: "5.5.1.4" + - bigg.reaction: "MI1PS" + - metanetx.reaction: "MNXR101571" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0759 - - name: N-acetyl-g-glutamyl-phosphate reductase + - id: "r_0759" + - name: "N-acetyl-g-glutamyl-phosphate reductase" - metabolites: !!omap - s_0145: 1 - s_0799: -1 @@ -43508,25 +43541,25 @@ - s_1326: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER069W + - gene_reaction_rule: "YER069W" - subsystem: - - sce00220 Arginine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 1.2.1.38 - - 2.7.2.8 - - bigg.reaction: AGPRim - - kegg.reaction: R03443 - - metanetx.reaction: MNXR95530 - - sbo: SBO:0000176 + - "1.2.1.38" + - "2.7.2.8" + - bigg.reaction: "AGPRim" + - kegg.reaction: "R03443" + - metanetx.reaction: "MNXR95530" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0760 - - name: N-acetylglucosamine-6-phosphate synthase + - id: "r_0760" + - name: "N-acetylglucosamine-6-phosphate synthase" - metabolites: !!omap - s_0373: -1 - s_0412: -1 @@ -43535,19 +43568,19 @@ - s_1190: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFL017C - - subsystem: sce00520 Amino sugar and nucleotide sugar metabolism + - gene_reaction_rule: "YFL017C" + - subsystem: "sce00520 Amino sugar and nucleotide sugar metabolism" - annotation: !!omap - - ec-code: 2.3.1.4 - - bigg.reaction: ACGAM6PS - - kegg.reaction: R02058 - - metanetx.reaction: MNXR95248 - - pmid: 9867860 - - sbo: SBO:0000176 + - ec-code: "2.3.1.4" + - bigg.reaction: "ACGAM6PS" + - kegg.reaction: "R02058" + - metanetx.reaction: "MNXR95248" + - pmid: "9867860" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0761 - - name: N-acteylglutamate synthase + - id: "r_0761" + - name: "N-acteylglutamate synthase" - metabolites: !!omap - s_0376: -1 - s_0532: 1 @@ -43556,25 +43589,25 @@ - s_1192: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL071W or YMR062C + - gene_reaction_rule: "YJL071W or YMR062C" - subsystem: - - sce00220 Arginine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 2.3.1.1 - - 2.3.1.35 - - bigg.reaction: ACGSm - - kegg.reaction: R00259 - - metanetx.reaction: MNXR95259 - - sbo: SBO:0000176 + - "2.3.1.1" + - "2.3.1.35" + - bigg.reaction: "ACGSm" + - kegg.reaction: "R00259" + - metanetx.reaction: "MNXR95259" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0762 - - name: N-formyl-L-kynurenine amidohydrolase + - id: "r_0762" + - name: "N-formyl-L-kynurenine amidohydrolase" - metabolites: !!omap - s_0722: 1 - s_0794: 1 @@ -43583,21 +43616,21 @@ - s_1195: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR428C + - gene_reaction_rule: "YDR428C" - subsystem: - - sce00380 Tryptophan metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism + - "sce00380 Tryptophan metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" - annotation: !!omap - - ec-code: 3.5.1.9 - - bigg.reaction: FKYNH - - kegg.reaction: R01959 - - metanetx.reaction: MNXR99596 - - pmid: 18205391 - - sbo: SBO:0000176 + - ec-code: "3.5.1.9" + - bigg.reaction: "FKYNH" + - kegg.reaction: "R01959" + - metanetx.reaction: "MNXR99596" + - pmid: "18205391" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0763 - - name: N-formyltyrosine oxidase + - id: "r_0763" + - name: "N-formyltyrosine oxidase" - metabolites: !!omap - s_0794: -1 - s_1185: 1 @@ -43606,19 +43639,19 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR402C and YDR403W + - gene_reaction_rule: "YDR402C and YDR403W" - subsystem: - - sce00071 Fatty acid degradation - - sce00380 Tryptophan metabolism + - "sce00071 Fatty acid degradation" + - "sce00380 Tryptophan metabolism" - annotation: !!omap - - ec-code: 1.14.14.- - - metanetx.reaction: MNXR101947 - - pmid: 8706696 - - sbo: SBO:0000176 + - ec-code: "1.14.14.-" + - metanetx.reaction: "MNXR101947" + - pmid: "8706696" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0764 - - name: NAD diphosphatase + - id: "r_0764" + - name: "NAD diphosphatase" - metabolites: !!omap - s_0426: 1 - s_0801: 2 @@ -43627,20 +43660,20 @@ - s_1228: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL067W + - gene_reaction_rule: "YGL067W" - subsystem: - - sce00760 Nicotinate and nicotinamide metabolism - - sce04146 Peroxisome + - "sce00760 Nicotinate and nicotinamide metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 3.6.1.22 - - bigg.reaction: NADDPp - - kegg.reaction: R00103 - - metanetx.reaction: MNXR101861 - - sbo: SBO:0000176 + - ec-code: "3.6.1.22" + - bigg.reaction: "NADDPp" + - kegg.reaction: "R00103" + - metanetx.reaction: "MNXR101861" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0765 - - name: NAD kinase + - id: "r_0765" + - name: "NAD kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -43649,21 +43682,21 @@ - s_1207: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YEL041W or YJR049C - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YEL041W or YJR049C" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - - 2.7.1.23 - - 2.7.1.86 - - bigg.reaction: NADK - - kegg.reaction: R00104 - - metanetx.reaction: MNXR101882 - - pmid: 15978040 - - sbo: SBO:0000176 + - "2.7.1.23" + - "2.7.1.86" + - bigg.reaction: "NADK" + - kegg.reaction: "R00104" + - metanetx.reaction: "MNXR101882" + - pmid: "15978040" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0766 - - name: NAD kinase + - id: "r_0766" + - name: "NAD kinase" - metabolites: !!omap - s_0397: 1 - s_0437: -1 @@ -43672,21 +43705,21 @@ - s_1210: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YEL041W or YJR049C or YPL188W - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YEL041W or YJR049C or YPL188W" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - - 2.7.1.23 - - 2.7.1.86 - - bigg.reaction: NADKm - - kegg.reaction: R00104 - - metanetx.reaction: MNXR101882 - - pmid: 15978040 - - sbo: SBO:0000176 + - "2.7.1.23" + - "2.7.1.86" + - bigg.reaction: "NADKm" + - kegg.reaction: "R00104" + - metanetx.reaction: "MNXR101882" + - pmid: "15978040" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0767 - - name: NAD nucleosidase nuclear + - id: "r_0767" + - name: "NAD nucleosidase nuclear" - metabolites: !!omap - s_0402: 1 - s_0800: 1 @@ -43695,20 +43728,20 @@ - s_1217: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL042C or YDR191W or YOL068C or YOR025W or YPL015C + - gene_reaction_rule: "YDL042C or YDR191W or YOL068C or YOR025W or YPL015C" - subsystem: - - sce00760 Nicotinate and nicotinamide metabolism - - sce04213 Longevity regulating pathway - multiple species + - "sce00760 Nicotinate and nicotinamide metabolism" + - "sce04213 Longevity regulating pathway - multiple species" - annotation: !!omap - - ec-code: 3.5.1.- - - kegg.reaction: R00102 - - metanetx.reaction: MNXR101888 - - pmid: 17482543 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - kegg.reaction: "R00102" + - metanetx.reaction: "MNXR101888" + - pmid: "17482543" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0768 - - name: NAD synthase + - id: "r_0768" + - name: "NAD synthase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -43721,19 +43754,19 @@ - s_1198: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR074W - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YHR074W" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - - ec-code: 6.3.5.1 - - bigg.reaction: NADS2 - - kegg.reaction: R00257 - - metanetx.reaction: MNXR97678 - - pmid: 12771147 - - sbo: SBO:0000176 + - ec-code: "6.3.5.1" + - bigg.reaction: "NADS2" + - kegg.reaction: "R00257" + - metanetx.reaction: "MNXR97678" + - pmid: "12771147" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0769 - - name: NAD synthase + - id: "r_0769" + - name: "NAD synthase" - metabolites: !!omap - s_0425: 1 - s_0438: -1 @@ -43746,18 +43779,18 @@ - s_1201: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR074W - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YHR074W" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - - ec-code: 6.3.5.1 - - kegg.reaction: R00257 - - metanetx.reaction: MNXR97678 - - pmid: 12771147 - - sbo: SBO:0000176 + - ec-code: "6.3.5.1" + - kegg.reaction: "R00257" + - metanetx.reaction: "MNXR97678" + - pmid: "12771147" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0770 - - name: NADH dehydrogenase, cytosolic/mitochondrial + - id: "r_0770" + - name: "NADH dehydrogenase, cytosolic/mitochondrial" - metabolites: !!omap - s_0794: -1 - s_1198: 1 @@ -43766,17 +43799,17 @@ - s_1537: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL085W or YMR145C + - gene_reaction_rule: "YDL085W or YMR145C" - annotation: !!omap - - ec-code: 1.6.5.9 - - bigg.reaction: NADH2_u6cm - - metanetx.reaction: MNXR101868 - - pmid: 9733747 - - sbo: SBO:0000176 + - ec-code: "1.6.5.9" + - bigg.reaction: "NADH2_u6cm" + - metanetx.reaction: "MNXR101868" + - pmid: "9733747" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0771 - - name: NADH kinase + - id: "r_0771" + - name: "NADH kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -43785,20 +43818,20 @@ - s_1212: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YEL041W or YJR049C - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YEL041W or YJR049C" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - - 2.7.1.23 - - 2.7.1.86 - - kegg.reaction: R00105 - - metanetx.reaction: MNXR106390 - - pmid: 15978040 - - sbo: SBO:0000176 + - "2.7.1.23" + - "2.7.1.86" + - kegg.reaction: "R00105" + - metanetx.reaction: "MNXR106390" + - pmid: "15978040" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0772 - - name: NADH kinase mitochondrial + - id: "r_0772" + - name: "NADH kinase mitochondrial" - metabolites: !!omap - s_0397: 1 - s_0437: -1 @@ -43807,20 +43840,20 @@ - s_1214: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YEL041W or YJR049C or YPL188W - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YEL041W or YJR049C or YPL188W" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - - 2.7.1.23 - - 2.7.1.86 - - kegg.reaction: R00105 - - metanetx.reaction: MNXR106390 - - pmid: 15978040 - - sbo: SBO:0000176 + - "2.7.1.23" + - "2.7.1.86" + - kegg.reaction: "R00105" + - metanetx.reaction: "MNXR106390" + - pmid: "15978040" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0773 - - name: NADH:ubiquinone oxidoreductase + - id: "r_0773" + - name: "NADH:ubiquinone oxidoreductase" - metabolites: !!omap - s_0799: -1 - s_1200: 1 @@ -43829,16 +43862,16 @@ - s_1537: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML120C + - gene_reaction_rule: "YML120C" - annotation: !!omap - - ec-code: 1.6.5.9 - - bigg.reaction: NADH2_u6m - - metanetx.reaction: MNXR101869 - - sbo: SBO:0000176 + - ec-code: "1.6.5.9" + - bigg.reaction: "NADH2_u6m" + - metanetx.reaction: "MNXR101869" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0774 - - name: NAPRtase + - id: "r_0774" + - name: "NAPRtase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -43850,18 +43883,18 @@ - s_1386: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR209C - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YOR209C" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - - ec-code: 6.3.4.21 - - bigg.reaction: NAPRT - - kegg.reaction: R01724 - - metanetx.reaction: MNXR101909 - - sbo: SBO:0000176 + - ec-code: "6.3.4.21" + - bigg.reaction: "NAPRT" + - kegg.reaction: "R01724" + - metanetx.reaction: "MNXR101909" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0775 - - name: NAPRtase + - id: "r_0775" + - name: "NAPRtase" - metabolites: !!omap - s_0397: 1 - s_0437: -1 @@ -43873,18 +43906,18 @@ - s_1387: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR209C - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YOR209C" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - - ec-code: 6.3.4.21 - - bigg.reaction: NAPRTm - - kegg.reaction: R01724 - - metanetx.reaction: MNXR101909 - - sbo: SBO:0000176 + - ec-code: "6.3.4.21" + - bigg.reaction: "NAPRTm" + - kegg.reaction: "R01724" + - metanetx.reaction: "MNXR101909" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0781 - - name: nicotinamidase + - id: "r_0781" + - name: "nicotinamidase" - metabolites: !!omap - s_0419: 1 - s_0803: -1 @@ -43892,20 +43925,20 @@ - s_1219: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL037C + - gene_reaction_rule: "YGL037C" - subsystem: - - sce00760 Nicotinate and nicotinamide metabolism - - sce04213 Longevity regulating pathway - multiple species + - "sce00760 Nicotinate and nicotinamide metabolism" + - "sce04213 Longevity regulating pathway - multiple species" - annotation: !!omap - - ec-code: 3.5.1.19 - - bigg.reaction: NNAM - - kegg.reaction: R01268 - - metanetx.reaction: MNXR101977 - - sbo: SBO:0000176 + - ec-code: "3.5.1.19" + - bigg.reaction: "NNAM" + - kegg.reaction: "R01268" + - metanetx.reaction: "MNXR101977" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0782 - - name: nicotinamide N-methyltransferase + - id: "r_0782" + - name: "nicotinamide N-methyltransferase" - metabolites: !!omap - s_0087: 1 - s_1216: -1 @@ -43913,18 +43946,18 @@ - s_1416: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR285W + - gene_reaction_rule: "YLR285W" - annotation: !!omap - - ec-code: 2.1.1.- - - bigg.reaction: NNMT - - kegg.reaction: R01269 - - metanetx.reaction: MNXR101981 - - pmid: 12736687 - - sbo: SBO:0000176 + - ec-code: "2.1.1.-" + - bigg.reaction: "NNMT" + - kegg.reaction: "R01269" + - metanetx.reaction: "MNXR101981" + - pmid: "12736687" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0783 - - name: nicotinamide-nucleotide adenylyltransferase + - id: "r_0783" + - name: "nicotinamide-nucleotide adenylyltransferase" - metabolites: !!omap - s_0434: -1 - s_0633: 1 @@ -43933,21 +43966,21 @@ - s_1224: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL047C or YLR328W - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YCL047C or YLR328W" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - - 2.7.7.1 - - 2.7.7.18 - - bigg.reaction: NMNAT - - kegg.reaction: R00137 - - metanetx.reaction: MNXR95841 - - pmid: 15078171 - - sbo: SBO:0000176 + - "2.7.7.1" + - "2.7.7.18" + - bigg.reaction: "NMNAT" + - kegg.reaction: "R00137" + - metanetx.reaction: "MNXR95841" + - pmid: "15078171" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0784 - - name: nicotinamide-nucleotide adenylyltransferase + - id: "r_0784" + - name: "nicotinamide-nucleotide adenylyltransferase" - metabolites: !!omap - s_0438: -1 - s_0637: 1 @@ -43956,21 +43989,21 @@ - s_1227: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR010W or YLR328W - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YGR010W or YLR328W" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - - 2.7.7.1 - - 2.7.7.18 - - bigg.reaction: NMNATn - - kegg.reaction: R00137 - - metanetx.reaction: MNXR95841 - - pmid: 15078171 - - sbo: SBO:0000176 + - "2.7.7.1" + - "2.7.7.18" + - bigg.reaction: "NMNATn" + - kegg.reaction: "R00137" + - metanetx.reaction: "MNXR95841" + - pmid: "15078171" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0785 - - name: nicotinate-nucleotide adenylyltransferase + - id: "r_0785" + - name: "nicotinate-nucleotide adenylyltransferase" - metabolites: !!omap - s_0434: -1 - s_0591: 1 @@ -43979,21 +44012,21 @@ - s_1222: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR010W or YLR328W - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YGR010W or YLR328W" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - - 2.7.7.1 - - 2.7.7.18 - - bigg.reaction: NNATr - - kegg.reaction: R03005 - - metanetx.reaction: MNXR101978 - - pmid: 15078171 - - sbo: SBO:0000176 + - "2.7.7.1" + - "2.7.7.18" + - bigg.reaction: "NNATr" + - kegg.reaction: "R03005" + - metanetx.reaction: "MNXR101978" + - pmid: "15078171" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0786 - - name: nicotinate-nucleotide diphosphorylase (carboxylating) + - id: "r_0786" + - name: "nicotinate-nucleotide diphosphorylase (carboxylating)" - metabolites: !!omap - s_0456: 1 - s_0633: 1 @@ -44003,18 +44036,18 @@ - s_1403: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR047C - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YFR047C" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - - ec-code: 2.4.2.19 - - bigg.reaction: NNDPR - - kegg.reaction: R03348 - - metanetx.reaction: MNXR101980 - - sbo: SBO:0000176 + - ec-code: "2.4.2.19" + - bigg.reaction: "NNDPR" + - kegg.reaction: "R03348" + - metanetx.reaction: "MNXR101980" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0787 - - name: nicotinate-nucleotide diphosphorylase (carboxylating) + - id: "r_0787" + - name: "nicotinate-nucleotide diphosphorylase (carboxylating)" - metabolites: !!omap - s_0460: 1 - s_0636: 1 @@ -44024,18 +44057,18 @@ - s_1404: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR047C - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YFR047C" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - - ec-code: 2.4.2.19 - - bigg.reaction: NNDPRm - - kegg.reaction: R03348 - - metanetx.reaction: MNXR101980 - - sbo: SBO:0000176 + - ec-code: "2.4.2.19" + - bigg.reaction: "NNDPRm" + - kegg.reaction: "R03348" + - metanetx.reaction: "MNXR101980" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0788 - - name: nucleoside diphosphatase + - id: "r_0788" + - name: "nucleoside diphosphatase" - metabolites: !!omap - s_0394: -1 - s_0423: 1 @@ -44044,21 +44077,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER005W + - gene_reaction_rule: "YER005W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.6.1.5 - - bigg.reaction: NDP1 - - kegg.reaction: R00122 - - metanetx.reaction: MNXR96129 - - pmid: 10409709 - - sbo: SBO:0000176 + - ec-code: "3.6.1.5" + - bigg.reaction: "NDP1" + - kegg.reaction: "R00122" + - metanetx.reaction: "MNXR96129" + - pmid: "10409709" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0789 - - name: nucleoside diphosphatase + - id: "r_0789" + - name: "nucleoside diphosphatase" - metabolites: !!omap - s_0739: -1 - s_0782: 1 @@ -44067,21 +44100,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER005W + - gene_reaction_rule: "YER005W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.6.1.5 - - bigg.reaction: NDP3 - - kegg.reaction: R00328 - - metanetx.reaction: MNXR101928 - - pmid: 10409709 - - sbo: SBO:0000176 + - ec-code: "3.6.1.5" + - bigg.reaction: "NDP3" + - kegg.reaction: "R00328" + - metanetx.reaction: "MNXR101928" + - pmid: "10409709" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0790 - - name: nucleoside diphosphatase + - id: "r_0790" + - name: "nucleoside diphosphatase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -44090,21 +44123,21 @@ - s_1545: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER005W + - gene_reaction_rule: "YER005W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.6.1.5 - - bigg.reaction: NDP7 - - kegg.reaction: R00155 - - metanetx.reaction: MNXR101931 - - pmid: 10409709 - - sbo: SBO:0000176 + - ec-code: "3.6.1.5" + - bigg.reaction: "NDP7" + - kegg.reaction: "R00155" + - metanetx.reaction: "MNXR101931" + - pmid: "10409709" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0791 - - name: nucleoside diphosphatase + - id: "r_0791" + - name: "nucleoside diphosphatase" - metabolites: !!omap - s_0797: 1 - s_0806: -1 @@ -44113,17 +44146,17 @@ - s_1546: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YEL042W + - gene_reaction_rule: "YEL042W" - annotation: !!omap - - ec-code: 3.6.1.42 - - bigg.reaction: NDP7g - - kegg.reaction: R00155 - - metanetx.reaction: MNXR101931 - - sbo: SBO:0000176 + - ec-code: "3.6.1.42" + - bigg.reaction: "NDP7g" + - kegg.reaction: "R00155" + - metanetx.reaction: "MNXR101931" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0792 - - name: nucleoside diphosphatase + - id: "r_0792" + - name: "nucleoside diphosphatase" - metabolites: !!omap - s_0467: -1 - s_0526: 1 @@ -44132,20 +44165,20 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER005W + - gene_reaction_rule: "YER005W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.6.1.5 - - bigg.reaction: CDPPH - - kegg.reaction: R00514 - - metanetx.reaction: MNXR96559 - - sbo: SBO:0000176 + - ec-code: "3.6.1.5" + - bigg.reaction: "CDPPH" + - kegg.reaction: "R00514" + - metanetx.reaction: "MNXR96559" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0793 - - name: nucleoside diphosphatase + - id: "r_0793" + - name: "nucleoside diphosphatase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -44154,20 +44187,20 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER005W + - gene_reaction_rule: "YER005W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.6.1.5 - - bigg.reaction: IDPA - - kegg.reaction: R00961 - - metanetx.reaction: MNXR100807 - - sbo: SBO:0000176 + - ec-code: "3.6.1.5" + - bigg.reaction: "IDPA" + - kegg.reaction: "R00961" + - metanetx.reaction: "MNXR100807" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0795 - - name: nucleoside diphosphate kinase + - id: "r_0795" + - name: "nucleoside diphosphate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -44175,22 +44208,22 @@ - s_0539: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL067W + - gene_reaction_rule: "YKL067W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.6 - - bigg.reaction: NDPK3 - - kegg.reaction: R00570 - - metanetx.reaction: MNXR101936 - - sbo: SBO:0000176 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK3" + - kegg.reaction: "R00570" + - metanetx.reaction: "MNXR101936" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0796 - - name: nucleoside diphosphate kinase + - id: "r_0796" + - name: "nucleoside diphosphate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -44198,22 +44231,22 @@ - s_0586: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL067W + - gene_reaction_rule: "YKL067W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.6 - - bigg.reaction: NDPK8 - - kegg.reaction: R01137 - - metanetx.reaction: MNXR101940 - - sbo: SBO:0000176 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK8" + - kegg.reaction: "R01137" + - metanetx.reaction: "MNXR101940" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0797 - - name: nucleoside diphosphate kinase + - id: "r_0797" + - name: "nucleoside diphosphate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -44221,22 +44254,22 @@ - s_0590: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL067W + - gene_reaction_rule: "YKL067W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.6 - - bigg.reaction: NDPK7 - - kegg.reaction: R02326 - - metanetx.reaction: MNXR101939 - - sbo: SBO:0000176 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK7" + - kegg.reaction: "R02326" + - metanetx.reaction: "MNXR101939" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0798 - - name: nucleoside diphosphate kinase + - id: "r_0798" + - name: "nucleoside diphosphate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -44244,22 +44277,22 @@ - s_0617: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL067W + - gene_reaction_rule: "YKL067W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.6 - - bigg.reaction: NDPK5 - - kegg.reaction: R01857 - - metanetx.reaction: MNXR96118 - - sbo: SBO:0000176 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK5" + - kegg.reaction: "R01857" + - metanetx.reaction: "MNXR96118" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0799 - - name: nucleoside diphosphate kinase + - id: "r_0799" + - name: "nucleoside diphosphate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -44267,22 +44300,22 @@ - s_0650: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL067W + - gene_reaction_rule: "YKL067W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.6 - - bigg.reaction: NDPK4 - - kegg.reaction: R02093 - - metanetx.reaction: MNXR101937 - - sbo: SBO:0000176 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK4" + - kegg.reaction: "R02093" + - metanetx.reaction: "MNXR101937" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0800 - - name: nucleoside diphosphate kinase + - id: "r_0800" + - name: "nucleoside diphosphate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -44290,22 +44323,22 @@ - s_0785: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL067W + - gene_reaction_rule: "YKL067W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.6 - - bigg.reaction: NDPK1 - - kegg.reaction: R00330 - - metanetx.reaction: MNXR96119 - - sbo: SBO:0000176 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK1" + - kegg.reaction: "R00330" + - metanetx.reaction: "MNXR96119" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0801 - - name: nucleoside diphosphate kinase + - id: "r_0801" + - name: "nucleoside diphosphate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -44313,22 +44346,22 @@ - s_0950: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL067W + - gene_reaction_rule: "YKL067W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.6 - - bigg.reaction: NDPK9 - - kegg.reaction: R00722 - - metanetx.reaction: MNXR101941 - - sbo: SBO:0000176 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK9" + - kegg.reaction: "R00722" + - metanetx.reaction: "MNXR101941" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0802 - - name: nucleoside diphosphate kinase + - id: "r_0802" + - name: "nucleoside diphosphate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -44336,22 +44369,22 @@ - s_0639: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL067W + - gene_reaction_rule: "YKL067W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.6 - - bigg.reaction: NDPK10 - - kegg.reaction: R03530 - - metanetx.reaction: MNXR101934 - - sbo: SBO:0000176 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK10" + - kegg.reaction: "R03530" + - metanetx.reaction: "MNXR101934" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0803 - - name: nucleoside diphosphate kinase + - id: "r_0803" + - name: "nucleoside diphosphate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -44359,22 +44392,22 @@ - s_0656: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL067W + - gene_reaction_rule: "YKL067W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.6 - - bigg.reaction: NDPK6 - - kegg.reaction: R02331 - - metanetx.reaction: MNXR101938 - - sbo: SBO:0000176 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK6" + - kegg.reaction: "R02331" + - metanetx.reaction: "MNXR101938" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0804 - - name: nucleoside triphosphatase + - id: "r_0804" + - name: "nucleoside triphosphatase" - metabolites: !!omap - s_0739: 1 - s_0785: -1 @@ -44383,21 +44416,21 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL035W or YLL001W or YER005W + - gene_reaction_rule: "YAL035W or YLL001W or YER005W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.6.1.5 - - bigg.reaction: NTP3 - - kegg.reaction: R00335 - - metanetx.reaction: MNXR102043 - - pmid: 10409709 - - sbo: SBO:0000176 + - ec-code: "3.6.1.5" + - bigg.reaction: "NTP3" + - kegg.reaction: "R00335" + - metanetx.reaction: "MNXR102043" + - pmid: "10409709" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0805 - - name: nucleoside triphosphatase + - id: "r_0805" + - name: "nucleoside triphosphatase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -44406,21 +44439,21 @@ - s_1559: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER005W + - gene_reaction_rule: "YER005W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.6.1.5 - - bigg.reaction: NTP7 - - kegg.reaction: R00159 - - metanetx.reaction: MNXR101933 - - pmid: 10409709 - - sbo: SBO:0000176 + - ec-code: "3.6.1.5" + - bigg.reaction: "NTP7" + - kegg.reaction: "R00159" + - metanetx.reaction: "MNXR101933" + - pmid: "10409709" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0806 - - name: nucleoside triphosphatase + - id: "r_0806" + - name: "nucleoside triphosphatase" - metabolites: !!omap - s_0467: 1 - s_0539: -1 @@ -44429,20 +44462,20 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER005W + - gene_reaction_rule: "YER005W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.6.1.5 - - bigg.reaction: NTP5 - - kegg.reaction: R00569 - - metanetx.reaction: MNXR102045 - - sbo: SBO:0000176 + - ec-code: "3.6.1.5" + - bigg.reaction: "NTP5" + - kegg.reaction: "R00569" + - metanetx.reaction: "MNXR102045" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0807 - - name: nucleoside triphosphatase + - id: "r_0807" + - name: "nucleoside triphosphatase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -44451,20 +44484,20 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER005W + - gene_reaction_rule: "YER005W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 3.6.1.5 - - bigg.reaction: NTP10 - - kegg.reaction: R00719 - - metanetx.reaction: MNXR100892 - - sbo: SBO:0000176 + - ec-code: "3.6.1.5" + - bigg.reaction: "NTP10" + - kegg.reaction: "R00719" + - metanetx.reaction: "MNXR100892" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0810 - - name: nucleoside-diphosphatase (GDP), Golgi + - id: "r_0810" + - name: "nucleoside-diphosphatase (GDP), Golgi" - metabolites: !!omap - s_0740: -1 - s_0783: 1 @@ -44473,17 +44506,17 @@ - s_1325: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YEL042W + - gene_reaction_rule: "YEL042W" - annotation: !!omap - - ec-code: 3.6.1.42 - - bigg.reaction: NDP3g - - kegg.reaction: R00328 - - metanetx.reaction: MNXR101928 - - sbo: SBO:0000176 + - ec-code: "3.6.1.42" + - bigg.reaction: "NDP3g" + - kegg.reaction: "R00328" + - metanetx.reaction: "MNXR101928" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0811 - - name: nucleoside-diphosphate kinase (ATP:UDP) + - id: "r_0811" + - name: "nucleoside-diphosphate kinase (ATP:UDP)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -44491,22 +44524,22 @@ - s_1559: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL067W + - gene_reaction_rule: "YKL067W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.6 - - bigg.reaction: NDPK2 - - kegg.reaction: R00156 - - metanetx.reaction: MNXR101935 - - sbo: SBO:0000176 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK2" + - kegg.reaction: "R00156" + - metanetx.reaction: "MNXR101935" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0812 - - name: O-acetylhomoserine (thiol)-lyase + - id: "r_0812" + - name: "O-acetylhomoserine (thiol)-lyase" - metabolites: !!omap - s_0362: 1 - s_0794: 1 @@ -44515,27 +44548,27 @@ - s_1233: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR303W + - gene_reaction_rule: "YLR303W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00920 Sulfur metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00920 Sulfur metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 2.5.1.47 - - 2.5.1.49 - - bigg.reaction: AHSERL - - kegg.reaction: R00651 - - metanetx.reaction: MNXR95634 - - pmid: 15042590 - - sbo: SBO:0000176 + - "2.5.1.47" + - "2.5.1.49" + - bigg.reaction: "AHSERL" + - kegg.reaction: "R00651" + - metanetx.reaction: "MNXR95634" + - pmid: "15042590" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0813 - - name: O-acetylhomoserine (thiol)-lyase + - id: "r_0813" + - name: "O-acetylhomoserine (thiol)-lyase" - metabolites: !!omap - s_0362: 1 - s_0841: -1 @@ -44543,27 +44576,27 @@ - s_1233: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR303W + - gene_reaction_rule: "YLR303W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00920 Sulfur metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00920 Sulfur metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 2.5.1.47 - - 2.5.1.49 - - bigg.reaction: AHSERL2 - - kegg.reaction: R01287 - - metanetx.reaction: MNXR95631 - - pmid: 15042590 - - sbo: SBO:0000176 + - "2.5.1.47" + - "2.5.1.49" + - bigg.reaction: "AHSERL2" + - kegg.reaction: "R01287" + - metanetx.reaction: "MNXR95631" + - pmid: "15042590" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0815 - - name: O-succinylhomoserine lyase (L-cysteine) + - id: "r_0815" + - name: "O-succinylhomoserine lyase (L-cysteine)" - metabolites: !!omap - s_0794: 1 - s_0980: 1 @@ -44572,24 +44605,24 @@ - s_1458: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLL058W or YML082W or YAL012W + - gene_reaction_rule: "YLL058W or YML082W or YAL012W" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00270 Cysteine and methionine metabolism - - sce00450 Selenocompound metabolism - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00450 Selenocompound metabolism" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.4.1.1 - - bigg.reaction: SHSL1 - - kegg.reaction: R03260 - - metanetx.reaction: MNXR104380 - - pmid: 8511969 - - sbo: SBO:0000176 + - ec-code: "4.4.1.1" + - bigg.reaction: "SHSL1" + - kegg.reaction: "R03260" + - metanetx.reaction: "MNXR104380" + - pmid: "8511969" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0816 - - name: ornithine carbamoyltransferase + - id: "r_0816" + - name: "ornithine carbamoyltransferase" - metabolites: !!omap - s_0455: -1 - s_0794: 1 @@ -44598,22 +44631,22 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL088W + - gene_reaction_rule: "YJL088W" - subsystem: - - sce00220 Arginine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.1.3.3 - - bigg.reaction: OCBT - - kegg.reaction: R01398 - - metanetx.reaction: MNXR102137 - - sbo: SBO:0000176 + - ec-code: "2.1.3.3" + - bigg.reaction: "OCBT" + - kegg.reaction: "R01398" + - metanetx.reaction: "MNXR102137" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0817 - - name: ornithine decarboxylase + - id: "r_0817" + - name: "ornithine decarboxylase" - metabolites: !!omap - s_0456: 1 - s_0794: -1 @@ -44621,22 +44654,22 @@ - s_1389: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL184W + - gene_reaction_rule: "YKL184W" - subsystem: - - sce00330 Arginine and proline metabolism - - sce00480 Glutathione metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00330 Arginine and proline metabolism" + - "sce00480 Glutathione metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 4.1.1.17 - - bigg.reaction: ORNDC - - kegg.reaction: R00670 - - metanetx.reaction: MNXR102209 - - sbo: SBO:0000176 + - ec-code: "4.1.1.17" + - bigg.reaction: "ORNDC" + - kegg.reaction: "R00670" + - metanetx.reaction: "MNXR102209" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0818 - - name: ornithine transacetylase + - id: "r_0818" + - name: "ornithine transacetylase" - metabolites: !!omap - s_0993: -1 - s_1182: -1 @@ -44644,25 +44677,25 @@ - s_1268: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR062C + - gene_reaction_rule: "YMR062C" - subsystem: - - sce00220 Arginine biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 2.3.1.1 - - 2.3.1.35 - - bigg.reaction: ORNTACim - - kegg.reaction: R02282 - - metanetx.reaction: MNXR102221 - - sbo: SBO:0000176 + - "2.3.1.1" + - "2.3.1.35" + - bigg.reaction: "ORNTACim" + - kegg.reaction: "R02282" + - metanetx.reaction: "MNXR102221" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0819 - - name: ornithine transaminase + - id: "r_0819" + - name: "ornithine transaminase" - metabolites: !!omap - s_0180: -1 - s_0991: 1 @@ -44670,21 +44703,21 @@ - s_1266: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR438W + - gene_reaction_rule: "YLR438W" - subsystem: - - sce00330 Arginine and proline metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00330 Arginine and proline metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.6.1.13 - - bigg.reaction: ORNTA - - kegg.reaction: R00667 - - metanetx.reaction: MNXR102220 - - sbo: SBO:0000176 + - ec-code: "2.6.1.13" + - bigg.reaction: "ORNTA" + - kegg.reaction: "R00667" + - metanetx.reaction: "MNXR102220" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0820 - - name: orotate phosphoribosyltransferase + - id: "r_0820" + - name: "orotate phosphoribosyltransferase" - metabolites: !!omap - s_0633: -1 - s_1269: 1 @@ -44692,18 +44725,18 @@ - s_1386: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YML106W or YMR271C - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YML106W or YMR271C" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 2.4.2.10 - - bigg.reaction: ORPT - - kegg.reaction: R01870 - - metanetx.reaction: MNXR102231 - - sbo: SBO:0000176 + - ec-code: "2.4.2.10" + - bigg.reaction: "ORPT" + - kegg.reaction: "R01870" + - metanetx.reaction: "MNXR102231" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0821 - - name: orotidine-5'-phosphate decarboxylase + - id: "r_0821" + - name: "orotidine-5'-phosphate decarboxylase" - metabolites: !!omap - s_0456: 1 - s_0794: -1 @@ -44711,18 +44744,18 @@ - s_1545: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YEL021W - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YEL021W" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 4.1.1.23 - - bigg.reaction: OMPDC - - kegg.reaction: R00965 - - metanetx.reaction: MNXR102190 - - sbo: SBO:0000176 + - ec-code: "4.1.1.23" + - bigg.reaction: "OMPDC" + - kegg.reaction: "R00965" + - metanetx.reaction: "MNXR102190" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0831 - - name: oxoglutarate dehydrogenase (dihydrolipoamide S-succinyltransferase) + - id: "r_0831" + - name: "oxoglutarate dehydrogenase (dihydrolipoamide S-succinyltransferase)" - metabolites: !!omap - s_0532: -1 - s_0627: 1 @@ -44730,34 +44763,34 @@ - s_1464: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR148C and YFL018C and YIL125W + - gene_reaction_rule: "YDR148C and YFL018C and YIL125W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00020 Citrate cycle (TCA cycle) - - sce00260 Glycine, serine and threonine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00310 Lysine degradation - - sce00380 Tryptophan metabolism - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00310 Lysine degradation" + - "sce00380 Tryptophan metabolism" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.2.4.2 - - 1.8.1.4 - - 2.3.1.61 - - bigg.reaction: AKGDbm - - kegg.reaction: R02570 - - metanetx.reaction: MNXR95656 - - pmid: 2178788 - - sbo: SBO:0000176 + - "1.2.4.2" + - "1.8.1.4" + - "2.3.1.61" + - bigg.reaction: "AKGDbm" + - kegg.reaction: "R02570" + - metanetx.reaction: "MNXR95656" + - pmid: "2178788" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0832 - - name: oxoglutarate dehydrogenase (lipoamide) + - id: "r_0832" + - name: "oxoglutarate dehydrogenase (lipoamide)" - metabolites: !!omap - s_0182: -1 - s_0460: 1 @@ -44766,34 +44799,34 @@ - s_1411: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR148C and YFL018C and YIL125W + - gene_reaction_rule: "YDR148C and YFL018C and YIL125W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00020 Citrate cycle (TCA cycle) - - sce00260 Glycine, serine and threonine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00310 Lysine degradation - - sce00380 Tryptophan metabolism - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00310 Lysine degradation" + - "sce00380 Tryptophan metabolism" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.2.4.2 - - 1.8.1.4 - - 2.3.1.61 - - bigg.reaction: AKGDam - - kegg.reaction: R01700 - - metanetx.reaction: MNXR95657 - - pmid: 10224250 - - sbo: SBO:0000176 + - "1.2.4.2" + - "1.8.1.4" + - "2.3.1.61" + - bigg.reaction: "AKGDam" + - kegg.reaction: "R01700" + - metanetx.reaction: "MNXR95657" + - pmid: "10224250" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0841 - - name: pantetheine-phosphate adenylyltransferase + - id: "r_0841" + - name: "pantetheine-phosphate adenylyltransferase" - metabolites: !!omap - s_0197: 1 - s_0434: -1 @@ -44802,19 +44835,19 @@ - s_1307: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR277C - - subsystem: sce00770 Pantothenate and CoA biosynthesis + - gene_reaction_rule: "YGR277C" + - subsystem: "sce00770 Pantothenate and CoA biosynthesis" - annotation: !!omap - - ec-code: 2.7.7.3 - - bigg.reaction: PTPATi - - kegg.reaction: R03035 - - metanetx.reaction: MNXR95892 - - pmid: 19266201 - - sbo: SBO:0000176 + - ec-code: "2.7.7.3" + - bigg.reaction: "PTPATi" + - kegg.reaction: "R03035" + - metanetx.reaction: "MNXR95892" + - pmid: "19266201" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0842 - - name: pantothenate kinase + - id: "r_0842" + - name: "pantothenate kinase" - metabolites: !!omap - s_0017: 1 - s_0031: -1 @@ -44823,18 +44856,18 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR531W - - subsystem: sce00770 Pantothenate and CoA biosynthesis + - gene_reaction_rule: "YDR531W" + - subsystem: "sce00770 Pantothenate and CoA biosynthesis" - annotation: !!omap - - ec-code: 2.7.1.33 - - bigg.reaction: PNTK - - kegg.reaction: R03018 - - metanetx.reaction: MNXR103050 - - sbo: SBO:0000176 + - ec-code: "2.7.1.33" + - bigg.reaction: "PNTK" + - kegg.reaction: "R03018" + - metanetx.reaction: "MNXR103050" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0843 - - name: pantothenate synthase + - id: "r_0843" + - name: "pantothenate synthase" - metabolites: !!omap - s_0030: -1 - s_0031: 1 @@ -44845,21 +44878,21 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL145C + - gene_reaction_rule: "YIL145C" - subsystem: - - sce00410 beta-Alanine metabolism - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00410 beta-Alanine metabolism" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 6.3.2.1 - - bigg.reaction: PANTS - - kegg.reaction: R02473 - - metanetx.reaction: MNXR102345 - - sbo: SBO:0000176 + - ec-code: "6.3.2.1" + - bigg.reaction: "PANTS" + - kegg.reaction: "R02473" + - metanetx.reaction: "MNXR102345" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0844 - - name: peroxisomal acyl-CoA thioesterase + - id: "r_0844" + - name: "peroxisomal acyl-CoA thioesterase" - metabolites: !!omap - s_0534: 1 - s_0600: 1 @@ -44868,20 +44901,20 @@ - s_0809: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR019C + - gene_reaction_rule: "YJR019C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.2.2 - - metanetx.reaction: MNXR122908 - - pmid: 10092594 - - sbo: SBO:0000176 + - ec-code: "3.1.2.2" + - metanetx.reaction: "MNXR122908" + - pmid: "10092594" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0845 - - name: peroxisomal acyl-CoA thioesterase + - id: "r_0845" + - name: "peroxisomal acyl-CoA thioesterase" - metabolites: !!omap - s_0534: 1 - s_0801: 1 @@ -44890,21 +44923,21 @@ - s_1076: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR019C + - gene_reaction_rule: "YJR019C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.2.2 - - bigg.reaction: PTE11x - - metanetx.reaction: MNXR122907 - - pmid: 10092594 - - sbo: SBO:0000176 + - ec-code: "3.1.2.2" + - bigg.reaction: "PTE11x" + - metanetx.reaction: "MNXR122907" + - pmid: "10092594" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0847 - - name: peroxisomal acyl-CoA thioesterase + - id: "r_0847" + - name: "peroxisomal acyl-CoA thioesterase" - metabolites: !!omap - s_0534: 1 - s_0801: 1 @@ -44913,22 +44946,22 @@ - s_1305: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR019C + - gene_reaction_rule: "YJR019C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.2.2 - - bigg.reaction: PTE2x - - kegg.reaction: R01274 - - metanetx.reaction: MNXR99131 - - pmid: 10092594 - - sbo: SBO:0000176 + - ec-code: "3.1.2.2" + - bigg.reaction: "PTE2x" + - kegg.reaction: "R01274" + - metanetx.reaction: "MNXR99131" + - pmid: "10092594" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0848 - - name: peroxisomal acyl-CoA thioesterase + - id: "r_0848" + - name: "peroxisomal acyl-CoA thioesterase" - metabolites: !!omap - s_0534: 1 - s_0801: 1 @@ -44937,21 +44970,21 @@ - s_1179: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR019C + - gene_reaction_rule: "YJR019C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.2.2 - - bigg.reaction: PTE7x - - metanetx.reaction: MNXR122906 - - pmid: 10092594 - - sbo: SBO:0000176 + - ec-code: "3.1.2.2" + - bigg.reaction: "PTE7x" + - metanetx.reaction: "MNXR122906" + - pmid: "10092594" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0849 - - name: peroxisomal acyl-CoA thioesterase + - id: "r_0849" + - name: "peroxisomal acyl-CoA thioesterase" - metabolites: !!omap - s_0534: 1 - s_0801: 1 @@ -44960,22 +44993,22 @@ - s_1457: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR019C + - gene_reaction_rule: "YJR019C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.2.2 - - bigg.reaction: PTE8x - - kegg.reaction: R08174 - - metanetx.reaction: MNXR99133 - - pmid: 10092594 - - sbo: SBO:0000176 + - ec-code: "3.1.2.2" + - bigg.reaction: "PTE8x" + - kegg.reaction: "R08174" + - metanetx.reaction: "MNXR99133" + - pmid: "10092594" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0850 - - name: peroxisomal acyl-CoA thioesterase + - id: "r_0850" + - name: "peroxisomal acyl-CoA thioesterase" - metabolites: !!omap - s_0534: 1 - s_0801: 1 @@ -44984,21 +45017,21 @@ - s_1258: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR019C + - gene_reaction_rule: "YJR019C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.2.2 - - bigg.reaction: PTE9x - - metanetx.reaction: MNXR99140 - - pmid: 10092594 - - sbo: SBO:0000176 + - ec-code: "3.1.2.2" + - bigg.reaction: "PTE9x" + - metanetx.reaction: "MNXR99140" + - pmid: "10092594" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0851 - - name: phenylalanine transaminase + - id: "r_0851" + - name: "phenylalanine transaminase" - metabolites: !!omap - s_0180: -1 - s_0951: 1 @@ -45006,34 +45039,34 @@ - s_1032: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL202W + - gene_reaction_rule: "YGL202W" - subsystem: - - sce00130 Ubiquinone and other terpenoid-quinone biosynthesis - - sce00270 Cysteine and methionine metabolism - - sce00300 Lysine biosynthesis - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00380 Tryptophan metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" + - "sce00270 Cysteine and methionine metabolism" + - "sce00300 Lysine biosynthesis" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00380 Tryptophan metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 2.6.1.39 - - 2.6.1.57 - - bigg.reaction: PHETA1 - - kegg.reaction: R00694 - - metanetx.reaction: MNXR126234 + - "2.6.1.39" + - "2.6.1.57" + - bigg.reaction: "PHETA1" + - kegg.reaction: "R00694" + - metanetx.reaction: "MNXR126234" - pmid: - - 9491082 - - 9491083 - - sbo: SBO:0000176 + - "9491082" + - "9491083" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0852 - - name: phenylalanyl-tRNA synthetase + - id: "r_0852" + - name: "phenylalanyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -45043,19 +45076,19 @@ - s_1604: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFL022C and YLR060W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YFL022C and YLR060W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.20 - - bigg.reaction: PHETRS - - kegg.reaction: R03660 - - metanetx.reaction: MNXR102634 - - pmid: 3049607 - - sbo: SBO:0000176 + - ec-code: "6.1.1.20" + - bigg.reaction: "PHETRS" + - kegg.reaction: "R03660" + - metanetx.reaction: "MNXR102634" + - pmid: "3049607" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0853 - - name: phenylalanyl-tRNA synthetase + - id: "r_0853" + - name: "phenylalanyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0437: -1 @@ -45065,19 +45098,19 @@ - s_1605: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR047W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YPR047W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.20 - - bigg.reaction: PHETRSm - - kegg.reaction: R03660 - - metanetx.reaction: MNXR102634 - - pmid: 3029120 - - sbo: SBO:0000176 + - ec-code: "6.1.1.20" + - bigg.reaction: "PHETRSm" + - kegg.reaction: "R03660" + - metanetx.reaction: "MNXR102634" + - pmid: "3029120" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0854 - - name: phenylpyruvate decarboxylase + - id: "r_0854" + - name: "phenylpyruvate decarboxylase" - metabolites: !!omap - s_0456: 1 - s_0794: -1 @@ -45085,19 +45118,19 @@ - s_1318: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR380W - - subsystem: sce00360 Phenylalanine metabolism + - gene_reaction_rule: "YDR380W" + - subsystem: "sce00360 Phenylalanine metabolism" - annotation: !!omap - - ec-code: 4.1.1.43 - - bigg.reaction: PPYRDC - - kegg.reaction: R01377 - - metanetx.reaction: MNXR125761 - - pmid: 12902239 - - sbo: SBO:0000176 + - ec-code: "4.1.1.43" + - bigg.reaction: "PPYRDC" + - kegg.reaction: "R01377" + - metanetx.reaction: "MNXR125761" + - pmid: "12902239" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0855 - - name: phopshoribosylaminoimidazole synthetase + - id: "r_0855" + - name: "phopshoribosylaminoimidazole synthetase" - metabolites: !!omap - s_0300: 1 - s_0302: -1 @@ -45107,42 +45140,42 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL234W + - gene_reaction_rule: "YGL234W" - subsystem: - - sce00230 Purine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 6.3.3.1 - - 6.3.4.13 - - bigg.reaction: PRAIS - - kegg.reaction: R04208 - - metanetx.reaction: MNXR139261 - - sbo: SBO:0000176 + - "6.3.3.1" + - "6.3.4.13" + - bigg.reaction: "PRAIS" + - kegg.reaction: "R04208" + - metanetx.reaction: "MNXR139261" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0882 - - name: phosphoacetylglucosamine mutase + - id: "r_0882" + - name: "phosphoacetylglucosamine mutase" - metabolites: !!omap - s_1189: 1 - s_1190: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YEL058W + - gene_reaction_rule: "YEL058W" - subsystem: - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01130 Biosynthesis of antibiotics + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 5.4.2.3 - - kegg.reaction: R08193 - - metanetx.reaction: MNXR111765 - - pmid: 8174553 - - sbo: SBO:0000176 + - ec-code: "5.4.2.3" + - kegg.reaction: "R08193" + - metanetx.reaction: "MNXR111765" + - pmid: "8174553" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0883 - - name: phosphoadenylyl-sulfate reductase (thioredoxin) + - id: "r_0883" + - name: "phosphoadenylyl-sulfate reductase (thioredoxin)" - metabolites: !!omap - s_0201: -1 - s_0390: 1 @@ -45152,18 +45185,18 @@ - s_1620: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YGR209C and YPR167C) or (YLR043C and YPR167C) - - subsystem: sce00920 Sulfur metabolism + - gene_reaction_rule: "(YGR209C and YPR167C) or (YLR043C and YPR167C)" + - subsystem: "sce00920 Sulfur metabolism" - annotation: !!omap - - ec-code: 1.8.4.8 - - bigg.reaction: PAPSR - - metanetx.reaction: MNXR137297 - - pmid: 2203779 - - sbo: SBO:0000176 + - ec-code: "1.8.4.8" + - bigg.reaction: "PAPSR" + - metanetx.reaction: "MNXR137297" + - pmid: "2203779" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0884 - - name: phosphoenolpyruvate carboxykinase + - id: "r_0884" + - name: "phosphoenolpyruvate carboxykinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -45172,24 +45205,24 @@ - s_1360: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR097W + - gene_reaction_rule: "YKR097W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00020 Citrate cycle (TCA cycle) - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 4.1.1.49 - - bigg.reaction: PPCK - - kegg.reaction: R00341 - - metanetx.reaction: MNXR103099 - - sbo: SBO:0000176 + - ec-code: "4.1.1.49" + - bigg.reaction: "PPCK" + - kegg.reaction: "R00341" + - metanetx.reaction: "MNXR103099" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0885 - - name: phosphoethanolamine cytidyltransferase + - id: "r_0885" + - name: "phosphoethanolamine cytidyltransferase" - metabolites: !!omap - s_0474: 1 - s_0539: -1 @@ -45198,20 +45231,20 @@ - s_1239: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR007W + - gene_reaction_rule: "YGR007W" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.7.14 - - bigg.reaction: PETHCT - - kegg.reaction: R02038 - - metanetx.reaction: MNXR102498 - - sbo: SBO:0000176 + - ec-code: "2.7.7.14" + - bigg.reaction: "PETHCT" + - kegg.reaction: "R02038" + - metanetx.reaction: "MNXR102498" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0886 - - name: phosphofructokinase + - id: "r_0886" + - name: "phosphofructokinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -45220,28 +45253,28 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR205C or (YGR240C and YMR205C) + - gene_reaction_rule: "YMR205C or (YGR240C and YMR205C)" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00030 Pentose phosphate pathway - - sce00051 Fructose and mannose metabolism - - sce00052 Galactose metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids - - sce03018 RNA degradation + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00030 Pentose phosphate pathway" + - "sce00051 Fructose and mannose metabolism" + - "sce00052 Galactose metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" + - "sce03018 RNA degradation" - annotation: !!omap - - ec-code: 2.7.1.11 - - bigg.reaction: PFK - - kegg.reaction: R00756 - - metanetx.reaction: MNXR106666 - - pmid: 3007939 - - sbo: SBO:0000176 + - ec-code: "2.7.1.11" + - bigg.reaction: "PFK" + - kegg.reaction: "R00756" + - metanetx.reaction: "MNXR106666" + - pmid: "3007939" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0887 - - name: phosphofructokinase (s7p) + - id: "r_0887" + - name: "phosphofructokinase (s7p)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -45250,55 +45283,55 @@ - s_1427: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR205C or (YGR240C and YMR205C) + - gene_reaction_rule: "YMR205C or (YGR240C and YMR205C)" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00030 Pentose phosphate pathway - - sce00051 Fructose and mannose metabolism - - sce00052 Galactose metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids - - sce03018 RNA degradation + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00030 Pentose phosphate pathway" + - "sce00051 Fructose and mannose metabolism" + - "sce00052 Galactose metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" + - "sce03018 RNA degradation" - annotation: !!omap - - ec-code: 2.7.1.11 - - bigg.reaction: PFK_3 - - kegg.reaction: R01843 - - metanetx.reaction: MNXR102510 - - sbo: SBO:0000176 + - ec-code: "2.7.1.11" + - bigg.reaction: "PFK_3" + - kegg.reaction: "R01843" + - metanetx.reaction: "MNXR102510" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0888 - - name: phosphoglucomutase + - id: "r_0888" + - name: "phosphoglucomutase" - metabolites: !!omap - s_0567: 1 - s_0568: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR105C or YKL127W + - gene_reaction_rule: "YMR105C or YKL127W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00030 Pentose phosphate pathway - - sce00052 Galactose metabolism - - sce00230 Purine metabolism - - sce00500 Starch and sucrose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00030 Pentose phosphate pathway" + - "sce00052 Galactose metabolism" + - "sce00230 Purine metabolism" + - "sce00500 Starch and sucrose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 5.4.2.2 - - bigg.reaction: PGMT - - kegg.reaction: R08639 - - metanetx.reaction: MNXR102548 + - ec-code: "5.4.2.2" + - bigg.reaction: "PGMT" + - kegg.reaction: "R08639" + - metanetx.reaction: "MNXR102548" - pmid: - - 18042468 - - 8119301 - - sbo: SBO:0000176 + - "18042468" + - "8119301" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0889 - - name: phosphogluconate dehydrogenase + - id: "r_0889" + - name: "phosphogluconate dehydrogenase" - metabolites: !!omap - s_0340: -1 - s_0456: 1 @@ -45307,44 +45340,44 @@ - s_1212: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR256W or YHR183W + - gene_reaction_rule: "YGR256W or YHR183W" - subsystem: - - sce00030 Pentose phosphate pathway - - sce00480 Glutathione metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00030 Pentose phosphate pathway" + - "sce00480 Glutathione metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 1.1.1.44 - - bigg.reaction: GND - - kegg.reaction: R01528 - - metanetx.reaction: MNXR100389 - - pmid: 24626 - - sbo: SBO:0000176 + - ec-code: "1.1.1.44" + - bigg.reaction: "GND" + - kegg.reaction: "R01528" + - metanetx.reaction: "MNXR100389" + - pmid: "24626" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0890 - - name: phosphoglucosamine mutase + - id: "r_0890" + - name: "phosphoglucosamine mutase" - metabolites: !!omap - s_0411: -1 - s_0412: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YEL058W + - gene_reaction_rule: "YEL058W" - subsystem: - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01130 Biosynthesis of antibiotics + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 5.4.2.3 - - bigg.reaction: PGAMT - - kegg.reaction: R02060 - - metanetx.reaction: MNXR102526 - - pmid: 8174553 - - sbo: SBO:0000176 + - ec-code: "5.4.2.3" + - bigg.reaction: "PGAMT" + - kegg.reaction: "R02060" + - metanetx.reaction: "MNXR102526" + - pmid: "8174553" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0891 - - name: phosphoglycerate dehydrogenase + - id: "r_0891" + - name: "phosphoglycerate dehydrogenase" - metabolites: !!omap - s_0258: 1 - s_0260: -1 @@ -45353,25 +45386,25 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER081W or YIL074C + - gene_reaction_rule: "YER081W or YIL074C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 1.1.1.399 - - 1.1.1.95 - - bigg.reaction: PGCD - - kegg.reaction: R01513 - - metanetx.reaction: MNXR102527 - - pmid: 12525494 - - sbo: SBO:0000176 + - "1.1.1.399" + - "1.1.1.95" + - bigg.reaction: "PGCD" + - kegg.reaction: "R01513" + - metanetx.reaction: "MNXR102527" + - pmid: "12525494" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0892 - - name: phosphoglycerate kinase + - id: "r_0892" + - name: "phosphoglycerate kinase" - metabolites: !!omap - s_0075: -1 - s_0260: 1 @@ -45379,69 +45412,69 @@ - s_0434: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR012W + - gene_reaction_rule: "YCR012W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.7.2.3 - - bigg.reaction: PGK - - kegg.reaction: R01512 - - metanetx.reaction: MNXR102538 - - pmid: 6347186 - - sbo: SBO:0000176 + - ec-code: "2.7.2.3" + - bigg.reaction: "PGK" + - kegg.reaction: "R01512" + - metanetx.reaction: "MNXR102538" + - pmid: "6347186" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0893 - - name: phosphoglycerate mutase + - id: "r_0893" + - name: "phosphoglycerate mutase" - metabolites: !!omap - s_0188: 1 - s_0260: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR283W or YKL152C + - gene_reaction_rule: "YOR283W or YKL152C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00260 Glycine, serine and threonine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 5.4.2.11 - - bigg.reaction: PGM - - kegg.reaction: R01518 - - metanetx.reaction: MNXR102547 - - pmid: 3033435 - - sbo: SBO:0000176 + - ec-code: "5.4.2.11" + - bigg.reaction: "PGM" + - kegg.reaction: "R01518" + - metanetx.reaction: "MNXR102547" + - pmid: "3033435" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0902 - - name: phosphomannomutase + - id: "r_0902" + - name: "phosphomannomutase" - metabolites: !!omap - s_0573: -1 - s_0574: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YFL045C + - gene_reaction_rule: "YFL045C" - subsystem: - - sce00051 Fructose and mannose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00051 Fructose and mannose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 5.4.2.8 - - bigg.reaction: PMANM - - kegg.reaction: R01818 - - metanetx.reaction: MNXR101729 - - sbo: SBO:0000176 + - ec-code: "5.4.2.8" + - bigg.reaction: "PMANM" + - kegg.reaction: "R01818" + - metanetx.reaction: "MNXR101729" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0903 - - name: phosphomethylpyrimidine kinase + - id: "r_0903" + - name: "phosphomethylpyrimidine kinase" - metabolites: !!omap - s_0267: 1 - s_0268: -1 @@ -45449,21 +45482,21 @@ - s_0434: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL055C or YPL258C or YPR121W - - subsystem: sce00730 Thiamine metabolism + - gene_reaction_rule: "YOL055C or YPL258C or YPR121W" + - subsystem: "sce00730 Thiamine metabolism" - annotation: !!omap - ec-code: - - 2.7.1.49 - - 2.7.4.7 - - bigg.reaction: PMPK - - kegg.reaction: R04509 - - metanetx.reaction: MNXR103045 - - pmid: 10383756 - - sbo: SBO:0000176 + - "2.7.1.49" + - "2.7.4.7" + - bigg.reaction: "PMPK" + - kegg.reaction: "R04509" + - metanetx.reaction: "MNXR103045" + - pmid: "10383756" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0904 - - name: phosphomevalonate kinase + - id: "r_0904" + - name: "phosphomevalonate kinase" - metabolites: !!omap - s_0018: 1 - s_0019: -1 @@ -45471,21 +45504,21 @@ - s_0434: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR220W + - gene_reaction_rule: "YMR220W" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.4.2 - - bigg.reaction: PMEVK - - kegg.reaction: R03245 - - metanetx.reaction: MNXR103043 - - sbo: SBO:0000176 + - ec-code: "2.7.4.2" + - bigg.reaction: "PMEVK" + - kegg.reaction: "R03245" + - metanetx.reaction: "MNXR103043" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0905 - - name: phosphopantothenate-cysteine ligase + - id: "r_0905" + - name: "phosphopantothenate-cysteine ligase" - metabolites: !!omap - s_0017: -1 - s_0526: 1 @@ -45496,18 +45529,18 @@ - s_1188: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL083C - - subsystem: sce00770 Pantothenate and CoA biosynthesis + - gene_reaction_rule: "YIL083C" + - subsystem: "sce00770 Pantothenate and CoA biosynthesis" - annotation: !!omap - - ec-code: 6.3.2.5 - - bigg.reaction: PPNCL2 - - kegg.reaction: R04231 - - metanetx.reaction: MNXR103119 - - sbo: SBO:0000176 + - ec-code: "6.3.2.5" + - bigg.reaction: "PPNCL2" + - kegg.reaction: "R04231" + - metanetx.reaction: "MNXR103119" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0906 - - name: phosphopantothenoylcysteine decarboxylase + - id: "r_0906" + - name: "phosphopantothenoylcysteine decarboxylase" - metabolites: !!omap - s_0456: 1 - s_0794: -1 @@ -45515,44 +45548,44 @@ - s_1307: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YKL088W and YKR072C and YOR054C) or (YKL088W and YKR072C) or (YKL088W and YOR054C) or YKL088W - - subsystem: sce00770 Pantothenate and CoA biosynthesis + - gene_reaction_rule: "(YKL088W and YKR072C and YOR054C) or (YKL088W and YKR072C) or (YKL088W and YOR054C) or YKL088W" + - subsystem: "sce00770 Pantothenate and CoA biosynthesis" - annotation: !!omap - - ec-code: 4.1.1.36 - - bigg.reaction: PPCDC - - kegg.reaction: R03269 - - metanetx.reaction: MNXR103098 - - sbo: SBO:0000176 + - ec-code: "4.1.1.36" + - bigg.reaction: "PPCDC" + - kegg.reaction: "R03269" + - metanetx.reaction: "MNXR103098" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0907 - - name: phosphopentomutase + - id: "r_0907" + - name: "phosphopentomutase" - metabolites: !!omap - s_0415: -1 - s_1408: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL127W or YMR105C or YMR278W + - gene_reaction_rule: "YKL127W or YMR105C or YMR278W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00030 Pentose phosphate pathway - - sce00052 Galactose metabolism - - sce00230 Purine metabolism - - sce00500 Starch and sucrose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00030 Pentose phosphate pathway" + - "sce00052 Galactose metabolism" + - "sce00230 Purine metabolism" + - "sce00500 Starch and sucrose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 5.4.2.2 - - 5.4.2.7 - - bigg.reaction: PPM - - metanetx.reaction: MNXR103115 - - sbo: SBO:0000176 + - "5.4.2.2" + - "5.4.2.7" + - bigg.reaction: "PPM" + - metanetx.reaction: "MNXR103115" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0908 - - name: phosphoribosyl amino imidazolesuccinocarbozamide synthetase + - id: "r_0908" + - name: "phosphoribosyl amino imidazolesuccinocarbozamide synthetase" - metabolites: !!omap - s_0299: 1 - s_0394: 1 @@ -45563,46 +45596,46 @@ - s_1364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAR015W + - gene_reaction_rule: "YAR015W" - subsystem: - - sce00230 Purine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 6.3.2.6 - - bigg.reaction: PRASCSi - - kegg.reaction: R04591 - - metanetx.reaction: MNXR108987 - - sbo: SBO:0000176 + - ec-code: "6.3.2.6" + - bigg.reaction: "PRASCSi" + - kegg.reaction: "R04591" + - metanetx.reaction: "MNXR108987" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0909 - - name: phosphoribosyl-AMP cyclohydrolase + - id: "r_0909" + - name: "phosphoribosyl-AMP cyclohydrolase" - metabolites: !!omap - s_0077: 1 - s_0078: -1 - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL030C + - gene_reaction_rule: "YCL030C" - subsystem: - - sce00340 Histidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00340 Histidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 1.1.1.23 - - 3.5.4.19 - - 3.6.1.31 - - bigg.reaction: PRAMPC - - kegg.reaction: R04037 - - metanetx.reaction: MNXR103154 - - pmid: 7049842 - - sbo: SBO:0000176 + - "1.1.1.23" + - "3.5.4.19" + - "3.6.1.31" + - bigg.reaction: "PRAMPC" + - kegg.reaction: "R04037" + - metanetx.reaction: "MNXR103154" + - pmid: "7049842" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0910 - - name: phosphoribosyl-ATP pyrophosphatase + - id: "r_0910" + - name: "phosphoribosyl-ATP pyrophosphatase" - metabolites: !!omap - s_0078: 1 - s_0326: -1 @@ -45611,24 +45644,24 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL030C + - gene_reaction_rule: "YCL030C" - subsystem: - - sce00340 Histidine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00340 Histidine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 1.1.1.23 - - 3.5.4.19 - - 3.6.1.31 - - bigg.reaction: PRATPP - - kegg.reaction: R04035 - - metanetx.reaction: MNXR103155 - - sbo: SBO:0000176 + - "1.1.1.23" + - "3.5.4.19" + - "3.6.1.31" + - bigg.reaction: "PRATPP" + - kegg.reaction: "R04035" + - metanetx.reaction: "MNXR103155" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0911 - - name: phosphoribosylaminoimidazole-carboxylase + - id: "r_0911" + - name: "phosphoribosylaminoimidazole-carboxylase" - metabolites: !!omap - s_0300: -1 - s_0456: -1 @@ -45636,19 +45669,19 @@ - s_1364: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR128C + - gene_reaction_rule: "YOR128C" - subsystem: - - sce00230 Purine metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00230 Purine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.21 - - kegg.reaction: R04209 - - metanetx.reaction: MNXR108735 - - sbo: SBO:0000176 + - ec-code: "4.1.1.21" + - kegg.reaction: "R04209" + - metanetx.reaction: "MNXR108735" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0912 - - name: phosphoribosylaminoimidazolecarboxamide formyltransferase + - id: "r_0912" + - name: "phosphoribosylaminoimidazolecarboxamide formyltransferase" - metabolites: !!omap - s_0120: -1 - s_0403: -1 @@ -45656,46 +45689,46 @@ - s_1487: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR028C or YMR120C + - gene_reaction_rule: "YLR028C or YMR120C" - subsystem: - - sce00230 Purine metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 2.1.2.3 - - 3.5.4.10 - - bigg.reaction: AICART - - kegg.reaction: R04560 - - metanetx.reaction: MNXR95639 - - sbo: SBO:0000176 + - "2.1.2.3" + - "3.5.4.10" + - bigg.reaction: "AICART" + - kegg.reaction: "R04560" + - metanetx.reaction: "MNXR95639" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0913 - - name: phosphoribosylanthranilate isomerase + - id: "r_0913" + - name: "phosphoribosylanthranilate isomerase" - metabolites: !!omap - s_0076: 1 - s_1187: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR007W + - gene_reaction_rule: "YDR007W" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 5.3.1.24 - - bigg.reaction: PRAIi - - kegg.reaction: R03509 - - metanetx.reaction: MNXR103156 - - pmid: 348687 - - sbo: SBO:0000176 + - ec-code: "5.3.1.24" + - bigg.reaction: "PRAIi" + - kegg.reaction: "R03509" + - metanetx.reaction: "MNXR103156" + - pmid: "348687" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0914 - - name: phosphoribosylglycinamidine synthetase + - id: "r_0914" + - name: "phosphoribosylglycinamidine synthetase" - metabolites: !!omap - s_0325: 1 - s_0327: -1 @@ -45706,23 +45739,23 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL234W + - gene_reaction_rule: "YGL234W" - subsystem: - - sce00230 Purine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 6.3.3.1 - - 6.3.4.13 - - bigg.reaction: PRAGSr - - kegg.reaction: R04144 - - metanetx.reaction: MNXR103139 - - sbo: SBO:0000176 + - "6.3.3.1" + - "6.3.4.13" + - bigg.reaction: "PRAGSr" + - kegg.reaction: "R04144" + - metanetx.reaction: "MNXR103139" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0915 - - name: phosphoribosylpyrophosphate amidotransferase + - id: "r_0915" + - name: "phosphoribosylpyrophosphate amidotransferase" - metabolites: !!omap - s_0327: 1 - s_0633: 1 @@ -45732,22 +45765,22 @@ - s_1386: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR300C + - gene_reaction_rule: "YMR300C" - subsystem: - - sce00230 Purine metabolism - - sce00250 Alanine, aspartate and glutamate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.4.2.14 - - bigg.reaction: GLUPRT - - kegg.reaction: R01072 - - metanetx.reaction: MNXR100287 - - sbo: SBO:0000176 + - ec-code: "2.4.2.14" + - bigg.reaction: "GLUPRT" + - kegg.reaction: "R01072" + - metanetx.reaction: "MNXR100287" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0916 - - name: phosphoribosylpyrophosphate synthetase + - id: "r_0916" + - name: "phosphoribosylpyrophosphate synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -45756,24 +45789,24 @@ - s_1408: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YKL181W and YER099C) or (YKL181W and YHL011C) or (YKL181W and YBL068W) or (YER099C and YOL061W) or (YBL068W and YOL061W) + - gene_reaction_rule: "(YKL181W and YER099C) or (YKL181W and YHL011C) or (YKL181W and YBL068W) or (YER099C and YOL061W) or (YBL068W and YOL061W)" - subsystem: - - sce00030 Pentose phosphate pathway - - sce00230 Purine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00030 Pentose phosphate pathway" + - "sce00230 Purine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.7.6.1 - - bigg.reaction: PRPPS - - metanetx.reaction: MNXR103215 - - pmid: 10212224 - - sbo: SBO:0000176 + - ec-code: "2.7.6.1" + - bigg.reaction: "PRPPS" + - metanetx.reaction: "MNXR103215" + - pmid: "10212224" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0917 - - name: phosphoserine phosphatase (L-serine) + - id: "r_0917" + - name: "phosphoserine phosphatase (L-serine)" - metabolites: !!omap - s_0259: -1 - s_0803: -1 @@ -45781,23 +45814,23 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR208W + - gene_reaction_rule: "YGR208W" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 3.1.3.3 - - bigg.reaction: PSP_L - - kegg.reaction: R00582 - - metanetx.reaction: MNXR103260 - - pmid: 1326413 - - sbo: SBO:0000176 + - ec-code: "3.1.3.3" + - bigg.reaction: "PSP_L" + - kegg.reaction: "R00582" + - metanetx.reaction: "MNXR103260" + - pmid: "1326413" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0918 - - name: phosphoserine transaminase + - id: "r_0918" + - name: "phosphoserine transaminase" - metabolites: !!omap - s_0180: 1 - s_0258: -1 @@ -45805,24 +45838,24 @@ - s_0991: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR184W + - gene_reaction_rule: "YOR184W" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00750 Vitamin B6 metabolism - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00750 Vitamin B6 metabolism" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.52 - - bigg.reaction: PSERT - - kegg.reaction: R04173 - - metanetx.reaction: MNXR103225 - - pmid: 8017107 - - sbo: SBO:0000176 + - ec-code: "2.6.1.52" + - bigg.reaction: "PSERT" + - kegg.reaction: "R04173" + - metanetx.reaction: "MNXR103225" + - pmid: "8017107" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0919 - - name: phytoceramidase + - id: "r_0919" + - name: "phytoceramidase" - metabolites: !!omap - s_0481: 1 - s_0804: 1 @@ -45830,19 +45863,19 @@ - s_1366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR183W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YBR183W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - metanetx.reaction: MNXR126696 + - ec-code: "3.5.1.-" + - metanetx.reaction: "MNXR126696" - pmid: - - 10702247 - - 18296751 - - sbo: SBO:0000176 + - "10702247" + - "18296751" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0920 - - name: phytoceramidase + - id: "r_0920" + - name: "phytoceramidase" - metabolites: !!omap - s_0484: 1 - s_0507: -1 @@ -45850,38 +45883,38 @@ - s_1366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR402C + - gene_reaction_rule: "YDR402C" - subsystem: - - sce00071 Fatty acid degradation - - sce00380 Tryptophan metabolism + - "sce00071 Fatty acid degradation" + - "sce00380 Tryptophan metabolism" - annotation: !!omap - - ec-code: 1.14.14.- - - kegg.reaction: R06527 - - metanetx.reaction: MNXR126694 - - sbo: SBO:0000176 + - ec-code: "1.14.14.-" + - kegg.reaction: "R06527" + - metanetx.reaction: "MNXR126694" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0921 - - name: Phytosphingosine phosphate lyase + - id: "r_0921" + - name: "Phytosphingosine phosphate lyase" - metabolites: !!omap - s_0161: 1 - s_1240: 1 - s_1367: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR294C - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YDR294C" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 4.1.2.27 - - metanetx.reaction: MNXR103262 + - ec-code: "4.1.2.27" + - metanetx.reaction: "MNXR103262" - pmid: - - 18296751 - - 9334171 - - sbo: SBO:0000176 + - "18296751" + - "9334171" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0922 - - name: phytosphingosine synthesis + - id: "r_0922" + - name: "phytosphingosine synthesis" - metabolites: !!omap - s_0795: -1 - s_0804: 1 @@ -45892,20 +45925,20 @@ - s_1445: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR297W - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YDR297W" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 1.-.-.- - - kegg.reaction: R06525 - - metanetx.reaction: MNXR103263 + - ec-code: "1.-.-.-" + - kegg.reaction: "R06525" + - metanetx.reaction: "MNXR103263" - pmid: - - 18296751 - - 9368039 - - sbo: SBO:0000176 + - "18296751" + - "9368039" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0929 - - name: polyamine oxidase + - id: "r_0929" + - name: "polyamine oxidase" - metabolites: !!omap - s_0208: 1 - s_0803: -1 @@ -45915,20 +45948,20 @@ - s_1275: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR020W + - gene_reaction_rule: "YMR020W" - subsystem: - - sce00330 Arginine and proline metabolism - - sce00410 beta-Alanine metabolism + - "sce00330 Arginine and proline metabolism" + - "sce00410 beta-Alanine metabolism" - annotation: !!omap - - ec-code: 1.5.3.17 - - bigg.reaction: POLYAO - - metanetx.reaction: MNXR103057 - - pmid: 12670477 - - sbo: SBO:0000176 + - ec-code: "1.5.3.17" + - bigg.reaction: "POLYAO" + - metanetx.reaction: "MNXR103057" + - pmid: "12670477" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0935 - - name: porphobilinogen synthase + - id: "r_0935" + - name: "porphobilinogen synthase" - metabolites: !!omap - s_0315: -2 - s_0794: 1 @@ -45936,20 +45969,20 @@ - s_1372: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL040C + - gene_reaction_rule: "YGL040C" - subsystem: - - sce00860 Porphyrin and chlorophyll metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.2.1.24 - - bigg.reaction: PPBNGS - - kegg.reaction: R00036 - - metanetx.reaction: MNXR103095 - - sbo: SBO:0000176 + - ec-code: "4.2.1.24" + - bigg.reaction: "PPBNGS" + - kegg.reaction: "R00036" + - metanetx.reaction: "MNXR103095" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0936 - - name: poylamine oxidase + - id: "r_0936" + - name: "poylamine oxidase" - metabolites: !!omap - s_0208: 1 - s_0803: -1 @@ -45959,21 +45992,21 @@ - s_1275: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR020W + - gene_reaction_rule: "YMR020W" - subsystem: - - sce00330 Arginine and proline metabolism - - sce00410 beta-Alanine metabolism + - "sce00330 Arginine and proline metabolism" + - "sce00410 beta-Alanine metabolism" - annotation: !!omap - - ec-code: 1.5.3.17 - - bigg.reaction: POLYAO2 - - kegg.reaction: R03899 - - metanetx.reaction: MNXR103058 - - pmid: 12670477 - - sbo: SBO:0000176 + - ec-code: "1.5.3.17" + - bigg.reaction: "POLYAO2" + - kegg.reaction: "R03899" + - metanetx.reaction: "MNXR103058" + - pmid: "12670477" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0937 - - name: poylamine oxidase + - id: "r_0937" + - name: "poylamine oxidase" - metabolites: !!omap - s_0208: 1 - s_0803: -1 @@ -45983,21 +46016,21 @@ - s_1442: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR020W + - gene_reaction_rule: "YMR020W" - subsystem: - - sce00330 Arginine and proline metabolism - - sce00410 beta-Alanine metabolism + - "sce00330 Arginine and proline metabolism" + - "sce00410 beta-Alanine metabolism" - annotation: !!omap - - ec-code: 1.5.3.17 - - bigg.reaction: POLYAO3 - - kegg.reaction: R09076 - - metanetx.reaction: MNXR103059 - - pmid: 12670477 - - sbo: SBO:0000176 + - ec-code: "1.5.3.17" + - bigg.reaction: "POLYAO3" + - kegg.reaction: "R09076" + - metanetx.reaction: "MNXR103059" + - pmid: "12670477" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0938 - - name: prephenate dehydratase + - id: "r_0938" + - name: "prephenate dehydratase" - metabolites: !!omap - s_0456: 1 - s_0794: -1 @@ -46006,23 +46039,23 @@ - s_1377: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL316C + - gene_reaction_rule: "YNL316C" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.51 - - bigg.reaction: PPNDH - - kegg.reaction: R01373 - - metanetx.reaction: MNXR126086 - - pmid: 7502583 - - sbo: SBO:0000176 + - ec-code: "4.2.1.51" + - bigg.reaction: "PPNDH" + - kegg.reaction: "R01373" + - metanetx.reaction: "MNXR126086" + - pmid: "7502583" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0939 - - name: prephenate dehydrogenase (NADP) + - id: "r_0939" + - name: "prephenate dehydrogenase (NADP)" - metabolites: !!omap - s_0204: 1 - s_0456: 1 @@ -46031,22 +46064,22 @@ - s_1377: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR166C + - gene_reaction_rule: "YBR166C" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.3.1.13 - - bigg.reaction: PPND2 - - kegg.reaction: R01730 - - metanetx.reaction: MNXR103122 - - pmid: 2697638 - - sbo: SBO:0000176 + - ec-code: "1.3.1.13" + - bigg.reaction: "PPND2" + - kegg.reaction: "R01730" + - metanetx.reaction: "MNXR103122" + - pmid: "2697638" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0940 - - name: proline oxidase (NAD) + - id: "r_0940" + - name: "proline oxidase (NAD)" - metabolites: !!omap - s_0119: 1 - s_0688: -1 @@ -46054,20 +46087,20 @@ - s_1037: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR142W + - gene_reaction_rule: "YLR142W" - subsystem: - - sce00330 Arginine and proline metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00330 Arginine and proline metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.5.5.2 - - kegg.reaction: R10507 - - metanetx.reaction: MNXR103187 - - sbo: SBO:0000176 + - ec-code: "1.5.5.2" + - kegg.reaction: "R10507" + - metanetx.reaction: "MNXR103187" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0941 - - name: prolyl-tRNA synthetase + - id: "r_0941" + - name: "prolyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -46077,18 +46110,18 @@ - s_1606: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR020W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YHR020W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.15 - - bigg.reaction: PROTRS_1 - - kegg.reaction: R03661 - - metanetx.reaction: MNXR103208 - - sbo: SBO:0000176 + - ec-code: "6.1.1.15" + - bigg.reaction: "PROTRS_1" + - kegg.reaction: "R03661" + - metanetx.reaction: "MNXR103208" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0942 - - name: protoporphyrinogen oxidase + - id: "r_0942" + - name: "protoporphyrinogen oxidase" - metabolites: !!omap - s_0807: 6 - s_1278: -3 @@ -46096,20 +46129,20 @@ - s_1385: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER014W + - gene_reaction_rule: "YER014W" - subsystem: - - sce00860 Porphyrin and chlorophyll metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 1.3.3.4 - - bigg.reaction: PPPGOm - - kegg.reaction: R03222 - - metanetx.reaction: MNXR103132 - - sbo: SBO:0000176 + - ec-code: "1.3.3.4" + - bigg.reaction: "PPPGOm" + - kegg.reaction: "R03222" + - metanetx.reaction: "MNXR103132" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0943 - - name: purine-nucleoside phosphorylase + - id: "r_0943" + - name: "purine-nucleoside phosphorylase" - metabolites: !!omap - s_0415: 1 - s_0794: 1 @@ -46118,27 +46151,27 @@ - s_1322: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR400W and YLR017W and YLR209C + - gene_reaction_rule: "YDR400W and YLR017W and YLR209C" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce00270 Cysteine and methionine metabolism - - sce00760 Nicotinate and nicotinamide metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00760 Nicotinate and nicotinamide metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.4.2.1 - - 2.4.2.28 - - 3.2.2.3 - - bigg.reaction: PNP - - kegg.reaction: R02294 - - metanetx.reaction: MNXR103048 - - pmid: 17482543 - - sbo: SBO:0000176 + - "2.4.2.1" + - "2.4.2.28" + - "3.2.2.3" + - bigg.reaction: "PNP" + - kegg.reaction: "R02294" + - metanetx.reaction: "MNXR103048" + - pmid: "17482543" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0949 - - name: guanosine phosphorylase + - id: "r_0949" + - name: "guanosine phosphorylase" - metabolites: !!omap - s_0415: 1 - s_0787: 1 @@ -46146,23 +46179,23 @@ - s_1322: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR209C + - gene_reaction_rule: "YLR209C" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce00760 Nicotinate and nicotinamide metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce00760 Nicotinate and nicotinamide metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.4.2.1 - - bigg.reaction: PUNP3 - - kegg.reaction: R02147 - - metanetx.reaction: MNXR103345 - - pmid: 23670538 - - sbo: SBO:0000176 + - ec-code: "2.4.2.1" + - bigg.reaction: "PUNP3" + - kegg.reaction: "R02147" + - metanetx.reaction: "MNXR103345" + - pmid: "23670538" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0950 - - name: guanosine phosphorylase + - id: "r_0950" + - name: "guanosine phosphorylase" - metabolites: !!omap - s_0416: 1 - s_0789: 1 @@ -46170,23 +46203,23 @@ - s_1326: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR209C + - gene_reaction_rule: "YLR209C" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce00760 Nicotinate and nicotinamide metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce00760 Nicotinate and nicotinamide metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.4.2.1 - - bigg.reaction: PUNP3m - - kegg.reaction: R02147 - - metanetx.reaction: MNXR103345 - - pmid: 23670538 - - sbo: SBO:0000176 + - ec-code: "2.4.2.1" + - bigg.reaction: "PUNP3m" + - kegg.reaction: "R02147" + - metanetx.reaction: "MNXR103345" + - pmid: "23670538" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0951 - - name: inosine phosphorylase + - id: "r_0951" + - name: "inosine phosphorylase" - metabolites: !!omap - s_0415: 1 - s_0843: 1 @@ -46194,23 +46227,23 @@ - s_1322: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR209C + - gene_reaction_rule: "YLR209C" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce00760 Nicotinate and nicotinamide metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce00760 Nicotinate and nicotinamide metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.4.2.1 - - bigg.reaction: PUNP5 - - kegg.reaction: R01863 - - metanetx.reaction: MNXR103347 - - pmid: 23670538 - - sbo: SBO:0000176 + - ec-code: "2.4.2.1" + - bigg.reaction: "PUNP5" + - kegg.reaction: "R01863" + - metanetx.reaction: "MNXR103347" + - pmid: "23670538" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0953 - - name: pyridoxal oxidase + - id: "r_0953" + - name: "pyridoxal oxidase" - metabolites: !!omap - s_0419: -1 - s_0803: -2 @@ -46220,17 +46253,17 @@ - s_1394: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR035C - - subsystem: sce00750 Vitamin B6 metabolism + - gene_reaction_rule: "YBR035C" + - subsystem: "sce00750 Vitamin B6 metabolism" - annotation: !!omap - - ec-code: 1.4.3.5 - - bigg.reaction: PYDXO - - metanetx.reaction: MNXR103365 - - sbo: SBO:0000176 + - ec-code: "1.4.3.5" + - bigg.reaction: "PYDXO" + - metanetx.reaction: "MNXR103365" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0954 - - name: pyridoxamine 5'-phosphate oxidase + - id: "r_0954" + - name: "pyridoxamine 5'-phosphate oxidase" - metabolites: !!omap - s_0419: 1 - s_0803: -1 @@ -46240,18 +46273,18 @@ - s_1395: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR035C - - subsystem: sce00750 Vitamin B6 metabolism + - gene_reaction_rule: "YBR035C" + - subsystem: "sce00750 Vitamin B6 metabolism" - annotation: !!omap - - ec-code: 1.4.3.5 - - bigg.reaction: PYAM5PO - - kegg.reaction: R00277 - - metanetx.reaction: MNXR103355 - - sbo: SBO:0000176 + - ec-code: "1.4.3.5" + - bigg.reaction: "PYAM5PO" + - kegg.reaction: "R00277" + - metanetx.reaction: "MNXR103355" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0955 - - name: pyridoxine 5'-phosphate oxidase + - id: "r_0955" + - name: "pyridoxine 5'-phosphate oxidase" - metabolites: !!omap - s_0837: 1 - s_1275: -1 @@ -46259,18 +46292,18 @@ - s_1398: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR035C - - subsystem: sce00750 Vitamin B6 metabolism + - gene_reaction_rule: "YBR035C" + - subsystem: "sce00750 Vitamin B6 metabolism" - annotation: !!omap - - ec-code: 1.4.3.5 - - bigg.reaction: PDX5POi - - kegg.reaction: R00278 - - metanetx.reaction: MNXR102438 - - sbo: SBO:0000176 + - ec-code: "1.4.3.5" + - bigg.reaction: "PDX5POi" + - kegg.reaction: "R00278" + - metanetx.reaction: "MNXR102438" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0956 - - name: pyridoxine oxidase + - id: "r_0956" + - name: "pyridoxine oxidase" - metabolites: !!omap - s_0837: 1 - s_1275: -1 @@ -46278,18 +46311,18 @@ - s_1396: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR035C - - subsystem: sce00750 Vitamin B6 metabolism + - gene_reaction_rule: "YBR035C" + - subsystem: "sce00750 Vitamin B6 metabolism" - annotation: !!omap - - ec-code: 1.4.3.5 - - bigg.reaction: PYDXNO - - kegg.reaction: R01711 - - metanetx.reaction: MNXR103363 - - sbo: SBO:0000176 + - ec-code: "1.4.3.5" + - bigg.reaction: "PYDXNO" + - kegg.reaction: "R01711" + - metanetx.reaction: "MNXR103363" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0957 - - name: pyrroline-5-carboxylate reductase + - id: "r_0957" + - name: "pyrroline-5-carboxylate reductase" - metabolites: !!omap - s_0118: -1 - s_0794: -2 @@ -46298,22 +46331,22 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER023W + - gene_reaction_rule: "YER023W" - subsystem: - - sce00330 Arginine and proline metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00330 Arginine and proline metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.5.1.2 - - bigg.reaction: P5CR - - kegg.reaction: R01251 - - metanetx.reaction: MNXR102302 - - sbo: SBO:0000176 + - ec-code: "1.5.1.2" + - bigg.reaction: "P5CR" + - kegg.reaction: "R01251" + - metanetx.reaction: "MNXR102302" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0958 - - name: pyruvate carboxylase + - id: "r_0958" + - name: "pyruvate carboxylase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -46324,22 +46357,22 @@ - s_1399: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR218C or YGL062W + - gene_reaction_rule: "YBR218C or YGL062W" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00620 Pyruvate metabolism - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00620 Pyruvate metabolism" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 6.4.1.1 - - bigg.reaction: PC - - kegg.reaction: R00344 - - metanetx.reaction: MNXR102391 - - sbo: SBO:0000176 + - ec-code: "6.4.1.1" + - bigg.reaction: "PC" + - kegg.reaction: "R00344" + - metanetx.reaction: "MNXR102391" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0959 - - name: pyruvate decarboxylase + - id: "r_0959" + - name: "pyruvate decarboxylase" - metabolites: !!omap - s_0359: 1 - s_0456: 1 @@ -46347,25 +46380,25 @@ - s_1399: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR087C or YLR044C or YLR134W + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 4.1.1.- - - 4.1.1.1 - - 4.1.1.43 - - 4.1.1.74 - - bigg.reaction: PYRDC - - kegg.reaction: R00224 - - metanetx.reaction: MNXR103379 - - sbo: SBO:0000176 + - "4.1.1.-" + - "4.1.1.1" + - "4.1.1.43" + - "4.1.1.74" + - bigg.reaction: "PYRDC" + - kegg.reaction: "R00224" + - metanetx.reaction: "MNXR103379" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0960 - - name: pyruvate decarboxylase (acetoin-forming) + - id: "r_0960" + - name: "pyruvate decarboxylase (acetoin-forming)" - metabolites: !!omap - s_0020: 1 - s_0359: -1 @@ -46374,25 +46407,25 @@ - s_1399: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR087C or YLR044C or YLR134W + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 4.1.1.- - - 4.1.1.1 - - 4.1.1.43 - - 4.1.1.74 - - bigg.reaction: PYRDC2 - - metanetx.reaction: MNXR103380 - - pmid: 12902239 - - sbo: SBO:0000176 + - "4.1.1.-" + - "4.1.1.1" + - "4.1.1.43" + - "4.1.1.74" + - bigg.reaction: "PYRDC2" + - metanetx.reaction: "MNXR103380" + - pmid: "12902239" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0961 - - name: pyruvate dehydrogenase + - id: "r_0961" + - name: "pyruvate dehydrogenase" - metabolites: !!omap - s_0376: 1 - s_0460: 1 @@ -46402,32 +46435,32 @@ - s_1401: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR221C and YER178W and YFL018C and YGR193C and YNL071W + - gene_reaction_rule: "YBR221C and YER178W and YFL018C and YGR193C and YNL071W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00020 Citrate cycle (TCA cycle) - - sce00260 Glycine, serine and threonine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.2.4.1 - - 1.8.1.4 - - 2.3.1.12 - - bigg.reaction: PDHm - - kegg.reaction: R00209 - - metanetx.reaction: MNXR102425 - - pmid: 8433986 - - sbo: SBO:0000176 + - "1.2.4.1" + - "1.8.1.4" + - "2.3.1.12" + - bigg.reaction: "PDHm" + - kegg.reaction: "R00209" + - metanetx.reaction: "MNXR102425" + - pmid: "8433986" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0962 - - name: pyruvate kinase + - id: "r_0962" + - name: "pyruvate kinase" - metabolites: !!omap - s_0394: -1 - s_0434: 1 @@ -46436,26 +46469,26 @@ - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL038W or YOR347C + - gene_reaction_rule: "YAL038W or YOR347C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00230 Purine metabolism - - sce00620 Pyruvate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00230 Purine metabolism" + - "sce00620 Pyruvate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.7.1.40 - - bigg.reaction: PYK - - kegg.reaction: R00200 - - metanetx.reaction: MNXR103371 - - pmid: 6185493 - - sbo: SBO:0000176 + - ec-code: "2.7.1.40" + - bigg.reaction: "PYK" + - kegg.reaction: "R00200" + - metanetx.reaction: "MNXR103371" + - pmid: "6185493" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0963 - - name: quinone oxidoreductase + - id: "r_0963" + - name: "quinone oxidoreductase" - metabolites: !!omap - s_0154: 1 - s_0156: -1 @@ -46466,22 +46499,22 @@ - s_1278: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C + - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - subsystem: - - sce00130 Ubiquinone and other terpenoid-quinone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 1.14.13.- - - 2.1.1.114 - - 2.1.1.201 - - 2.1.1.64 - - 2.7.-.- - - sbo: SBO:0000176 + - "1.14.13.-" + - "2.1.1.114" + - "2.1.1.201" + - "2.1.1.64" + - "2.7.-.-" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0964 - - name: reduced glutathione via ABC system + - id: "r_0964" + - name: "reduced glutathione via ABC system" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -46492,15 +46525,15 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR135C + - gene_reaction_rule: "YDR135C" - annotation: !!omap - - metanetx.reaction: MNXR100447 - - pmid: 9729482 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100447" + - pmid: "9729482" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_0965 - - name: riboflavin kinase + - id: "r_0965" + - name: "riboflavin kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -46509,20 +46542,20 @@ - s_1405: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR236C + - gene_reaction_rule: "YDR236C" - subsystem: - - sce00740 Riboflavin metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00740 Riboflavin metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.1.26 - - bigg.reaction: RBFK - - kegg.reaction: R00549 - - metanetx.reaction: MNXR103429 - - sbo: SBO:0000176 + - ec-code: "2.7.1.26" + - bigg.reaction: "RBFK" + - kegg.reaction: "R00549" + - metanetx.reaction: "MNXR103429" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0966 - - name: riboflavin kinase + - id: "r_0966" + - name: "riboflavin kinase" - metabolites: !!omap - s_0397: 1 - s_0437: -1 @@ -46531,20 +46564,20 @@ - s_1407: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR236C + - gene_reaction_rule: "YDR236C" - subsystem: - - sce00740 Riboflavin metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00740 Riboflavin metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.1.26 - - bigg.reaction: RBFKm - - kegg.reaction: R00549 - - metanetx.reaction: MNXR103429 - - sbo: SBO:0000176 + - ec-code: "2.7.1.26" + - bigg.reaction: "RBFKm" + - kegg.reaction: "R00549" + - metanetx.reaction: "MNXR103429" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0967 - - name: riboflavin synthase + - id: "r_0967" + - name: "riboflavin synthase" - metabolites: !!omap - s_0158: -1 - s_0314: -1 @@ -46554,20 +46587,20 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL143C + - gene_reaction_rule: "YOL143C" - subsystem: - - sce00740 Riboflavin metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00740 Riboflavin metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.78 - - bigg.reaction: RBFSa - - kegg.reaction: R04457 - - metanetx.reaction: MNXR97501 - - sbo: SBO:0000176 + - ec-code: "2.5.1.78" + - bigg.reaction: "RBFSa" + - kegg.reaction: "R04457" + - metanetx.reaction: "MNXR97501" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0968 - - name: riboflavin synthase + - id: "r_0968" + - name: "riboflavin synthase" - metabolites: !!omap - s_0314: 1 - s_0328: -2 @@ -46575,20 +46608,20 @@ - s_1405: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR256C + - gene_reaction_rule: "YBR256C" - subsystem: - - sce00740 Riboflavin metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00740 Riboflavin metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.9 - - bigg.reaction: RBFSb - - kegg.reaction: R00066 - - metanetx.reaction: MNXR103430 - - sbo: SBO:0000176 + - ec-code: "2.5.1.9" + - bigg.reaction: "RBFSb" + - kegg.reaction: "R00066" + - metanetx.reaction: "MNXR103430" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0969 - - name: ribokinase + - id: "r_0969" + - name: "ribokinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -46597,19 +46630,19 @@ - s_1408: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR036W - - subsystem: sce00030 Pentose phosphate pathway + - gene_reaction_rule: "YCR036W" + - subsystem: "sce00030 Pentose phosphate pathway" - annotation: !!omap - - ec-code: 2.7.1.15 - - bigg.reaction: RBK - - kegg.reaction: R01051 - - metanetx.reaction: MNXR103431 - - pmid: 1964349 - - sbo: SBO:0000176 + - ec-code: "2.7.1.15" + - bigg.reaction: "RBK" + - kegg.reaction: "R01051" + - metanetx.reaction: "MNXR103431" + - pmid: "1964349" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0970 - - name: ribonucleoside-triphosphate reductase (ATP) + - id: "r_0970" + - name: "ribonucleoside-triphosphate reductase (ATP)" - metabolites: !!omap - s_0434: -1 - s_0586: 1 @@ -46619,16 +46652,16 @@ - s_1620: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR209C + - gene_reaction_rule: "YGR209C" - annotation: !!omap - - bigg.reaction: RNTR1 - - kegg.reaction: R02014 - - metanetx.reaction: MNXR104070 - - sbo: SBO:0000176 + - bigg.reaction: "RNTR1" + - kegg.reaction: "R02014" + - metanetx.reaction: "MNXR104070" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0971 - - name: ribonucleoside-triphosphate reductase (CTP) + - id: "r_0971" + - name: "ribonucleoside-triphosphate reductase (CTP)" - metabolites: !!omap - s_0539: -1 - s_0590: 1 @@ -46638,16 +46671,16 @@ - s_1620: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR209C + - gene_reaction_rule: "YGR209C" - annotation: !!omap - - bigg.reaction: RNTR3 - - kegg.reaction: R02022 - - metanetx.reaction: MNXR104076 - - sbo: SBO:0000176 + - bigg.reaction: "RNTR3" + - kegg.reaction: "R02022" + - metanetx.reaction: "MNXR104076" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0972 - - name: ribonucleoside-triphosphate reductase (GTP) + - id: "r_0972" + - name: "ribonucleoside-triphosphate reductase (GTP)" - metabolites: !!omap - s_0617: 1 - s_0785: -1 @@ -46657,16 +46690,16 @@ - s_1620: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR209C + - gene_reaction_rule: "YGR209C" - annotation: !!omap - - bigg.reaction: RNTR2 - - kegg.reaction: R02020 - - metanetx.reaction: MNXR104073 - - sbo: SBO:0000176 + - bigg.reaction: "RNTR2" + - kegg.reaction: "R02020" + - metanetx.reaction: "MNXR104073" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0973 - - name: ribonucleoside-triphosphate reductase (UTP) + - id: "r_0973" + - name: "ribonucleoside-triphosphate reductase (UTP)" - metabolites: !!omap - s_0656: 1 - s_0794: -1 @@ -46676,16 +46709,16 @@ - s_1620: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR209C + - gene_reaction_rule: "YGR209C" - annotation: !!omap - - bigg.reaction: RNTR4 - - kegg.reaction: R02023 - - metanetx.reaction: MNXR104079 - - sbo: SBO:0000176 + - bigg.reaction: "RNTR4" + - kegg.reaction: "R02023" + - metanetx.reaction: "MNXR104079" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0974 - - name: ribonucleotide reductase + - id: "r_0974" + - name: "ribonucleotide reductase" - metabolites: !!omap - s_0394: -1 - s_0582: 1 @@ -46695,21 +46728,21 @@ - s_1620: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER070W or YGR180C or YIL066C or YJL026W + - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce00480 Glutathione metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce00480 Glutathione metabolism" - annotation: !!omap - - ec-code: 1.17.4.1 - - bigg.reaction: RNDR1 - - kegg.reaction: R02017 - - metanetx.reaction: MNXR104060 - - sbo: SBO:0000176 + - ec-code: "1.17.4.1" + - bigg.reaction: "RNDR1" + - kegg.reaction: "R02017" + - metanetx.reaction: "MNXR104060" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0975 - - name: ribonucleotide reductase + - id: "r_0975" + - name: "ribonucleotide reductase" - metabolites: !!omap - s_0398: -1 - s_0583: 1 @@ -46719,21 +46752,21 @@ - s_1622: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER070W or YGR180C or YIL066C or YJL026W + - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce00480 Glutathione metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce00480 Glutathione metabolism" - annotation: !!omap - - ec-code: 1.17.4.1 - - bigg.reaction: RNDR1n - - kegg.reaction: R02017 - - metanetx.reaction: MNXR104060 - - sbo: SBO:0000176 + - ec-code: "1.17.4.1" + - bigg.reaction: "RNDR1n" + - kegg.reaction: "R02017" + - metanetx.reaction: "MNXR104060" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0976 - - name: ribonucleotide reductase + - id: "r_0976" + - name: "ribonucleotide reductase" - metabolites: !!omap - s_0467: -1 - s_0587: 1 @@ -46743,21 +46776,21 @@ - s_1620: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER070W or YGR180C or YIL066C or YJL026W + - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce00480 Glutathione metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce00480 Glutathione metabolism" - annotation: !!omap - - ec-code: 1.17.4.1 - - bigg.reaction: RNDR3 - - kegg.reaction: R02024 - - metanetx.reaction: MNXR104064 - - sbo: SBO:0000176 + - ec-code: "1.17.4.1" + - bigg.reaction: "RNDR3" + - kegg.reaction: "R02024" + - metanetx.reaction: "MNXR104064" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0977 - - name: ribonucleotide reductase + - id: "r_0977" + - name: "ribonucleotide reductase" - metabolites: !!omap - s_0468: -1 - s_0588: 1 @@ -46767,21 +46800,21 @@ - s_1622: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER070W or YGR180C or YIL066C or YJL026W + - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce00480 Glutathione metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce00480 Glutathione metabolism" - annotation: !!omap - - ec-code: 1.17.4.1 - - bigg.reaction: RNDR3n - - kegg.reaction: R02024 - - metanetx.reaction: MNXR104064 - - sbo: SBO:0000176 + - ec-code: "1.17.4.1" + - bigg.reaction: "RNDR3n" + - kegg.reaction: "R02024" + - metanetx.reaction: "MNXR104064" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0978 - - name: ribonucleotide reductase + - id: "r_0978" + - name: "ribonucleotide reductase" - metabolites: !!omap - s_0613: 1 - s_0739: -1 @@ -46791,21 +46824,21 @@ - s_1620: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER070W or YGR180C or YIL066C or YJL026W + - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce00480 Glutathione metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce00480 Glutathione metabolism" - annotation: !!omap - - ec-code: 1.17.4.1 - - bigg.reaction: RNDR2 - - kegg.reaction: R02019 - - metanetx.reaction: MNXR104062 - - sbo: SBO:0000176 + - ec-code: "1.17.4.1" + - bigg.reaction: "RNDR2" + - kegg.reaction: "R02019" + - metanetx.reaction: "MNXR104062" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0979 - - name: ribonucleotide reductase + - id: "r_0979" + - name: "ribonucleotide reductase" - metabolites: !!omap - s_0614: 1 - s_0742: -1 @@ -46815,43 +46848,43 @@ - s_1622: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER070W or YGR180C or YIL066C or YJL026W + - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - subsystem: - - sce00230 Purine metabolism - - sce00240 Pyrimidine metabolism - - sce00480 Glutathione metabolism + - "sce00230 Purine metabolism" + - "sce00240 Pyrimidine metabolism" + - "sce00480 Glutathione metabolism" - annotation: !!omap - - ec-code: 1.17.4.1 - - bigg.reaction: RNDR2n - - kegg.reaction: R02019 - - metanetx.reaction: MNXR104062 - - sbo: SBO:0000176 + - ec-code: "1.17.4.1" + - bigg.reaction: "RNDR2n" + - kegg.reaction: "R02019" + - metanetx.reaction: "MNXR104062" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0982 - - name: ribose-5-phosphate isomerase + - id: "r_0982" + - name: "ribose-5-phosphate isomerase" - metabolites: !!omap - s_0577: -1 - s_1408: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR095C + - gene_reaction_rule: "YOR095C" - subsystem: - - sce00030 Pentose phosphate pathway - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00030 Pentose phosphate pathway" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 5.3.1.6 - - bigg.reaction: RPI - - metanetx.reaction: MNXR104084 - - pmid: 9763699 - - sbo: SBO:0000176 + - ec-code: "5.3.1.6" + - bigg.reaction: "RPI" + - metanetx.reaction: "MNXR104084" + - pmid: "9763699" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0983 - - name: ribosylnicotinamide kinase + - id: "r_0983" + - name: "ribosylnicotinamide kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -46860,45 +46893,45 @@ - s_1224: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL129W - - subsystem: sce00760 Nicotinate and nicotinamide metabolism + - gene_reaction_rule: "YNL129W" + - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - - 2.7.1.173 - - 2.7.1.22 - - bigg.reaction: RNMK - - kegg.reaction: R02324 - - metanetx.reaction: MNXR104069 - - pmid: 15137942 - - sbo: SBO:0000176 + - "2.7.1.173" + - "2.7.1.22" + - bigg.reaction: "RNMK" + - kegg.reaction: "R02324" + - metanetx.reaction: "MNXR104069" + - pmid: "15137942" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0984 - - name: ribulose 5-phosphate 3-epimerase + - id: "r_0984" + - name: "ribulose 5-phosphate 3-epimerase" - metabolites: !!omap - s_0577: -1 - s_0581: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL121C + - gene_reaction_rule: "YJL121C" - subsystem: - - sce00030 Pentose phosphate pathway - - sce00040 Pentose and glucuronate interconversions - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00030 Pentose phosphate pathway" + - "sce00040 Pentose and glucuronate interconversions" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 5.1.3.1 - - bigg.reaction: RPE - - kegg.reaction: R01529 - - metanetx.reaction: MNXR104083 - - pmid: 9032985 - - sbo: SBO:0000176 + - ec-code: "5.1.3.1" + - bigg.reaction: "RPE" + - kegg.reaction: "R01529" + - metanetx.reaction: "MNXR104083" + - pmid: "9032985" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0985 - - name: S-adenosyl-L-methionine:3-hexaprenyl-4,5-dihydroxylate O-methyltransferase + - id: "r_0985" + - name: "S-adenosyl-L-methionine:3-hexaprenyl-4,5-dihydroxylate O-methyltransferase" - metabolites: !!omap - s_0213: -1 - s_0214: 1 @@ -46907,26 +46940,26 @@ - s_1419: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C + - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - subsystem: - - sce00130 Ubiquinone and other terpenoid-quinone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 1.14.13.- - - 2.1.1.114 - - 2.1.1.201 - - 2.1.1.64 - - 2.7.-.- - - bigg.reaction: 3DH5HPBMTm - - kegg.reaction: R04711 - - metanetx.reaction: MNXR94862 - - pmid: 15792955 - - sbo: SBO:0000176 + - "1.14.13.-" + - "2.1.1.114" + - "2.1.1.201" + - "2.1.1.64" + - "2.7.-.-" + - bigg.reaction: "3DH5HPBMTm" + - kegg.reaction: "R04711" + - metanetx.reaction: "MNXR94862" + - pmid: "15792955" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0986 - - name: S-adenosyl-methionine delta-24-sterol-c-methyltransferase + - id: "r_0986" + - name: "S-adenosyl-methionine delta-24-sterol-c-methyltransferase" - metabolites: !!omap - s_0700: 1 - s_0794: 1 @@ -46935,21 +46968,21 @@ - s_1569: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML008C + - gene_reaction_rule: "YML008C" - subsystem: - - sce00100 Steroid biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.1.1.41 - - bigg.reaction: SAM24MT - - kegg.reaction: R04427 - - metanetx.reaction: MNXR104270 - - sbo: SBO:0000176 + - ec-code: "2.1.1.41" + - bigg.reaction: "SAM24MT" + - kegg.reaction: "R04427" + - metanetx.reaction: "MNXR104270" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0987 - - name: S-formylglutathione hydralase + - id: "r_0987" + - name: "S-formylglutathione hydralase" - metabolites: !!omap - s_0722: 1 - s_0750: 1 @@ -46958,18 +46991,18 @@ - s_1421: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL068C - - subsystem: sce01200 Carbon metabolism + - gene_reaction_rule: "YJL068C" + - subsystem: "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 3.1.2.12 - - bigg.reaction: SFGTHi - - kegg.reaction: R00527 - - metanetx.reaction: MNXR104357 - - sbo: SBO:0000176 + - ec-code: "3.1.2.12" + - bigg.reaction: "SFGTHi" + - kegg.reaction: "R00527" + - metanetx.reaction: "MNXR104357" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0988 - - name: saccharopine dehydrogenase (NAD, L-lysine forming) + - id: "r_0988" + - name: "saccharopine dehydrogenase (NAD, L-lysine forming)" - metabolites: !!omap - s_0180: 1 - s_0794: 1 @@ -46980,24 +47013,24 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIR034C + - gene_reaction_rule: "YIR034C" - subsystem: - - sce00300 Lysine biosynthesis - - sce00310 Lysine degradation - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00300 Lysine biosynthesis" + - "sce00310 Lysine degradation" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.5.1.7 - - bigg.reaction: SACCD2 - - kegg.reaction: R00715 - - metanetx.reaction: MNXR104237 - - pmid: 3928261 - - sbo: SBO:0000176 + - ec-code: "1.5.1.7" + - bigg.reaction: "SACCD2" + - kegg.reaction: "R00715" + - metanetx.reaction: "MNXR104237" + - pmid: "3928261" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0989 - - name: saccharopine dehydrogenase (NADP, L-glutamate forming) + - id: "r_0989" + - name: "saccharopine dehydrogenase (NADP, L-glutamate forming)" - metabolites: !!omap - s_0794: -1 - s_0803: 1 @@ -47008,49 +47041,49 @@ - s_1212: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNR050C + - gene_reaction_rule: "YNR050C" - subsystem: - - sce00300 Lysine biosynthesis - - sce00310 Lysine degradation - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00300 Lysine biosynthesis" + - "sce00310 Lysine degradation" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 1.5.1.10 - - bigg.reaction: SACCD1 - - kegg.reaction: R02315 - - metanetx.reaction: MNXR104236 - - pmid: 3123231 - - sbo: SBO:0000176 + - ec-code: "1.5.1.10" + - bigg.reaction: "SACCD1" + - kegg.reaction: "R02315" + - metanetx.reaction: "MNXR104236" + - pmid: "3123231" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0990 - - name: sedoheptulose 1,7-bisphosphate D-glyceraldehyde-3-phosphate-lyase + - id: "r_0990" + - name: "sedoheptulose 1,7-bisphosphate D-glyceraldehyde-3-phosphate-lyase" - metabolites: !!omap - s_0551: 1 - s_0629: 1 - s_1426: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL060C + - gene_reaction_rule: "YKL060C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00030 Pentose phosphate pathway - - sce00051 Fructose and mannose metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00030 Pentose phosphate pathway" + - "sce00051 Fructose and mannose metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.1.2.13 - - bigg.reaction: FBA3 - - kegg.reaction: R01829 - - metanetx.reaction: MNXR99461 - - sbo: SBO:0000176 + - ec-code: "4.1.2.13" + - bigg.reaction: "FBA3" + - kegg.reaction: "R01829" + - metanetx.reaction: "MNXR99461" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_0992 - - name: serine O-acetyltransferase + - id: "r_0992" + - name: "serine O-acetyltransferase" - metabolites: !!omap - s_0373: -1 - s_0529: 1 @@ -47058,17 +47091,17 @@ - s_1234: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YDL040C and YGR147C and YHR013C) or (YDL040C and YGR147C) + - gene_reaction_rule: "(YDL040C and YGR147C and YHR013C) or (YDL040C and YGR147C)" - annotation: !!omap - - bigg.reaction: SERAT - - kegg.reaction: R00586 - - metanetx.reaction: MNXR104275 - - pmid: 8335636 - - sbo: SBO:0000176 + - bigg.reaction: "SERAT" + - kegg.reaction: "R00586" + - metanetx.reaction: "MNXR104275" + - pmid: "8335636" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0993 - - name: serine palmitotransferase + - id: "r_0993" + - name: "serine palmitotransferase" - metabolites: !!omap - s_0231: 1 - s_0457: 1 @@ -47078,24 +47111,24 @@ - s_1303: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR058C-A and YDR062W and YMR296C) or (YDR062W and YMR296C) + - gene_reaction_rule: "(YBR058C-A and YDR062W and YMR296C) or (YDR062W and YMR296C)" - subsystem: - - sce00600 Sphingolipid metabolism - - sce04138 Autophagy - yeast + - "sce00600 Sphingolipid metabolism" + - "sce04138 Autophagy - yeast" - annotation: !!omap - - ec-code: 2.3.1.50 - - kegg.reaction: R01281 - - metanetx.reaction: MNXR104347 + - ec-code: "2.3.1.50" + - kegg.reaction: "R01281" + - metanetx.reaction: "MNXR104347" - pmid: - - 10713067 - - 18296751 - - 2066332 - - 8058731 - - sbo: SBO:0000176 + - "10713067" + - "18296751" + - "2066332" + - "8058731" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0995 - - name: seryl-tRNA synthetase + - id: "r_0995" + - name: "seryl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -47105,19 +47138,19 @@ - s_1607: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR023W or YHR011W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YDR023W or YHR011W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.11 - - bigg.reaction: SERTRS - - kegg.reaction: R03662 - - metanetx.reaction: MNXR104350 - - pmid: 3031581 - - sbo: SBO:0000176 + - ec-code: "6.1.1.11" + - bigg.reaction: "SERTRS" + - kegg.reaction: "R03662" + - metanetx.reaction: "MNXR104350" + - pmid: "3031581" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0996 - - name: shikimate dehydrogenase + - id: "r_0996" + - name: "shikimate dehydrogenase" - metabolites: !!omap - s_0211: -1 - s_0794: -1 @@ -47126,28 +47159,28 @@ - s_1429: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR127W + - gene_reaction_rule: "YDR127W" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 1.1.1.25 - - 2.5.1.19 - - 2.7.1.71 - - 4.2.1.10 - - 4.2.3.4 - - bigg.reaction: SHK3Dr - - kegg.reaction: R02413 - - metanetx.reaction: MNXR104378 - - pmid: 6355828 - - sbo: SBO:0000176 + - "1.1.1.25" + - "2.5.1.19" + - "2.7.1.71" + - "4.2.1.10" + - "4.2.3.4" + - bigg.reaction: "SHK3Dr" + - kegg.reaction: "R02413" + - metanetx.reaction: "MNXR104378" + - pmid: "6355828" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0997 - - name: shikimate kinase + - id: "r_0997" + - name: "shikimate kinase" - metabolites: !!omap - s_0261: 1 - s_0394: 1 @@ -47156,28 +47189,28 @@ - s_1429: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR127W + - gene_reaction_rule: "YDR127W" - subsystem: - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 1.1.1.25 - - 2.5.1.19 - - 2.7.1.71 - - 4.2.1.10 - - 4.2.3.4 - - bigg.reaction: SHKK - - kegg.reaction: R02412 - - metanetx.reaction: MNXR104379 - - pmid: 6355828 - - sbo: SBO:0000176 + - "1.1.1.25" + - "2.5.1.19" + - "2.7.1.71" + - "4.2.1.10" + - "4.2.3.4" + - bigg.reaction: "SHKK" + - kegg.reaction: "R02412" + - metanetx.reaction: "MNXR104379" + - pmid: "6355828" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0998 - - name: sirohydrochlorin dehydrogenase + - id: "r_0998" + - name: "sirohydrochlorin dehydrogenase" - metabolites: !!omap - s_0794: 2 - s_1198: -1 @@ -47186,23 +47219,23 @@ - s_1431: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR213W + - gene_reaction_rule: "YBR213W" - subsystem: - - sce00860 Porphyrin and chlorophyll metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 1.3.1.76 - - 4.99.1.4 - - bigg.reaction: SHCHD2 - - kegg.reaction: R03947 - - metanetx.reaction: MNXR104373 - - pmid: 11980703 - - sbo: SBO:0000176 + - "1.3.1.76" + - "4.99.1.4" + - bigg.reaction: "SHCHD2" + - kegg.reaction: "R03947" + - metanetx.reaction: "MNXR104373" + - pmid: "11980703" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_0999 - - name: sirohydrochlorin ferrochetalase + - id: "r_0999" + - name: "sirohydrochlorin ferrochetalase" - metabolites: !!omap - s_0794: 2 - s_0924: -1 @@ -47210,23 +47243,23 @@ - s_1431: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR213W + - gene_reaction_rule: "YBR213W" - subsystem: - - sce00860 Porphyrin and chlorophyll metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 1.3.1.76 - - 4.99.1.4 - - bigg.reaction: SHCHF - - kegg.reaction: R02864 - - metanetx.reaction: MNXR104375 - - pmid: 11980703 - - sbo: SBO:0000176 + - "1.3.1.76" + - "4.99.1.4" + - bigg.reaction: "SHCHF" + - kegg.reaction: "R02864" + - metanetx.reaction: "MNXR104375" + - pmid: "11980703" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1000 - - name: fumarate reductase (FMN) + - id: "r_1000" + - name: "fumarate reductase (FMN)" - metabolites: !!omap - s_0714: 1 - s_0717: -1 @@ -47235,19 +47268,19 @@ - s_1458: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YEL047C + - gene_reaction_rule: "YEL047C" - annotation: !!omap - - ec-code: 1.3.1.6 - - kegg.reaction: R00408 - - metanetx.reaction: MNXR129857 + - ec-code: "1.3.1.6" + - kegg.reaction: "R00408" + - metanetx.reaction: "MNXR129857" - pmid: - - 22672422 - - 12393208 - - sbo: SBO:0000176 + - "22672422" + - "12393208" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1001 - - name: spermidine synthase + - id: "r_1001" + - name: "spermidine synthase" - metabolites: !!omap - s_0303: 1 - s_0794: 1 @@ -47256,22 +47289,22 @@ - s_1439: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR069C + - gene_reaction_rule: "YPR069C" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00330 Arginine and proline metabolism - - sce00410 beta-Alanine metabolism - - sce00480 Glutathione metabolism + - "sce00270 Cysteine and methionine metabolism" + - "sce00330 Arginine and proline metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce00480 Glutathione metabolism" - annotation: !!omap - - ec-code: 2.5.1.16 - - bigg.reaction: SPMS - - kegg.reaction: R01920 - - metanetx.reaction: MNXR95860 - - sbo: SBO:0000176 + - ec-code: "2.5.1.16" + - bigg.reaction: "SPMS" + - kegg.reaction: "R01920" + - metanetx.reaction: "MNXR95860" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1002 - - name: spermine synthase + - id: "r_1002" + - name: "spermine synthase" - metabolites: !!omap - s_0303: 1 - s_0794: 1 @@ -47280,43 +47313,43 @@ - s_1442: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR146C + - gene_reaction_rule: "YLR146C" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00330 Arginine and proline metabolism - - sce00410 beta-Alanine metabolism - - sce00480 Glutathione metabolism + - "sce00270 Cysteine and methionine metabolism" + - "sce00330 Arginine and proline metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce00480 Glutathione metabolism" - annotation: !!omap - - ec-code: 2.5.1.22 - - bigg.reaction: SPRMS - - kegg.reaction: R02869 - - metanetx.reaction: MNXR96042 - - sbo: SBO:0000176 + - ec-code: "2.5.1.22" + - bigg.reaction: "SPRMS" + - kegg.reaction: "R02869" + - metanetx.reaction: "MNXR96042" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1003 - - name: sphinganine phosphate lyase + - id: "r_1003" + - name: "sphinganine phosphate lyase" - metabolites: !!omap - s_0825: 1 - s_1240: 1 - s_1446: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR294C - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YDR294C" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 4.1.2.27 - - bigg.reaction: SGPL11r - - kegg.reaction: R02464 - - metanetx.reaction: MNXR104365 + - ec-code: "4.1.2.27" + - bigg.reaction: "SGPL11r" + - kegg.reaction: "R02464" + - metanetx.reaction: "MNXR104365" - pmid: - - 18296751 - - 9334171 - - sbo: SBO:0000176 + - "18296751" + - "9334171" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1004 - - name: sphingoid base-phosphate phosphatase (phytosphingosine 1-phosphate) + - id: "r_1004" + - name: "sphingoid base-phosphate phosphatase (phytosphingosine 1-phosphate)" - metabolites: !!omap - s_0804: -1 - s_1323: 1 @@ -47324,21 +47357,21 @@ - s_1367: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL134W or YKR053C - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YJL134W or YKR053C" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.3.- - - bigg.reaction: SBPP2er - - metanetx.reaction: MNXR104281 + - ec-code: "3.1.3.-" + - bigg.reaction: "SBPP2er" + - metanetx.reaction: "MNXR104281" - pmid: - - 18296751 - - 9353337 - - 9419344 - - sbo: SBO:0000176 + - "18296751" + - "9353337" + - "9419344" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1005 - - name: sphingoid base-phosphate phosphatase (sphinganine 1-phosphatase) + - id: "r_1005" + - name: "sphingoid base-phosphate phosphatase (sphinganine 1-phosphatase)" - metabolites: !!omap - s_0804: -1 - s_1323: 1 @@ -47346,22 +47379,22 @@ - s_1446: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL134W or YKR053C - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YJL134W or YKR053C" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 3.1.3.- - - bigg.reaction: SBPP1er - - kegg.reaction: R06520 - - metanetx.reaction: MNXR104280 + - ec-code: "3.1.3.-" + - bigg.reaction: "SBPP1er" + - kegg.reaction: "R06520" + - metanetx.reaction: "MNXR104280" - pmid: - - 18296751 - - 9353337 - - 9419344 - - sbo: SBO:0000176 + - "18296751" + - "9353337" + - "9419344" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1006 - - name: sphingolipid long chain base kinase (phytosphingosine) + - id: "r_1006" + - name: "sphingolipid long chain base kinase (phytosphingosine)" - metabolites: !!omap - s_0395: 1 - s_0435: -1 @@ -47370,19 +47403,19 @@ - s_1367: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR260W or YOR171C - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YLR260W or YOR171C" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 2.7.1.91 - - metanetx.reaction: MNXR104440 + - ec-code: "2.7.1.91" + - metanetx.reaction: "MNXR104440" - pmid: - - 18296751 - - 9677363 - - sbo: SBO:0000176 + - "18296751" + - "9677363" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1007 - - name: sphingolipid long chain base kinase (sphinganine) + - id: "r_1007" + - name: "sphingolipid long chain base kinase (sphinganine)" - metabolites: !!omap - s_0395: 1 - s_0435: -1 @@ -47391,49 +47424,51 @@ - s_1446: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR260W or YOR171C - - subsystem: sce00600 Sphingolipid metabolism + - gene_reaction_rule: "YLR260W or YOR171C" + - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - - ec-code: 2.7.1.91 - - kegg.reaction: R02976 - - metanetx.reaction: MNXR104439 + - ec-code: "2.7.1.91" + - kegg.reaction: "R02976" + - metanetx.reaction: "MNXR104439" - pmid: - - 18296751 - - 9677363 - - sbo: SBO:0000176 + - "18296751" + - "9677363" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1008 - - name: spontaneous cis-aconitate(3-) to trans-aconitate + - id: "r_1008" + - name: "spontaneous cis-aconitate(3-) to trans-aconitate" - metabolites: !!omap - s_0517: -1 - s_1504: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - kegg.reaction: R02244 - - metanetx.reaction: MNXR95382 - - pmid: 11329290 - - sbo: SBO:0000176 + - kegg.reaction: "R02244" + - metanetx.reaction: "MNXR95382" + - pmid: "11329290" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1009 - - name: spontaneous cis-aconitate(3-) to trans-aconitate + - id: "r_1009" + - name: "spontaneous cis-aconitate(3-) to trans-aconitate" - metabolites: !!omap - s_0516: -1 - s_1503: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ACONIs - - kegg.reaction: R02244 - - metanetx.reaction: MNXR95382 - - pmid: 11329290 - - sbo: SBO:0000176 + - bigg.reaction: "ACONIs" + - kegg.reaction: "R02244" + - metanetx.reaction: "MNXR95382" + - pmid: "11329290" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1010 - - name: squalene epoxidase (NAD) + - id: "r_1010" + - name: "squalene epoxidase (NAD)" - metabolites: !!omap - s_0038: 1 - s_0795: -1 @@ -47444,22 +47479,22 @@ - s_1448: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR175C + - gene_reaction_rule: "YGR175C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00909 Sesquiterpenoid and triterpenoid biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce00909 Sesquiterpenoid and triterpenoid biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.14.14.17 - - bigg.reaction: SQLErx - - metanetx.reaction: MNXR104528 - - pmid: 10622712 - - sbo: SBO:0000176 + - ec-code: "1.14.14.17" + - bigg.reaction: "SQLErx" + - metanetx.reaction: "MNXR104528" + - pmid: "10622712" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1011 - - name: squalene epoxidase (NADP) + - id: "r_1011" + - name: "squalene epoxidase (NADP)" - metabolites: !!omap - s_0038: 1 - s_0795: -1 @@ -47470,23 +47505,23 @@ - s_1448: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR175C + - gene_reaction_rule: "YGR175C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00909 Sesquiterpenoid and triterpenoid biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce00909 Sesquiterpenoid and triterpenoid biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.14.14.17 - - bigg.reaction: SQLEr - - kegg.reaction: R02874 - - metanetx.reaction: MNXR104447 - - pmid: 10622712 - - sbo: SBO:0000176 + - ec-code: "1.14.14.17" + - bigg.reaction: "SQLEr" + - kegg.reaction: "R02874" + - metanetx.reaction: "MNXR104447" + - pmid: "10622712" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1012 - - name: squalene synthase + - id: "r_1012" + - name: "squalene synthase" - metabolites: !!omap - s_0190: -2 - s_0633: 2 @@ -47496,22 +47531,22 @@ - s_1447: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR190W + - gene_reaction_rule: "YHR190W" - subsystem: - - sce00100 Steroid biosynthesis - - sce00909 Sesquiterpenoid and triterpenoid biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00100 Steroid biosynthesis" + - "sce00909 Sesquiterpenoid and triterpenoid biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.5.1.21 - - bigg.reaction: SQLS - - kegg.reaction: R06223 - - metanetx.reaction: MNXR104529 - - sbo: SBO:0000176 + - ec-code: "2.5.1.21" + - bigg.reaction: "SQLS" + - kegg.reaction: "R06223" + - metanetx.reaction: "MNXR104529" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1021 - - name: succinate dehydrogenase (ubiquinone-6) + - id: "r_1021" + - name: "succinate dehydrogenase (ubiquinone-6)" - metabolites: !!omap - s_0727: 1 - s_1460: -1 @@ -47519,23 +47554,23 @@ - s_1537: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (YDR178W and YJL045W and YKL141W and YLL041C) or (YDR178W and YKL141W and YKL148C and YLL041C) or (YLR164W and YJL045W and YKL141W and YLL041C) + - gene_reaction_rule: "(YDR178W and YJL045W and YKL141W and YLL041C) or (YDR178W and YKL141W and YKL148C and YLL041C) or (YLR164W and YJL045W and YKL141W and YLL041C)" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00190 Oxidative phosphorylation - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00190 Oxidative phosphorylation" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 1.3.5.1 - - bigg.reaction: SUCD2_u6m - - metanetx.reaction: MNXR104627 - - pmid: 9929002 - - sbo: SBO:0000176 + - ec-code: "1.3.5.1" + - bigg.reaction: "SUCD2_u6m" + - metanetx.reaction: "MNXR104627" + - pmid: "9929002" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1022 - - name: succinate-CoA ligase (ADP-forming) + - id: "r_1022" + - name: "succinate-CoA ligase (ADP-forming)" - metabolites: !!omap - s_0397: -1 - s_0437: 1 @@ -47545,24 +47580,24 @@ - s_1464: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR244C and YOR142W + - gene_reaction_rule: "YGR244C and YOR142W" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00640 Propanoate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00640 Propanoate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - - ec-code: 6.2.1.5 - - bigg.reaction: SUCOASm - - kegg.reaction: R00405 - - metanetx.reaction: MNXR104635 - - pmid: 9874242 - - sbo: SBO:0000176 + - ec-code: "6.2.1.5" + - bigg.reaction: "SUCOASm" + - kegg.reaction: "R00405" + - metanetx.reaction: "MNXR104635" + - pmid: "9874242" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1023 - - name: succinate-semialdehyde dehydrogenase (NADP) + - id: "r_1023" + - name: "succinate-semialdehyde dehydrogenase (NADP)" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -47572,24 +47607,24 @@ - s_1461: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR006W + - gene_reaction_rule: "YBR006W" - subsystem: - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00310 Lysine degradation - - sce00350 Tyrosine metabolism - - sce00650 Butanoate metabolism - - sce00760 Nicotinate and nicotinamide metabolism + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00310 Lysine degradation" + - "sce00350 Tyrosine metabolism" + - "sce00650 Butanoate metabolism" + - "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - - ec-code: 1.2.1.16 - - bigg.reaction: SSALy - - kegg.reaction: R00714 - - metanetx.reaction: MNXR104541 - - pmid: 11031268 - - sbo: SBO:0000176 + - ec-code: "1.2.1.16" + - bigg.reaction: "SSALy" + - kegg.reaction: "R00714" + - metanetx.reaction: "MNXR104541" + - pmid: "11031268" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1024 - - name: sucrose hydrolyzing enxyme + - id: "r_1024" + - name: "sucrose hydrolyzing enxyme" - metabolites: !!omap - s_0554: 1 - s_0565: 1 @@ -47597,20 +47632,20 @@ - s_1466: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL162W + - gene_reaction_rule: "YIL162W" - subsystem: - - sce00052 Galactose metabolism - - sce00500 Starch and sucrose metabolism + - "sce00052 Galactose metabolism" + - "sce00500 Starch and sucrose metabolism" - annotation: !!omap - - ec-code: 3.2.1.26 - - bigg.reaction: SUCRe - - kegg.reaction: R00801 - - metanetx.reaction: MNXR104638 - - sbo: SBO:0000176 + - ec-code: "3.2.1.26" + - bigg.reaction: "SUCRe" + - kegg.reaction: "R00801" + - metanetx.reaction: "MNXR104638" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1025 - - name: sulfate adenylyltransferase + - id: "r_1025" + - name: "sulfate adenylyltransferase" - metabolites: !!omap - s_0298: 1 - s_0434: -1 @@ -47619,24 +47654,24 @@ - s_1467: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR010W + - gene_reaction_rule: "YJR010W" - subsystem: - - sce00230 Purine metabolism - - sce00261 Monobactam biosynthesis - - sce00450 Selenocompound metabolism - - sce00920 Sulfur metabolism - - sce01130 Biosynthesis of antibiotics + - "sce00230 Purine metabolism" + - "sce00261 Monobactam biosynthesis" + - "sce00450 Selenocompound metabolism" + - "sce00920 Sulfur metabolism" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.7.4 - - bigg.reaction: SADT - - kegg.reaction: R00529 - - metanetx.reaction: MNXR104240 - - pmid: 197388 - - sbo: SBO:0000176 + - ec-code: "2.7.7.4" + - bigg.reaction: "SADT" + - kegg.reaction: "R00529" + - metanetx.reaction: "MNXR104240" + - pmid: "197388" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1026 - - name: sulfate adenylyltransferase (ADP) + - id: "r_1026" + - name: "sulfate adenylyltransferase (ADP)" - metabolites: !!omap - s_0298: 1 - s_0394: -1 @@ -47645,23 +47680,23 @@ - s_1467: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL050C + - gene_reaction_rule: "YCL050C" - subsystem: - - sce00230 Purine metabolism - - sce00920 Sulfur metabolism + - "sce00230 Purine metabolism" + - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: - - 2.7.7.5 - - 2.7.7.53 - - bigg.reaction: SLFAT - - kegg.reaction: R00530 - - metanetx.reaction: MNXR104444 - - pmid: 2556364 - - sbo: SBO:0000176 + - "2.7.7.5" + - "2.7.7.53" + - bigg.reaction: "SLFAT" + - kegg.reaction: "R00530" + - metanetx.reaction: "MNXR104444" + - pmid: "2556364" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1027 - - name: sulfite reductase (NADPH2) + - id: "r_1027" + - name: "sulfite reductase (NADPH2)" - metabolites: !!omap - s_0794: -4 - s_0803: 3 @@ -47671,18 +47706,18 @@ - s_1469: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR030W and YJR137C - - subsystem: sce00920 Sulfur metabolism + - gene_reaction_rule: "YFR030W and YJR137C" + - subsystem: "sce00920 Sulfur metabolism" - annotation: !!omap - - ec-code: 1.8.1.2 - - bigg.reaction: SULR - - kegg.reaction: R00858 - - metanetx.reaction: MNXR104650 - - sbo: SBO:0000176 + - ec-code: "1.8.1.2" + - bigg.reaction: "SULR" + - kegg.reaction: "R00858" + - metanetx.reaction: "MNXR104650" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1028 - - name: taurcholate via ABC system + - id: "r_1028" + - name: "taurcholate via ABC system" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -47693,15 +47728,15 @@ - s_1474: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL048C + - gene_reaction_rule: "YLL048C" - annotation: !!omap - - metanetx.reaction: MNXR104744 - - pmid: 9182565 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104744" + - pmid: "9182565" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1029 - - name: taurine dioxygenase + - id: "r_1029" + - name: "taurine dioxygenase" - metabolites: !!omap - s_0180: -1 - s_0417: 1 @@ -47713,18 +47748,18 @@ - s_1471: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL057C + - gene_reaction_rule: "YLL057C" - annotation: !!omap - - ec-code: 1.14.11.- - - bigg.reaction: TAUDO - - kegg.reaction: R05320 - - metanetx.reaction: MNXR104730 - - pmid: 10482536 - - sbo: SBO:0000176 + - ec-code: "1.14.11.-" + - bigg.reaction: "TAUDO" + - kegg.reaction: "R05320" + - metanetx.reaction: "MNXR104730" + - pmid: "10482536" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1030 - - name: tetrahydrofolate aminomethyltransferase + - id: "r_1030" + - name: "tetrahydrofolate aminomethyltransferase" - metabolites: !!omap - s_0305: -1 - s_0321: 1 @@ -47732,32 +47767,32 @@ - s_0807: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL044C and YDR019C and YFL018C and YMR189W + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00020 Citrate cycle (TCA cycle) - - sce00260 Glycine, serine and threonine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00620 Pyruvate metabolism - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce00640 Propanoate metabolism - - sce00670 One carbon pool by folate - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00620 Pyruvate metabolism" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce00640 Propanoate metabolism" + - "sce00670 One carbon pool by folate" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - - 1.4.4.2 - - 1.8.1.4 - - 2.1.2.10 - - bigg.reaction: THFATm - - kegg.reaction: R02300 - - metanetx.reaction: MNXR99614 - - sbo: SBO:0000176 + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" + - bigg.reaction: "THFATm" + - kegg.reaction: "R02300" + - metanetx.reaction: "MNXR99614" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1031 - - name: tetrahydrofolate:L-glutamate gamma-ligase (ADP-forming) + - id: "r_1031" + - name: "tetrahydrofolate:L-glutamate gamma-ligase (ADP-forming)" - metabolites: !!omap - s_0308: 1 - s_0394: 1 @@ -47768,21 +47803,21 @@ - s_1487: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL132C or YOR241W - - subsystem: sce00790 Folate biosynthesis + - gene_reaction_rule: "YKL132C or YOR241W" + - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - - ec-code: 6.3.2.17 - - bigg.reaction: THFGLUS - - kegg.reaction: R00942 - - metanetx.reaction: MNXR143412 + - ec-code: "6.3.2.17" + - bigg.reaction: "THFGLUS" + - kegg.reaction: "R00942" + - metanetx.reaction: "MNXR143412" - pmid: - - 10799479 - - 21190580 - - sbo: SBO:0000176 + - "10799479" + - "21190580" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1032 - - name: thiamin diphosphatase + - id: "r_1032" + - name: "thiamin diphosphatase" - metabolites: !!omap - s_0796: 1 - s_0805: -2 @@ -47791,19 +47826,19 @@ - s_1490: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR092C + - gene_reaction_rule: "YBR092C" - subsystem: - - sce00730 Thiamine metabolism - - sce00740 Riboflavin metabolism + - "sce00730 Thiamine metabolism" + - "sce00740 Riboflavin metabolism" - annotation: !!omap - - ec-code: 3.1.3.2 - - bigg.reaction: THMDPe - - metanetx.reaction: MNXR138860 - - sbo: SBO:0000176 + - ec-code: "3.1.3.2" + - bigg.reaction: "THMDPe" + - metanetx.reaction: "MNXR138860" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1033 - - name: thiamin phosphatase + - id: "r_1033" + - name: "thiamin phosphatase" - metabolites: !!omap - s_0805: -1 - s_1324: 1 @@ -47811,20 +47846,20 @@ - s_1498: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR092C + - gene_reaction_rule: "YBR092C" - subsystem: - - sce00730 Thiamine metabolism - - sce00740 Riboflavin metabolism + - "sce00730 Thiamine metabolism" + - "sce00740 Riboflavin metabolism" - annotation: !!omap - - ec-code: 3.1.3.2 - - bigg.reaction: THMPe - - kegg.reaction: R02135 - - metanetx.reaction: MNXR104823 - - sbo: SBO:0000176 + - ec-code: "3.1.3.2" + - bigg.reaction: "THMPe" + - kegg.reaction: "R02135" + - metanetx.reaction: "MNXR104823" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1034 - - name: thiamine diphosphokinase + - id: "r_1034" + - name: "thiamine diphosphokinase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -47833,18 +47868,18 @@ - s_1489: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR143C - - subsystem: sce00730 Thiamine metabolism + - gene_reaction_rule: "YOR143C" + - subsystem: "sce00730 Thiamine metabolism" - annotation: !!omap - - ec-code: 2.7.6.2 - - bigg.reaction: TMDPK - - kegg.reaction: R00619 - - metanetx.reaction: MNXR104886 - - sbo: SBO:0000176 + - ec-code: "2.7.6.2" + - bigg.reaction: "TMDPK" + - kegg.reaction: "R00619" + - metanetx.reaction: "MNXR104886" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1035 - - name: thiamine-diphosphate kinase + - id: "r_1035" + - name: "thiamine-diphosphate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -47852,18 +47887,18 @@ - s_1532: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR143C - - subsystem: sce00730 Thiamine metabolism + - gene_reaction_rule: "YOR143C" + - subsystem: "sce00730 Thiamine metabolism" - annotation: !!omap - - ec-code: 2.7.6.2 - - bigg.reaction: TMDPPK - - kegg.reaction: R00616 - - metanetx.reaction: MNXR104888 - - sbo: SBO:0000176 + - ec-code: "2.7.6.2" + - bigg.reaction: "TMDPPK" + - kegg.reaction: "R00616" + - metanetx.reaction: "MNXR104888" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1036 - - name: thiamine-phosphate diphosphorylase + - id: "r_1036" + - name: "thiamine-phosphate diphosphorylase" - metabolites: !!omap - s_0267: -1 - s_0293: -1 @@ -47872,20 +47907,20 @@ - s_1497: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL214C - - subsystem: sce00730 Thiamine metabolism + - gene_reaction_rule: "YPL214C" + - subsystem: "sce00730 Thiamine metabolism" - annotation: !!omap - ec-code: - - 2.5.1.3 - - 2.7.1.50 - - bigg.reaction: TMPPP - - kegg.reaction: R03223 - - metanetx.reaction: MNXR104908 - - sbo: SBO:0000176 + - "2.5.1.3" + - "2.7.1.50" + - bigg.reaction: "TMPPP" + - kegg.reaction: "R03223" + - metanetx.reaction: "MNXR104908" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1037 - - name: thioredoxin + - id: "r_1037" + - name: "thioredoxin" - metabolites: !!omap - s_0800: -1 - s_0808: 2 @@ -47894,17 +47929,17 @@ - s_1622: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YGR209C and YIL010W) or (YIL010W and YLR043C) + - gene_reaction_rule: "(YGR209C and YIL010W) or (YIL010W and YLR043C)" - annotation: !!omap - - ec-code: 1.11.1.15 - - bigg.reaction: THIORDXni - - metanetx.reaction: MNXR104815 - - pmid: 12730197 - - sbo: SBO:0000176 + - ec-code: "1.11.1.15" + - bigg.reaction: "THIORDXni" + - metanetx.reaction: "MNXR104815" + - pmid: "12730197" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1038 - - name: thioredoxin reductase (NADPH) + - id: "r_1038" + - name: "thioredoxin reductase (NADPH)" - metabolites: !!omap - s_1207: 1 - s_1212: -1 @@ -47912,18 +47947,18 @@ - s_1620: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YDR353W and YGR209C) or (YDR353W and YLR043C) or YDR353W - - subsystem: sce00450 Selenocompound metabolism + - gene_reaction_rule: "(YDR353W and YGR209C) or (YDR353W and YLR043C) or YDR353W" + - subsystem: "sce00450 Selenocompound metabolism" - annotation: !!omap - - ec-code: 1.8.1.9 - - bigg.reaction: TRDR - - kegg.reaction: R02016 - - metanetx.reaction: MNXR104766 - - sbo: SBO:0000176 + - ec-code: "1.8.1.9" + - bigg.reaction: "TRDR" + - kegg.reaction: "R02016" + - metanetx.reaction: "MNXR104766" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1039 - - name: thioredoxin reductase (NADPH) + - id: "r_1039" + - name: "thioredoxin reductase (NADPH)" - metabolites: !!omap - s_1210: 1 - s_1214: -1 @@ -47931,46 +47966,46 @@ - s_1621: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YCR083W and YHR106W) or (YCR083W and YPL091W) + - gene_reaction_rule: "(YCR083W and YHR106W) or (YCR083W and YPL091W)" - subsystem: - - sce00450 Selenocompound metabolism - - sce00480 Glutathione metabolism + - "sce00450 Selenocompound metabolism" + - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: - - 1.8.1.7 - - 1.8.1.9 - - bigg.reaction: TRDRm - - kegg.reaction: R02016 - - metanetx.reaction: MNXR104766 - - pmid: 15701801 - - sbo: SBO:0000176 + - "1.8.1.7" + - "1.8.1.9" + - bigg.reaction: "TRDRm" + - kegg.reaction: "R02016" + - metanetx.reaction: "MNXR104766" + - pmid: "15701801" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1040 - - name: threonine aldolase + - id: "r_1040" + - name: "threonine aldolase" - metabolites: !!omap - s_0359: 1 - s_1003: 1 - s_1045: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YEL046C + - gene_reaction_rule: "YEL046C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.1.2.48 - - bigg.reaction: THRA - - kegg.reaction: R00751 - - metanetx.reaction: MNXR104833 - - pmid: 9151955 - - sbo: SBO:0000176 + - ec-code: "4.1.2.48" + - bigg.reaction: "THRA" + - kegg.reaction: "R00751" + - metanetx.reaction: "MNXR104833" + - pmid: "9151955" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1041 - - name: threonine synthase + - id: "r_1041" + - name: "threonine synthase" - metabolites: !!omap - s_0803: -1 - s_1045: 1 @@ -47978,23 +48013,23 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR053W + - gene_reaction_rule: "YCR053W" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00750 Vitamin B6 metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00750 Vitamin B6 metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.3.1 - - bigg.reaction: THRS - - kegg.reaction: R01466 - - metanetx.reaction: MNXR104846 - - pmid: 8082795 - - sbo: SBO:0000176 + - ec-code: "4.2.3.1" + - bigg.reaction: "THRS" + - kegg.reaction: "R01466" + - metanetx.reaction: "MNXR104846" + - pmid: "8082795" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1042 - - name: threonyl-tRNA synthetase + - id: "r_1042" + - name: "threonyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -48004,19 +48039,19 @@ - s_1608: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL078W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YIL078W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.3 - - bigg.reaction: THRTRS - - kegg.reaction: R03663 - - metanetx.reaction: MNXR104848 - - pmid: 2995918 - - sbo: SBO:0000176 + - ec-code: "6.1.1.3" + - bigg.reaction: "THRTRS" + - kegg.reaction: "R03663" + - metanetx.reaction: "MNXR104848" + - pmid: "2995918" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1043 - - name: threonyl-tRNA synthetase + - id: "r_1043" + - name: "threonyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0437: -1 @@ -48026,19 +48061,19 @@ - s_1609: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL194C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YKL194C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.3 - - bigg.reaction: THRTRSm - - kegg.reaction: R03663 - - metanetx.reaction: MNXR104848 - - pmid: 2999113 - - sbo: SBO:0000176 + - ec-code: "6.1.1.3" + - bigg.reaction: "THRTRSm" + - kegg.reaction: "R03663" + - metanetx.reaction: "MNXR104848" + - pmid: "2999113" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1045 - - name: thymidylate synthase + - id: "r_1045" + - name: "thymidylate synthase" - metabolites: !!omap - s_0306: -1 - s_0625: 1 @@ -48046,20 +48081,20 @@ - s_0654: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR074C + - gene_reaction_rule: "YOR074C" - subsystem: - - sce00240 Pyrimidine metabolism - - sce00670 One carbon pool by folate + - "sce00240 Pyrimidine metabolism" + - "sce00670 One carbon pool by folate" - annotation: !!omap - - ec-code: 2.1.1.45 - - bigg.reaction: TMDS - - kegg.reaction: R02101 - - metanetx.reaction: MNXR104889 - - sbo: SBO:0000176 + - ec-code: "2.1.1.45" + - bigg.reaction: "TMDS" + - kegg.reaction: "R02101" + - metanetx.reaction: "MNXR104889" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1046 - - name: trans-aconitate 3-methyltransferase + - id: "r_1046" + - name: "trans-aconitate 3-methyltransferase" - metabolites: !!omap - s_0007: 1 - s_1413: 1 @@ -48067,18 +48102,18 @@ - s_1503: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER175C + - gene_reaction_rule: "YER175C" - annotation: !!omap - - ec-code: 2.1.1.145 - - bigg.reaction: ACONMT - - kegg.reaction: R05763 - - metanetx.reaction: MNXR95383 - - pmid: 15147181 - - sbo: SBO:0000176 + - ec-code: "2.1.1.145" + - bigg.reaction: "ACONMT" + - kegg.reaction: "R05763" + - metanetx.reaction: "MNXR95383" + - pmid: "15147181" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1047 - - name: trans-pentaprenyltranstransferase + - id: "r_1047" + - name: "trans-pentaprenyltranstransferase" - metabolites: !!omap - s_0636: 1 - s_0831: 1 @@ -48086,21 +48121,21 @@ - s_1313: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR003W + - gene_reaction_rule: "YBR003W" - subsystem: - - sce00900 Terpenoid backbone biosynthesis - - sce01110 Biosynthesis of secondary metabolites + - "sce00900 Terpenoid backbone biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.5.1.- - - bigg.reaction: PPTTm - - kegg.reaction: R05613 - - metanetx.reaction: MNXR103150 - - pmid: 2198286 - - sbo: SBO:0000176 + - ec-code: "2.5.1.-" + - bigg.reaction: "PPTTm" + - kegg.reaction: "R05613" + - metanetx.reaction: "MNXR103150" + - pmid: "2198286" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1048 - - name: transaldolase + - id: "r_1048" + - name: "transaldolase" - metabolites: !!omap - s_0551: 1 - s_0557: 1 @@ -48108,23 +48143,23 @@ - s_1427: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR043C or YLR354C + - gene_reaction_rule: "YGR043C or YLR354C" - subsystem: - - sce00030 Pentose phosphate pathway - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00030 Pentose phosphate pathway" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.2.1.2 - - bigg.reaction: TALA - - metanetx.reaction: MNXR124173 - - pmid: 8300619 - - sbo: SBO:0000176 + - ec-code: "2.2.1.2" + - bigg.reaction: "TALA" + - metanetx.reaction: "MNXR124173" + - pmid: "8300619" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1049 - - name: transketolase 1 + - id: "r_1049" + - name: "transketolase 1" - metabolites: !!omap - s_0581: -1 - s_0764: 1 @@ -48132,23 +48167,23 @@ - s_1427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR117C or YPR074C + - gene_reaction_rule: "YBR117C or YPR074C" - subsystem: - - sce00030 Pentose phosphate pathway - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00030 Pentose phosphate pathway" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.2.1.1 - - bigg.reaction: TKT1 - - metanetx.reaction: MNXR104868 - - pmid: 8268320 - - sbo: SBO:0000176 + - ec-code: "2.2.1.1" + - bigg.reaction: "TKT1" + - metanetx.reaction: "MNXR104868" + - pmid: "8268320" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1050 - - name: transketolase 2 + - id: "r_1050" + - name: "transketolase 2" - metabolites: !!omap - s_0551: -1 - s_0557: 1 @@ -48156,22 +48191,22 @@ - s_0764: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR117C or YPR074C + - gene_reaction_rule: "YBR117C or YPR074C" - subsystem: - - sce00030 Pentose phosphate pathway - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00030 Pentose phosphate pathway" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.2.1.1 - - bigg.reaction: TKT2 - - metanetx.reaction: MNXR124172 - - sbo: SBO:0000176 + - ec-code: "2.2.1.1" + - bigg.reaction: "TKT2" + - metanetx.reaction: "MNXR124172" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1051 - - name: trehalose-phosphatase + - id: "r_1051" + - name: "trehalose-phosphatase" - metabolites: !!omap - s_0409: -1 - s_0803: -1 @@ -48179,46 +48214,46 @@ - s_1520: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YBR126C and YDR074W and YML100W) or (YBR126C and YDR074W and YMR261C) - - subsystem: sce00500 Starch and sucrose metabolism + - gene_reaction_rule: "(YBR126C and YDR074W and YML100W) or (YBR126C and YDR074W and YMR261C)" + - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: - - 2.4.1.15 - - 3.1.3.12 - - bigg.reaction: TRE6PP - - kegg.reaction: R02778 - - metanetx.reaction: MNXR104926 - - pmid: 21623372 - - sbo: SBO:0000176 + - "2.4.1.15" + - "3.1.3.12" + - bigg.reaction: "TRE6PP" + - kegg.reaction: "R02778" + - metanetx.reaction: "MNXR104926" + - pmid: "21623372" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1054 - - name: triose-phosphate isomerase + - id: "r_1054" + - name: "triose-phosphate isomerase" - metabolites: !!omap - s_0629: -1 - s_0764: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR050C + - gene_reaction_rule: "YDR050C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00051 Fructose and mannose metabolism - - sce00562 Inositol phosphate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00051 Fructose and mannose metabolism" + - "sce00562 Inositol phosphate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 5.3.1.1 - - bigg.reaction: TPI - - kegg.reaction: R01015 - - metanetx.reaction: MNXR104918 - - pmid: 6759603 - - sbo: SBO:0000176 + - ec-code: "5.3.1.1" + - bigg.reaction: "TPI" + - kegg.reaction: "R01015" + - metanetx.reaction: "MNXR104918" + - pmid: "6759603" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1055 - - name: tryptophan synthase (indoleglycerol phosphate) + - id: "r_1055" + - name: "tryptophan synthase (indoleglycerol phosphate)" - metabolites: !!omap - s_0086: -1 - s_0764: 1 @@ -48227,23 +48262,23 @@ - s_1048: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL026C + - gene_reaction_rule: "YGL026C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01230 Biosynthesis of amino acids + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.20 - - bigg.reaction: TRPS1 - - metanetx.reaction: MNXR132685 - - pmid: 6342605 - - sbo: SBO:0000176 + - ec-code: "4.2.1.20" + - bigg.reaction: "TRPS1" + - metanetx.reaction: "MNXR132685" + - pmid: "6342605" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1056 - - name: tryptophan transaminase + - id: "r_1056" + - name: "tryptophan transaminase" - metabolites: !!omap - s_0180: -1 - s_0855: 1 @@ -48251,34 +48286,34 @@ - s_1048: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL202W + - gene_reaction_rule: "YGL202W" - subsystem: - - sce00130 Ubiquinone and other terpenoid-quinone biosynthesis - - sce00270 Cysteine and methionine metabolism - - sce00300 Lysine biosynthesis - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00380 Tryptophan metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" + - "sce00270 Cysteine and methionine metabolism" + - "sce00300 Lysine biosynthesis" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00380 Tryptophan metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 2.6.1.39 - - 2.6.1.57 - - bigg.reaction: TRPTA - - kegg.reaction: R00684 - - metanetx.reaction: MNXR104947 + - "2.6.1.39" + - "2.6.1.57" + - bigg.reaction: "TRPTA" + - kegg.reaction: "R00684" + - metanetx.reaction: "MNXR104947" - pmid: - - 9491082 - - 9491083 - - sbo: SBO:0000176 + - "9491082" + - "9491083" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1057 - - name: tryptophanyl-tRNA synthetase + - id: "r_1057" + - name: "tryptophanyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -48288,19 +48323,19 @@ - s_1610: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL097C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YOL097C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.2 - - bigg.reaction: TRPTRS - - kegg.reaction: R03664 - - metanetx.reaction: MNXR104948 - - pmid: 9046085 - - sbo: SBO:0000176 + - ec-code: "6.1.1.2" + - bigg.reaction: "TRPTRS" + - kegg.reaction: "R03664" + - metanetx.reaction: "MNXR104948" + - pmid: "9046085" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1058 - - name: tryptophanyl-tRNA synthetase + - id: "r_1058" + - name: "tryptophanyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0437: -1 @@ -48310,19 +48345,19 @@ - s_1611: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR268W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YDR268W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.2 - - bigg.reaction: TRPTRSm - - kegg.reaction: R03664 - - metanetx.reaction: MNXR104948 - - pmid: 2999114 - - sbo: SBO:0000176 + - ec-code: "6.1.1.2" + - bigg.reaction: "TRPTRSm" + - kegg.reaction: "R03664" + - metanetx.reaction: "MNXR104948" + - pmid: "2999114" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1063 - - name: tyrosine transaminase + - id: "r_1063" + - name: "tyrosine transaminase" - metabolites: !!omap - s_0180: 1 - s_0204: -1 @@ -48330,34 +48365,34 @@ - s_1051: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL202W + - gene_reaction_rule: "YGL202W" - subsystem: - - sce00130 Ubiquinone and other terpenoid-quinone biosynthesis - - sce00270 Cysteine and methionine metabolism - - sce00300 Lysine biosynthesis - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00380 Tryptophan metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" + - "sce00270 Cysteine and methionine metabolism" + - "sce00300 Lysine biosynthesis" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00380 Tryptophan metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - - 2.6.1.39 - - 2.6.1.57 - - bigg.reaction: TYRTA - - kegg.reaction: R00734 - - metanetx.reaction: MNXR105000 + - "2.6.1.39" + - "2.6.1.57" + - bigg.reaction: "TYRTA" + - kegg.reaction: "R00734" + - metanetx.reaction: "MNXR105000" - pmid: - - 9491082 - - 9491083 - - sbo: SBO:0000176 + - "9491082" + - "9491083" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1065 - - name: tyrosine transaminase + - id: "r_1065" + - name: "tyrosine transaminase" - metabolites: !!omap - s_0184: 1 - s_0206: -1 @@ -48365,30 +48400,30 @@ - s_1054: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR027C + - gene_reaction_rule: "YLR027C" - subsystem: - - sce00220 Arginine biosynthesis - - sce00250 Alanine, aspartate and glutamate metabolism - - sce00270 Cysteine and methionine metabolism - - sce00330 Arginine and proline metabolism - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00220 Arginine biosynthesis" + - "sce00250 Alanine, aspartate and glutamate metabolism" + - "sce00270 Cysteine and methionine metabolism" + - "sce00330 Arginine and proline metabolism" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.1 - - bigg.reaction: TYRTAip - - kegg.reaction: R00734 - - metanetx.reaction: MNXR105000 - - sbo: SBO:0000176 + - ec-code: "2.6.1.1" + - bigg.reaction: "TYRTAip" + - kegg.reaction: "R00734" + - metanetx.reaction: "MNXR105000" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1066 - - name: tyrosyl-tRNA synthetase + - id: "r_1066" + - name: "tyrosyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -48398,19 +48433,19 @@ - s_1612: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR185C - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YGR185C" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.1 - - bigg.reaction: TYRTRS - - kegg.reaction: R02918 - - metanetx.reaction: MNXR105001 - - pmid: 8509419 - - sbo: SBO:0000176 + - ec-code: "6.1.1.1" + - bigg.reaction: "TYRTRS" + - kegg.reaction: "R02918" + - metanetx.reaction: "MNXR105001" + - pmid: "8509419" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1067 - - name: tyrosyl-tRNA synthetase + - id: "r_1067" + - name: "tyrosyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0437: -1 @@ -48420,19 +48455,19 @@ - s_1613: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL097W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YPL097W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.1 - - bigg.reaction: TYRTRSm - - kegg.reaction: R02918 - - metanetx.reaction: MNXR105001 - - pmid: 3315228 - - sbo: SBO:0000176 + - ec-code: "6.1.1.1" + - bigg.reaction: "TYRTRSm" + - kegg.reaction: "R02918" + - metanetx.reaction: "MNXR105001" + - pmid: "3315228" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1068 - - name: UDP-glucose:ergosterol glucosyltransferase + - id: "r_1068" + - name: "UDP-glucose:ergosterol glucosyltransferase" - metabolites: !!omap - s_0666: -1 - s_0670: 1 @@ -48441,16 +48476,16 @@ - s_1543: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR189C + - gene_reaction_rule: "YLR189C" - annotation: !!omap - - ec-code: 2.4.1.173 - - bigg.reaction: ERGSTGLCT - - pmid: 10224056 - - sbo: SBO:0000176 + - ec-code: "2.4.1.173" + - bigg.reaction: "ERGSTGLCT" + - pmid: "10224056" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1069 - - name: UDP-N-acetylglucosamine diphosphorylase + - id: "r_1069" + - name: "UDP-N-acetylglucosamine diphosphorylase" - metabolites: !!omap - s_0633: 1 - s_0794: -1 @@ -48459,44 +48494,44 @@ - s_1559: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL103C + - gene_reaction_rule: "YDL103C" - subsystem: - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01130 Biosynthesis of antibiotics + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.7.23 - - kegg.reaction: R00416 - - metanetx.reaction: MNXR106519 - - pmid: 16408321 - - sbo: SBO:0000176 + - ec-code: "2.7.7.23" + - kegg.reaction: "R00416" + - metanetx.reaction: "MNXR106519" + - pmid: "16408321" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1070 - - name: UDPglucose 4-epimerase + - id: "r_1070" + - name: "UDPglucose 4-epimerase" - metabolites: !!omap - s_1541: 1 - s_1543: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR019C + - gene_reaction_rule: "YBR019C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00052 Galactose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00052 Galactose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 5.1.3.2 - - 5.1.3.3 - - bigg.reaction: UDPG4E - - kegg.reaction: R00291 - - metanetx.reaction: MNXR143428 - - sbo: SBO:0000176 + - "5.1.3.2" + - "5.1.3.3" + - bigg.reaction: "UDPG4E" + - kegg.reaction: "R00291" + - metanetx.reaction: "MNXR143428" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1071 - - name: UDPglucose--hexose-1-phosphate uridylyltransferase + - id: "r_1071" + - name: "UDPglucose--hexose-1-phosphate uridylyltransferase" - metabolites: !!omap - s_0410: -1 - s_0567: 1 @@ -48504,20 +48539,20 @@ - s_1543: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR018C + - gene_reaction_rule: "YBR018C" - subsystem: - - sce00052 Galactose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism + - "sce00052 Galactose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" - annotation: !!omap - - ec-code: 2.7.7.12 - - bigg.reaction: UGLT - - kegg.reaction: R00955 - - metanetx.reaction: MNXR143436 - - sbo: SBO:0000176 + - ec-code: "2.7.7.12" + - bigg.reaction: "UGLT" + - kegg.reaction: "R00955" + - metanetx.reaction: "MNXR143436" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1072 - - name: UMP kinase + - id: "r_1072" + - name: "UMP kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -48525,18 +48560,18 @@ - s_1545: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL024C - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YKL024C" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 2.7.4.14 - - bigg.reaction: UMPK - - kegg.reaction: R00158 - - metanetx.reaction: MNXR105118 - - sbo: SBO:0000176 + - ec-code: "2.7.4.14" + - bigg.reaction: "UMPK" + - kegg.reaction: "R00158" + - metanetx.reaction: "MNXR105118" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1073 - - name: UMP kinase + - id: "r_1073" + - name: "UMP kinase" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -48544,18 +48579,18 @@ - s_1548: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL024C - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YKL024C" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 2.7.4.14 - - bigg.reaction: UMPKn - - kegg.reaction: R00158 - - metanetx.reaction: MNXR105118 - - sbo: SBO:0000176 + - ec-code: "2.7.4.14" + - bigg.reaction: "UMPKn" + - kegg.reaction: "R00158" + - metanetx.reaction: "MNXR105118" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1074 - - name: uracil phosphoribosyltransferase + - id: "r_1074" + - name: "uracil phosphoribosyltransferase" - metabolites: !!omap - s_0633: 1 - s_1386: -1 @@ -48563,18 +48598,18 @@ - s_1550: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR128W - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YHR128W" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 2.4.2.9 - - bigg.reaction: UPPRT - - kegg.reaction: R00966 - - metanetx.reaction: MNXR105142 - - sbo: SBO:0000176 + - ec-code: "2.4.2.9" + - bigg.reaction: "UPPRT" + - kegg.reaction: "R00966" + - metanetx.reaction: "MNXR105142" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1075 - - name: urea carboxylase + - id: "r_1075" + - name: "urea carboxylase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -48585,22 +48620,22 @@ - s_1554: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR208C + - gene_reaction_rule: "YBR208C" - subsystem: - - sce00220 Arginine biosynthesis - - sce00791 Atrazine degradation + - "sce00220 Arginine biosynthesis" + - "sce00791 Atrazine degradation" - annotation: !!omap - ec-code: - - 3.5.1.54 - - 6.3.4.6 - - bigg.reaction: UREASE - - kegg.reaction: R00774 - - metanetx.reaction: MNXR105149 - - sbo: SBO:0000176 + - "3.5.1.54" + - "6.3.4.6" + - bigg.reaction: "UREASE" + - kegg.reaction: "R00774" + - metanetx.reaction: "MNXR105149" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1076 - - name: ureidoglycolate hydrolase + - id: "r_1076" + - name: "ureidoglycolate hydrolase" - metabolites: !!omap - s_0419: 2 - s_0456: 1 @@ -48610,19 +48645,19 @@ - s_1555: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIR032C - - subsystem: sce00230 Purine metabolism + - gene_reaction_rule: "YIR032C" + - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - - ec-code: 4.3.2.3 - - bigg.reaction: UGLYCH - - kegg.reaction: R00469 - - metanetx.reaction: MNXR105091 - - pmid: 1776360 - - sbo: SBO:0000176 + - ec-code: "4.3.2.3" + - bigg.reaction: "UGLYCH" + - kegg.reaction: "R00469" + - metanetx.reaction: "MNXR105091" + - pmid: "1776360" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1077 - - name: uridine kinase (ATP:uridine) + - id: "r_1077" + - name: "uridine kinase (ATP:uridine)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -48631,18 +48666,18 @@ - s_1556: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR020C or YNR012W - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YDR020C or YNR012W" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 2.7.1.48 - - bigg.reaction: URIK1 - - kegg.reaction: R00964 - - metanetx.reaction: MNXR105162 - - sbo: SBO:0000176 + - ec-code: "2.7.1.48" + - bigg.reaction: "URIK1" + - kegg.reaction: "R00964" + - metanetx.reaction: "MNXR105162" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1078 - - name: uridine kinase (GTP:uridine) + - id: "r_1078" + - name: "uridine kinase (GTP:uridine)" - metabolites: !!omap - s_0739: 1 - s_0785: -1 @@ -48651,18 +48686,18 @@ - s_1556: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR020C or YNR012W - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YDR020C or YNR012W" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 2.7.1.48 - - bigg.reaction: URIK2 - - kegg.reaction: R00968 - - metanetx.reaction: MNXR105163 - - sbo: SBO:0000176 + - ec-code: "2.7.1.48" + - bigg.reaction: "URIK2" + - kegg.reaction: "R00968" + - metanetx.reaction: "MNXR105163" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1079 - - name: uridylate kinase (dUMP) + - id: "r_1079" + - name: "uridylate kinase (dUMP)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -48670,18 +48705,18 @@ - s_0654: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL024C - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YKL024C" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 2.7.4.14 - - bigg.reaction: URIDK2r - - kegg.reaction: R02098 - - metanetx.reaction: MNXR105160 - - sbo: SBO:0000176 + - ec-code: "2.7.4.14" + - bigg.reaction: "URIDK2r" + - kegg.reaction: "R02098" + - metanetx.reaction: "MNXR105160" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1080 - - name: uridylate kinase (dUMP) + - id: "r_1080" + - name: "uridylate kinase (dUMP)" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -48689,18 +48724,18 @@ - s_0655: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL024C - - subsystem: sce00240 Pyrimidine metabolism + - gene_reaction_rule: "YKL024C" + - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - - ec-code: 2.7.4.14 - - bigg.reaction: URIDK2rn - - kegg.reaction: R02098 - - metanetx.reaction: MNXR105160 - - sbo: SBO:0000176 + - ec-code: "2.7.4.14" + - bigg.reaction: "URIDK2rn" + - kegg.reaction: "R02098" + - metanetx.reaction: "MNXR105160" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1081 - - name: uroporphyrinogen decarboxylase (uroporphyrinogen III) + - id: "r_1081" + - name: "uroporphyrinogen decarboxylase (uroporphyrinogen III)" - metabolites: !!omap - s_0456: 4 - s_0538: 1 @@ -48708,20 +48743,20 @@ - s_1558: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR047W + - gene_reaction_rule: "YDR047W" - subsystem: - - sce00860 Porphyrin and chlorophyll metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.37 - - bigg.reaction: UPPDC1 - - kegg.reaction: R03197 - - metanetx.reaction: MNXR105140 - - sbo: SBO:0000176 + - ec-code: "4.1.1.37" + - bigg.reaction: "UPPDC1" + - kegg.reaction: "R03197" + - metanetx.reaction: "MNXR105140" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1082 - - name: uroporphyrinogen methyltransferase + - id: "r_1082" + - name: "uroporphyrinogen methyltransferase" - metabolites: !!omap - s_0794: 1 - s_1375: 1 @@ -48730,40 +48765,40 @@ - s_1558: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR069W + - gene_reaction_rule: "YKR069W" - subsystem: - - sce00860 Porphyrin and chlorophyll metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.1.1.107 - - bigg.reaction: UPP3MT - - kegg.reaction: R03194 - - metanetx.reaction: MNXR105137 - - sbo: SBO:0000176 + - ec-code: "2.1.1.107" + - bigg.reaction: "UPP3MT" + - kegg.reaction: "R03194" + - metanetx.reaction: "MNXR105137" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1083 - - name: uroporphyrinogen-III synthase + - id: "r_1083" + - name: "uroporphyrinogen-III synthase" - metabolites: !!omap - s_0803: 1 - s_1378: -1 - s_1558: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR278W + - gene_reaction_rule: "YOR278W" - subsystem: - - sce00860 Porphyrin and chlorophyll metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00860 Porphyrin and chlorophyll metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.2.1.75 - - bigg.reaction: UPP3S - - kegg.reaction: R03165 - - metanetx.reaction: MNXR105139 - - sbo: SBO:0000176 + - ec-code: "4.2.1.75" + - bigg.reaction: "UPP3S" + - kegg.reaction: "R03165" + - metanetx.reaction: "MNXR105139" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1084 - - name: UTP-glucose-1-phosphate uridylyltransferase + - id: "r_1084" + - name: "UTP-glucose-1-phosphate uridylyltransferase" - metabolites: !!omap - s_0567: -1 - s_0633: 1 @@ -48772,24 +48807,24 @@ - s_1559: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHL012W or YKL035W + - gene_reaction_rule: "YHL012W or YKL035W" - subsystem: - - sce00040 Pentose and glucuronate interconversions - - sce00052 Galactose metabolism - - sce00500 Starch and sucrose metabolism - - sce00520 Amino sugar and nucleotide sugar metabolism - - sce01130 Biosynthesis of antibiotics + - "sce00040 Pentose and glucuronate interconversions" + - "sce00052 Galactose metabolism" + - "sce00500 Starch and sucrose metabolism" + - "sce00520 Amino sugar and nucleotide sugar metabolism" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 2.7.7.9 - - bigg.reaction: GALUi - - kegg.reaction: R00289 - - metanetx.reaction: MNXR143121 - - pmid: 7588797 - - sbo: SBO:0000176 + - ec-code: "2.7.7.9" + - bigg.reaction: "GALUi" + - kegg.reaction: "R00289" + - metanetx.reaction: "MNXR143121" + - pmid: "7588797" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1085 - - name: V-ATPase, Golgi + - id: "r_1085" + - name: "V-ATPase, Golgi" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -48799,23 +48834,23 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR127C and YDL185W and YEL027W and YEL051W and YGR020C and YHR026W and YHR039C-A and YKL080W and YLR447C and YMR054W and YOR332W and YPL234C and YPR036W + - gene_reaction_rule: "YBR127C and YDL185W and YEL027W and YEL051W and YGR020C and YHR026W and YHR039C-A and YKL080W and YLR447C and YMR054W and YOR332W and YPL234C and YPR036W" - subsystem: - - sce00190 Oxidative phosphorylation - - sce04145 Phagosome + - "sce00190 Oxidative phosphorylation" + - "sce04145 Phagosome" - annotation: !!omap - ec-code: - - 3.1.-.- - - 3.6.3.14 - - metanetx.reaction: MNXR96133 + - "3.1.-.-" + - "3.6.3.14" + - metanetx.reaction: "MNXR96133" - pmid: - - 11278748 - - 11836511 - - sbo: SBO:0000655 + - "11278748" + - "11836511" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1086 - - name: V-ATPase, vacuole + - id: "r_1086" + - name: "V-ATPase, vacuole" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -48825,23 +48860,23 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR127C and YDL185W and YEL027W and YEL051W and YGR020C and YHR026W and YHR039C-A and YKL080W and YLR447C and YOR270C and YOR332W and YPL234C and YPR036W + - gene_reaction_rule: "YBR127C and YDL185W and YEL027W and YEL051W and YGR020C and YHR026W and YHR039C-A and YKL080W and YLR447C and YOR270C and YOR332W and YPL234C and YPR036W" - subsystem: - - sce00190 Oxidative phosphorylation - - sce04145 Phagosome + - "sce00190 Oxidative phosphorylation" + - "sce04145 Phagosome" - annotation: !!omap - ec-code: - - 3.1.-.- - - 3.6.3.14 - - metanetx.reaction: MNXR96133 + - "3.1.-.-" + - "3.6.3.14" + - metanetx.reaction: "MNXR96133" - pmid: - - 11278748 - - 11836511 - - sbo: SBO:0000655 + - "11278748" + - "11836511" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1087 - - name: valine transaminase + - id: "r_1087" + - name: "valine transaminase" - metabolites: !!omap - s_0180: -1 - s_0232: 1 @@ -48849,27 +48884,27 @@ - s_1056: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR148W + - gene_reaction_rule: "YJR148W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.42 - - bigg.reaction: VALTA - - kegg.reaction: R01214 - - metanetx.reaction: MNXR96230 - - pmid: 9748245 - - sbo: SBO:0000176 + - ec-code: "2.6.1.42" + - bigg.reaction: "VALTA" + - kegg.reaction: "R01214" + - metanetx.reaction: "MNXR96230" + - pmid: "9748245" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1088 - - name: valine transaminase, mitochondiral + - id: "r_1088" + - name: "valine transaminase, mitochondiral" - metabolites: !!omap - s_0182: -1 - s_0233: 1 @@ -48877,27 +48912,27 @@ - s_1058: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR208W + - gene_reaction_rule: "YHR208W" - subsystem: - - sce00270 Cysteine and methionine metabolism - - sce00280 Valine, leucine and isoleucine degradation - - sce00290 Valine, leucine and isoleucine biosynthesis - - sce00770 Pantothenate and CoA biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00270 Cysteine and methionine metabolism" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce00290 Valine, leucine and isoleucine biosynthesis" + - "sce00770 Pantothenate and CoA biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.6.1.42 - - bigg.reaction: VALTAim - - kegg.reaction: R01214 - - metanetx.reaction: MNXR96230 - - pmid: 9748245 - - sbo: SBO:0000176 + - ec-code: "2.6.1.42" + - bigg.reaction: "VALTAim" + - kegg.reaction: "R01214" + - metanetx.reaction: "MNXR96230" + - pmid: "9748245" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1089 - - name: valyl-tRNA synthetase + - id: "r_1089" + - name: "valyl-tRNA synthetase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -48907,19 +48942,19 @@ - s_1614: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR094W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YGR094W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.9 - - bigg.reaction: VALTRS - - kegg.reaction: R03665 - - metanetx.reaction: MNXR105186 - - pmid: 3294828 - - sbo: SBO:0000176 + - ec-code: "6.1.1.9" + - bigg.reaction: "VALTRS" + - kegg.reaction: "R03665" + - metanetx.reaction: "MNXR105186" + - pmid: "3294828" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1090 - - name: valyl-tRNA synthetase + - id: "r_1090" + - name: "valyl-tRNA synthetase" - metabolites: !!omap - s_0424: 1 - s_0437: -1 @@ -48929,19 +48964,19 @@ - s_1615: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR094W - - subsystem: sce00970 Aminoacyl-tRNA biosynthesis + - gene_reaction_rule: "YGR094W" + - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - - ec-code: 6.1.1.9 - - bigg.reaction: VALTRSm - - kegg.reaction: R03665 - - metanetx.reaction: MNXR105186 - - pmid: 3294828 - - sbo: SBO:0000176 + - ec-code: "6.1.1.9" + - bigg.reaction: "VALTRSm" + - kegg.reaction: "R03665" + - metanetx.reaction: "MNXR105186" + - pmid: "3294828" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1091 - - name: xanthine phosphoribosyltransferase + - id: "r_1091" + - name: "xanthine phosphoribosyltransferase" - metabolites: !!omap - s_0357: -1 - s_0633: 1 @@ -48949,17 +48984,17 @@ - s_1565: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR133W + - gene_reaction_rule: "YJR133W" - annotation: !!omap - - ec-code: 2.4.2.- - - bigg.reaction: XPPT - - kegg.reaction: R02142 - - metanetx.reaction: MNXR105243 - - sbo: SBO:0000176 + - ec-code: "2.4.2.-" + - bigg.reaction: "XPPT" + - kegg.reaction: "R02142" + - metanetx.reaction: "MNXR105243" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1092 - - name: xylitol dehydrogenase (D-xyulose-forming) + - id: "r_1092" + - name: "xylitol dehydrogenase (D-xyulose-forming)" - metabolites: !!omap - s_0580: 1 - s_0794: 1 @@ -48968,18 +49003,18 @@ - s_1566: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR070C - - subsystem: sce00040 Pentose and glucuronate interconversions + - gene_reaction_rule: "YLR070C" + - subsystem: "sce00040 Pentose and glucuronate interconversions" - annotation: !!omap - - ec-code: 1.1.1.9 - - bigg.reaction: XYLTD_D - - kegg.reaction: R01896 - - metanetx.reaction: MNXR105262 - - sbo: SBO:0000176 + - ec-code: "1.1.1.9" + - bigg.reaction: "XYLTD_D" + - kegg.reaction: "R01896" + - metanetx.reaction: "MNXR105262" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1093 - - name: xylose reductase + - id: "r_1093" + - name: "xylose reductase" - metabolites: !!omap - s_0578: -1 - s_0794: -1 @@ -48988,20 +49023,20 @@ - s_1566: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR104W - - subsystem: sce00040 Pentose and glucuronate interconversions + - gene_reaction_rule: "YHR104W" + - subsystem: "sce00040 Pentose and glucuronate interconversions" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.21 - - bigg.reaction: XYLR - - kegg.reaction: R01431 - - metanetx.reaction: MNXR105261 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.21" + - bigg.reaction: "XYLR" + - kegg.reaction: "R01431" + - metanetx.reaction: "MNXR105261" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1094 - - name: xylulokinase + - id: "r_1094" + - name: "xylulokinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -49010,18 +49045,18 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR194C - - subsystem: sce00040 Pentose and glucuronate interconversions + - gene_reaction_rule: "YGR194C" + - subsystem: "sce00040 Pentose and glucuronate interconversions" - annotation: !!omap - - ec-code: 2.7.1.17 - - bigg.reaction: XYLK - - kegg.reaction: R01639 - - metanetx.reaction: MNXR105255 - - sbo: SBO:0000176 + - ec-code: "2.7.1.17" + - bigg.reaction: "XYLK" + - kegg.reaction: "R01639" + - metanetx.reaction: "MNXR105255" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1095 - - name: yUMP synthetase + - id: "r_1095" + - name: "yUMP synthetase" - metabolites: !!omap - s_0803: 1 - s_1388: 1 @@ -49029,60 +49064,63 @@ - s_1550: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YFL001W or YGL063W or YNL292W or YPL212C + - gene_reaction_rule: "YFL001W or YGL063W or YNL292W or YPL212C" - annotation: !!omap - ec-code: - - 5.4.99.- - - 5.4.99.25 - - 5.4.99.44 - - 5.4.99.45 - - sbo: SBO:0000176 + - "5.4.99.-" + - "5.4.99.25" + - "5.4.99.44" + - "5.4.99.45" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1096 - - name: (R)-mevalonate transport + - id: "r_1096" + - name: "(R)-mevalonate transport" - metabolites: !!omap - s_0028: 1 - s_0029: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: MEV_Rt - - metanetx.reaction: MNXR105406 - - pmid: 15215118 - - sbo: SBO:0000655 + - bigg.reaction: "MEV_Rt" + - metanetx.reaction: "MNXR105406" + - pmid: "15215118" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1097 - - name: (R,R)-butanediol transport + - id: "r_1097" + - name: "(R,R)-butanediol transport" - metabolites: !!omap - s_0035: -1 - s_0036: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: BTDt_RR - - metanetx.reaction: MNXR136615 - - pmid: 10938079 - - sbo: SBO:0000655 + - bigg.reaction: "BTDt_RR" + - metanetx.reaction: "MNXR136615" + - pmid: "10938079" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1098 - - name: 2-methylbutyl transport + - id: "r_1098" + - name: "2-methylbutyl transport" - metabolites: !!omap - s_0172: -1 - s_0173: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2MBACt - - metanetx.reaction: MNXR94808 - - pmid: 10653746 - - sbo: SBO:0000655 + - bigg.reaction: "2MBACt" + - metanetx.reaction: "MNXR94808" + - pmid: "10653746" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1099 - - name: 2-oxoadipate and 2-oxoglutarate transport + - id: "r_1099" + - name: "2-oxoadipate and 2-oxoglutarate transport" - metabolites: !!omap - s_0176: 1 - s_0177: -1 @@ -49090,32 +49128,33 @@ - s_0182: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR222W or YPL134C + - gene_reaction_rule: "YOR222W or YPL134C" - annotation: !!omap - - bigg.reaction: 2OXOADPTm - - metanetx.reaction: MNXR94819 + - bigg.reaction: "2OXOADPTm" + - metanetx.reaction: "MNXR94819" - pmid: - - 16844075 - - 11013234 - - sbo: SBO:0000655 + - "16844075" + - "11013234" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1100 - - name: 3-hexaprenyl-4,5-dihydroxybenzoate transport + - id: "r_1100" + - name: "3-hexaprenyl-4,5-dihydroxybenzoate transport" - metabolites: !!omap - s_0212: -1 - s_0213: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 3DH5HPBtm - - metanetx.reaction: MNXR94863 - - pmid: 11583838 - - sbo: SBO:0000655 + - bigg.reaction: "3DH5HPBtm" + - metanetx.reaction: "MNXR94863" + - pmid: "11583838" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1101 - - name: 4-aminobutyrate transport + - id: "r_1101" + - name: "4-aminobutyrate transport" - metabolites: !!omap - s_0734: 1 - s_0736: -1 @@ -49123,15 +49162,15 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL210W or YOR348C + - gene_reaction_rule: "YDL210W or YOR348C" - annotation: !!omap - - bigg.reaction: ABUTt2r - - metanetx.reaction: MNXR94994 - - sbo: SBO:0000655 + - bigg.reaction: "ABUTt2r" + - metanetx.reaction: "MNXR94994" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1102 - - name: 5-aminolevulinate transport + - id: "r_1102" + - name: "5-aminolevulinate transport" - metabolites: !!omap - s_0315: 1 - s_0316: -1 @@ -49139,28 +49178,29 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL210W + - gene_reaction_rule: "YDL210W" - annotation: !!omap - - bigg.reaction: 5AOPt2 - - metanetx.reaction: MNXR95061 - - sbo: SBO:0000655 + - bigg.reaction: "5AOPt2" + - metanetx.reaction: "MNXR95061" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1103 - - name: 5-formyltetrahydrofolic acid transport + - id: "r_1103" + - name: "5-formyltetrahydrofolic acid transport" - metabolites: !!omap - s_0319: 1 - s_0320: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95074 - - pmid: 8573145 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95074" + - pmid: "8573145" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1104 - - name: 8-Amino-7-oxononanoate transport + - id: "r_1104" + - name: "8-Amino-7-oxononanoate transport" - metabolites: !!omap - s_0352: 1 - s_0354: -1 @@ -49168,43 +49208,44 @@ - s_0796: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR056C + - gene_reaction_rule: "YNR056C" - annotation: !!omap - - bigg.reaction: 8AONNt2 - - metanetx.reaction: MNXR95113 - - pmid: 10333520 - - sbo: SBO:0000655 + - bigg.reaction: "8AONNt2" + - metanetx.reaction: "MNXR95113" + - pmid: "10333520" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1106 - - name: acetate transport + - id: "r_1106" + - name: "acetate transport" - metabolites: !!omap - s_0362: -1 - s_0364: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR010C + - gene_reaction_rule: "YCR010C" - annotation: !!omap - - bigg.reaction: ACtr - - metanetx.reaction: MNXR95431 - - pmid: 14968426 - - sbo: SBO:0000655 + - bigg.reaction: "ACtr" + - metanetx.reaction: "MNXR95431" + - pmid: "14968426" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1107 - - name: acetic ester transport + - id: "r_1107" + - name: "acetic ester transport" - metabolites: !!omap - s_0685: -1 - s_0686: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - pmid: 10653746 - - sbo: SBO:0000655 + - pmid: "10653746" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1108 - - name: adenine transport + - id: "r_1108" + - name: "adenine transport" - metabolites: !!omap - s_0383: 1 - s_0384: -1 @@ -49212,15 +49253,15 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER056C or YER060W or YER060W-A or YGL186C + - gene_reaction_rule: "YER056C or YER060W or YER060W-A or YGL186C" - annotation: !!omap - - bigg.reaction: ADEt2 - - metanetx.reaction: MNXR95446 - - sbo: SBO:0000655 + - bigg.reaction: "ADEt2" + - metanetx.reaction: "MNXR95446" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1109 - - name: adenosine transport + - id: "r_1109" + - name: "adenosine transport" - metabolites: !!omap - s_0386: 1 - s_0387: -1 @@ -49228,16 +49269,16 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL022C + - gene_reaction_rule: "YAL022C" - annotation: !!omap - - bigg.reaction: ADNt2 - - metanetx.reaction: MNXR95461 - - pmid: 10827169 - - sbo: SBO:0000655 + - bigg.reaction: "ADNt2" + - metanetx.reaction: "MNXR95461" + - pmid: "10827169" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1110 - - name: ADP/ATP transporter + - id: "r_1110" + - name: "ADP/ATP transporter" - metabolites: !!omap - s_0394: -1 - s_0397: 1 @@ -49245,20 +49286,20 @@ - s_0437: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBL030C or YBR085W or YMR056C + - gene_reaction_rule: "YBL030C or YBR085W or YMR056C" - annotation: !!omap - - bigg.reaction: ATPtm - - kegg.reaction: R00124 - - metanetx.reaction: MNXR96123 + - bigg.reaction: "ATPtm" + - kegg.reaction: "R00124" + - metanetx.reaction: "MNXR96123" - pmid: - - 22672422 - - 7003152 - - 14998997 - - sbo: SBO:0000655 + - "22672422" + - "7003152" + - "14998997" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1111 - - name: ADP/ATP transporter + - id: "r_1111" + - name: "ADP/ATP transporter" - metabolites: !!omap - s_0394: 1 - s_0399: -1 @@ -49268,15 +49309,15 @@ - s_0801: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR128C + - gene_reaction_rule: "YPR128C" - annotation: !!omap - - bigg.reaction: ATPtp_H - - metanetx.reaction: MNXR96139 - - sbo: SBO:0000655 + - bigg.reaction: "ATPtp_H" + - metanetx.reaction: "MNXR96139" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1112 - - name: AKG transporter, mitochonrial + - id: "r_1112" + - name: "AKG transporter, mitochonrial" - metabolites: !!omap - s_0180: -1 - s_0182: 1 @@ -49284,59 +49325,59 @@ - s_0524: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR241W + - gene_reaction_rule: "YMR241W" - annotation: !!omap - - bigg.reaction: AKGCITtm - - metanetx.reaction: MNXR95654 - - pmid: 20371607 - - sbo: SBO:0000655 + - bigg.reaction: "AKGCITtm" + - metanetx.reaction: "MNXR95654" + - pmid: "20371607" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1113 - - name: allantoate uniport + - id: "r_1113" + - name: "allantoate uniport" - metabolites: !!omap - s_0405: 1 - s_0406: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR152W + - gene_reaction_rule: "YJR152W" - annotation: !!omap - - bigg.reaction: ALLTTti - - metanetx.reaction: MNXR95773 - - sbo: SBO:0000655 + - bigg.reaction: "ALLTTti" + - metanetx.reaction: "MNXR95773" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1114 - - name: allantoin uniport + - id: "r_1114" + - name: "allantoin uniport" - metabolites: !!omap - s_0407: 1 - s_0408: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIR028W + - gene_reaction_rule: "YIR028W" - annotation: !!omap - - bigg.reaction: ALLTNti - - metanetx.reaction: MNXR95771 - - sbo: SBO:0000655 + - bigg.reaction: "ALLTNti" + - metanetx.reaction: "MNXR95771" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1115 - - name: ammonia transport + - id: "r_1115" + - name: "ammonia transport" - metabolites: !!omap - s_0419: 1 - s_0420: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR384C or YGR121C or YNL142W or YPR138C + - gene_reaction_rule: "YDR384C or YGR121C or YNL142W or YPR138C" - annotation: !!omap - - bigg.reaction: NH4t - - metanetx.reaction: MNXR101950 - - pmid: 12966084 - - sbo: SBO:0000655 + - bigg.reaction: "NH4t" + - metanetx.reaction: "MNXR101950" + - pmid: "12966084" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1116 - - name: AMP/ATP transporter + - id: "r_1116" + - name: "AMP/ATP transporter" - metabolites: !!omap - s_0423: 1 - s_0426: -1 @@ -49346,15 +49387,15 @@ - s_0801: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR128C + - gene_reaction_rule: "YPR128C" - annotation: !!omap - - bigg.reaction: ATP2tp_H - - metanetx.reaction: MNXR96125 - - sbo: SBO:0000655 + - bigg.reaction: "ATP2tp_H" + - metanetx.reaction: "MNXR96125" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1118 - - name: aspartate-glutamate transporter + - id: "r_1118" + - name: "aspartate-glutamate transporter" - metabolites: !!omap - s_0973: 1 - s_0975: -1 @@ -49362,16 +49403,16 @@ - s_0993: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR021C + - gene_reaction_rule: "YPR021C" - annotation: !!omap - - bigg.reaction: ASPGLU2m - - metanetx.reaction: MNXR96083 - - pmid: 14622413 - - sbo: SBO:0000655 + - bigg.reaction: "ASPGLU2m" + - metanetx.reaction: "MNXR96083" + - pmid: "14622413" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1119 - - name: biotin uptake + - id: "r_1119" + - name: "biotin uptake" - metabolites: !!omap - s_0451: 1 - s_0452: -1 @@ -49379,15 +49420,15 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR065C + - gene_reaction_rule: "YGR065C" - annotation: !!omap - - bigg.reaction: BTNt2i - - metanetx.reaction: MNXR96334 - - sbo: SBO:0000655 + - bigg.reaction: "BTNt2i" + - metanetx.reaction: "MNXR96334" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1120 - - name: carnithine-acetylcarnithine carrier + - id: "r_1120" + - name: "carnithine-acetylcarnithine carrier" - metabolites: !!omap - s_0021: 1 - s_0023: -1 @@ -49395,63 +49436,67 @@ - s_1236: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR100C + - gene_reaction_rule: "YOR100C" - annotation: !!omap - - bigg.reaction: CRNCARtm - - metanetx.reaction: MNXR96898 - - sbo: SBO:0000655 + - bigg.reaction: "CRNCARtm" + - metanetx.reaction: "MNXR96898" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1121 - - name: ceramide-2' (sphinganine:n-C24:0OH) transport + - id: "r_1121" + - name: "ceramide-2' (sphinganine:n-C24:0OH) transport" - metabolites: !!omap - s_0487: -1 - s_0488: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - pmid: 12484746 - - sbo: SBO:0000655 + - pmid: "12484746" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1122 - - name: ceramide-2' (sphinganine:n-C26:0OH) transport + - id: "r_1122" + - name: "ceramide-2' (sphinganine:n-C26:0OH) transport" - metabolites: !!omap - s_0490: -1 - s_0491: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - pmid: 12484746 - - sbo: SBO:0000655 + - pmid: "12484746" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1123 - - name: ceramide-3 (Phytosphingosine:n-C24:0OH) transport + - id: "r_1123" + - name: "ceramide-3 (Phytosphingosine:n-C24:0OH) transport" - metabolites: !!omap - s_0493: -1 - s_0494: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - pmid: 12484746 - - sbo: SBO:0000655 + - pmid: "12484746" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1124 - - name: ceramide-3 (Phytosphingosine:n-C26:0OH) transport + - id: "r_1124" + - name: "ceramide-3 (Phytosphingosine:n-C26:0OH) transport" - metabolites: !!omap - s_0496: -1 - s_0497: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - pmid: 12484746 - - sbo: SBO:0000655 + - pmid: "12484746" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1125 - - name: choline transport + - id: "r_1125" + - name: "choline transport" - metabolites: !!omap - s_0512: 1 - s_0513: -1 @@ -49459,15 +49504,15 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL077C + - gene_reaction_rule: "YGL077C" - annotation: !!omap - - bigg.reaction: CHLt2 - - metanetx.reaction: MNXR96692 - - sbo: SBO:0000655 + - bigg.reaction: "CHLt2" + - metanetx.reaction: "MNXR96692" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1126 - - name: citrate transport + - id: "r_1126" + - name: "citrate transport" - metabolites: !!omap - s_0066: 1 - s_0068: -1 @@ -49475,15 +49520,15 @@ - s_0524: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR291C + - gene_reaction_rule: "YBR291C" - annotation: !!omap - - bigg.reaction: CITtam - - metanetx.reaction: MNXR96753 - - sbo: SBO:0000655 + - bigg.reaction: "CITtam" + - metanetx.reaction: "MNXR96753" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1127 - - name: citrate transport + - id: "r_1127" + - name: "citrate transport" - metabolites: !!omap - s_0522: -1 - s_0524: 1 @@ -49491,15 +49536,15 @@ - s_1361: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR291C + - gene_reaction_rule: "YBR291C" - annotation: !!omap - - bigg.reaction: CITtbm - - metanetx.reaction: MNXR96754 - - sbo: SBO:0000655 + - bigg.reaction: "CITtbm" + - metanetx.reaction: "MNXR96754" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1128 - - name: citrate transport + - id: "r_1128" + - name: "citrate transport" - metabolites: !!omap - s_0522: -1 - s_0524: 1 @@ -49507,30 +49552,30 @@ - s_0941: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR291C + - gene_reaction_rule: "YBR291C" - annotation: !!omap - - bigg.reaction: CITtcm - - metanetx.reaction: MNXR96755 - - sbo: SBO:0000655 + - bigg.reaction: "CITtcm" + - metanetx.reaction: "MNXR96755" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1129 - - name: coenzyme A transport + - id: "r_1129" + - name: "coenzyme A transport" - metabolites: !!omap - s_0529: -1 - s_0532: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR002W + - gene_reaction_rule: "YHR002W" - annotation: !!omap - - bigg.reaction: COAtim - - metanetx.reaction: MNXR96815 - - pmid: 11158296 - - sbo: SBO:0000655 + - bigg.reaction: "COAtim" + - metanetx.reaction: "MNXR96815" + - pmid: "11158296" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1130 - - name: CTP transport + - id: "r_1130" + - name: "CTP transport" - metabolites: !!omap - s_0526: 1 - s_0528: -1 @@ -49540,14 +49585,14 @@ - s_0799: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR192W + - gene_reaction_rule: "YBR192W" - annotation: !!omap - - pmid: 16844075 - - sbo: SBO:0000655 + - pmid: "16844075" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1131 - - name: CTP/CMP antiport + - id: "r_1131" + - name: "CTP/CMP antiport" - metabolites: !!omap - s_0526: 1 - s_0528: -1 @@ -49557,16 +49602,16 @@ - s_0799: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR192W + - gene_reaction_rule: "YBR192W" - annotation: !!omap - - bigg.reaction: CTPtm - - metanetx.reaction: MNXR96947 - - pmid: 16194150 - - sbo: SBO:0000655 + - bigg.reaction: "CTPtm" + - metanetx.reaction: "MNXR96947" + - pmid: "16194150" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1132 - - name: cytidine transport + - id: "r_1132" + - name: "cytidine transport" - metabolites: !!omap - s_0543: 1 - s_0544: -1 @@ -49574,16 +49619,16 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL022C + - gene_reaction_rule: "YAL022C" - annotation: !!omap - - bigg.reaction: CYTDt2 - - metanetx.reaction: MNXR97044 - - pmid: 10827170 - - sbo: SBO:0000655 + - bigg.reaction: "CYTDt2" + - metanetx.reaction: "MNXR97044" + - pmid: "10827170" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1133 - - name: cytosine transport + - id: "r_1133" + - name: "cytosine transport" - metabolites: !!omap - s_0545: 1 - s_0546: -1 @@ -49591,15 +49636,15 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER056C or YER060W or YER060W-A or YGL186C + - gene_reaction_rule: "YER056C or YER060W or YER060W-A or YGL186C" - annotation: !!omap - - bigg.reaction: CSNt2 - - metanetx.reaction: MNXR96929 - - sbo: SBO:0000655 + - bigg.reaction: "CSNt2" + - metanetx.reaction: "MNXR96929" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1134 - - name: D-fructose transport + - id: "r_1134" + - name: "D-fructose transport" - metabolites: !!omap - s_0553: 1 - s_0554: -1 @@ -49607,16 +49652,16 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W - - subsystem: sce04113 Meiosis - yeast + - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" + - subsystem: "sce04113 Meiosis - yeast" - annotation: !!omap - - bigg.reaction: FRUt2 - - metanetx.reaction: MNXR99664 - - sbo: SBO:0000655 + - bigg.reaction: "FRUt2" + - metanetx.reaction: "MNXR99664" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1135 - - name: D-galactose transport + - id: "r_1135" + - name: "D-galactose transport" - metabolites: !!omap - s_0558: 1 - s_0559: -1 @@ -49624,16 +49669,16 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR536W or YFL011W or YJL219W or YLR081W or YNL318C or YOL156W - - subsystem: sce04113 Meiosis - yeast + - gene_reaction_rule: "YDR536W or YFL011W or YJL219W or YLR081W or YNL318C or YOL156W" + - subsystem: "sce04113 Meiosis - yeast" - annotation: !!omap - - bigg.reaction: GALt2 - - metanetx.reaction: MNXR100026 - - sbo: SBO:0000655 + - bigg.reaction: "GALt2" + - metanetx.reaction: "MNXR100026" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1136 - - name: D-lactate transport + - id: "r_1136" + - name: "D-lactate transport" - metabolites: !!omap - s_0025: 1 - s_0026: -1 @@ -49641,15 +49686,15 @@ - s_0796: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL217W + - gene_reaction_rule: "YKL217W" - annotation: !!omap - - bigg.reaction: D_LACt2 - - metanetx.reaction: MNXR97838 - - sbo: SBO:0000655 + - bigg.reaction: "D_LACt2" + - metanetx.reaction: "MNXR97838" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1137 - - name: D-lactate transport + - id: "r_1137" + - name: "D-lactate transport" - metabolites: !!omap - s_0025: -1 - s_0027: 1 @@ -49657,15 +49702,16 @@ - s_0799: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: D_LACtm - - metanetx.reaction: MNXR97838 - - pmid: 14871487 - - sbo: SBO:0000655 + - bigg.reaction: "D_LACtm" + - metanetx.reaction: "MNXR97838" + - pmid: "14871487" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1138 - - name: D-lactate/pyruvate antiport + - id: "r_1138" + - name: "D-lactate/pyruvate antiport" - metabolites: !!omap - s_0025: -1 - s_0027: 1 @@ -49673,15 +49719,16 @@ - s_1401: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: D_LACt2m - - metanetx.reaction: MNXR97839 - - pmid: 14871487 - - sbo: SBO:0000655 + - bigg.reaction: "D_LACt2m" + - metanetx.reaction: "MNXR97839" + - pmid: "14871487" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1139 - - name: D-mannose transport + - id: "r_1139" + - name: "D-mannose transport" - metabolites: !!omap - s_0571: 1 - s_0572: -1 @@ -49689,133 +49736,134 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W - - subsystem: sce04113 Meiosis - yeast + - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" + - subsystem: "sce04113 Meiosis - yeast" - annotation: !!omap - - bigg.reaction: MANt2 - - metanetx.reaction: MNXR101403 - - sbo: SBO:0000655 + - bigg.reaction: "MANt2" + - metanetx.reaction: "MNXR101403" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1146 - - name: episterol transport + - id: "r_1146" + - name: "episterol transport" - metabolites: !!omap - s_0657: 1 - s_0659: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL013C or YOR011W + - gene_reaction_rule: "YIL013C or YOR011W" - annotation: !!omap - - bigg.reaction: EPISTt - - metanetx.reaction: MNXR97944 - - pmid: 12077145 - - sbo: SBO:0000655 + - bigg.reaction: "EPISTt" + - metanetx.reaction: "MNXR97944" + - pmid: "12077145" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1147 - - name: ergosterol transport + - id: "r_1147" + - name: "ergosterol transport" - metabolites: !!omap - s_0666: 1 - s_0668: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL013C or YOR011W + - gene_reaction_rule: "YIL013C or YOR011W" - annotation: !!omap - - bigg.reaction: ERGSTt - - metanetx.reaction: MNXR97950 - - pmid: 12077145 - - sbo: SBO:0000655 + - bigg.reaction: "ERGSTt" + - metanetx.reaction: "MNXR97950" + - pmid: "12077145" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1148 - - name: ergosterol transport + - id: "r_1148" + - name: "ergosterol transport" - metabolites: !!omap - s_0665: -1 - s_0666: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL013C or YOR011W + - gene_reaction_rule: "YIL013C or YOR011W" - annotation: !!omap - - metanetx.reaction: MNXR97950 - - pmid: 17434796 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR97950" + - pmid: "17434796" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1149 - - name: ethanolamine transport + - id: "r_1149" + - name: "ethanolamine transport" - metabolites: !!omap - s_0683: 1 - s_0684: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL077C + - gene_reaction_rule: "YGL077C" - annotation: !!omap - - bigg.reaction: ETHAt - - metanetx.reaction: MNXR97974 - - pmid: 15201274 - - sbo: SBO:0000655 + - bigg.reaction: "ETHAt" + - metanetx.reaction: "MNXR97974" + - pmid: "15201274" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1151 - - name: fadH2 transport + - id: "r_1151" + - name: "fadH2 transport" - metabolites: !!omap - s_0689: 1 - s_0690: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL134W + - gene_reaction_rule: "YIL134W" - annotation: !!omap - - bigg.reaction: FADH2tm - - metanetx.reaction: MNXR99212 - - pmid: 8631763 - - sbo: SBO:0000655 + - bigg.reaction: "FADH2tm" + - metanetx.reaction: "MNXR99212" + - pmid: "8631763" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1161 - - name: fecosterol transport + - id: "r_1161" + - name: "fecosterol transport" - metabolites: !!omap - s_0700: 1 - s_0702: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL013C or YOR011W + - gene_reaction_rule: "YIL013C or YOR011W" - annotation: !!omap - - bigg.reaction: FECOSTt - - metanetx.reaction: MNXR99529 - - pmid: 12077145 - - sbo: SBO:0000655 + - bigg.reaction: "FECOSTt" + - metanetx.reaction: "MNXR99529" + - pmid: "12077145" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1162 - - name: fecosterol transport + - id: "r_1162" + - name: "fecosterol transport" - metabolites: !!omap - s_0699: -1 - s_0700: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL013C or YOR011W + - gene_reaction_rule: "YIL013C or YOR011W" - annotation: !!omap - - metanetx.reaction: MNXR99529 - - pmid: 17434796 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99529" + - pmid: "17434796" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1164 - - name: folic acid transport + - id: "r_1164" + - name: "folic acid transport" - metabolites: !!omap - s_0719: 1 - s_0720: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: r0963 - - metanetx.reaction: MNXR105408 - - pmid: 15215118 - - sbo: SBO:0000655 + - bigg.reaction: "r0963" + - metanetx.reaction: "MNXR105408" + - pmid: "15215118" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1165 - - name: GDP-mannose antiport + - id: "r_1165" + - name: "GDP-mannose antiport" - metabolites: !!omap - s_0743: -1 - s_0744: 1 @@ -49823,91 +49871,91 @@ - s_0783: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL225W + - gene_reaction_rule: "YGL225W" - annotation: !!omap - - bigg.reaction: GDPMANNtg - - metanetx.reaction: MNXR100090 - - pmid: 9395539 - - sbo: SBO:0000655 + - bigg.reaction: "GDPMANNtg" + - metanetx.reaction: "MNXR100090" + - pmid: "9395539" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1166 - - name: glucose transport + - id: "r_1166" + - name: "glucose transport" - metabolites: !!omap - s_0563: 1 - s_0565: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL245C or YDL247W or YDR342C or YDR343C or YDR345C or YDR536W or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YJR160C or YLR081W or YMR011W or YNR072W or YOL156W or YDR387C - - subsystem: sce04113 Meiosis - yeast + - gene_reaction_rule: "YDL245C or YDL247W or YDR342C or YDR343C or YDR345C or YDR536W or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YJR160C or YLR081W or YMR011W or YNR072W or YOL156W or YDR387C" + - subsystem: "sce04113 Meiosis - yeast" - annotation: !!omap - - bigg.reaction: GLCt1 - - metanetx.reaction: MNXR100188 - - pmid: 10618490 - - sbo: SBO:0000655 + - bigg.reaction: "GLCt1" + - metanetx.reaction: "MNXR100188" + - pmid: "10618490" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1167 - - name: glutathione transport + - id: "r_1167" + - name: "glutathione transport" - metabolites: !!omap - s_0750: 1 - s_0751: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL212C + - gene_reaction_rule: "YJL212C" - annotation: !!omap - - bigg.reaction: GTHRDt2 - - metanetx.reaction: MNXR100449 - - pmid: 10788431 - - sbo: SBO:0000655 + - bigg.reaction: "GTHRDt2" + - metanetx.reaction: "MNXR100449" + - pmid: "10788431" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1168 - - name: glutathione transport + - id: "r_1168" + - name: "glutathione transport" - metabolites: !!omap - s_0750: -1 - s_0753: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR135C or YLL015W + - gene_reaction_rule: "YDR135C or YLL015W" - annotation: !!omap - - metanetx.reaction: MNXR100449 - - pmid: 10790694 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100449" + - pmid: "10790694" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1169 - - name: glycero-3-phospho-1-inositol transport + - id: "r_1169" + - name: "glycero-3-phospho-1-inositol transport" - metabolites: !!omap - s_0079: 1 - s_0080: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR098C + - gene_reaction_rule: "YCR098C" - annotation: !!omap - - bigg.reaction: G3PIt - - metanetx.reaction: MNXR99888 - - pmid: 15145930 - - sbo: SBO:0000655 + - bigg.reaction: "G3PIt" + - metanetx.reaction: "MNXR99888" + - pmid: "15145930" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1170 - - name: glycero-3-phosphocholine transport + - id: "r_1170" + - name: "glycero-3-phosphocholine transport" - metabolites: !!omap - s_1433: 1 - s_1435: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR098C + - gene_reaction_rule: "YCR098C" - annotation: !!omap - - bigg.reaction: G3PCt - - metanetx.reaction: MNXR99874 - - pmid: 15145930 - - sbo: SBO:0000655 + - bigg.reaction: "G3PCt" + - metanetx.reaction: "MNXR99874" + - pmid: "15145930" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1171 - - name: glycerol transport + - id: "r_1171" + - name: "glycerol transport" - metabolites: !!omap - s_0765: 1 - s_0766: -1 @@ -49915,32 +49963,32 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR536W or YGL084C or YPL189W + - gene_reaction_rule: "YDR536W or YGL084C or YPL189W" - annotation: !!omap - - bigg.reaction: GLYCt2 - - metanetx.reaction: MNXR100344 + - bigg.reaction: "GLYCt2" + - metanetx.reaction: "MNXR100344" - pmid: - - 15703210 - - 21623372 - - sbo: SBO:0000655 + - "15703210" + - "21623372" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1172 - - name: glycerol transport via channel + - id: "r_1172" + - name: "glycerol transport via channel" - metabolites: !!omap - s_0765: -1 - s_0766: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFL054C or YLL043W + - gene_reaction_rule: "YFL054C or YLL043W" - annotation: !!omap - - bigg.reaction: GLYCt - - metanetx.reaction: MNXR100343 - - sbo: SBO:0000655 + - bigg.reaction: "GLYCt" + - metanetx.reaction: "MNXR100343" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1173 - - name: glycine transport + - id: "r_1173" + - name: "glycine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -49948,30 +49996,31 @@ - s_1004: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCL025C or YKR039W or YOL020W or YOR348C or YPL265W + - gene_reaction_rule: "YCL025C or YKR039W or YOL020W or YOR348C or YPL265W" - annotation: !!omap - - bigg.reaction: GLYt2r - - metanetx.reaction: MNXR100368 - - pmid: 9573211 - - sbo: SBO:0000655 + - bigg.reaction: "GLYt2r" + - metanetx.reaction: "MNXR100368" + - pmid: "9573211" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1174 - - name: glycogen vacuolar 'transport' via autophagy + - id: "r_1174" + - name: "glycogen vacuolar 'transport' via autophagy" - metabolites: !!omap - s_0773: -1 - s_0774: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GLCNtv - - metanetx.reaction: MNXR100211 - - pmid: 11486014 - - sbo: SBO:0000655 + - bigg.reaction: "GLCNtv" + - metanetx.reaction: "MNXR100211" + - pmid: "11486014" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1175 - - name: GTP/GDP translocase + - id: "r_1175" + - name: "GTP/GDP translocase" - metabolites: !!omap - s_0739: 1 - s_0741: -1 @@ -49981,16 +50030,16 @@ - s_0799: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL198C + - gene_reaction_rule: "YDL198C" - annotation: !!omap - - bigg.reaction: GTPt2m - - metanetx.reaction: MNXR100461 - - pmid: 14998997 - - sbo: SBO:0000655 + - bigg.reaction: "GTPt2m" + - metanetx.reaction: "MNXR100461" + - pmid: "14998997" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1176 - - name: guanine transport + - id: "r_1176" + - name: "guanine transport" - metabolites: !!omap - s_0787: 1 - s_0788: -1 @@ -49998,15 +50047,15 @@ - s_0796: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER056C or YER060W or YER060W-A or YGL186C + - gene_reaction_rule: "YER056C or YER060W or YER060W-A or YGL186C" - annotation: !!omap - - bigg.reaction: GUAt2r - - metanetx.reaction: MNXR100466 - - sbo: SBO:0000655 + - bigg.reaction: "GUAt2r" + - metanetx.reaction: "MNXR100466" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1177 - - name: inositol transport + - id: "r_1177" + - name: "inositol transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50014,87 +50063,90 @@ - s_1154: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR497C or YOL103W + - gene_reaction_rule: "YDR497C or YOL103W" - annotation: !!omap - - bigg.reaction: INSTt2 - - metanetx.reaction: MNXR100841 - - sbo: SBO:0000655 + - bigg.reaction: "INSTt2" + - metanetx.reaction: "MNXR100841" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1178 - - name: iron (II) transport + - id: "r_1178" + - name: "iron (II) transport" - metabolites: !!omap - s_0924: 1 - s_0925: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR319C or YMR058W + - gene_reaction_rule: "YMR319C or YMR058W" - annotation: !!omap - - bigg.reaction: FE2t - - metanetx.reaction: MNXR99505 - - pmid: 9115232 - - sbo: SBO:0000655 + - bigg.reaction: "FE2t" + - metanetx.reaction: "MNXR99505" + - pmid: "9115232" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1179 - - name: iron (II) transport + - id: "r_1179" + - name: "iron (II) transport" - metabolites: !!omap - s_0924: -1 - s_0926: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL133W or YKR052C + - gene_reaction_rule: "YJL133W or YKR052C" - annotation: !!omap - - bigg.reaction: FE2utm - - metanetx.reaction: MNXR99505 - - pmid: 9660806 - - sbo: SBO:0000655 + - bigg.reaction: "FE2utm" + - metanetx.reaction: "MNXR99505" + - pmid: "9660806" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1180 - - name: isoamyl acetate transport + - id: "r_1180" + - name: "isoamyl acetate transport" - metabolites: !!omap - s_0927: -1 - s_0928: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: IAMACt - - metanetx.reaction: MNXR100774 - - pmid: 10653746 - - sbo: SBO:0000655 + - bigg.reaction: "IAMACt" + - metanetx.reaction: "MNXR100774" + - pmid: "10653746" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1181 - - name: isobutyl acetate transport + - id: "r_1181" + - name: "isobutyl acetate transport" - metabolites: !!omap - s_0935: -1 - s_0936: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: IBUTACt - - metanetx.reaction: MNXR100779 - - pmid: 10653746 - - sbo: SBO:0000655 + - bigg.reaction: "IBUTACt" + - metanetx.reaction: "MNXR100779" + - pmid: "10653746" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1182 - - name: isopentenyl diphosphate transport + - id: "r_1182" + - name: "isopentenyl diphosphate transport" - metabolites: !!omap - s_0943: -1 - s_0945: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: IPDPtm - - metanetx.reaction: MNXR100876 - - pmid: 11583838 - - sbo: SBO:0000655 + - bigg.reaction: "IPDPtm" + - metanetx.reaction: "MNXR100876" + - pmid: "11583838" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1183 - - name: L-alanine transport + - id: "r_1183" + - name: "L-alanine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50102,18 +50154,18 @@ - s_0956: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR068C or YCL025C or YDR046C or YKR039W or YOL020W or YOR348C or YPL265W + - gene_reaction_rule: "YBR068C or YCL025C or YDR046C or YKR039W or YOL020W or YOR348C or YPL265W" - annotation: !!omap - - bigg.reaction: ALAt2r - - metanetx.reaction: MNXR95704 + - bigg.reaction: "ALAt2r" + - metanetx.reaction: "MNXR95704" - pmid: - - 7495881 - - 9489675 - - sbo: SBO:0000655 + - "7495881" + - "9489675" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1184 - - name: L-arganine transport + - id: "r_1184" + - name: "L-arganine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50121,15 +50173,15 @@ - s_0966: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YEL063C or YKR039W or YNL270C + - gene_reaction_rule: "YEL063C or YKR039W or YNL270C" - annotation: !!omap - - bigg.reaction: ARGt2r - - metanetx.reaction: MNXR95953 - - sbo: SBO:0000655 + - bigg.reaction: "ARGt2r" + - metanetx.reaction: "MNXR95953" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1185 - - name: L-arganine transport + - id: "r_1185" + - name: "L-arganine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50137,16 +50189,16 @@ - s_0968: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL092W or YBR293W + - gene_reaction_rule: "YOL092W or YBR293W" - annotation: !!omap - - bigg.reaction: ARGt6 - - metanetx.reaction: MNXR95954 - - pmid: 15572352 - - sbo: SBO:0000655 + - bigg.reaction: "ARGt6" + - metanetx.reaction: "MNXR95954" + - pmid: "15572352" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1186 - - name: L-asparagine transport + - id: "r_1186" + - name: "L-asparagine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50154,16 +50206,16 @@ - s_0970: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCL025C or YDR508C or YKR039W or YPL265W + - gene_reaction_rule: "YCL025C or YDR508C or YKR039W or YPL265W" - annotation: !!omap - - bigg.reaction: ASNt2r - - metanetx.reaction: MNXR96066 - - pmid: 8660458 - - sbo: SBO:0000655 + - bigg.reaction: "ASNt2r" + - metanetx.reaction: "MNXR96066" + - pmid: "8660458" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1187 - - name: L-asparagine transport + - id: "r_1187" + - name: "L-asparagine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50171,16 +50223,16 @@ - s_0972: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR001W + - gene_reaction_rule: "YJR001W" - annotation: !!omap - - bigg.reaction: ASNt6 - - metanetx.reaction: MNXR96067 - - pmid: 11274162 - - sbo: SBO:0000655 + - bigg.reaction: "ASNt6" + - metanetx.reaction: "MNXR96067" + - pmid: "11274162" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1188 - - name: L-aspartate transport + - id: "r_1188" + - name: "L-aspartate transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50188,17 +50240,17 @@ - s_0972: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL146W or YNL101W - - subsystem: sce04138 Autophagy - yeast + - gene_reaction_rule: "YKL146W or YNL101W" + - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - - bigg.reaction: ASNt7 - - metanetx.reaction: MNXR96066 - - pmid: 11274162 - - sbo: SBO:0000655 + - bigg.reaction: "ASNt7" + - metanetx.reaction: "MNXR96066" + - pmid: "11274162" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1189 - - name: L-aspartate transport + - id: "r_1189" + - name: "L-aspartate transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50206,16 +50258,16 @@ - s_0977: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER119C + - gene_reaction_rule: "YER119C" - annotation: !!omap - - bigg.reaction: ASPt7 - - metanetx.reaction: MNXR96106 - - pmid: 11274162 - - sbo: SBO:0000655 + - bigg.reaction: "ASPt7" + - metanetx.reaction: "MNXR96106" + - pmid: "11274162" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1190 - - name: L-aspartate transport + - id: "r_1190" + - name: "L-aspartate transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50223,29 +50275,29 @@ - s_0974: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YFL055W or YKR039W or YPL265W + - gene_reaction_rule: "YFL055W or YKR039W or YPL265W" - annotation: !!omap - - bigg.reaction: ASPt2r - - metanetx.reaction: MNXR96106 - - sbo: SBO:0000655 + - bigg.reaction: "ASPt2r" + - metanetx.reaction: "MNXR96106" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1191 - - name: L-carnitine transport + - id: "r_1191" + - name: "L-carnitine transport" - metabolites: !!omap - s_0021: 1 - s_0022: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR132C + - gene_reaction_rule: "YBR132C" - annotation: !!omap - - bigg.reaction: CRNt - - metanetx.reaction: MNXR96906 - - sbo: SBO:0000655 + - bigg.reaction: "CRNt" + - metanetx.reaction: "MNXR96906" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1192 - - name: L-cystine transport + - id: "r_1192" + - name: "L-cystine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50253,16 +50305,16 @@ - s_0982: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR068C or YBR069C or YCL025C or YDR046C or YDR508C or YKR039W or YOL020W + - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YDR508C or YKR039W or YOL020W" - annotation: !!omap - - bigg.reaction: CYSt2r - - metanetx.reaction: MNXR97027 - - pmid: 9573211 - - sbo: SBO:0000655 + - bigg.reaction: "CYSt2r" + - metanetx.reaction: "MNXR97027" + - pmid: "9573211" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1193 - - name: L-cystine transport + - id: "r_1193" + - name: "L-cystine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50270,31 +50322,31 @@ - s_0985: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR075C + - gene_reaction_rule: "YCR075C" - annotation: !!omap - - bigg.reaction: LCYSTintv - - metanetx.reaction: MNXR101034 - - pmid: 11689434 - - sbo: SBO:0000655 + - bigg.reaction: "LCYSTintv" + - metanetx.reaction: "MNXR101034" + - pmid: "11689434" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1194 - - name: L-glutamate transport + - id: "r_1194" + - name: "L-glutamate transport" - metabolites: !!omap - s_0991: -1 - s_0993: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR021C + - gene_reaction_rule: "YPR021C" - annotation: !!omap - - bigg.reaction: GLUt7m - - metanetx.reaction: MNXR100301 - - pmid: 14622413 - - sbo: SBO:0000655 + - bigg.reaction: "GLUt7m" + - metanetx.reaction: "MNXR100301" + - pmid: "14622413" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1195 - - name: L-glutamate transport + - id: "r_1195" + - name: "L-glutamate transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50302,16 +50354,16 @@ - s_0996: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER119C + - gene_reaction_rule: "YER119C" - annotation: !!omap - - bigg.reaction: GLUt7 - - metanetx.reaction: MNXR100300 - - pmid: 11274162 - - sbo: SBO:0000655 + - bigg.reaction: "GLUt7" + - metanetx.reaction: "MNXR100300" + - pmid: "11274162" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1196 - - name: L-glutamate transport + - id: "r_1196" + - name: "L-glutamate transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50319,15 +50371,15 @@ - s_0992: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCL025C or YFL055W or YKR039W or YPL265W + - gene_reaction_rule: "YCL025C or YFL055W or YKR039W or YPL265W" - annotation: !!omap - - bigg.reaction: GLUt2r - - metanetx.reaction: MNXR100300 - - sbo: SBO:0000655 + - bigg.reaction: "GLUt2r" + - metanetx.reaction: "MNXR100300" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1197 - - name: L-glutamine transport + - id: "r_1197" + - name: "L-glutamine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50335,16 +50387,16 @@ - s_1002: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR001W + - gene_reaction_rule: "YJR001W" - annotation: !!omap - - bigg.reaction: GLNt6 - - metanetx.reaction: MNXR100262 - - pmid: 11274162 - - sbo: SBO:0000655 + - bigg.reaction: "GLNt6" + - metanetx.reaction: "MNXR100262" + - pmid: "11274162" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1198 - - name: L-glutamine transport + - id: "r_1198" + - name: "L-glutamine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50352,17 +50404,17 @@ - s_1002: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL146W or YNL101W - - subsystem: sce04138 Autophagy - yeast + - gene_reaction_rule: "YKL146W or YNL101W" + - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - - bigg.reaction: GLNt7 - - metanetx.reaction: MNXR100260 - - pmid: 11274162 - - sbo: SBO:0000655 + - bigg.reaction: "GLNt7" + - metanetx.reaction: "MNXR100260" + - pmid: "11274162" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1199 - - name: L-glutamine transport + - id: "r_1199" + - name: "L-glutamine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50370,15 +50422,15 @@ - s_1000: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCL025C or YDR508C or YKR039W or YPL265W + - gene_reaction_rule: "YCL025C or YDR508C or YKR039W or YPL265W" - annotation: !!omap - - bigg.reaction: GLNt2r - - metanetx.reaction: MNXR100260 - - sbo: SBO:0000655 + - bigg.reaction: "GLNt2r" + - metanetx.reaction: "MNXR100260" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1200 - - name: L-histidine transport, vacuolar + - id: "r_1200" + - name: "L-histidine transport, vacuolar" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50386,16 +50438,16 @@ - s_1009: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL092W or YBR293W or YCL069W or YMR088C + - gene_reaction_rule: "YOL092W or YBR293W or YCL069W or YMR088C" - annotation: !!omap - - bigg.reaction: HISt6 - - metanetx.reaction: MNXR100647 - - pmid: 15572352 - - sbo: SBO:0000655 + - bigg.reaction: "HISt6" + - metanetx.reaction: "MNXR100647" + - pmid: "15572352" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1201 - - name: L-histidine transport + - id: "r_1201" + - name: "L-histidine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50403,30 +50455,30 @@ - s_1007: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR069C or YGR191W or YKR039W + - gene_reaction_rule: "YBR069C or YGR191W or YKR039W" - annotation: !!omap - - bigg.reaction: HISt2r - - metanetx.reaction: MNXR100645 - - sbo: SBO:0000655 + - bigg.reaction: "HISt2r" + - metanetx.reaction: "MNXR100645" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1202 - - name: L-isoleucine transport + - id: "r_1202" + - name: "L-isoleucine transport" - metabolites: !!omap - s_1016: 1 - s_1019: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCL038C - - subsystem: sce04138 Autophagy - yeast + - gene_reaction_rule: "YCL038C" + - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - - metanetx.reaction: MNXR100824 - - pmid: 17021250 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100824" + - pmid: "17021250" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1203 - - name: L-isoleucine transport + - id: "r_1203" + - name: "L-isoleucine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50434,16 +50486,16 @@ - s_1019: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR001W + - gene_reaction_rule: "YJR001W" - annotation: !!omap - - bigg.reaction: ILEt6 - - metanetx.reaction: MNXR100825 - - pmid: 11274162 - - sbo: SBO:0000655 + - bigg.reaction: "ILEt6" + - metanetx.reaction: "MNXR100825" + - pmid: "11274162" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1204 - - name: L-isoleucine transport + - id: "r_1204" + - name: "L-isoleucine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50451,17 +50503,17 @@ - s_1019: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL146W or YNL101W - - subsystem: sce04138 Autophagy - yeast + - gene_reaction_rule: "YKL146W or YNL101W" + - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - - bigg.reaction: ILEt7 - - metanetx.reaction: MNXR100822 - - pmid: 11274162 - - sbo: SBO:0000655 + - bigg.reaction: "ILEt7" + - metanetx.reaction: "MNXR100822" + - pmid: "11274162" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1205 - - name: L-isoleucine transport + - id: "r_1205" + - name: "L-isoleucine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50469,30 +50521,30 @@ - s_1017: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR068C or YBR069C or YCL025C or YDR046C or YKR039W + - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YKR039W" - annotation: !!omap - - bigg.reaction: ILEt2r - - metanetx.reaction: MNXR100822 - - sbo: SBO:0000655 + - bigg.reaction: "ILEt2r" + - metanetx.reaction: "MNXR100822" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1206 - - name: L-lactate transport + - id: "r_1206" + - name: "L-lactate transport" - metabolites: !!omap - s_0063: -1 - s_0065: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL217W + - gene_reaction_rule: "YKL217W" - annotation: !!omap - - bigg.reaction: L_LACtcm - - metanetx.reaction: MNXR100999 - - pmid: 17761666 - - sbo: SBO:0000655 + - bigg.reaction: "L_LACtcm" + - metanetx.reaction: "MNXR100999" + - pmid: "17761666" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1207 - - name: L-lactate transport + - id: "r_1207" + - name: "L-lactate transport" - metabolites: !!omap - s_0063: 1 - s_0064: -1 @@ -50500,31 +50552,31 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL217W + - gene_reaction_rule: "YKL217W" - annotation: !!omap - - bigg.reaction: L_LACt2r - - metanetx.reaction: MNXR101277 - - pmid: 10198029 - - sbo: SBO:0000655 + - bigg.reaction: "L_LACt2r" + - metanetx.reaction: "MNXR101277" + - pmid: "10198029" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1208 - - name: L-leucine transport, vacuoluar + - id: "r_1208" + - name: "L-leucine transport, vacuoluar" - metabolites: !!omap - s_1021: 1 - s_1024: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCL038C - - subsystem: sce04138 Autophagy - yeast + - gene_reaction_rule: "YCL038C" + - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - - metanetx.reaction: MNXR101057 - - pmid: 17021250 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101057" + - pmid: "17021250" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1209 - - name: L-leucine transport, vacuoluar + - id: "r_1209" + - name: "L-leucine transport, vacuoluar" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50532,16 +50584,16 @@ - s_1024: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR001W + - gene_reaction_rule: "YJR001W" - annotation: !!omap - - bigg.reaction: LEUt6 - - metanetx.reaction: MNXR101058 - - pmid: 11274162 - - sbo: SBO:0000655 + - bigg.reaction: "LEUt6" + - metanetx.reaction: "MNXR101058" + - pmid: "11274162" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1210 - - name: L-leucine transport, vacuoluar + - id: "r_1210" + - name: "L-leucine transport, vacuoluar" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50549,17 +50601,17 @@ - s_1024: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL146W or YNL101W - - subsystem: sce04138 Autophagy - yeast + - gene_reaction_rule: "YKL146W or YNL101W" + - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - - bigg.reaction: LEUt7 - - metanetx.reaction: MNXR101055 - - pmid: 11274162 - - sbo: SBO:0000655 + - bigg.reaction: "LEUt7" + - metanetx.reaction: "MNXR101055" + - pmid: "11274162" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1211 - - name: L-leucine transport + - id: "r_1211" + - name: "L-leucine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50567,15 +50619,15 @@ - s_1022: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR068C or YBR069C or YCL025C or YDR046C or YDR508C or YKR039W + - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YDR508C or YKR039W" - annotation: !!omap - - bigg.reaction: LEUt2r - - metanetx.reaction: MNXR101055 - - sbo: SBO:0000655 + - bigg.reaction: "LEUt2r" + - metanetx.reaction: "MNXR101055" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1212 - - name: L-lysine transport + - id: "r_1212" + - name: "L-lysine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50583,16 +50635,16 @@ - s_1028: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL092W or YBR293W or YCL069W or YMR088C + - gene_reaction_rule: "YOL092W or YBR293W or YCL069W or YMR088C" - annotation: !!omap - - bigg.reaction: LYSt6 - - metanetx.reaction: MNXR101267 - - pmid: 15572352 - - sbo: SBO:0000655 + - bigg.reaction: "LYSt6" + - metanetx.reaction: "MNXR101267" + - pmid: "15572352" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1213 - - name: L-lysine transport + - id: "r_1213" + - name: "L-lysine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50600,15 +50652,15 @@ - s_1026: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKR039W or YNL268W + - gene_reaction_rule: "YKR039W or YNL268W" - annotation: !!omap - - bigg.reaction: LYSt2r - - metanetx.reaction: MNXR101266 - - sbo: SBO:0000655 + - bigg.reaction: "LYSt2r" + - metanetx.reaction: "MNXR101266" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1214 - - name: L-methionine transport + - id: "r_1214" + - name: "L-methionine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50616,15 +50668,15 @@ - s_1030: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR068C or YCL025C or YDR046C or YDR508C or YGR055W or YHL036W or YKR039W + - gene_reaction_rule: "YBR068C or YCL025C or YDR046C or YDR508C or YGR055W or YHL036W or YKR039W" - annotation: !!omap - - bigg.reaction: METt2r - - metanetx.reaction: MNXR101490 - - sbo: SBO:0000655 + - bigg.reaction: "METt2r" + - metanetx.reaction: "MNXR101490" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1215 - - name: L-phenylalanine transport + - id: "r_1215" + - name: "L-phenylalanine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50632,15 +50684,15 @@ - s_1033: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR068C or YCL025C or YDR046C or YKR039W or YOL020W + - gene_reaction_rule: "YBR068C or YCL025C or YDR046C or YKR039W or YOL020W" - annotation: !!omap - - bigg.reaction: PHEt2r - - metanetx.reaction: MNXR102635 - - sbo: SBO:0000655 + - bigg.reaction: "PHEt2r" + - metanetx.reaction: "MNXR102635" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1216 - - name: L-proline transport + - id: "r_1216" + - name: "L-proline transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50648,15 +50700,15 @@ - s_1036: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKR039W or YOR348C + - gene_reaction_rule: "YKR039W or YOR348C" - annotation: !!omap - - bigg.reaction: PROt2r - - metanetx.reaction: MNXR103211 - - sbo: SBO:0000655 + - bigg.reaction: "PROt2r" + - metanetx.reaction: "MNXR103211" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1217 - - name: L-serine transport + - id: "r_1217" + - name: "L-serine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50664,15 +50716,15 @@ - s_1041: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCL025C or YDR508C or YFL055W or YKR039W or YPL265W or YDR105C + - gene_reaction_rule: "YCL025C or YDR508C or YFL055W or YKR039W or YPL265W or YDR105C" - annotation: !!omap - - bigg.reaction: SERt2r - - metanetx.reaction: MNXR104352 - - sbo: SBO:0000655 + - bigg.reaction: "SERt2r" + - metanetx.reaction: "MNXR104352" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1218 - - name: L-threonine transport + - id: "r_1218" + - name: "L-threonine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50680,16 +50732,16 @@ - s_1046: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR069C or YCL025C or YDR046C or YDR508C or YKR039W + - gene_reaction_rule: "YBR069C or YCL025C or YDR046C or YDR508C or YKR039W" - annotation: !!omap - - bigg.reaction: THRt2r - - metanetx.reaction: MNXR104850 - - pmid: 9489675 - - sbo: SBO:0000655 + - bigg.reaction: "THRt2r" + - metanetx.reaction: "MNXR104850" + - pmid: "9489675" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1219 - - name: L-tryptophan transport + - id: "r_1219" + - name: "L-tryptophan transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50697,31 +50749,31 @@ - s_1049: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR068C or YBR069C or YDR046C or YKR039W or YOL020W + - gene_reaction_rule: "YBR068C or YBR069C or YDR046C or YKR039W or YOL020W" - annotation: !!omap - - bigg.reaction: TRPt2r - - metanetx.reaction: MNXR104950 - - pmid: 9573211 - - sbo: SBO:0000655 + - bigg.reaction: "TRPt2r" + - metanetx.reaction: "MNXR104950" + - pmid: "9573211" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1220 - - name: L-tyrosine transport + - id: "r_1220" + - name: "L-tyrosine transport" - metabolites: !!omap - s_1051: 1 - s_1055: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCL038C - - subsystem: sce04138 Autophagy - yeast + - gene_reaction_rule: "YCL038C" + - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - - metanetx.reaction: MNXR105002 - - pmid: 17021250 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR105002" + - pmid: "17021250" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1221 - - name: L-tyrosine transport + - id: "r_1221" + - name: "L-tyrosine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50729,16 +50781,16 @@ - s_1055: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR293W or YJR001W + - gene_reaction_rule: "YBR293W or YJR001W" - annotation: !!omap - - bigg.reaction: TYRt6 - - metanetx.reaction: MNXR105005 - - pmid: 15572352 - - sbo: SBO:0000655 + - bigg.reaction: "TYRt6" + - metanetx.reaction: "MNXR105005" + - pmid: "15572352" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1222 - - name: L-tyrosine transport + - id: "r_1222" + - name: "L-tyrosine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -50746,17 +50798,17 @@ - s_1055: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL146W or YNL101W - - subsystem: sce04138 Autophagy - yeast + - gene_reaction_rule: "YKL146W or YNL101W" + - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - - bigg.reaction: TYRt7 - - metanetx.reaction: MNXR105003 - - pmid: 11274162 - - sbo: SBO:0000655 + - bigg.reaction: "TYRt7" + - metanetx.reaction: "MNXR105003" + - pmid: "11274162" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1223 - - name: L-tyrosine transport + - id: "r_1223" + - name: "L-tyrosine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50764,15 +50816,15 @@ - s_1052: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR068C or YBR069C or YCL025C or YDR046C or YKR039W or YOL020W + - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YKR039W or YOL020W" - annotation: !!omap - - bigg.reaction: TYRt2r - - metanetx.reaction: MNXR105003 - - sbo: SBO:0000655 + - bigg.reaction: "TYRt2r" + - metanetx.reaction: "MNXR105003" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1224 - - name: L-valine transport + - id: "r_1224" + - name: "L-valine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50780,30 +50832,30 @@ - s_1057: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR068C or YBR069C or YCL025C or YDR046C or YKR039W + - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YKR039W" - annotation: !!omap - - bigg.reaction: VALt2r - - metanetx.reaction: MNXR105188 - - sbo: SBO:0000655 + - bigg.reaction: "VALt2r" + - metanetx.reaction: "MNXR105188" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1225 - - name: lanosterol transport + - id: "r_1225" + - name: "lanosterol transport" - metabolites: !!omap - s_1059: 1 - s_1061: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL013C or YOR011W + - gene_reaction_rule: "YIL013C or YOR011W" - annotation: !!omap - - bigg.reaction: LANOSTt - - metanetx.reaction: MNXR101014 - - pmid: 12077145 - - sbo: SBO:0000655 + - bigg.reaction: "LANOSTt" + - metanetx.reaction: "MNXR101014" + - pmid: "12077145" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1226 - - name: malate transport + - id: "r_1226" + - name: "malate transport" - metabolites: !!omap - s_0066: -1 - s_0068: 1 @@ -50811,15 +50863,15 @@ - s_1326: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR348C + - gene_reaction_rule: "YLR348C" - annotation: !!omap - - bigg.reaction: MALtm - - metanetx.reaction: MNXR101374 - - sbo: SBO:0000655 + - bigg.reaction: "MALtm" + - metanetx.reaction: "MNXR101374" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1227 - - name: maltose transport + - id: "r_1227" + - name: "maltose transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50827,46 +50879,46 @@ - s_1106: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR298C or YDL247W or YGR289C or YJR160C + - gene_reaction_rule: "YBR298C or YDL247W or YGR289C or YJR160C" - annotation: !!omap - - bigg.reaction: MALTt2 - - metanetx.reaction: MNXR101365 - - pmid: 7483839 - - sbo: SBO:0000655 + - bigg.reaction: "MALTt2" + - metanetx.reaction: "MNXR101365" + - pmid: "7483839" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1228 - - name: N,N'-diformyldityrosine transport + - id: "r_1228" + - name: "N,N'-diformyldityrosine transport" - metabolites: !!omap - s_1185: -1 - s_1186: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR180W + - gene_reaction_rule: "YBR180W" - annotation: !!omap - - pmid: 12455697 - - sbo: SBO:0000655 + - pmid: "12455697" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1229 - - name: NAD transport + - id: "r_1229" + - name: "NAD transport" - metabolites: !!omap - s_1198: -1 - s_1200: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YEL006W or YIL006W + - gene_reaction_rule: "YEL006W or YIL006W" - annotation: !!omap - - bigg.reaction: NADtm - - metanetx.reaction: MNXR101900 + - bigg.reaction: "NADtm" + - metanetx.reaction: "MNXR101900" - pmid: - - 16291748 - - 9169870 - - sbo: SBO:0000655 + - "16291748" + - "9169870" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1230 - - name: NAD transport + - id: "r_1230" + - name: "NAD transport" - metabolites: !!omap - s_0584: 1 - s_0585: -1 @@ -50874,14 +50926,14 @@ - s_1200: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL006W + - gene_reaction_rule: "YIL006W" - annotation: !!omap - - pmid: 16291748 - - sbo: SBO:0000655 + - pmid: "16291748" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1231 - - name: NAD transport + - id: "r_1231" + - name: "NAD transport" - metabolites: !!omap - s_0423: 1 - s_0424: -1 @@ -50889,14 +50941,14 @@ - s_1200: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL006W + - gene_reaction_rule: "YIL006W" - annotation: !!omap - - pmid: 16291748 - - sbo: SBO:0000655 + - pmid: "16291748" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1232 - - name: NAD transport + - id: "r_1232" + - name: "NAD transport" - metabolites: !!omap - s_0615: 1 - s_0616: -1 @@ -50904,43 +50956,43 @@ - s_1200: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL006W + - gene_reaction_rule: "YIL006W" - annotation: !!omap - - pmid: 16291748 - - sbo: SBO:0000655 + - pmid: "16291748" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1235 - - name: nicotinate transport + - id: "r_1235" + - name: "nicotinate transport" - metabolites: !!omap - s_1219: 1 - s_1220: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR260W + - gene_reaction_rule: "YGR260W" - annotation: !!omap - - bigg.reaction: NACt - - metanetx.reaction: MNXR101808 - - pmid: 10869563 - - sbo: SBO:0000655 + - bigg.reaction: "NACt" + - metanetx.reaction: "MNXR101808" + - pmid: "10869563" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1236 - - name: octadecanoate (n-C18:0) transport + - id: "r_1236" + - name: "octadecanoate (n-C18:0) transport" - metabolites: !!omap - s_1449: -1 - s_1451: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - annotation: !!omap - - metanetx.reaction: MNXR99109 - - pmid: 8993619 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99109" + - pmid: "8993619" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1237 - - name: ornithine transport + - id: "r_1237" + - name: "ornithine transport" - metabolites: !!omap - s_0794: -1 - s_0799: 1 @@ -50948,16 +51000,16 @@ - s_1268: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR130C + - gene_reaction_rule: "YOR130C" - annotation: !!omap - - bigg.reaction: ORNt3m - - metanetx.reaction: MNXR102225 - - pmid: 10428783 - - sbo: SBO:0000655 + - bigg.reaction: "ORNt3m" + - metanetx.reaction: "MNXR102225" + - pmid: "10428783" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1238 - - name: orntithine transport + - id: "r_1238" + - name: "orntithine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -50965,15 +51017,15 @@ - s_1267: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YEL063C or YKR039W + - gene_reaction_rule: "YEL063C or YKR039W" - annotation: !!omap - - bigg.reaction: ORNt2r - - metanetx.reaction: MNXR102224 - - sbo: SBO:0000655 + - bigg.reaction: "ORNt2r" + - metanetx.reaction: "MNXR102224" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1239 - - name: oxaloacetate transport + - id: "r_1239" + - name: "oxaloacetate transport" - metabolites: !!omap - s_0794: -1 - s_0799: 1 @@ -50981,15 +51033,15 @@ - s_1273: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL120W + - gene_reaction_rule: "YKL120W" - annotation: !!omap - - bigg.reaction: OAAt2m - - metanetx.reaction: MNXR102102 - - sbo: SBO:0000655 + - bigg.reaction: "OAAt2m" + - metanetx.reaction: "MNXR102102" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1241 - - name: pantothenate transport + - id: "r_1241" + - name: "pantothenate transport" - metabolites: !!omap - s_0031: 1 - s_0032: -1 @@ -50997,43 +51049,45 @@ - s_0796: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR028C + - gene_reaction_rule: "YCR028C" - annotation: !!omap - - bigg.reaction: PNTOt2 - - metanetx.reaction: MNXR103053 - - sbo: SBO:0000655 + - bigg.reaction: "PNTOt2" + - metanetx.reaction: "MNXR103053" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1242 - - name: pentaprenyl diphosphate transport + - id: "r_1242" + - name: "pentaprenyl diphosphate transport" - metabolites: !!omap - s_1311: -1 - s_1313: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PENDPtm - - metanetx.reaction: MNXR102483 - - pmid: 11583838 - - sbo: SBO:0000655 + - bigg.reaction: "PENDPtm" + - metanetx.reaction: "MNXR102483" + - pmid: "11583838" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1243 - - name: phenethyl acetate transport + - id: "r_1243" + - name: "phenethyl acetate transport" - metabolites: !!omap - s_1316: -1 - s_1317: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PHEACt - - metanetx.reaction: MNXR102622 - - pmid: 10653746 - - sbo: SBO:0000655 + - bigg.reaction: "PHEACt" + - metanetx.reaction: "MNXR102622" + - pmid: "10653746" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1244 - - name: phosphate transport + - id: "r_1244" + - name: "phosphate transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -51041,15 +51095,15 @@ - s_1324: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR296C or YCR037C or YJL198W or YML123C or YNR013C + - gene_reaction_rule: "YBR296C or YCR037C or YJL198W or YML123C or YNR013C" - annotation: !!omap - - bigg.reaction: PIt2r - - metanetx.reaction: MNXR102872 - - sbo: SBO:0000655 + - bigg.reaction: "PIt2r" + - metanetx.reaction: "MNXR102872" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1245 - - name: phosphate transport + - id: "r_1245" + - name: "phosphate transport" - metabolites: !!omap - s_0794: -1 - s_0799: 1 @@ -51057,15 +51111,15 @@ - s_1326: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER053C or YJR077C + - gene_reaction_rule: "YER053C or YJR077C" - annotation: !!omap - - bigg.reaction: PIt2m - - metanetx.reaction: MNXR102872 - - sbo: SBO:0000655 + - bigg.reaction: "PIt2m" + - metanetx.reaction: "MNXR102872" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1249 - - name: potassium transport + - id: "r_1249" + - name: "potassium transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -51073,30 +51127,30 @@ - s_1374: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR456W or YJL129C + - gene_reaction_rule: "YDR456W or YJL129C" - annotation: !!omap - - bigg.reaction: Kt2r - - pmid: 3043197 - - sbo: SBO:0000655 + - bigg.reaction: "Kt2r" + - pmid: "3043197" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1250 - - name: putrescine excretion + - id: "r_1250" + - name: "putrescine excretion" - metabolites: !!omap - s_1389: -1 - s_1390: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: YKL174C + - gene_reaction_rule: "YKL174C" - annotation: !!omap - - bigg.reaction: PTRCtex2 - - metanetx.reaction: MNXR103339 - - pmid: 15668236 - - sbo: SBO:0000655 + - bigg.reaction: "PTRCtex2" + - metanetx.reaction: "MNXR103339" + - pmid: "15668236" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1251 - - name: putrescine transport + - id: "r_1251" + - name: "putrescine transport" - metabolites: !!omap - s_0794: -1 - s_0796: 1 @@ -51104,16 +51158,16 @@ - s_1390: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLL028W or YOR273C + - gene_reaction_rule: "YLL028W or YOR273C" - annotation: !!omap - - bigg.reaction: PTRCt3i - - metanetx.reaction: MNXR103341 - - pmid: 9920864 - - sbo: SBO:0000655 + - bigg.reaction: "PTRCt3i" + - metanetx.reaction: "MNXR103341" + - pmid: "9920864" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1252 - - name: putrescine transport + - id: "r_1252" + - name: "putrescine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -51121,15 +51175,15 @@ - s_1391: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLL028W or YOR273C + - gene_reaction_rule: "YLL028W or YOR273C" - annotation: !!omap - - metanetx.reaction: MNXR103341 - - pmid: 11171066 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR103341" + - pmid: "11171066" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1253 - - name: pyridoxine symport + - id: "r_1253" + - name: "pyridoxine symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -51137,14 +51191,14 @@ - s_1397: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL186C + - gene_reaction_rule: "YGL186C" - annotation: !!omap - - pmid: 12649274 - - sbo: SBO:0000655 + - pmid: "12649274" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1254 - - name: pyruvate transport + - id: "r_1254" + - name: "pyruvate transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -51152,15 +51206,15 @@ - s_1400: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL217W + - gene_reaction_rule: "YKL217W" - annotation: !!omap - - bigg.reaction: PYRt2 - - metanetx.reaction: MNXR103385 - - sbo: SBO:0000655 + - bigg.reaction: "PYRt2" + - metanetx.reaction: "MNXR103385" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1255 - - name: S-adenosyl-L-methionine transport + - id: "r_1255" + - name: "S-adenosyl-L-methionine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -51168,30 +51222,30 @@ - s_1418: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL274W + - gene_reaction_rule: "YPL274W" - annotation: !!omap - - bigg.reaction: AMETt2 - - metanetx.reaction: MNXR95810 - - sbo: SBO:0000655 + - bigg.reaction: "AMETt2" + - metanetx.reaction: "MNXR95810" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1256 - - name: S-adenosyl-L-methionine transport + - id: "r_1256" + - name: "S-adenosyl-L-methionine transport" - metabolites: !!omap - s_1416: -1 - s_1419: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL003C + - gene_reaction_rule: "YNL003C" - annotation: !!omap - - bigg.reaction: AMETtm - - metanetx.reaction: MNXR95809 - - pmid: 14609944 - - sbo: SBO:0000655 + - bigg.reaction: "AMETtm" + - metanetx.reaction: "MNXR95809" + - pmid: "14609944" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1257 - - name: S-methylmethionine permease + - id: "r_1257" + - name: "S-methylmethionine permease" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -51199,15 +51253,15 @@ - s_1425: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL061W + - gene_reaction_rule: "YLL061W" - annotation: !!omap - - bigg.reaction: MMETt2 - - metanetx.reaction: MNXR101658 - - sbo: SBO:0000655 + - bigg.reaction: "MMETt2" + - metanetx.reaction: "MNXR101658" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1258 - - name: sodium proton antiporter + - id: "r_1258" + - name: "sodium proton antiporter" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -51215,29 +51269,29 @@ - s_1438: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR456W or YLR138W + - gene_reaction_rule: "YDR456W or YLR138W" - annotation: !!omap - - bigg.reaction: NAt3_1 - - sbo: SBO:0000655 + - bigg.reaction: "NAt3_1" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1259 - - name: spermidine excretion + - id: "r_1259" + - name: "spermidine excretion" - metabolites: !!omap - s_1439: -1 - s_1440: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: YKL174C + - gene_reaction_rule: "YKL174C" - annotation: !!omap - - bigg.reaction: SPMDtex2 - - metanetx.reaction: MNXR104495 - - pmid: 15668236 - - sbo: SBO:0000655 + - bigg.reaction: "SPMDtex2" + - metanetx.reaction: "MNXR104495" + - pmid: "15668236" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1260 - - name: spermidine transport + - id: "r_1260" + - name: "spermidine transport" - metabolites: !!omap - s_0794: -1 - s_0796: 1 @@ -51245,18 +51299,18 @@ - s_1440: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR132C or YHL016C or YKR039W or YLL028W or YOR273C or YPL274W + - gene_reaction_rule: "YBR132C or YHL016C or YKR039W or YLL028W or YOR273C or YPL274W" - annotation: !!omap - - bigg.reaction: SPMDt3i - - metanetx.reaction: MNXR104497 + - bigg.reaction: "SPMDt3i" + - metanetx.reaction: "MNXR104497" - pmid: - - 17218313 - - 9920864 - - sbo: SBO:0000655 + - "17218313" + - "9920864" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1261 - - name: spermidine transport + - id: "r_1261" + - name: "spermidine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -51264,15 +51318,15 @@ - s_1441: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLL028W or YOR273C + - gene_reaction_rule: "YLL028W or YOR273C" - annotation: !!omap - - metanetx.reaction: MNXR104497 - - pmid: 11171066 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104497" + - pmid: "11171066" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1262 - - name: spermine transport + - id: "r_1262" + - name: "spermine transport" - metabolites: !!omap - s_0794: -1 - s_0796: 1 @@ -51280,16 +51334,16 @@ - s_1443: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR138C or YLL028W or YOR273C or YPR156C + - gene_reaction_rule: "YGR138C or YLL028W or YOR273C or YPR156C" - annotation: !!omap - - bigg.reaction: SPRMt2i - - metanetx.reaction: MNXR104501 - - pmid: 9920864 - - sbo: SBO:0000655 + - bigg.reaction: "SPRMt2i" + - metanetx.reaction: "MNXR104501" + - pmid: "9920864" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1263 - - name: spermine transport + - id: "r_1263" + - name: "spermine transport" - metabolites: !!omap - s_0794: 1 - s_0802: -1 @@ -51297,15 +51351,15 @@ - s_1444: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR138C or YLL028W or YOR273C or YPR156C + - gene_reaction_rule: "YGR138C or YLL028W or YOR273C or YPR156C" - annotation: !!omap - - metanetx.reaction: MNXR104501 - - pmid: 11171066 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104501" + - pmid: "11171066" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1264 - - name: succinate transport + - id: "r_1264" + - name: "succinate transport" - metabolites: !!omap - s_1322: 1 - s_1326: -1 @@ -51313,15 +51367,15 @@ - s_1460: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR348C + - gene_reaction_rule: "YLR348C" - annotation: !!omap - - bigg.reaction: SUCCtm - - metanetx.reaction: MNXR104626 - - sbo: SBO:0000655 + - bigg.reaction: "SUCCtm" + - metanetx.reaction: "MNXR104626" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1265 - - name: succinate-fumarate transport + - id: "r_1265" + - name: "succinate-fumarate transport" - metabolites: !!omap - s_0725: 1 - s_0727: -1 @@ -51329,74 +51383,75 @@ - s_1460: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR095W + - gene_reaction_rule: "YJR095W" - annotation: !!omap - - bigg.reaction: SUCFUMtm - - metanetx.reaction: MNXR104633 - - pmid: 9395087 - - sbo: SBO:0000655 + - bigg.reaction: "SUCFUMtm" + - metanetx.reaction: "MNXR104633" + - pmid: "9395087" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1266 - - name: sulfate uniport + - id: "r_1266" + - name: "sulfate uniport" - metabolites: !!omap - s_1467: 1 - s_1468: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR294W or YLR092W + - gene_reaction_rule: "YBR294W or YLR092W" - annotation: !!omap - - bigg.reaction: SO4ti - - metanetx.reaction: MNXR104469 - - sbo: SBO:0000655 + - bigg.reaction: "SO4ti" + - metanetx.reaction: "MNXR104469" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1267 - - name: sulfite transport + - id: "r_1267" + - name: "sulfite transport" - metabolites: !!omap - s_1469: -1 - s_1470: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL092W + - gene_reaction_rule: "YPL092W" - annotation: !!omap - - bigg.reaction: SO3ti - - metanetx.reaction: MNXR104460 - - pmid: 10870099 - - sbo: SBO:0000655 + - bigg.reaction: "SO3ti" + - metanetx.reaction: "MNXR104460" + - pmid: "10870099" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1268 - - name: taurine transport + - id: "r_1268" + - name: "taurine transport" - metabolites: !!omap - s_1471: -1 - s_1472: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: TAURt - - metanetx.reaction: MNXR104733 - - pmid: 8293962 - - sbo: SBO:0000655 + - bigg.reaction: "TAURt" + - metanetx.reaction: "MNXR104733" + - pmid: "8293962" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1269 - - name: thiamine diphosphate transport + - id: "r_1269" + - name: "thiamine diphosphate transport" - metabolites: !!omap - s_1475: -1 - s_1477: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR096W + - gene_reaction_rule: "YGR096W" - annotation: !!omap - - bigg.reaction: THMPPt2m - - metanetx.reaction: MNXR104824 - - pmid: 12411483 - - sbo: SBO:0000655 + - bigg.reaction: "THMPPt2m" + - metanetx.reaction: "MNXR104824" + - pmid: "12411483" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1270 - - name: thiamine transport + - id: "r_1270" + - name: "thiamine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -51404,30 +51459,30 @@ - s_1490: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR237W or YOR071C or YOR192C + - gene_reaction_rule: "YLR237W or YOR071C or YOR192C" - annotation: !!omap - - bigg.reaction: THMt2 - - metanetx.reaction: MNXR138863 - - sbo: SBO:0000655 + - bigg.reaction: "THMt2" + - metanetx.reaction: "MNXR138863" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1271 - - name: UDPgalactose transport + - id: "r_1271" + - name: "UDPgalactose transport" - metabolites: !!omap - s_1541: -1 - s_1542: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL244C + - gene_reaction_rule: "YPL244C" - annotation: !!omap - - bigg.reaction: UDPGALt2g - - metanetx.reaction: MNXR105061 - - pmid: 11284009 - - sbo: SBO:0000655 + - bigg.reaction: "UDPGALt2g" + - metanetx.reaction: "MNXR105061" + - pmid: "11284009" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1272 - - name: uracil transport + - id: "r_1272" + - name: "uracil transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -51435,15 +51490,15 @@ - s_1551: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR021W + - gene_reaction_rule: "YBR021W" - annotation: !!omap - - bigg.reaction: URAt2 - - metanetx.reaction: MNXR105148 - - sbo: SBO:0000655 + - bigg.reaction: "URAt2" + - metanetx.reaction: "MNXR105148" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1273 - - name: urea transport + - id: "r_1273" + - name: "urea transport" - metabolites: !!omap - s_0794: 2 - s_0796: -2 @@ -51451,15 +51506,15 @@ - s_1553: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHL016C + - gene_reaction_rule: "YHL016C" - annotation: !!omap - - bigg.reaction: UREA2t2 - - metanetx.reaction: MNXR105154 - - sbo: SBO:0000655 + - bigg.reaction: "UREA2t2" + - metanetx.reaction: "MNXR105154" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1274 - - name: uridine transport + - id: "r_1274" + - name: "uridine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -51467,16 +51522,16 @@ - s_1557: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL042C + - gene_reaction_rule: "YBL042C" - annotation: !!omap - - bigg.reaction: URIt2 - - metanetx.reaction: MNXR105166 - - pmid: 10827169 - - sbo: SBO:0000655 + - bigg.reaction: "URIt2" + - metanetx.reaction: "MNXR105166" + - pmid: "10827169" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1275 - - name: UTP transport + - id: "r_1275" + - name: "UTP transport" - metabolites: !!omap - s_0714: 1 - s_0716: -1 @@ -51488,14 +51543,14 @@ - s_1560: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR192W + - gene_reaction_rule: "YBR192W" - annotation: !!omap - - pmid: 16844075 - - sbo: SBO:0000655 + - pmid: "16844075" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1276 - - name: UTP/UMP antiport + - id: "r_1276" + - name: "UTP/UMP antiport" - metabolites: !!omap - s_0794: -2 - s_0799: 2 @@ -51505,45 +51560,45 @@ - s_1560: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR192W + - gene_reaction_rule: "YBR192W" - annotation: !!omap - - bigg.reaction: UTPtm - - metanetx.reaction: MNXR105175 - - pmid: 16194150 - - sbo: SBO:0000655 + - bigg.reaction: "UTPtm" + - metanetx.reaction: "MNXR105175" + - pmid: "16194150" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1277 - - name: water diffusion + - id: "r_1277" + - name: "water diffusion" - metabolites: !!omap - s_0803: 1 - s_0805: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLL052C or YPR192W + - gene_reaction_rule: "YLL052C or YPR192W" - annotation: !!omap - - bigg.reaction: H2Ot - - metanetx.reaction: MNXR98641 - - pmid: 9765289 - - sbo: SBO:0000655 + - bigg.reaction: "H2Ot" + - metanetx.reaction: "MNXR98641" + - pmid: "9765289" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1278 - - name: zymosterol transport + - id: "r_1278" + - name: "zymosterol transport" - metabolites: !!omap - s_1568: 1 - s_1571: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL013C or YOR011W + - gene_reaction_rule: "YIL013C or YOR011W" - annotation: !!omap - - metanetx.reaction: MNXR105285 - - pmid: 12077145 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR105285" + - pmid: "12077145" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1449 - - name: inositol-P-ceramide B' (C24) [Golgi] SLIME rxn + - id: "r_1449" + - name: "inositol-P-ceramide B' (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0892: 0.91026 - s_0907: -1 @@ -51551,12 +51606,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1450 - - name: inositol-P-ceramide B' (C26) [Golgi] SLIME rxn + - id: "r_1450" + - name: "inositol-P-ceramide B' (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0892: 0.93832 - s_0910: -1 @@ -51564,12 +51620,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1451 - - name: inositol-P-ceramide C (C24) [Golgi] SLIME rxn + - id: "r_1451" + - name: "inositol-P-ceramide C (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0892: 0.92626 - s_0913: -1 @@ -51577,12 +51634,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1452 - - name: inositol-P-ceramide C (C26) [Golgi] SLIME rxn + - id: "r_1452" + - name: "inositol-P-ceramide C (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0892: 0.95432 - s_0916: -1 @@ -51590,12 +51648,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1453 - - name: inositol-P-ceramide A (C24) [Golgi] SLIME rxn + - id: "r_1453" + - name: "inositol-P-ceramide A (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0892: 0.89426 - s_0895: -1 @@ -51603,12 +51662,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1454 - - name: inositol-P-ceramide A (C26) [Golgi] SLIME rxn + - id: "r_1454" + - name: "inositol-P-ceramide A (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0892: 0.92232 - s_0898: -1 @@ -51616,12 +51676,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1455 - - name: inositol-P-ceramide B (C24) [Golgi] SLIME rxn + - id: "r_1455" + - name: "inositol-P-ceramide B (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0892: 0.91026 - s_0901: -1 @@ -51629,12 +51690,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1456 - - name: inositol-P-ceramide B (C26) [Golgi] SLIME rxn + - id: "r_1456" + - name: "inositol-P-ceramide B (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0892: 0.93832 - s_0904: -1 @@ -51642,12 +51704,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1457 - - name: inositol-P-ceramide D (C24) [Golgi] SLIME rxn + - id: "r_1457" + - name: "inositol-P-ceramide D (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0892: 0.94226 - s_0919: -1 @@ -51655,12 +51718,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1458 - - name: inositol-P-ceramide D (C26) [Golgi] SLIME rxn + - id: "r_1458" + - name: "inositol-P-ceramide D (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0892: 0.97032 - s_0922: -1 @@ -51668,12 +51732,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1479 - - name: inositol phosphomannosylinositol phosphoceramide A (C24) [Golgi] SLIME rxn + - id: "r_1479" + - name: "inositol phosphomannosylinositol phosphoceramide A (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0859: 1.2985 - s_0862: -1 @@ -51681,12 +51746,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1480 - - name: inositol phosphomannosylinositol phosphoceramide A (C26) [Golgi] SLIME rxn + - id: "r_1480" + - name: "inositol phosphomannosylinositol phosphoceramide A (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0859: 1.3266 - s_0865: -1 @@ -51694,12 +51760,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1481 - - name: inositol phosphomannosylinositol phosphoceramide B' (C24) [Golgi] SLIME rxn + - id: "r_1481" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0859: 1.3145 - s_0874: -1 @@ -51707,12 +51774,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1482 - - name: inositol phosphomannosylinositol phosphoceramide B' (C26) [Golgi] SLIME rxn + - id: "r_1482" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0859: 1.3426 - s_0877: -1 @@ -51720,12 +51788,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1483 - - name: inositol phosphomannosylinositol phosphoceramide B (C24) [Golgi] SLIME rxn + - id: "r_1483" + - name: "inositol phosphomannosylinositol phosphoceramide B (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0859: 1.3145 - s_0868: -1 @@ -51733,12 +51802,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1484 - - name: inositol phosphomannosylinositol phosphoceramide B (C26) [Golgi] SLIME rxn + - id: "r_1484" + - name: "inositol phosphomannosylinositol phosphoceramide B (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0859: 1.3426 - s_0871: -1 @@ -51746,12 +51816,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1485 - - name: inositol phosphomannosylinositol phosphoceramide C (C24) [Golgi] SLIME rxn + - id: "r_1485" + - name: "inositol phosphomannosylinositol phosphoceramide C (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0859: 1.3305 - s_0880: -1 @@ -51759,12 +51830,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1486 - - name: inositol phosphomannosylinositol phosphoceramide C (C26) [Golgi] SLIME rxn + - id: "r_1486" + - name: "inositol phosphomannosylinositol phosphoceramide C (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0859: 1.3586 - s_0883: -1 @@ -51772,12 +51844,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1487 - - name: inositol phosphomannosylinositol phosphoceramide D (C24) [Golgi] SLIME rxn + - id: "r_1487" + - name: "inositol phosphomannosylinositol phosphoceramide D (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0859: 1.3465 - s_0886: -1 @@ -51785,12 +51858,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1488 - - name: inositol phosphomannosylinositol phosphoceramide D (C26) [Golgi] SLIME rxn + - id: "r_1488" + - name: "inositol phosphomannosylinositol phosphoceramide D (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0859: 1.3746 - s_0889: -1 @@ -51798,12 +51872,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1509 - - name: mannosylinositol phosphorylceramide B' (C24) [Golgi] SLIME rxn + - id: "r_1509" + - name: "mannosylinositol phosphorylceramide B' (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_1114: 1.0724 - s_1129: -1 @@ -51811,12 +51886,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1510 - - name: mannosylinositol phosphorylceramide B' (C26) [Golgi] SLIME rxn + - id: "r_1510" + - name: "mannosylinositol phosphorylceramide B' (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_1114: 1.1005 - s_1132: -1 @@ -51824,12 +51900,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1511 - - name: mannosylinositol phosphorylceramide C (C24) [Golgi] SLIME rxn + - id: "r_1511" + - name: "mannosylinositol phosphorylceramide C (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_1114: 1.0884 - s_1135: -1 @@ -51837,12 +51914,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1512 - - name: mannosylinositol phosphorylceramide C (C26) [Golgi] SLIME rxn + - id: "r_1512" + - name: "mannosylinositol phosphorylceramide C (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_1114: 1.1165 - s_1138: -1 @@ -51850,12 +51928,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1513 - - name: mannosylinositol phosphorylceramide A (C24) [Golgi] SLIME rxn + - id: "r_1513" + - name: "mannosylinositol phosphorylceramide A (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_1114: 1.0564 - s_1117: -1 @@ -51863,12 +51942,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1514 - - name: mannosylinositol phosphorylceramide A (C26) [Golgi] SLIME rxn + - id: "r_1514" + - name: "mannosylinositol phosphorylceramide A (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_1114: 1.0845 - s_1120: -1 @@ -51876,12 +51956,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1515 - - name: mannosylinositol phosphorylceramide B (C24) [Golgi] SLIME rxn + - id: "r_1515" + - name: "mannosylinositol phosphorylceramide B (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_1114: 1.0724 - s_1123: -1 @@ -51889,12 +51970,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1516 - - name: mannosylinositol phosphorylceramide B (C26) [Golgi] SLIME rxn + - id: "r_1516" + - name: "mannosylinositol phosphorylceramide B (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_1114: 1.1005 - s_1126: -1 @@ -51902,12 +51984,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1517 - - name: mannosylinositol phosphorylceramide D (C24) [Golgi] SLIME rxn + - id: "r_1517" + - name: "mannosylinositol phosphorylceramide D (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_1114: 1.1044 - s_1141: -1 @@ -51915,12 +51998,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1518 - - name: mannosylinositol phosphorylceramide D (C26) [Golgi] SLIME rxn + - id: "r_1518" + - name: "mannosylinositol phosphorylceramide D (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_1114: 1.1325 - s_1144: -1 @@ -51928,537 +52012,583 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_1542 - - name: (1->3)-beta-D-glucan exchange + - id: "r_1542" + - name: "(1->3)-beta-D-glucan exchange" - metabolites: !!omap - s_0003: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_13BDglcn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_13BDglcn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1543 - - name: (1->3)-beta-D-glucan transport + - id: "r_1543" + - name: "(1->3)-beta-D-glucan transport" - metabolites: !!omap - s_0001: -1 - s_0002: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1545 - - name: (R)-carnitine exchange + - id: "r_1545" + - name: "(R)-carnitine exchange" - metabolites: !!omap - s_0022: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_crn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_crn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1546 - - name: (R)-lactate exchange + - id: "r_1546" + - name: "(R)-lactate exchange" - metabolites: !!omap - s_0026: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_lac__D_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_lac__D_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1547 - - name: (R)-mevalonate exchange + - id: "r_1547" + - name: "(R)-mevalonate exchange" - metabolites: !!omap - s_0029: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_mev__R_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_mev__R_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1548 - - name: (R)-pantothenate exchange + - id: "r_1548" + - name: "(R)-pantothenate exchange" - metabolites: !!omap - s_0032: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pnto__R_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pnto__R_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1549 - - name: (R,R)-2,3-butanediol exchange + - id: "r_1549" + - name: "(R,R)-2,3-butanediol exchange" - metabolites: !!omap - s_0036: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_btd_RR_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_btd_RR_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1550 - - name: (S)-3-methyl-2-oxopentanoate exchange + - id: "r_1550" + - name: "(S)-3-methyl-2-oxopentanoate exchange" - metabolites: !!omap - s_0058: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_3mop_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_3mop_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1551 - - name: (S)-lactate exchange + - id: "r_1551" + - name: "(S)-lactate exchange" - metabolites: !!omap - s_0064: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_lac__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_lac__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1552 - - name: (S)-malate exchange + - id: "r_1552" + - name: "(S)-malate exchange" - metabolites: !!omap - s_0067: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_mal__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_mal__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1553 - - name: 1-(sn-glycero-3-phospho)-1D-myo-inositol exchange + - id: "r_1553" + - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol exchange" - metabolites: !!omap - s_0080: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_g3pi_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_g3pi_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1554 - - name: 1-acylglycerophosphocholine exchange + - id: "r_1554" + - name: "1-acylglycerophosphocholine exchange" - metabolites: !!omap - s_0084: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pchol_cho_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pchol_cho_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1560 - - name: 1D-myo-inositol 1,3,4,5,6-pentakisphosphate diffusion + - id: "r_1560" + - name: "1D-myo-inositol 1,3,4,5,6-pentakisphosphate diffusion" - metabolites: !!omap - s_1156: -1 - s_1157: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR125284 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR125284" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1562 - - name: 1D-myo-inositol 1-phosphate transport + - id: "r_1562" + - name: "1D-myo-inositol 1-phosphate transport" - metabolites: !!omap - s_0126: 1 - s_0127: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101573 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101573" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1563 - - name: 2'-deoxyadenosine exchange + - id: "r_1563" + - name: "2'-deoxyadenosine exchange" - metabolites: !!omap - s_0133: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_dad_2_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_dad_2_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1564 - - name: 2'-deoxyguanosine exchange + - id: "r_1564" + - name: "2'-deoxyguanosine exchange" - metabolites: !!omap - s_0135: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_dgsn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_dgsn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1565 - - name: 2'-deoxyinosine exchange + - id: "r_1565" + - name: "2'-deoxyinosine exchange" - metabolites: !!omap - s_0137: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_din_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_din_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1566 - - name: 2'-deoxyuridine exchange + - id: "r_1566" + - name: "2'-deoxyuridine exchange" - metabolites: !!omap - s_0139: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_duri_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_duri_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1567 - - name: 2-dehydro-3-deoxy-D-arabino-heptonate7-phohsphate transport + - id: "r_1567" + - name: "2-dehydro-3-deoxy-D-arabino-heptonate7-phohsphate transport" - metabolites: !!omap - s_0349: -1 - s_0350: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2DDA7Ptm - - metanetx.reaction: MNXR94782 - - sbo: SBO:0000655 + - bigg.reaction: "2DDA7Ptm" + - metanetx.reaction: "MNXR94782" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1568 - - name: 2-dehydropantoate transport + - id: "r_1568" + - name: "2-dehydropantoate transport" - metabolites: !!omap - s_0149: -1 - s_0150: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2DHPtm - - metanetx.reaction: MNXR94793 - - sbo: SBO:0000655 + - bigg.reaction: "2DHPtm" + - metanetx.reaction: "MNXR94793" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1572 - - name: 2-isopropylmalate exchange + - id: "r_1572" + - name: "2-isopropylmalate exchange" - metabolites: !!omap - s_0163: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_3c3hmp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_3c3hmp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1573 - - name: 2-isopropylmalate transport + - id: "r_1573" + - name: "2-isopropylmalate transport" - metabolites: !!omap - s_0162: -1 - s_0163: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 3C3HMPt - - sbo: SBO:0000655 + - bigg.reaction: "3C3HMPt" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1574 - - name: 2-isopropylmalate transport + - id: "r_1574" + - name: "2-isopropylmalate transport" - metabolites: !!omap - s_0162: -1 - s_0164: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL120W + - gene_reaction_rule: "YKL120W" - annotation: !!omap - - bigg.reaction: 3C3HMPtm - - sbo: SBO:0000655 + - bigg.reaction: "3C3HMPtm" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1575 - - name: 2-methyl-1-butanol transport + - id: "r_1575" + - name: "2-methyl-1-butanol transport" - metabolites: !!omap - s_0169: -1 - s_0170: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2MBTOHt - - metanetx.reaction: MNXR94810 - - sbo: SBO:0000655 + - bigg.reaction: "2MBTOHt" + - metanetx.reaction: "MNXR94810" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1576 - - name: 2-methyl-1-butanol transport + - id: "r_1576" + - name: "2-methyl-1-butanol transport" - metabolites: !!omap - s_0169: -1 - s_0171: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2MBTOHtm - - metanetx.reaction: MNXR94810 - - sbo: SBO:0000655 + - bigg.reaction: "2MBTOHtm" + - metanetx.reaction: "MNXR94810" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1577 - - name: 2-methylbutanal exchange + - id: "r_1577" + - name: "2-methylbutanal exchange" - metabolites: !!omap - s_0167: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_2mbald_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_2mbald_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1578 - - name: 2-methylbutanal transport + - id: "r_1578" + - name: "2-methylbutanal transport" - metabolites: !!omap - s_0166: -1 - s_0167: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2MBALDt - - metanetx.reaction: MNXR94809 - - sbo: SBO:0000655 + - bigg.reaction: "2MBALDt" + - metanetx.reaction: "MNXR94809" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1579 - - name: 2-methylbutanal transport + - id: "r_1579" + - name: "2-methylbutanal transport" - metabolites: !!omap - s_0166: -1 - s_0168: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2MBALDtm - - metanetx.reaction: MNXR94809 - - sbo: SBO:0000655 + - bigg.reaction: "2MBALDtm" + - metanetx.reaction: "MNXR94809" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1580 - - name: 2-methylbutanol exchange + - id: "r_1580" + - name: "2-methylbutanol exchange" - metabolites: !!omap - s_0170: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_2mbtoh_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_2mbtoh_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1581 - - name: 2-methylbutyl acetate exchange + - id: "r_1581" + - name: "2-methylbutyl acetate exchange" - metabolites: !!omap - s_0173: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_2mbac_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_2mbac_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1582 - - name: 2-methylpropanal transport + - id: "r_1582" + - name: "2-methylpropanal transport" - metabolites: !!omap - s_0937: -1 - s_0938: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2MPPALt - - metanetx.reaction: MNXR94812 - - sbo: SBO:0000655 + - bigg.reaction: "2MPPALt" + - metanetx.reaction: "MNXR94812" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1583 - - name: 2-methylpropanal transport + - id: "r_1583" + - name: "2-methylpropanal transport" - metabolites: !!omap - s_0937: -1 - s_0939: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2MPPALtm - - metanetx.reaction: MNXR94812 - - sbo: SBO:0000655 + - bigg.reaction: "2MPPALtm" + - metanetx.reaction: "MNXR94812" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1585 - - name: 2-oxobutanoate transporter + - id: "r_1585" + - name: "2-oxobutanoate transporter" - metabolites: !!omap - s_0178: -1 - s_0179: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2OBUTtm - - metanetx.reaction: MNXR94814 - - sbo: SBO:0000655 + - bigg.reaction: "2OBUTtm" + - metanetx.reaction: "MNXR94814" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1586 - - name: 2-oxoglutarate exchange + - id: "r_1586" + - name: "2-oxoglutarate exchange" - metabolites: !!omap - s_0181: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_akg_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_akg_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1587 - - name: 2-oxoglutarate transport + - id: "r_1587" + - name: "2-oxoglutarate transport" - metabolites: !!omap - s_0180: -1 - s_0183: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95663 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95663" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1588 - - name: 2-oxoglutarate transport + - id: "r_1588" + - name: "2-oxoglutarate transport" - metabolites: !!omap - s_0180: 1 - s_0181: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95663 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95663" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1589 - - name: 2-phenylethanol exchange + - id: "r_1589" + - name: "2-phenylethanol exchange" - metabolites: !!omap - s_0186: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_2phetoh_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_2phetoh_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1590 - - name: 2-phenylethanol transport + - id: "r_1590" + - name: "2-phenylethanol transport" - metabolites: !!omap - s_0185: 1 - s_0186: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2PHETOHt - - metanetx.reaction: MNXR94828 - - sbo: SBO:0000655 + - bigg.reaction: "2PHETOHt" + - metanetx.reaction: "MNXR94828" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1591 - - name: 2-phenylethanol transport + - id: "r_1591" + - name: "2-phenylethanol transport" - metabolites: !!omap - s_0185: 1 - s_0187: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2PHETOHtm - - metanetx.reaction: MNXR94828 - - sbo: SBO:0000655 + - bigg.reaction: "2PHETOHtm" + - metanetx.reaction: "MNXR94828" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1595 - - name: 3-carboxy-4-methyl-2-oxopentanoate transport + - id: "r_1595" + - name: "3-carboxy-4-methyl-2-oxopentanoate transport" - metabolites: !!omap - s_0010: -1 - s_0011: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 3C4MOPtm - - metanetx.reaction: MNXR94859 - - sbo: SBO:0000655 + - bigg.reaction: "3C4MOPtm" + - metanetx.reaction: "MNXR94859" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1596 - - name: 3-methyl-2-oxopentanoate transport + - id: "r_1596" + - name: "3-methyl-2-oxopentanoate transport" - metabolites: !!omap - s_0056: -1 - s_0060: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 3MOPtm - - metanetx.reaction: MNXR94926 - - sbo: SBO:0000655 + - bigg.reaction: "3MOPtm" + - metanetx.reaction: "MNXR94926" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1597 - - name: 3-methyl-oxopentanoate trasport + - id: "r_1597" + - name: "3-methyl-oxopentanoate trasport" - metabolites: !!omap - s_0056: 1 - s_0058: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 3MOPt - - metanetx.reaction: MNXR94926 - - sbo: SBO:0000655 + - bigg.reaction: "3MOPt" + - metanetx.reaction: "MNXR94926" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1598 - - name: 3-methylbutanal exchange + - id: "r_1598" + - name: "3-methylbutanal exchange" - metabolites: !!omap - s_0235: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_3mbald_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_3mbald_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1599 - - name: 3-methylbutanal transport + - id: "r_1599" + - name: "3-methylbutanal transport" - metabolites: !!omap - s_0234: -1 - s_0235: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 3MBALDt - - metanetx.reaction: MNXR137944 - - sbo: SBO:0000655 + - bigg.reaction: "3MBALDt" + - metanetx.reaction: "MNXR137944" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1600 - - name: 3-methylbutanal transport + - id: "r_1600" + - name: "3-methylbutanal transport" - metabolites: !!omap - s_0234: -1 - s_0236: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 3MBALDtm - - metanetx.reaction: MNXR137944 - - sbo: SBO:0000655 + - bigg.reaction: "3MBALDtm" + - metanetx.reaction: "MNXR137944" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1601 - - name: 3-octaprenyl-4-hydroxybenzoate transport + - id: "r_1601" + - name: "3-octaprenyl-4-hydroxybenzoate transport" - metabolites: !!omap - s_0215: -1 - s_0216: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 3OPHB_5tm - - metanetx.reaction: MNXR94966 - - sbo: SBO:0000655 + - bigg.reaction: "3OPHB_5tm" + - metanetx.reaction: "MNXR94966" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1603 - - name: 4-amino-5-hydroxymethyl-2-methylpyrimidine synthetase + - id: "r_1603" + - name: "4-amino-5-hydroxymethyl-2-methylpyrimidine synthetase" - metabolites: !!omap - s_0270: 1 - s_0300: -1 @@ -52467,116 +52597,124 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFL058W + - gene_reaction_rule: "YFL058W" - annotation: !!omap - - bigg.reaction: AHMMPS - - metanetx.reaction: MNXR95632 - - sbo: SBO:0000176 + - bigg.reaction: "AHMMPS" + - metanetx.reaction: "MNXR95632" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1604 - - name: 4-aminobenzoate exchange + - id: "r_1604" + - name: "4-aminobenzoate exchange" - metabolites: !!omap - s_0272: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_4abz_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_4abz_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1605 - - name: 4-aminobenzoate transport + - id: "r_1605" + - name: "4-aminobenzoate transport" - metabolites: !!omap - s_0271: -1 - s_0272: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 4ABZt - - metanetx.reaction: MNXR94995 - - sbo: SBO:0000655 + - bigg.reaction: "4ABZt" + - metanetx.reaction: "MNXR94995" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1606 - - name: 4-aminobenzoate transport + - id: "r_1606" + - name: "4-aminobenzoate transport" - metabolites: !!omap - s_0271: -1 - s_0273: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 4ABZtm - - metanetx.reaction: MNXR94995 - - sbo: SBO:0000655 + - bigg.reaction: "4ABZtm" + - metanetx.reaction: "MNXR94995" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1607 - - name: 4-aminobutanal transport + - id: "r_1607" + - name: "4-aminobutanal transport" - metabolites: !!omap - s_0274: -1 - s_0275: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 4ABUTNtm - - metanetx.reaction: MNXR94992 - - sbo: SBO:0000655 + - bigg.reaction: "4ABUTNtm" + - metanetx.reaction: "MNXR94992" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1608 - - name: 4-aminobutyrate transport + - id: "r_1608" + - name: "4-aminobutyrate transport" - metabolites: !!omap - s_0734: -1 - s_0738: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 4ABUTtm - - metanetx.reaction: MNXR94993 - - sbo: SBO:0000655 + - bigg.reaction: "4ABUTtm" + - metanetx.reaction: "MNXR94993" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1609 - - name: 4-hydroxy-2-oxoglutarate transport + - id: "r_1609" + - name: "4-hydroxy-2-oxoglutarate transport" - metabolites: !!omap - s_0282: -1 - s_0283: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 4H2OGLTtm - - metanetx.reaction: MNXR95001 - - sbo: SBO:0000655 + - bigg.reaction: "4H2OGLTtm" + - metanetx.reaction: "MNXR95001" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1610 - - name: 4-hydroxy-2-oxoglutarate transport + - id: "r_1610" + - name: "4-hydroxy-2-oxoglutarate transport" - metabolites: !!omap - s_0282: -1 - s_0284: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 4H2OGLTtp - - metanetx.reaction: MNXR95001 - - sbo: SBO:0000655 + - bigg.reaction: "4H2OGLTtp" + - metanetx.reaction: "MNXR95001" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1611 - - name: 4-hydroxybenzoate transport + - id: "r_1611" + - name: "4-hydroxybenzoate transport" - metabolites: !!omap - s_0286: -1 - s_0287: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 4HBZtm - - metanetx.reaction: MNXR95013 - - sbo: SBO:0000655 + - bigg.reaction: "4HBZtm" + - metanetx.reaction: "MNXR95013" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1613 - - name: 5'-nucleotidase (AMP) + - id: "r_1613" + - name: "5'-nucleotidase (AMP)" - metabolites: !!omap - s_0386: 1 - s_0423: -1 @@ -52584,15 +52722,16 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NTD7 - - kegg.reaction: R00183 - - metanetx.reaction: MNXR102037 - - sbo: SBO:0000176 + - bigg.reaction: "NTD7" + - kegg.reaction: "R00183" + - metanetx.reaction: "MNXR102037" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1614 - - name: 5'-nucleotidase (dAMP) + - id: "r_1614" + - name: "5'-nucleotidase (dAMP)" - metabolites: !!omap - s_0132: 1 - s_0584: -1 @@ -52600,15 +52739,16 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NTD6 - - kegg.reaction: R02088 - - metanetx.reaction: MNXR102036 - - sbo: SBO:0000176 + - bigg.reaction: "NTD6" + - kegg.reaction: "R02088" + - metanetx.reaction: "MNXR102036" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1615 - - name: 5'-nucleotidase (dCMP) + - id: "r_1615" + - name: "5'-nucleotidase (dCMP)" - metabolites: !!omap - s_0589: -1 - s_0610: 1 @@ -52616,15 +52756,16 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NTD3 - - kegg.reaction: R01664 - - metanetx.reaction: MNXR102033 - - sbo: SBO:0000176 + - bigg.reaction: "NTD3" + - kegg.reaction: "R01664" + - metanetx.reaction: "MNXR102033" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1616 - - name: 5'-nucleotidase (dGMP) + - id: "r_1616" + - name: "5'-nucleotidase (dGMP)" - metabolites: !!omap - s_0134: 1 - s_0615: -1 @@ -52632,15 +52773,16 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NTD8 - - kegg.reaction: R01968 - - metanetx.reaction: MNXR102038 - - sbo: SBO:0000176 + - bigg.reaction: "NTD8" + - kegg.reaction: "R01968" + - metanetx.reaction: "MNXR102038" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1617 - - name: 5'-nucleotidase (dTMP) + - id: "r_1617" + - name: "5'-nucleotidase (dTMP)" - metabolites: !!omap - s_0649: -1 - s_0803: -1 @@ -52648,15 +52790,16 @@ - s_1493: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NTD5 - - kegg.reaction: R01569 - - metanetx.reaction: MNXR102035 - - sbo: SBO:0000176 + - bigg.reaction: "NTD5" + - kegg.reaction: "R01569" + - metanetx.reaction: "MNXR102035" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1618 - - name: 5'-nucleotidase (dUMP) + - id: "r_1618" + - name: "5'-nucleotidase (dUMP)" - metabolites: !!omap - s_0138: 1 - s_0654: -1 @@ -52664,15 +52807,16 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NTD1 - - kegg.reaction: R02102 - - metanetx.reaction: MNXR102028 - - sbo: SBO:0000176 + - bigg.reaction: "NTD1" + - kegg.reaction: "R02102" + - metanetx.reaction: "MNXR102028" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1619 - - name: 5'-nucleotidase (GMP) + - id: "r_1619" + - name: "5'-nucleotidase (GMP)" - metabolites: !!omap - s_0782: -1 - s_0790: 1 @@ -52680,17 +52824,17 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER037W + - gene_reaction_rule: "YER037W" - annotation: !!omap - - bigg.reaction: NTD9 - - kegg.reaction: R01227 - - metanetx.reaction: MNXR100381 - - pmid: 23670538 - - sbo: SBO:0000176 + - bigg.reaction: "NTD9" + - kegg.reaction: "R01227" + - metanetx.reaction: "MNXR100381" + - pmid: "23670538" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_1620 - - name: 5'-nucleotidase (XMP) + - id: "r_1620" + - name: "5'-nucleotidase (XMP)" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -52698,38 +52842,41 @@ - s_1565: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NTD10 - - kegg.reaction: R02719 - - metanetx.reaction: MNXR102029 - - sbo: SBO:0000176 + - bigg.reaction: "NTD10" + - kegg.reaction: "R02719" + - metanetx.reaction: "MNXR102029" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1621 - - name: 5-aminolevulinate exchange + - id: "r_1621" + - name: "5-aminolevulinate exchange" - metabolites: !!omap - s_0316: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_5aop_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_5aop_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1622 - - name: 5-aminolevulinate transport + - id: "r_1622" + - name: "5-aminolevulinate transport" - metabolites: !!omap - s_0315: -1 - s_0317: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 5AOPtm - - metanetx.reaction: MNXR95062 - - sbo: SBO:0000655 + - bigg.reaction: "5AOPtm" + - metanetx.reaction: "MNXR95062" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1623 - - name: 5-formethyltetrahydrofolate cyclo-ligase + - id: "r_1623" + - name: "5-formethyltetrahydrofolate cyclo-ligase" - metabolites: !!omap - s_0305: 1 - s_0321: -1 @@ -52738,16 +52885,16 @@ - s_1326: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER183C + - gene_reaction_rule: "YER183C" - annotation: !!omap - - bigg.reaction: FTHFCLm - - kegg.reaction: R02301 - - metanetx.reaction: MNXR99668 - - sbo: SBO:0000176 + - bigg.reaction: "FTHFCLm" + - kegg.reaction: "R02301" + - metanetx.reaction: "MNXR99668" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1624 - - name: 5-formyltetrahydrofolate:10-formyltetrahydrofolate isomerase + - id: "r_1624" + - name: "5-formyltetrahydrofolate:10-formyltetrahydrofolate isomerase" - metabolites: !!omap - s_0120: 1 - s_0319: -1 @@ -52758,284 +52905,307 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER183C + - gene_reaction_rule: "YER183C" - annotation: !!omap - - bigg.reaction: FTHFI - - metanetx.reaction: MNXR99671 - - sbo: SBO:0000176 + - bigg.reaction: "FTHFI" + - metanetx.reaction: "MNXR99671" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1625 - - name: 5-formyltetrahydrofolic acid exchange + - id: "r_1625" + - name: "5-formyltetrahydrofolic acid exchange" - metabolites: !!omap - s_0320: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_5fthf_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_5fthf_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1627 - - name: 7,8-diaminononanoate exchange + - id: "r_1627" + - name: "7,8-diaminononanoate exchange" - metabolites: !!omap - s_0342: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_dann_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_dann_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1628 - - name: 7,8-diaminononanoate transport + - id: "r_1628" + - name: "7,8-diaminononanoate transport" - metabolites: !!omap - s_0341: 1 - s_0342: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1629 - - name: 8-amino-7-oxononanoate exchange + - id: "r_1629" + - name: "8-amino-7-oxononanoate exchange" - metabolites: !!omap - s_0354: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_8aonn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_8aonn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1630 - - name: 9H-xanthine exchange + - id: "r_1630" + - name: "9H-xanthine exchange" - metabolites: !!omap - s_0358: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_xan_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_xan_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1631 - - name: acetaldehyde exchange + - id: "r_1631" + - name: "acetaldehyde exchange" - metabolites: !!omap - s_0360: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_acald_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_acald_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1632 - - name: acetaldehyde transport + - id: "r_1632" + - name: "acetaldehyde transport" - metabolites: !!omap - s_0359: 1 - s_0361: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ACALDtm - - metanetx.reaction: MNXR95212 - - sbo: SBO:0000655 + - bigg.reaction: "ACALDtm" + - metanetx.reaction: "MNXR95212" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1633 - - name: acetaldehyde transport + - id: "r_1633" + - name: "acetaldehyde transport" - metabolites: !!omap - s_0359: 1 - s_0360: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ACALDt - - metanetx.reaction: MNXR95212 - - sbo: SBO:0000655 + - bigg.reaction: "ACALDt" + - metanetx.reaction: "MNXR95212" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1634 - - name: acetate exchange + - id: "r_1634" + - name: "acetate exchange" - metabolites: !!omap - s_0364: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ac_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ac_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1635 - - name: acetate transport + - id: "r_1635" + - name: "acetate transport" - metabolites: !!omap - s_0362: -1 - s_0366: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95431 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95431" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1637 - - name: acetyl-CoA transport + - id: "r_1637" + - name: "acetyl-CoA transport" - metabolites: !!omap - s_0373: -1 - s_0377: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ACCOAtn - - metanetx.reaction: MNXR95223 - - sbo: SBO:0000655 + - bigg.reaction: "ACCOAtn" + - metanetx.reaction: "MNXR95223" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1638 - - name: acetylcarnitine transport + - id: "r_1638" + - name: "acetylcarnitine transport" - metabolites: !!omap - s_1235: 1 - s_1237: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ACRNtp - - metanetx.reaction: MNXR95412 - - sbo: SBO:0000655 + - bigg.reaction: "ACRNtp" + - metanetx.reaction: "MNXR95412" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1639 - - name: adenine exchange + - id: "r_1639" + - name: "adenine exchange" - metabolites: !!omap - s_0384: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ade_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ade_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1640 - - name: adenine transport + - id: "r_1640" + - name: "adenine transport" - metabolites: !!omap - s_0383: -1 - s_0385: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ADEtm - - metanetx.reaction: MNXR95445 - - sbo: SBO:0000655 + - bigg.reaction: "ADEtm" + - metanetx.reaction: "MNXR95445" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1641 - - name: adenosine 3',5'-bismonophosphate exchange + - id: "r_1641" + - name: "adenosine 3',5'-bismonophosphate exchange" - metabolites: !!omap - s_0391: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pap_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pap_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1642 - - name: adenosine 3',5'-bisphosphate transport + - id: "r_1642" + - name: "adenosine 3',5'-bisphosphate transport" - metabolites: !!omap - s_0390: -1 - s_0392: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR011C + - gene_reaction_rule: "YPR011C" - annotation: !!omap - - bigg.reaction: PAPtm - - metanetx.reaction: MNXR102382 - - sbo: SBO:0000655 + - bigg.reaction: "PAPtm" + - metanetx.reaction: "MNXR102382" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1643 - - name: adenosine exchange + - id: "r_1643" + - name: "adenosine exchange" - metabolites: !!omap - s_0387: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_adn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_adn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1644 - - name: ADP transport + - id: "r_1644" + - name: "ADP transport" - metabolites: !!omap - s_0394: -1 - s_0398: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95484 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95484" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1645 - - name: ADP transport + - id: "r_1645" + - name: "ADP transport" - metabolites: !!omap - s_0394: -1 - s_0395: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95484 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95484" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1647 - - name: AKG transporter, peroxisome + - id: "r_1647" + - name: "AKG transporter, peroxisome" - metabolites: !!omap - s_0180: -1 - s_0184: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: AKGtp - - metanetx.reaction: MNXR95663 - - sbo: SBO:0000655 + - bigg.reaction: "AKGtp" + - metanetx.reaction: "MNXR95663" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1648 - - name: allantoate exchange + - id: "r_1648" + - name: "allantoate exchange" - metabolites: !!omap - s_0406: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_alltt_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_alltt_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1649 - - name: allantoin exchange + - id: "r_1649" + - name: "allantoin exchange" - metabolites: !!omap - s_0408: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_alltn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_alltn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1650 - - name: trehalose exchange + - id: "r_1650" + - name: "trehalose exchange" - metabolites: !!omap - s_1521: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_tre_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_tre_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1651 - - name: alpha-D-glucosamine 6-phosphate exchange + - id: "r_1651" + - name: "alpha-D-glucosamine 6-phosphate exchange" - metabolites: !!omap - s_0413: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gam6p_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gam6p_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1652 - - name: alpha-ketoglutarate/malate transporter + - id: "r_1652" + - name: "alpha-ketoglutarate/malate transporter" - metabolites: !!omap - s_0066: 1 - s_0067: -1 @@ -53043,38 +53213,41 @@ - s_0181: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: AKGMAL - - metanetx.reaction: MNXR95659 - - sbo: SBO:0000655 + - bigg.reaction: "AKGMAL" + - metanetx.reaction: "MNXR95659" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1654 - - name: ammonium exchange + - id: "r_1654" + - name: "ammonium exchange" - metabolites: !!omap - s_0420: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_nh4_e - - metanetx.reaction: MNXR101948 - - sbo: SBO:0000627 + - bigg.reaction: "EX_nh4_e" + - metanetx.reaction: "MNXR101948" + - sbo: "SBO:0000627" - !!omap - - id: r_1656 - - name: AMP transport + - id: "r_1656" + - name: "AMP transport" - metabolites: !!omap - s_0423: 1 - s_0425: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: AMPtn - - metanetx.reaction: MNXR95830 - - sbo: SBO:0000655 + - bigg.reaction: "AMPtn" + - metanetx.reaction: "MNXR95830" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1657 - - name: arginine transport + - id: "r_1657" + - name: "arginine transport" - metabolites: !!omap - s_0794: -1 - s_0799: 1 @@ -53082,30 +53255,30 @@ - s_0967: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR147W + - gene_reaction_rule: "YBR147W" - annotation: !!omap - - bigg.reaction: ARGt2m - - metanetx.reaction: MNXR95953 - - pmid: 9874237 - - sbo: SBO:0000655 + - bigg.reaction: "ARGt2m" + - metanetx.reaction: "MNXR95953" + - pmid: "9874237" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_1658 - - name: asparagine transport + - id: "r_1658" + - name: "asparagine transport" - metabolites: !!omap - s_0969: -1 - s_0971: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR508C + - gene_reaction_rule: "YDR508C" - annotation: !!omap - - bigg.reaction: ASNtm - - metanetx.reaction: MNXR96069 - - sbo: SBO:0000655 + - bigg.reaction: "ASNtm" + - metanetx.reaction: "MNXR96069" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1659 - - name: aspartate-glutamate transporter + - id: "r_1659" + - name: "aspartate-glutamate transporter" - metabolites: !!omap - s_0973: -1 - s_0976: 1 @@ -53113,50 +53286,54 @@ - s_0995: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ASPGLUtp - - metanetx.reaction: MNXR96083 - - sbo: SBO:0000655 + - bigg.reaction: "ASPGLUtp" + - metanetx.reaction: "MNXR96083" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1660 - - name: ATP diffusion + - id: "r_1660" + - name: "ATP diffusion" - metabolites: !!omap - s_0434: -1 - s_0438: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ATPtn - - metanetx.reaction: MNXR96140 - - sbo: SBO:0000655 + - bigg.reaction: "ATPtn" + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1661 - - name: ATP transport + - id: "r_1661" + - name: "ATP transport" - metabolites: !!omap - s_0434: -1 - s_0435: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96140 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1663 - - name: bicarbonate exchange + - id: "r_1663" + - name: "bicarbonate exchange" - metabolites: !!omap - s_0446: -1 - lower_bound: 0 - upper_bound: 0 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_hco3_e - - metanetx.reaction: MNXR100483 - - sbo: SBO:0000627 + - bigg.reaction: "EX_hco3_e" + - metanetx.reaction: "MNXR100483" + - sbo: "SBO:0000627" - !!omap - - id: r_1664 - - name: bicarbonate formation + - id: "r_1664" + - name: "bicarbonate formation" - metabolites: !!omap - s_0447: 1 - s_0460: -1 @@ -53164,15 +53341,16 @@ - s_0807: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: HCO3Em - - kegg.reaction: R00132 - - metanetx.reaction: MNXR100482 - - sbo: SBO:0000176 + - bigg.reaction: "HCO3Em" + - kegg.reaction: "R00132" + - metanetx.reaction: "MNXR100482" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1665 - - name: bicarbonate formation + - id: "r_1665" + - name: "bicarbonate formation" - metabolites: !!omap - s_0448: 1 - s_0461: -1 @@ -53180,15 +53358,16 @@ - s_0808: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: HCO3En - - kegg.reaction: R00132 - - metanetx.reaction: MNXR100482 - - sbo: SBO:0000176 + - bigg.reaction: "HCO3En" + - kegg.reaction: "R00132" + - metanetx.reaction: "MNXR100482" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1667 - - name: bicarbonate formation + - id: "r_1667" + - name: "bicarbonate formation" - metabolites: !!omap - s_0445: 1 - s_0456: -1 @@ -53196,16 +53375,16 @@ - s_0803: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL036W + - gene_reaction_rule: "YNL036W" - annotation: !!omap - - bigg.reaction: HCO3E - - kegg.reaction: R00132 - - metanetx.reaction: MNXR100482 - - sbo: SBO:0000176 + - bigg.reaction: "HCO3E" + - kegg.reaction: "R00132" + - metanetx.reaction: "MNXR100482" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1668 - - name: bicarbonate formation + - id: "r_1668" + - name: "bicarbonate formation" - metabolites: !!omap - s_0446: 1 - s_0458: -1 @@ -53213,61 +53392,66 @@ - s_0805: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: HCO3Ee - - kegg.reaction: R00132 - - metanetx.reaction: MNXR100482 - - sbo: SBO:0000176 + - bigg.reaction: "HCO3Ee" + - kegg.reaction: "R00132" + - metanetx.reaction: "MNXR100482" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1669 - - name: bicarbonate transport + - id: "r_1669" + - name: "bicarbonate transport" - metabolites: !!omap - s_0445: -1 - s_0448: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: HCO3tn - - metanetx.reaction: MNXR100484 - - sbo: SBO:0000655 + - bigg.reaction: "HCO3tn" + - metanetx.reaction: "MNXR100484" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1671 - - name: biotin exchange + - id: "r_1671" + - name: "biotin exchange" - metabolites: !!omap - s_0452: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_btn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_btn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1672 - - name: carbon dioxide exchange + - id: "r_1672" + - name: "carbon dioxide exchange" - metabolites: !!omap - s_0458: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_co2_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_co2_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1673 - - name: carnitine transport + - id: "r_1673" + - name: "carnitine transport" - metabolites: !!omap - s_0021: -1 - s_0024: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CRNtp - - metanetx.reaction: MNXR96906 - - sbo: SBO:0000655 + - bigg.reaction: "CRNtp" + - metanetx.reaction: "MNXR96906" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1674 - - name: carnitine-acetylcarnitine carrier + - id: "r_1674" + - name: "carnitine-acetylcarnitine carrier" - metabolites: !!omap - s_0021: -1 - s_0024: 1 @@ -53275,97 +53459,105 @@ - s_1237: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CRNCARtp - - metanetx.reaction: MNXR96898 - - sbo: SBO:0000655 + - bigg.reaction: "CRNCARtp" + - metanetx.reaction: "MNXR96898" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1675 - - name: CDP transport + - id: "r_1675" + - name: "CDP transport" - metabolites: !!omap - s_0467: -1 - s_0468: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CDPtn - - metanetx.reaction: MNXR96562 - - sbo: SBO:0000655 + - bigg.reaction: "CDPtn" + - metanetx.reaction: "MNXR96562" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1676 - - name: ceramide transport + - id: "r_1676" + - name: "ceramide transport" - metabolites: !!omap - s_0475: 1 - s_0476: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137412 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137412" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1677 - - name: ceramide transport + - id: "r_1677" + - name: "ceramide transport" - metabolites: !!omap - s_0481: 1 - s_0482: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137414 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137414" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1678 - - name: ceramide transport + - id: "r_1678" + - name: "ceramide transport" - metabolites: !!omap - s_0499: 1 - s_0500: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1679 - - name: ceramide transport + - id: "r_1679" + - name: "ceramide transport" - metabolites: !!omap - s_0478: 1 - s_0479: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137413 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137413" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1680 - - name: ceramide transport + - id: "r_1680" + - name: "ceramide transport" - metabolites: !!omap - s_0484: 1 - s_0485: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137415 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137415" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1681 - - name: ceramide transport + - id: "r_1681" + - name: "ceramide transport" - metabolites: !!omap - s_0502: 1 - s_0503: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1682 - - name: cholestenol delta-isomerase, lumped reaction + - id: "r_1682" + - name: "cholestenol delta-isomerase, lumped reaction" - metabolites: !!omap - s_0662: 1 - s_0794: 1 @@ -53376,74 +53568,79 @@ - s_1569: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CHLSTI - - metanetx.reaction: MNXR96688 - - sbo: SBO:0000176 + - bigg.reaction: "CHLSTI" + - metanetx.reaction: "MNXR96688" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1683 - - name: choline exchange + - id: "r_1683" + - name: "choline exchange" - metabolites: !!omap - s_0513: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_chol_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_chol_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1684 - - name: choline transport + - id: "r_1684" + - name: "choline transport" - metabolites: !!omap - s_0511: -1 - s_0512: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL077C or YOR161C + - gene_reaction_rule: "YGL077C or YOR161C" - annotation: !!omap - - metanetx.reaction: MNXR96693 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96693" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1685 - - name: chorismate pyruvate lyase + - id: "r_1685" + - name: "chorismate pyruvate lyase" - metabolites: !!omap - s_0286: 1 - s_0515: -1 - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CHRPL - - kegg.reaction: R01302 - - metanetx.reaction: MNXR96711 - - sbo: SBO:0000176 + - bigg.reaction: "CHRPL" + - kegg.reaction: "R01302" + - metanetx.reaction: "MNXR96711" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1686 - - name: citrate transport + - id: "r_1686" + - name: "citrate transport" - metabolites: !!omap - s_0522: 1 - s_0523: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96756 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96756" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1687 - - name: citrate exchange + - id: "r_1687" + - name: "citrate exchange" - metabolites: !!omap - s_0523: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_cit_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_cit_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1688 - - name: citrate/isocitrate antiport + - id: "r_1688" + - name: "citrate/isocitrate antiport" - metabolites: !!omap - s_0522: -1 - s_0525: 1 @@ -53451,14 +53648,15 @@ - s_0942: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CITtcp - - metanetx.reaction: MNXR96755 - - sbo: SBO:0000655 + - bigg.reaction: "CITtcp" + - metanetx.reaction: "MNXR96755" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1689 - - name: citrate/malate antiport + - id: "r_1689" + - name: "citrate/malate antiport" - metabolites: !!omap - s_0066: -1 - s_0069: 1 @@ -53466,14 +53664,15 @@ - s_0525: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CITtap - - metanetx.reaction: MNXR96753 - - sbo: SBO:0000655 + - bigg.reaction: "CITtap" + - metanetx.reaction: "MNXR96753" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1690 - - name: CMP nucleosidase + - id: "r_1690" + - name: "CMP nucleosidase" - metabolites: !!omap - s_0526: -1 - s_0545: 1 @@ -53481,128 +53680,138 @@ - s_1408: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CMPN - - metanetx.reaction: MNXR96804 - - sbo: SBO:0000176 + - bigg.reaction: "CMPN" + - metanetx.reaction: "MNXR96804" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1691 - - name: CO2 transport + - id: "r_1691" + - name: "CO2 transport" - metabolites: !!omap - s_0456: -1 - s_0457: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CO2ter - - metanetx.reaction: MNXR96810 - - sbo: SBO:0000655 + - bigg.reaction: "CO2ter" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1694 - - name: CO2 transport + - id: "r_1694" + - name: "CO2 transport" - metabolites: !!omap - s_0456: 1 - s_0461: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CO2tn - - metanetx.reaction: MNXR96810 - - sbo: SBO:0000655 + - bigg.reaction: "CO2tn" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1695 - - name: CO2 transport + - id: "r_1695" + - name: "CO2 transport" - metabolites: !!omap - s_0456: -1 - s_0462: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CO2tp - - metanetx.reaction: MNXR96810 - - sbo: SBO:0000655 + - bigg.reaction: "CO2tp" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1696 - - name: CO2 transport + - id: "r_1696" + - name: "CO2 transport" - metabolites: !!omap - s_0456: -1 - s_0460: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CO2tm - - metanetx.reaction: MNXR96810 - - sbo: SBO:0000655 + - bigg.reaction: "CO2tm" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1697 - - name: CO2 transport + - id: "r_1697" + - name: "CO2 transport" - metabolites: !!omap - s_0456: -1 - s_0458: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CO2t - - metanetx.reaction: MNXR96810 - - sbo: SBO:0000655 + - bigg.reaction: "CO2t" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1698 - - name: coenzyme A transport + - id: "r_1698" + - name: "coenzyme A transport" - metabolites: !!omap - s_0529: -1 - s_0530: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: COAtr - - metanetx.reaction: MNXR96815 - - sbo: SBO:0000655 + - bigg.reaction: "COAtr" + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1699 - - name: coenzyme A transport + - id: "r_1699" + - name: "coenzyme A transport" - metabolites: !!omap - s_0529: -1 - s_0533: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: COAtn - - metanetx.reaction: MNXR96815 - - sbo: SBO:0000655 + - bigg.reaction: "COAtn" + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1700 - - name: coenzyme A transport + - id: "r_1700" + - name: "coenzyme A transport" - metabolites: !!omap - s_0529: 1 - s_0534: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: COAtp - - metanetx.reaction: MNXR96815 - - sbo: SBO:0000655 + - bigg.reaction: "COAtp" + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1702 - - name: cytidine exchange + - id: "r_1702" + - name: "cytidine exchange" - metabolites: !!omap - s_0544: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_cytd_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_cytd_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1703 - - name: cytidylate kinase (CMP) + - id: "r_1703" + - name: "cytidylate kinase (CMP)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -53610,15 +53819,16 @@ - s_0526: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CYTK1 - - kegg.reaction: R00512 - - metanetx.reaction: MNXR97047 - - sbo: SBO:0000176 + - bigg.reaction: "CYTK1" + - kegg.reaction: "R00512" + - metanetx.reaction: "MNXR97047" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1704 - - name: cytidylate kinase (dCMP) + - id: "r_1704" + - name: "cytidylate kinase (dCMP)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -53626,209 +53836,224 @@ - s_0589: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CYTK2 - - kegg.reaction: R01665 - - metanetx.reaction: MNXR97053 - - sbo: SBO:0000176 + - bigg.reaction: "CYTK2" + - kegg.reaction: "R01665" + - metanetx.reaction: "MNXR97053" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1705 - - name: cytosine exchange + - id: "r_1705" + - name: "cytosine exchange" - metabolites: !!omap - s_0546: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_csn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_csn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1706 - - name: D-arabinose exchange + - id: "r_1706" + - name: "D-arabinose exchange" - metabolites: !!omap - s_0549: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_arab__D_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_arab__D_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1707 - - name: D-arabinose transport + - id: "r_1707" + - name: "D-arabinose transport" - metabolites: !!omap - s_0548: 1 - s_0549: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR342C or YHR092C + - gene_reaction_rule: "YDR342C or YHR092C" - annotation: !!omap - - bigg.reaction: ARAB_Dt - - sbo: SBO:0000655 + - bigg.reaction: "ARAB_Dt" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1708 - - name: D-erythrose 4-phosphate transport + - id: "r_1708" + - name: "D-erythrose 4-phosphate transport" - metabolites: !!omap - s_0551: -1 - s_0552: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: E4Ptm - - metanetx.reaction: MNXR97843 - - sbo: SBO:0000655 + - bigg.reaction: "E4Ptm" + - metanetx.reaction: "MNXR97843" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1709 - - name: D-fructose exchange + - id: "r_1709" + - name: "D-fructose exchange" - metabolites: !!omap - s_0554: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_fru_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_fru_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1710 - - name: D-galactose exchange + - id: "r_1710" + - name: "D-galactose exchange" - metabolites: !!omap - s_0559: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gal_e - - kegg.reaction: R10619 - - metanetx.reaction: MNXR113944 - - sbo: SBO:0000627 + - bigg.reaction: "EX_gal_e" + - kegg.reaction: "R10619" + - metanetx.reaction: "MNXR113944" + - sbo: "SBO:0000627" - !!omap - - id: r_1711 - - name: D-galacturonate exchange + - id: "r_1711" + - name: "D-galacturonate exchange" - metabolites: !!omap - s_0560: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_galur_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_galur_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1712 - - name: D-glucitol exchange + - id: "r_1712" + - name: "D-glucitol exchange" - metabolites: !!omap - s_0562: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_sbt__D_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_sbt__D_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1713 - - name: D-glucosamine 6-phosphate uniport + - id: "r_1713" + - name: "D-glucosamine 6-phosphate uniport" - metabolites: !!omap - s_0412: 1 - s_0413: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GAM6Pt - - sbo: SBO:0000655 + - bigg.reaction: "GAM6Pt" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1714 - - name: D-glucose exchange + - id: "r_1714" + - name: "D-glucose exchange" - metabolites: !!omap - s_0565: -1 - lower_bound: -1 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_glc__D_e - - metanetx.reaction: MNXR138465 - - sbo: SBO:0000627 + - bigg.reaction: "EX_glc__D_e" + - metanetx.reaction: "MNXR138465" + - sbo: "SBO:0000627" - !!omap - - id: r_1715 - - name: D-mannose exchange + - id: "r_1715" + - name: "D-mannose exchange" - metabolites: !!omap - s_0572: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_man_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_man_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1716 - - name: D-ribose exchange + - id: "r_1716" + - name: "D-ribose exchange" - metabolites: !!omap - s_0576: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_rib__D_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_rib__D_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1717 - - name: D-sorbitol transport + - id: "r_1717" + - name: "D-sorbitol transport" - metabolites: !!omap - s_0561: 1 - s_0562: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL245C or YEL069C or YJR158W or YNR072W + - gene_reaction_rule: "YDL245C or YEL069C or YJR158W or YNR072W" - annotation: !!omap - - bigg.reaction: SBT_Dt - - metanetx.reaction: MNXR104288 - - sbo: SBO:0000655 + - bigg.reaction: "SBT_Dt" + - metanetx.reaction: "MNXR104288" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1718 - - name: D-xylose exchange + - id: "r_1718" + - name: "D-xylose exchange" - metabolites: !!omap - s_0579: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_xyl__D_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_xyl__D_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1719 - - name: D-xylose transport + - id: "r_1719" + - name: "D-xylose transport" - metabolites: !!omap - s_0578: 1 - s_0579: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR092C + - gene_reaction_rule: "YHR092C" - annotation: !!omap - - bigg.reaction: XYLt - - sbo: SBO:0000655 + - bigg.reaction: "XYLt" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1720 - - name: dADP transport + - id: "r_1720" + - name: "dADP transport" - metabolites: !!omap - s_0582: -1 - s_0583: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DADPtn - - metanetx.reaction: MNXR97082 - - sbo: SBO:0000655 + - bigg.reaction: "DADPtn" + - metanetx.reaction: "MNXR97082" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1721 - - name: dCDP transport + - id: "r_1721" + - name: "dCDP transport" - metabolites: !!omap - s_0587: -1 - s_0588: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DCDPtn - - metanetx.reaction: MNXR97182 - - sbo: SBO:0000655 + - bigg.reaction: "DCDPtn" + - metanetx.reaction: "MNXR97182" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1722 - - name: ATP deamination + - id: "r_1722" + - name: "ATP deamination" - metabolites: !!omap - s_0419: 1 - s_0434: -1 @@ -53837,15 +54062,16 @@ - s_0950: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ATPHs - - kegg.reaction: R00088 - - metanetx.reaction: MNXR96130 - - sbo: SBO:0000176 + - bigg.reaction: "ATPHs" + - kegg.reaction: "R00088" + - metanetx.reaction: "MNXR96130" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1723 - - name: dATP deamination + - id: "r_1723" + - name: "dATP deamination" - metabolites: !!omap - s_0419: 1 - s_0586: -1 @@ -53854,14 +54080,15 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DATPHs - - metanetx.reaction: MNXR97174 - - sbo: SBO:0000176 + - bigg.reaction: "DATPHs" + - metanetx.reaction: "MNXR97174" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1724 - - name: ADP deamination + - id: "r_1724" + - name: "ADP deamination" - metabolites: !!omap - s_0394: -1 - s_0419: 1 @@ -53870,14 +54097,15 @@ - s_0846: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - kegg.reaction: R00123 - - metanetx.reaction: MNXR106399 - - sbo: SBO:0000176 + - kegg.reaction: "R00123" + - metanetx.reaction: "MNXR106399" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1725 - - name: dADP deamination + - id: "r_1725" + - name: "dADP deamination" - metabolites: !!omap - s_0419: 1 - s_0582: -1 @@ -53886,48 +54114,52 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1726 - - name: deamino-NAD+ diffusion + - id: "r_1726" + - name: "deamino-NAD+ diffusion" - metabolites: !!omap - s_0591: -1 - s_0593: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DNADtn - - metanetx.reaction: MNXR97625 - - sbo: SBO:0000655 + - bigg.reaction: "DNADtn" + - metanetx.reaction: "MNXR97625" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1727 - - name: decanoate exchange + - id: "r_1727" + - name: "decanoate exchange" - metabolites: !!omap - s_0597: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_dca_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_dca_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1728 - - name: deoxyadenosine transport + - id: "r_1728" + - name: "deoxyadenosine transport" - metabolites: !!omap - s_0132: 1 - s_0133: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DADNt4 - - metanetx.reaction: MNXR97081 - - sbo: SBO:0000655 + - bigg.reaction: "DADNt4" + - metanetx.reaction: "MNXR97081" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1729 - - name: deoxyadenylate kinase + - id: "r_1729" + - name: "deoxyadenylate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -53935,65 +54167,69 @@ - s_0584: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL166C + - gene_reaction_rule: "YDL166C" - annotation: !!omap - - bigg.reaction: DADK - - kegg.reaction: R01547 - - metanetx.reaction: MNXR96117 - - sbo: SBO:0000176 + - bigg.reaction: "DADK" + - kegg.reaction: "R01547" + - metanetx.reaction: "MNXR96117" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1730 - - name: deoxycytidine exchange + - id: "r_1730" + - name: "deoxycytidine exchange" - metabolites: !!omap - s_0611: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_dcyt_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_dcyt_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1731 - - name: deoxycytidine transport + - id: "r_1731" + - name: "deoxycytidine transport" - metabolites: !!omap - s_0610: 1 - s_0611: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DCYTt - - metanetx.reaction: MNXR97208 - - sbo: SBO:0000655 + - bigg.reaction: "DCYTt" + - metanetx.reaction: "MNXR97208" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1732 - - name: deoxyguanosine transport + - id: "r_1732" + - name: "deoxyguanosine transport" - metabolites: !!omap - s_0134: 1 - s_0135: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DGSNt - - metanetx.reaction: MNXR97324 - - sbo: SBO:0000655 + - bigg.reaction: "DGSNt" + - metanetx.reaction: "MNXR97324" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1733 - - name: deoxyinosine transport + - id: "r_1733" + - name: "deoxyinosine transport" - metabolites: !!omap - s_0136: 1 - s_0137: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DINt - - metanetx.reaction: MNXR97466 - - sbo: SBO:0000655 + - bigg.reaction: "DINt" + - metanetx.reaction: "MNXR97466" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1734 - - name: deoxyuridine kinase (ATP:deoxyuridine) + - id: "r_1734" + - name: "deoxyuridine kinase (ATP:deoxyuridine)" - metabolites: !!omap - s_0138: -1 - s_0394: 1 @@ -54002,29 +54238,30 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DURIK1 - - kegg.reaction: R02099 - - metanetx.reaction: MNXR97817 - - sbo: SBO:0000176 + - bigg.reaction: "DURIK1" + - kegg.reaction: "R02099" + - metanetx.reaction: "MNXR97817" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1735 - - name: deoxyuridine transport + - id: "r_1735" + - name: "deoxyuridine transport" - metabolites: !!omap - s_0138: 1 - s_0139: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL042C + - gene_reaction_rule: "YBL042C" - annotation: !!omap - - bigg.reaction: DURIt - - metanetx.reaction: MNXR97819 - - sbo: SBO:0000655 + - bigg.reaction: "DURIt" + - metanetx.reaction: "MNXR97819" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1736 - - name: dephospho-CoA kinase + - id: "r_1736" + - name: "dephospho-CoA kinase" - metabolites: !!omap - s_0197: -1 - s_0394: 1 @@ -54033,40 +54270,43 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DPCOAK - - kegg.reaction: R00130 - - metanetx.reaction: MNXR97762 - - sbo: SBO:0000176 + - bigg.reaction: "DPCOAK" + - kegg.reaction: "R00130" + - metanetx.reaction: "MNXR97762" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1737 - - name: dGDP transport + - id: "r_1737" + - name: "dGDP transport" - metabolites: !!omap - s_0613: -1 - s_0614: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DGDPtn - - metanetx.reaction: MNXR97314 - - sbo: SBO:0000655 + - bigg.reaction: "DGDPtn" + - metanetx.reaction: "MNXR97314" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1738 - - name: dhnpt transport + - id: "r_1738" + - name: "dhnpt transport" - metabolites: !!omap - s_0343: -1 - s_0344: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DHNPTtm - - sbo: SBO:0000655 + - bigg.reaction: "DHNPTtm" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1739 - - name: diamine transaminase + - id: "r_1739" + - name: "diamine transaminase" - metabolites: !!omap - s_0373: -1 - s_0529: 1 @@ -54075,28 +54315,29 @@ - s_1442: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR071C + - gene_reaction_rule: "YDR071C" - annotation: !!omap - - bigg.reaction: DIAT - - metanetx.reaction: MNXR97455 - - sbo: SBO:0000176 + - bigg.reaction: "DIAT" + - metanetx.reaction: "MNXR97455" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1743 - - name: dihydrofolate transport + - id: "r_1743" + - name: "dihydrofolate transport" - metabolites: !!omap - s_0625: -1 - s_0626: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DHFtm - - metanetx.reaction: MNXR97404 - - sbo: SBO:0000655 + - bigg.reaction: "DHFtm" + - metanetx.reaction: "MNXR97404" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1744 - - name: dihydroneopterin triphosphate pyrophosphatase + - id: "r_1744" + - name: "dihydroneopterin triphosphate pyrophosphatase" - metabolites: !!omap - s_0345: 1 - s_0346: -1 @@ -54105,345 +54346,370 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DNTPPA - - kegg.reaction: R04638 - - metanetx.reaction: MNXR97680 - - sbo: SBO:0000176 + - bigg.reaction: "DNTPPA" + - kegg.reaction: "R04638" + - metanetx.reaction: "MNXR97680" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1745 - - name: dihydropteroate transport + - id: "r_1745" + - name: "dihydropteroate transport" - metabolites: !!omap - s_0347: -1 - s_0348: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DHPTtm - - metanetx.reaction: MNXR142733 - - sbo: SBO:0000655 + - bigg.reaction: "DHPTtm" + - metanetx.reaction: "MNXR142733" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1746 - - name: dihydroxyacetone phosphate transport + - id: "r_1746" + - name: "dihydroxyacetone phosphate transport" - metabolites: !!omap - s_0629: 1 - s_0632: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DHAPtm - - metanetx.reaction: MNXR97366 - - pmid: 22672422 - - sbo: SBO:0000655 + - bigg.reaction: "DHAPtm" + - metanetx.reaction: "MNXR97366" + - pmid: "22672422" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1747 - - name: diphosphate transport + - id: "r_1747" + - name: "diphosphate transport" - metabolites: !!omap - s_0633: -1 - s_0638: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PPItx - - metanetx.reaction: MNXR103112 - - sbo: SBO:0000655 + - bigg.reaction: "PPItx" + - metanetx.reaction: "MNXR103112" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1748 - - name: dolichol phosphate transport + - id: "r_1748" + - name: "dolichol phosphate transport" - metabolites: !!omap - s_0645: -1 - s_0646: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DOLP_ter - - sbo: SBO:0000655 + - bigg.reaction: "DOLP_ter" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1749 - - name: dTTP exchange + - id: "r_1749" + - name: "dTTP exchange" - metabolites: !!omap - s_0651: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_dttp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_dttp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1750 - - name: dTTP uniport + - id: "r_1750" + - name: "dTTP uniport" - metabolites: !!omap - s_0650: 1 - s_0651: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DTTPt - - metanetx.reaction: MNXR97810 - - sbo: SBO:0000655 + - bigg.reaction: "DTTPt" + - metanetx.reaction: "MNXR97810" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1751 - - name: dUDP diffusion + - id: "r_1751" + - name: "dUDP diffusion" - metabolites: !!omap - s_0652: -1 - s_0653: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DUDPtn - - metanetx.reaction: MNXR97812 - - sbo: SBO:0000655 + - bigg.reaction: "DUDPtn" + - metanetx.reaction: "MNXR97812" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1752 - - name: dUMP transport + - id: "r_1752" + - name: "dUMP transport" - metabolites: !!omap - s_0654: -1 - s_0655: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DUMPtn - - metanetx.reaction: MNXR97813 - - sbo: SBO:0000655 + - bigg.reaction: "DUMPtn" + - metanetx.reaction: "MNXR97813" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1753 - - name: episterol exchange + - id: "r_1753" + - name: "episterol exchange" - metabolites: !!omap - s_0659: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_epist_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_epist_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1754 - - name: ergosta-5,6,22,24,(28)-tetraen-3beta-ol transport + - id: "r_1754" + - name: "ergosta-5,6,22,24,(28)-tetraen-3beta-ol transport" - metabolites: !!omap - s_0662: -1 - s_0663: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ERGTETROLter - - metanetx.reaction: MNXR97951 - - sbo: SBO:0000655 + - bigg.reaction: "ERGTETROLter" + - metanetx.reaction: "MNXR97951" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1757 - - name: ergosterol exchange + - id: "r_1757" + - name: "ergosterol exchange" - metabolites: !!omap - s_0668: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ergst_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ergst_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1758 - - name: ergosterol transport + - id: "r_1758" + - name: "ergosterol transport" - metabolites: !!omap - s_0666: 1 - s_0667: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ERGSTter - - metanetx.reaction: MNXR97950 - - sbo: SBO:0000655 + - bigg.reaction: "ERGSTter" + - metanetx.reaction: "MNXR97950" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1759 - - name: ergosterol transport + - id: "r_1759" + - name: "ergosterol transport" - metabolites: !!omap - s_0666: -1 - s_0669: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR97950 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR97950" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1761 - - name: ethanol exchange + - id: "r_1761" + - name: "ethanol exchange" - metabolites: !!omap - s_0681: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_etoh_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_etoh_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1762 - - name: ethanol transport + - id: "r_1762" + - name: "ethanol transport" - metabolites: !!omap - s_0680: -1 - s_0681: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ETOHt - - metanetx.reaction: MNXR97980 - - sbo: SBO:0000655 + - bigg.reaction: "ETOHt" + - metanetx.reaction: "MNXR97980" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1763 - - name: ethanol transport, mitochondrial + - id: "r_1763" + - name: "ethanol transport, mitochondrial" - metabolites: !!omap - s_0680: -1 - s_0682: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ETOHtm - - metanetx.reaction: MNXR97980 - - sbo: SBO:0000655 + - bigg.reaction: "ETOHtm" + - metanetx.reaction: "MNXR97980" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1764 - - name: ethanolamine exchange + - id: "r_1764" + - name: "ethanolamine exchange" - metabolites: !!omap - s_0684: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_etha_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_etha_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1765 - - name: ethyl acetate exchange + - id: "r_1765" + - name: "ethyl acetate exchange" - metabolites: !!omap - s_0686: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_1766 - - name: farnesyl diphosphate transport + - id: "r_1766" + - name: "farnesyl diphosphate transport" - metabolites: !!omap - s_0190: -1 - s_0191: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: FRDPtm - - metanetx.reaction: MNXR99646 - - sbo: SBO:0000655 + - bigg.reaction: "FRDPtm" + - metanetx.reaction: "MNXR99646" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1770 - - name: fatty acid transport + - id: "r_1770" + - name: "fatty acid transport" - metabolites: !!omap - s_0595: -1 - s_0600: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: FA100tp - - metanetx.reaction: MNXR135772 - - sbo: SBO:0000655 + - bigg.reaction: "FA100tp" + - metanetx.reaction: "MNXR135772" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1771 - - name: fatty acid transport + - id: "r_1771" + - name: "fatty acid transport" - metabolites: !!omap - s_1065: -1 - s_1070: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - annotation: !!omap - - bigg.reaction: FA120tp - - metanetx.reaction: MNXR135773 - - sbo: SBO:0000655 + - bigg.reaction: "FA120tp" + - metanetx.reaction: "MNXR135773" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1772 - - name: fatty acid transport + - id: "r_1772" + - name: "fatty acid transport" - metabolites: !!omap - s_1161: -1 - s_1166: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - annotation: !!omap - - bigg.reaction: FA140tp - - metanetx.reaction: MNXR128297 - - sbo: SBO:0000655 + - bigg.reaction: "FA140tp" + - metanetx.reaction: "MNXR128297" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1774 - - name: fatty acid transport + - id: "r_1774" + - name: "fatty acid transport" - metabolites: !!omap - s_1286: -1 - s_1291: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - annotation: !!omap - - bigg.reaction: FA160tp - - metanetx.reaction: MNXR99101 - - sbo: SBO:0000655 + - bigg.reaction: "FA160tp" + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1775 - - name: fatty acid transport + - id: "r_1775" + - name: "fatty acid transport" - metabolites: !!omap - s_1293: -1 - s_1298: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: FA161tp - - sbo: SBO:0000655 + - bigg.reaction: "FA161tp" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1776 - - name: fatty acid transport + - id: "r_1776" + - name: "fatty acid transport" - metabolites: !!omap - s_1248: -1 - s_1253: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: FA80tp - - metanetx.reaction: MNXR99126 - - sbo: SBO:0000655 + - bigg.reaction: "FA80tp" + - metanetx.reaction: "MNXR99126" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1777 - - name: myristate (n-C14:0) transport + - id: "r_1777" + - name: "myristate (n-C14:0) transport" - metabolites: !!omap - s_1161: 1 - s_1163: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: TTDCAtr - - metanetx.reaction: MNXR128297 - - sbo: SBO:0000655 + - bigg.reaction: "TTDCAtr" + - metanetx.reaction: "MNXR128297" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1788 - - name: fecosterol exchange + - id: "r_1788" + - name: "fecosterol exchange" - metabolites: !!omap - s_0702: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_fecost_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_fecost_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1790 - - name: FMN adenylyltransferase + - id: "r_1790" + - name: "FMN adenylyltransferase" - metabolites: !!omap - s_0437: -1 - s_0636: 1 @@ -54452,86 +54718,91 @@ - s_0799: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL045C + - gene_reaction_rule: "YDL045C" - annotation: !!omap - - bigg.reaction: FMNATm - - kegg.reaction: R00161 - - metanetx.reaction: MNXR95501 - - sbo: SBO:0000176 + - bigg.reaction: "FMNATm" + - kegg.reaction: "R00161" + - metanetx.reaction: "MNXR95501" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1791 - - name: FMN exchange + - id: "r_1791" + - name: "FMN exchange" - metabolites: !!omap - s_0715: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_fmn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_fmn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1792 - - name: folic acid exchange + - id: "r_1792" + - name: "folic acid exchange" - metabolites: !!omap - s_0720: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_fol_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_fol_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1793 - - name: formate exchange + - id: "r_1793" + - name: "formate exchange" - metabolites: !!omap - s_0723: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_for_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_for_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1794 - - name: formate transport + - id: "r_1794" + - name: "formate transport" - metabolites: !!omap - s_0722: 1 - s_0724: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: FORtm - - metanetx.reaction: MNXR99620 - - sbo: SBO:0000655 + - bigg.reaction: "FORtm" + - metanetx.reaction: "MNXR99620" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1795 - - name: formate transport + - id: "r_1795" + - name: "formate transport" - metabolites: !!omap - s_0722: 1 - s_0723: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL065W + - gene_reaction_rule: "YNL065W" - annotation: !!omap - - bigg.reaction: FORt - - metanetx.reaction: MNXR99620 - - sbo: SBO:0000655 + - bigg.reaction: "FORt" + - metanetx.reaction: "MNXR99620" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1796 - - name: formate transport + - id: "r_1796" + - name: "formate transport" - metabolites: !!omap - s_0725: 1 - s_0726: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: FUMtr - - metanetx.reaction: MNXR99715 - - sbo: SBO:0000655 + - bigg.reaction: "FUMtr" + - metanetx.reaction: "MNXR99715" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1797 - - name: fructose-1-phosphate kinase + - id: "r_1797" + - name: "fructose-1-phosphate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -54540,260 +54811,278 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: FRUK - - sbo: SBO:0000176 + - bigg.reaction: "FRUK" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1798 - - name: fumarate exchange + - id: "r_1798" + - name: "fumarate exchange" - metabolites: !!omap - s_0726: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_fum_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_fum_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1800 - - name: gamma-aminobutyrate exchange + - id: "r_1800" + - name: "gamma-aminobutyrate exchange" - metabolites: !!omap - s_0736: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_4abut_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_4abut_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1801 - - name: GDP transport + - id: "r_1801" + - name: "GDP transport" - metabolites: !!omap - s_0739: 1 - s_0740: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GDPtg - - metanetx.reaction: MNXR100096 - - sbo: SBO:0000655 + - bigg.reaction: "GDPtg" + - metanetx.reaction: "MNXR100096" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1802 - - name: GDP transport + - id: "r_1802" + - name: "GDP transport" - metabolites: !!omap - s_0739: -1 - s_0742: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GDPtn - - metanetx.reaction: MNXR100096 - - sbo: SBO:0000655 + - bigg.reaction: "GDPtn" + - metanetx.reaction: "MNXR100096" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1803 - - name: GDP-alpha-D-mannose transport + - id: "r_1803" + - name: "GDP-alpha-D-mannose transport" - metabolites: !!omap - s_0743: -1 - s_0744: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL225W + - gene_reaction_rule: "YGL225W" - annotation: !!omap - - metanetx.reaction: MNXR131177 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR131177" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1805 - - name: glucose transport, vacuolar + - id: "r_1805" + - name: "glucose transport, vacuolar" - metabolites: !!omap - s_0563: -1 - s_0566: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR241C or YGL104C + - gene_reaction_rule: "YBR241C or YGL104C" - annotation: !!omap - - bigg.reaction: GLCtv - - metanetx.reaction: MNXR100188 - - sbo: SBO:0000655 + - bigg.reaction: "GLCtv" + - metanetx.reaction: "MNXR100188" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1806 - - name: glutathione disulfide exchange + - id: "r_1806" + - name: "glutathione disulfide exchange" - metabolites: !!omap - s_0755: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gthox_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gthox_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1807 - - name: glutathione exchange + - id: "r_1807" + - name: "glutathione exchange" - metabolites: !!omap - s_0751: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gthrd_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gthrd_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1808 - - name: glycerol exchange + - id: "r_1808" + - name: "glycerol exchange" - metabolites: !!omap - s_0766: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_glyc_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_glyc_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1809 - - name: glycerol-3-phosphate shuttle + - id: "r_1809" + - name: "glycerol-3-phosphate shuttle" - metabolites: !!omap - s_0767: -1 - s_0770: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GLYC3Ptm - - metanetx.reaction: MNXR100308 - - pmid: 22672422 - - sbo: SBO:0000655 + - bigg.reaction: "GLYC3Ptm" + - metanetx.reaction: "MNXR100308" + - pmid: "22672422" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1810 - - name: L-glycine exchange + - id: "r_1810" + - name: "L-glycine exchange" - metabolites: !!omap - s_1004: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gly_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gly_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1811 - - name: glycine transport + - id: "r_1811" + - name: "glycine transport" - metabolites: !!omap - s_1003: -1 - s_1005: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR058W + - gene_reaction_rule: "YPR058W" - annotation: !!omap - - bigg.reaction: GLYtm - - metanetx.reaction: MNXR100371 - - sbo: SBO:0000655 + - bigg.reaction: "GLYtm" + - metanetx.reaction: "MNXR100371" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1812 - - name: glycoaldehyde transport + - id: "r_1812" + - name: "glycoaldehyde transport" - metabolites: !!omap - s_0775: -1 - s_0777: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GCALDtm - - metanetx.reaction: MNXR100061 - - sbo: SBO:0000655 + - bigg.reaction: "GCALDtm" + - metanetx.reaction: "MNXR100061" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1813 - - name: glycoaldehyde transport + - id: "r_1813" + - name: "glycoaldehyde transport" - metabolites: !!omap - s_0775: 1 - s_0776: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GCALDt - - metanetx.reaction: MNXR100061 - - sbo: SBO:0000655 + - bigg.reaction: "GCALDt" + - metanetx.reaction: "MNXR100061" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1814 - - name: glycolaldehyde exchange + - id: "r_1814" + - name: "glycolaldehyde exchange" - metabolites: !!omap - s_0776: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gcald_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gcald_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1815 - - name: glyoxylate exchange + - id: "r_1815" + - name: "glyoxylate exchange" - metabolites: !!omap - s_0780: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_glx_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_glx_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1816 - - name: glyoxylate transport + - id: "r_1816" + - name: "glyoxylate transport" - metabolites: !!omap - s_0779: -1 - s_0780: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL065W + - gene_reaction_rule: "YNL065W" - annotation: !!omap - - bigg.reaction: GLXt - - metanetx.reaction: MNXR100306 - - sbo: SBO:0000655 + - bigg.reaction: "GLXt" + - metanetx.reaction: "MNXR100306" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1817 - - name: glyoxylate transport + - id: "r_1817" + - name: "glyoxylate transport" - metabolites: !!omap - s_0779: -1 - s_0781: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GLXtp - - metanetx.reaction: MNXR100306 - - sbo: SBO:0000655 + - bigg.reaction: "GLXtp" + - metanetx.reaction: "MNXR100306" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1818 - - name: guanine exchange + - id: "r_1818" + - name: "guanine exchange" - metabolites: !!omap - s_0788: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gua_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gua_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1819 - - name: guanine transport + - id: "r_1819" + - name: "guanine transport" - metabolites: !!omap - s_0787: -1 - s_0789: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GUAtm - - metanetx.reaction: MNXR100465 - - sbo: SBO:0000655 + - bigg.reaction: "GUAtm" + - metanetx.reaction: "MNXR100465" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1820 - - name: guanosine exchange + - id: "r_1820" + - name: "guanosine exchange" - metabolites: !!omap - s_0791: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gsn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gsn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1821 - - name: guanosine kinase + - id: "r_1821" + - name: "guanosine kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -54802,199 +55091,214 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GSNK - - kegg.reaction: R01228 - - metanetx.reaction: MNXR100432 - - sbo: SBO:0000176 + - bigg.reaction: "GSNK" + - kegg.reaction: "R01228" + - metanetx.reaction: "MNXR100432" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1822 - - name: guanosine transport + - id: "r_1822" + - name: "guanosine transport" - metabolites: !!omap - s_0790: -1 - s_0792: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GSNtm - - metanetx.reaction: MNXR100433 - - sbo: SBO:0000655 + - bigg.reaction: "GSNtm" + - metanetx.reaction: "MNXR100433" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1823 - - name: guanosine transport + - id: "r_1823" + - name: "guanosine transport" - metabolites: !!omap - s_0790: 1 - s_0791: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GSNt - - metanetx.reaction: MNXR100433 - - sbo: SBO:0000655 + - bigg.reaction: "GSNt" + - metanetx.reaction: "MNXR100433" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1824 - - name: H+ diffusion + - id: "r_1824" + - name: "H+ diffusion" - metabolites: !!omap - s_0794: 1 - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: Ht - - metanetx.reaction: MNXR100765 - - sbo: SBO:0000655 + - bigg.reaction: "Ht" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1825 - - name: H+ diffusion + - id: "r_1825" + - name: "H+ diffusion" - metabolites: !!omap - s_0794: -1 - s_0795: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: Htr - - metanetx.reaction: MNXR100765 - - sbo: SBO:0000655 + - bigg.reaction: "Htr" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1826 - - name: H+ diffusion + - id: "r_1826" + - name: "H+ diffusion" - metabolites: !!omap - s_0794: -1 - s_0797: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: Htg - - metanetx.reaction: MNXR100765 - - sbo: SBO:0000655 + - bigg.reaction: "Htg" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1827 - - name: H+ diffusion + - id: "r_1827" + - name: "H+ diffusion" - metabolites: !!omap - s_0794: -1 - s_0798: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100765 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1829 - - name: H+ diffusion + - id: "r_1829" + - name: "H+ diffusion" - metabolites: !!omap - s_0794: -1 - s_0800: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: HMR_1095 - - metanetx.reaction: MNXR100765 - - sbo: SBO:0000655 + - bigg.reaction: "HMR_1095" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1830 - - name: H+ diffusion + - id: "r_1830" + - name: "H+ diffusion" - metabolites: !!omap - s_0794: -1 - s_0801: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: Htx - - metanetx.reaction: MNXR100765 - - sbo: SBO:0000655 + - bigg.reaction: "Htx" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1831 - - name: H+ diffusion + - id: "r_1831" + - name: "H+ diffusion" - metabolites: !!omap - s_0794: -1 - s_0802: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100765 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1832 - - name: H+ exchange + - id: "r_1832" + - name: "H+ exchange" - metabolites: !!omap - s_0796: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_h_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_h_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1833 - - name: hexacosanoyl-CoA transport + - id: "r_1833" + - name: "hexacosanoyl-CoA transport" - metabolites: !!omap - s_0816: -1 - s_0817: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR124347 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR124347" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1834 - - name: hexadecanal exchange + - id: "r_1834" + - name: "hexadecanal exchange" - metabolites: !!omap - s_0826: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_1835 - - name: hexadecanoate (n-C16:0) transport + - id: "r_1835" + - name: "hexadecanoate (n-C16:0) transport" - metabolites: !!omap - s_1286: 1 - s_1288: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: HDCAt - - metanetx.reaction: MNXR99101 - - sbo: SBO:0000655 + - bigg.reaction: "HDCAt" + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1836 - - name: hexadecenoate (n-C16:1) transport + - id: "r_1836" + - name: "hexadecenoate (n-C16:1) transport" - metabolites: !!omap - s_1293: 1 - s_1295: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: HDCEAt - - sbo: SBO:0000655 + - bigg.reaction: "HDCEAt" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1837 - - name: L-histidine transport, mitochondrial + - id: "r_1837" + - name: "L-histidine transport, mitochondrial" - metabolites: !!omap - s_1006: -1 - s_1008: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR147W + - gene_reaction_rule: "YBR147W" - annotation: !!omap - - metanetx.reaction: MNXR100649 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100649" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1838 - - name: homocitrate synthase + - id: "r_1838" + - name: "homocitrate synthase" - metabolites: !!omap - s_0182: -1 - s_0376: -1 @@ -55004,156 +55308,167 @@ - s_0834: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL131W or YDL182W + - gene_reaction_rule: "YDL131W or YDL182W" - subsystem: - - sce00300 Lysine biosynthesis - - sce00620 Pyruvate metabolism - - sce01130 Biosynthesis of antibiotics - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00300 Lysine biosynthesis" + - "sce00620 Pyruvate metabolism" + - "sce01130 Biosynthesis of antibiotics" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 2.3.3.14 - - kegg.reaction: R00271 - - metanetx.reaction: MNXR141692 - - sbo: SBO:0000176 + - ec-code: "2.3.3.14" + - kegg.reaction: "R00271" + - metanetx.reaction: "MNXR141692" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_1839 - - name: hydrogen peroxide transport + - id: "r_1839" + - name: "hydrogen peroxide transport" - metabolites: !!omap - s_0837: -1 - s_0839: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: H2O2tn - - metanetx.reaction: MNXR98640 - - sbo: SBO:0000655 + - bigg.reaction: "H2O2tn" + - metanetx.reaction: "MNXR98640" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1840 - - name: hydroxymethylglutaryl-CoA transport + - id: "r_1840" + - name: "hydroxymethylglutaryl-CoA transport" - metabolites: !!omap - s_0218: -1 - s_0221: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: HMGCOAtm - - metanetx.reaction: MNXR100661 - - sbo: SBO:0000655 + - bigg.reaction: "HMGCOAtm" + - metanetx.reaction: "MNXR100661" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1841 - - name: hypoxanthine exchange + - id: "r_1841" + - name: "hypoxanthine exchange" - metabolites: !!omap - s_0844: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_hxan_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_hxan_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1842 - - name: hypoxanthine transport + - id: "r_1842" + - name: "hypoxanthine transport" - metabolites: !!omap - s_0843: 1 - s_0844: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: HYXNt - - metanetx.reaction: MNXR100749 - - sbo: SBO:0000655 + - bigg.reaction: "HYXNt" + - metanetx.reaction: "MNXR100749" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1843 - - name: indol-3-ylacetaldehyde exchange + - id: "r_1843" + - name: "indol-3-ylacetaldehyde exchange" - metabolites: !!omap - s_0851: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_id3acald_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_id3acald_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1844 - - name: indole-3-acetaldehyde transport + - id: "r_1844" + - name: "indole-3-acetaldehyde transport" - metabolites: !!omap - s_0850: -1 - s_0852: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ID3ACALDtm - - metanetx.reaction: MNXR100791 - - sbo: SBO:0000655 + - bigg.reaction: "ID3ACALDtm" + - metanetx.reaction: "MNXR100791" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1845 - - name: indole-3-acetaldehyde transport + - id: "r_1845" + - name: "indole-3-acetaldehyde transport" - metabolites: !!omap - s_0850: -1 - s_0851: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ID3ACALDt - - metanetx.reaction: MNXR100791 - - sbo: SBO:0000655 + - bigg.reaction: "ID3ACALDt" + - metanetx.reaction: "MNXR100791" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1846 - - name: indole-3-acetate transport + - id: "r_1846" + - name: "indole-3-acetate transport" - metabolites: !!omap - s_0853: -1 - s_0854: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: IND3ACtm - - metanetx.reaction: MNXR100833 - - sbo: SBO:0000655 + - bigg.reaction: "IND3ACtm" + - metanetx.reaction: "MNXR100833" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1847 - - name: inosine exchange + - id: "r_1847" + - name: "inosine exchange" - metabolites: !!omap - s_0857: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ins_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ins_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1848 - - name: inosine transport + - id: "r_1848" + - name: "inosine transport" - metabolites: !!omap - s_0856: 1 - s_0857: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: INSt - - metanetx.reaction: MNXR100849 - - sbo: SBO:0000655 + - bigg.reaction: "INSt" + - metanetx.reaction: "MNXR100849" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1849 - - name: inositol hexakisphosphate transport + - id: "r_1849" + - name: "inositol hexakisphosphate transport" - metabolites: !!omap - s_1158: -1 - s_1159: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: MINOHPtn - - metanetx.reaction: MNXR101585 - - sbo: SBO:0000655 + - bigg.reaction: "MINOHPtn" + - metanetx.reaction: "MNXR101585" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1850 - - name: insosine kinase + - id: "r_1850" + - name: "insosine kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -55162,237 +55477,258 @@ - s_0856: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: INSK - - kegg.reaction: R01131 - - metanetx.reaction: MNXR100845 - - sbo: SBO:0000176 + - bigg.reaction: "INSK" + - kegg.reaction: "R01131" + - metanetx.reaction: "MNXR100845" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1851 - - name: IPC transport + - id: "r_1851" + - name: "IPC transport" - metabolites: !!omap - s_0894: 1 - s_0895: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1852 - - name: IPC transport + - id: "r_1852" + - name: "IPC transport" - metabolites: !!omap - s_0900: 1 - s_0901: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1853 - - name: IPC transport + - id: "r_1853" + - name: "IPC transport" - metabolites: !!omap - s_0906: 1 - s_0907: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1854 - - name: IPC transport + - id: "r_1854" + - name: "IPC transport" - metabolites: !!omap - s_0912: 1 - s_0913: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1855 - - name: IPC transport + - id: "r_1855" + - name: "IPC transport" - metabolites: !!omap - s_0918: 1 - s_0919: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1856 - - name: IPC transport + - id: "r_1856" + - name: "IPC transport" - metabolites: !!omap - s_0897: 1 - s_0898: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1857 - - name: IPC transport + - id: "r_1857" + - name: "IPC transport" - metabolites: !!omap - s_0903: 1 - s_0904: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1858 - - name: IPC transport + - id: "r_1858" + - name: "IPC transport" - metabolites: !!omap - s_0909: 1 - s_0910: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1859 - - name: IPC transport + - id: "r_1859" + - name: "IPC transport" - metabolites: !!omap - s_0915: 1 - s_0916: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1860 - - name: IPC transport + - id: "r_1860" + - name: "IPC transport" - metabolites: !!omap - s_0921: 1 - s_0922: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1861 - - name: iron(2+) exchange + - id: "r_1861" + - name: "iron(2+) exchange" - metabolites: !!omap - s_0925: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_fe2_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_fe2_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1862 - - name: isoamyl acetate exchange + - id: "r_1862" + - name: "isoamyl acetate exchange" - metabolites: !!omap - s_0928: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_iamac_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_iamac_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1863 - - name: isoamyl alcohol transport + - id: "r_1863" + - name: "isoamyl alcohol transport" - metabolites: !!omap - s_0929: -1 - s_0930: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: IAMOHt - - metanetx.reaction: MNXR100775 - - sbo: SBO:0000655 + - bigg.reaction: "IAMOHt" + - metanetx.reaction: "MNXR100775" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1864 - - name: isoamyl alcohol transport + - id: "r_1864" + - name: "isoamyl alcohol transport" - metabolites: !!omap - s_0929: -1 - s_0931: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: IAMOHtm - - metanetx.reaction: MNXR100775 - - sbo: SBO:0000655 + - bigg.reaction: "IAMOHtm" + - metanetx.reaction: "MNXR100775" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1865 - - name: isoamylol exchange + - id: "r_1865" + - name: "isoamylol exchange" - metabolites: !!omap - s_0930: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_iamoh_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_iamoh_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1866 - - name: isobutanol exchange + - id: "r_1866" + - name: "isobutanol exchange" - metabolites: !!omap - s_0933: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ibutoh_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ibutoh_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1867 - - name: isobutyl acetate exchange + - id: "r_1867" + - name: "isobutyl acetate exchange" - metabolites: !!omap - s_0936: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ibutac_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ibutac_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1868 - - name: isobutyl alcohol transport + - id: "r_1868" + - name: "isobutyl alcohol transport" - metabolites: !!omap - s_0932: -1 - s_0933: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: IBUTOHt - - metanetx.reaction: MNXR100780 - - sbo: SBO:0000655 + - bigg.reaction: "IBUTOHt" + - metanetx.reaction: "MNXR100780" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1869 - - name: isobutyl alcohol transport + - id: "r_1869" + - name: "isobutyl alcohol transport" - metabolites: !!omap - s_0932: -1 - s_0934: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: IBUTOHtm - - metanetx.reaction: MNXR100780 - - sbo: SBO:0000655 + - bigg.reaction: "IBUTOHtm" + - metanetx.reaction: "MNXR100780" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1870 - - name: isobutyraldehyde exchange + - id: "r_1870" + - name: "isobutyraldehyde exchange" - metabolites: !!omap - s_0938: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_2mppal_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_2mppal_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1871 - - name: L-1-pyrroline-3-hydroxy-5-carboxylate spontaneous conversion to L-4-hydroxyglutamate semialdehyde + - id: "r_1871" + - name: "L-1-pyrroline-3-hydroxy-5-carboxylate spontaneous conversion to L-4-hydroxyglutamate semialdehyde" - metabolites: !!omap - s_0117: -1 - s_0799: -1 @@ -55400,13 +55736,14 @@ - s_0954: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PHCHGSm - - sbo: SBO:0000176 + - bigg.reaction: "PHCHGSm" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1872 - - name: L-2-amino-3-oxobutanoate decarboxylation (spontaneous) + - id: "r_1872" + - name: "L-2-amino-3-oxobutanoate decarboxylation (spontaneous)" - metabolites: !!omap - s_0418: 1 - s_0456: 1 @@ -55414,175 +55751,188 @@ - s_0952: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: AOBUTDs - - kegg.reaction: R03758 - - metanetx.reaction: MNXR95851 - - sbo: SBO:0000176 + - bigg.reaction: "AOBUTDs" + - kegg.reaction: "R03758" + - metanetx.reaction: "MNXR95851" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1873 - - name: L-alanine exchange + - id: "r_1873" + - name: "L-alanine exchange" - metabolites: !!omap - s_0956: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ala__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ala__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1874 - - name: L-alanine transport + - id: "r_1874" + - name: "L-alanine transport" - metabolites: !!omap - s_0955: 1 - s_0957: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ALAtmi - - metanetx.reaction: MNXR95706 - - sbo: SBO:0000655 + - bigg.reaction: "ALAtmi" + - metanetx.reaction: "MNXR95706" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1875 - - name: L-arabinitol exchange + - id: "r_1875" + - name: "L-arabinitol exchange" - metabolites: !!omap - s_0962: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_abt_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_abt_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1876 - - name: L-arabinitol transport + - id: "r_1876" + - name: "L-arabinitol transport" - metabolites: !!omap - s_0961: 1 - s_0962: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ABTt - - metanetx.reaction: MNXR95190 - - sbo: SBO:0000655 + - bigg.reaction: "ABTt" + - metanetx.reaction: "MNXR95190" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1877 - - name: L-arabinoase transport + - id: "r_1877" + - name: "L-arabinoase transport" - metabolites: !!omap - s_0963: 1 - s_0964: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR342C or YHR092C + - gene_reaction_rule: "YDR342C or YHR092C" - annotation: !!omap - - bigg.reaction: ARAB_Lt - - metanetx.reaction: MNXR135734 - - sbo: SBO:0000655 + - bigg.reaction: "ARAB_Lt" + - metanetx.reaction: "MNXR135734" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1878 - - name: L-arabinose exchange + - id: "r_1878" + - name: "L-arabinose exchange" - metabolites: !!omap - s_0964: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_arab__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_arab__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1879 - - name: L-arginine exchange + - id: "r_1879" + - name: "L-arginine exchange" - metabolites: !!omap - s_0966: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_arg__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_arg__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1880 - - name: L-asparagine exchange + - id: "r_1880" + - name: "L-asparagine exchange" - metabolites: !!omap - s_0970: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_asn__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_asn__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1881 - - name: L-aspartate exchange + - id: "r_1881" + - name: "L-aspartate exchange" - metabolites: !!omap - s_0974: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_asp__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_asp__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1882 - - name: L-carnitine transport + - id: "r_1882" + - name: "L-carnitine transport" - metabolites: !!omap - s_0021: 1 - s_0023: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR100C + - gene_reaction_rule: "YOR100C" - annotation: !!omap - - bigg.reaction: CRNtim - - metanetx.reaction: MNXR96906 - - sbo: SBO:0000655 + - bigg.reaction: "CRNtim" + - metanetx.reaction: "MNXR96906" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1883 - - name: L-cysteine exchange + - id: "r_1883" + - name: "L-cysteine exchange" - metabolites: !!omap - s_0982: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_cys__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_cys__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1884 - - name: L-erythro-4-hydroxyglutamate transport + - id: "r_1884" + - name: "L-erythro-4-hydroxyglutamate transport" - metabolites: !!omap - s_0677: -1 - s_0678: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: E4HGLUtm - - metanetx.reaction: MNXR97841 - - sbo: SBO:0000655 + - bigg.reaction: "E4HGLUtm" + - metanetx.reaction: "MNXR97841" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1885 - - name: L-erythro-4-hydroxyglutamate transport + - id: "r_1885" + - name: "L-erythro-4-hydroxyglutamate transport" - metabolites: !!omap - s_0677: -1 - s_0679: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: E4HGLUtp - - metanetx.reaction: MNXR97841 - - sbo: SBO:0000655 + - bigg.reaction: "E4HGLUtp" + - metanetx.reaction: "MNXR97841" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1886 - - name: L-glucitol exchange + - id: "r_1886" + - name: "L-glucitol exchange" - metabolites: !!omap - s_0990: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_sbt__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_sbt__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1887 - - name: L-glutamate 5-semialdehyde dehydratase + - id: "r_1887" + - name: "L-glutamate 5-semialdehyde dehydratase" - metabolites: !!omap - s_0118: 1 - s_0794: 1 @@ -55590,435 +55940,470 @@ - s_0997: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: G5SADs - - kegg.reaction: R03314 - - metanetx.reaction: MNXR99897 - - sbo: SBO:0000176 + - bigg.reaction: "G5SADs" + - kegg.reaction: "R03314" + - metanetx.reaction: "MNXR99897" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1889 - - name: L-glutamate exchange + - id: "r_1889" + - name: "L-glutamate exchange" - metabolites: !!omap - s_0992: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_glu__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_glu__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1890 - - name: L-glutamate transport + - id: "r_1890" + - name: "L-glutamate transport" - metabolites: !!omap - s_0991: -1 - s_0994: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100301 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100301" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1891 - - name: L-glutamine exchange + - id: "r_1891" + - name: "L-glutamine exchange" - metabolites: !!omap - s_1000: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gln__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gln__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1892 - - name: L-glutamine transport + - id: "r_1892" + - name: "L-glutamine transport" - metabolites: !!omap - s_0999: -1 - s_1001: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100259 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100259" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1893 - - name: L-histidine exchange + - id: "r_1893" + - name: "L-histidine exchange" - metabolites: !!omap - s_1007: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_his__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_his__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1895 - - name: L-homoserine transport + - id: "r_1895" + - name: "L-homoserine transport" - metabolites: !!omap - s_1014: 1 - s_1015: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: r2535 - - metanetx.reaction: MNXR100678 - - sbo: SBO:0000655 + - bigg.reaction: "r2535" + - metanetx.reaction: "MNXR100678" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1896 - - name: L-homoserine exchange + - id: "r_1896" + - name: "L-homoserine exchange" - metabolites: !!omap - s_1015: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_hom__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_hom__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1897 - - name: L-isoleucine exchange + - id: "r_1897" + - name: "L-isoleucine exchange" - metabolites: !!omap - s_1017: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ile__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ile__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1898 - - name: L-isoleucine transport + - id: "r_1898" + - name: "L-isoleucine transport" - metabolites: !!omap - s_1016: 1 - s_1018: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ILEtmi - - metanetx.reaction: MNXR100824 - - sbo: SBO:0000655 + - bigg.reaction: "ILEtmi" + - metanetx.reaction: "MNXR100824" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1899 - - name: L-leucine exchange + - id: "r_1899" + - name: "L-leucine exchange" - metabolites: !!omap - s_1022: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_leu__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_leu__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1900 - - name: L-lysine exchange + - id: "r_1900" + - name: "L-lysine exchange" - metabolites: !!omap - s_1026: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_lys__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_lys__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1901 - - name: L-malate transport + - id: "r_1901" + - name: "L-malate transport" - metabolites: !!omap - s_0066: 1 - s_0067: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: MALt - - metanetx.reaction: MNXR101367 - - sbo: SBO:0000655 + - bigg.reaction: "MALt" + - metanetx.reaction: "MNXR101367" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1902 - - name: L-methionine exchange + - id: "r_1902" + - name: "L-methionine exchange" - metabolites: !!omap - s_1030: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_met__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_met__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1903 - - name: L-phenylalanine exchange + - id: "r_1903" + - name: "L-phenylalanine exchange" - metabolites: !!omap - s_1033: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_phe__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_phe__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1904 - - name: L-proline exchange + - id: "r_1904" + - name: "L-proline exchange" - metabolites: !!omap - s_1036: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pro__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pro__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1905 - - name: L-proline transport + - id: "r_1905" + - name: "L-proline transport" - metabolites: !!omap - s_1035: -1 - s_1037: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PROtm - - metanetx.reaction: MNXR103213 - - sbo: SBO:0000655 + - bigg.reaction: "PROtm" + - metanetx.reaction: "MNXR103213" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1906 - - name: L-serine exchange + - id: "r_1906" + - name: "L-serine exchange" - metabolites: !!omap - s_1041: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ser__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ser__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1907 - - name: L-serine transport + - id: "r_1907" + - name: "L-serine transport" - metabolites: !!omap - s_1039: -1 - s_1040: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKR039W + - gene_reaction_rule: "YKR039W" - annotation: !!omap - - metanetx.reaction: MNXR104354 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104354" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1908 - - name: L-sorbitol transport + - id: "r_1908" + - name: "L-sorbitol transport" - metabolites: !!omap - s_0989: 1 - s_0990: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL245C or YEL069C or YJR158W or YNR072W + - gene_reaction_rule: "YDL245C or YEL069C or YJR158W or YNR072W" - annotation: !!omap - - bigg.reaction: SBT_Lt - - metanetx.reaction: MNXR104289 - - sbo: SBO:0000655 + - bigg.reaction: "SBT_Lt" + - metanetx.reaction: "MNXR104289" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1909 - - name: L-sorbose exchange + - id: "r_1909" + - name: "L-sorbose exchange" - metabolites: !!omap - s_1044: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_srb__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_srb__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1910 - - name: L-sorbose transport + - id: "r_1910" + - name: "L-sorbose transport" - metabolites: !!omap - s_1043: 1 - s_1044: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W + - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" - annotation: !!omap - - bigg.reaction: SRB_Lt - - metanetx.reaction: MNXR104533 - - sbo: SBO:0000655 + - bigg.reaction: "SRB_Lt" + - metanetx.reaction: "MNXR104533" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1911 - - name: L-threonine exchange + - id: "r_1911" + - name: "L-threonine exchange" - metabolites: !!omap - s_1046: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_thr__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_thr__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1912 - - name: L-tryptophan exchange + - id: "r_1912" + - name: "L-tryptophan exchange" - metabolites: !!omap - s_1049: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_trp__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_trp__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1913 - - name: L-tyrosine exchange + - id: "r_1913" + - name: "L-tyrosine exchange" - metabolites: !!omap - s_1052: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_tyr__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_tyr__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1914 - - name: L-valine exchange + - id: "r_1914" + - name: "L-valine exchange" - metabolites: !!omap - s_1057: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_val__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_val__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1915 - - name: lanosterol exchange + - id: "r_1915" + - name: "lanosterol exchange" - metabolites: !!omap - s_1061: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_lanost_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_lanost_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1916 - - name: laurate exchange + - id: "r_1916" + - name: "laurate exchange" - metabolites: !!omap - s_1067: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ddca_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ddca_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1919 - - name: lysine transport + - id: "r_1919" + - name: "lysine transport" - metabolites: !!omap - s_1025: -1 - s_1027: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR147W + - gene_reaction_rule: "YBR147W" - annotation: !!omap - - metanetx.reaction: MNXR101269 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101269" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1920 - - name: M(IP)2C transport + - id: "r_1920" + - name: "M(IP)2C transport" - metabolites: !!omap - s_0861: 1 - s_0862: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1921 - - name: M(IP)2C transport + - id: "r_1921" + - name: "M(IP)2C transport" - metabolites: !!omap - s_0867: 1 - s_0868: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1922 - - name: M(IP)2C transport + - id: "r_1922" + - name: "M(IP)2C transport" - metabolites: !!omap - s_0873: 1 - s_0874: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1923 - - name: M(IP)2C transport + - id: "r_1923" + - name: "M(IP)2C transport" - metabolites: !!omap - s_0879: 1 - s_0880: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1924 - - name: M(IP)2C transport + - id: "r_1924" + - name: "M(IP)2C transport" - metabolites: !!omap - s_0885: 1 - s_0886: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1925 - - name: M(IP)2C transport + - id: "r_1925" + - name: "M(IP)2C transport" - metabolites: !!omap - s_0864: 1 - s_0865: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1926 - - name: M(IP)2C transport + - id: "r_1926" + - name: "M(IP)2C transport" - metabolites: !!omap - s_0870: 1 - s_0871: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1927 - - name: M(IP)2C transport + - id: "r_1927" + - name: "M(IP)2C transport" - metabolites: !!omap - s_0876: 1 - s_0877: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1928 - - name: M(IP)2C transport + - id: "r_1928" + - name: "M(IP)2C transport" - metabolites: !!omap - s_0882: 1 - s_0883: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1929 - - name: M(IP)2C transport + - id: "r_1929" + - name: "M(IP)2C transport" - metabolites: !!omap - s_0888: 1 - s_0889: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1930 - - name: malate/oxaloacetate shuttle + - id: "r_1930" + - name: "malate/oxaloacetate shuttle" - metabolites: !!omap - s_0066: 1 - s_0069: -1 @@ -56026,305 +56411,330 @@ - s_1274: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: MALOAAtp - - metanetx.reaction: MNXR101346 - - sbo: SBO:0000655 + - bigg.reaction: "MALOAAtp" + - metanetx.reaction: "MNXR101346" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1931 - - name: maltose exchange + - id: "r_1931" + - name: "maltose exchange" - metabolites: !!omap - s_1106: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_malt_e - - metanetx.reaction: MNXR123950 - - sbo: SBO:0000627 + - bigg.reaction: "EX_malt_e" + - metanetx.reaction: "MNXR123950" + - sbo: "SBO:0000627" - !!omap - - id: r_1932 - - name: mannan transport + - id: "r_1932" + - name: "mannan transport" - metabolites: !!omap - s_1107: -1 - s_1108: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: MANNANter - - metanetx.reaction: MNXR101396 - - sbo: SBO:0000655 + - bigg.reaction: "MANNANter" + - metanetx.reaction: "MNXR101396" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1935 - - name: methionine transport + - id: "r_1935" + - name: "methionine transport" - metabolites: !!omap - s_1029: 1 - s_1031: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR508C + - gene_reaction_rule: "YDR508C" - annotation: !!omap - - bigg.reaction: METtm - - metanetx.reaction: MNXR101493 - - sbo: SBO:0000655 + - bigg.reaction: "METtm" + - metanetx.reaction: "MNXR101493" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1936 - - name: methylglyoxal synthase + - id: "r_1936" + - name: "methylglyoxal synthase" - metabolites: !!omap - s_0629: -1 - s_1151: 1 - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: MGSA - - kegg.reaction: R01016 - - metanetx.reaction: MNXR101551 - - sbo: SBO:0000176 + - bigg.reaction: "MGSA" + - kegg.reaction: "R01016" + - metanetx.reaction: "MNXR101551" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1937 - - name: MIPC transport + - id: "r_1937" + - name: "MIPC transport" - metabolites: !!omap - s_1116: 1 - s_1117: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1938 - - name: MIPC transport + - id: "r_1938" + - name: "MIPC transport" - metabolites: !!omap - s_1122: 1 - s_1123: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1939 - - name: MIPC transport + - id: "r_1939" + - name: "MIPC transport" - metabolites: !!omap - s_1128: 1 - s_1129: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1940 - - name: MIPC transport + - id: "r_1940" + - name: "MIPC transport" - metabolites: !!omap - s_1134: 1 - s_1135: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1941 - - name: MIPC transport + - id: "r_1941" + - name: "MIPC transport" - metabolites: !!omap - s_1140: 1 - s_1141: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1942 - - name: MIPC transport + - id: "r_1942" + - name: "MIPC transport" - metabolites: !!omap - s_1119: 1 - s_1120: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1943 - - name: MIPC transport + - id: "r_1943" + - name: "MIPC transport" - metabolites: !!omap - s_1125: 1 - s_1126: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1944 - - name: MIPC transport + - id: "r_1944" + - name: "MIPC transport" - metabolites: !!omap - s_1131: 1 - s_1132: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1945 - - name: MIPC transport + - id: "r_1945" + - name: "MIPC transport" - metabolites: !!omap - s_1137: 1 - s_1138: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1946 - - name: MIPC transport + - id: "r_1946" + - name: "MIPC transport" - metabolites: !!omap - s_1143: 1 - s_1144: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1947 - - name: myo-inositol exchange + - id: "r_1947" + - name: "myo-inositol exchange" - metabolites: !!omap - s_1154: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_inost_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_inost_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1952 - - name: N,N'-diformyldityrosine exchange + - id: "r_1952" + - name: "N,N'-diformyldityrosine exchange" - metabolites: !!omap - s_1186: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_1963 - - name: NADP(+) transport + - id: "r_1963" + - name: "NADP(+) transport" - metabolites: !!omap - s_1207: -1 - s_1208: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NADPtru - - metanetx.reaction: MNXR101896 - - sbo: SBO:0000655 + - bigg.reaction: "NADPtru" + - metanetx.reaction: "MNXR101896" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1964 - - name: NADPH transport + - id: "r_1964" + - name: "NADPH transport" - metabolites: !!omap - s_1212: -1 - s_1213: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NADPHtru - - metanetx.reaction: MNXR101894 - - sbo: SBO:0000655 + - bigg.reaction: "NADPHtru" + - metanetx.reaction: "MNXR101894" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1965 - - name: NH3 transport + - id: "r_1965" + - name: "NH3 transport" - metabolites: !!omap - s_0419: -1 - s_0421: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NH4tm - - metanetx.reaction: MNXR101950 - - sbo: SBO:0000655 + - bigg.reaction: "NH4tm" + - metanetx.reaction: "MNXR101950" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1966 - - name: nicotinamide diffusion + - id: "r_1966" + - name: "nicotinamide diffusion" - metabolites: !!omap - s_1216: -1 - s_1217: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101918 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101918" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1967 - - name: nicotinate exchange + - id: "r_1967" + - name: "nicotinate exchange" - metabolites: !!omap - s_1220: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_nac_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_nac_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1968 - - name: NMN exchange + - id: "r_1968" + - name: "NMN exchange" - metabolites: !!omap - s_1225: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_nmn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_nmn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1970 - - name: NMN transport + - id: "r_1970" + - name: "NMN transport" - metabolites: !!omap - s_1224: -1 - s_1227: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NMNtn - - metanetx.reaction: MNXR101972 - - sbo: SBO:0000655 + - bigg.reaction: "NMNtn" + - metanetx.reaction: "MNXR101972" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1971 - - name: NMN transport + - id: "r_1971" + - name: "NMN transport" - metabolites: !!omap - s_1224: -1 - s_1228: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101972 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101972" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1972 - - name: NMN transport + - id: "r_1972" + - name: "NMN transport" - metabolites: !!omap - s_1224: 1 - s_1225: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NMNP - - metanetx.reaction: MNXR101972 - - sbo: SBO:0000655 + - bigg.reaction: "NMNP" + - metanetx.reaction: "MNXR101972" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1974 - - name: nucleoside-diphosphatase (dGDP) + - id: "r_1974" + - name: "nucleoside-diphosphatase (dGDP)" - metabolites: !!omap - s_0613: -1 - s_0615: 1 @@ -56333,14 +56743,15 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NDP4 - - metanetx.reaction: MNXR101929 - - sbo: SBO:0000176 + - bigg.reaction: "NDP4" + - metanetx.reaction: "MNXR101929" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1975 - - name: nucleoside-triphosphatase (dGTP) + - id: "r_1975" + - name: "nucleoside-triphosphatase (dGTP)" - metabolites: !!omap - s_0613: 1 - s_0617: -1 @@ -56349,221 +56760,237 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: NTP4 - - metanetx.reaction: MNXR102044 - - sbo: SBO:0000176 + - bigg.reaction: "NTP4" + - metanetx.reaction: "MNXR102044" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1976 - - name: O-acetylcarnintine transport into mitochondria + - id: "r_1976" + - name: "O-acetylcarnintine transport into mitochondria" - metabolites: !!omap - s_1235: -1 - s_1236: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR100C + - gene_reaction_rule: "YOR100C" - annotation: !!omap - - bigg.reaction: ACRNtm - - metanetx.reaction: MNXR95412 - - sbo: SBO:0000655 + - bigg.reaction: "ACRNtm" + - metanetx.reaction: "MNXR95412" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1977 - - name: O2 transport + - id: "r_1977" + - name: "O2 transport" - metabolites: !!omap - s_1275: -1 - s_1276: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: O2ter - - metanetx.reaction: MNXR102090 - - sbo: SBO:0000655 + - bigg.reaction: "O2ter" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1978 - - name: O2 transport + - id: "r_1978" + - name: "O2 transport" - metabolites: !!omap - s_1275: -1 - s_1278: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: O2tm - - metanetx.reaction: MNXR102090 - - sbo: SBO:0000655 + - bigg.reaction: "O2tm" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1979 - - name: O2 transport + - id: "r_1979" + - name: "O2 transport" - metabolites: !!omap - s_1275: 1 - s_1277: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: O2t - - metanetx.reaction: MNXR102090 - - sbo: SBO:0000655 + - bigg.reaction: "O2t" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1980 - - name: O2 transport + - id: "r_1980" + - name: "O2 transport" - metabolites: !!omap - s_1275: -1 - s_1279: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: O2tp - - metanetx.reaction: MNXR102090 - - sbo: SBO:0000655 + - bigg.reaction: "O2tp" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1981 - - name: octadecanoate (n-C18:0) transport + - id: "r_1981" + - name: "octadecanoate (n-C18:0) transport" - metabolites: !!omap - s_1449: 1 - s_1450: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: OCDCAt - - metanetx.reaction: MNXR99109 - - sbo: SBO:0000655 + - bigg.reaction: "OCDCAt" + - metanetx.reaction: "MNXR99109" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1984 - - name: octanoate exchange + - id: "r_1984" + - name: "octanoate exchange" - metabolites: !!omap - s_1250: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_octa_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_octa_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1987 - - name: ornithine exchange + - id: "r_1987" + - name: "ornithine exchange" - metabolites: !!omap - s_1267: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_orn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_orn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1988 - - name: oxaloacetate transport + - id: "r_1988" + - name: "oxaloacetate transport" - metabolites: !!omap - s_1271: -1 - s_1272: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: OAAt - - metanetx.reaction: MNXR102100 - - sbo: SBO:0000655 + - bigg.reaction: "OAAt" + - metanetx.reaction: "MNXR102100" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1989 - - name: oxaloacetate(2-) exchange + - id: "r_1989" + - name: "oxaloacetate(2-) exchange" - metabolites: !!omap - s_1272: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_oaa_e - - kegg.reaction: R00363 - - metanetx.reaction: MNXR125856 - - sbo: SBO:0000627 + - bigg.reaction: "EX_oaa_e" + - kegg.reaction: "R00363" + - metanetx.reaction: "MNXR125856" + - sbo: "SBO:0000627" - !!omap - - id: r_1990 - - name: oxidized glutathione uniport + - id: "r_1990" + - name: "oxidized glutathione uniport" - metabolites: !!omap - s_0754: 1 - s_0755: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL212C + - gene_reaction_rule: "YJL212C" - annotation: !!omap - - bigg.reaction: GTHOXti - - metanetx.reaction: MNXR100443 - - sbo: SBO:0000655 + - bigg.reaction: "GTHOXti" + - metanetx.reaction: "MNXR100443" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_1991 - - name: oxidized thioredoxin transport + - id: "r_1991" + - name: "oxidized thioredoxin transport" - metabolites: !!omap - s_1620: -1 - s_1623: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: TRDOXtp - - metanetx.reaction: MNXR104921 - - sbo: SBO:0000655 + - bigg.reaction: "TRDOXtp" + - metanetx.reaction: "MNXR104921" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1992 - - name: oxygen exchange + - id: "r_1992" + - name: "oxygen exchange" - metabolites: !!omap - s_1277: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_o2_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_o2_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1993 - - name: palmitate exchange + - id: "r_1993" + - name: "palmitate exchange" - metabolites: !!omap - s_1288: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_hdca_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_hdca_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1994 - - name: palmitoleate exchange + - id: "r_1994" + - name: "palmitoleate exchange" - metabolites: !!omap - s_1295: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_hdcea_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_hdcea_e" + - sbo: "SBO:0000627" - !!omap - - id: r_1995 - - name: palmitoyl-CoA transport + - id: "r_1995" + - name: "palmitoyl-CoA transport" - metabolites: !!omap - s_1302: -1 - s_1303: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PMTCOAFABP1tc - - metanetx.reaction: MNXR103046 - - sbo: SBO:0000655 + - bigg.reaction: "PMTCOAFABP1tc" + - metanetx.reaction: "MNXR103046" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1996 - - name: panthetheine 4'-phosphate transport + - id: "r_1996" + - name: "panthetheine 4'-phosphate transport" - metabolites: !!omap - s_1307: -1 - s_1308: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PAN4Ptm - - metanetx.reaction: MNXR102344 - - sbo: SBO:0000655 + - bigg.reaction: "PAN4Ptm" + - metanetx.reaction: "MNXR102344" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1997 - - name: panthetheine-phosphate adenylyltransferase + - id: "r_1997" + - name: "panthetheine-phosphate adenylyltransferase" - metabolites: !!omap - s_0200: 1 - s_0437: -1 @@ -56572,165 +56999,178 @@ - s_1308: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PTPATim - - kegg.reaction: R03035 - - metanetx.reaction: MNXR95892 - - sbo: SBO:0000176 + - bigg.reaction: "PTPATim" + - kegg.reaction: "R03035" + - metanetx.reaction: "MNXR95892" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_1998 - - name: PAP uniport + - id: "r_1998" + - name: "PAP uniport" - metabolites: !!omap - s_0390: 1 - s_0391: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PAPt - - metanetx.reaction: MNXR102382 - - sbo: SBO:0000655 + - bigg.reaction: "PAPt" + - metanetx.reaction: "MNXR102382" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_1999 - - name: pectin exchange + - id: "r_1999" + - name: "pectin exchange" - metabolites: !!omap - s_1309: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pectin_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pectin_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2000 - - name: phenethyl acetate exchange + - id: "r_2000" + - name: "phenethyl acetate exchange" - metabolites: !!omap - s_1317: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pheac_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pheac_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2001 - - name: phenylacetaldehyde exchange + - id: "r_2001" + - name: "phenylacetaldehyde exchange" - metabolites: !!omap - s_1319: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pacald_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pacald_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2002 - - name: phenylacetaldehyde transport + - id: "r_2002" + - name: "phenylacetaldehyde transport" - metabolites: !!omap - s_1318: -1 - s_1319: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PACALDt - - metanetx.reaction: MNXR102312 - - sbo: SBO:0000655 + - bigg.reaction: "PACALDt" + - metanetx.reaction: "MNXR102312" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2003 - - name: phenylacetaldehyde transport + - id: "r_2003" + - name: "phenylacetaldehyde transport" - metabolites: !!omap - s_1318: -1 - s_1320: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PACALDtm - - metanetx.reaction: MNXR102312 - - sbo: SBO:0000655 + - bigg.reaction: "PACALDtm" + - metanetx.reaction: "MNXR102312" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2004 - - name: phenylalanine transport + - id: "r_2004" + - name: "phenylalanine transport" - metabolites: !!omap - s_1032: -1 - s_1034: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR102637 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR102637" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2005 - - name: phosphate exchange + - id: "r_2005" + - name: "phosphate exchange" - metabolites: !!omap - s_1324: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pi_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pi_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2008 - - name: phosphate transport + - id: "r_2008" + - name: "phosphate transport" - metabolites: !!omap - s_1322: -1 - s_1329: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR013C + - gene_reaction_rule: "YNR013C" - annotation: !!omap - - metanetx.reaction: MNXR102871 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_2020 - - name: potassium exchange + - id: "r_2020" + - name: "potassium exchange" - metabolites: !!omap - s_1374: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_k_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_k_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2022 - - name: protoporphyrinogen IX transport + - id: "r_2022" + - name: "protoporphyrinogen IX transport" - metabolites: !!omap - s_1384: -1 - s_1385: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PPPG9tm - - metanetx.reaction: MNXR103127 - - sbo: SBO:0000655 + - bigg.reaction: "PPPG9tm" + - metanetx.reaction: "MNXR103127" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2023 - - name: PRPP transport + - id: "r_2023" + - name: "PRPP transport" - metabolites: !!omap - s_1386: -1 - s_1387: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PRPPtm - - metanetx.reaction: MNXR103216 - - sbo: SBO:0000655 + - bigg.reaction: "PRPPtm" + - metanetx.reaction: "MNXR103216" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2024 - - name: putrescine exchange + - id: "r_2024" + - name: "putrescine exchange" - metabolites: !!omap - s_1390: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ptrc_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ptrc_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2025 - - name: pyridoxal kinase + - id: "r_2025" + - name: "pyridoxal kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -56739,16 +57179,16 @@ - s_1393: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNR027W + - gene_reaction_rule: "YNR027W" - annotation: !!omap - - bigg.reaction: PYDXK - - kegg.reaction: R00174 - - metanetx.reaction: MNXR103361 - - sbo: SBO:0000176 + - bigg.reaction: "PYDXK" + - kegg.reaction: "R00174" + - metanetx.reaction: "MNXR103361" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_2026 - - name: pyridoxamine kinase + - id: "r_2026" + - name: "pyridoxamine kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -56757,15 +57197,16 @@ - s_1395: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PYDAMK - - kegg.reaction: R02493 - - metanetx.reaction: MNXR103357 - - sbo: SBO:0000176 + - bigg.reaction: "PYDAMK" + - kegg.reaction: "R02493" + - metanetx.reaction: "MNXR103357" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2027 - - name: pyridoxamine phosphatase + - id: "r_2027" + - name: "pyridoxamine phosphatase" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -56773,25 +57214,27 @@ - s_1395: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: HYPOE - - kegg.reaction: R02494 - - metanetx.reaction: MNXR100763 - - sbo: SBO:0000176 + - bigg.reaction: "HYPOE" + - kegg.reaction: "R02494" + - metanetx.reaction: "MNXR100763" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2028 - - name: pyridoxine exchange + - id: "r_2028" + - name: "pyridoxine exchange" - metabolites: !!omap - s_1397: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pydxn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pydxn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2029 - - name: pyridoxine kinase + - id: "r_2029" + - name: "pyridoxine kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -56800,18 +57243,18 @@ - s_1398: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YEL029C - - subsystem: sce00750 Vitamin B6 metabolism + - gene_reaction_rule: "YEL029C" + - subsystem: "sce00750 Vitamin B6 metabolism" - annotation: !!omap - - ec-code: 2.7.1.35 - - bigg.reaction: PYDXNK - - kegg.reaction: R01909 - - metanetx.reaction: MNXR103362 - - sbo: SBO:0000176 + - ec-code: "2.7.1.35" + - bigg.reaction: "PYDXNK" + - kegg.reaction: "R01909" + - metanetx.reaction: "MNXR103362" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_2030 - - name: pyrimidine phosphatase + - id: "r_2030" + - name: "pyrimidine phosphatase" - metabolites: !!omap - s_0313: -1 - s_0314: 1 @@ -56819,15 +57262,16 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PMDPHT - - kegg.reaction: R07280 - - metanetx.reaction: MNXR96145 - - sbo: SBO:0000176 + - bigg.reaction: "PMDPHT" + - kegg.reaction: "R07280" + - metanetx.reaction: "MNXR96145" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2031 - - name: pyrimidine-nucleoside phosphorylase (uracil) + - id: "r_2031" + - name: "pyrimidine-nucleoside phosphorylase (uracil)" - metabolites: !!omap - s_0415: 1 - s_1322: -1 @@ -56835,38 +57279,41 @@ - s_1556: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PYNP2r - - kegg.reaction: R01876 - - metanetx.reaction: MNXR103377 - - sbo: SBO:0000176 + - bigg.reaction: "PYNP2r" + - kegg.reaction: "R01876" + - metanetx.reaction: "MNXR103377" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2032 - - name: pyrophosphate transport + - id: "r_2032" + - name: "pyrophosphate transport" - metabolites: !!omap - s_0633: -1 - s_0636: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PPItm - - metanetx.reaction: MNXR103112 - - sbo: SBO:0000655 + - bigg.reaction: "PPItm" + - metanetx.reaction: "MNXR103112" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2033 - - name: pyruvate exchange + - id: "r_2033" + - name: "pyruvate exchange" - metabolites: !!omap - s_1400: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pyr_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pyr_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2034 - - name: pyruvate transport + - id: "r_2034" + - name: "pyruvate transport" - metabolites: !!omap - s_0794: -1 - s_0799: 1 @@ -56874,159 +57321,168 @@ - s_1401: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (YGL080W and YGR243W) or (YGL080W and YHR162W) + - gene_reaction_rule: "(YGL080W and YGR243W) or (YGL080W and YHR162W)" - annotation: !!omap - - bigg.reaction: PYRt2m - - metanetx.reaction: MNXR103385 - - pmid: 22628558 - - sbo: SBO:0000655 + - bigg.reaction: "PYRt2m" + - metanetx.reaction: "MNXR103385" + - pmid: "22628558" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2036 - - name: quinolinate transport + - id: "r_2036" + - name: "quinolinate transport" - metabolites: !!omap - s_1403: -1 - s_1404: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: QULNtm - - metanetx.reaction: MNXR103401 - - sbo: SBO:0000655 + - bigg.reaction: "QULNtm" + - metanetx.reaction: "MNXR103401" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2037 - - name: reduced thioredoxin transport + - id: "r_2037" + - name: "reduced thioredoxin transport" - metabolites: !!omap - s_1616: -1 - s_1619: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: TRDRDtp - - sbo: SBO:0000655 + - bigg.reaction: "TRDRDtp" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2038 - - name: riboflavin exchange + - id: "r_2038" + - name: "riboflavin exchange" - metabolites: !!omap - s_1406: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ribflv_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ribflv_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2039 - - name: riboflavin transport + - id: "r_2039" + - name: "riboflavin transport" - metabolites: !!omap - s_1405: -1 - s_1407: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: RIBFLVtm - - metanetx.reaction: MNXR104033 - - sbo: SBO:0000655 + - bigg.reaction: "RIBFLVtm" + - metanetx.reaction: "MNXR104033" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2040 - - name: riboflavin transport + - id: "r_2040" + - name: "riboflavin transport" - metabolites: !!omap - s_1405: 1 - s_1406: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR306C + - gene_reaction_rule: "YOR306C" - annotation: !!omap - - bigg.reaction: r1106 - - metanetx.reaction: MNXR104033 - - sbo: SBO:0000655 + - bigg.reaction: "r1106" + - metanetx.reaction: "MNXR104033" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_2041 - - name: ribose transporter + - id: "r_2041" + - name: "ribose transporter" - metabolites: !!omap - s_0575: 1 - s_0576: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR342C or YHR092C + - gene_reaction_rule: "YDR342C or YHR092C" - annotation: !!omap - - bigg.reaction: RIBt - - metanetx.reaction: MNXR104036 - - sbo: SBO:0000655 + - bigg.reaction: "RIBt" + - metanetx.reaction: "MNXR104036" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_2042 - - name: S-adenosyl-L-homocysteine transport + - id: "r_2042" + - name: "S-adenosyl-L-homocysteine transport" - metabolites: !!omap - s_1413: -1 - s_1415: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: AHCYStm - - metanetx.reaction: MNXR95626 - - sbo: SBO:0000655 + - bigg.reaction: "AHCYStm" + - metanetx.reaction: "MNXR95626" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2043 - - name: S-adenosyl-L-methionine exchange + - id: "r_2043" + - name: "S-adenosyl-L-methionine exchange" - metabolites: !!omap - s_1418: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_amet_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_amet_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2044 - - name: S-methyl-L-methionine exchange + - id: "r_2044" + - name: "S-methyl-L-methionine exchange" - metabolites: !!omap - s_1425: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_mmet_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_mmet_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2045 - - name: serine transport + - id: "r_2045" + - name: "serine transport" - metabolites: !!omap - s_1039: -1 - s_1042: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR508C + - gene_reaction_rule: "YDR508C" - annotation: !!omap - - bigg.reaction: r1435 - - metanetx.reaction: MNXR104354 - - sbo: SBO:0000655 + - bigg.reaction: "r1435" + - metanetx.reaction: "MNXR104354" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_2046 - - name: sn-glycero-3-phosphocholine exchange + - id: "r_2046" + - name: "sn-glycero-3-phosphocholine exchange" - metabolites: !!omap - s_1435: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_g3pc_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_g3pc_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2049 - - name: sodium exchange + - id: "r_2049" + - name: "sodium exchange" - metabolites: !!omap - s_1438: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_na1_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_na1_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2050 - - name: spermidine acetyltransferase + - id: "r_2050" + - name: "spermidine acetyltransferase" - metabolites: !!omap - s_0373: -1 - s_0529: 1 @@ -57035,146 +57491,159 @@ - s_1439: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: SPMDAT1 - - metanetx.reaction: MNXR104491 - - sbo: SBO:0000176 + - bigg.reaction: "SPMDAT1" + - metanetx.reaction: "MNXR104491" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2051 - - name: spermidine exchange + - id: "r_2051" + - name: "spermidine exchange" - metabolites: !!omap - s_1440: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_spmd_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_spmd_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2052 - - name: spermine exchange + - id: "r_2052" + - name: "spermine exchange" - metabolites: !!omap - s_1443: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_sprm_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_sprm_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2053 - - name: squalene transport + - id: "r_2053" + - name: "squalene transport" - metabolites: !!omap - s_1447: -1 - s_1448: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: SQLter - - metanetx.reaction: MNXR104530 - - sbo: SBO:0000655 + - bigg.reaction: "SQLter" + - metanetx.reaction: "MNXR104530" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2054 - - name: squalene-2,3-epoxide transport + - id: "r_2054" + - name: "squalene-2,3-epoxide transport" - metabolites: !!omap - s_0037: 1 - s_0038: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: SQ23EPXter - - metanetx.reaction: MNXR104505 - - sbo: SBO:0000655 + - bigg.reaction: "SQ23EPXter" + - metanetx.reaction: "MNXR104505" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2055 - - name: stearate exchange + - id: "r_2055" + - name: "stearate exchange" - metabolites: !!omap - s_1450: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ocdca_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ocdca_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2056 - - name: succinate exchange + - id: "r_2056" + - name: "succinate exchange" - metabolites: !!omap - s_1459: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_succ_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_succ_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2057 - - name: succinate transport + - id: "r_2057" + - name: "succinate transport" - metabolites: !!omap - s_1458: 1 - s_1459: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: SUCCt - - metanetx.reaction: MNXR104619 - - sbo: SBO:0000655 + - bigg.reaction: "SUCCt" + - metanetx.reaction: "MNXR104619" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2058 - - name: sucrose exchange + - id: "r_2058" + - name: "sucrose exchange" - metabolites: !!omap - s_1466: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_sucr_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_sucr_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2060 - - name: sulphate exchange + - id: "r_2060" + - name: "sulphate exchange" - metabolites: !!omap - s_1468: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_so4_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_so4_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2061 - - name: sulphite exchange + - id: "r_2061" + - name: "sulphite exchange" - metabolites: !!omap - s_1470: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_so3_e - - metanetx.reaction: MNXR122251 - - sbo: SBO:0000627 + - bigg.reaction: "EX_so3_e" + - metanetx.reaction: "MNXR122251" + - sbo: "SBO:0000627" - !!omap - - id: r_2062 - - name: taurine exchange + - id: "r_2062" + - name: "taurine exchange" - metabolites: !!omap - s_1472: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_taur_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_taur_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2063 - - name: tetracosanoyl-CoA transport + - id: "r_2063" + - name: "tetracosanoyl-CoA transport" - metabolites: !!omap - s_1479: -1 - s_1480: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137463 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137463" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2064 - - name: thiamin phosphatase + - id: "r_2064" + - name: "thiamin phosphatase" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -57182,16 +57651,16 @@ - s_1497: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL024C + - gene_reaction_rule: "YDL024C" - annotation: !!omap - - bigg.reaction: THMP - - kegg.reaction: R02135 - - metanetx.reaction: MNXR104823 - - sbo: SBO:0000176 + - bigg.reaction: "THMP" + - kegg.reaction: "R02135" + - metanetx.reaction: "MNXR104823" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_2065 - - name: thiaminase + - id: "r_2065" + - name: "thiaminase" - metabolites: !!omap - s_0270: 1 - s_0310: 1 @@ -57200,45 +57669,49 @@ - s_1489: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: TMN - - kegg.reaction: R02133 - - metanetx.reaction: MNXR104901 - - sbo: SBO:0000176 + - bigg.reaction: "TMN" + - kegg.reaction: "R02133" + - metanetx.reaction: "MNXR104901" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2066 - - name: thiamine(1+) diphosphate(1-) exchange + - id: "r_2066" + - name: "thiamine(1+) diphosphate(1-) exchange" - metabolites: !!omap - s_1476: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_thmpp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_thmpp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2067 - - name: thiamine(1+) exchange + - id: "r_2067" + - name: "thiamine(1+) exchange" - metabolites: !!omap - s_1490: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_thm_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_thm_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2068 - - name: thiamine(1+) monophosphate exchange + - id: "r_2068" + - name: "thiamine(1+) monophosphate exchange" - metabolites: !!omap - s_1498: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_thmmp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_thmmp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2069 - - name: thiamine-phosphate kinase + - id: "r_2069" + - name: "thiamine-phosphate kinase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -57246,15 +57719,16 @@ - s_1497: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: TMPK - - kegg.reaction: R00617 - - metanetx.reaction: MNXR104907 - - sbo: SBO:0000176 + - bigg.reaction: "TMPK" + - kegg.reaction: "R00617" + - metanetx.reaction: "MNXR104907" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2070 - - name: thiazole phosphate synthesis (ribose 5-phosphate) + - id: "r_2070" + - name: "thiazole phosphate synthesis (ribose 5-phosphate)" - metabolites: !!omap - s_0293: 1 - s_0362: 1 @@ -57270,14 +57744,15 @@ - s_1408: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: THZPSN2_SC - - metanetx.reaction: MNXR104860 - - sbo: SBO:0000176 + - bigg.reaction: "THZPSN2_SC" + - metanetx.reaction: "MNXR104860" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2071 - - name: thiazole phosphate synthesis (xylulose 5-phosphate) + - id: "r_2071" + - name: "thiazole phosphate synthesis (xylulose 5-phosphate)" - metabolites: !!omap - s_0293: 1 - s_0362: 1 @@ -57293,38 +57768,40 @@ - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: THZPSN1_SC - - metanetx.reaction: MNXR104859 - - sbo: SBO:0000176 + - bigg.reaction: "THZPSN1_SC" + - metanetx.reaction: "MNXR104859" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2072 - - name: threonine transport + - id: "r_2072" + - name: "threonine transport" - metabolites: !!omap - s_1045: -1 - s_1047: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR508C + - gene_reaction_rule: "YDR508C" - annotation: !!omap - - bigg.reaction: thr_mt - - metanetx.reaction: MNXR104852 - - sbo: SBO:0000655 + - bigg.reaction: "thr_mt" + - metanetx.reaction: "MNXR104852" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_2073 - - name: thymidine exchange + - id: "r_2073" + - name: "thymidine exchange" - metabolites: !!omap - s_1494: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_thymd_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_thymd_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2074 - - name: thymidine kinase (ATP:thymidine) + - id: "r_2074" + - name: "thymidine kinase (ATP:thymidine)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -57333,28 +57810,30 @@ - s_1493: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: TMDK1 - - kegg.reaction: R01567 - - metanetx.reaction: MNXR104885 - - sbo: SBO:0000176 + - bigg.reaction: "TMDK1" + - kegg.reaction: "R01567" + - metanetx.reaction: "MNXR104885" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2075 - - name: thymidine transport + - id: "r_2075" + - name: "thymidine transport" - metabolites: !!omap - s_1493: 1 - s_1494: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: THYMDt1 - - metanetx.reaction: MNXR104821 - - sbo: SBO:0000655 + - bigg.reaction: "THYMDt1" + - metanetx.reaction: "MNXR104821" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2079 - - name: trehalose transporter + - id: "r_2079" + - name: "trehalose transporter" - metabolites: !!omap - s_0794: -1 - s_0796: 1 @@ -57362,353 +57841,378 @@ - s_1521: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR289C + - gene_reaction_rule: "YGR289C" - annotation: !!omap - - bigg.reaction: TREt2 - - metanetx.reaction: MNXR104932 - - pmid: 10957961 - - sbo: SBO:0000655 + - bigg.reaction: "TREt2" + - metanetx.reaction: "MNXR104932" + - pmid: "10957961" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2080 - - name: trehalose vacuolar transport + - id: "r_2080" + - name: "trehalose vacuolar transport" - metabolites: !!omap - s_1520: -1 - s_1522: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR104933 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104933" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2082 - - name: tryptophan transport + - id: "r_2082" + - name: "tryptophan transport" - metabolites: !!omap - s_1048: -1 - s_1050: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR104949 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104949" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2083 - - name: tryptophol exchange + - id: "r_2083" + - name: "tryptophol exchange" - metabolites: !!omap - s_1530: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ind3eth_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ind3eth_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2084 - - name: tryptophol transport + - id: "r_2084" + - name: "tryptophol transport" - metabolites: !!omap - s_1529: -1 - s_1530: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: IND3ETHt - - metanetx.reaction: MNXR100834 - - sbo: SBO:0000655 + - bigg.reaction: "IND3ETHt" + - metanetx.reaction: "MNXR100834" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2085 - - name: tryptophol transport + - id: "r_2085" + - name: "tryptophol transport" - metabolites: !!omap - s_1529: -1 - s_1531: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: IND3ETHtm - - metanetx.reaction: MNXR100834 - - sbo: SBO:0000655 + - bigg.reaction: "IND3ETHtm" + - metanetx.reaction: "MNXR100834" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2086 - - name: tyrosine transport + - id: "r_2086" + - name: "tyrosine transport" - metabolites: !!omap - s_1051: -1 - s_1053: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: r1078 - - metanetx.reaction: MNXR105002 - - sbo: SBO:0000655 + - bigg.reaction: "r1078" + - metanetx.reaction: "MNXR105002" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2087 - - name: tyrosine transport + - id: "r_2087" + - name: "tyrosine transport" - metabolites: !!omap - s_1051: -1 - s_1054: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR105002 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR105002" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2089 - - name: UMP transport + - id: "r_2089" + - name: "UMP transport" - metabolites: !!omap - s_1545: -1 - s_1548: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: UMPtn - - metanetx.reaction: MNXR105127 - - sbo: SBO:0000655 + - bigg.reaction: "UMPtn" + - metanetx.reaction: "MNXR105127" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2090 - - name: uracil exchange + - id: "r_2090" + - name: "uracil exchange" - metabolites: !!omap - s_1551: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ura_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ura_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2091 - - name: urea exchange + - id: "r_2091" + - name: "urea exchange" - metabolites: !!omap - s_1553: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_urea_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_urea_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2092 - - name: uridine exchange + - id: "r_2092" + - name: "uridine exchange" - metabolites: !!omap - s_1557: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_uri_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_uri_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2093 - - name: valine transport + - id: "r_2093" + - name: "valine transport" - metabolites: !!omap - s_1056: -1 - s_1058: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: VALt5m - - metanetx.reaction: MNXR105190 - - sbo: SBO:0000655 + - bigg.reaction: "VALt5m" + - metanetx.reaction: "MNXR105190" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2094 - - name: water diffusion + - id: "r_2094" + - name: "water diffusion" - metabolites: !!omap - s_0803: -1 - s_0804: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLL052C or YPR192W + - gene_reaction_rule: "YLL052C or YPR192W" - annotation: !!omap - - bigg.reaction: H2Oter - - metanetx.reaction: MNXR98641 - - sbo: SBO:0000655 + - bigg.reaction: "H2Oter" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_2095 - - name: water diffusion + - id: "r_2095" + - name: "water diffusion" - metabolites: !!omap - s_0803: -1 - s_0806: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: H2Otg - - metanetx.reaction: MNXR98641 - - sbo: SBO:0000655 + - bigg.reaction: "H2Otg" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2096 - - name: water diffusion + - id: "r_2096" + - name: "water diffusion" - metabolites: !!omap - s_0803: -1 - s_0807: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: H2Otm - - metanetx.reaction: MNXR98641 - - sbo: SBO:0000655 + - bigg.reaction: "H2Otm" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2097 - - name: water diffusion + - id: "r_2097" + - name: "water diffusion" - metabolites: !!omap - s_0803: -1 - s_0808: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: H2Otn - - metanetx.reaction: MNXR98641 - - sbo: SBO:0000655 + - bigg.reaction: "H2Otn" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2098 - - name: water diffusion + - id: "r_2098" + - name: "water diffusion" - metabolites: !!omap - s_0803: -1 - s_0809: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: H2Otp - - metanetx.reaction: MNXR98641 - - sbo: SBO:0000655 + - bigg.reaction: "H2Otp" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2099 - - name: water diffusion + - id: "r_2099" + - name: "water diffusion" - metabolites: !!omap - s_0803: -1 - s_0810: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: H2Otv - - metanetx.reaction: MNXR98641 - - sbo: SBO:0000655 + - bigg.reaction: "H2Otv" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2100 - - name: water exchange + - id: "r_2100" + - name: "water exchange" - metabolites: !!omap - s_0805: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_h2o_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_h2o_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2101 - - name: xanthine transport + - id: "r_2101" + - name: "xanthine transport" - metabolites: !!omap - s_0357: 1 - s_0358: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: XANt - - metanetx.reaction: MNXR105226 - - sbo: SBO:0000655 + - bigg.reaction: "XANt" + - metanetx.reaction: "MNXR105226" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2102 - - name: xanthosine exchange + - id: "r_2102" + - name: "xanthosine exchange" - metabolites: !!omap - s_1564: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_xtsn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_xtsn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2103 - - name: xanthosine transport + - id: "r_2103" + - name: "xanthosine transport" - metabolites: !!omap - s_1563: 1 - s_1564: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: XTSNtr - - metanetx.reaction: MNXR105247 - - sbo: SBO:0000655 + - bigg.reaction: "XTSNtr" + - metanetx.reaction: "MNXR105247" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2104 - - name: xylitol exchange + - id: "r_2104" + - name: "xylitol exchange" - metabolites: !!omap - s_1567: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_xylt_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_xylt_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2105 - - name: xylitol transport + - id: "r_2105" + - name: "xylitol transport" - metabolites: !!omap - s_1566: 1 - s_1567: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL245C or YLL043W + - gene_reaction_rule: "YDL245C or YLL043W" - annotation: !!omap - - bigg.reaction: XYLTt - - metanetx.reaction: MNXR105264 - - sbo: SBO:0000655 + - bigg.reaction: "XYLTt" + - metanetx.reaction: "MNXR105264" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_2106 - - name: zymosterol exchange + - id: "r_2106" + - name: "zymosterol exchange" - metabolites: !!omap - s_1571: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_zymst_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_zymst_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2107 - - name: zymosterol transport + - id: "r_2107" + - name: "zymosterol transport" - metabolites: !!omap - s_1568: -1 - s_1569: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL013C or YOR011W + - gene_reaction_rule: "YIL013C or YOR011W" - annotation: !!omap - - metanetx.reaction: MNXR105285 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR105285" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_2108 - - name: lipid pseudoreaction - merge + - id: "r_2108" + - name: "lipid pseudoreaction - merge" - metabolites: !!omap - s_1096: 1 - s_3746: -1 - s_3747: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - pmid: 18687109 - - sbo: SBO:0000395 + - pmid: "18687109" + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_2111 - - name: growth + - id: "r_2111" + - name: "growth" - metabolites: !!omap - s_0450: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137261 - - sbo: SBO:0000632 + - metanetx.reaction: "MNXR137261" + - sbo: "SBO:0000632" - confidence_score: 0 - !!omap - - id: r_2112 - - name: kynurenine aminotransferase + - id: "r_2112" + - name: "kynurenine aminotransferase" - metabolites: !!omap - s_0803: 1 - s_0955: 1 @@ -57717,18 +58221,18 @@ - s_2763: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL060W - - subsystem: sce00380 Tryptophan metabolism + - gene_reaction_rule: "YJL060W" + - subsystem: "sce00380 Tryptophan metabolism" - annotation: !!omap - - ec-code: 2.6.1.7 - - kegg.reaction: R01959 - - metanetx.reaction: MNXR132503 - - pmid: 18205391 - - sbo: SBO:0000176 + - ec-code: "2.6.1.7" + - kegg.reaction: "R01959" + - metanetx.reaction: "MNXR132503" + - pmid: "18205391" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2113 - - name: spontaneous kynurenic acid to quinaldic acid + - id: "r_2113" + - name: "spontaneous kynurenic acid to quinaldic acid" - metabolites: !!omap - s_0794: -2 - s_0803: 1 @@ -57738,15 +58242,16 @@ - s_2764: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - kegg.reaction: R03687 - - metanetx.reaction: MNXR108341 - - pmid: 18205391 - - sbo: SBO:0000176 + - kegg.reaction: "R03687" + - metanetx.reaction: "MNXR108341" + - pmid: "18205391" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2114 - - name: spontaneous 2-amino-3-carboxymuconate-6-semialdehyde to quinolinate + - id: "r_2114" + - name: "spontaneous 2-amino-3-carboxymuconate-6-semialdehyde to quinolinate" - metabolites: !!omap - s_0147: -1 - s_0794: 1 @@ -57754,15 +58259,16 @@ - s_1403: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - kegg.reaction: R04293 - - metanetx.reaction: MNXR103396 - - pmid: 18205391 - - sbo: SBO:0000176 + - kegg.reaction: "R04293" + - metanetx.reaction: "MNXR103396" + - pmid: "18205391" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2115 - - name: alcohol dehydrogenase, (acetaldehyde to ethanol) + - id: "r_2115" + - name: "alcohol dehydrogenase, (acetaldehyde to ethanol)" - metabolites: !!omap - s_0359: -1 - s_0680: 1 @@ -57771,24 +58277,24 @@ - s_1203: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR145W or YOL086C + - gene_reaction_rule: "YBR145W or YOL086C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.1 - - bigg.reaction: ALCD2ir - - kegg.reaction: R00754 - - metanetx.reaction: MNXR95725 - - pmid: 12499363 - - sbo: SBO:0000176 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD2ir" + - kegg.reaction: "R00754" + - metanetx.reaction: "MNXR95725" + - pmid: "12499363" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2116 - - name: acetaldehyde dehydrogenase + - id: "r_2116" + - name: "acetaldehyde dehydrogenase" - metabolites: !!omap - s_0359: -1 - s_0362: 1 @@ -57798,23 +58304,23 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR110C or YMR170C or YER073W or YOR374W + - gene_reaction_rule: "YMR110C or YMR170C or YER073W or YOR374W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00340 Histidine metabolism - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00410 beta-Alanine metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00340 Histidine metabolism" + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00410 beta-Alanine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 1.2.1.3 - - kegg.reaction: R00710 - - metanetx.reaction: MNXR95749 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - kegg.reaction: "R00710" + - metanetx.reaction: "MNXR95749" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_2117 - - name: phenylalanine transaminase + - id: "r_2117" + - name: "phenylalanine transaminase" - metabolites: !!omap - s_0951: 1 - s_0955: 1 @@ -57822,27 +58328,27 @@ - s_1399: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR137W + - gene_reaction_rule: "YHR137W" - subsystem: - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 2.6.1.58 - - 2.6.1.7 - - kegg.reaction: R00692 - - metanetx.reaction: MNXR125716 + - "2.6.1.58" + - "2.6.1.7" + - kegg.reaction: "R00692" + - metanetx.reaction: "MNXR125716" - pmid: - - 9491082 - - 9491083 - - sbo: SBO:0000176 + - "9491082" + - "9491083" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2118 - - name: tryptophan transaminase + - id: "r_2118" + - name: "tryptophan transaminase" - metabolites: !!omap - s_0855: 1 - s_0951: -1 @@ -57850,28 +58356,28 @@ - s_1048: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR137W + - gene_reaction_rule: "YHR137W" - subsystem: - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 2.6.1.57 - - 2.6.1.7 - - bigg.reaction: araphe3 - - kegg.reaction: R00684 - - metanetx.reaction: MNXR104947 + - "2.6.1.57" + - "2.6.1.7" + - bigg.reaction: "araphe3" + - kegg.reaction: "R00684" + - metanetx.reaction: "MNXR104947" - pmid: - - 9491082 - - 9491083 - - sbo: SBO:0000176 + - "9491082" + - "9491083" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2119 - - name: tyrosine transaminase + - id: "r_2119" + - name: "tyrosine transaminase" - metabolites: !!omap - s_0204: -1 - s_0955: -1 @@ -57879,41 +58385,42 @@ - s_1399: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR137W + - gene_reaction_rule: "YHR137W" - subsystem: - - sce00350 Tyrosine metabolism - - sce00360 Phenylalanine metabolism - - sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00350 Tyrosine metabolism" + - "sce00360 Phenylalanine metabolism" + - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 2.6.1.57 - - 2.6.1.7 - - kegg.reaction: R00734 - - metanetx.reaction: MNXR105000 + - "2.6.1.57" + - "2.6.1.7" + - kegg.reaction: "R00734" + - metanetx.reaction: "MNXR105000" - pmid: - - 9491082 - - 9491083 - - sbo: SBO:0000176 + - "9491082" + - "9491083" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2125 - - name: coenzyme A: cytoplasm to LP + - id: "r_2125" + - name: "coenzyme A: cytoplasm to LP" - metabolites: !!omap - s_0529: -1 - s_0531: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - kegg.reaction: R00197 - - metanetx.reaction: MNXR138960 - - pmid: 22672422 - - sbo: SBO:0000655 + - kegg.reaction: "R00197" + - metanetx.reaction: "MNXR138960" + - pmid: "22672422" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2126 - - name: sedoheptulose bisphosphatase + - id: "r_2126" + - name: "sedoheptulose bisphosphatase" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -57921,40 +58428,41 @@ - s_1427: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR043C + - gene_reaction_rule: "YKR043C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00260 Glycine, serine and threonine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01230 Biosynthesis of amino acids + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00260 Glycine, serine and threonine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 3.1.3.37 - - kegg.reaction: R01845 - - metanetx.reaction: MNXR104279 + - ec-code: "3.1.3.37" + - kegg.reaction: "R01845" + - metanetx.reaction: "MNXR104279" - pmid: - - 21663798 - - 22672422 - - sbo: SBO:0000176 + - "21663798" + - "22672422" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2129 - - name: proton leak + - id: "r_2129" + - name: "proton leak" - metabolites: !!omap - s_0794: -1 - s_0799: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: Htm - - metanetx.reaction: MNXR100765 - - pmid: 22672422 - - sbo: SBO:0000655 + - bigg.reaction: "Htm" + - metanetx.reaction: "MNXR100765" + - pmid: "22672422" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2131 - - name: isocitrate dehydrogenase + - id: "r_2131" + - name: "isocitrate dehydrogenase" - metabolites: !!omap - s_0182: 1 - s_0460: 1 @@ -57963,29 +58471,29 @@ - s_1214: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL066W + - gene_reaction_rule: "YDL066W" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00480 Glutathione metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids - - sce04146 Peroxisome + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00480 Glutathione metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.1.1.42 - - bigg.reaction: ICDHym - - kegg.reaction: R00267 - - metanetx.reaction: MNXR100781 + - ec-code: "1.1.1.42" + - bigg.reaction: "ICDHym" + - kegg.reaction: "R00267" + - metanetx.reaction: "MNXR100781" - pmid: - - 1989987 - - 8099357 - - sbo: SBO:0000176 + - "1989987" + - "8099357" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2132 - - name: oxoglutarate/malate exchange + - id: "r_2132" + - name: "oxoglutarate/malate exchange" - metabolites: !!omap - s_0066: -1 - s_0068: 1 @@ -57993,58 +58501,62 @@ - s_0182: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR222W or YPL134C + - gene_reaction_rule: "YOR222W or YPL134C" - annotation: !!omap - - bigg.reaction: AKGMALtm - - metanetx.reaction: MNXR95659 - - pmid: 16844075 - - sbo: SBO:0000655 + - bigg.reaction: "AKGMALtm" + - metanetx.reaction: "MNXR95659" + - pmid: "16844075" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2134 - - name: 14-demethyllanosterol exchange + - id: "r_2134" + - name: "14-demethyllanosterol exchange" - metabolites: !!omap - s_2766: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_2136 - - name: 14-demethyllanosterol transport + - id: "r_2136" + - name: "14-demethyllanosterol transport" - metabolites: !!omap - s_0122: 1 - s_2766: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137169 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137169" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2137 - - name: ergosta-5,7,22,24(28)-tetraen-3beta-ol exchange + - id: "r_2137" + - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol exchange" - metabolites: !!omap - s_2768: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_2139 - - name: ergosta-5,7,22,24(28)-tetraen-3beta-ol transport + - id: "r_2139" + - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol transport" - metabolites: !!omap - s_0662: 1 - s_2768: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR97951 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR97951" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2140 - - name: fatty-acyl-CoA synthase (n-C16:0CoA) + - id: "r_2140" + - name: "fatty-acyl-CoA synthase (n-C16:0CoA)" - metabolites: !!omap - s_0373: -1 - s_0456: 7 @@ -58057,18 +58569,18 @@ - s_1302: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL182W and YPL231W + - gene_reaction_rule: "YKL182W and YPL231W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce01212 Fatty acid metabolism + - "sce00061 Fatty acid biosynthesis" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.86 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.86" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2141 - - name: fatty-acyl-CoA synthase (n-C18:0CoA) + - id: "r_2141" + - name: "fatty-acyl-CoA synthase (n-C18:0CoA)" - metabolites: !!omap - s_0373: -1 - s_0456: 8 @@ -58081,18 +58593,18 @@ - s_1454: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL182W and YPL231W + - gene_reaction_rule: "YKL182W and YPL231W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce01212 Fatty acid metabolism + - "sce00061 Fatty acid biosynthesis" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.86 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.86" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2142 - - name: B-ketoacyl-ACP synthase (acetoacetyl-ACP) + - id: "r_2142" + - name: "B-ketoacyl-ACP synthase (acetoacetyl-ACP)" - metabolites: !!omap - s_0372: -1 - s_0460: 1 @@ -58102,21 +58614,21 @@ - s_2770: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER061C and YKL192C + - gene_reaction_rule: "YER061C and YKL192C" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00190 Oxidative phosphorylation - - sce00780 Biotin metabolism - - sce01212 Fatty acid metabolism + - "sce00061 Fatty acid biosynthesis" + - "sce00190 Oxidative phosphorylation" + - "sce00780 Biotin metabolism" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.41 - - bigg.reaction: 3OAS40_m - - pmid: 8412701 - - sbo: SBO:0000176 + - ec-code: "2.3.1.41" + - bigg.reaction: "3OAS40_m" + - pmid: "8412701" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2143 - - name: B-ketoacyl-ACP synthase (3-oxo-hexanoyl-ACP) + - id: "r_2143" + - name: "B-ketoacyl-ACP synthase (3-oxo-hexanoyl-ACP)" - metabolites: !!omap - s_0460: 1 - s_0465: -1 @@ -58126,20 +58638,20 @@ - s_2772: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER061C and YKL192C + - gene_reaction_rule: "YER061C and YKL192C" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00190 Oxidative phosphorylation - - sce00780 Biotin metabolism - - sce01212 Fatty acid metabolism + - "sce00061 Fatty acid biosynthesis" + - "sce00190 Oxidative phosphorylation" + - "sce00780 Biotin metabolism" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.41 - - pmid: 8412701 - - sbo: SBO:0000176 + - ec-code: "2.3.1.41" + - pmid: "8412701" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2144 - - name: B-ketoacyl-ACP synthase (3-oxo-octanoyl-ACP) + - id: "r_2144" + - name: "B-ketoacyl-ACP synthase (3-oxo-octanoyl-ACP)" - metabolites: !!omap - s_0460: 1 - s_0465: -1 @@ -58149,20 +58661,20 @@ - s_2774: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER061C and YKL192C + - gene_reaction_rule: "YER061C and YKL192C" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00190 Oxidative phosphorylation - - sce00780 Biotin metabolism - - sce01212 Fatty acid metabolism + - "sce00061 Fatty acid biosynthesis" + - "sce00190 Oxidative phosphorylation" + - "sce00780 Biotin metabolism" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.41 - - pmid: 8412701 - - sbo: SBO:0000176 + - ec-code: "2.3.1.41" + - pmid: "8412701" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2145 - - name: 3-oxoacyl-ACP reductase (3-hydroxybutanoyl-ACP) + - id: "r_2145" + - name: "3-oxoacyl-ACP reductase (3-hydroxybutanoyl-ACP)" - metabolites: !!omap - s_0799: -1 - s_1210: 1 @@ -58171,22 +58683,22 @@ - s_2775: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL055C + - gene_reaction_rule: "YKL055C" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00780 Biotin metabolism - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism + - "sce00061 Fatty acid biosynthesis" + - "sce00780 Biotin metabolism" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.1.1.100 - - bigg.reaction: 3OAR40_m - - pmid: 9388293 - - sbo: SBO:0000176 + - ec-code: "1.1.1.100" + - bigg.reaction: "3OAR40_m" + - pmid: "9388293" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2146 - - name: 3-oxoacyl-ACP reductase (3-hydroxyhexanoyl-ACP) + - id: "r_2146" + - name: "3-oxoacyl-ACP reductase (3-hydroxyhexanoyl-ACP)" - metabolites: !!omap - s_0799: -1 - s_1210: 1 @@ -58195,22 +58707,22 @@ - s_2776: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL055C + - gene_reaction_rule: "YKL055C" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00780 Biotin metabolism - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism + - "sce00061 Fatty acid biosynthesis" + - "sce00780 Biotin metabolism" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.1.1.100 - - bigg.reaction: 3OAR60_m - - pmid: 9388293 - - sbo: SBO:0000176 + - ec-code: "1.1.1.100" + - bigg.reaction: "3OAR60_m" + - pmid: "9388293" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2147 - - name: 3-oxoacyl-ACP reductase (3-hydroxyoctanoyl-ACP) + - id: "r_2147" + - name: "3-oxoacyl-ACP reductase (3-hydroxyoctanoyl-ACP)" - metabolites: !!omap - s_0799: -1 - s_1210: 1 @@ -58219,69 +58731,69 @@ - s_2777: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL055C + - gene_reaction_rule: "YKL055C" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00780 Biotin metabolism - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism + - "sce00061 Fatty acid biosynthesis" + - "sce00780 Biotin metabolism" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.1.1.100 - - metanetx.reaction: MNXR137225 - - pmid: 9388293 - - sbo: SBO:0000176 + - ec-code: "1.1.1.100" + - metanetx.reaction: "MNXR137225" + - pmid: "9388293" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2148 - - name: 3-hydroxyacyl-thioester dehydratase (trans-but-2-enoyl-ACP) + - id: "r_2148" + - name: "3-hydroxyacyl-thioester dehydratase (trans-but-2-enoyl-ACP)" - metabolites: !!omap - s_0807: 1 - s_2775: -1 - s_2778: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR067W + - gene_reaction_rule: "YHR067W" - annotation: !!omap - - ec-code: 4.2.1.- - - pmid: 15387819 - - sbo: SBO:0000176 + - ec-code: "4.2.1.-" + - pmid: "15387819" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2149 - - name: 3-hydroxyacyl-thioester dehydratase (trans-hex-2-enoyl-ACP) + - id: "r_2149" + - name: "3-hydroxyacyl-thioester dehydratase (trans-hex-2-enoyl-ACP)" - metabolites: !!omap - s_0807: 1 - s_2776: -1 - s_2779: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR067W + - gene_reaction_rule: "YHR067W" - annotation: !!omap - - ec-code: 4.2.1.- - - bigg.reaction: 3HAD61_m - - pmid: 15387819 - - sbo: SBO:0000176 + - ec-code: "4.2.1.-" + - bigg.reaction: "3HAD61_m" + - pmid: "15387819" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2150 - - name: 3-hydroxyacyl-thioester dehydratase (trans-oct-2-enoyl-ACP) + - id: "r_2150" + - name: "3-hydroxyacyl-thioester dehydratase (trans-oct-2-enoyl-ACP)" - metabolites: !!omap - s_0807: 1 - s_2777: -1 - s_2780: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR067W + - gene_reaction_rule: "YHR067W" - annotation: !!omap - - ec-code: 4.2.1.- - - metanetx.reaction: MNXR137214 - - pmid: 15387819 - - sbo: SBO:0000176 + - ec-code: "4.2.1.-" + - metanetx.reaction: "MNXR137214" + - pmid: "15387819" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2151 - - name: enoyl-ACP reductase (butanoyl-ACP) + - id: "r_2151" + - name: "enoyl-ACP reductase (butanoyl-ACP)" - metabolites: !!omap - s_0799: -1 - s_1210: 1 @@ -58290,18 +58802,18 @@ - s_2778: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR026C + - gene_reaction_rule: "YBR026C" - subsystem: - - sce00062 Fatty acid elongation - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.3.1.104 - - pmid: 11509667 - - sbo: SBO:0000176 + - ec-code: "1.3.1.104" + - pmid: "11509667" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2152 - - name: enoyl-ACP reductase (hexanoyl-ACP) + - id: "r_2152" + - name: "enoyl-ACP reductase (hexanoyl-ACP)" - metabolites: !!omap - s_0799: -1 - s_1210: 1 @@ -58310,18 +58822,18 @@ - s_2779: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR026C + - gene_reaction_rule: "YBR026C" - subsystem: - - sce00062 Fatty acid elongation - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.3.1.104 - - pmid: 11509667 - - sbo: SBO:0000176 + - ec-code: "1.3.1.104" + - pmid: "11509667" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2153 - - name: enoyl-ACP reductase (octanoyl-ACP) + - id: "r_2153" + - name: "enoyl-ACP reductase (octanoyl-ACP)" - metabolites: !!omap - s_0799: -1 - s_1210: 1 @@ -58330,18 +58842,18 @@ - s_2780: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR026C + - gene_reaction_rule: "YBR026C" - subsystem: - - sce00062 Fatty acid elongation - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.3.1.104 - - pmid: 11509667 - - sbo: SBO:0000176 + - ec-code: "1.3.1.104" + - pmid: "11509667" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2154 - - name: elongase I (3-oxotetradecanoyl-CoA) + - id: "r_2154" + - name: "elongase I (3-oxotetradecanoyl-CoA)" - metabolites: !!omap - s_2781: -1 - s_2782: -1 @@ -58351,21 +58863,21 @@ - s_2786: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL196C + - gene_reaction_rule: "YJL196C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.199 - - metanetx.reaction: MNXR122920 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.199" + - metanetx.reaction: "MNXR122920" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2155 - - name: elongase I (3-oxopalmitoyl-CoA) + - id: "r_2155" + - name: "elongase I (3-oxopalmitoyl-CoA)" - metabolites: !!omap - s_2782: -1 - s_2783: -1 @@ -58375,21 +58887,21 @@ - s_2788: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL196C + - gene_reaction_rule: "YJL196C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.199 - - metanetx.reaction: MNXR122921 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.199" + - metanetx.reaction: "MNXR122921" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2156 - - name: elongase II (3-oxooctadecanoyl-CoA) + - id: "r_2156" + - name: "elongase II (3-oxooctadecanoyl-CoA)" - metabolites: !!omap - s_2782: -1 - s_2783: -1 @@ -58399,22 +58911,22 @@ - s_2790: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR034W + - gene_reaction_rule: "YCR034W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.199 - - kegg.reaction: R07758 - - metanetx.reaction: MNXR94939 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.199" + - kegg.reaction: "R07758" + - metanetx.reaction: "MNXR94939" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2157 - - name: elongase II or III (3-oxoicosanoyl-CoA) + - id: "r_2157" + - name: "elongase II or III (3-oxoicosanoyl-CoA)" - metabolites: !!omap - s_2782: -1 - s_2783: -1 @@ -58424,21 +58936,21 @@ - s_2792: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR034W or YLR372W + - gene_reaction_rule: "YCR034W or YLR372W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.199 - - metanetx.reaction: MNXR103450 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.199" + - metanetx.reaction: "MNXR103450" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2158 - - name: elongase II or III (3-oxodocosanoyl-CoA) + - id: "r_2158" + - name: "elongase II or III (3-oxodocosanoyl-CoA)" - metabolites: !!omap - s_2782: -1 - s_2783: -1 @@ -58448,20 +58960,20 @@ - s_2794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR034W or YLR372W + - gene_reaction_rule: "YCR034W or YLR372W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.199 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.199" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2159 - - name: elongase II or III (3-oxotetracosanoyl-CoA) + - id: "r_2159" + - name: "elongase II or III (3-oxotetracosanoyl-CoA)" - metabolites: !!omap - s_2782: -1 - s_2783: -1 @@ -58471,20 +58983,20 @@ - s_2796: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR034W or YLR372W + - gene_reaction_rule: "YCR034W or YLR372W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.199 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.199" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2160 - - name: elongase III (3-oxohexacosanoyl-CoA) + - id: "r_2160" + - name: "elongase III (3-oxohexacosanoyl-CoA)" - metabolites: !!omap - s_2782: -1 - s_2783: -1 @@ -58494,21 +59006,21 @@ - s_2798: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR372W + - gene_reaction_rule: "YLR372W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 2.3.1.199 - - metanetx.reaction: MNXR118002 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.199" + - metanetx.reaction: "MNXR118002" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2161 - - name: B-ketoacyl-CoA reductase ((S)-3-hydroxytetradecanoyl-CoA) + - id: "r_2161" + - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxytetradecanoyl-CoA)" - metabolites: !!omap - s_2783: -1 - s_2786: -1 @@ -58517,20 +59029,20 @@ - s_2801: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR159W + - gene_reaction_rule: "YBR159W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.1.1.330 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.330" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2162 - - name: B-ketoacyl-CoA reductase ((S)-3-hydroxypalmitoyl-CoA) + - id: "r_2162" + - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxypalmitoyl-CoA)" - metabolites: !!omap - s_2783: -1 - s_2788: -1 @@ -58539,20 +59051,20 @@ - s_2802: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR159W + - gene_reaction_rule: "YBR159W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.1.1.330 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.330" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2163 - - name: B-ketoacyl-CoA reductase (3-hydroxyoctadecanoyl-CoA) + - id: "r_2163" + - name: "B-ketoacyl-CoA reductase (3-hydroxyoctadecanoyl-CoA)" - metabolites: !!omap - s_2783: -1 - s_2790: -1 @@ -58561,22 +59073,22 @@ - s_2803: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR159W + - gene_reaction_rule: "YBR159W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.1.1.330 - - kegg.reaction: R07759 - - metanetx.reaction: MNXR103465 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.330" + - kegg.reaction: "R07759" + - metanetx.reaction: "MNXR103465" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2164 - - name: B-ketoacyl-CoA reductase (3-hydroxyicosanoyl-CoA) + - id: "r_2164" + - name: "B-ketoacyl-CoA reductase (3-hydroxyicosanoyl-CoA)" - metabolites: !!omap - s_2783: -1 - s_2792: -1 @@ -58585,21 +59097,21 @@ - s_2804: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR159W + - gene_reaction_rule: "YBR159W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.1.1.330 - - metanetx.reaction: MNXR103451 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.330" + - metanetx.reaction: "MNXR103451" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2165 - - name: B-ketoacyl-CoA reductase (3-hydroxydocosanoyl-CoA) + - id: "r_2165" + - name: "B-ketoacyl-CoA reductase (3-hydroxydocosanoyl-CoA)" - metabolites: !!omap - s_2783: -1 - s_2794: -1 @@ -58608,21 +59120,21 @@ - s_2805: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR159W + - gene_reaction_rule: "YBR159W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.1.1.330 - - metanetx.reaction: MNXR103455 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.330" + - metanetx.reaction: "MNXR103455" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2166 - - name: B-ketoacyl-CoA reductase (3-hydroxytetracosanoyl-CoA) + - id: "r_2166" + - name: "B-ketoacyl-CoA reductase (3-hydroxytetracosanoyl-CoA)" - metabolites: !!omap - s_2783: -1 - s_2796: -1 @@ -58631,21 +59143,21 @@ - s_2806: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR159W + - gene_reaction_rule: "YBR159W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.1.1.330 - - metanetx.reaction: MNXR118005 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.330" + - metanetx.reaction: "MNXR118005" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2167 - - name: B-ketoacyl-CoA reductase ((S)-3-hydroxyhexacosanoyl-CoA) + - id: "r_2167" + - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxyhexacosanoyl-CoA)" - metabolites: !!omap - s_2783: -1 - s_2798: -1 @@ -58654,165 +59166,165 @@ - s_2807: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR159W + - gene_reaction_rule: "YBR159W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.1.1.330 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.330" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2168 - - name: B-hydroxyacyl-CoA dehydratase (trans-tetradec-2-enoyl-CoA) + - id: "r_2168" + - name: "B-hydroxyacyl-CoA dehydratase (trans-tetradec-2-enoyl-CoA)" - metabolites: !!omap - s_2801: -1 - s_2808: 1 - s_2809: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL097W + - gene_reaction_rule: "YJL097W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 4.2.1.134 - - kegg.reaction: R04740 - - metanetx.reaction: MNXR97891 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.2.1.134" + - kegg.reaction: "R04740" + - metanetx.reaction: "MNXR97891" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2169 - - name: B-hydroxyacyl-CoA dehydratase (trans-hexadec-2-enoyl-CoA) + - id: "r_2169" + - name: "B-hydroxyacyl-CoA dehydratase (trans-hexadec-2-enoyl-CoA)" - metabolites: !!omap - s_2802: -1 - s_2808: 1 - s_2810: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL097W + - gene_reaction_rule: "YJL097W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 4.2.1.134 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.2.1.134" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2170 - - name: B-hydroxyacyl-CoA dehydratase (trans-octadec-2-enoyl-CoA) + - id: "r_2170" + - name: "B-hydroxyacyl-CoA dehydratase (trans-octadec-2-enoyl-CoA)" - metabolites: !!omap - s_2803: -1 - s_2808: 1 - s_2811: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL097W + - gene_reaction_rule: "YJL097W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 4.2.1.134 - - kegg.reaction: R07760 - - metanetx.reaction: MNXR103466 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.2.1.134" + - kegg.reaction: "R07760" + - metanetx.reaction: "MNXR103466" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2171 - - name: B-hydroxyacyl-CoA dehydratase (trans-icos-2-enoyl-CoA) + - id: "r_2171" + - name: "B-hydroxyacyl-CoA dehydratase (trans-icos-2-enoyl-CoA)" - metabolites: !!omap - s_2804: -1 - s_2808: 1 - s_2812: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL097W + - gene_reaction_rule: "YJL097W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 4.2.1.134 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.2.1.134" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2172 - - name: B-hydroxyacyl-CoA dehydratase (trans-docos-2-enoyl-CoA) + - id: "r_2172" + - name: "B-hydroxyacyl-CoA dehydratase (trans-docos-2-enoyl-CoA)" - metabolites: !!omap - s_2805: -1 - s_2808: 1 - s_2813: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL097W + - gene_reaction_rule: "YJL097W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 4.2.1.134 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.2.1.134" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2173 - - name: B-hydroxyacyl-CoA dehydratase (trans-tetracos-2-enoyl-CoA) + - id: "r_2173" + - name: "B-hydroxyacyl-CoA dehydratase (trans-tetracos-2-enoyl-CoA)" - metabolites: !!omap - s_2806: -1 - s_2808: 1 - s_2814: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL097W + - gene_reaction_rule: "YJL097W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 4.2.1.134 - - metanetx.reaction: MNXR118009 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.2.1.134" + - metanetx.reaction: "MNXR118009" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2174 - - name: B-hydroxyacyl-CoA dehydratase (trans-hexacos-2-enoyl-CoA) + - id: "r_2174" + - name: "B-hydroxyacyl-CoA dehydratase (trans-hexacos-2-enoyl-CoA)" - metabolites: !!omap - s_2807: -1 - s_2808: 1 - s_2815: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL097W + - gene_reaction_rule: "YJL097W" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 4.2.1.134 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.2.1.134" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2175 - - name: trans-2-enoyl-CoA reductase (n-C14:0CoA) + - id: "r_2175" + - name: "trans-2-enoyl-CoA reductase (n-C14:0CoA)" - metabolites: !!omap - s_2783: -1 - s_2787: 1 @@ -58821,22 +59333,22 @@ - s_2809: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL015C + - gene_reaction_rule: "YDL015C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.3.1.93 - - kegg.reaction: R03989 - - metanetx.reaction: MNXR95374 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.3.1.93" + - kegg.reaction: "R03989" + - metanetx.reaction: "MNXR95374" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2176 - - name: trans-2-enoyl-CoA reductase (n-C16:0CoA) + - id: "r_2176" + - name: "trans-2-enoyl-CoA reductase (n-C16:0CoA)" - metabolites: !!omap - s_2783: -1 - s_2789: 1 @@ -58845,20 +59357,20 @@ - s_2810: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL015C + - gene_reaction_rule: "YDL015C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.3.1.93 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.3.1.93" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2177 - - name: trans-2-enoyl-CoA reductase (n-C18:0CoA) + - id: "r_2177" + - name: "trans-2-enoyl-CoA reductase (n-C18:0CoA)" - metabolites: !!omap - s_2783: -1 - s_2791: 1 @@ -58867,22 +59379,22 @@ - s_2811: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL015C + - gene_reaction_rule: "YDL015C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.3.1.93 - - kegg.reaction: R07761 - - metanetx.reaction: MNXR97895 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.3.1.93" + - kegg.reaction: "R07761" + - metanetx.reaction: "MNXR97895" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2178 - - name: trans-2-enoyl-CoA reductase (n-C20:0CoA) + - id: "r_2178" + - name: "trans-2-enoyl-CoA reductase (n-C20:0CoA)" - metabolites: !!omap - s_2783: -1 - s_2793: 1 @@ -58891,20 +59403,20 @@ - s_2812: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL015C + - gene_reaction_rule: "YDL015C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.3.1.93 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.3.1.93" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2179 - - name: trans-2-enoyl-CoA reductase (n-C22:0CoA) + - id: "r_2179" + - name: "trans-2-enoyl-CoA reductase (n-C22:0CoA)" - metabolites: !!omap - s_2783: -1 - s_2795: 1 @@ -58913,20 +59425,20 @@ - s_2813: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL015C + - gene_reaction_rule: "YDL015C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.3.1.93 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.3.1.93" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2180 - - name: trans-2-enoyl-CoA reductase (n-C24:0CoA) + - id: "r_2180" + - name: "trans-2-enoyl-CoA reductase (n-C24:0CoA)" - metabolites: !!omap - s_2783: -1 - s_2797: 1 @@ -58935,20 +59447,20 @@ - s_2814: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL015C + - gene_reaction_rule: "YDL015C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.3.1.93 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.3.1.93" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2181 - - name: trans-2-enoyl-CoA reductase (n-C26:0CoA) + - id: "r_2181" + - name: "trans-2-enoyl-CoA reductase (n-C26:0CoA)" - metabolites: !!omap - s_2783: -1 - s_2799: -1 @@ -58957,21 +59469,21 @@ - s_2816: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL015C + - gene_reaction_rule: "YDL015C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.3.1.93 - - metanetx.reaction: MNXR118013 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.3.1.93" + - metanetx.reaction: "MNXR118013" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2182 - - name: palmitoyl-CoA desaturase (n-C16:0CoA -> n-C16:1CoA), ER membrane + - id: "r_2182" + - name: "palmitoyl-CoA desaturase (n-C16:0CoA -> n-C16:1CoA), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2789: -1 @@ -58982,18 +59494,18 @@ - s_2820: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL055W + - gene_reaction_rule: "YGL055W" - subsystem: - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01212 Fatty acid metabolism + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.14.19.1 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.14.19.1" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2183 - - name: stearoyl-CoA desaturase (n-C18:0CoA -> n-C18:1CoA), ER membrane + - id: "r_2183" + - name: "stearoyl-CoA desaturase (n-C18:0CoA -> n-C18:1CoA), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2791: -1 @@ -59004,137 +59516,145 @@ - s_2821: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL055W + - gene_reaction_rule: "YGL055W" - subsystem: - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01212 Fatty acid metabolism + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01212 Fatty acid metabolism" - annotation: !!omap - - ec-code: 1.14.19.1 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.14.19.1" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2184 - - name: octanoate (n-C8:0) transport + - id: "r_2184" + - name: "octanoate (n-C8:0) transport" - metabolites: !!omap - s_1248: 1 - s_1250: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: OCTAt - - metanetx.reaction: MNXR99126 - - sbo: SBO:0000655 + - bigg.reaction: "OCTAt" + - metanetx.reaction: "MNXR99126" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2185 - - name: decanoate (n-C10:0) transport + - id: "r_2185" + - name: "decanoate (n-C10:0) transport" - metabolites: !!omap - s_0595: 1 - s_0597: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DCATDc - - metanetx.reaction: MNXR135772 - - sbo: SBO:0000655 + - bigg.reaction: "DCATDc" + - metanetx.reaction: "MNXR135772" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2186 - - name: laurate (n-C12:0) transport + - id: "r_2186" + - name: "laurate (n-C12:0) transport" - metabolites: !!omap - s_1065: 1 - s_1067: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: r2444 - - metanetx.reaction: MNXR135773 - - sbo: SBO:0000655 + - bigg.reaction: "r2444" + - metanetx.reaction: "MNXR135773" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2187 - - name: butyrate exchange + - id: "r_2187" + - name: "butyrate exchange" - metabolites: !!omap - s_2822: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_but_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_but_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2188 - - name: hexanoate exchange + - id: "r_2188" + - name: "hexanoate exchange" - metabolites: !!omap - s_2824: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_hxa_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_hxa_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2189 - - name: oleate exchange + - id: "r_2189" + - name: "oleate exchange" - metabolites: !!omap - s_2826: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ocdcea_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ocdcea_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2190 - - name: butyrate (n-C4:0) transport + - id: "r_2190" + - name: "butyrate (n-C4:0) transport" - metabolites: !!omap - s_2822: -1 - s_2828: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL065W + - gene_reaction_rule: "YNL065W" - annotation: !!omap - - bigg.reaction: BUTt - - sbo: SBO:0000655 + - bigg.reaction: "BUTt" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_2191 - - name: hexanoate (n-C6:0) transport + - id: "r_2191" + - name: "hexanoate (n-C6:0) transport" - metabolites: !!omap - s_2824: -1 - s_2829: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL065W + - gene_reaction_rule: "YNL065W" - annotation: !!omap - - bigg.reaction: HXAt3 - - metanetx.reaction: MNXR100750 - - sbo: SBO:0000655 + - bigg.reaction: "HXAt3" + - metanetx.reaction: "MNXR100750" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_2192 - - name: octadecenoate (n-C18:1) transport + - id: "r_2192" + - name: "octadecenoate (n-C18:1) transport" - metabolites: !!omap - s_1260: 1 - s_2826: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: OCDCEAt - - metanetx.reaction: MNXR99110 - - sbo: SBO:0000655 + - bigg.reaction: "OCDCEAt" + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2193 - - name: myristate exchange + - id: "r_2193" + - name: "myristate exchange" - metabolites: !!omap - s_1163: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ttdca_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ttdca_e" + - sbo: "SBO:0000627" - !!omap - - id: r_2194 - - name: fatty-acid--CoA ligase (dodecanoate), ER membrane + - id: "r_2194" + - name: "fatty-acid--CoA ligase (dodecanoate), ER membrane" - metabolites: !!omap - s_2781: 1 - s_2785: -1 @@ -59144,21 +59664,21 @@ - s_2834: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR317W + - gene_reaction_rule: "YOR317W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR120051 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR120051" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2195 - - name: fatty-acid--CoA ligase (tetradecanoate), ER membrane + - id: "r_2195" + - name: "fatty-acid--CoA ligase (tetradecanoate), ER membrane" - metabolites: !!omap - s_2785: -1 - s_2787: 1 @@ -59168,21 +59688,21 @@ - s_2835: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR246W or YOR317W + - gene_reaction_rule: "YMR246W or YOR317W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR126663 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR126663" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2196 - - name: fatty-acid--CoA ligase (hexadecanoate), ER membrane + - id: "r_2196" + - name: "fatty-acid--CoA ligase (hexadecanoate), ER membrane" - metabolites: !!omap - s_2785: -1 - s_2789: 1 @@ -59192,22 +59712,22 @@ - s_2836: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR246W or YOR317W + - gene_reaction_rule: "YMR246W or YOR317W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - kegg.reaction: R01280 - - metanetx.reaction: MNXR99153 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - kegg.reaction: "R01280" + - metanetx.reaction: "MNXR99153" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2197 - - name: fatty-acid--CoA ligase (hexadecenoate), ER membrane + - id: "r_2197" + - name: "fatty-acid--CoA ligase (hexadecenoate), ER membrane" - metabolites: !!omap - s_2785: -1 - s_2819: 1 @@ -59217,21 +59737,21 @@ - s_2837: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR246W or YOR317W + - gene_reaction_rule: "YMR246W or YOR317W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR126667 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR126667" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2198 - - name: fatty-acid--CoA ligase (octadecanoate), ER membrane + - id: "r_2198" + - name: "fatty-acid--CoA ligase (octadecanoate), ER membrane" - metabolites: !!omap - s_2785: -1 - s_2791: 1 @@ -59241,21 +59761,21 @@ - s_2838: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR246W or YOR317W + - gene_reaction_rule: "YMR246W or YOR317W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR99164 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR99164" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2199 - - name: fatty-acid--CoA ligase (octadecenoate), ER membrane + - id: "r_2199" + - name: "fatty-acid--CoA ligase (octadecenoate), ER membrane" - metabolites: !!omap - s_2785: -1 - s_2821: 1 @@ -59265,21 +59785,21 @@ - s_2839: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR246W or YOR317W + - gene_reaction_rule: "YMR246W or YOR317W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR122919 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR122919" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2200 - - name: fatty-acid--CoA ligase (dodecanoate), lipid particle + - id: "r_2200" + - name: "fatty-acid--CoA ligase (dodecanoate), lipid particle" - metabolites: !!omap - s_0531: -1 - s_0635: 1 @@ -59289,21 +59809,21 @@ - s_2843: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR317W + - gene_reaction_rule: "YOR317W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR120051 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR120051" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2201 - - name: fatty-acid--CoA ligase (tetradecanoate), lipid particle + - id: "r_2201" + - name: "fatty-acid--CoA ligase (tetradecanoate), lipid particle" - metabolites: !!omap - s_0531: -1 - s_0635: 1 @@ -59313,21 +59833,21 @@ - s_2845: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR246W or YOR317W + - gene_reaction_rule: "YMR246W or YOR317W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR126663 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR126663" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2202 - - name: fatty-acid--CoA ligase (hexadecanoate), lipid particle + - id: "r_2202" + - name: "fatty-acid--CoA ligase (hexadecanoate), lipid particle" - metabolites: !!omap - s_0531: -1 - s_0635: 1 @@ -59337,22 +59857,22 @@ - s_2847: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR246W or YOR317W + - gene_reaction_rule: "YMR246W or YOR317W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - kegg.reaction: R01280 - - metanetx.reaction: MNXR99153 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - kegg.reaction: "R01280" + - metanetx.reaction: "MNXR99153" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2203 - - name: fatty-acid--CoA ligase (hexadecenoate), lipid particle + - id: "r_2203" + - name: "fatty-acid--CoA ligase (hexadecenoate), lipid particle" - metabolites: !!omap - s_0531: -1 - s_0635: 1 @@ -59362,21 +59882,21 @@ - s_2849: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR246W or YOR317W + - gene_reaction_rule: "YMR246W or YOR317W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR126667 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR126667" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2204 - - name: fatty-acid--CoA ligase (octadecanoate), lipid particle + - id: "r_2204" + - name: "fatty-acid--CoA ligase (octadecanoate), lipid particle" - metabolites: !!omap - s_0531: -1 - s_0635: 1 @@ -59386,21 +59906,21 @@ - s_2851: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR246W or YOR317W + - gene_reaction_rule: "YMR246W or YOR317W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR99164 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR99164" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2205 - - name: fatty-acid--CoA ligase (octadecenoate), lipid particle + - id: "r_2205" + - name: "fatty-acid--CoA ligase (octadecenoate), lipid particle" - metabolites: !!omap - s_0531: -1 - s_0635: 1 @@ -59410,21 +59930,21 @@ - s_2853: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR246W or YOR317W + - gene_reaction_rule: "YMR246W or YOR317W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR122919 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR122919" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2206 - - name: fatty-acid--CoA ligase (hexadecenoate), peroxisome + - id: "r_2206" + - name: "fatty-acid--CoA ligase (hexadecenoate), peroxisome" - metabolites: !!omap - s_0426: 1 - s_0439: -1 @@ -59434,22 +59954,22 @@ - s_2854: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER015W + - gene_reaction_rule: "YER015W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - bigg.reaction: FACOAL161p - - metanetx.reaction: MNXR126667 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - bigg.reaction: "FACOAL161p" + - metanetx.reaction: "MNXR126667" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2207 - - name: fatty-acid--CoA ligase (octadecanoate), peroxisome + - id: "r_2207" + - name: "fatty-acid--CoA ligase (octadecanoate), peroxisome" - metabolites: !!omap - s_0426: 1 - s_0439: -1 @@ -59459,21 +59979,21 @@ - s_1457: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER015W + - gene_reaction_rule: "YER015W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR99164 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR99164" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2208 - - name: fatty-acid--CoA ligase (octadecenoate), peroxisome + - id: "r_2208" + - name: "fatty-acid--CoA ligase (octadecenoate), peroxisome" - metabolites: !!omap - s_0426: 1 - s_0439: -1 @@ -59483,21 +60003,21 @@ - s_2855: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER015W + - gene_reaction_rule: "YER015W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR122919 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR122919" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2209 - - name: fatty-acid--CoA ligase (arachidate), cell envelope + - id: "r_2209" + - name: "fatty-acid--CoA ligase (arachidate), cell envelope" - metabolites: !!omap - s_2856: -1 - s_2857: -1 @@ -59507,20 +60027,20 @@ - s_2861: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL009W + - gene_reaction_rule: "YIL009W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2210 - - name: fatty-acid--CoA ligase (behenate), cell envelope + - id: "r_2210" + - name: "fatty-acid--CoA ligase (behenate), cell envelope" - metabolites: !!omap - s_2856: -1 - s_2857: -1 @@ -59530,20 +60050,20 @@ - s_2863: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL009W + - gene_reaction_rule: "YIL009W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2211 - - name: fatty-acid--CoA ligase (lignoceric acid), cell envelope + - id: "r_2211" + - name: "fatty-acid--CoA ligase (lignoceric acid), cell envelope" - metabolites: !!omap - s_2856: -1 - s_2857: -1 @@ -59553,21 +60073,21 @@ - s_2865: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL009W + - gene_reaction_rule: "YIL009W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR126665 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR126665" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2212 - - name: fatty-acid--CoA ligase (cerotic acid), cell envelope + - id: "r_2212" + - name: "fatty-acid--CoA ligase (cerotic acid), cell envelope" - metabolites: !!omap - s_2856: -1 - s_2857: -1 @@ -59577,21 +60097,21 @@ - s_2867: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL009W + - gene_reaction_rule: "YIL009W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - metanetx.reaction: MNXR128076 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - metanetx.reaction: "MNXR128076" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2213 - - name: fatty-acid--CoA ligase (behenate), ER membrane + - id: "r_2213" + - name: "fatty-acid--CoA ligase (behenate), ER membrane" - metabolites: !!omap - s_2785: -1 - s_2795: 1 @@ -59601,14 +60121,14 @@ - s_2868: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR041W + - gene_reaction_rule: "YBR041W" - annotation: !!omap - - pmid: 22345606 - - sbo: SBO:0000176 + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2214 - - name: fatty-acid--CoA ligase (lignoceric acid), ER membrane + - id: "r_2214" + - name: "fatty-acid--CoA ligase (lignoceric acid), ER membrane" - metabolites: !!omap - s_2785: -1 - s_2797: 1 @@ -59618,15 +60138,15 @@ - s_2869: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR041W + - gene_reaction_rule: "YBR041W" - annotation: !!omap - - metanetx.reaction: MNXR126665 - - pmid: 22345606 - - sbo: SBO:0000176 + - metanetx.reaction: "MNXR126665" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2215 - - name: fatty-acid--CoA ligase (cerotic acid), ER membrane + - id: "r_2215" + - name: "fatty-acid--CoA ligase (cerotic acid), ER membrane" - metabolites: !!omap - s_2785: -1 - s_2816: 1 @@ -59636,15 +60156,15 @@ - s_2870: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR041W + - gene_reaction_rule: "YBR041W" - annotation: !!omap - - metanetx.reaction: MNXR128076 - - pmid: 22345606 - - sbo: SBO:0000176 + - metanetx.reaction: "MNXR128076" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2216 - - name: fatty-acid--CoA ligase (behenate), lipid particle + - id: "r_2216" + - name: "fatty-acid--CoA ligase (behenate), lipid particle" - metabolites: !!omap - s_0531: -1 - s_0635: 1 @@ -59654,14 +60174,14 @@ - s_2872: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR041W + - gene_reaction_rule: "YBR041W" - annotation: !!omap - - pmid: 22345606 - - sbo: SBO:0000176 + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2217 - - name: fatty-acid--CoA ligase (lignoceric acid), lipid particle + - id: "r_2217" + - name: "fatty-acid--CoA ligase (lignoceric acid), lipid particle" - metabolites: !!omap - s_0531: -1 - s_0635: 1 @@ -59671,15 +60191,15 @@ - s_2874: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR041W + - gene_reaction_rule: "YBR041W" - annotation: !!omap - - metanetx.reaction: MNXR126665 - - pmid: 22345606 - - sbo: SBO:0000176 + - metanetx.reaction: "MNXR126665" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2218 - - name: fatty-acid--CoA ligase (cerotic acid), lipid particle + - id: "r_2218" + - name: "fatty-acid--CoA ligase (cerotic acid), lipid particle" - metabolites: !!omap - s_0531: -1 - s_0635: 1 @@ -59689,15 +60209,15 @@ - s_2876: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR041W + - gene_reaction_rule: "YBR041W" - annotation: !!omap - - metanetx.reaction: MNXR128076 - - pmid: 22345606 - - sbo: SBO:0000176 + - metanetx.reaction: "MNXR128076" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2219 - - name: fatty acyl-CoA transport via ABC system (C12:0) + - id: "r_2219" + - name: "fatty acyl-CoA transport via ABC system (C12:0)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -59708,17 +60228,17 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - subsystem: - - sce02010 ABC transporters - - sce04146 Peroxisome + - "sce02010 ABC transporters" + - "sce04146 Peroxisome" - annotation: !!omap - - pmid: 17010456 - - sbo: SBO:0000655 + - pmid: "17010456" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2220 - - name: fatty acyl-CoA transport via ABC system (C14:0) + - id: "r_2220" + - name: "fatty acyl-CoA transport via ABC system (C14:0)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -59729,17 +60249,17 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - subsystem: - - sce02010 ABC transporters - - sce04146 Peroxisome + - "sce02010 ABC transporters" + - "sce04146 Peroxisome" - annotation: !!omap - - pmid: 17010456 - - sbo: SBO:0000655 + - pmid: "17010456" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2221 - - name: fatty acyl-CoA transport via ABC system (C16:0) + - id: "r_2221" + - name: "fatty acyl-CoA transport via ABC system (C16:0)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -59750,19 +60270,19 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - subsystem: - - sce02010 ABC transporters - - sce04146 Peroxisome + - "sce02010 ABC transporters" + - "sce04146 Peroxisome" - annotation: !!omap - - bigg.reaction: FA160COAabcp_1 - - metanetx.reaction: MNXR99100 - - pmid: 17010456 - - sbo: SBO:0000655 + - bigg.reaction: "FA160COAabcp_1" + - metanetx.reaction: "MNXR99100" + - pmid: "17010456" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2222 - - name: fatty acyl-CoA transport via ABC system (C16:1) + - id: "r_2222" + - name: "fatty acyl-CoA transport via ABC system (C16:1)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -59773,17 +60293,17 @@ - s_2877: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - subsystem: - - sce02010 ABC transporters - - sce04146 Peroxisome + - "sce02010 ABC transporters" + - "sce04146 Peroxisome" - annotation: !!omap - - pmid: 17010456 - - sbo: SBO:0000655 + - pmid: "17010456" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2223 - - name: fatty acyl-CoA transport via ABC system (C18:0) + - id: "r_2223" + - name: "fatty acyl-CoA transport via ABC system (C18:0)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -59794,19 +60314,19 @@ - s_1457: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - subsystem: - - sce02010 ABC transporters - - sce04146 Peroxisome + - "sce02010 ABC transporters" + - "sce04146 Peroxisome" - annotation: !!omap - - bigg.reaction: STCOATxc - - metanetx.reaction: MNXR104597 - - pmid: 17010456 - - sbo: SBO:0000655 + - bigg.reaction: "STCOATxc" + - metanetx.reaction: "MNXR104597" + - pmid: "17010456" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2224 - - name: fatty acyl-CoA transport via ABC system (C18:1) + - id: "r_2224" + - name: "fatty acyl-CoA transport via ABC system (C18:1)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -59817,17 +60337,17 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - subsystem: - - sce02010 ABC transporters - - sce04146 Peroxisome + - "sce02010 ABC transporters" + - "sce04146 Peroxisome" - annotation: !!omap - - pmid: 17010456 - - sbo: SBO:0000655 + - pmid: "17010456" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2225 - - name: fatty acyl-CoA transport via ABC system (C20:0) + - id: "r_2225" + - name: "fatty acyl-CoA transport via ABC system (C20:0)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -59838,17 +60358,17 @@ - s_2879: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - subsystem: - - sce02010 ABC transporters - - sce04146 Peroxisome + - "sce02010 ABC transporters" + - "sce04146 Peroxisome" - annotation: !!omap - - pmid: 17010456 - - sbo: SBO:0000655 + - pmid: "17010456" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2226 - - name: fatty acyl-CoA transport via ABC system (C22:0) + - id: "r_2226" + - name: "fatty acyl-CoA transport via ABC system (C22:0)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -59859,18 +60379,18 @@ - s_2881: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - subsystem: - - sce02010 ABC transporters - - sce04146 Peroxisome + - "sce02010 ABC transporters" + - "sce04146 Peroxisome" - annotation: !!omap - - bigg.reaction: DOCOSCOAtxc - - pmid: 17010456 - - sbo: SBO:0000655 + - bigg.reaction: "DOCOSCOAtxc" + - pmid: "17010456" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2227 - - name: fatty acyl-CoA transport via ABC system (C24:0) + - id: "r_2227" + - name: "fatty acyl-CoA transport via ABC system (C24:0)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -59881,18 +60401,18 @@ - s_1482: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - subsystem: - - sce02010 ABC transporters - - sce04146 Peroxisome + - "sce02010 ABC transporters" + - "sce04146 Peroxisome" - annotation: !!omap - - bigg.reaction: LGNCCOAtcx_1 - - pmid: 17010456 - - sbo: SBO:0000655 + - bigg.reaction: "LGNCCOAtcx_1" + - pmid: "17010456" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2228 - - name: fatty acyl-CoA transport via ABC system (C26:0) + - id: "r_2228" + - name: "fatty acyl-CoA transport via ABC system (C26:0)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -59903,54 +60423,56 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - subsystem: - - sce02010 ABC transporters - - sce04146 Peroxisome + - "sce02010 ABC transporters" + - "sce04146 Peroxisome" - annotation: !!omap - - pmid: 17010456 - - sbo: SBO:0000655 + - pmid: "17010456" + - sbo: "SBO:0000655" - confidence_score: 3 - !!omap - - id: r_2229 - - name: butyrate (n-C4:0) transport, cytoplasm-peroxisome + - id: "r_2229" + - name: "butyrate (n-C4:0) transport, cytoplasm-peroxisome" - metabolites: !!omap - s_2828: -1 - s_2882: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2230 - - name: hexanoate (n-C6:0) transport, cytoplasm-peroxisome + - id: "r_2230" + - name: "hexanoate (n-C6:0) transport, cytoplasm-peroxisome" - metabolites: !!omap - s_2829: -1 - s_2883: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: HXAt2 - - metanetx.reaction: MNXR100750 - - sbo: SBO:0000655 + - bigg.reaction: "HXAt2" + - metanetx.reaction: "MNXR100750" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_2231 - - name: octadecenoate (n-C18:1) transport, cytoplasm-peroxisome + - id: "r_2231" + - name: "octadecenoate (n-C18:1) transport, cytoplasm-peroxisome" - metabolites: !!omap - s_1260: -1 - s_2855: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL188C and YPL147W + - gene_reaction_rule: "YKL188C and YPL147W" - annotation: !!omap - - metanetx.reaction: MNXR99110 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_2232 - - name: peroxisomal acyl-CoA thioesterase (4:0) + - id: "r_2232" + - name: "peroxisomal acyl-CoA thioesterase (4:0)" - metabolites: !!omap - s_0534: 1 - s_0801: 5 @@ -59959,19 +60481,19 @@ - s_2884: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR019C + - gene_reaction_rule: "YJR019C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.2.2 - - pmid: 16490786 - - sbo: SBO:0000176 + - ec-code: "3.1.2.2" + - pmid: "16490786" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2233 - - name: peroxisomal acyl-CoA thioesterase (6:0) + - id: "r_2233" + - name: "peroxisomal acyl-CoA thioesterase (6:0)" - metabolites: !!omap - s_0534: 1 - s_0801: 5 @@ -59980,21 +60502,21 @@ - s_2885: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR019C + - gene_reaction_rule: "YJR019C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.2.2 - - bigg.reaction: HXCOAx - - metanetx.reaction: MNXR127520 - - pmid: 16490786 - - sbo: SBO:0000176 + - ec-code: "3.1.2.2" + - bigg.reaction: "HXCOAx" + - metanetx.reaction: "MNXR127520" + - pmid: "16490786" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2234 - - name: peroxisomal acyl-CoA thioesterase (16:1) + - id: "r_2234" + - name: "peroxisomal acyl-CoA thioesterase (16:1)" - metabolites: !!omap - s_0534: 1 - s_0801: 1 @@ -60003,20 +60525,20 @@ - s_2854: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR019C + - gene_reaction_rule: "YJR019C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.2.2 - - metanetx.reaction: MNXR116444 - - pmid: 16490786 - - sbo: SBO:0000176 + - ec-code: "3.1.2.2" + - metanetx.reaction: "MNXR116444" + - pmid: "16490786" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2235 - - name: peroxisomal acyl-CoA thioesterase (18:1) + - id: "r_2235" + - name: "peroxisomal acyl-CoA thioesterase (18:1)" - metabolites: !!omap - s_0534: 1 - s_0801: 1 @@ -60025,21 +60547,21 @@ - s_2855: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR019C + - gene_reaction_rule: "YJR019C" - subsystem: - - sce00062 Fatty acid elongation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites + - "sce00062 Fatty acid elongation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.2.2 - - kegg.reaction: R08176 - - metanetx.reaction: MNXR111750 - - pmid: 16490786 - - sbo: SBO:0000176 + - ec-code: "3.1.2.2" + - kegg.reaction: "R08176" + - metanetx.reaction: "MNXR111750" + - pmid: "16490786" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2236 - - name: acyl-CoA oxidase (butanoyl-CoA) + - id: "r_2236" + - name: "acyl-CoA oxidase (butanoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1279: -1 @@ -60047,23 +60569,23 @@ - s_2886: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - bigg.reaction: HMR_3102 - - metanetx.reaction: MNXR127857 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - bigg.reaction: "HMR_3102" + - metanetx.reaction: "MNXR127857" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2237 - - name: acyl-CoA oxidase (hexanoyl-CoA) + - id: "r_2237" + - name: "acyl-CoA oxidase (hexanoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1279: -1 @@ -60071,23 +60593,23 @@ - s_2887: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - bigg.reaction: HMR_3098 - - metanetx.reaction: MNXR127546 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - bigg.reaction: "HMR_3098" + - metanetx.reaction: "MNXR127546" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2238 - - name: acyl-CoA oxidase (octanoyl-CoA) + - id: "r_2238" + - name: "acyl-CoA oxidase (octanoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1258: -1 @@ -60095,21 +60617,21 @@ - s_2888: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2239 - - name: acyl-CoA oxidase (icosanoyl-CoA) + - id: "r_2239" + - name: "acyl-CoA oxidase (icosanoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1279: -1 @@ -60117,21 +60639,21 @@ - s_2889: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2240 - - name: acyl-CoA oxidase (docosanoyl-CoA) + - id: "r_2240" + - name: "acyl-CoA oxidase (docosanoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1279: -1 @@ -60139,21 +60661,21 @@ - s_2890: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2241 - - name: acyl-CoA oxidase (tetracosanoyl-CoA) + - id: "r_2241" + - name: "acyl-CoA oxidase (tetracosanoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1279: -1 @@ -60161,23 +60683,23 @@ - s_2891: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - bigg.reaction: HMR_3062 - - metanetx.reaction: MNXR127548 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - bigg.reaction: "HMR_3062" + - metanetx.reaction: "MNXR127548" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2242 - - name: acyl-CoA oxidase (palmitoleoyl-CoA) + - id: "r_2242" + - name: "acyl-CoA oxidase (palmitoleoyl-CoA)" - metabolites: !!omap - s_0801: -4 - s_0840: 1 @@ -60186,21 +60708,21 @@ - s_2892: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2243 - - name: acyl-CoA oxidase (cis-tetradec-7-enoyl-CoA) + - id: "r_2243" + - name: "acyl-CoA oxidase (cis-tetradec-7-enoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1279: -1 @@ -60208,21 +60730,21 @@ - s_2894: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2244 - - name: acyl-CoA oxidase (cis-dodec-5-enoyl-CoA) + - id: "r_2244" + - name: "acyl-CoA oxidase (cis-dodec-5-enoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1279: -1 @@ -60230,21 +60752,21 @@ - s_2896: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2245 - - name: acyl-CoA oxidase (oleoyl-CoA) + - id: "r_2245" + - name: "acyl-CoA oxidase (oleoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1265: -1 @@ -60252,21 +60774,21 @@ - s_2897: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2246 - - name: acyl-CoA oxidase (cis-hexadec-7-enoyl-CoA) + - id: "r_2246" + - name: "acyl-CoA oxidase (cis-hexadec-7-enoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1279: -1 @@ -60274,21 +60796,21 @@ - s_2899: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2247 - - name: acyl-CoA oxidase (cis-tetradec-5-enoyl-CoA) + - id: "r_2247" + - name: "acyl-CoA oxidase (cis-tetradec-5-enoyl-CoA)" - metabolites: !!omap - s_0840: 1 - s_1279: -1 @@ -60296,138 +60818,138 @@ - s_2901: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL205W + - gene_reaction_rule: "YGL205W" - subsystem: - - sce00071 Fatty acid degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.3.6 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.3.6" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2248 - - name: 2-enoyl-CoA hydratase (3-hydroxydecanoyl-CoA) + - id: "r_2248" + - name: "2-enoyl-CoA hydratase (3-hydroxydecanoyl-CoA)" - metabolites: !!omap - s_0042: 1 - s_0809: -1 - s_1507: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - bigg.reaction: ECOAH4p - - kegg.reaction: R04744 - - metanetx.reaction: MNXR97889 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - bigg.reaction: "ECOAH4p" + - kegg.reaction: "R04744" + - metanetx.reaction: "MNXR97889" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2249 - - name: 2-enoyl-CoA hydratase (3-hydroxydodecanoyl-CoA) + - id: "r_2249" + - name: "2-enoyl-CoA hydratase (3-hydroxydodecanoyl-CoA)" - metabolites: !!omap - s_0048: 1 - s_0809: -1 - s_1510: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - bigg.reaction: ECOAH5p - - kegg.reaction: R04170 - - metanetx.reaction: MNXR97890 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - bigg.reaction: "ECOAH5p" + - kegg.reaction: "R04170" + - metanetx.reaction: "MNXR97890" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2250 - - name: 2-enoyl-CoA hydratase (3-hydroxytetradecanoyl-CoA) + - id: "r_2250" + - name: "2-enoyl-CoA hydratase (3-hydroxytetradecanoyl-CoA)" - metabolites: !!omap - s_0054: 1 - s_0809: -1 - s_1519: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - bigg.reaction: ECOAH6p - - kegg.reaction: R04740 - - metanetx.reaction: MNXR97891 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - bigg.reaction: "ECOAH6p" + - kegg.reaction: "R04740" + - metanetx.reaction: "MNXR97891" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2251 - - name: 2-enoyl-CoA hydratase (3-hydroxyhexadecanoyl-CoA) + - id: "r_2251" + - name: "2-enoyl-CoA hydratase (3-hydroxyhexadecanoyl-CoA)" - metabolites: !!omap - s_0051: 1 - s_0809: -1 - s_0823: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - bigg.reaction: ECOAH7p - - kegg.reaction: R04738 - - metanetx.reaction: MNXR97892 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - bigg.reaction: "ECOAH7p" + - kegg.reaction: "R04738" + - metanetx.reaction: "MNXR97892" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2252 - - name: 2-enoyl-CoA hydratase (3-hydroxyoctadecanoyl-CoA) + - id: "r_2252" + - name: "2-enoyl-CoA hydratase (3-hydroxyoctadecanoyl-CoA)" - metabolites: !!omap - s_0229: 1 - s_0809: -1 - s_1516: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - bigg.reaction: HMR_3075 - - kegg.reaction: R07760 - - metanetx.reaction: MNXR103466 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - bigg.reaction: "HMR_3075" + - kegg.reaction: "R07760" + - metanetx.reaction: "MNXR103466" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2253 - - name: 2-enoyl-CoA hydratase (3-hydroxyhexacosanoyl-CoA) + - id: "r_2253" + - name: "2-enoyl-CoA hydratase (3-hydroxyhexacosanoyl-CoA)" - metabolites: !!omap - s_0045: 1 - s_0809: -1 - s_1513: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2254 - - name: 2-enoyl-CoA hydratase (3-hydroxybutanoyl-CoA) + - id: "r_2254" + - name: "2-enoyl-CoA hydratase (3-hydroxybutanoyl-CoA)" - metabolites: !!omap - s_0801: 4 - s_0809: -1 @@ -60435,34 +60957,34 @@ - s_2902: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2255 - - name: 2-enoyl-CoA hydratase (3-hydroxyhexanoyl-CoA) + - id: "r_2255" + - name: "2-enoyl-CoA hydratase (3-hydroxyhexanoyl-CoA)" - metabolites: !!omap - s_0809: -1 - s_2887: -1 - s_2903: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2256 - - name: 2-enoyl-CoA hydratase (3-hydroxyoctanoyl-CoA) + - id: "r_2256" + - name: "2-enoyl-CoA hydratase (3-hydroxyoctanoyl-CoA)" - metabolites: !!omap - s_0801: -4 - s_0809: -1 @@ -60470,121 +60992,121 @@ - s_2904: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - metanetx.reaction: MNXR118594 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - metanetx.reaction: "MNXR118594" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2257 - - name: 2-enoyl-CoA hydratase (3-hydroxyicosanoyl-CoA) + - id: "r_2257" + - name: "2-enoyl-CoA hydratase (3-hydroxyicosanoyl-CoA)" - metabolites: !!omap - s_0809: -1 - s_2889: -1 - s_2905: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2258 - - name: 2-enoyl-CoA hydratase (3-hydroxydocosanoyl-CoA) + - id: "r_2258" + - name: "2-enoyl-CoA hydratase (3-hydroxydocosanoyl-CoA)" - metabolites: !!omap - s_0809: -1 - s_2890: -1 - s_2906: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2259 - - name: 2-enoyl-CoA hydratase (3-hydroxytetracosanoyl-CoA) + - id: "r_2259" + - name: "2-enoyl-CoA hydratase (3-hydroxytetracosanoyl-CoA)" - metabolites: !!omap - s_0809: -1 - s_2891: -1 - s_2907: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - metanetx.reaction: MNXR118009 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - metanetx.reaction: "MNXR118009" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2260 - - name: 2-enoyl-CoA hydratase (3-hydroxy-cis-hexadec-9-enoyl-CoA) + - id: "r_2260" + - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-hexadec-9-enoyl-CoA)" - metabolites: !!omap - s_0809: -1 - s_2892: -1 - s_2908: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2261 - - name: 2-enoyl-CoA hydratase (3-hydroxy-cis-tetradec-7-enoyl-CoA) + - id: "r_2261" + - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-tetradec-7-enoyl-CoA)" - metabolites: !!omap - s_0809: -1 - s_2894: -1 - s_2909: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2262 - - name: 2-enoyl-CoA hydratase (3-hydroxy-cis-dodec-5-enoyl-CoA) + - id: "r_2262" + - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-dodec-5-enoyl-CoA)" - metabolites: !!omap - s_0809: -1 - s_2896: -1 - s_2910: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2263 - - name: 2-enoyl-CoA hydratase (3-hydroxy-cis-octadec-9-enoyl-CoA) + - id: "r_2263" + - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-octadec-9-enoyl-CoA)" - metabolites: !!omap - s_0801: -4 - s_0809: -1 @@ -60592,51 +61114,51 @@ - s_2911: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2264 - - name: 2-enoyl-CoA hydratase (3-hydroxy-cis-hexadec-7-enoyl-CoA) + - id: "r_2264" + - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-hexadec-7-enoyl-CoA)" - metabolites: !!omap - s_0809: -1 - s_2899: -1 - s_2912: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2265 - - name: 2-enoyl-CoA hydratase (3-hydroxy-cis-tetradec-5-enoyl-CoA) + - id: "r_2265" + - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-tetradec-5-enoyl-CoA)" - metabolites: !!omap - s_0809: -1 - s_2901: -1 - s_2913: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2266 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxodecanoyl-CoA) + - id: "r_2266" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxodecanoyl-CoA)" - metabolites: !!omap - s_0042: -1 - s_0239: 1 @@ -60645,20 +61167,20 @@ - s_1206: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - bigg.reaction: HACD4p - - kegg.reaction: R04743 - - metanetx.reaction: MNXR100545 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - bigg.reaction: "HACD4p" + - kegg.reaction: "R04743" + - metanetx.reaction: "MNXR100545" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2267 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxododecanoyl-CoA) + - id: "r_2267" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxododecanoyl-CoA)" - metabolites: !!omap - s_0048: -1 - s_0247: 1 @@ -60667,20 +61189,20 @@ - s_1206: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - bigg.reaction: HACD5p - - kegg.reaction: R04741 - - metanetx.reaction: MNXR100546 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - bigg.reaction: "HACD5p" + - kegg.reaction: "R04741" + - metanetx.reaction: "MNXR100546" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2268 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxohexadecanoyl-CoA) + - id: "r_2268" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexadecanoyl-CoA)" - metabolites: !!omap - s_0051: -1 - s_0253: 1 @@ -60689,20 +61211,20 @@ - s_1206: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - bigg.reaction: HACD7p - - kegg.reaction: R04737 - - metanetx.reaction: MNXR100548 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - bigg.reaction: "HACD7p" + - kegg.reaction: "R04737" + - metanetx.reaction: "MNXR100548" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2269 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxooctadecanoyl-CoA) + - id: "r_2269" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxooctadecanoyl-CoA)" - metabolites: !!omap - s_0229: -1 - s_0250: 1 @@ -60711,19 +61233,19 @@ - s_1206: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - bigg.reaction: HMR_3076 - - metanetx.reaction: MNXR126787 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - bigg.reaction: "HMR_3076" + - metanetx.reaction: "MNXR126787" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2270 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxohexacosanoyl-CoA) + - id: "r_2270" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexacosanoyl-CoA)" - metabolites: !!omap - s_0045: -1 - s_0243: 1 @@ -60732,17 +61254,17 @@ - s_1206: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2271 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxobutanoyl-CoA) + - id: "r_2271" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxobutanoyl-CoA)" - metabolites: !!omap - s_0801: 1 - s_1202: -1 @@ -60751,17 +61273,17 @@ - s_2914: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2272 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxohexanoyl-CoA) + - id: "r_2272" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexanoyl-CoA)" - metabolites: !!omap - s_0801: 1 - s_1202: -1 @@ -60770,17 +61292,17 @@ - s_2915: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2273 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxooctanoyl-CoA) + - id: "r_2273" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxooctanoyl-CoA)" - metabolites: !!omap - s_0801: 1 - s_1202: -1 @@ -60789,17 +61311,17 @@ - s_2916: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2274 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxoicosanoyl-CoA) + - id: "r_2274" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxoicosanoyl-CoA)" - metabolites: !!omap - s_0801: 1 - s_1202: -1 @@ -60808,17 +61330,17 @@ - s_2917: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2275 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxodocosanoyl-CoA) + - id: "r_2275" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxodocosanoyl-CoA)" - metabolites: !!omap - s_0801: 1 - s_1202: -1 @@ -60827,17 +61349,17 @@ - s_2918: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2276 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxotetracosanoyl-CoA) + - id: "r_2276" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxotetracosanoyl-CoA)" - metabolites: !!omap - s_0801: 1 - s_1202: -1 @@ -60846,17 +61368,17 @@ - s_2919: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2277 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-hexadec-9-enoyl-CoA) + - id: "r_2277" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-hexadec-9-enoyl-CoA)" - metabolites: !!omap - s_0801: 1 - s_1202: -1 @@ -60865,17 +61387,17 @@ - s_2920: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2278 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-tetradec-7-enoyl-CoA) + - id: "r_2278" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-tetradec-7-enoyl-CoA)" - metabolites: !!omap - s_0801: 1 - s_1202: -1 @@ -60884,17 +61406,17 @@ - s_2921: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2279 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-dodec-5-enoyl-CoA) + - id: "r_2279" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-dodec-5-enoyl-CoA)" - metabolites: !!omap - s_0801: 1 - s_1202: -1 @@ -60903,17 +61425,17 @@ - s_2922: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2280 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-octadec-9-enoyl-CoA) + - id: "r_2280" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-octadec-9-enoyl-CoA)" - metabolites: !!omap - s_0801: 1 - s_1202: -1 @@ -60922,17 +61444,17 @@ - s_2923: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2281 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-hexadec-7-enoyl-CoA) + - id: "r_2281" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-hexadec-7-enoyl-CoA)" - metabolites: !!omap - s_0801: 1 - s_1202: -1 @@ -60941,17 +61463,17 @@ - s_2924: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2282 - - name: 3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-tetradec-5-enoyl-CoA) + - id: "r_2282" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-tetradec-5-enoyl-CoA)" - metabolites: !!omap - s_0801: 1 - s_1202: -1 @@ -60960,43 +61482,43 @@ - s_2925: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR009C + - gene_reaction_rule: "YKR009C" - annotation: !!omap - ec-code: - - 1.1.1.n12 - - 4.2.1.119 - - pmid: 12697341 - - sbo: SBO:0000176 + - "1.1.1.n12" + - "4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2283 - - name: acetyl-CoA C-acyltransferase (acetyl-CoA) + - id: "r_2283" + - name: "acetyl-CoA C-acyltransferase (acetyl-CoA)" - metabolites: !!omap - s_0378: 2 - s_0534: -1 - s_2914: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - bigg.reaction: ACACT1x - - kegg.reaction: R00238 - - metanetx.reaction: MNXR95194 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT1x" + - kegg.reaction: "R00238" + - metanetx.reaction: "MNXR95194" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2284 - - name: acetyl-CoA C-acyltransferase (butanoyl-CoA) + - id: "r_2284" + - name: "acetyl-CoA C-acyltransferase (butanoyl-CoA)" - metabolites: !!omap - s_0378: 1 - s_0534: -1 @@ -61004,24 +61526,24 @@ - s_2915: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - bigg.reaction: ACACT2 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT2" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2285 - - name: acetyl-CoA C-acyltransferase (hexanoyl-CoA) + - id: "r_2285" + - name: "acetyl-CoA C-acyltransferase (hexanoyl-CoA)" - metabolites: !!omap - s_0378: 1 - s_0534: -1 @@ -61029,24 +61551,24 @@ - s_2916: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - bigg.reaction: ACACT3 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT3" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2286 - - name: acetyl-CoA C-acyltransferase (stearoyl-CoA) + - id: "r_2286" + - name: "acetyl-CoA C-acyltransferase (stearoyl-CoA)" - metabolites: !!omap - s_0378: 1 - s_0534: -1 @@ -61054,24 +61576,24 @@ - s_2917: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - bigg.reaction: HMR_3073 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - bigg.reaction: "HMR_3073" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2287 - - name: acetyl-CoA C-acyltransferase (icosanoyl-CoA) + - id: "r_2287" + - name: "acetyl-CoA C-acyltransferase (icosanoyl-CoA)" - metabolites: !!omap - s_0378: 1 - s_0534: -1 @@ -61079,24 +61601,24 @@ - s_2918: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - bigg.reaction: HMR_3069 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - bigg.reaction: "HMR_3069" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2288 - - name: acetyl-CoA C-acyltransferase (docosanoyl-CoA) + - id: "r_2288" + - name: "acetyl-CoA C-acyltransferase (docosanoyl-CoA)" - metabolites: !!omap - s_0378: 1 - s_0534: -1 @@ -61104,24 +61626,24 @@ - s_2919: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - bigg.reaction: HMR_3065 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - bigg.reaction: "HMR_3065" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2289 - - name: acetyl-CoA C-acyltransferase (cis-tetradec-7-enoyl-CoA) + - id: "r_2289" + - name: "acetyl-CoA C-acyltransferase (cis-tetradec-7-enoyl-CoA)" - metabolites: !!omap - s_0378: 1 - s_0534: -1 @@ -61129,23 +61651,23 @@ - s_2920: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2290 - - name: acetyl-CoA C-acyltransferase (cis-dodec-5-enoyl-CoA) + - id: "r_2290" + - name: "acetyl-CoA C-acyltransferase (cis-dodec-5-enoyl-CoA)" - metabolites: !!omap - s_0378: 1 - s_0534: -1 @@ -61153,23 +61675,23 @@ - s_2921: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2291 - - name: acetyl-CoA C-acyltransferase (cis-dec-3-enoyl-CoA) + - id: "r_2291" + - name: "acetyl-CoA C-acyltransferase (cis-dec-3-enoyl-CoA)" - metabolites: !!omap - s_0378: 1 - s_0534: -1 @@ -61177,23 +61699,23 @@ - s_2926: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2292 - - name: acetyl-CoA C-acyltransferase (cis-hexadec-7-enoyl-CoA) + - id: "r_2292" + - name: "acetyl-CoA C-acyltransferase (cis-hexadec-7-enoyl-CoA)" - metabolites: !!omap - s_0378: 1 - s_0534: -1 @@ -61201,23 +61723,23 @@ - s_2923: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2293 - - name: acetyl-CoA C-acyltransferase (cis-tetradec-5-enoyl-CoA) + - id: "r_2293" + - name: "acetyl-CoA C-acyltransferase (cis-tetradec-5-enoyl-CoA)" - metabolites: !!omap - s_0378: 1 - s_0534: -1 @@ -61225,23 +61747,23 @@ - s_2924: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2294 - - name: acetyl-CoA C-acyltransferase (cis-dodec-3-enoyl-CoA) + - id: "r_2294" + - name: "acetyl-CoA C-acyltransferase (cis-dodec-3-enoyl-CoA)" - metabolites: !!omap - s_0378: 1 - s_0534: -1 @@ -61249,158 +61771,158 @@ - s_2927: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL160C + - gene_reaction_rule: "YIL160C" - subsystem: - - sce00071 Fatty acid degradation - - sce00280 Valine, leucine and isoleucine degradation - - sce01040 Biosynthesis of unsaturated fatty acids - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce00280 Valine, leucine and isoleucine degradation" + - "sce01040 Biosynthesis of unsaturated fatty acids" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 2.3.1.16 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "2.3.1.16" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2295 - - name: delta3,delta2-enoyl-CoA isomerase (cis-dec-3-enoyl-CoA) + - id: "r_2295" + - name: "delta3,delta2-enoyl-CoA isomerase (cis-dec-3-enoyl-CoA)" - metabolites: !!omap - s_0801: 4 - s_1507: 1 - s_2926: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR284C + - gene_reaction_rule: "YLR284C" - subsystem: - - sce00071 Fatty acid degradation - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 5.3.3.8 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "5.3.3.8" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2296 - - name: delta3,delta2-enoyl-CoA isomerase (trans-2,cis-5-dodecadienoyl-CoA) + - id: "r_2296" + - name: "delta3,delta2-enoyl-CoA isomerase (trans-2,cis-5-dodecadienoyl-CoA)" - metabolites: !!omap - s_2896: -1 - s_2928: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR284C + - gene_reaction_rule: "YLR284C" - subsystem: - - sce00071 Fatty acid degradation - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 5.3.3.8 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "5.3.3.8" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2297 - - name: delta3,delta2-enoyl-CoA isomerase (trans-dodec-3-enoyl-CoA) + - id: "r_2297" + - name: "delta3,delta2-enoyl-CoA isomerase (trans-dodec-3-enoyl-CoA)" - metabolites: !!omap - s_0801: 4 - s_1510: 1 - s_2929: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR284C + - gene_reaction_rule: "YLR284C" - subsystem: - - sce00071 Fatty acid degradation - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 5.3.3.8 - - bigg.reaction: FAOXC121x - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "5.3.3.8" + - bigg.reaction: "FAOXC121x" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2298 - - name: delta3,delta2-enoyl-CoA isomerase (cis-dodec-3-enoyl-CoA) + - id: "r_2298" + - name: "delta3,delta2-enoyl-CoA isomerase (cis-dodec-3-enoyl-CoA)" - metabolites: !!omap - s_0801: 4 - s_1510: 1 - s_2927: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR284C + - gene_reaction_rule: "YLR284C" - subsystem: - - sce00071 Fatty acid degradation - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 5.3.3.8 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "5.3.3.8" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2299 - - name: delta3,delta2-enoyl-CoA isomerase (trans-2,cis-5-tetradecadienoyl-CoA) + - id: "r_2299" + - name: "delta3,delta2-enoyl-CoA isomerase (trans-2,cis-5-tetradecadienoyl-CoA)" - metabolites: !!omap - s_2901: -1 - s_2930: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR284C + - gene_reaction_rule: "YLR284C" - subsystem: - - sce00071 Fatty acid degradation - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 5.3.3.8 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "5.3.3.8" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2300 - - name: delta3,delta2-enoyl-CoA isomerase (trans-tetradec-3-enoyl-CoA) + - id: "r_2300" + - name: "delta3,delta2-enoyl-CoA isomerase (trans-tetradec-3-enoyl-CoA)" - metabolites: !!omap - s_0801: 4 - s_1519: 1 - s_2931: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR284C + - gene_reaction_rule: "YLR284C" - subsystem: - - sce00071 Fatty acid degradation - - sce04146 Peroxisome + - "sce00071 Fatty acid degradation" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 5.3.3.8 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "5.3.3.8" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2301 - - name: delta(3,5)-delta(2,4)-dienoyl-CoA isomerase (trans-3,cis-5-dodecadienoyl-CoA) + - id: "r_2301" + - name: "delta(3,5)-delta(2,4)-dienoyl-CoA isomerase (trans-3,cis-5-dodecadienoyl-CoA)" - metabolites: !!omap - s_2928: -1 - s_2932: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR180C + - gene_reaction_rule: "YOR180C" - annotation: !!omap - - ec-code: 5.3.3.- - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "5.3.3.-" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2302 - - name: delta(3,5)-delta(2,4)-dienoyl-CoA isomerase (trans-3,cis-5-tetradecadienoyl-CoA) + - id: "r_2302" + - name: "delta(3,5)-delta(2,4)-dienoyl-CoA isomerase (trans-3,cis-5-tetradecadienoyl-CoA)" - metabolites: !!omap - s_2930: -1 - s_2933: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR180C + - gene_reaction_rule: "YOR180C" - annotation: !!omap - - ec-code: 5.3.3.- - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "5.3.3.-" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2303 - - name: 2,4-dienoyl-CoA reductase (trans-2,trans-4-dodecadienoyl-CoA) + - id: "r_2303" + - name: "2,4-dienoyl-CoA reductase (trans-2,trans-4-dodecadienoyl-CoA)" - metabolites: !!omap - s_0801: -1 - s_1211: 1 @@ -61409,16 +61931,16 @@ - s_2932: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL202W - - subsystem: sce04146 Peroxisome + - gene_reaction_rule: "YNL202W" + - subsystem: "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.1.34 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.1.34" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2304 - - name: 2,4-dienoyl-CoA reductase (trans-2,trans-4-tetradecadienoyl-CoA) + - id: "r_2304" + - name: "2,4-dienoyl-CoA reductase (trans-2,trans-4-tetradecadienoyl-CoA)" - metabolites: !!omap - s_0801: -1 - s_1211: 1 @@ -61427,42 +61949,42 @@ - s_2933: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL202W - - subsystem: sce04146 Peroxisome + - gene_reaction_rule: "YNL202W" + - subsystem: "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 1.3.1.34 - - pmid: 12697341 - - sbo: SBO:0000176 + - ec-code: "1.3.1.34" + - pmid: "12697341" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2305 - - name: cis-aconitate(3-) to isocitrate + - id: "r_2305" + - name: "cis-aconitate(3-) to isocitrate" - metabolites: !!omap - s_0516: -1 - s_0803: -1 - s_0940: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR304C + - gene_reaction_rule: "YLR304C" - subsystem: - - sce00020 Citrate cycle (TCA cycle) - - sce00630 Glyoxylate and dicarboxylate metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics - - sce01200 Carbon metabolism - - sce01210 2-Oxocarboxylic acid metabolism - - sce01230 Biosynthesis of amino acids + - "sce00020 Citrate cycle (TCA cycle)" + - "sce00630 Glyoxylate and dicarboxylate metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" + - "sce01200 Carbon metabolism" + - "sce01210 2-Oxocarboxylic acid metabolism" + - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - - ec-code: 4.2.1.3 - - bigg.reaction: ACONTb - - kegg.reaction: R01900 - - metanetx.reaction: MNXR95387 - - pmid: 15975908 - - sbo: SBO:0000176 + - ec-code: "4.2.1.3" + - bigg.reaction: "ACONTb" + - kegg.reaction: "R01900" + - metanetx.reaction: "MNXR95387" + - pmid: "15975908" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2308 - - name: glycerol-3-phosphate acyltransferase (16:0), ER membrane + - id: "r_2308" + - name: "glycerol-3-phosphate acyltransferase (16:0), ER membrane" - metabolites: !!omap - s_2783: -2 - s_2785: 1 @@ -61471,21 +61993,21 @@ - s_2935: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL011W or YKR067W + - gene_reaction_rule: "YBL011W or YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2309 - - name: glycerol-3-phosphate acyltransferase (16:1), ER membrane + - id: "r_2309" + - name: "glycerol-3-phosphate acyltransferase (16:1), ER membrane" - metabolites: !!omap - s_2783: -2 - s_2785: 1 @@ -61494,21 +62016,21 @@ - s_2936: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL011W or YKR067W + - gene_reaction_rule: "YBL011W or YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2310 - - name: glycerol-3-phosphate acyltransferase (18:0), ER membrane + - id: "r_2310" + - name: "glycerol-3-phosphate acyltransferase (18:0), ER membrane" - metabolites: !!omap - s_2783: -2 - s_2785: 1 @@ -61517,21 +62039,21 @@ - s_2937: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR067W + - gene_reaction_rule: "YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2311 - - name: glycerol-3-phosphate acyltransferase (18:1), ER membrane + - id: "r_2311" + - name: "glycerol-3-phosphate acyltransferase (18:1), ER membrane" - metabolites: !!omap - s_2783: -2 - s_2785: 1 @@ -61540,21 +62062,21 @@ - s_2938: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR067W + - gene_reaction_rule: "YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2312 - - name: dihydroxyacetone phosphate acyltransferase (16:0), ER membrane + - id: "r_2312" + - name: "dihydroxyacetone phosphate acyltransferase (16:0), ER membrane" - metabolites: !!omap - s_2783: -2 - s_2785: 1 @@ -61563,21 +62085,21 @@ - s_2940: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL011W or YKR067W + - gene_reaction_rule: "YBL011W or YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2313 - - name: dihydroxyacetone phosphate acyltransferase (16:1), ER membrane + - id: "r_2313" + - name: "dihydroxyacetone phosphate acyltransferase (16:1), ER membrane" - metabolites: !!omap - s_2783: -2 - s_2785: 1 @@ -61586,21 +62108,21 @@ - s_2941: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL011W or YKR067W + - gene_reaction_rule: "YBL011W or YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2314 - - name: dihydroxyacetone phosphate acyltransferase (18:0), ER membrane + - id: "r_2314" + - name: "dihydroxyacetone phosphate acyltransferase (18:0), ER membrane" - metabolites: !!omap - s_2783: -2 - s_2785: 1 @@ -61609,21 +62131,21 @@ - s_2942: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR067W + - gene_reaction_rule: "YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2315 - - name: dihydroxyacetone phosphate acyltransferase (18:1), ER membrane + - id: "r_2315" + - name: "dihydroxyacetone phosphate acyltransferase (18:1), ER membrane" - metabolites: !!omap - s_2783: -2 - s_2785: 1 @@ -61632,21 +62154,21 @@ - s_2943: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR067W + - gene_reaction_rule: "YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2316 - - name: glycerol-3-phosphate acyltransferase (16:0), lipid particle + - id: "r_2316" + - name: "glycerol-3-phosphate acyltransferase (16:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_0769: -1 @@ -61655,21 +62177,21 @@ - s_2944: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR067W + - gene_reaction_rule: "YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2317 - - name: glycerol-3-phosphate acyltransferase (16:1), lipid particle + - id: "r_2317" + - name: "glycerol-3-phosphate acyltransferase (16:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_0769: -1 @@ -61678,21 +62200,21 @@ - s_2945: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR067W + - gene_reaction_rule: "YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2318 - - name: glycerol-3-phosphate acyltransferase (18:0), lipid particle + - id: "r_2318" + - name: "glycerol-3-phosphate acyltransferase (18:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_0769: -1 @@ -61701,21 +62223,21 @@ - s_2946: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR067W + - gene_reaction_rule: "YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2319 - - name: glycerol-3-phosphate acyltransferase (18:1), lipid particle + - id: "r_2319" + - name: "glycerol-3-phosphate acyltransferase (18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_0769: -1 @@ -61724,21 +62246,21 @@ - s_2947: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR067W + - gene_reaction_rule: "YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2320 - - name: dihydroxyacetone phosphate acyltransferase (16:0), lipid particle + - id: "r_2320" + - name: "dihydroxyacetone phosphate acyltransferase (16:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_0631: -1 @@ -61747,21 +62269,21 @@ - s_2948: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR067W + - gene_reaction_rule: "YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2321 - - name: dihydroxyacetone phosphate acyltransferase (16:1), lipid particle + - id: "r_2321" + - name: "dihydroxyacetone phosphate acyltransferase (16:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_0631: -1 @@ -61770,21 +62292,21 @@ - s_2949: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR067W + - gene_reaction_rule: "YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2322 - - name: dihydroxyacetone phosphate acyltransferase (18:0), lipid particle + - id: "r_2322" + - name: "dihydroxyacetone phosphate acyltransferase (18:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_0631: -1 @@ -61793,21 +62315,21 @@ - s_2950: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR067W + - gene_reaction_rule: "YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2323 - - name: dihydroxyacetone phosphate acyltransferase (18:1), lipid particle + - id: "r_2323" + - name: "dihydroxyacetone phosphate acyltransferase (18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_0631: -1 @@ -61816,21 +62338,21 @@ - s_2951: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR067W + - gene_reaction_rule: "YKR067W" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.15 - - 2.3.1.42 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.15" + - "2.3.1.42" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2324 - - name: acyl dhap reductase (16:0), ER membrane + - id: "r_2324" + - name: "acyl dhap reductase (16:0), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2799: -1 @@ -61839,16 +62361,16 @@ - s_2940: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL124W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YIL124W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 1.1.1.101 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.101" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2325 - - name: acyl dhap reductase (16:1), ER membrane + - id: "r_2325" + - name: "acyl dhap reductase (16:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2799: -1 @@ -61857,16 +62379,16 @@ - s_2941: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL124W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YIL124W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 1.1.1.101 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.101" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2326 - - name: acyl dhap reductase (18:0), ER membrane + - id: "r_2326" + - name: "acyl dhap reductase (18:0), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2799: -1 @@ -61875,16 +62397,16 @@ - s_2942: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL124W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YIL124W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 1.1.1.101 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.101" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2327 - - name: acyl dhap reductase (18:1), ER membrane + - id: "r_2327" + - name: "acyl dhap reductase (18:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2799: -1 @@ -61893,16 +62415,16 @@ - s_2943: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL124W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YIL124W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 1.1.1.101 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.101" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2328 - - name: acyl dhap reductase (16:0), lipid particle + - id: "r_2328" + - name: "acyl dhap reductase (16:0), lipid particle" - metabolites: !!omap - s_0798: -1 - s_2944: 1 @@ -61911,16 +62433,16 @@ - s_2953: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL124W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YIL124W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 1.1.1.101 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.101" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2329 - - name: acyl dhap reductase (16:1), lipid particle + - id: "r_2329" + - name: "acyl dhap reductase (16:1), lipid particle" - metabolites: !!omap - s_0798: -1 - s_2945: 1 @@ -61929,16 +62451,16 @@ - s_2953: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL124W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YIL124W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 1.1.1.101 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.101" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2330 - - name: acyl dhap reductase (18:0), lipid particle + - id: "r_2330" + - name: "acyl dhap reductase (18:0), lipid particle" - metabolites: !!omap - s_0798: -1 - s_2946: 1 @@ -61947,16 +62469,16 @@ - s_2953: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL124W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YIL124W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 1.1.1.101 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.101" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2331 - - name: acyl dhap reductase (18:1), lipid particle + - id: "r_2331" + - name: "acyl dhap reductase (18:1), lipid particle" - metabolites: !!omap - s_0798: -1 - s_2947: 1 @@ -61965,16 +62487,16 @@ - s_2953: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL124W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YIL124W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 1.1.1.101 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "1.1.1.101" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2332 - - name: 1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-16:1), ER membrane + - id: "r_2332" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -61982,21 +62504,21 @@ - s_2954: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR175C + - gene_reaction_rule: "YOR175C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.23 - - 2.3.1.51 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.23" + - "2.3.1.51" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2333 - - name: 1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-18:1), ER membrane + - id: "r_2333" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -62004,21 +62526,21 @@ - s_2955: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL052C or YOR175C + - gene_reaction_rule: "YDL052C or YOR175C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.23 - - 2.3.1.51 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.23" + - "2.3.1.51" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2334 - - name: 1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-16:1), ER membrane + - id: "r_2334" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -62026,21 +62548,21 @@ - s_2956: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR175C + - gene_reaction_rule: "YOR175C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.23 - - 2.3.1.51 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.23" + - "2.3.1.51" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2335 - - name: 1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-18:1), ER membrane + - id: "r_2335" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -62048,21 +62570,21 @@ - s_2957: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL052C or YOR175C + - gene_reaction_rule: "YDL052C or YOR175C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.23 - - 2.3.1.51 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.23" + - "2.3.1.51" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2336 - - name: 1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-16:1), ER membrane + - id: "r_2336" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -62070,21 +62592,21 @@ - s_2958: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR175C + - gene_reaction_rule: "YOR175C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.23 - - 2.3.1.51 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.23" + - "2.3.1.51" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2337 - - name: 1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-18:1), ER membrane + - id: "r_2337" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -62092,21 +62614,21 @@ - s_2959: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL052C or YOR175C + - gene_reaction_rule: "YDL052C or YOR175C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.23 - - 2.3.1.51 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.23" + - "2.3.1.51" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2338 - - name: 1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-16:1), ER membrane + - id: "r_2338" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -62114,21 +62636,21 @@ - s_2960: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR175C + - gene_reaction_rule: "YOR175C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.23 - - 2.3.1.51 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.23" + - "2.3.1.51" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2339 - - name: 1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-18:1), ER membrane + - id: "r_2339" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -62136,21 +62658,21 @@ - s_2961: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL052C or YOR175C + - gene_reaction_rule: "YDL052C or YOR175C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.23 - - 2.3.1.51 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.23" + - "2.3.1.51" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2340 - - name: 1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-18:1), lipid particle + - id: "r_2340" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -62158,22 +62680,22 @@ - s_2962: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL052C or YKR089C or YOR081C + - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.51 - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.51" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2341 - - name: 1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-18:1), lipid particle + - id: "r_2341" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -62181,22 +62703,22 @@ - s_2963: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL052C or YKR089C or YOR081C + - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.51 - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.51" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2342 - - name: 1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-18:1), lipid particle + - id: "r_2342" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -62204,22 +62726,22 @@ - s_2964: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL052C or YKR089C or YOR081C + - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.51 - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.51" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2343 - - name: 1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-18:1), lipid particle + - id: "r_2343" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -62227,22 +62749,22 @@ - s_2965: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL052C or YKR089C or YOR081C + - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.3.1.51 - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.51" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2344 - - name: PA phosphatase (1-16:0, 2-16:1), ER membrane + - id: "r_2344" + - name: "PA phosphatase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -62251,19 +62773,19 @@ - s_2967: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR165C + - gene_reaction_rule: "YMR165C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2345 - - name: PA phosphatase (1-16:0, 2-18:1), ER membrane + - id: "r_2345" + - name: "PA phosphatase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -62272,19 +62794,19 @@ - s_2968: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR165C + - gene_reaction_rule: "YMR165C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2346 - - name: PA phosphatase (1-16:1, 2-16:1), ER membrane + - id: "r_2346" + - name: "PA phosphatase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -62293,19 +62815,19 @@ - s_2969: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR165C + - gene_reaction_rule: "YMR165C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2347 - - name: PA phosphatase (1-16:1, 2-18:1), ER membrane + - id: "r_2347" + - name: "PA phosphatase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -62314,19 +62836,19 @@ - s_2970: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR165C + - gene_reaction_rule: "YMR165C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2348 - - name: PA phosphatase (1-18:0, 2-16:1), ER membrane + - id: "r_2348" + - name: "PA phosphatase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -62335,19 +62857,19 @@ - s_2971: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR165C + - gene_reaction_rule: "YMR165C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2349 - - name: PA phosphatase (1-18:0, 2-18:1), ER membrane + - id: "r_2349" + - name: "PA phosphatase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -62356,19 +62878,19 @@ - s_2972: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR165C + - gene_reaction_rule: "YMR165C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2350 - - name: PA phosphatase (1-18:1, 2-16:1), ER membrane + - id: "r_2350" + - name: "PA phosphatase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -62377,19 +62899,19 @@ - s_2973: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR165C + - gene_reaction_rule: "YMR165C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2351 - - name: PA phosphatase (1-18:1, 2-18:1), ER membrane + - id: "r_2351" + - name: "PA phosphatase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -62398,19 +62920,19 @@ - s_2974: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR165C + - gene_reaction_rule: "YMR165C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2352 - - name: PA phosphatase (1-16:0, 2-16:1), vacuolar membrane + - id: "r_2352" + - name: "PA phosphatase (1-16:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2975: -1 - s_2976: -1 @@ -62419,21 +62941,21 @@ - s_3164: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2353 - - name: PA phosphatase (1-16:0, 2-18:1), vacuolar membrane + - id: "r_2353" + - name: "PA phosphatase (1-16:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -62442,21 +62964,21 @@ - s_3164: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2354 - - name: PA phosphatase (1-16:1, 2-16:1), vacuolar membrane + - id: "r_2354" + - name: "PA phosphatase (1-16:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -62465,21 +62987,21 @@ - s_3164: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2355 - - name: PA phosphatase (1-16:1, 2-18:1), vacuolar membrane + - id: "r_2355" + - name: "PA phosphatase (1-16:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -62488,21 +63010,21 @@ - s_3164: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2356 - - name: PA phosphatase (1-18:0, 2-16:1), vacuolar membrane + - id: "r_2356" + - name: "PA phosphatase (1-18:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -62511,21 +63033,21 @@ - s_3164: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2357 - - name: PA phosphatase (1-18:0, 2-18:1), vacuolar membrane + - id: "r_2357" + - name: "PA phosphatase (1-18:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -62534,21 +63056,21 @@ - s_3164: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2358 - - name: PA phosphatase (1-18:1, 2-16:1), vacuolar membrane + - id: "r_2358" + - name: "PA phosphatase (1-18:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -62557,21 +63079,21 @@ - s_3164: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2359 - - name: PA phosphatase (1-18:1, 2-18:1), vacuolar membrane + - id: "r_2359" + - name: "PA phosphatase (1-18:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -62580,21 +63102,21 @@ - s_3164: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2360 - - name: PA phosphatase (1-16:0, 2-16:1), Golgi membrane + - id: "r_2360" + - name: "PA phosphatase (1-16:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2993: -1 - s_2994: -1 @@ -62603,17 +63125,17 @@ - s_3146: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2361 - - name: PA phosphatase (1-16:0, 2-18:1), Golgi membrane + - id: "r_2361" + - name: "PA phosphatase (1-16:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -62622,17 +63144,17 @@ - s_3146: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2362 - - name: PA phosphatase (1-16:1, 2-16:1), Golgi membrane + - id: "r_2362" + - name: "PA phosphatase (1-16:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -62641,17 +63163,17 @@ - s_3146: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2363 - - name: PA phosphatase (1-16:1, 2-18:1), Golgi membrane + - id: "r_2363" + - name: "PA phosphatase (1-16:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -62660,17 +63182,17 @@ - s_3146: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2364 - - name: PA phosphatase (1-18:0, 2-16:1), Golgi membrane + - id: "r_2364" + - name: "PA phosphatase (1-18:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -62679,17 +63201,17 @@ - s_3146: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2365 - - name: PA phosphatase (1-18:0, 2-18:1), Golgi membrane + - id: "r_2365" + - name: "PA phosphatase (1-18:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -62698,17 +63220,17 @@ - s_3146: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2366 - - name: PA phosphatase (1-18:1, 2-16:1), Golgi membrane + - id: "r_2366" + - name: "PA phosphatase (1-18:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -62717,17 +63239,17 @@ - s_3146: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2367 - - name: PA phosphatase (1-18:1, 2-18:1), Golgi membrane + - id: "r_2367" + - name: "PA phosphatase (1-18:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -62736,17 +63258,17 @@ - s_3146: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2368 - - name: diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:0), ER membrane + - id: "r_2368" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2789: -1 @@ -62754,21 +63276,21 @@ - s_3011: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2369 - - name: diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:0), ER membrane + - id: "r_2369" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2789: -1 @@ -62776,21 +63298,21 @@ - s_3012: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2370 - - name: diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:0), ER membrane + - id: "r_2370" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2789: -1 @@ -62798,21 +63320,21 @@ - s_3013: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2371 - - name: diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:0), ER membrane + - id: "r_2371" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2789: -1 @@ -62820,21 +63342,21 @@ - s_3014: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2372 - - name: diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:0), ER membrane + - id: "r_2372" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2789: -1 @@ -62842,21 +63364,21 @@ - s_3015: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2373 - - name: diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:0), ER membrane + - id: "r_2373" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2789: -1 @@ -62864,21 +63386,21 @@ - s_3016: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2374 - - name: diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:0), ER membrane + - id: "r_2374" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2789: -1 @@ -62886,21 +63408,21 @@ - s_3017: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2375 - - name: diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:0), ER membrane + - id: "r_2375" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2789: -1 @@ -62908,21 +63430,21 @@ - s_3018: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2376 - - name: diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:1), ER membrane + - id: "r_2376" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -62930,21 +63452,21 @@ - s_3019: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2377 - - name: diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:1), ER membrane + - id: "r_2377" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -62952,21 +63474,21 @@ - s_3020: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2378 - - name: diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:1), ER membrane + - id: "r_2378" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -62974,21 +63496,21 @@ - s_3021: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2379 - - name: diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:1), ER membrane + - id: "r_2379" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -62996,21 +63518,21 @@ - s_3022: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2380 - - name: diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:1), ER membrane + - id: "r_2380" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -63018,21 +63540,21 @@ - s_3023: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2381 - - name: diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:1), ER membrane + - id: "r_2381" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -63040,21 +63562,21 @@ - s_3024: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2382 - - name: diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:1), ER membrane + - id: "r_2382" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -63062,21 +63584,21 @@ - s_3025: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2383 - - name: diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:1), ER membrane + - id: "r_2383" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2819: -1 @@ -63084,21 +63606,21 @@ - s_3026: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2384 - - name: diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:0), ER membrane + - id: "r_2384" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2791: -1 @@ -63106,21 +63628,21 @@ - s_3027: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2385 - - name: diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:0), ER membrane + - id: "r_2385" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2791: -1 @@ -63128,21 +63650,21 @@ - s_3028: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2386 - - name: diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:0), ER membrane + - id: "r_2386" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2791: -1 @@ -63150,21 +63672,21 @@ - s_3029: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2387 - - name: diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:0), ER membrane + - id: "r_2387" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2791: -1 @@ -63172,21 +63694,21 @@ - s_3030: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2388 - - name: diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:0), ER membrane + - id: "r_2388" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2791: -1 @@ -63194,21 +63716,21 @@ - s_3031: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2389 - - name: diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:0), ER membrane + - id: "r_2389" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2791: -1 @@ -63216,21 +63738,21 @@ - s_3032: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2390 - - name: diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:0), ER membrane + - id: "r_2390" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2791: -1 @@ -63238,21 +63760,21 @@ - s_3033: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2391 - - name: diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:0), ER membrane + - id: "r_2391" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:0), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2791: -1 @@ -63260,21 +63782,21 @@ - s_3034: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2392 - - name: diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:1), ER membrane + - id: "r_2392" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -63282,21 +63804,21 @@ - s_3035: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2393 - - name: diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:1), ER membrane + - id: "r_2393" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -63304,21 +63826,21 @@ - s_3036: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2394 - - name: diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:1), ER membrane + - id: "r_2394" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -63326,21 +63848,21 @@ - s_3037: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2395 - - name: diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:1), ER membrane + - id: "r_2395" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -63348,21 +63870,21 @@ - s_3038: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2396 - - name: diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:1), ER membrane + - id: "r_2396" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -63370,21 +63892,21 @@ - s_3039: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2397 - - name: diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:1), ER membrane + - id: "r_2397" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -63392,21 +63914,21 @@ - s_3040: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2398 - - name: diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:1), ER membrane + - id: "r_2398" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -63414,21 +63936,21 @@ - s_3041: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2399 - - name: diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:1), ER membrane + - id: "r_2399" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2821: -1 @@ -63436,21 +63958,21 @@ - s_3042: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR048W or YNR019W or YOR245C + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - 2.3.1.26 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2400 - - name: diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:0), lipid particle + - id: "r_2400" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2847: -1 @@ -63458,18 +63980,18 @@ - s_3044: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2401 - - name: diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:0), lipid particle + - id: "r_2401" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2847: -1 @@ -63477,18 +63999,18 @@ - s_3046: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2402 - - name: diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:0), lipid particle + - id: "r_2402" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2847: -1 @@ -63496,18 +64018,18 @@ - s_3048: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2403 - - name: diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:0), lipid particle + - id: "r_2403" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2847: -1 @@ -63515,18 +64037,18 @@ - s_3050: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2404 - - name: diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:0), lipid particle + - id: "r_2404" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2847: -1 @@ -63534,18 +64056,18 @@ - s_3052: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2405 - - name: diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:0), lipid particle + - id: "r_2405" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2847: -1 @@ -63553,18 +64075,18 @@ - s_3054: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2406 - - name: diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:0), lipid particle + - id: "r_2406" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2847: -1 @@ -63572,18 +64094,18 @@ - s_3056: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2407 - - name: diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:0), lipid particle + - id: "r_2407" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2847: -1 @@ -63591,18 +64113,18 @@ - s_3058: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2408 - - name: diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:1), lipid particle + - id: "r_2408" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2849: -1 @@ -63610,18 +64132,18 @@ - s_3059: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2409 - - name: diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:1), lipid particle + - id: "r_2409" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2849: -1 @@ -63629,18 +64151,18 @@ - s_3060: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2410 - - name: diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:1), lipid particle + - id: "r_2410" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2849: -1 @@ -63648,18 +64170,18 @@ - s_3061: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2411 - - name: diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:1), lipid particle + - id: "r_2411" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2849: -1 @@ -63667,18 +64189,18 @@ - s_3062: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2412 - - name: diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:1), lipid particle + - id: "r_2412" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2849: -1 @@ -63686,18 +64208,18 @@ - s_3063: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2413 - - name: diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:1), lipid particle + - id: "r_2413" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2849: -1 @@ -63705,18 +64227,18 @@ - s_3064: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2414 - - name: diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:1), lipid particle + - id: "r_2414" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2849: -1 @@ -63724,18 +64246,18 @@ - s_3065: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2415 - - name: diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:1), lipid particle + - id: "r_2415" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2849: -1 @@ -63743,18 +64265,18 @@ - s_3066: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2416 - - name: diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:0), lipid particle + - id: "r_2416" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2851: -1 @@ -63762,18 +64284,18 @@ - s_3067: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2417 - - name: diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:0), lipid particle + - id: "r_2417" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2851: -1 @@ -63781,18 +64303,18 @@ - s_3068: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2418 - - name: diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:0), lipid particle + - id: "r_2418" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2851: -1 @@ -63800,18 +64322,18 @@ - s_3069: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2419 - - name: diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:0), lipid particle + - id: "r_2419" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2851: -1 @@ -63819,18 +64341,18 @@ - s_3070: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2420 - - name: diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:0), lipid particle + - id: "r_2420" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2851: -1 @@ -63838,18 +64360,18 @@ - s_3071: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2421 - - name: diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:0), lipid particle + - id: "r_2421" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2851: -1 @@ -63857,18 +64379,18 @@ - s_3072: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2422 - - name: diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:0), lipid particle + - id: "r_2422" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2851: -1 @@ -63876,18 +64398,18 @@ - s_3073: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2423 - - name: diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:0), lipid particle + - id: "r_2423" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2851: -1 @@ -63895,18 +64417,18 @@ - s_3074: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2424 - - name: diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:1), lipid particle + - id: "r_2424" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -63914,18 +64436,18 @@ - s_3075: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2425 - - name: diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:1), lipid particle + - id: "r_2425" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -63933,18 +64455,18 @@ - s_3076: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2426 - - name: diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:1), lipid particle + - id: "r_2426" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -63952,18 +64474,18 @@ - s_3077: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2427 - - name: diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:1), lipid particle + - id: "r_2427" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -63971,18 +64493,18 @@ - s_3078: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2428 - - name: diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:1), lipid particle + - id: "r_2428" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -63990,18 +64512,18 @@ - s_3079: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2429 - - name: diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:1), lipid particle + - id: "r_2429" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -64009,18 +64531,18 @@ - s_3080: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2430 - - name: diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:1), lipid particle + - id: "r_2430" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -64028,18 +64550,18 @@ - s_3081: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2431 - - name: diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:1), lipid particle + - id: "r_2431" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -64047,18 +64569,18 @@ - s_3082: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR245C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YOR245C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - - 2.3.1.20 - - 2.3.1.22 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.3.1.20" + - "2.3.1.22" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2432 - - name: CDP-diacylglycerol synthase (1-16:0, 2-16:1), ER membrane + - id: "r_2432" + - name: "CDP-diacylglycerol synthase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2834: 1 @@ -64067,19 +64589,19 @@ - s_3084: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2433 - - name: CDP-diacylglycerol synthase (1-16:1, 2-16:1), ER membrane + - id: "r_2433" + - name: "CDP-diacylglycerol synthase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2834: 1 @@ -64088,19 +64610,19 @@ - s_3085: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2434 - - name: CDP-diacylglycerol synthase (1-18:0, 2-16:1), ER membrane + - id: "r_2434" + - name: "CDP-diacylglycerol synthase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2834: 1 @@ -64109,19 +64631,19 @@ - s_3086: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2435 - - name: CDP-diacylglycerol synthase (1-18:1, 2-16:1), ER membrane + - id: "r_2435" + - name: "CDP-diacylglycerol synthase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2834: 1 @@ -64130,19 +64652,19 @@ - s_3087: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2436 - - name: CDP-diacylglycerol synthase (1-16:0, 2-18:1), ER membrane + - id: "r_2436" + - name: "CDP-diacylglycerol synthase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2834: 1 @@ -64151,19 +64673,19 @@ - s_3088: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2437 - - name: CDP-diacylglycerol synthase (1-16:1, 2-18:1), ER membrane + - id: "r_2437" + - name: "CDP-diacylglycerol synthase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2834: 1 @@ -64172,19 +64694,19 @@ - s_3089: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2438 - - name: CDP-diacylglycerol synthase (1-18:0, 2-18:1), ER membrane + - id: "r_2438" + - name: "CDP-diacylglycerol synthase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2834: 1 @@ -64193,19 +64715,19 @@ - s_3090: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2439 - - name: CDP-diacylglycerol synthase (1-18:1, 2-18:1), ER membrane + - id: "r_2439" + - name: "CDP-diacylglycerol synthase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2834: 1 @@ -64214,19 +64736,19 @@ - s_3091: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2440 - - name: CDP-diacylglycerol synthase (1-16:0, 2-16:1), mitochondrial membrane + - id: "r_2440" + - name: "CDP-diacylglycerol synthase (1-16:0, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3092: -1 - s_3093: -1 @@ -64235,19 +64757,19 @@ - s_3096: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2441 - - name: CDP-diacylglycerol synthase (1-16:1, 2-16:1), mitochondrial membrane + - id: "r_2441" + - name: "CDP-diacylglycerol synthase (1-16:1, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3093: -1 - s_3094: -1 @@ -64256,19 +64778,19 @@ - s_3098: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2442 - - name: CDP-diacylglycerol synthase (1-18:0, 2-16:1), mitochondrial membrane + - id: "r_2442" + - name: "CDP-diacylglycerol synthase (1-18:0, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3093: -1 - s_3094: -1 @@ -64277,19 +64799,19 @@ - s_3100: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2443 - - name: CDP-diacylglycerol synthase (1-18:1, 2-16:1), mitochondrial membrane + - id: "r_2443" + - name: "CDP-diacylglycerol synthase (1-18:1, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3093: -1 - s_3094: -1 @@ -64298,19 +64820,19 @@ - s_3102: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2444 - - name: CDP-diacylglycerol synthase (1-16:0, 2-18:1), mitochondrial membrane + - id: "r_2444" + - name: "CDP-diacylglycerol synthase (1-16:0, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3093: -1 - s_3094: -1 @@ -64319,19 +64841,19 @@ - s_3104: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2445 - - name: CDP-diacylglycerol synthase (1-16:1, 2-18:1), mitochondrial membrane + - id: "r_2445" + - name: "CDP-diacylglycerol synthase (1-16:1, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3093: -1 - s_3094: -1 @@ -64340,19 +64862,19 @@ - s_3106: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR029C + - gene_reaction_rule: "YBR029C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04070 Phosphatidylinositol signaling system + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.7.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2446 - - name: PS synthase (1-16:0, 2-16:1), ER membrane + - id: "r_2446" + - name: "PS synthase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3084: -1 @@ -64361,19 +64883,19 @@ - s_3109: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER026C + - gene_reaction_rule: "YER026C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.8.8 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.8" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2447 - - name: PS synthase (1-16:1, 2-16:1), ER membrane + - id: "r_2447" + - name: "PS synthase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3085: -1 @@ -64382,19 +64904,19 @@ - s_3110: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER026C + - gene_reaction_rule: "YER026C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.8.8 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.8" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2448 - - name: PS synthase (1-18:0, 2-16:1), ER membrane + - id: "r_2448" + - name: "PS synthase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3086: -1 @@ -64403,19 +64925,19 @@ - s_3111: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER026C + - gene_reaction_rule: "YER026C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.8.8 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.8" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2449 - - name: PS synthase (1-18:1, 2-16:1), ER membrane + - id: "r_2449" + - name: "PS synthase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3087: -1 @@ -64424,19 +64946,19 @@ - s_3112: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER026C + - gene_reaction_rule: "YER026C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.8.8 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.8" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2450 - - name: PS synthase (1-16:0, 2-18:1), ER membrane + - id: "r_2450" + - name: "PS synthase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3088: -1 @@ -64445,19 +64967,19 @@ - s_3113: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER026C + - gene_reaction_rule: "YER026C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.8.8 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.8" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2451 - - name: PS synthase (1-16:1, 2-18:1), ER membrane + - id: "r_2451" + - name: "PS synthase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3089: -1 @@ -64466,19 +64988,19 @@ - s_3114: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER026C + - gene_reaction_rule: "YER026C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.8.8 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.8" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2452 - - name: PS synthase (1-18:0, 2-18:1), ER membrane + - id: "r_2452" + - name: "PS synthase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3090: -1 @@ -64487,19 +65009,19 @@ - s_3115: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER026C + - gene_reaction_rule: "YER026C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.8.8 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.8" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2453 - - name: PS synthase (1-18:1, 2-18:1), ER membrane + - id: "r_2453" + - name: "PS synthase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3091: -1 @@ -64508,19 +65030,19 @@ - s_3116: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER026C + - gene_reaction_rule: "YER026C" - subsystem: - - sce00260 Glycine, serine and threonine metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00260 Glycine, serine and threonine metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.8.8 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.8" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2454 - - name: PI synthase (1-16:0, 2-16:1), ER membrane + - id: "r_2454" + - name: "PI synthase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3084: -1 @@ -64529,19 +65051,19 @@ - s_3118: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR113W + - gene_reaction_rule: "YPR113W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce00564 Glycerophospholipid metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.8.11 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.11" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2455 - - name: PI synthase (1-16:1, 2-16:1), ER membrane + - id: "r_2455" + - name: "PI synthase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3085: -1 @@ -64550,19 +65072,19 @@ - s_3119: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR113W + - gene_reaction_rule: "YPR113W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce00564 Glycerophospholipid metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.8.11 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.11" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2456 - - name: PI synthase (1-18:0, 2-16:1), ER membrane + - id: "r_2456" + - name: "PI synthase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3086: -1 @@ -64571,19 +65093,19 @@ - s_3120: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR113W + - gene_reaction_rule: "YPR113W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce00564 Glycerophospholipid metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.8.11 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.11" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2457 - - name: PI synthase (1-18:1, 2-16:1), ER membrane + - id: "r_2457" + - name: "PI synthase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3087: -1 @@ -64592,19 +65114,19 @@ - s_3121: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR113W + - gene_reaction_rule: "YPR113W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce00564 Glycerophospholipid metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.8.11 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.11" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2458 - - name: PI synthase (1-16:0, 2-18:1), ER membrane + - id: "r_2458" + - name: "PI synthase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3088: -1 @@ -64613,19 +65135,19 @@ - s_3122: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR113W + - gene_reaction_rule: "YPR113W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce00564 Glycerophospholipid metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.8.11 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.11" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2459 - - name: PI synthase (1-16:1, 2-18:1), ER membrane + - id: "r_2459" + - name: "PI synthase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3089: -1 @@ -64634,19 +65156,19 @@ - s_3123: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR113W + - gene_reaction_rule: "YPR113W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce00564 Glycerophospholipid metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.8.11 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.11" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2460 - - name: PI synthase (1-18:0, 2-18:1), ER membrane + - id: "r_2460" + - name: "PI synthase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3090: -1 @@ -64655,19 +65177,19 @@ - s_3124: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR113W + - gene_reaction_rule: "YPR113W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce00564 Glycerophospholipid metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.8.11 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.11" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2461 - - name: PI synthase (1-18:1, 2-18:1), ER membrane + - id: "r_2461" + - name: "PI synthase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_3091: -1 @@ -64676,19 +65198,19 @@ - s_3125: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPR113W + - gene_reaction_rule: "YPR113W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce00564 Glycerophospholipid metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.8.11 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.11" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2462 - - name: lysoPI acyltransferase (1-18:0, 2-16:1), ER membrane + - id: "r_2462" + - name: "lysoPI acyltransferase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2791: -1 @@ -64696,15 +65218,15 @@ - s_3126: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR042C + - gene_reaction_rule: "YBR042C" - annotation: !!omap - - ec-code: 2.3.-.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.-.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2463 - - name: lysoPI acyltransferase (1-18:0, 2-18:1), ER membrane + - id: "r_2463" + - name: "lysoPI acyltransferase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2785: 1 - s_2791: -1 @@ -64712,447 +65234,447 @@ - s_3127: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR042C + - gene_reaction_rule: "YBR042C" - annotation: !!omap - - ec-code: 2.3.-.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.-.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2464 - - name: PS decarboxylase (1-16:0, 2-16:1), mitochondrial membrane + - id: "r_2464" + - name: "PS decarboxylase (1-16:0, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3128: -1 - s_3129: 1 - s_3130: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL169C + - gene_reaction_rule: "YNL169C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2465 - - name: PS decarboxylase (1-16:1, 2-16:1), mitochondrial membrane + - id: "r_2465" + - name: "PS decarboxylase (1-16:1, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3129: 1 - s_3131: -1 - s_3132: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL169C + - gene_reaction_rule: "YNL169C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2466 - - name: PS decarboxylase (1-18:0, 2-16:1), mitochondrial membrane + - id: "r_2466" + - name: "PS decarboxylase (1-18:0, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3129: 1 - s_3133: -1 - s_3134: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL169C + - gene_reaction_rule: "YNL169C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2467 - - name: PS decarboxylase (1-18:1, 2-16:1), mitochondrial membrane + - id: "r_2467" + - name: "PS decarboxylase (1-18:1, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3129: 1 - s_3135: -1 - s_3136: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL169C + - gene_reaction_rule: "YNL169C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2468 - - name: PS decarboxylase (1-16:0, 2-18:1), mitochondrial membrane + - id: "r_2468" + - name: "PS decarboxylase (1-16:0, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3129: 1 - s_3137: -1 - s_3138: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL169C + - gene_reaction_rule: "YNL169C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2469 - - name: PS decarboxylase (1-16:1, 2-18:1), mitochondrial membrane + - id: "r_2469" + - name: "PS decarboxylase (1-16:1, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3129: 1 - s_3139: -1 - s_3140: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL169C + - gene_reaction_rule: "YNL169C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2470 - - name: PS decarboxylase (1-18:0, 2-18:1), mitochondrial membrane + - id: "r_2470" + - name: "PS decarboxylase (1-18:0, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3129: 1 - s_3141: -1 - s_3142: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL169C + - gene_reaction_rule: "YNL169C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2471 - - name: PS decarboxylase (1-18:1, 2-18:1), mitochondrial membrane + - id: "r_2471" + - name: "PS decarboxylase (1-18:1, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3129: 1 - s_3143: -1 - s_3144: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL169C + - gene_reaction_rule: "YNL169C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2472 - - name: PS decarboxylase (1-16:0, 2-16:1), Golgi membrane + - id: "r_2472" + - name: "PS decarboxylase (1-16:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_3145: -1 - s_3147: 1 - s_3148: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2473 - - name: PS decarboxylase (1-16:1, 2-16:1), Golgi membrane + - id: "r_2473" + - name: "PS decarboxylase (1-16:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_3147: 1 - s_3149: -1 - s_3150: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2474 - - name: PS decarboxylase (1-18:0, 2-16:1), Golgi membrane + - id: "r_2474" + - name: "PS decarboxylase (1-18:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_3147: 1 - s_3151: -1 - s_3152: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2475 - - name: PS decarboxylase (1-18:1, 2-16:1), Golgi membrane + - id: "r_2475" + - name: "PS decarboxylase (1-18:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_3147: 1 - s_3153: -1 - s_3154: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2476 - - name: PS decarboxylase (1-16:0, 2-18:1), Golgi membrane + - id: "r_2476" + - name: "PS decarboxylase (1-16:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_3147: 1 - s_3155: -1 - s_3156: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2477 - - name: PS decarboxylase (1-16:1, 2-18:1), Golgi membrane + - id: "r_2477" + - name: "PS decarboxylase (1-16:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_3147: 1 - s_3157: -1 - s_3158: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2478 - - name: PS decarboxylase (1-18:0, 2-18:1), Golgi membrane + - id: "r_2478" + - name: "PS decarboxylase (1-18:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_3147: 1 - s_3159: -1 - s_3160: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2479 - - name: PS decarboxylase (1-18:1, 2-18:1), Golgi membrane + - id: "r_2479" + - name: "PS decarboxylase (1-18:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_3147: 1 - s_3161: -1 - s_3162: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2480 - - name: PS decarboxylase (1-16:0, 2-16:1), vacuolar membrane + - id: "r_2480" + - name: "PS decarboxylase (1-16:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3163: -1 - s_3165: 1 - s_3166: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2481 - - name: PS decarboxylase (1-16:1, 2-16:1), vacuolar membrane + - id: "r_2481" + - name: "PS decarboxylase (1-16:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3165: 1 - s_3167: -1 - s_3168: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2482 - - name: PS decarboxylase (1-18:0, 2-16:1), vacuolar membrane + - id: "r_2482" + - name: "PS decarboxylase (1-18:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3165: 1 - s_3169: -1 - s_3170: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2483 - - name: PS decarboxylase (1-18:1, 2-16:1), vacuolar membrane + - id: "r_2483" + - name: "PS decarboxylase (1-18:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3165: 1 - s_3171: -1 - s_3172: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2484 - - name: PS decarboxylase (1-16:0, 2-18:1), vacuolar membrane + - id: "r_2484" + - name: "PS decarboxylase (1-16:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3165: 1 - s_3173: -1 - s_3174: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2485 - - name: PS decarboxylase (1-16:1, 2-18:1), vacuolar membrane + - id: "r_2485" + - name: "PS decarboxylase (1-16:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3165: 1 - s_3175: -1 - s_3176: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2486 - - name: PS decarboxylase (1-18:0, 2-18:1), vacuolar membrane + - id: "r_2486" + - name: "PS decarboxylase (1-18:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3165: 1 - s_3177: -1 - s_3178: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2487 - - name: PS decarboxylase (1-18:1, 2-18:1), vacuolar membrane + - id: "r_2487" + - name: "PS decarboxylase (1-18:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3165: 1 - s_3179: -1 - s_3180: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR170W + - gene_reaction_rule: "YGR170W" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 4.1.1.65 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "4.1.1.65" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2488 - - name: PE methyltransferase (1-16:0, 2-16:1), ER membrane + - id: "r_2488" + - name: "PE methyltransferase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3181: -1 @@ -65161,20 +65683,20 @@ - s_3184: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR157W or YJR073C + - gene_reaction_rule: "YGR157W or YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2489 - - name: PE methyltransferase (1-16:1, 2-16:1), ER membrane + - id: "r_2489" + - name: "PE methyltransferase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65183,20 +65705,20 @@ - s_3186: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR157W or YJR073C + - gene_reaction_rule: "YGR157W or YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2490 - - name: PE methyltransferase (1-18:0, 2-16:1), ER membrane + - id: "r_2490" + - name: "PE methyltransferase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65205,20 +65727,20 @@ - s_3188: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR157W or YJR073C + - gene_reaction_rule: "YGR157W or YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2491 - - name: PE methyltransferase (1-18:1, 2-16:1), ER membrane + - id: "r_2491" + - name: "PE methyltransferase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65227,20 +65749,20 @@ - s_3190: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR157W or YJR073C + - gene_reaction_rule: "YGR157W or YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2492 - - name: PE methyltransferase (1-16:0, 2-18:1), ER membrane + - id: "r_2492" + - name: "PE methyltransferase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65249,20 +65771,20 @@ - s_3192: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR157W or YJR073C + - gene_reaction_rule: "YGR157W or YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2493 - - name: PE methyltransferase (1-16:1, 2-18:1), ER membrane + - id: "r_2493" + - name: "PE methyltransferase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65271,20 +65793,20 @@ - s_3194: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR157W or YJR073C + - gene_reaction_rule: "YGR157W or YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2494 - - name: PE methyltransferase (1-18:0, 2-18:1), ER membrane + - id: "r_2494" + - name: "PE methyltransferase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65293,20 +65815,20 @@ - s_3196: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR157W or YJR073C + - gene_reaction_rule: "YGR157W or YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2495 - - name: PE methyltransferase (1-18:1, 2-18:1), ER membrane + - id: "r_2495" + - name: "PE methyltransferase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65315,20 +65837,20 @@ - s_3198: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR157W or YJR073C + - gene_reaction_rule: "YGR157W or YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2496 - - name: phosphatidyl-N-methylethanolamine methyltransferase (1-16:0, 2-16:1), ER membrane + - id: "r_2496" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65337,20 +65859,20 @@ - s_3199: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2497 - - name: phosphatidyl-N-methylethanolamine methyltransferase (1-16:1, 2-16:1), ER membrane + - id: "r_2497" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65359,20 +65881,20 @@ - s_3200: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2498 - - name: phosphatidyl-N-methylethanolamine methyltransferase (1-18:0, 2-16:1), ER membrane + - id: "r_2498" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65381,20 +65903,20 @@ - s_3201: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2499 - - name: phosphatidyl-N-methylethanolamine methyltransferase (1-18:1, 2-16:1), ER membrane + - id: "r_2499" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65403,20 +65925,20 @@ - s_3202: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2500 - - name: phosphatidyl-N-methylethanolamine methyltransferase (1-16:0, 2-18:1), ER membrane + - id: "r_2500" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65425,20 +65947,20 @@ - s_3203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2501 - - name: phosphatidyl-N-methylethanolamine methyltransferase (1-16:1, 2-18:1), ER membrane + - id: "r_2501" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65447,20 +65969,20 @@ - s_3204: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2502 - - name: phosphatidyl-N-methylethanolamine methyltransferase (1-18:0, 2-18:1), ER membrane + - id: "r_2502" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65469,20 +65991,20 @@ - s_3205: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2503 - - name: phosphatidyl-N-methylethanolamine methyltransferase (1-18:1, 2-18:1), ER membrane + - id: "r_2503" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65491,20 +66013,20 @@ - s_3206: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2504 - - name: phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:0, 2-16:1), ER membrane + - id: "r_2504" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65513,20 +66035,20 @@ - s_3207: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2505 - - name: phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:1, 2-16:1), ER membrane + - id: "r_2505" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65535,20 +66057,20 @@ - s_3208: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2506 - - name: phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:0, 2-16:1), ER membrane + - id: "r_2506" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65557,20 +66079,20 @@ - s_3209: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2507 - - name: phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:1, 2-16:1), ER membrane + - id: "r_2507" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65579,20 +66101,20 @@ - s_3210: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2508 - - name: phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:0, 2-18:1), ER membrane + - id: "r_2508" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65601,20 +66123,20 @@ - s_3211: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2509 - - name: phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:1, 2-18:1), ER membrane + - id: "r_2509" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65623,20 +66145,20 @@ - s_3212: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2510 - - name: phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:0, 2-18:1), ER membrane + - id: "r_2510" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65645,20 +66167,20 @@ - s_3213: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2511 - - name: phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:1, 2-18:1), ER membrane + - id: "r_2511" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_3182: -1 @@ -65667,20 +66189,20 @@ - s_3214: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR073C + - gene_reaction_rule: "YJR073C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.1.1.17 - - 2.1.1.71 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.1.1.17" + - "2.1.1.71" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2512 - - name: DAG kinase (1-16:0, 2-16:1), ER membrane + - id: "r_2512" + - name: "DAG kinase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2954: 1 @@ -65689,18 +66211,18 @@ - s_3215: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR311C + - gene_reaction_rule: "YOR311C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.1.174 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.174" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2513 - - name: DAG kinase (1-16:1, 2-16:1), ER membrane + - id: "r_2513" + - name: "DAG kinase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2956: 1 @@ -65709,18 +66231,18 @@ - s_3215: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR311C + - gene_reaction_rule: "YOR311C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.1.174 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.174" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2514 - - name: DAG kinase (1-18:0, 2-16:1), ER membrane + - id: "r_2514" + - name: "DAG kinase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2958: 1 @@ -65729,18 +66251,18 @@ - s_3215: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR311C + - gene_reaction_rule: "YOR311C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.1.174 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.174" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2515 - - name: DAG kinase (1-18:1, 2-16:1), ER membrane + - id: "r_2515" + - name: "DAG kinase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2960: 1 @@ -65749,18 +66271,18 @@ - s_3215: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR311C + - gene_reaction_rule: "YOR311C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.1.174 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.174" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2516 - - name: DAG kinase (1-16:0, 2-18:1), ER membrane + - id: "r_2516" + - name: "DAG kinase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2955: 1 @@ -65769,18 +66291,18 @@ - s_3215: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR311C + - gene_reaction_rule: "YOR311C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.1.174 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.174" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2517 - - name: DAG kinase (1-16:1, 2-18:1), ER membrane + - id: "r_2517" + - name: "DAG kinase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2957: 1 @@ -65789,18 +66311,18 @@ - s_3215: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR311C + - gene_reaction_rule: "YOR311C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.1.174 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.174" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2518 - - name: DAG kinase (1-18:0, 2-18:1), ER membrane + - id: "r_2518" + - name: "DAG kinase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2959: 1 @@ -65809,18 +66331,18 @@ - s_3215: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR311C + - gene_reaction_rule: "YOR311C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.1.174 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.174" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2519 - - name: DAG kinase (1-18:1, 2-18:1), ER membrane + - id: "r_2519" + - name: "DAG kinase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: -1 - s_2961: 1 @@ -65829,18 +66351,18 @@ - s_3215: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR311C + - gene_reaction_rule: "YOR311C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 2.7.1.174 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.174" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2520 - - name: ethanolaminephosphotransferase (1-16:0, 2-16:1), ER membrane + - id: "r_2520" + - name: "ethanolaminephosphotransferase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2967: -1 @@ -65849,21 +66371,21 @@ - s_3216: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W + - gene_reaction_rule: "YHR123W" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2521 - - name: ethanolaminephosphotransferase (1-16:1, 2-16:1), ER membrane + - id: "r_2521" + - name: "ethanolaminephosphotransferase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2969: -1 @@ -65872,21 +66394,21 @@ - s_3216: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W + - gene_reaction_rule: "YHR123W" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2522 - - name: ethanolaminephosphotransferase (1-18:0, 2-16:1), ER membrane + - id: "r_2522" + - name: "ethanolaminephosphotransferase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2971: -1 @@ -65895,21 +66417,21 @@ - s_3216: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W + - gene_reaction_rule: "YHR123W" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2523 - - name: ethanolaminephosphotransferase (1-18:1, 2-16:1), ER membrane + - id: "r_2523" + - name: "ethanolaminephosphotransferase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2973: -1 @@ -65918,21 +66440,21 @@ - s_3216: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W + - gene_reaction_rule: "YHR123W" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2524 - - name: ethanolaminephosphotransferase (1-16:0, 2-18:1), ER membrane + - id: "r_2524" + - name: "ethanolaminephosphotransferase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2968: -1 @@ -65941,21 +66463,21 @@ - s_3216: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W + - gene_reaction_rule: "YHR123W" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2525 - - name: ethanolaminephosphotransferase (1-16:1, 2-18:1), ER membrane + - id: "r_2525" + - name: "ethanolaminephosphotransferase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2970: -1 @@ -65964,21 +66486,21 @@ - s_3216: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W + - gene_reaction_rule: "YHR123W" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2526 - - name: ethanolaminephosphotransferase (1-18:0, 2-18:1), ER membrane + - id: "r_2526" + - name: "ethanolaminephosphotransferase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2972: -1 @@ -65987,21 +66509,21 @@ - s_3216: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W + - gene_reaction_rule: "YHR123W" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2527 - - name: ethanolaminephosphotransferase (1-18:1, 2-18:1), ER membrane + - id: "r_2527" + - name: "ethanolaminephosphotransferase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2974: -1 @@ -66010,21 +66532,21 @@ - s_3216: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W + - gene_reaction_rule: "YHR123W" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2528 - - name: cholinephosphotransferase (1-16:0, 2-16:1), ER membrane + - id: "r_2528" + - name: "cholinephosphotransferase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2967: -1 @@ -66033,21 +66555,21 @@ - s_3217: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W or YNL130C + - gene_reaction_rule: "YHR123W or YNL130C" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2529 - - name: cholinephosphotransferase (1-16:1, 2-16:1), ER membrane + - id: "r_2529" + - name: "cholinephosphotransferase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2969: -1 @@ -66056,21 +66578,21 @@ - s_3217: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W or YNL130C + - gene_reaction_rule: "YHR123W or YNL130C" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2530 - - name: cholinephosphotransferase (1-18:0, 2-16:1), ER membrane + - id: "r_2530" + - name: "cholinephosphotransferase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2971: -1 @@ -66079,21 +66601,21 @@ - s_3217: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W or YNL130C + - gene_reaction_rule: "YHR123W or YNL130C" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2531 - - name: cholinephosphotransferase (1-18:1, 2-16:1), ER membrane + - id: "r_2531" + - name: "cholinephosphotransferase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2973: -1 @@ -66102,21 +66624,21 @@ - s_3217: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W or YNL130C + - gene_reaction_rule: "YHR123W or YNL130C" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2532 - - name: cholinephosphotransferase (1-16:0, 2-18:1), ER membrane + - id: "r_2532" + - name: "cholinephosphotransferase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2968: -1 @@ -66125,21 +66647,21 @@ - s_3217: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W or YNL130C + - gene_reaction_rule: "YHR123W or YNL130C" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2533 - - name: cholinephosphotransferase (1-16:1, 2-18:1), ER membrane + - id: "r_2533" + - name: "cholinephosphotransferase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2970: -1 @@ -66148,21 +66670,21 @@ - s_3217: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W or YNL130C + - gene_reaction_rule: "YHR123W or YNL130C" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2534 - - name: cholinephosphotransferase (1-18:0, 2-18:1), ER membrane + - id: "r_2534" + - name: "cholinephosphotransferase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2972: -1 @@ -66171,21 +66693,21 @@ - s_3217: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W or YNL130C + - gene_reaction_rule: "YHR123W or YNL130C" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2535 - - name: cholinephosphotransferase (1-18:1, 2-18:1), ER membrane + - id: "r_2535" + - name: "cholinephosphotransferase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2974: -1 @@ -66194,21 +66716,21 @@ - s_3217: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR123W or YNL130C + - gene_reaction_rule: "YHR123W or YNL130C" - subsystem: - - sce00440 Phosphonate and phosphinate metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00440 Phosphonate and phosphinate metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 2.7.8.1 - - 2.7.8.2 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.8.1" + - "2.7.8.2" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2536 - - name: phosphatidylglycerolphosphate synthase (1-16:0, 2-16:1), mitochondrial membrane + - id: "r_2536" + - name: "phosphatidylglycerolphosphate synthase (1-16:0, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3096: -1 - s_3218: -1 @@ -66216,16 +66738,16 @@ - s_3220: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL004W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YCL004W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2537 - - name: phosphatidylglycerolphosphate synthase (1-16:1, 2-16:1), mitochondrial membrane + - id: "r_2537" + - name: "phosphatidylglycerolphosphate synthase (1-16:1, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3098: -1 - s_3218: -1 @@ -66233,16 +66755,16 @@ - s_3221: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL004W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YCL004W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2538 - - name: phosphatidylglycerolphosphate synthase (1-18:0, 2-16:1), mitochondrial membrane + - id: "r_2538" + - name: "phosphatidylglycerolphosphate synthase (1-18:0, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3100: -1 - s_3218: -1 @@ -66250,16 +66772,16 @@ - s_3222: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL004W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YCL004W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2539 - - name: phosphatidylglycerolphosphate synthase (1-18:1, 2-16:1), mitochondrial membrane + - id: "r_2539" + - name: "phosphatidylglycerolphosphate synthase (1-18:1, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3102: -1 - s_3218: -1 @@ -66267,16 +66789,16 @@ - s_3223: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL004W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YCL004W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2540 - - name: phosphatidylglycerolphosphate synthase (1-16:0, 2-18:1), mitochondrial membrane + - id: "r_2540" + - name: "phosphatidylglycerolphosphate synthase (1-16:0, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3104: -1 - s_3218: -1 @@ -66284,16 +66806,16 @@ - s_3224: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL004W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YCL004W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2541 - - name: phosphatidylglycerolphosphate synthase (1-16:1, 2-18:1), mitochondrial membrane + - id: "r_2541" + - name: "phosphatidylglycerolphosphate synthase (1-16:1, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3106: -1 - s_3218: -1 @@ -66301,16 +66823,16 @@ - s_3225: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCL004W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YCL004W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2542 - - name: PGP phosphatase (1-16:0, 2-16:1), mitochondrial membrane + - id: "r_2542" + - name: "PGP phosphatase (1-16:0, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3220: -1 @@ -66319,16 +66841,16 @@ - s_3228: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR100C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YHR100C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.3.27 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.27" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2543 - - name: PGP phosphatase (1-16:1, 2-16:1), mitochondrial membrane + - id: "r_2543" + - name: "PGP phosphatase (1-16:1, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3221: -1 @@ -66337,16 +66859,16 @@ - s_3229: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR100C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YHR100C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.3.27 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.27" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2544 - - name: PGP phosphatase (1-18:0, 2-16:1), mitochondrial membrane + - id: "r_2544" + - name: "PGP phosphatase (1-18:0, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3222: -1 @@ -66355,16 +66877,16 @@ - s_3230: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR100C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YHR100C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.3.27 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.27" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2545 - - name: PGP phosphatase (1-18:1, 2-16:1), mitochondrial membrane + - id: "r_2545" + - name: "PGP phosphatase (1-18:1, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3223: -1 @@ -66373,16 +66895,16 @@ - s_3231: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR100C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YHR100C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.3.27 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.27" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2546 - - name: PGP phosphatase (1-16:0, 2-18:1), mitochondrial membrane + - id: "r_2546" + - name: "PGP phosphatase (1-16:0, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3224: -1 @@ -66391,16 +66913,16 @@ - s_3232: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR100C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YHR100C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.3.27 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.27" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2547 - - name: PGP phosphatase (1-16:1, 2-18:1), mitochondrial membrane + - id: "r_2547" + - name: "PGP phosphatase (1-16:1, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3225: -1 @@ -66409,16 +66931,16 @@ - s_3233: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR100C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YHR100C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.3.27 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.27" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2548 - - name: CL synthase (1-16:0, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane + - id: "r_2548" + - name: "CL synthase (1-16:0, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3096: -1 @@ -66427,16 +66949,16 @@ - s_3234: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2549 - - name: CL synthase (1-16:0, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane + - id: "r_2549" + - name: "CL synthase (1-16:0, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3096: -1 @@ -66445,16 +66967,16 @@ - s_3235: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2550 - - name: CL synthase (1-16:0, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane + - id: "r_2550" + - name: "CL synthase (1-16:0, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3096: -1 @@ -66463,16 +66985,16 @@ - s_3236: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2551 - - name: CL synthase (1-16:0, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane + - id: "r_2551" + - name: "CL synthase (1-16:0, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3096: -1 @@ -66481,16 +67003,16 @@ - s_3237: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2552 - - name: CL synthase (1-16:0, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane + - id: "r_2552" + - name: "CL synthase (1-16:0, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3096: -1 @@ -66499,16 +67021,16 @@ - s_3238: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2553 - - name: CL synthase (1-16:0, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane + - id: "r_2553" + - name: "CL synthase (1-16:0, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3096: -1 @@ -66517,16 +67039,16 @@ - s_3239: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2554 - - name: CL synthase (1-16:1, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane + - id: "r_2554" + - name: "CL synthase (1-16:1, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3098: -1 @@ -66535,16 +67057,16 @@ - s_3240: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2555 - - name: CL synthase (1-16:1, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane + - id: "r_2555" + - name: "CL synthase (1-16:1, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3098: -1 @@ -66553,16 +67075,16 @@ - s_3241: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2556 - - name: CL synthase (1-16:1, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane + - id: "r_2556" + - name: "CL synthase (1-16:1, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3098: -1 @@ -66571,16 +67093,16 @@ - s_3242: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2557 - - name: CL synthase (1-16:1, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane + - id: "r_2557" + - name: "CL synthase (1-16:1, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3098: -1 @@ -66589,16 +67111,16 @@ - s_3243: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2558 - - name: CL synthase (1-16:1, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane + - id: "r_2558" + - name: "CL synthase (1-16:1, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3098: -1 @@ -66607,16 +67129,16 @@ - s_3244: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2559 - - name: CL synthase (1-16:1, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane + - id: "r_2559" + - name: "CL synthase (1-16:1, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3098: -1 @@ -66625,16 +67147,16 @@ - s_3245: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2560 - - name: CL synthase (1-18:0, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane + - id: "r_2560" + - name: "CL synthase (1-18:0, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3100: -1 @@ -66643,16 +67165,16 @@ - s_3246: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2561 - - name: CL synthase (1-18:0, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane + - id: "r_2561" + - name: "CL synthase (1-18:0, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3100: -1 @@ -66661,16 +67183,16 @@ - s_3247: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2562 - - name: CL synthase (1-18:0, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane + - id: "r_2562" + - name: "CL synthase (1-18:0, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3100: -1 @@ -66679,16 +67201,16 @@ - s_3248: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2563 - - name: CL synthase (1-18:0, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane + - id: "r_2563" + - name: "CL synthase (1-18:0, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3100: -1 @@ -66697,16 +67219,16 @@ - s_3249: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2564 - - name: CL synthase (1-18:0, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane + - id: "r_2564" + - name: "CL synthase (1-18:0, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3100: -1 @@ -66715,16 +67237,16 @@ - s_3250: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2565 - - name: CL synthase (1-18:0, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane + - id: "r_2565" + - name: "CL synthase (1-18:0, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3100: -1 @@ -66733,16 +67255,16 @@ - s_3251: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2566 - - name: CL synthase (1-18:1, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane + - id: "r_2566" + - name: "CL synthase (1-18:1, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3102: -1 @@ -66751,16 +67273,16 @@ - s_3252: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2567 - - name: CL synthase (1-18:1, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane + - id: "r_2567" + - name: "CL synthase (1-18:1, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3102: -1 @@ -66769,16 +67291,16 @@ - s_3253: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2568 - - name: CL synthase (1-18:1, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane + - id: "r_2568" + - name: "CL synthase (1-18:1, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3102: -1 @@ -66787,16 +67309,16 @@ - s_3254: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2569 - - name: CL synthase (1-18:1, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane + - id: "r_2569" + - name: "CL synthase (1-18:1, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3102: -1 @@ -66805,16 +67327,16 @@ - s_3255: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2570 - - name: CL synthase (1-18:1, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane + - id: "r_2570" + - name: "CL synthase (1-18:1, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3102: -1 @@ -66823,16 +67345,16 @@ - s_3256: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2571 - - name: CL synthase (1-18:1, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane + - id: "r_2571" + - name: "CL synthase (1-18:1, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3102: -1 @@ -66841,16 +67363,16 @@ - s_3257: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2572 - - name: CL synthase (1-16:0, 2-18:1, 3-16:0, 4-16:1), mitochondrial membrane + - id: "r_2572" + - name: "CL synthase (1-16:0, 2-18:1, 3-16:0, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3104: -1 @@ -66859,16 +67381,16 @@ - s_3258: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2573 - - name: CL synthase (1-16:0, 2-18:1, 3-16:1, 4-16:1), mitochondrial membrane + - id: "r_2573" + - name: "CL synthase (1-16:0, 2-18:1, 3-16:1, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3104: -1 @@ -66877,16 +67399,16 @@ - s_3259: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2574 - - name: CL synthase (1-16:0, 2-18:1, 3-18:0, 4-16:1), mitochondrial membrane + - id: "r_2574" + - name: "CL synthase (1-16:0, 2-18:1, 3-18:0, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3104: -1 @@ -66895,16 +67417,16 @@ - s_3260: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2575 - - name: CL synthase (1-16:0, 2-18:1, 3-18:1, 4-16:1), mitochondrial membrane + - id: "r_2575" + - name: "CL synthase (1-16:0, 2-18:1, 3-18:1, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3104: -1 @@ -66913,16 +67435,16 @@ - s_3261: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2576 - - name: CL synthase (1-16:0, 2-18:1, 3-16:0, 4-18:1), mitochondrial membrane + - id: "r_2576" + - name: "CL synthase (1-16:0, 2-18:1, 3-16:0, 4-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3104: -1 @@ -66931,16 +67453,16 @@ - s_3262: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2577 - - name: CL synthase (1-16:0, 2-18:1, 3-16:1, 4-18:1), mitochondrial membrane + - id: "r_2577" + - name: "CL synthase (1-16:0, 2-18:1, 3-16:1, 4-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3104: -1 @@ -66949,16 +67471,16 @@ - s_3263: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2578 - - name: CL synthase (1-16:1, 2-18:1, 3-16:0, 4-16:1), mitochondrial membrane + - id: "r_2578" + - name: "CL synthase (1-16:1, 2-18:1, 3-16:0, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3106: -1 @@ -66967,16 +67489,16 @@ - s_3264: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2579 - - name: CL synthase (1-16:1, 2-18:1, 3-16:1, 4-16:1), mitochondrial membrane + - id: "r_2579" + - name: "CL synthase (1-16:1, 2-18:1, 3-16:1, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3106: -1 @@ -66985,16 +67507,16 @@ - s_3265: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2580 - - name: CL synthase (1-16:1, 2-18:1, 3-18:0, 4-16:1), mitochondrial membrane + - id: "r_2580" + - name: "CL synthase (1-16:1, 2-18:1, 3-18:0, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3106: -1 @@ -67003,16 +67525,16 @@ - s_3266: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2581 - - name: CL synthase (1-16:1, 2-18:1, 3-18:1, 4-16:1), mitochondrial membrane + - id: "r_2581" + - name: "CL synthase (1-16:1, 2-18:1, 3-18:1, 4-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3106: -1 @@ -67021,16 +67543,16 @@ - s_3267: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2582 - - name: CL synthase (1-16:1, 2-18:1, 3-16:0, 4-18:1), mitochondrial membrane + - id: "r_2582" + - name: "CL synthase (1-16:1, 2-18:1, 3-16:0, 4-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3106: -1 @@ -67039,16 +67561,16 @@ - s_3268: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2583 - - name: CL synthase (1-16:1, 2-18:1, 3-16:1, 4-18:1), mitochondrial membrane + - id: "r_2583" + - name: "CL synthase (1-16:1, 2-18:1, 3-16:1, 4-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3106: -1 @@ -67057,16 +67579,16 @@ - s_3269: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDL142C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YDL142C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.7.8.41 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.8.41" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2584 - - name: CL (1-16:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2584" + - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67075,16 +67597,16 @@ - s_3271: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2585 - - name: CL (1-16:0, 2-16:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2585" + - name: "CL (1-16:0, 2-16:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67093,16 +67615,16 @@ - s_3272: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2586 - - name: CL (1-16:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2586" + - name: "CL (1-16:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67111,16 +67633,16 @@ - s_3273: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2587 - - name: CL (1-16:0, 2-16:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2587" + - name: "CL (1-16:0, 2-16:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67129,16 +67651,16 @@ - s_3274: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2588 - - name: CL (1-16:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2588" + - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67147,16 +67669,16 @@ - s_3275: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2589 - - name: CL (1-16:0, 2-16:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2589" + - name: "CL (1-16:0, 2-16:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67165,16 +67687,16 @@ - s_3276: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2590 - - name: CL (1-18:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2590" + - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67183,16 +67705,16 @@ - s_3277: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2591 - - name: CL (1-18:0, 2-16:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2591" + - name: "CL (1-18:0, 2-16:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67201,16 +67723,16 @@ - s_3277: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2592 - - name: CL (1-18:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2592" + - name: "CL (1-18:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67219,16 +67741,16 @@ - s_3277: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2593 - - name: CL (1-18:0, 2-16:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2593" + - name: "CL (1-18:0, 2-16:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67237,16 +67759,16 @@ - s_3277: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2594 - - name: CL (1-18:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2594" + - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67255,16 +67777,16 @@ - s_3277: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2595 - - name: CL (1-18:0, 2-16:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2595" + - name: "CL (1-18:0, 2-16:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67273,16 +67795,16 @@ - s_3277: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2596 - - name: CL (1-16:0, 2-18:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2596" + - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67291,16 +67813,16 @@ - s_3278: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2597 - - name: CL (1-16:0, 2-18:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2597" + - name: "CL (1-16:0, 2-18:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67309,16 +67831,16 @@ - s_3279: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2598 - - name: CL (1-16:0, 2-18:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2598" + - name: "CL (1-16:0, 2-18:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67327,16 +67849,16 @@ - s_3280: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2599 - - name: CL (1-16:0, 2-18:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2599" + - name: "CL (1-16:0, 2-18:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67345,16 +67867,16 @@ - s_3281: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2600 - - name: CL (1-16:0, 2-18:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2600" + - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67363,16 +67885,16 @@ - s_3282: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2601 - - name: CL (1-16:0, 2-18:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane + - id: "r_2601" + - name: "CL (1-16:0, 2-18:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67381,16 +67903,16 @@ - s_3283: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2602 - - name: CL (1-16:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2602" + - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67399,16 +67921,16 @@ - s_3284: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2603 - - name: CL (1-16:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2603" + - name: "CL (1-16:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67417,16 +67939,16 @@ - s_3284: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2604 - - name: CL (1-16:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2604" + - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67435,16 +67957,16 @@ - s_3285: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2605 - - name: CL (1-16:1, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2605" + - name: "CL (1-16:1, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67453,16 +67975,16 @@ - s_3286: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2606 - - name: CL (1-16:1, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2606" + - name: "CL (1-16:1, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67471,16 +67993,16 @@ - s_3286: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2607 - - name: CL (1-16:1, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2607" + - name: "CL (1-16:1, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67489,16 +68011,16 @@ - s_3287: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2608 - - name: CL (1-18:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2608" + - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67507,16 +68029,16 @@ - s_3288: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2609 - - name: CL (1-18:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2609" + - name: "CL (1-18:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67525,16 +68047,16 @@ - s_3288: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2610 - - name: CL (1-18:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2610" + - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67543,16 +68065,16 @@ - s_3289: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2611 - - name: CL (1-18:1, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2611" + - name: "CL (1-18:1, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67561,16 +68083,16 @@ - s_3290: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2612 - - name: CL (1-18:1, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2612" + - name: "CL (1-18:1, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67579,16 +68101,16 @@ - s_3290: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2613 - - name: CL (1-18:1, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2613" + - name: "CL (1-18:1, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67597,16 +68119,16 @@ - s_3291: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2614 - - name: CL (1-16:0, 2-18:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2614" + - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67615,16 +68137,16 @@ - s_3292: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2615 - - name: CL (1-16:0, 2-18:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2615" + - name: "CL (1-16:0, 2-18:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67633,16 +68155,16 @@ - s_3292: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2616 - - name: CL (1-16:0, 2-18:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2616" + - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67651,16 +68173,16 @@ - s_3293: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2617 - - name: CL (1-16:1, 2-18:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2617" + - name: "CL (1-16:1, 2-18:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67669,16 +68191,16 @@ - s_3294: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2618 - - name: CL (1-16:1, 2-18:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2618" + - name: "CL (1-16:1, 2-18:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67687,16 +68209,16 @@ - s_3294: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2619 - - name: CL (1-16:1, 2-18:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane + - id: "r_2619" + - name: "CL (1-16:1, 2-18:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" - metabolites: !!omap - s_3094: 1 - s_3226: -1 @@ -67705,16 +68227,16 @@ - s_3295: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR110W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YGR110W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.5.1.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2620 - - name: MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2620" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3240: 1 - s_3270: -1 @@ -67722,16 +68244,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2621 - - name: MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2621" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3240: 1 - s_3270: -1 @@ -67739,16 +68261,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2622 - - name: MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2622" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3240: 1 - s_3270: -1 @@ -67756,16 +68278,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2623 - - name: MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2623" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3240: 1 - s_3270: -1 @@ -67773,16 +68295,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2624 - - name: MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2624" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3252: 1 - s_3270: -1 @@ -67790,16 +68312,16 @@ - s_3304: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2625 - - name: MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2625" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3252: 1 - s_3270: -1 @@ -67807,16 +68329,16 @@ - s_3305: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2626 - - name: MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2626" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3252: 1 - s_3270: -1 @@ -67824,16 +68346,16 @@ - s_3306: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2627 - - name: MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2627" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3252: 1 - s_3270: -1 @@ -67841,16 +68363,16 @@ - s_3307: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2628 - - name: MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2628" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3241: 1 - s_3272: -1 @@ -67858,16 +68380,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2629 - - name: MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2629" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3241: 1 - s_3272: -1 @@ -67875,16 +68397,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2630 - - name: MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2630" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3241: 1 - s_3272: -1 @@ -67892,16 +68414,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2631 - - name: MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2631" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3241: 1 - s_3272: -1 @@ -67909,16 +68431,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2632 - - name: MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2632" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3253: 1 - s_3272: -1 @@ -67926,16 +68448,16 @@ - s_3304: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2633 - - name: MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2633" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3253: 1 - s_3272: -1 @@ -67943,16 +68465,16 @@ - s_3305: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2634 - - name: MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2634" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3253: 1 - s_3272: -1 @@ -67960,16 +68482,16 @@ - s_3306: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2635 - - name: MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2635" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3253: 1 - s_3272: -1 @@ -67977,16 +68499,16 @@ - s_3307: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2636 - - name: MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2636" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3242: 1 - s_3273: -1 @@ -67994,16 +68516,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2637 - - name: MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2637" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3242: 1 - s_3273: -1 @@ -68011,16 +68533,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2638 - - name: MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2638" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3242: 1 - s_3273: -1 @@ -68028,16 +68550,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2639 - - name: MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2639" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3242: 1 - s_3273: -1 @@ -68045,16 +68567,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2640 - - name: MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2640" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3254: 1 - s_3273: -1 @@ -68062,16 +68584,16 @@ - s_3304: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2641 - - name: MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2641" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3254: 1 - s_3273: -1 @@ -68079,16 +68601,16 @@ - s_3305: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2642 - - name: MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2642" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3254: 1 - s_3273: -1 @@ -68096,16 +68618,16 @@ - s_3306: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2643 - - name: MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2643" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3254: 1 - s_3273: -1 @@ -68113,16 +68635,16 @@ - s_3307: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2644 - - name: MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2644" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3243: 1 - s_3274: -1 @@ -68130,16 +68652,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2645 - - name: MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2645" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3243: 1 - s_3274: -1 @@ -68147,16 +68669,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2646 - - name: MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2646" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3243: 1 - s_3274: -1 @@ -68164,16 +68686,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2647 - - name: MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2647" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3243: 1 - s_3274: -1 @@ -68181,16 +68703,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2648 - - name: MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2648" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3255: 1 - s_3274: -1 @@ -68198,16 +68720,16 @@ - s_3304: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2649 - - name: MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2649" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3255: 1 - s_3274: -1 @@ -68215,16 +68737,16 @@ - s_3305: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2650 - - name: MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2650" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3255: 1 - s_3274: -1 @@ -68232,16 +68754,16 @@ - s_3306: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2651 - - name: MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2651" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3255: 1 - s_3274: -1 @@ -68249,16 +68771,16 @@ - s_3307: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2652 - - name: MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2652" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3244: 1 - s_3275: -1 @@ -68266,16 +68788,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2653 - - name: MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2653" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3244: 1 - s_3275: -1 @@ -68283,16 +68805,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2654 - - name: MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2654" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3244: 1 - s_3275: -1 @@ -68300,16 +68822,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2655 - - name: MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2655" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3244: 1 - s_3275: -1 @@ -68317,16 +68839,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2656 - - name: MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2656" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3256: 1 - s_3275: -1 @@ -68334,16 +68856,16 @@ - s_3304: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2657 - - name: MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2657" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3256: 1 - s_3275: -1 @@ -68351,16 +68873,16 @@ - s_3305: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2658 - - name: MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2658" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3256: 1 - s_3275: -1 @@ -68368,16 +68890,16 @@ - s_3306: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2659 - - name: MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2659" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3256: 1 - s_3275: -1 @@ -68385,16 +68907,16 @@ - s_3307: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2660 - - name: MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2660" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3245: 1 - s_3276: -1 @@ -68402,16 +68924,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2661 - - name: MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2661" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3245: 1 - s_3276: -1 @@ -68419,16 +68941,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2662 - - name: MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2662" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3245: 1 - s_3276: -1 @@ -68436,16 +68958,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2663 - - name: MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2663" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3245: 1 - s_3276: -1 @@ -68453,16 +68975,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2664 - - name: MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2664" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3257: 1 - s_3276: -1 @@ -68470,16 +68992,16 @@ - s_3304: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2665 - - name: MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2665" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3257: 1 - s_3276: -1 @@ -68487,16 +69009,16 @@ - s_3305: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2666 - - name: MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2666" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3257: 1 - s_3276: -1 @@ -68504,16 +69026,16 @@ - s_3306: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2667 - - name: MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2667" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3257: 1 - s_3276: -1 @@ -68521,16 +69043,16 @@ - s_3307: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2668 - - name: MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2668" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3264: 1 - s_3278: -1 @@ -68538,16 +69060,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2669 - - name: MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2669" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3264: 1 - s_3278: -1 @@ -68555,16 +69077,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2670 - - name: MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2670" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3264: 1 - s_3278: -1 @@ -68572,16 +69094,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2671 - - name: MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2671" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3264: 1 - s_3278: -1 @@ -68589,16 +69111,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2672 - - name: MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2672" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3278: -1 - s_3297: 1 @@ -68606,16 +69128,16 @@ - s_3308: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2673 - - name: MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2673" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3278: -1 - s_3299: 1 @@ -68623,16 +69145,16 @@ - s_3308: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2674 - - name: MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2674" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3278: -1 - s_3301: 1 @@ -68640,16 +69162,16 @@ - s_3308: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2675 - - name: MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2675" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3278: -1 - s_3303: 1 @@ -68657,16 +69179,16 @@ - s_3308: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2676 - - name: MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2676" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3265: 1 - s_3279: -1 @@ -68674,16 +69196,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2677 - - name: MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2677" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3265: 1 - s_3279: -1 @@ -68691,16 +69213,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2678 - - name: MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2678" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3265: 1 - s_3279: -1 @@ -68708,16 +69230,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2679 - - name: MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2679" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3265: 1 - s_3279: -1 @@ -68725,16 +69247,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2680 - - name: MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2680" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3279: -1 - s_3297: 1 @@ -68742,16 +69264,16 @@ - s_3309: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2681 - - name: MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2681" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3279: -1 - s_3299: 1 @@ -68759,16 +69281,16 @@ - s_3309: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2682 - - name: MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2682" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3279: -1 - s_3301: 1 @@ -68776,16 +69298,16 @@ - s_3309: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2683 - - name: MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2683" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3279: -1 - s_3303: 1 @@ -68793,16 +69315,16 @@ - s_3309: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2684 - - name: MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2684" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3266: 1 - s_3280: -1 @@ -68810,16 +69332,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2685 - - name: MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2685" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3266: 1 - s_3280: -1 @@ -68827,16 +69349,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2686 - - name: MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2686" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3266: 1 - s_3280: -1 @@ -68844,16 +69366,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2687 - - name: MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2687" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3266: 1 - s_3280: -1 @@ -68861,16 +69383,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2688 - - name: MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2688" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3280: -1 - s_3297: 1 @@ -68878,16 +69400,16 @@ - s_3310: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2689 - - name: MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2689" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3280: -1 - s_3299: 1 @@ -68895,16 +69417,16 @@ - s_3310: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2690 - - name: MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2690" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3280: -1 - s_3301: 1 @@ -68912,16 +69434,16 @@ - s_3310: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2691 - - name: MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2691" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3280: -1 - s_3303: 1 @@ -68929,16 +69451,16 @@ - s_3310: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2692 - - name: MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2692" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3267: 1 - s_3281: -1 @@ -68946,16 +69468,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2693 - - name: MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2693" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3267: 1 - s_3281: -1 @@ -68963,16 +69485,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2694 - - name: MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2694" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3267: 1 - s_3281: -1 @@ -68980,16 +69502,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2695 - - name: MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2695" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3267: 1 - s_3281: -1 @@ -68997,16 +69519,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2696 - - name: MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2696" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3281: -1 - s_3297: 1 @@ -69014,16 +69536,16 @@ - s_3311: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2697 - - name: MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2697" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3281: -1 - s_3299: 1 @@ -69031,16 +69553,16 @@ - s_3311: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2698 - - name: MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2698" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3281: -1 - s_3301: 1 @@ -69048,16 +69570,16 @@ - s_3311: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2699 - - name: MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2699" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3281: -1 - s_3303: 1 @@ -69065,16 +69587,16 @@ - s_3311: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2700 - - name: MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2700" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3268: 1 - s_3282: -1 @@ -69082,16 +69604,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2701 - - name: MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2701" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3268: 1 - s_3282: -1 @@ -69099,16 +69621,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2702 - - name: MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2702" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3268: 1 - s_3282: -1 @@ -69116,16 +69638,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2703 - - name: MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2703" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3268: 1 - s_3282: -1 @@ -69133,16 +69655,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2704 - - name: MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2704" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3282: -1 - s_3297: 1 @@ -69150,16 +69672,16 @@ - s_3312: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2705 - - name: MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2705" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3282: -1 - s_3299: 1 @@ -69167,16 +69689,16 @@ - s_3312: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2706 - - name: MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2706" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3282: -1 - s_3301: 1 @@ -69184,16 +69706,16 @@ - s_3312: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2707 - - name: MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2707" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3282: -1 - s_3303: 1 @@ -69201,16 +69723,16 @@ - s_3312: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2708 - - name: MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2708" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3269: 1 - s_3283: -1 @@ -69218,16 +69740,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2709 - - name: MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2709" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3269: 1 - s_3283: -1 @@ -69235,16 +69757,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2710 - - name: MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2710" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3269: 1 - s_3283: -1 @@ -69252,16 +69774,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2711 - - name: MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2711" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3269: 1 - s_3283: -1 @@ -69269,16 +69791,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2712 - - name: MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2712" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3283: -1 - s_3297: 1 @@ -69286,16 +69808,16 @@ - s_3313: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2713 - - name: MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2713" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3283: -1 - s_3299: 1 @@ -69303,16 +69825,16 @@ - s_3313: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2714 - - name: MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2714" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3283: -1 - s_3301: 1 @@ -69320,16 +69842,16 @@ - s_3313: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2715 - - name: MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2715" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3283: -1 - s_3303: 1 @@ -69337,16 +69859,16 @@ - s_3313: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2716 - - name: MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2716" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3235: 1 - s_3284: -1 @@ -69354,16 +69876,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2717 - - name: MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2717" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3235: 1 - s_3284: -1 @@ -69371,16 +69893,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2718 - - name: MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2718" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3235: 1 - s_3284: -1 @@ -69388,16 +69910,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2719 - - name: MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2719" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3235: 1 - s_3284: -1 @@ -69405,16 +69927,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2720 - - name: MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2720" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3237: 1 - s_3284: -1 @@ -69422,16 +69944,16 @@ - s_3304: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2721 - - name: MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2721" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3237: 1 - s_3284: -1 @@ -69439,16 +69961,16 @@ - s_3305: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2722 - - name: MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2722" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3237: 1 - s_3284: -1 @@ -69456,16 +69978,16 @@ - s_3306: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2723 - - name: MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2723" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3237: 1 - s_3284: -1 @@ -69473,16 +69995,16 @@ - s_3307: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2724 - - name: MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2724" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3239: 1 - s_3285: -1 @@ -69490,16 +70012,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2725 - - name: MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2725" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3239: 1 - s_3285: -1 @@ -69507,16 +70029,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2726 - - name: MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2726" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3239: 1 - s_3285: -1 @@ -69524,16 +70046,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2727 - - name: MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2727" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3239: 1 - s_3285: -1 @@ -69541,16 +70063,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2728 - - name: MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2728" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3285: -1 - s_3297: 1 @@ -69558,16 +70080,16 @@ - s_3314: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2729 - - name: MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2729" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3285: -1 - s_3299: 1 @@ -69575,16 +70097,16 @@ - s_3314: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2730 - - name: MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2730" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3285: -1 - s_3301: 1 @@ -69592,16 +70114,16 @@ - s_3314: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2731 - - name: MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2731" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3285: -1 - s_3303: 1 @@ -69609,16 +70131,16 @@ - s_3314: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2732 - - name: MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2732" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3241: 1 - s_3286: -1 @@ -69626,16 +70148,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2733 - - name: MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2733" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3241: 1 - s_3286: -1 @@ -69643,16 +70165,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2734 - - name: MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2734" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3241: 1 - s_3286: -1 @@ -69660,16 +70182,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2735 - - name: MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2735" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3241: 1 - s_3286: -1 @@ -69677,16 +70199,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2736 - - name: MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2736" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3243: 1 - s_3286: -1 @@ -69694,16 +70216,16 @@ - s_3304: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2737 - - name: MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2737" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3243: 1 - s_3286: -1 @@ -69711,16 +70233,16 @@ - s_3305: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2738 - - name: MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2738" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3243: 1 - s_3286: -1 @@ -69728,16 +70250,16 @@ - s_3306: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2739 - - name: MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2739" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3243: 1 - s_3286: -1 @@ -69745,16 +70267,16 @@ - s_3307: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2740 - - name: MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2740" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3245: 1 - s_3287: -1 @@ -69762,16 +70284,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2741 - - name: MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2741" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3245: 1 - s_3287: -1 @@ -69779,16 +70301,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2742 - - name: MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2742" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3245: 1 - s_3287: -1 @@ -69796,16 +70318,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2743 - - name: MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2743" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3245: 1 - s_3287: -1 @@ -69813,16 +70335,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2744 - - name: MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2744" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3287: -1 - s_3297: 1 @@ -69830,16 +70352,16 @@ - s_3315: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2745 - - name: MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2745" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3287: -1 - s_3299: 1 @@ -69847,16 +70369,16 @@ - s_3315: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2746 - - name: MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2746" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3287: -1 - s_3301: 1 @@ -69864,16 +70386,16 @@ - s_3315: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2747 - - name: MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2747" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3287: -1 - s_3303: 1 @@ -69881,16 +70403,16 @@ - s_3315: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2748 - - name: MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2748" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3247: 1 - s_3288: -1 @@ -69898,16 +70420,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2749 - - name: MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2749" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3247: 1 - s_3288: -1 @@ -69915,16 +70437,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2750 - - name: MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2750" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3247: 1 - s_3288: -1 @@ -69932,16 +70454,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2751 - - name: MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2751" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3247: 1 - s_3288: -1 @@ -69949,16 +70471,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2752 - - name: MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2752" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3249: 1 - s_3288: -1 @@ -69966,16 +70488,16 @@ - s_3304: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2753 - - name: MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2753" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3249: 1 - s_3288: -1 @@ -69983,16 +70505,16 @@ - s_3305: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2754 - - name: MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2754" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3249: 1 - s_3288: -1 @@ -70000,16 +70522,16 @@ - s_3306: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2755 - - name: MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2755" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3249: 1 - s_3288: -1 @@ -70017,16 +70539,16 @@ - s_3307: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2756 - - name: MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2756" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3251: 1 - s_3289: -1 @@ -70034,16 +70556,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2757 - - name: MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2757" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3251: 1 - s_3289: -1 @@ -70051,16 +70573,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2758 - - name: MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2758" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3251: 1 - s_3289: -1 @@ -70068,16 +70590,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2759 - - name: MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2759" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3251: 1 - s_3289: -1 @@ -70085,16 +70607,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2760 - - name: MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2760" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3289: -1 - s_3297: 1 @@ -70102,16 +70624,16 @@ - s_3316: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2761 - - name: MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2761" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3289: -1 - s_3299: 1 @@ -70119,16 +70641,16 @@ - s_3316: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2762 - - name: MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2762" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3289: -1 - s_3301: 1 @@ -70136,16 +70658,16 @@ - s_3316: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2763 - - name: MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2763" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3289: -1 - s_3303: 1 @@ -70153,16 +70675,16 @@ - s_3316: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2764 - - name: MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2764" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3253: 1 - s_3290: -1 @@ -70170,16 +70692,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2765 - - name: MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2765" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3253: 1 - s_3290: -1 @@ -70187,16 +70709,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2766 - - name: MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2766" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3253: 1 - s_3290: -1 @@ -70204,16 +70726,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2767 - - name: MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2767" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3253: 1 - s_3290: -1 @@ -70221,16 +70743,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2768 - - name: MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2768" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3255: 1 - s_3290: -1 @@ -70238,16 +70760,16 @@ - s_3304: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2769 - - name: MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2769" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3255: 1 - s_3290: -1 @@ -70255,16 +70777,16 @@ - s_3305: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2770 - - name: MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2770" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3255: 1 - s_3290: -1 @@ -70272,16 +70794,16 @@ - s_3306: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2771 - - name: MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2771" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3255: 1 - s_3290: -1 @@ -70289,16 +70811,16 @@ - s_3307: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2772 - - name: MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2772" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3257: 1 - s_3291: -1 @@ -70306,16 +70828,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2773 - - name: MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2773" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3257: 1 - s_3291: -1 @@ -70323,16 +70845,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2774 - - name: MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2774" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3257: 1 - s_3291: -1 @@ -70340,16 +70862,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2775 - - name: MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2775" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3257: 1 - s_3291: -1 @@ -70357,16 +70879,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2776 - - name: MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2776" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3291: -1 - s_3297: 1 @@ -70374,16 +70896,16 @@ - s_3317: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2777 - - name: MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2777" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3291: -1 - s_3299: 1 @@ -70391,16 +70913,16 @@ - s_3317: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2778 - - name: MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2778" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3291: -1 - s_3301: 1 @@ -70408,16 +70930,16 @@ - s_3317: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2779 - - name: MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2779" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3291: -1 - s_3303: 1 @@ -70425,16 +70947,16 @@ - s_3317: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2780 - - name: MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2780" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3259: 1 - s_3292: -1 @@ -70442,16 +70964,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2781 - - name: MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2781" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3259: 1 - s_3292: -1 @@ -70459,16 +70981,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2782 - - name: MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2782" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3259: 1 - s_3292: -1 @@ -70476,16 +70998,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2783 - - name: MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2783" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3259: 1 - s_3292: -1 @@ -70493,16 +71015,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2784 - - name: MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2784" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3261: 1 - s_3292: -1 @@ -70510,16 +71032,16 @@ - s_3304: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2785 - - name: MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2785" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3261: 1 - s_3292: -1 @@ -70527,16 +71049,16 @@ - s_3305: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2786 - - name: MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2786" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3261: 1 - s_3292: -1 @@ -70544,16 +71066,16 @@ - s_3306: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2787 - - name: MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2787" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3261: 1 - s_3292: -1 @@ -70561,16 +71083,16 @@ - s_3307: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2788 - - name: MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2788" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3263: 1 - s_3293: -1 @@ -70578,16 +71100,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2789 - - name: MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2789" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3263: 1 - s_3293: -1 @@ -70595,16 +71117,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2790 - - name: MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2790" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3263: 1 - s_3293: -1 @@ -70612,16 +71134,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2791 - - name: MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2791" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3263: 1 - s_3293: -1 @@ -70629,16 +71151,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2792 - - name: MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2792" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3293: -1 - s_3297: 1 @@ -70646,16 +71168,16 @@ - s_3318: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2793 - - name: MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2793" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3293: -1 - s_3299: 1 @@ -70663,16 +71185,16 @@ - s_3318: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2794 - - name: MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2794" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3293: -1 - s_3301: 1 @@ -70680,16 +71202,16 @@ - s_3318: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2795 - - name: MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2795" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3293: -1 - s_3303: 1 @@ -70697,16 +71219,16 @@ - s_3318: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2796 - - name: MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2796" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3265: 1 - s_3294: -1 @@ -70714,16 +71236,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2797 - - name: MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2797" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3265: 1 - s_3294: -1 @@ -70731,16 +71253,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2798 - - name: MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2798" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3265: 1 - s_3294: -1 @@ -70748,16 +71270,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2799 - - name: MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2799" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3265: 1 - s_3294: -1 @@ -70765,16 +71287,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2800 - - name: MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2800" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3267: 1 - s_3294: -1 @@ -70782,16 +71304,16 @@ - s_3304: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2801 - - name: MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2801" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3267: 1 - s_3294: -1 @@ -70799,16 +71321,16 @@ - s_3305: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2802 - - name: MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2802" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3267: 1 - s_3294: -1 @@ -70816,16 +71338,16 @@ - s_3306: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2803 - - name: MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2803" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3267: 1 - s_3294: -1 @@ -70833,16 +71355,16 @@ - s_3307: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2804 - - name: MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2804" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3269: 1 - s_3295: -1 @@ -70850,16 +71372,16 @@ - s_3297: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2805 - - name: MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2805" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3269: 1 - s_3295: -1 @@ -70867,16 +71389,16 @@ - s_3299: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2806 - - name: MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2806" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3269: 1 - s_3295: -1 @@ -70884,16 +71406,16 @@ - s_3301: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2807 - - name: MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane + - id: "r_2807" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3269: 1 - s_3295: -1 @@ -70901,16 +71423,16 @@ - s_3303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2808 - - name: MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2808" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3295: -1 - s_3297: 1 @@ -70918,16 +71440,16 @@ - s_3319: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2809 - - name: MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2809" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3295: -1 - s_3299: 1 @@ -70935,16 +71457,16 @@ - s_3319: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2810 - - name: MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2810" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3295: -1 - s_3301: 1 @@ -70952,16 +71474,16 @@ - s_3319: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2811 - - name: MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane + - id: "r_2811" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - metabolites: !!omap - s_3295: -1 - s_3303: 1 @@ -70969,16 +71491,16 @@ - s_3319: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR140W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPR140W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2812 - - name: lysoPC acyltransferase (1-16:0, 2-16:1), mitochondrial membrane + - id: "r_2812" + - name: "lysoPC acyltransferase (1-16:0, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3296: 1 - s_3297: -1 @@ -70986,12 +71508,13 @@ - s_3321: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2813 - - name: lysoPC acyltransferase (1-16:0, 2-18:1), mitochondrial membrane + - id: "r_2813" + - name: "lysoPC acyltransferase (1-16:0, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3297: -1 - s_3304: 1 @@ -70999,12 +71522,13 @@ - s_3322: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2814 - - name: lysoPC acyltransferase (1-16:1, 2-16:1), mitochondrial membrane + - id: "r_2814" + - name: "lysoPC acyltransferase (1-16:1, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3298: 1 - s_3299: -1 @@ -71012,12 +71536,13 @@ - s_3321: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2815 - - name: lysoPC acyltransferase (1-16:1, 2-18:1), mitochondrial membrane + - id: "r_2815" + - name: "lysoPC acyltransferase (1-16:1, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3299: -1 - s_3305: 1 @@ -71025,12 +71550,13 @@ - s_3322: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2816 - - name: lysoPC acyltransferase (1-18:0, 2-16:1), mitochondrial membrane + - id: "r_2816" + - name: "lysoPC acyltransferase (1-18:0, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3300: 1 - s_3301: -1 @@ -71038,12 +71564,13 @@ - s_3321: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2817 - - name: lysoPC acyltransferase (1-18:0, 2-18:1), mitochondrial membrane + - id: "r_2817" + - name: "lysoPC acyltransferase (1-18:0, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3301: -1 - s_3306: 1 @@ -71051,12 +71578,13 @@ - s_3322: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2818 - - name: lysoPC acyltransferase (1-18:1, 2-16:1), mitochondrial membrane + - id: "r_2818" + - name: "lysoPC acyltransferase (1-18:1, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3302: 1 - s_3303: -1 @@ -71064,12 +71592,13 @@ - s_3321: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2819 - - name: lysoPC acyltransferase (1-18:1, 2-18:1), mitochondrial membrane + - id: "r_2819" + - name: "lysoPC acyltransferase (1-18:1, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3303: -1 - s_3307: 1 @@ -71077,12 +71606,13 @@ - s_3322: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_2820 - - name: phosphatidylinositol 4-kinase (1-16:0, 2-16:1), cell envelope + - id: "r_2820" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -71091,19 +71621,19 @@ - s_3325: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W or YLR305C + - gene_reaction_rule: "YJL100W or YLR305C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2821 - - name: phosphatidylinositol 4-kinase (1-16:1, 2-16:1), cell envelope + - id: "r_2821" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -71112,19 +71642,19 @@ - s_3327: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W or YLR305C + - gene_reaction_rule: "YJL100W or YLR305C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2822 - - name: phosphatidylinositol 4-kinase (1-18:0, 2-16:1), cell envelope + - id: "r_2822" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -71133,19 +71663,19 @@ - s_3329: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W or YLR305C + - gene_reaction_rule: "YJL100W or YLR305C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2823 - - name: phosphatidylinositol 4-kinase (1-18:1, 2-16:1), cell envelope + - id: "r_2823" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -71154,19 +71684,19 @@ - s_3331: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W or YLR305C + - gene_reaction_rule: "YJL100W or YLR305C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2824 - - name: phosphatidylinositol 4-kinase (1-16:0, 2-18:1), cell envelope + - id: "r_2824" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -71175,19 +71705,19 @@ - s_3333: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W or YLR305C + - gene_reaction_rule: "YJL100W or YLR305C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2825 - - name: phosphatidylinositol 4-kinase (1-16:1, 2-18:1), cell envelope + - id: "r_2825" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -71196,19 +71726,19 @@ - s_3335: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W or YLR305C + - gene_reaction_rule: "YJL100W or YLR305C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2826 - - name: phosphatidylinositol 4-kinase (1-18:0, 2-18:1), cell envelope + - id: "r_2826" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -71217,19 +71747,19 @@ - s_3337: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W or YLR305C + - gene_reaction_rule: "YJL100W or YLR305C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2827 - - name: phosphatidylinositol 4-kinase (1-18:1, 2-18:1), cell envelope + - id: "r_2827" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -71238,19 +71768,19 @@ - s_3339: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W or YLR305C + - gene_reaction_rule: "YJL100W or YLR305C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2828 - - name: phosphatidylinositol 4-kinase (1-16:0, 2-16:1), vacuolar membrane + - id: "r_2828" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3340: -1 @@ -71259,18 +71789,18 @@ - s_3343: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W + - gene_reaction_rule: "YJL100W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2829 - - name: phosphatidylinositol 4-kinase (1-16:1, 2-16:1), vacuolar membrane + - id: "r_2829" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71279,18 +71809,18 @@ - s_3345: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W + - gene_reaction_rule: "YJL100W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2830 - - name: phosphatidylinositol 4-kinase (1-18:0, 2-16:1), vacuolar membrane + - id: "r_2830" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71299,18 +71829,18 @@ - s_3347: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W + - gene_reaction_rule: "YJL100W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2831 - - name: phosphatidylinositol 4-kinase (1-18:1, 2-16:1), vacuolar membrane + - id: "r_2831" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71319,18 +71849,18 @@ - s_3349: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W + - gene_reaction_rule: "YJL100W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2832 - - name: phosphatidylinositol 4-kinase (1-16:0, 2-18:1), vacuolar membrane + - id: "r_2832" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71339,18 +71869,18 @@ - s_3351: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W + - gene_reaction_rule: "YJL100W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2833 - - name: phosphatidylinositol 4-kinase (1-16:1, 2-18:1), vacuolar membrane + - id: "r_2833" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71359,18 +71889,18 @@ - s_3353: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W + - gene_reaction_rule: "YJL100W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2834 - - name: phosphatidylinositol 4-kinase (1-18:0, 2-18:1), vacuolar membrane + - id: "r_2834" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71379,18 +71909,18 @@ - s_3355: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W + - gene_reaction_rule: "YJL100W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2835 - - name: phosphatidylinositol 4-kinase (1-18:1, 2-18:1), vacuolar membrane + - id: "r_2835" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71399,18 +71929,18 @@ - s_3357: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL100W + - gene_reaction_rule: "YJL100W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2836 - - name: phosphatidylinositol 4-kinase (1-16:0, 2-16:1), Golgi membrane + - id: "r_2836" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_3146: -1 - s_3358: -1 @@ -71419,18 +71949,18 @@ - s_3361: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR373W and YNL267W + - gene_reaction_rule: "YDR373W and YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2837 - - name: phosphatidylinositol 4-kinase (1-16:1, 2-16:1), Golgi membrane + - id: "r_2837" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_3146: -1 - s_3359: -1 @@ -71439,18 +71969,18 @@ - s_3363: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR373W and YNL267W + - gene_reaction_rule: "YDR373W and YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2838 - - name: phosphatidylinositol 4-kinase (1-18:0, 2-16:1), Golgi membrane + - id: "r_2838" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_3146: -1 - s_3359: -1 @@ -71459,18 +71989,18 @@ - s_3365: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR373W and YNL267W + - gene_reaction_rule: "YDR373W and YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2839 - - name: phosphatidylinositol 4-kinase (1-18:1, 2-16:1), Golgi membrane + - id: "r_2839" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_3146: -1 - s_3359: -1 @@ -71479,18 +72009,18 @@ - s_3367: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR373W and YNL267W + - gene_reaction_rule: "YDR373W and YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2840 - - name: phosphatidylinositol 4-kinase (1-16:0, 2-18:1), Golgi membrane + - id: "r_2840" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_3146: -1 - s_3359: -1 @@ -71499,18 +72029,18 @@ - s_3369: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR373W and YNL267W + - gene_reaction_rule: "YDR373W and YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2841 - - name: phosphatidylinositol 4-kinase (1-16:1, 2-18:1), Golgi membrane + - id: "r_2841" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_3146: -1 - s_3359: -1 @@ -71519,18 +72049,18 @@ - s_3371: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR373W and YNL267W + - gene_reaction_rule: "YDR373W and YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2842 - - name: phosphatidylinositol 4-kinase (1-18:0, 2-18:1), Golgi membrane + - id: "r_2842" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_3146: -1 - s_3359: -1 @@ -71539,18 +72069,18 @@ - s_3373: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR373W and YNL267W + - gene_reaction_rule: "YDR373W and YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2843 - - name: phosphatidylinositol 4-kinase (1-18:1, 2-18:1), Golgi membrane + - id: "r_2843" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_3146: -1 - s_3359: -1 @@ -71559,18 +72089,18 @@ - s_3375: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR373W and YNL267W + - gene_reaction_rule: "YDR373W and YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2844 - - name: phosphatidylinositol 4-kinase (1-16:0, 2-16:1), nucleus + - id: "r_2844" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -71579,18 +72109,18 @@ - s_3377: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL267W + - gene_reaction_rule: "YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2845 - - name: phosphatidylinositol 4-kinase (1-16:1, 2-16:1), nucleus + - id: "r_2845" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -71599,18 +72129,18 @@ - s_3379: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL267W + - gene_reaction_rule: "YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2846 - - name: phosphatidylinositol 4-kinase (1-18:0, 2-16:1), nucleus + - id: "r_2846" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -71619,18 +72149,18 @@ - s_3381: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL267W + - gene_reaction_rule: "YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2847 - - name: phosphatidylinositol 4-kinase (1-18:1, 2-16:1), nucleus + - id: "r_2847" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -71639,18 +72169,18 @@ - s_3383: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL267W + - gene_reaction_rule: "YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2848 - - name: phosphatidylinositol 4-kinase (1-16:0, 2-18:1), nucleus + - id: "r_2848" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -71659,18 +72189,18 @@ - s_3385: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL267W + - gene_reaction_rule: "YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2849 - - name: phosphatidylinositol 4-kinase (1-16:1, 2-18:1), nucleus + - id: "r_2849" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -71679,18 +72209,18 @@ - s_3387: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL267W + - gene_reaction_rule: "YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2850 - - name: phosphatidylinositol 4-kinase (1-18:0, 2-18:1), nucleus + - id: "r_2850" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -71699,18 +72229,18 @@ - s_3389: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL267W + - gene_reaction_rule: "YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2851 - - name: phosphatidylinositol 4-kinase (1-18:1, 2-18:1), nucleus + - id: "r_2851" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -71719,18 +72249,18 @@ - s_3391: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL267W + - gene_reaction_rule: "YNL267W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 2.7.1.67 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.67" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2852 - - name: phosphatidylinositol 3-kinase (1-16:0, 2-16:1), vacuolar membrane + - id: "r_2852" + - name: "phosphatidylinositol 3-kinase (1-16:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3340: -1 @@ -71739,23 +72269,23 @@ - s_3392: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR097W and YLR240W + - gene_reaction_rule: "YBR097W and YLR240W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04136 Autophagy - other - - sce04138 Autophagy - yeast - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04136 Autophagy - other" + - "sce04138 Autophagy - yeast" + - "sce04145 Phagosome" - annotation: !!omap - ec-code: - - 2.7.1.137 - - 2.7.11.1 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.1.137" + - "2.7.11.1" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2853 - - name: phosphatidylinositol 3-kinase (1-16:1, 2-16:1), vacuolar membrane + - id: "r_2853" + - name: "phosphatidylinositol 3-kinase (1-16:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71764,23 +72294,23 @@ - s_3393: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR097W and YLR240W + - gene_reaction_rule: "YBR097W and YLR240W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04136 Autophagy - other - - sce04138 Autophagy - yeast - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04136 Autophagy - other" + - "sce04138 Autophagy - yeast" + - "sce04145 Phagosome" - annotation: !!omap - ec-code: - - 2.7.1.137 - - 2.7.11.1 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.1.137" + - "2.7.11.1" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2854 - - name: phosphatidylinositol 3-kinase (1-18:0, 2-16:1), vacuolar membrane + - id: "r_2854" + - name: "phosphatidylinositol 3-kinase (1-18:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71789,23 +72319,23 @@ - s_3394: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR097W and YLR240W + - gene_reaction_rule: "YBR097W and YLR240W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04136 Autophagy - other - - sce04138 Autophagy - yeast - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04136 Autophagy - other" + - "sce04138 Autophagy - yeast" + - "sce04145 Phagosome" - annotation: !!omap - ec-code: - - 2.7.1.137 - - 2.7.11.1 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.1.137" + - "2.7.11.1" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2855 - - name: phosphatidylinositol 3-kinase (1-18:1, 2-16:1), vacuolar membrane + - id: "r_2855" + - name: "phosphatidylinositol 3-kinase (1-18:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71814,23 +72344,23 @@ - s_3395: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR097W and YLR240W + - gene_reaction_rule: "YBR097W and YLR240W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04136 Autophagy - other - - sce04138 Autophagy - yeast - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04136 Autophagy - other" + - "sce04138 Autophagy - yeast" + - "sce04145 Phagosome" - annotation: !!omap - ec-code: - - 2.7.1.137 - - 2.7.11.1 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.1.137" + - "2.7.11.1" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2856 - - name: phosphatidylinositol 3-kinase (1-16:0, 2-18:1), vacuolar membrane + - id: "r_2856" + - name: "phosphatidylinositol 3-kinase (1-16:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71839,23 +72369,23 @@ - s_3396: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR097W and YLR240W + - gene_reaction_rule: "YBR097W and YLR240W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04136 Autophagy - other - - sce04138 Autophagy - yeast - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04136 Autophagy - other" + - "sce04138 Autophagy - yeast" + - "sce04145 Phagosome" - annotation: !!omap - ec-code: - - 2.7.1.137 - - 2.7.11.1 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.1.137" + - "2.7.11.1" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2857 - - name: phosphatidylinositol 3-kinase (1-16:1, 2-18:1), vacuolar membrane + - id: "r_2857" + - name: "phosphatidylinositol 3-kinase (1-16:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71864,23 +72394,23 @@ - s_3397: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR097W and YLR240W + - gene_reaction_rule: "YBR097W and YLR240W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04136 Autophagy - other - - sce04138 Autophagy - yeast - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04136 Autophagy - other" + - "sce04138 Autophagy - yeast" + - "sce04145 Phagosome" - annotation: !!omap - ec-code: - - 2.7.1.137 - - 2.7.11.1 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.1.137" + - "2.7.11.1" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2858 - - name: phosphatidylinositol 3-kinase (1-18:0, 2-18:1), vacuolar membrane + - id: "r_2858" + - name: "phosphatidylinositol 3-kinase (1-18:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71889,23 +72419,23 @@ - s_3398: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR097W and YLR240W + - gene_reaction_rule: "YBR097W and YLR240W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04136 Autophagy - other - - sce04138 Autophagy - yeast - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04136 Autophagy - other" + - "sce04138 Autophagy - yeast" + - "sce04145 Phagosome" - annotation: !!omap - ec-code: - - 2.7.1.137 - - 2.7.11.1 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.1.137" + - "2.7.11.1" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2859 - - name: phosphatidylinositol 3-kinase (1-18:1, 2-18:1), vacuolar membrane + - id: "r_2859" + - name: "phosphatidylinositol 3-kinase (1-18:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -71914,23 +72444,23 @@ - s_3399: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR097W and YLR240W + - gene_reaction_rule: "YBR097W and YLR240W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04136 Autophagy - other - - sce04138 Autophagy - yeast - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04136 Autophagy - other" + - "sce04138 Autophagy - yeast" + - "sce04145 Phagosome" - annotation: !!omap - ec-code: - - 2.7.1.137 - - 2.7.11.1 - - pmid: 22345606 - - sbo: SBO:0000176 + - "2.7.1.137" + - "2.7.11.1" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2860 - - name: PI 4-P 5-kinase (1-16:0, 2-16:1), nucleus + - id: "r_2860" + - name: "PI 4-P 5-kinase (1-16:0, 2-16:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -71939,21 +72469,21 @@ - s_3400: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2861 - - name: PI 4-P 5-kinase (1-16:1, 2-16:1), nucleus + - id: "r_2861" + - name: "PI 4-P 5-kinase (1-16:1, 2-16:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -71962,21 +72492,21 @@ - s_3401: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2862 - - name: PI 4-P 5-kinase (1-18:0, 2-16:1), nucleus + - id: "r_2862" + - name: "PI 4-P 5-kinase (1-18:0, 2-16:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -71985,21 +72515,21 @@ - s_3402: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2863 - - name: PI 4-P 5-kinase (1-18:1, 2-16:1), nucleus + - id: "r_2863" + - name: "PI 4-P 5-kinase (1-18:1, 2-16:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -72008,21 +72538,21 @@ - s_3403: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2864 - - name: PI 4-P 5-kinase (1-16:0, 2-18:1), nucleus + - id: "r_2864" + - name: "PI 4-P 5-kinase (1-16:0, 2-18:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -72031,21 +72561,21 @@ - s_3404: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2865 - - name: PI 4-P 5-kinase (1-16:1, 2-18:1), nucleus + - id: "r_2865" + - name: "PI 4-P 5-kinase (1-16:1, 2-18:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -72054,21 +72584,21 @@ - s_3405: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2866 - - name: PI 4-P 5-kinase (1-18:0, 2-18:1), nucleus + - id: "r_2866" + - name: "PI 4-P 5-kinase (1-18:0, 2-18:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -72077,21 +72607,21 @@ - s_3406: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2867 - - name: PI 4-P 5-kinase (1-18:1, 2-18:1), nucleus + - id: "r_2867" + - name: "PI 4-P 5-kinase (1-18:1, 2-18:1), nucleus" - metabolites: !!omap - s_0398: 1 - s_0438: -1 @@ -72100,21 +72630,21 @@ - s_3407: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2868 - - name: PI 4-P 5-kinase (1-16:0, 2-16:1), cell envelope + - id: "r_2868" + - name: "PI 4-P 5-kinase (1-16:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -72123,21 +72653,21 @@ - s_3408: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2869 - - name: PI 4-P 5-kinase (1-16:1, 2-16:1), cell envelope + - id: "r_2869" + - name: "PI 4-P 5-kinase (1-16:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -72146,21 +72676,21 @@ - s_3409: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2870 - - name: PI 4-P 5-kinase (1-18:0, 2-16:1), cell envelope + - id: "r_2870" + - name: "PI 4-P 5-kinase (1-18:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -72169,21 +72699,21 @@ - s_3410: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2871 - - name: PI 4-P 5-kinase (1-18:1, 2-16:1), cell envelope + - id: "r_2871" + - name: "PI 4-P 5-kinase (1-18:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -72192,21 +72722,21 @@ - s_3411: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2872 - - name: PI 4-P 5-kinase (1-16:0, 2-18:1), cell envelope + - id: "r_2872" + - name: "PI 4-P 5-kinase (1-16:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -72215,21 +72745,21 @@ - s_3412: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2873 - - name: PI 4-P 5-kinase (1-16:1, 2-18:1), cell envelope + - id: "r_2873" + - name: "PI 4-P 5-kinase (1-16:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -72238,21 +72768,21 @@ - s_3413: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2874 - - name: PI 4-P 5-kinase (1-18:0, 2-18:1), cell envelope + - id: "r_2874" + - name: "PI 4-P 5-kinase (1-18:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -72261,21 +72791,21 @@ - s_3414: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2875 - - name: PI 4-P 5-kinase (1-18:1, 2-18:1), cell envelope + - id: "r_2875" + - name: "PI 4-P 5-kinase (1-18:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: -1 - s_2856: -1 @@ -72284,21 +72814,21 @@ - s_3415: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR208W + - gene_reaction_rule: "YDR208W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04011 MAPK signaling pathway - yeast - - sce04070 Phosphatidylinositol signaling system - - sce04139 Mitophagy - yeast - - sce04144 Endocytosis + - "sce00562 Inositol phosphate metabolism" + - "sce04011 MAPK signaling pathway - yeast" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04139 Mitophagy - yeast" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 2.7.1.68 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.68" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2876 - - name: PI 3-P 5-kinase (1-16:0, 2-16:1), vacuolar membrane + - id: "r_2876" + - name: "PI 3-P 5-kinase (1-16:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -72307,19 +72837,19 @@ - s_3416: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR019W + - gene_reaction_rule: "YFR019W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04145 Phagosome" - annotation: !!omap - - ec-code: 2.7.1.150 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.150" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2877 - - name: PI 3-P 5-kinase (1-16:1, 2-16:1), vacuolar membrane + - id: "r_2877" + - name: "PI 3-P 5-kinase (1-16:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -72328,19 +72858,19 @@ - s_3417: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR019W + - gene_reaction_rule: "YFR019W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04145 Phagosome" - annotation: !!omap - - ec-code: 2.7.1.150 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.150" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2878 - - name: PI 3-P 5-kinase (1-18:0, 2-16:1), vacuolar membrane + - id: "r_2878" + - name: "PI 3-P 5-kinase (1-18:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -72349,19 +72879,19 @@ - s_3418: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR019W + - gene_reaction_rule: "YFR019W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04145 Phagosome" - annotation: !!omap - - ec-code: 2.7.1.150 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.150" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2879 - - name: PI 3-P 5-kinase (1-18:1, 2-16:1), vacuolar membrane + - id: "r_2879" + - name: "PI 3-P 5-kinase (1-18:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -72370,19 +72900,19 @@ - s_3419: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR019W + - gene_reaction_rule: "YFR019W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04145 Phagosome" - annotation: !!omap - - ec-code: 2.7.1.150 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.150" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2880 - - name: PI 3-P 5-kinase (1-16:0, 2-18:1), vacuolar membrane + - id: "r_2880" + - name: "PI 3-P 5-kinase (1-16:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -72391,19 +72921,19 @@ - s_3420: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR019W + - gene_reaction_rule: "YFR019W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04145 Phagosome" - annotation: !!omap - - ec-code: 2.7.1.150 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.150" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2881 - - name: PI 3-P 5-kinase (1-16:1, 2-18:1), vacuolar membrane + - id: "r_2881" + - name: "PI 3-P 5-kinase (1-16:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -72412,19 +72942,19 @@ - s_3421: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR019W + - gene_reaction_rule: "YFR019W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04145 Phagosome" - annotation: !!omap - - ec-code: 2.7.1.150 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.150" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2882 - - name: PI 3-P 5-kinase (1-18:0, 2-18:1), vacuolar membrane + - id: "r_2882" + - name: "PI 3-P 5-kinase (1-18:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -72433,19 +72963,19 @@ - s_3422: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR019W + - gene_reaction_rule: "YFR019W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04145 Phagosome" - annotation: !!omap - - ec-code: 2.7.1.150 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.150" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2883 - - name: PI 3-P 5-kinase (1-18:1, 2-18:1), vacuolar membrane + - id: "r_2883" + - name: "PI 3-P 5-kinase (1-18:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_3164: -1 - s_3341: -1 @@ -72454,19 +72984,19 @@ - s_3423: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YFR019W + - gene_reaction_rule: "YFR019W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04145 Phagosome + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04145 Phagosome" - annotation: !!omap - - ec-code: 2.7.1.150 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.7.1.150" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2884 - - name: PE (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2884" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3019: 1 @@ -72474,16 +73004,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2885 - - name: PE (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2885" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3019: 1 @@ -72491,16 +73021,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2886 - - name: PE (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2886" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3019: 1 @@ -72508,16 +73038,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2887 - - name: PE (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2887" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3019: 1 @@ -72525,16 +73055,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2888 - - name: PE (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2888" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3035: 1 @@ -72542,16 +73072,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2889 - - name: PE (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2889" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3035: 1 @@ -72559,16 +73089,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2890 - - name: PE (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2890" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3035: 1 @@ -72576,16 +73106,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2891 - - name: PE (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2891" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3035: 1 @@ -72593,16 +73123,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2892 - - name: PE (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2892" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3021: 1 @@ -72610,16 +73140,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2893 - - name: PE (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2893" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3021: 1 @@ -72627,16 +73157,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2894 - - name: PE (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2894" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3021: 1 @@ -72644,16 +73174,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2895 - - name: PE (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2895" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3021: 1 @@ -72661,16 +73191,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2896 - - name: PE (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2896" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3037: 1 @@ -72678,16 +73208,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2897 - - name: PE (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2897" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3037: 1 @@ -72695,16 +73225,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2898 - - name: PE (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2898" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3037: 1 @@ -72712,16 +73242,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2899 - - name: PE (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2899" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3037: 1 @@ -72729,16 +73259,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2900 - - name: PE (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2900" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3023: 1 @@ -72746,16 +73276,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2901 - - name: PE (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2901" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3023: 1 @@ -72763,16 +73293,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2902 - - name: PE (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2902" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3023: 1 @@ -72780,16 +73310,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2903 - - name: PE (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2903" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3023: 1 @@ -72797,16 +73327,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2904 - - name: PE (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2904" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3039: 1 @@ -72814,16 +73344,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2905 - - name: PE (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2905" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3039: 1 @@ -72831,16 +73361,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2906 - - name: PE (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2906" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3039: 1 @@ -72848,16 +73378,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2907 - - name: PE (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2907" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3039: 1 @@ -72865,16 +73395,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2908 - - name: PE (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2908" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3025: 1 @@ -72882,16 +73412,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2909 - - name: PE (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2909" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3025: 1 @@ -72899,16 +73429,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2910 - - name: PE (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2910" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3025: 1 @@ -72916,16 +73446,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2911 - - name: PE (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2911" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3025: 1 @@ -72933,16 +73463,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2912 - - name: PE (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2912" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3041: 1 @@ -72950,16 +73480,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2913 - - name: PE (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2913" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3041: 1 @@ -72967,16 +73497,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2914 - - name: PE (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2914" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3041: 1 @@ -72984,16 +73514,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2915 - - name: PE (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2915" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3041: 1 @@ -73001,16 +73531,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2916 - - name: PE (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2916" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3020: 1 @@ -73018,16 +73548,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2917 - - name: PE (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2917" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3020: 1 @@ -73035,16 +73565,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2918 - - name: PE (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2918" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3020: 1 @@ -73052,16 +73582,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2919 - - name: PE (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2919" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3020: 1 @@ -73069,16 +73599,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2920 - - name: PE (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2920" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3036: 1 @@ -73086,16 +73616,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2921 - - name: PE (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2921" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3036: 1 @@ -73103,16 +73633,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2922 - - name: PE (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2922" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3036: 1 @@ -73120,16 +73650,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2923 - - name: PE (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2923" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3036: 1 @@ -73137,16 +73667,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2924 - - name: PE (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2924" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3022: 1 @@ -73154,16 +73684,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2925 - - name: PE (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2925" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3022: 1 @@ -73171,16 +73701,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2926 - - name: PE (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2926" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3022: 1 @@ -73188,16 +73718,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2927 - - name: PE (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2927" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3022: 1 @@ -73205,16 +73735,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2928 - - name: PE (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2928" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3038: 1 @@ -73222,16 +73752,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2929 - - name: PE (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2929" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3038: 1 @@ -73239,16 +73769,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2930 - - name: PE (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2930" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3038: 1 @@ -73256,16 +73786,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2931 - - name: PE (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2931" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3038: 1 @@ -73273,16 +73803,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2932 - - name: PE (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2932" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3024: 1 @@ -73290,16 +73820,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2933 - - name: PE (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2933" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3024: 1 @@ -73307,16 +73837,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2934 - - name: PE (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2934" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3024: 1 @@ -73324,16 +73854,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2935 - - name: PE (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2935" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3024: 1 @@ -73341,16 +73871,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2936 - - name: PE (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2936" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3040: 1 @@ -73358,16 +73888,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2937 - - name: PE (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2937" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3040: 1 @@ -73375,16 +73905,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2938 - - name: PE (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2938" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3040: 1 @@ -73392,16 +73922,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2939 - - name: PE (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2939" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3040: 1 @@ -73409,16 +73939,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2940 - - name: PE (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2940" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3026: 1 @@ -73426,16 +73956,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2941 - - name: PE (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2941" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3026: 1 @@ -73443,16 +73973,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2942 - - name: PE (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2942" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3026: 1 @@ -73460,16 +73990,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2943 - - name: PE (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2943" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3026: 1 @@ -73477,16 +74007,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2944 - - name: PE (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2944" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3042: 1 @@ -73494,16 +74024,16 @@ - s_3424: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2945 - - name: PE (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2945" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3042: 1 @@ -73511,16 +74041,16 @@ - s_3425: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2946 - - name: PE (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2946" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3042: 1 @@ -73528,16 +74058,16 @@ - s_3426: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2947 - - name: PE (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2947" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3042: 1 @@ -73545,16 +74075,16 @@ - s_3427: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2948 - - name: PC (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2948" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3019: 1 @@ -73562,16 +74092,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2949 - - name: PC (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2949" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3019: 1 @@ -73579,16 +74109,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2950 - - name: PC (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2950" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3019: 1 @@ -73596,16 +74126,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2951 - - name: PC (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2951" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3019: 1 @@ -73613,16 +74143,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2952 - - name: PC (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2952" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3035: 1 @@ -73630,16 +74160,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2953 - - name: PC (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2953" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3035: 1 @@ -73647,16 +74177,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2954 - - name: PC (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2954" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3035: 1 @@ -73664,16 +74194,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2955 - - name: PC (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2955" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2967: -1 - s_3035: 1 @@ -73681,16 +74211,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2956 - - name: PC (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2956" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3021: 1 @@ -73698,16 +74228,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2957 - - name: PC (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2957" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3021: 1 @@ -73715,16 +74245,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2958 - - name: PC (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2958" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3021: 1 @@ -73732,16 +74262,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2959 - - name: PC (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2959" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3021: 1 @@ -73749,16 +74279,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2960 - - name: PC (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2960" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3037: 1 @@ -73766,16 +74296,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2961 - - name: PC (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2961" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3037: 1 @@ -73783,16 +74313,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2962 - - name: PC (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2962" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3037: 1 @@ -73800,16 +74330,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2963 - - name: PC (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2963" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2969: -1 - s_3037: 1 @@ -73817,16 +74347,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2964 - - name: PC (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2964" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3023: 1 @@ -73834,16 +74364,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2965 - - name: PC (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2965" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3023: 1 @@ -73851,16 +74381,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2966 - - name: PC (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2966" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3023: 1 @@ -73868,16 +74398,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2967 - - name: PC (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2967" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3023: 1 @@ -73885,16 +74415,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2968 - - name: PC (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2968" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3039: 1 @@ -73902,16 +74432,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2969 - - name: PC (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2969" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3039: 1 @@ -73919,16 +74449,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2970 - - name: PC (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2970" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3039: 1 @@ -73936,16 +74466,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2971 - - name: PC (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane + - id: "r_2971" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2971: -1 - s_3039: 1 @@ -73953,16 +74483,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2972 - - name: PC (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2972" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3025: 1 @@ -73970,16 +74500,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2973 - - name: PC (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2973" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3025: 1 @@ -73987,16 +74517,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2974 - - name: PC (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2974" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3025: 1 @@ -74004,16 +74534,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2975 - - name: PC (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2975" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3025: 1 @@ -74021,16 +74551,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2976 - - name: PC (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2976" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3041: 1 @@ -74038,16 +74568,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2977 - - name: PC (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2977" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3041: 1 @@ -74055,16 +74585,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2978 - - name: PC (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2978" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3041: 1 @@ -74072,16 +74602,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2979 - - name: PC (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane + - id: "r_2979" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2973: -1 - s_3041: 1 @@ -74089,16 +74619,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2980 - - name: PC (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2980" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3020: 1 @@ -74106,16 +74636,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2981 - - name: PC (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2981" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3020: 1 @@ -74123,16 +74653,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2982 - - name: PC (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2982" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3020: 1 @@ -74140,16 +74670,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2983 - - name: PC (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2983" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3020: 1 @@ -74157,16 +74687,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2984 - - name: PC (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2984" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3036: 1 @@ -74174,16 +74704,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2985 - - name: PC (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2985" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3036: 1 @@ -74191,16 +74721,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2986 - - name: PC (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2986" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3036: 1 @@ -74208,16 +74738,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2987 - - name: PC (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2987" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2968: -1 - s_3036: 1 @@ -74225,16 +74755,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2988 - - name: PC (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2988" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3022: 1 @@ -74242,16 +74772,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2989 - - name: PC (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2989" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3022: 1 @@ -74259,16 +74789,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2990 - - name: PC (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2990" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3022: 1 @@ -74276,16 +74806,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2991 - - name: PC (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2991" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3022: 1 @@ -74293,16 +74823,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2992 - - name: PC (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2992" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3038: 1 @@ -74310,16 +74840,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2993 - - name: PC (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2993" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3038: 1 @@ -74327,16 +74857,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2994 - - name: PC (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2994" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3038: 1 @@ -74344,16 +74874,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2995 - - name: PC (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane + - id: "r_2995" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2970: -1 - s_3038: 1 @@ -74361,16 +74891,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2996 - - name: PC (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2996" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3024: 1 @@ -74378,16 +74908,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2997 - - name: PC (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2997" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3024: 1 @@ -74395,16 +74925,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2998 - - name: PC (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2998" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3024: 1 @@ -74412,16 +74942,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_2999 - - name: PC (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_2999" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3024: 1 @@ -74429,16 +74959,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3000 - - name: PC (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_3000" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3040: 1 @@ -74446,16 +74976,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3001 - - name: PC (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_3001" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3040: 1 @@ -74463,16 +74993,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3002 - - name: PC (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_3002" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3040: 1 @@ -74480,16 +75010,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3003 - - name: PC (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane + - id: "r_3003" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2972: -1 - s_3040: 1 @@ -74497,16 +75027,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3004 - - name: PC (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_3004" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3026: 1 @@ -74514,16 +75044,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3005 - - name: PC (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_3005" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3026: 1 @@ -74531,16 +75061,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3006 - - name: PC (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_3006" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3026: 1 @@ -74548,16 +75078,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3007 - - name: PC (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_3007" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3026: 1 @@ -74565,16 +75095,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3008 - - name: PC (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_3008" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3042: 1 @@ -74582,16 +75112,16 @@ - s_3428: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3009 - - name: PC (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_3009" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3042: 1 @@ -74599,16 +75129,16 @@ - s_3429: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3010 - - name: PC (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_3010" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3042: 1 @@ -74616,16 +75146,16 @@ - s_3430: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3011 - - name: PC (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane + - id: "r_3011" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - metabolites: !!omap - s_2974: -1 - s_3042: 1 @@ -74633,16 +75163,16 @@ - s_3431: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR008W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YNR008W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 2.3.1.158 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "2.3.1.158" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3022 - - name: PC phospholipase B (1-16:0, 2-16:1), ER membrane + - id: "r_3022" + - name: "PC phospholipase B (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -74651,16 +75181,16 @@ - s_3428: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML059C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YML059C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3023 - - name: PC phospholipase B (1-16:1, 2-16:1), ER membrane + - id: "r_3023" + - name: "PC phospholipase B (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -74669,16 +75199,16 @@ - s_3429: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML059C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YML059C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3024 - - name: PC phospholipase B (1-18:0, 2-16:1), ER membrane + - id: "r_3024" + - name: "PC phospholipase B (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -74687,16 +75217,16 @@ - s_3430: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML059C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YML059C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3025 - - name: PC phospholipase B (1-18:1, 2-16:1), ER membrane + - id: "r_3025" + - name: "PC phospholipase B (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -74705,16 +75235,16 @@ - s_3431: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML059C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YML059C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3026 - - name: PC phospholipase B (1-16:0, 2-18:1), ER membrane + - id: "r_3026" + - name: "PC phospholipase B (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -74723,16 +75253,16 @@ - s_3428: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML059C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YML059C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3027 - - name: PC phospholipase B (1-16:1, 2-18:1), ER membrane + - id: "r_3027" + - name: "PC phospholipase B (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -74741,16 +75271,16 @@ - s_3429: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML059C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YML059C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3028 - - name: PC phospholipase B (1-18:0, 2-18:1), ER membrane + - id: "r_3028" + - name: "PC phospholipase B (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -74759,16 +75289,16 @@ - s_3430: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML059C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YML059C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3029 - - name: PC phospholipase B (1-18:1, 2-18:1), ER membrane + - id: "r_3029" + - name: "PC phospholipase B (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -74777,16 +75307,16 @@ - s_3431: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML059C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YML059C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3030 - - name: LPC phospholipase B (16:0), ER membrane + - id: "r_3030" + - name: "LPC phospholipase B (16:0), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -74795,16 +75325,16 @@ - s_3447: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML059C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YML059C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3031 - - name: LPC phospholipase B (16:1), ER membrane + - id: "r_3031" + - name: "LPC phospholipase B (16:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -74813,16 +75343,16 @@ - s_3447: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML059C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YML059C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3032 - - name: LPC phospholipase B (18:0), ER membrane + - id: "r_3032" + - name: "LPC phospholipase B (18:0), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -74831,16 +75361,16 @@ - s_3447: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML059C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YML059C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3033 - - name: LPC phospholipase B (18:1), ER membrane + - id: "r_3033" + - name: "LPC phospholipase B (18:1), ER membrane" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -74849,16 +75379,16 @@ - s_3447: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YML059C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YML059C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3034 - - name: PC phospholipase B (1-16:0, 2-16:1), cell envelope + - id: "r_3034" + - name: "PC phospholipase B (1-16:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3448: -1 @@ -74867,16 +75397,16 @@ - s_3451: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3035 - - name: PC phospholipase B (1-16:1, 2-16:1), cell envelope + - id: "r_3035" + - name: "PC phospholipase B (1-16:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -74885,16 +75415,16 @@ - s_3453: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3036 - - name: PC phospholipase B (1-18:0, 2-16:1), cell envelope + - id: "r_3036" + - name: "PC phospholipase B (1-18:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -74903,16 +75433,16 @@ - s_3455: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3037 - - name: PC phospholipase B (1-18:1, 2-16:1), cell envelope + - id: "r_3037" + - name: "PC phospholipase B (1-18:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -74921,16 +75451,16 @@ - s_3457: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3038 - - name: PC phospholipase B (1-16:0, 2-18:1), cell envelope + - id: "r_3038" + - name: "PC phospholipase B (1-16:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -74939,16 +75469,16 @@ - s_3459: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3039 - - name: PC phospholipase B (1-16:1, 2-18:1), cell envelope + - id: "r_3039" + - name: "PC phospholipase B (1-16:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -74957,16 +75487,16 @@ - s_3460: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3040 - - name: PC phospholipase B (1-18:0, 2-18:1), cell envelope + - id: "r_3040" + - name: "PC phospholipase B (1-18:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -74975,16 +75505,16 @@ - s_3461: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3041 - - name: PC phospholipase B (1-18:1, 2-18:1), cell envelope + - id: "r_3041" + - name: "PC phospholipase B (1-18:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -74993,16 +75523,16 @@ - s_3462: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3042 - - name: LPC phospholipase B (16:0), cell envelope + - id: "r_3042" + - name: "LPC phospholipase B (16:0), cell envelope" - metabolites: !!omap - s_0793: 1 - s_1432: 1 @@ -75011,16 +75541,16 @@ - s_3463: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3043 - - name: LPC phospholipase B (16:1), cell envelope + - id: "r_3043" + - name: "LPC phospholipase B (16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_1432: 1 @@ -75029,16 +75559,16 @@ - s_3453: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3044 - - name: LPC phospholipase B (18:0), cell envelope + - id: "r_3044" + - name: "LPC phospholipase B (18:0), cell envelope" - metabolites: !!omap - s_0793: 1 - s_1432: 1 @@ -75047,16 +75577,16 @@ - s_3464: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3045 - - name: LPC phospholipase B (18:1), cell envelope + - id: "r_3045" + - name: "LPC phospholipase B (18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_1432: 1 @@ -75065,16 +75595,16 @@ - s_3459: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3046 - - name: PE phospholipase B (1-16:0, 2-16:1), cell envelope + - id: "r_3046" + - name: "PE phospholipase B (1-16:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75083,16 +75613,16 @@ - s_3466: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3047 - - name: PE phospholipase B (1-16:1, 2-16:1), cell envelope + - id: "r_3047" + - name: "PE phospholipase B (1-16:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75101,16 +75631,16 @@ - s_3468: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3048 - - name: PE phospholipase B (1-18:0, 2-16:1), cell envelope + - id: "r_3048" + - name: "PE phospholipase B (1-18:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75119,16 +75649,16 @@ - s_3470: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3049 - - name: PE phospholipase B (1-18:1, 2-16:1), cell envelope + - id: "r_3049" + - name: "PE phospholipase B (1-18:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75137,16 +75667,16 @@ - s_3472: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3050 - - name: PE phospholipase B (1-16:0, 2-18:1), cell envelope + - id: "r_3050" + - name: "PE phospholipase B (1-16:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75155,16 +75685,16 @@ - s_3473: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3051 - - name: PE phospholipase B (1-16:1, 2-18:1), cell envelope + - id: "r_3051" + - name: "PE phospholipase B (1-16:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75173,16 +75703,16 @@ - s_3474: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3052 - - name: PE phospholipase B (1-18:0, 2-18:1), cell envelope + - id: "r_3052" + - name: "PE phospholipase B (1-18:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75191,16 +75721,16 @@ - s_3475: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3053 - - name: PE phospholipase B (1-18:1, 2-18:1), cell envelope + - id: "r_3053" + - name: "PE phospholipase B (1-18:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75209,16 +75739,16 @@ - s_3476: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3054 - - name: LPE phospholipase B (16:0), cell envelope + - id: "r_3054" + - name: "LPE phospholipase B (16:0), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75227,16 +75757,16 @@ - s_3477: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3055 - - name: LPE phospholipase B (16:1), cell envelope + - id: "r_3055" + - name: "LPE phospholipase B (16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75245,16 +75775,16 @@ - s_3477: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3056 - - name: LPE phospholipase B (18:0), cell envelope + - id: "r_3056" + - name: "LPE phospholipase B (18:0), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75263,16 +75793,16 @@ - s_3477: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3057 - - name: LPE phospholipase B (18:1), cell envelope + - id: "r_3057" + - name: "LPE phospholipase B (18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75281,16 +75811,16 @@ - s_3477: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YMR008C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YMR008C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3058 - - name: PS phospholipase B (1-16:0, 2-16:1), cell envelope + - id: "r_3058" + - name: "PS phospholipase B (1-16:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75299,16 +75829,16 @@ - s_3479: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3059 - - name: PS phospholipase B (1-16:1, 2-16:1), cell envelope + - id: "r_3059" + - name: "PS phospholipase B (1-16:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75317,16 +75847,16 @@ - s_3481: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3060 - - name: PS phospholipase B (1-18:0, 2-16:1), cell envelope + - id: "r_3060" + - name: "PS phospholipase B (1-18:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75335,16 +75865,16 @@ - s_3483: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3061 - - name: PS phospholipase B (1-18:1, 2-16:1), cell envelope + - id: "r_3061" + - name: "PS phospholipase B (1-18:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75353,16 +75883,16 @@ - s_3485: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3062 - - name: PS phospholipase B (1-16:0, 2-18:1), cell envelope + - id: "r_3062" + - name: "PS phospholipase B (1-16:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75371,16 +75901,16 @@ - s_3486: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3063 - - name: PS phospholipase B (1-16:1, 2-18:1), cell envelope + - id: "r_3063" + - name: "PS phospholipase B (1-16:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75389,16 +75919,16 @@ - s_3487: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3064 - - name: PS phospholipase B (1-18:0, 2-18:1), cell envelope + - id: "r_3064" + - name: "PS phospholipase B (1-18:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75407,16 +75937,16 @@ - s_3488: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3065 - - name: PS phospholipase B (1-18:1, 2-18:1), cell envelope + - id: "r_3065" + - name: "PS phospholipase B (1-18:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75425,16 +75955,16 @@ - s_3489: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3066 - - name: LPS phospholipase B (16:0), cell envelope + - id: "r_3066" + - name: "LPS phospholipase B (16:0), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75443,16 +75973,16 @@ - s_3490: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3067 - - name: LPS phospholipase B (16:1), cell envelope + - id: "r_3067" + - name: "LPS phospholipase B (16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75461,16 +75991,16 @@ - s_3490: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3068 - - name: LPS phospholipase B (18:0), cell envelope + - id: "r_3068" + - name: "LPS phospholipase B (18:0), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75479,16 +76009,16 @@ - s_3490: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3069 - - name: LPS phospholipase B (18:1), cell envelope + - id: "r_3069" + - name: "LPS phospholipase B (18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3449: -1 @@ -75497,16 +76027,16 @@ - s_3490: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR006C or YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YMR006C or YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3070 - - name: PI phospholipase B (1-16:0, 2-16:1), cell envelope + - id: "r_3070" + - name: "PI phospholipase B (1-16:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3323: -1 @@ -75515,16 +76045,16 @@ - s_3491: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3071 - - name: PI phospholipase B (1-16:1, 2-16:1), cell envelope + - id: "r_3071" + - name: "PI phospholipase B (1-16:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3326: -1 @@ -75533,16 +76063,16 @@ - s_3492: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3072 - - name: PI phospholipase B (1-18:0, 2-16:1), cell envelope + - id: "r_3072" + - name: "PI phospholipase B (1-18:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3328: -1 @@ -75551,16 +76081,16 @@ - s_3493: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3073 - - name: PI phospholipase B (1-18:1, 2-16:1), cell envelope + - id: "r_3073" + - name: "PI phospholipase B (1-18:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3330: -1 @@ -75569,16 +76099,16 @@ - s_3494: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3074 - - name: PI phospholipase B (1-16:0, 2-18:1), cell envelope + - id: "r_3074" + - name: "PI phospholipase B (1-16:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3332: -1 @@ -75587,16 +76117,16 @@ - s_3491: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3075 - - name: PI phospholipase B (1-16:1, 2-18:1), cell envelope + - id: "r_3075" + - name: "PI phospholipase B (1-16:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3334: -1 @@ -75605,16 +76135,16 @@ - s_3492: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3076 - - name: PI phospholipase B (1-18:0, 2-18:1), cell envelope + - id: "r_3076" + - name: "PI phospholipase B (1-18:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3336: -1 @@ -75623,16 +76153,16 @@ - s_3493: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3077 - - name: PI phospholipase B (1-18:1, 2-18:1), cell envelope + - id: "r_3077" + - name: "PI phospholipase B (1-18:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_3338: -1 @@ -75641,16 +76171,16 @@ - s_3494: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3078 - - name: LPI phospholipase B (16:0), cell envelope + - id: "r_3078" + - name: "LPI phospholipase B (16:0), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3449: -1 @@ -75659,16 +76189,16 @@ - s_3495: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3079 - - name: LPI phospholipase B (16:1), cell envelope + - id: "r_3079" + - name: "LPI phospholipase B (16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3449: -1 @@ -75677,16 +76207,16 @@ - s_3495: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3080 - - name: LPI phospholipase B (18:0), cell envelope + - id: "r_3080" + - name: "LPI phospholipase B (18:0), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3449: -1 @@ -75695,16 +76225,16 @@ - s_3495: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3081 - - name: LPI phospholipase B (18:1), cell envelope + - id: "r_3081" + - name: "LPI phospholipase B (18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3449: -1 @@ -75713,16 +76243,16 @@ - s_3495: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL011W - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YOL011W" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.5 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.5" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3082 - - name: PI 4,5-P2 phospholipase C (1-16:0, 2-16:1), cytoplasm + - id: "r_3082" + - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 6 - s_0803: -1 @@ -75731,19 +76261,19 @@ - s_3498: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3083 - - name: PI 4,5-P2 phospholipase C (1-16:1, 2-16:1), cytoplasm + - id: "r_3083" + - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 6 - s_0803: -1 @@ -75752,19 +76282,19 @@ - s_3500: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3084 - - name: PI 4,5-P2 phospholipase C (1-18:0, 2-16:1), cytoplasm + - id: "r_3084" + - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 6 - s_0803: -1 @@ -75773,19 +76303,19 @@ - s_3502: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3085 - - name: PI 4,5-P2 phospholipase C (1-18:1, 2-16:1), cytoplasm + - id: "r_3085" + - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 6 - s_0803: -1 @@ -75794,19 +76324,19 @@ - s_3504: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3086 - - name: PI 4,5-P2 phospholipase C (1-16:0, 2-18:1), cytoplasm + - id: "r_3086" + - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 6 - s_0803: -1 @@ -75815,19 +76345,19 @@ - s_3506: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3087 - - name: PI 4,5-P2 phospholipase C (1-16:1, 2-18:1), cytoplasm + - id: "r_3087" + - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 6 - s_0803: -1 @@ -75836,19 +76366,19 @@ - s_3508: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3088 - - name: PI 4,5-P2 phospholipase C (1-18:0, 2-18:1), cytoplasm + - id: "r_3088" + - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 6 - s_0803: -1 @@ -75857,19 +76387,19 @@ - s_3510: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3089 - - name: PI 4,5-P2 phospholipase C (1-18:1, 2-18:1), cytoplasm + - id: "r_3089" + - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 6 - s_0803: -1 @@ -75878,19 +76408,19 @@ - s_3512: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3090 - - name: PI 4,5-P2 phospholipase C (1-16:0, 2-16:1), nucleus + - id: "r_3090" + - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-16:1), nucleus" - metabolites: !!omap - s_0125: 1 - s_0800: 6 @@ -75899,19 +76429,19 @@ - s_3513: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3091 - - name: PI 4,5-P2 phospholipase C (1-16:1, 2-16:1), nucleus + - id: "r_3091" + - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-16:1), nucleus" - metabolites: !!omap - s_0125: 1 - s_0800: 6 @@ -75920,19 +76450,19 @@ - s_3514: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3092 - - name: PI 4,5-P2 phospholipase C (1-18:0, 2-16:1), nucleus + - id: "r_3092" + - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-16:1), nucleus" - metabolites: !!omap - s_0125: 1 - s_0800: 6 @@ -75941,19 +76471,19 @@ - s_3515: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3093 - - name: PI 4,5-P2 phospholipase C (1-18:1, 2-16:1), nucleus + - id: "r_3093" + - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-16:1), nucleus" - metabolites: !!omap - s_0125: 1 - s_0800: 6 @@ -75962,19 +76492,19 @@ - s_3516: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3094 - - name: PI 4,5-P2 phospholipase C (1-16:0, 2-18:1), nucleus + - id: "r_3094" + - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-18:1), nucleus" - metabolites: !!omap - s_0125: 1 - s_0800: 6 @@ -75983,19 +76513,19 @@ - s_3517: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3095 - - name: PI 4,5-P2 phospholipase C (1-16:1, 2-18:1), nucleus + - id: "r_3095" + - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-18:1), nucleus" - metabolites: !!omap - s_0125: 1 - s_0800: 6 @@ -76004,19 +76534,19 @@ - s_3518: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3096 - - name: PI 4,5-P2 phospholipase C (1-18:0, 2-18:1), nucleus + - id: "r_3096" + - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-18:1), nucleus" - metabolites: !!omap - s_0125: 1 - s_0800: 6 @@ -76025,19 +76555,19 @@ - s_3519: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3097 - - name: PI 4,5-P2 phospholipase C (1-18:1, 2-18:1), nucleus + - id: "r_3097" + - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-18:1), nucleus" - metabolites: !!omap - s_0125: 1 - s_0800: 6 @@ -76046,19 +76576,19 @@ - s_3520: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL268W + - gene_reaction_rule: "YPL268W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04933 AGE-RAGE signaling pathway in diabetic complications + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - - ec-code: 3.1.4.11 - - pmid: 17382260 - - sbo: SBO:0000176 + - ec-code: "3.1.4.11" + - pmid: "17382260" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3098 - - name: PG phospholipase C (1-16:0, 2-16:1), mitochondrial membrane + - id: "r_3098" + - name: "PG phospholipase C (1-16:0, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3218: 1 @@ -76067,16 +76597,16 @@ - s_3521: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL206C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPL206C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3099 - - name: PG phospholipase C (1-16:1, 2-16:1), mitochondrial membrane + - id: "r_3099" + - name: "PG phospholipase C (1-16:1, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3218: 1 @@ -76085,16 +76615,16 @@ - s_3522: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL206C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPL206C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3100 - - name: PG phospholipase C (1-18:0, 2-16:1), mitochondrial membrane + - id: "r_3100" + - name: "PG phospholipase C (1-18:0, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3218: 1 @@ -76103,16 +76633,16 @@ - s_3523: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL206C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPL206C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3101 - - name: PG phospholipase C (1-18:1, 2-16:1), mitochondrial membrane + - id: "r_3101" + - name: "PG phospholipase C (1-18:1, 2-16:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3218: 1 @@ -76121,16 +76651,16 @@ - s_3524: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL206C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPL206C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3102 - - name: PG phospholipase C (1-16:0, 2-18:1), mitochondrial membrane + - id: "r_3102" + - name: "PG phospholipase C (1-16:0, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3218: 1 @@ -76139,16 +76669,16 @@ - s_3525: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL206C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPL206C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3103 - - name: PG phospholipase C (1-16:1, 2-18:1), mitochondrial membrane + - id: "r_3103" + - name: "PG phospholipase C (1-16:1, 2-18:1), mitochondrial membrane" - metabolites: !!omap - s_3094: 2 - s_3218: 1 @@ -76157,16 +76687,16 @@ - s_3526: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YPL206C - - subsystem: sce00564 Glycerophospholipid metabolism + - gene_reaction_rule: "YPL206C" + - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - - ec-code: 3.1.4.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3104 - - name: PC phospholipase D (1-16:0, 2-16:1), cell envelope + - id: "r_3104" + - name: "PC phospholipase D (1-16:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0511: 1 - s_0793: -1 @@ -76175,19 +76705,19 @@ - s_3527: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR031C + - gene_reaction_rule: "YKR031C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04144 Endocytosis + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 3.1.4.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3105 - - name: PC phospholipase D (1-16:1, 2-16:1), cell envelope + - id: "r_3105" + - name: "PC phospholipase D (1-16:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0511: 1 - s_0793: -1 @@ -76196,19 +76726,19 @@ - s_3528: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR031C + - gene_reaction_rule: "YKR031C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04144 Endocytosis + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 3.1.4.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3106 - - name: PC phospholipase D (1-18:0, 2-16:1), cell envelope + - id: "r_3106" + - name: "PC phospholipase D (1-18:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0511: 1 - s_0793: -1 @@ -76217,19 +76747,19 @@ - s_3529: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR031C + - gene_reaction_rule: "YKR031C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04144 Endocytosis + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 3.1.4.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3107 - - name: PC phospholipase D (1-18:1, 2-16:1), cell envelope + - id: "r_3107" + - name: "PC phospholipase D (1-18:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0511: 1 - s_0793: -1 @@ -76238,19 +76768,19 @@ - s_3530: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR031C + - gene_reaction_rule: "YKR031C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04144 Endocytosis + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 3.1.4.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3108 - - name: PC phospholipase D (1-16:0, 2-18:1), cell envelope + - id: "r_3108" + - name: "PC phospholipase D (1-16:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0511: 1 - s_0793: -1 @@ -76259,19 +76789,19 @@ - s_3531: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR031C + - gene_reaction_rule: "YKR031C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04144 Endocytosis + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 3.1.4.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3109 - - name: PC phospholipase D (1-16:1, 2-18:1), cell envelope + - id: "r_3109" + - name: "PC phospholipase D (1-16:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0511: 1 - s_0793: -1 @@ -76280,19 +76810,19 @@ - s_3532: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR031C + - gene_reaction_rule: "YKR031C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04144 Endocytosis + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 3.1.4.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3110 - - name: PC phospholipase D (1-18:0, 2-18:1), cell envelope + - id: "r_3110" + - name: "PC phospholipase D (1-18:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0511: 1 - s_0793: -1 @@ -76301,19 +76831,19 @@ - s_3533: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR031C + - gene_reaction_rule: "YKR031C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04144 Endocytosis + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 3.1.4.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3111 - - name: PC phospholipase D (1-18:1, 2-18:1), cell envelope + - id: "r_3111" + - name: "PC phospholipase D (1-18:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0511: 1 - s_0793: -1 @@ -76322,19 +76852,19 @@ - s_3534: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR031C + - gene_reaction_rule: "YKR031C" - subsystem: - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce04144 Endocytosis + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce04144 Endocytosis" - annotation: !!omap - - ec-code: 3.1.4.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.4.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3112 - - name: PI 3-P phosphatase (1-16:0, 2-16:1), cell envelope + - id: "r_3112" + - name: "PI 3-P phosphatase (1-16:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3323: 1 @@ -76343,20 +76873,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3113 - - name: PI 3-P phosphatase (1-16:1, 2-16:1), cell envelope + - id: "r_3113" + - name: "PI 3-P phosphatase (1-16:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3326: 1 @@ -76365,20 +76895,20 @@ - s_3537: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3114 - - name: PI 3-P phosphatase (1-18:0, 2-16:1), cell envelope + - id: "r_3114" + - name: "PI 3-P phosphatase (1-18:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3328: 1 @@ -76387,20 +76917,20 @@ - s_3538: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3115 - - name: PI 3-P phosphatase (1-18:1, 2-16:1), cell envelope + - id: "r_3115" + - name: "PI 3-P phosphatase (1-18:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3330: 1 @@ -76409,20 +76939,20 @@ - s_3539: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3116 - - name: PI 3-P phosphatase (1-16:0, 2-18:1), cell envelope + - id: "r_3116" + - name: "PI 3-P phosphatase (1-16:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3332: 1 @@ -76431,20 +76961,20 @@ - s_3540: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3117 - - name: PI 3-P phosphatase (1-16:1, 2-18:1), cell envelope + - id: "r_3117" + - name: "PI 3-P phosphatase (1-16:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3334: 1 @@ -76453,20 +76983,20 @@ - s_3541: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3118 - - name: PI 3-P phosphatase (1-18:0, 2-18:1), cell envelope + - id: "r_3118" + - name: "PI 3-P phosphatase (1-18:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3336: 1 @@ -76475,20 +77005,20 @@ - s_3542: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3119 - - name: PI 3-P phosphatase (1-18:1, 2-18:1), cell envelope + - id: "r_3119" + - name: "PI 3-P phosphatase (1-18:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3338: 1 @@ -76497,20 +77027,20 @@ - s_3543: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3120 - - name: PI 3-P phosphatase (1-16:0, 2-16:1), cytoplasm + - id: "r_3120" + - name: "PI 3-P phosphatase (1-16:0, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -76519,22 +77049,22 @@ - s_3545: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR110W or YNL106C or YOR109W + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - 3.1.3.64 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3121 - - name: PI 3-P phosphatase (1-16:1, 2-16:1), cytoplasm + - id: "r_3121" + - name: "PI 3-P phosphatase (1-16:1, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -76543,23 +77073,23 @@ - s_3547: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR110W or YNL106C or YOR109W + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - 3.1.3.64 - - bigg.reaction: PIP3P_HDE_HDE_c - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" + - bigg.reaction: "PIP3P_HDE_HDE_c" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3122 - - name: PI 3-P phosphatase (1-18:0, 2-16:1), cytoplasm + - id: "r_3122" + - name: "PI 3-P phosphatase (1-18:0, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -76568,22 +77098,22 @@ - s_3549: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR110W or YNL106C or YOR109W + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - 3.1.3.64 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3123 - - name: PI 3-P phosphatase (1-18:1, 2-16:1), cytoplasm + - id: "r_3123" + - name: "PI 3-P phosphatase (1-18:1, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -76592,22 +77122,22 @@ - s_3551: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR110W or YNL106C or YOR109W + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - 3.1.3.64 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3124 - - name: PI 3-P phosphatase (1-16:0, 2-18:1), cytoplasm + - id: "r_3124" + - name: "PI 3-P phosphatase (1-16:0, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -76616,22 +77146,22 @@ - s_3553: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR110W or YNL106C or YOR109W + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - 3.1.3.64 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3125 - - name: PI 3-P phosphatase (1-16:1, 2-18:1), cytoplasm + - id: "r_3125" + - name: "PI 3-P phosphatase (1-16:1, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -76640,22 +77170,22 @@ - s_3555: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR110W or YNL106C or YOR109W + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - 3.1.3.64 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3126 - - name: PI 3-P phosphatase (1-18:0, 2-18:1), cytoplasm + - id: "r_3126" + - name: "PI 3-P phosphatase (1-18:0, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -76664,22 +77194,22 @@ - s_3557: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR110W or YNL106C or YOR109W + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - 3.1.3.64 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3127 - - name: PI 3-P phosphatase (1-18:1, 2-18:1), cytoplasm + - id: "r_3127" + - name: "PI 3-P phosphatase (1-18:1, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -76688,22 +77218,22 @@ - s_3559: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR110W or YNL106C or YOR109W + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system - - sce04138 Autophagy - yeast + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" + - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - 3.1.3.64 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3128 - - name: PI 3-P phosphatase (1-16:0, 2-16:1), ER membrane + - id: "r_3128" + - name: "PI 3-P phosphatase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -76712,18 +77242,18 @@ - s_3560: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3129 - - name: PI 3-P phosphatase (1-16:1, 2-16:1), ER membrane + - id: "r_3129" + - name: "PI 3-P phosphatase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -76732,18 +77262,18 @@ - s_3561: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3130 - - name: PI 3-P phosphatase (1-18:0, 2-16:1), ER membrane + - id: "r_3130" + - name: "PI 3-P phosphatase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -76752,18 +77282,18 @@ - s_3562: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3131 - - name: PI 3-P phosphatase (1-18:1, 2-16:1), ER membrane + - id: "r_3131" + - name: "PI 3-P phosphatase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -76772,18 +77302,18 @@ - s_3563: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3132 - - name: PI 3-P phosphatase (1-16:0, 2-18:1), ER membrane + - id: "r_3132" + - name: "PI 3-P phosphatase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -76792,18 +77322,18 @@ - s_3564: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3133 - - name: PI 3-P phosphatase (1-16:1, 2-18:1), ER membrane + - id: "r_3133" + - name: "PI 3-P phosphatase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -76812,18 +77342,18 @@ - s_3565: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3134 - - name: PI 3-P phosphatase (1-18:0, 2-18:1), ER membrane + - id: "r_3134" + - name: "PI 3-P phosphatase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -76832,18 +77362,18 @@ - s_3566: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3135 - - name: PI 3-P phosphatase (1-18:1, 2-18:1), ER membrane + - id: "r_3135" + - name: "PI 3-P phosphatase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -76852,18 +77382,18 @@ - s_3567: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3136 - - name: PI 3-P phosphatase (1-16:0, 2-16:1), Golgi membrane + - id: "r_3136" + - name: "PI 3-P phosphatase (1-16:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -76872,18 +77402,18 @@ - s_3568: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3137 - - name: PI 3-P phosphatase (1-16:1, 2-16:1), Golgi membrane + - id: "r_3137" + - name: "PI 3-P phosphatase (1-16:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -76892,18 +77422,18 @@ - s_3569: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3138 - - name: PI 3-P phosphatase (1-18:0, 2-16:1), Golgi membrane + - id: "r_3138" + - name: "PI 3-P phosphatase (1-18:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -76912,18 +77442,18 @@ - s_3570: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3139 - - name: PI 3-P phosphatase (1-18:1, 2-16:1), Golgi membrane + - id: "r_3139" + - name: "PI 3-P phosphatase (1-18:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -76932,18 +77462,18 @@ - s_3571: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3140 - - name: PI 3-P phosphatase (1-16:0, 2-18:1), Golgi membrane + - id: "r_3140" + - name: "PI 3-P phosphatase (1-16:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -76952,18 +77482,18 @@ - s_3572: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3141 - - name: PI 3-P phosphatase (1-16:1, 2-18:1), Golgi membrane + - id: "r_3141" + - name: "PI 3-P phosphatase (1-16:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -76972,18 +77502,18 @@ - s_3573: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3142 - - name: PI 3-P phosphatase (1-18:0, 2-18:1), Golgi membrane + - id: "r_3142" + - name: "PI 3-P phosphatase (1-18:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -76992,18 +77522,18 @@ - s_3574: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3143 - - name: PI 3-P phosphatase (1-18:1, 2-18:1), Golgi membrane + - id: "r_3143" + - name: "PI 3-P phosphatase (1-18:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -77012,18 +77542,18 @@ - s_3575: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3144 - - name: PI 4-P phosphatase (1-16:0, 2-16:1), cell envelope + - id: "r_3144" + - name: "PI 4-P phosphatase (1-16:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3323: 1 @@ -77032,20 +77562,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3145 - - name: PI 4-P phosphatase (1-16:1, 2-16:1), cell envelope + - id: "r_3145" + - name: "PI 4-P phosphatase (1-16:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3326: 1 @@ -77054,20 +77584,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3146 - - name: PI 4-P phosphatase (1-18:0, 2-16:1), cell envelope + - id: "r_3146" + - name: "PI 4-P phosphatase (1-18:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3328: 1 @@ -77076,20 +77606,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3147 - - name: PI 4-P phosphatase (1-18:1, 2-16:1), cell envelope + - id: "r_3147" + - name: "PI 4-P phosphatase (1-18:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3330: 1 @@ -77098,20 +77628,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3148 - - name: PI 4-P phosphatase (1-16:0, 2-18:1), cell envelope + - id: "r_3148" + - name: "PI 4-P phosphatase (1-16:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3332: 1 @@ -77120,20 +77650,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3149 - - name: PI 4-P phosphatase (1-16:1, 2-18:1), cell envelope + - id: "r_3149" + - name: "PI 4-P phosphatase (1-16:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3334: 1 @@ -77142,20 +77672,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3150 - - name: PI 4-P phosphatase (1-18:0, 2-18:1), cell envelope + - id: "r_3150" + - name: "PI 4-P phosphatase (1-18:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3336: 1 @@ -77164,20 +77694,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3151 - - name: PI 4-P phosphatase (1-18:1, 2-18:1), cell envelope + - id: "r_3151" + - name: "PI 4-P phosphatase (1-18:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3338: 1 @@ -77186,20 +77716,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3152 - - name: PI 4-P phosphatase (1-16:0, 2-16:1), cytoplasm + - id: "r_3152" + - name: "PI 4-P phosphatase (1-16:0, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77208,20 +77738,20 @@ - s_3576: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3153 - - name: PI 4-P phosphatase (1-16:1, 2-16:1), cytoplasm + - id: "r_3153" + - name: "PI 4-P phosphatase (1-16:1, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77230,20 +77760,20 @@ - s_3577: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3154 - - name: PI 4-P phosphatase (1-18:0, 2-16:1), cytoplasm + - id: "r_3154" + - name: "PI 4-P phosphatase (1-18:0, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77252,20 +77782,20 @@ - s_3578: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3155 - - name: PI 4-P phosphatase (1-18:1, 2-16:1), cytoplasm + - id: "r_3155" + - name: "PI 4-P phosphatase (1-18:1, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77274,20 +77804,20 @@ - s_3579: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3156 - - name: PI 4-P phosphatase (1-16:0, 2-18:1), cytoplasm + - id: "r_3156" + - name: "PI 4-P phosphatase (1-16:0, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77296,20 +77826,20 @@ - s_3580: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3157 - - name: PI 4-P phosphatase (1-16:1, 2-18:1), cytoplasm + - id: "r_3157" + - name: "PI 4-P phosphatase (1-16:1, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77318,20 +77848,20 @@ - s_3581: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3158 - - name: PI 4-P phosphatase (1-18:0, 2-18:1), cytoplasm + - id: "r_3158" + - name: "PI 4-P phosphatase (1-18:0, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77340,20 +77870,20 @@ - s_3582: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3159 - - name: PI 4-P phosphatase (1-18:1, 2-18:1), cytoplasm + - id: "r_3159" + - name: "PI 4-P phosphatase (1-18:1, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77362,20 +77892,20 @@ - s_3583: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3160 - - name: PI 4-P phosphatase (1-16:0, 2-16:1), ER membrane + - id: "r_3160" + - name: "PI 4-P phosphatase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -77384,18 +77914,18 @@ - s_3584: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3161 - - name: PI 4-P phosphatase (1-16:1, 2-16:1), ER membrane + - id: "r_3161" + - name: "PI 4-P phosphatase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -77404,18 +77934,18 @@ - s_3585: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3162 - - name: PI 4-P phosphatase (1-18:0, 2-16:1), ER membrane + - id: "r_3162" + - name: "PI 4-P phosphatase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -77424,18 +77954,18 @@ - s_3586: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3163 - - name: PI 4-P phosphatase (1-18:1, 2-16:1), ER membrane + - id: "r_3163" + - name: "PI 4-P phosphatase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -77444,18 +77974,18 @@ - s_3587: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3164 - - name: PI 4-P phosphatase (1-16:0, 2-18:1), ER membrane + - id: "r_3164" + - name: "PI 4-P phosphatase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -77464,18 +77994,18 @@ - s_3588: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3165 - - name: PI 4-P phosphatase (1-16:1, 2-18:1), ER membrane + - id: "r_3165" + - name: "PI 4-P phosphatase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -77484,18 +78014,18 @@ - s_3589: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3166 - - name: PI 4-P phosphatase (1-18:0, 2-18:1), ER membrane + - id: "r_3166" + - name: "PI 4-P phosphatase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -77504,18 +78034,18 @@ - s_3590: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3167 - - name: PI 4-P phosphatase (1-18:1, 2-18:1), ER membrane + - id: "r_3167" + - name: "PI 4-P phosphatase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -77524,18 +78054,18 @@ - s_3591: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3168 - - name: PI 4-P phosphatase (1-16:0, 2-16:1), Golgi membrane + - id: "r_3168" + - name: "PI 4-P phosphatase (1-16:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -77544,18 +78074,18 @@ - s_3361: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3169 - - name: PI 4-P phosphatase (1-16:1, 2-16:1), Golgi membrane + - id: "r_3169" + - name: "PI 4-P phosphatase (1-16:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -77564,18 +78094,18 @@ - s_3363: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3170 - - name: PI 4-P phosphatase (1-18:0, 2-16:1), Golgi membrane + - id: "r_3170" + - name: "PI 4-P phosphatase (1-18:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -77584,18 +78114,18 @@ - s_3365: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3171 - - name: PI 4-P phosphatase (1-18:1, 2-16:1), Golgi membrane + - id: "r_3171" + - name: "PI 4-P phosphatase (1-18:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -77604,18 +78134,18 @@ - s_3367: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3172 - - name: PI 4-P phosphatase (1-16:0, 2-18:1), Golgi membrane + - id: "r_3172" + - name: "PI 4-P phosphatase (1-16:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -77624,18 +78154,18 @@ - s_3369: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3173 - - name: PI 4-P phosphatase (1-16:1, 2-18:1), Golgi membrane + - id: "r_3173" + - name: "PI 4-P phosphatase (1-16:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -77644,18 +78174,18 @@ - s_3371: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3174 - - name: PI 4-P phosphatase (1-18:0, 2-18:1), Golgi membrane + - id: "r_3174" + - name: "PI 4-P phosphatase (1-18:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -77664,18 +78194,18 @@ - s_3373: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3175 - - name: PI 4-P phosphatase (1-18:1, 2-18:1), Golgi membrane + - id: "r_3175" + - name: "PI 4-P phosphatase (1-18:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -77684,18 +78214,18 @@ - s_3375: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL212W + - gene_reaction_rule: "YKL212W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3176 - - name: PI 3,5-P2 phosphatase (1-16:0, 2-16:1), cell envelope + - id: "r_3176" + - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3449: -1 @@ -77704,20 +78234,20 @@ - s_3592: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3177 - - name: PI 3,5-P2 phosphatase (1-16:1, 2-16:1), cell envelope + - id: "r_3177" + - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3449: -1 @@ -77726,20 +78256,20 @@ - s_3593: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3178 - - name: PI 3,5-P2 phosphatase (1-18:0, 2-16:1), cell envelope + - id: "r_3178" + - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3449: -1 @@ -77748,20 +78278,20 @@ - s_3594: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3179 - - name: PI 3,5-P2 phosphatase (1-18:1, 2-16:1), cell envelope + - id: "r_3179" + - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3449: -1 @@ -77770,20 +78300,20 @@ - s_3595: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3180 - - name: PI 3,5-P2 phosphatase (1-16:0, 2-18:1), cell envelope + - id: "r_3180" + - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3449: -1 @@ -77792,20 +78322,20 @@ - s_3596: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3181 - - name: PI 3,5-P2 phosphatase (1-16:1, 2-18:1), cell envelope + - id: "r_3181" + - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3449: -1 @@ -77814,20 +78344,20 @@ - s_3597: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3182 - - name: PI 3,5-P2 phosphatase (1-18:0, 2-18:1), cell envelope + - id: "r_3182" + - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3449: -1 @@ -77836,20 +78366,20 @@ - s_3598: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3183 - - name: PI 3,5-P2 phosphatase (1-18:1, 2-18:1), cell envelope + - id: "r_3183" + - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3449: -1 @@ -77858,20 +78388,20 @@ - s_3599: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3184 - - name: PI 3,5-P2 phosphatase (1-16:0, 2-16:1), cytoplasm + - id: "r_3184" + - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77880,20 +78410,20 @@ - s_3600: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3185 - - name: PI 3,5-P2 phosphatase (1-16:1, 2-16:1), cytoplasm + - id: "r_3185" + - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77902,20 +78432,20 @@ - s_3601: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3186 - - name: PI 3,5-P2 phosphatase (1-18:0, 2-16:1), cytoplasm + - id: "r_3186" + - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77924,20 +78454,20 @@ - s_3602: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3187 - - name: PI 3,5-P2 phosphatase (1-18:1, 2-16:1), cytoplasm + - id: "r_3187" + - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77946,20 +78476,20 @@ - s_3603: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3188 - - name: PI 3,5-P2 phosphatase (1-16:0, 2-18:1), cytoplasm + - id: "r_3188" + - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77968,20 +78498,20 @@ - s_3604: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3189 - - name: PI 3,5-P2 phosphatase (1-16:1, 2-18:1), cytoplasm + - id: "r_3189" + - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -77990,20 +78520,20 @@ - s_3605: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3190 - - name: PI 3,5-P2 phosphatase (1-18:0, 2-18:1), cytoplasm + - id: "r_3190" + - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -78012,20 +78542,20 @@ - s_3606: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3191 - - name: PI 3,5-P2 phosphatase (1-18:1, 2-18:1), cytoplasm + - id: "r_3191" + - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -78034,20 +78564,20 @@ - s_3607: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YNL106C or YOR109W + - gene_reaction_rule: "YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3192 - - name: PI 4,5-P2 phosphatase (1-16:0, 2-16:1), cell envelope + - id: "r_3192" + - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3325: 1 @@ -78056,20 +78586,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3193 - - name: PI 4,5-P2 phosphatase (1-16:1, 2-16:1), cell envelope + - id: "r_3193" + - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3327: 1 @@ -78078,20 +78608,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3194 - - name: PI 4,5-P2 phosphatase (1-18:0, 2-16:1), cell envelope + - id: "r_3194" + - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3329: 1 @@ -78100,20 +78630,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3195 - - name: PI 4,5-P2 phosphatase (1-18:1, 2-16:1), cell envelope + - id: "r_3195" + - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3331: 1 @@ -78122,20 +78652,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3196 - - name: PI 4,5-P2 phosphatase (1-16:0, 2-18:1), cell envelope + - id: "r_3196" + - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3333: 1 @@ -78144,20 +78674,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3197 - - name: PI 4,5-P2 phosphatase (1-16:1, 2-18:1), cell envelope + - id: "r_3197" + - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3335: 1 @@ -78166,20 +78696,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3198 - - name: PI 4,5-P2 phosphatase (1-18:0, 2-18:1), cell envelope + - id: "r_3198" + - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3337: 1 @@ -78188,20 +78718,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3199 - - name: PI 4,5-P2 phosphatase (1-18:1, 2-18:1), cell envelope + - id: "r_3199" + - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), cell envelope" - metabolites: !!omap - s_0793: 2 - s_3339: 1 @@ -78210,20 +78740,20 @@ - s_3536: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3200 - - name: PI 4,5-P2 phosphatase (1-16:0, 2-16:1), cytoplasm + - id: "r_3200" + - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -78232,20 +78762,20 @@ - s_3576: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3201 - - name: PI 4,5-P2 phosphatase (1-16:1, 2-16:1), cytoplasm + - id: "r_3201" + - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -78254,20 +78784,20 @@ - s_3577: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3202 - - name: PI 4,5-P2 phosphatase (1-18:0, 2-16:1), cytoplasm + - id: "r_3202" + - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -78276,20 +78806,20 @@ - s_3578: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3203 - - name: PI 4,5-P2 phosphatase (1-18:1, 2-16:1), cytoplasm + - id: "r_3203" + - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -78298,20 +78828,20 @@ - s_3579: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3204 - - name: PI 4,5-P2 phosphatase (1-16:0, 2-18:1), cytoplasm + - id: "r_3204" + - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -78320,20 +78850,20 @@ - s_3580: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3205 - - name: PI 4,5-P2 phosphatase (1-16:1, 2-18:1), cytoplasm + - id: "r_3205" + - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -78342,20 +78872,20 @@ - s_3581: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3206 - - name: PI 4,5-P2 phosphatase (1-18:0, 2-18:1), cytoplasm + - id: "r_3206" + - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -78364,20 +78894,20 @@ - s_3582: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3207 - - name: PI 4,5-P2 phosphatase (1-18:1, 2-18:1), cytoplasm + - id: "r_3207" + - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -78386,20 +78916,20 @@ - s_3583: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL002C or YNL106C or YOR109W + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3208 - - name: PI 4,5-P2 phosphatase (1-16:0, 2-16:1), ER membrane + - id: "r_3208" + - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -78408,18 +78938,18 @@ - s_3608: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL065C + - gene_reaction_rule: "YOL065C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3209 - - name: PI 4,5-P2 phosphatase (1-16:1, 2-16:1), ER membrane + - id: "r_3209" + - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -78428,18 +78958,18 @@ - s_3609: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL065C + - gene_reaction_rule: "YOL065C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3210 - - name: PI 4,5-P2 phosphatase (1-18:0, 2-16:1), ER membrane + - id: "r_3210" + - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -78448,18 +78978,18 @@ - s_3610: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL065C + - gene_reaction_rule: "YOL065C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3211 - - name: PI 4,5-P2 phosphatase (1-18:1, 2-16:1), ER membrane + - id: "r_3211" + - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -78468,18 +78998,18 @@ - s_3611: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL065C + - gene_reaction_rule: "YOL065C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3212 - - name: PI 4,5-P2 phosphatase (1-16:0, 2-18:1), ER membrane + - id: "r_3212" + - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -78488,18 +79018,18 @@ - s_3612: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL065C + - gene_reaction_rule: "YOL065C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3213 - - name: PI 4,5-P2 phosphatase (1-16:1, 2-18:1), ER membrane + - id: "r_3213" + - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -78508,18 +79038,18 @@ - s_3613: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL065C + - gene_reaction_rule: "YOL065C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3214 - - name: PI 4,5-P2 phosphatase (1-18:0, 2-18:1), ER membrane + - id: "r_3214" + - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -78528,18 +79058,18 @@ - s_3614: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL065C + - gene_reaction_rule: "YOL065C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3215 - - name: PI 4,5-P2 phosphatase (1-18:1, 2-18:1), ER membrane + - id: "r_3215" + - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), ER membrane" - metabolites: !!omap - s_2783: 2 - s_2808: -1 @@ -78548,18 +79078,18 @@ - s_3615: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOL065C + - gene_reaction_rule: "YOL065C" - subsystem: - - sce00562 Inositol phosphate metabolism - - sce04070 Phosphatidylinositol signaling system + - "sce00562 Inositol phosphate metabolism" + - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - - ec-code: 3.1.3.36 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.36" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3216 - - name: PI 3,5-P2 phosphatase (1-16:0, 2-16:1), vacuolar membrane + - id: "r_3216" + - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78568,15 +79098,15 @@ - s_3416: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR386W and YNL325C + - gene_reaction_rule: "YLR386W and YNL325C" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3217 - - name: PI 3,5-P2 phosphatase (1-16:1, 2-16:1), vacuolar membrane + - id: "r_3217" + - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78585,15 +79115,15 @@ - s_3417: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR386W and YNL325C + - gene_reaction_rule: "YLR386W and YNL325C" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3218 - - name: PI 3,5-P2 phosphatase (1-18:0, 2-16:1), vacuolar membrane + - id: "r_3218" + - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78602,15 +79132,15 @@ - s_3418: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR386W and YNL325C + - gene_reaction_rule: "YLR386W and YNL325C" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3219 - - name: PI 3,5-P2 phosphatase (1-18:1, 2-16:1), vacuolar membrane + - id: "r_3219" + - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78619,15 +79149,15 @@ - s_3419: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR386W and YNL325C + - gene_reaction_rule: "YLR386W and YNL325C" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3220 - - name: PI 3,5-P2 phosphatase (1-16:0, 2-18:1), vacuolar membrane + - id: "r_3220" + - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78636,15 +79166,15 @@ - s_3420: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR386W and YNL325C + - gene_reaction_rule: "YLR386W and YNL325C" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3221 - - name: PI 3,5-P2 phosphatase (1-16:1, 2-18:1), vacuolar membrane + - id: "r_3221" + - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78653,15 +79183,15 @@ - s_3421: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR386W and YNL325C + - gene_reaction_rule: "YLR386W and YNL325C" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3222 - - name: PI 3,5-P2 phosphatase (1-18:0, 2-18:1), vacuolar membrane + - id: "r_3222" + - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78670,15 +79200,15 @@ - s_3422: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR386W and YNL325C + - gene_reaction_rule: "YLR386W and YNL325C" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3223 - - name: PI 3,5-P2 phosphatase (1-18:1, 2-18:1), vacuolar membrane + - id: "r_3223" + - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78687,15 +79217,15 @@ - s_3423: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR386W and YNL325C + - gene_reaction_rule: "YLR386W and YNL325C" - annotation: !!omap - - ec-code: 3.1.3.- - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3224 - - name: DGPP phosphatase (1-16:0, 2-16:1), vacuolar membrane + - id: "r_3224" + - name: "DGPP phosphatase (1-16:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2975: 1 - s_2976: -1 @@ -78704,21 +79234,21 @@ - s_3616: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3225 - - name: DGPP phosphatase (1-16:1, 2-16:1), vacuolar membrane + - id: "r_3225" + - name: "DGPP phosphatase (1-16:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78727,21 +79257,21 @@ - s_3617: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3226 - - name: DGPP phosphatase (1-18:0, 2-16:1), vacuolar membrane + - id: "r_3226" + - name: "DGPP phosphatase (1-18:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78750,21 +79280,21 @@ - s_3618: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3227 - - name: DGPP phosphatase (1-18:1, 2-16:1), vacuolar membrane + - id: "r_3227" + - name: "DGPP phosphatase (1-18:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78773,21 +79303,21 @@ - s_3619: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3228 - - name: DGPP phosphatase (1-16:0, 2-18:1), vacuolar membrane + - id: "r_3228" + - name: "DGPP phosphatase (1-16:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78796,21 +79326,21 @@ - s_3620: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3229 - - name: DGPP phosphatase (1-16:1, 2-18:1), vacuolar membrane + - id: "r_3229" + - name: "DGPP phosphatase (1-16:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78819,21 +79349,21 @@ - s_3621: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3230 - - name: DGPP phosphatase (1-18:0, 2-18:1), vacuolar membrane + - id: "r_3230" + - name: "DGPP phosphatase (1-18:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78842,21 +79372,21 @@ - s_3622: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3231 - - name: DGPP phosphatase (1-18:1, 2-18:1), vacuolar membrane + - id: "r_3231" + - name: "DGPP phosphatase (1-18:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -78865,21 +79395,21 @@ - s_3623: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3232 - - name: DGPP phosphatase (1-16:0, 2-16:1), Golgi membrane + - id: "r_3232" + - name: "DGPP phosphatase (1-16:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2993: 1 - s_2994: -1 @@ -78888,17 +79418,17 @@ - s_3624: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3233 - - name: DGPP phosphatase (1-16:1, 2-16:1), Golgi membrane + - id: "r_3233" + - name: "DGPP phosphatase (1-16:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -78907,17 +79437,17 @@ - s_3625: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3234 - - name: DGPP phosphatase (1-18:0, 2-16:1), Golgi membrane + - id: "r_3234" + - name: "DGPP phosphatase (1-18:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -78926,17 +79456,17 @@ - s_3626: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3235 - - name: DGPP phosphatase (1-18:1, 2-16:1), Golgi membrane + - id: "r_3235" + - name: "DGPP phosphatase (1-18:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -78945,17 +79475,17 @@ - s_3627: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3236 - - name: DGPP phosphatase (1-16:0, 2-18:1), Golgi membrane + - id: "r_3236" + - name: "DGPP phosphatase (1-16:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -78964,17 +79494,17 @@ - s_3628: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3237 - - name: DGPP phosphatase (1-16:1, 2-18:1), Golgi membrane + - id: "r_3237" + - name: "DGPP phosphatase (1-16:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -78983,17 +79513,17 @@ - s_3629: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3238 - - name: DGPP phosphatase (1-18:0, 2-18:1), Golgi membrane + - id: "r_3238" + - name: "DGPP phosphatase (1-18:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -79002,17 +79532,17 @@ - s_3630: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3239 - - name: DGPP phosphatase (1-18:1, 2-18:1), Golgi membrane + - id: "r_3239" + - name: "DGPP phosphatase (1-18:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -79021,17 +79551,17 @@ - s_3631: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3240 - - name: lysoPA phosphatase (16:0), cytoplasm + - id: "r_3240" + - name: "lysoPA phosphatase (16:0), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -79040,14 +79570,14 @@ - s_3633: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER037W + - gene_reaction_rule: "YER037W" - annotation: !!omap - - pmid: 22345606 - - sbo: SBO:0000176 + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3241 - - name: lysoPA phosphatase (16:1), cytoplasm + - id: "r_3241" + - name: "lysoPA phosphatase (16:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -79056,14 +79586,14 @@ - s_3635: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER037W + - gene_reaction_rule: "YER037W" - annotation: !!omap - - pmid: 22345606 - - sbo: SBO:0000176 + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3242 - - name: lysoPA phosphatase (18:0), cytoplasm + - id: "r_3242" + - name: "lysoPA phosphatase (18:0), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -79072,14 +79602,14 @@ - s_3637: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER037W + - gene_reaction_rule: "YER037W" - annotation: !!omap - - pmid: 22345606 - - sbo: SBO:0000176 + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3243 - - name: lysoPA phosphatase (18:1), cytoplasm + - id: "r_3243" + - name: "lysoPA phosphatase (18:1), cytoplasm" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -79088,14 +79618,14 @@ - s_3639: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER037W + - gene_reaction_rule: "YER037W" - annotation: !!omap - - pmid: 22345606 - - sbo: SBO:0000176 + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3244 - - name: lysoPA phosphatase (16:0), vacuolar membrane + - id: "r_3244" + - name: "lysoPA phosphatase (16:0), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -79104,21 +79634,21 @@ - s_3641: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3245 - - name: lysoPA phosphatase (16:1), vacuolar membrane + - id: "r_3245" + - name: "lysoPA phosphatase (16:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -79127,21 +79657,21 @@ - s_3643: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3246 - - name: lysoPA phosphatase (18:0), vacuolar membrane + - id: "r_3246" + - name: "lysoPA phosphatase (18:0), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -79150,21 +79680,21 @@ - s_3645: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3247 - - name: lysoPA phosphatase (18:1), vacuolar membrane + - id: "r_3247" + - name: "lysoPA phosphatase (18:1), vacuolar membrane" - metabolites: !!omap - s_2976: -1 - s_2977: 1 @@ -79173,21 +79703,21 @@ - s_3647: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR284C + - gene_reaction_rule: "YDR284C" - subsystem: - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.3.4 - - 3.1.3.81 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.4" + - "3.1.3.81" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3248 - - name: lysoPA phosphatase (16:0), Golgi membrane + - id: "r_3248" + - name: "lysoPA phosphatase (16:0), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -79196,17 +79726,17 @@ - s_3649: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3249 - - name: lysoPA phosphatase (16:1), Golgi membrane + - id: "r_3249" + - name: "lysoPA phosphatase (16:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -79215,17 +79745,17 @@ - s_3651: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3250 - - name: lysoPA phosphatase (18:0), Golgi membrane + - id: "r_3250" + - name: "lysoPA phosphatase (18:0), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -79234,17 +79764,17 @@ - s_3653: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3251 - - name: lysoPA phosphatase (18:1), Golgi membrane + - id: "r_3251" + - name: "lysoPA phosphatase (18:1), Golgi membrane" - metabolites: !!omap - s_2994: -1 - s_2995: 1 @@ -79253,17 +79783,17 @@ - s_3655: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR503C + - gene_reaction_rule: "YDR503C" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.4 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3252 - - name: ergosteryl ester hydrolase (16:1), lipid particle + - id: "r_3252" + - name: "ergosteryl ester hydrolase (16:1), lipid particle" - metabolites: !!omap - s_0669: 1 - s_0798: 1 @@ -79272,18 +79802,18 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL140W or YLL012W - - subsystem: sce00100 Steroid biosynthesis + - gene_reaction_rule: "YKL140W or YLL012W" + - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - - ec-code: 3.1.1.13 + - ec-code: "3.1.1.13" - pmid: - - 16835446 - - 14640980 - - sbo: SBO:0000176 + - "16835446" + - "14640980" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3253 - - name: ergosteryl ester hydrolase (18:1), lipid particle + - id: "r_3253" + - name: "ergosteryl ester hydrolase (18:1), lipid particle" - metabolites: !!omap - s_0669: 1 - s_0798: 1 @@ -79292,19 +79822,19 @@ - s_3658: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL140W or YLL012W - - subsystem: sce00100 Steroid biosynthesis + - gene_reaction_rule: "YKL140W or YLL012W" + - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - - ec-code: 3.1.1.13 - - metanetx.reaction: MNXR119162 + - ec-code: "3.1.1.13" + - metanetx.reaction: "MNXR119162" - pmid: - - 16835446 - - 14640980 - - sbo: SBO:0000176 + - "16835446" + - "14640980" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3254 - - name: episteryl ester hydrolase (16:1), lipid particle + - id: "r_3254" + - name: "episteryl ester hydrolase (16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -79313,15 +79843,15 @@ - s_3660: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL012W + - gene_reaction_rule: "YLL012W" - annotation: !!omap - - ec-code: 3.1.1.13 - - pmid: 16835446 - - sbo: SBO:0000176 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3255 - - name: episteryl ester hydrolase (18:1), lipid particle + - id: "r_3255" + - name: "episteryl ester hydrolase (18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -79330,15 +79860,15 @@ - s_3661: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL012W + - gene_reaction_rule: "YLL012W" - annotation: !!omap - - ec-code: 3.1.1.13 - - pmid: 16835446 - - sbo: SBO:0000176 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3256 - - name: fecosteryl ester hydrolase (16:1), lipid particle + - id: "r_3256" + - name: "fecosteryl ester hydrolase (16:1), lipid particle" - metabolites: !!omap - s_0703: 1 - s_0798: 1 @@ -79347,15 +79877,15 @@ - s_3662: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL012W + - gene_reaction_rule: "YLL012W" - annotation: !!omap - - ec-code: 3.1.1.13 - - pmid: 16835446 - - sbo: SBO:0000176 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3257 - - name: fecosteryl ester hydrolase (18:1), lipid particle + - id: "r_3257" + - name: "fecosteryl ester hydrolase (18:1), lipid particle" - metabolites: !!omap - s_0703: 1 - s_0798: 1 @@ -79364,15 +79894,15 @@ - s_3663: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL012W + - gene_reaction_rule: "YLL012W" - annotation: !!omap - - ec-code: 3.1.1.13 - - pmid: 16835446 - - sbo: SBO:0000176 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3258 - - name: lanosteryl ester hydrolase (16:1), lipid particle + - id: "r_3258" + - name: "lanosteryl ester hydrolase (16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -79381,15 +79911,15 @@ - s_3665: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL012W + - gene_reaction_rule: "YLL012W" - annotation: !!omap - - ec-code: 3.1.1.13 - - pmid: 16835446 - - sbo: SBO:0000176 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3259 - - name: lanosteryl ester hydrolase (18:1), lipid particle + - id: "r_3259" + - name: "lanosteryl ester hydrolase (18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -79398,16 +79928,16 @@ - s_3666: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL012W + - gene_reaction_rule: "YLL012W" - annotation: !!omap - - ec-code: 3.1.1.13 - - metanetx.reaction: MNXR119160 - - pmid: 16835446 - - sbo: SBO:0000176 + - ec-code: "3.1.1.13" + - metanetx.reaction: "MNXR119160" + - pmid: "16835446" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3260 - - name: zymosteryl ester hydrolase (16:1), lipid particle + - id: "r_3260" + - name: "zymosteryl ester hydrolase (16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_1572: 1 @@ -79416,15 +79946,15 @@ - s_3667: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL012W + - gene_reaction_rule: "YLL012W" - annotation: !!omap - - ec-code: 3.1.1.13 - - pmid: 16835446 - - sbo: SBO:0000176 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3261 - - name: zymosteryl ester hydrolase (18:1), lipid particle + - id: "r_3261" + - name: "zymosteryl ester hydrolase (18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_1572: 1 @@ -79433,15 +79963,15 @@ - s_3668: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL012W + - gene_reaction_rule: "YLL012W" - annotation: !!omap - - ec-code: 3.1.1.13 - - pmid: 16835446 - - sbo: SBO:0000176 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3262 - - name: zymosteryl ester hydrolase (16:1), cell envelope + - id: "r_3262" + - name: "zymosteryl ester hydrolase (16:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_1568: 1 @@ -79450,15 +79980,15 @@ - s_3669: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR020C + - gene_reaction_rule: "YLR020C" - annotation: !!omap - - ec-code: 3.1.1.13 - - pmid: 15632184 - - sbo: SBO:0000176 + - ec-code: "3.1.1.13" + - pmid: "15632184" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3263 - - name: zymosteryl ester hydrolase (18:1), cell envelope + - id: "r_3263" + - name: "zymosteryl ester hydrolase (18:1), cell envelope" - metabolites: !!omap - s_0793: 1 - s_1568: 1 @@ -79467,15 +79997,15 @@ - s_3670: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR020C + - gene_reaction_rule: "YLR020C" - annotation: !!omap - - ec-code: 3.1.1.13 - - pmid: 15632184 - - sbo: SBO:0000176 + - ec-code: "3.1.1.13" + - pmid: "15632184" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3264 - - name: TAG lipase (1-16:0, 2-16:1, 3-16:0), lipid particle + - id: "r_3264" + - name: "TAG lipase (1-16:0, 2-16:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2846: 1 @@ -79484,22 +80014,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C or YCR068W + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C or YCR068W" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3265 - - name: TAG lipase (1-16:0, 2-16:1, 3-16:1), lipid particle + - id: "r_3265" + - name: "TAG lipase (1-16:0, 2-16:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -79508,22 +80038,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3266 - - name: TAG lipase (1-16:0, 2-16:1, 3-18:0), lipid particle + - id: "r_3266" + - name: "TAG lipase (1-16:0, 2-16:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2850: 1 @@ -79532,22 +80062,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3267 - - name: TAG lipase (1-16:0, 2-16:1, 3-18:1), lipid particle + - id: "r_3267" + - name: "TAG lipase (1-16:0, 2-16:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -79556,22 +80086,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3268 - - name: TAG lipase (1-16:1, 2-16:1, 3-16:0), lipid particle + - id: "r_3268" + - name: "TAG lipase (1-16:1, 2-16:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2846: 1 @@ -79580,22 +80110,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3269 - - name: TAG lipase (1-16:1, 2-16:1, 3-16:1), lipid particle + - id: "r_3269" + - name: "TAG lipase (1-16:1, 2-16:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -79604,22 +80134,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3270 - - name: TAG lipase (1-16:1, 2-16:1, 3-18:0), lipid particle + - id: "r_3270" + - name: "TAG lipase (1-16:1, 2-16:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2850: 1 @@ -79628,22 +80158,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3271 - - name: TAG lipase (1-16:1, 2-16:1, 3-18:1), lipid particle + - id: "r_3271" + - name: "TAG lipase (1-16:1, 2-16:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -79652,22 +80182,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3272 - - name: TAG lipase (1-18:0, 2-16:1, 3-16:0), lipid particle + - id: "r_3272" + - name: "TAG lipase (1-18:0, 2-16:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2846: 1 @@ -79676,22 +80206,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3273 - - name: TAG lipase (1-18:0, 2-16:1, 3-16:1), lipid particle + - id: "r_3273" + - name: "TAG lipase (1-18:0, 2-16:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -79700,22 +80230,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3274 - - name: TAG lipase (1-18:0, 2-16:1, 3-18:0), lipid particle + - id: "r_3274" + - name: "TAG lipase (1-18:0, 2-16:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2850: 1 @@ -79724,22 +80254,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3275 - - name: TAG lipase (1-18:0, 2-16:1, 3-18:1), lipid particle + - id: "r_3275" + - name: "TAG lipase (1-18:0, 2-16:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -79748,22 +80278,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3276 - - name: TAG lipase (1-18:1, 2-16:1, 3-16:0), lipid particle + - id: "r_3276" + - name: "TAG lipase (1-18:1, 2-16:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2846: 1 @@ -79772,22 +80302,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3277 - - name: TAG lipase (1-18:1, 2-16:1, 3-16:1), lipid particle + - id: "r_3277" + - name: "TAG lipase (1-18:1, 2-16:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -79796,22 +80326,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3278 - - name: TAG lipase (1-18:1, 2-16:1, 3-18:0), lipid particle + - id: "r_3278" + - name: "TAG lipase (1-18:1, 2-16:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2850: 1 @@ -79820,22 +80350,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3279 - - name: TAG lipase (1-18:1, 2-16:1, 3-18:1), lipid particle + - id: "r_3279" + - name: "TAG lipase (1-18:1, 2-16:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -79844,22 +80374,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3280 - - name: TAG lipase (1-16:0, 2-18:1, 3-16:0), lipid particle + - id: "r_3280" + - name: "TAG lipase (1-16:0, 2-18:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2846: 1 @@ -79868,22 +80398,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3281 - - name: TAG lipase (1-16:0, 2-18:1, 3-16:1), lipid particle + - id: "r_3281" + - name: "TAG lipase (1-16:0, 2-18:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -79892,22 +80422,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3282 - - name: TAG lipase (1-16:0, 2-18:1, 3-18:0), lipid particle + - id: "r_3282" + - name: "TAG lipase (1-16:0, 2-18:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2850: 1 @@ -79916,22 +80446,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3283 - - name: TAG lipase (1-16:0, 2-18:1, 3-18:1), lipid particle + - id: "r_3283" + - name: "TAG lipase (1-16:0, 2-18:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -79940,22 +80470,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3284 - - name: TAG lipase (1-16:1, 2-18:1, 3-16:0), lipid particle + - id: "r_3284" + - name: "TAG lipase (1-16:1, 2-18:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2846: 1 @@ -79964,22 +80494,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3285 - - name: TAG lipase (1-16:1, 2-18:1, 3-16:1), lipid particle + - id: "r_3285" + - name: "TAG lipase (1-16:1, 2-18:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -79988,22 +80518,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3286 - - name: TAG lipase (1-16:1, 2-18:1, 3-18:0), lipid particle + - id: "r_3286" + - name: "TAG lipase (1-16:1, 2-18:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2850: 1 @@ -80012,22 +80542,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3287 - - name: TAG lipase (1-16:1, 2-18:1, 3-18:1), lipid particle + - id: "r_3287" + - name: "TAG lipase (1-16:1, 2-18:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80036,22 +80566,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3288 - - name: TAG lipase (1-18:0, 2-18:1, 3-16:0), lipid particle + - id: "r_3288" + - name: "TAG lipase (1-18:0, 2-18:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2846: 1 @@ -80060,22 +80590,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3289 - - name: TAG lipase (1-18:0, 2-18:1, 3-16:1), lipid particle + - id: "r_3289" + - name: "TAG lipase (1-18:0, 2-18:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80084,22 +80614,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3290 - - name: TAG lipase (1-18:0, 2-18:1, 3-18:0), lipid particle + - id: "r_3290" + - name: "TAG lipase (1-18:0, 2-18:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2850: 1 @@ -80108,22 +80638,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3291 - - name: TAG lipase (1-18:0, 2-18:1, 3-18:1), lipid particle + - id: "r_3291" + - name: "TAG lipase (1-18:0, 2-18:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80132,22 +80662,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3292 - - name: TAG lipase (1-18:1, 2-18:1, 3-16:0), lipid particle + - id: "r_3292" + - name: "TAG lipase (1-18:1, 2-18:1, 3-16:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2846: 1 @@ -80156,22 +80686,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3293 - - name: TAG lipase (1-18:1, 2-18:1, 3-16:1), lipid particle + - id: "r_3293" + - name: "TAG lipase (1-18:1, 2-18:1, 3-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80180,22 +80710,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3294 - - name: TAG lipase (1-18:1, 2-18:1, 3-18:0), lipid particle + - id: "r_3294" + - name: "TAG lipase (1-18:1, 2-18:1, 3-18:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2850: 1 @@ -80204,22 +80734,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3295 - - name: TAG lipase (1-18:1, 2-18:1, 3-18:1), lipid particle + - id: "r_3295" + - name: "TAG lipase (1-18:1, 2-18:1, 3-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80228,22 +80758,22 @@ - s_3657: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR204C or YKR089C or YMR313C or YOR081C + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3296 - - name: DAG lipase (1-16:0, 2-16:1), lipid particle + - id: "r_3296" + - name: "DAG lipase (1-16:0, 2-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80252,16 +80782,16 @@ - s_3671: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR313C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YMR313C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3297 - - name: DAG lipase (1-16:1, 2-16:1), lipid particle + - id: "r_3297" + - name: "DAG lipase (1-16:1, 2-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80270,16 +80800,16 @@ - s_3672: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR068W or YMR313C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YCR068W or YMR313C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3298 - - name: DAG lipase (1-18:0, 2-16:1), lipid particle + - id: "r_3298" + - name: "DAG lipase (1-18:0, 2-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80288,16 +80818,16 @@ - s_3673: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR313C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YMR313C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3299 - - name: DAG lipase (1-18:1, 2-16:1), lipid particle + - id: "r_3299" + - name: "DAG lipase (1-18:1, 2-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80306,16 +80836,16 @@ - s_3674: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR313C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YMR313C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3300 - - name: DAG lipase (1-16:0, 2-18:1), lipid particle + - id: "r_3300" + - name: "DAG lipase (1-16:0, 2-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80324,16 +80854,16 @@ - s_3671: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR313C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YMR313C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3301 - - name: DAG lipase (1-16:1, 2-18:1), lipid particle + - id: "r_3301" + - name: "DAG lipase (1-16:1, 2-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80342,16 +80872,16 @@ - s_3672: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR313C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YMR313C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3302 - - name: DAG lipase (1-18:0, 2-18:1), lipid particle + - id: "r_3302" + - name: "DAG lipase (1-18:0, 2-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80360,16 +80890,16 @@ - s_3673: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR313C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YMR313C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3303 - - name: DAG lipase (1-18:1, 2-18:1), lipid particle + - id: "r_3303" + - name: "DAG lipase (1-18:1, 2-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80378,16 +80908,16 @@ - s_3674: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR313C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YMR313C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3304 - - name: DAG lipase (1-16:0, 2-18:1), mitochondrion + - id: "r_3304" + - name: "DAG lipase (1-16:0, 2-18:1), mitochondrion" - metabolites: !!omap - s_0799: 1 - s_0807: -1 @@ -80396,16 +80926,16 @@ - s_3677: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR058C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YDR058C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3305 - - name: DAG lipase (1-16:1, 2-18:1), mitochondrion + - id: "r_3305" + - name: "DAG lipase (1-16:1, 2-18:1), mitochondrion" - metabolites: !!omap - s_0799: 1 - s_0807: -1 @@ -80414,16 +80944,16 @@ - s_3679: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR058C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YDR058C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3306 - - name: DAG lipase (1-18:0, 2-18:1), mitochondrion + - id: "r_3306" + - name: "DAG lipase (1-18:0, 2-18:1), mitochondrion" - metabolites: !!omap - s_0799: 1 - s_0807: -1 @@ -80432,16 +80962,16 @@ - s_3681: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR058C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YDR058C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3307 - - name: DAG lipase (1-18:1, 2-18:1), mitochondrion + - id: "r_3307" + - name: "DAG lipase (1-18:1, 2-18:1), mitochondrion" - metabolites: !!omap - s_0799: 1 - s_0807: -1 @@ -80450,16 +80980,16 @@ - s_3683: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR058C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YDR058C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3308 - - name: MAG lipase (1-16:0), lipid particle + - id: "r_3308" + - name: "MAG lipase (1-16:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2846: 1 @@ -80468,16 +80998,16 @@ - s_3684: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL094W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YKL094W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3309 - - name: MAG lipase (1-16:1), lipid particle + - id: "r_3309" + - name: "MAG lipase (1-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80486,16 +81016,16 @@ - s_3684: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL094W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YKL094W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3310 - - name: MAG lipase (1-18:0), lipid particle + - id: "r_3310" + - name: "MAG lipase (1-18:0), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2850: 1 @@ -80504,16 +81034,16 @@ - s_3684: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL094W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YKL094W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3311 - - name: MAG lipase (1-18:1), lipid particle + - id: "r_3311" + - name: "MAG lipase (1-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80522,16 +81052,16 @@ - s_3684: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL094W - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YKL094W" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.23 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.23" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3312 - - name: lysoPE (1-16:0) oleoyl-CoA acyltransferase, lipid particle + - id: "r_3312" + - name: "lysoPE (1-16:0) oleoyl-CoA acyltransferase, lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -80539,16 +81069,16 @@ - s_3686: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR313C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YMR313C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 20016004 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "20016004" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3313 - - name: lysoPE (1-16:1) oleoyl-CoA acyltransferase, lipid particle + - id: "r_3313" + - name: "lysoPE (1-16:1) oleoyl-CoA acyltransferase, lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -80556,16 +81086,16 @@ - s_3688: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR313C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YMR313C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 20016004 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "20016004" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3314 - - name: lysoPE (1-18:0) oleoyl-CoA acyltransferase, lipid particle + - id: "r_3314" + - name: "lysoPE (1-18:0) oleoyl-CoA acyltransferase, lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -80573,16 +81103,16 @@ - s_3690: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR313C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YMR313C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 20016004 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "20016004" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3315 - - name: lysoPE (1-18:1) oleoyl-CoA acyltransferase, lipid particle + - id: "r_3315" + - name: "lysoPE (1-18:1) oleoyl-CoA acyltransferase, lipid particle" - metabolites: !!omap - s_0531: 1 - s_2853: -1 @@ -80590,16 +81120,16 @@ - s_3692: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR313C - - subsystem: sce00561 Glycerolipid metabolism + - gene_reaction_rule: "YMR313C" + - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 20016004 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "20016004" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3316 - - name: PC phospholipase A2 (1-16:0, 2-16:1), lipid particle + - id: "r_3316" + - name: "PC phospholipase A2 (1-16:0, 2-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80608,20 +81138,20 @@ - s_3694: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3317 - - name: PC phospholipase A2 (1-16:1, 2-16:1), lipid particle + - id: "r_3317" + - name: "PC phospholipase A2 (1-16:1, 2-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80630,20 +81160,20 @@ - s_3696: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3318 - - name: PC phospholipase A2 (1-18:0, 2-16:1), lipid particle + - id: "r_3318" + - name: "PC phospholipase A2 (1-18:0, 2-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80652,20 +81182,20 @@ - s_3698: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3319 - - name: PC phospholipase A2 (1-18:1, 2-16:1), lipid particle + - id: "r_3319" + - name: "PC phospholipase A2 (1-18:1, 2-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80674,20 +81204,20 @@ - s_3700: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3320 - - name: PC phospholipase A2 (1-16:0, 2-18:1), lipid particle + - id: "r_3320" + - name: "PC phospholipase A2 (1-16:0, 2-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80696,20 +81226,20 @@ - s_3701: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3321 - - name: PC phospholipase A2 (1-16:1, 2-18:1), lipid particle + - id: "r_3321" + - name: "PC phospholipase A2 (1-16:1, 2-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80718,20 +81248,20 @@ - s_3702: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3322 - - name: PC phospholipase A2 (1-18:0, 2-18:1), lipid particle + - id: "r_3322" + - name: "PC phospholipase A2 (1-18:0, 2-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80740,20 +81270,20 @@ - s_3703: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3323 - - name: PC phospholipase A2 (1-18:1, 2-18:1), lipid particle + - id: "r_3323" + - name: "PC phospholipase A2 (1-18:1, 2-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80762,20 +81292,20 @@ - s_3704: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3324 - - name: PE phospholipase A2 (1-16:0, 2-16:1), lipid particle + - id: "r_3324" + - name: "PE phospholipase A2 (1-16:0, 2-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80784,20 +81314,20 @@ - s_3705: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3325 - - name: PE phospholipase A2 (1-16:1, 2-16:1), lipid particle + - id: "r_3325" + - name: "PE phospholipase A2 (1-16:1, 2-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80806,20 +81336,20 @@ - s_3706: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3326 - - name: PE phospholipase A2 (1-18:0, 2-16:1), lipid particle + - id: "r_3326" + - name: "PE phospholipase A2 (1-18:0, 2-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80828,20 +81358,20 @@ - s_3707: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3327 - - name: PE phospholipase A2 (1-18:1, 2-16:1), lipid particle + - id: "r_3327" + - name: "PE phospholipase A2 (1-18:1, 2-16:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2848: 1 @@ -80850,20 +81380,20 @@ - s_3708: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3328 - - name: PE phospholipase A2 (1-16:0, 2-18:1), lipid particle + - id: "r_3328" + - name: "PE phospholipase A2 (1-16:0, 2-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80872,20 +81402,20 @@ - s_3686: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3329 - - name: PE phospholipase A2 (1-16:1, 2-18:1), lipid particle + - id: "r_3329" + - name: "PE phospholipase A2 (1-16:1, 2-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80894,20 +81424,20 @@ - s_3688: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3330 - - name: PE phospholipase A2 (1-18:0, 2-18:1), lipid particle + - id: "r_3330" + - name: "PE phospholipase A2 (1-18:0, 2-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80916,20 +81446,20 @@ - s_3690: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3331 - - name: PE phospholipase A2 (1-18:1, 2-18:1), lipid particle + - id: "r_3331" + - name: "PE phospholipase A2 (1-18:1, 2-18:1), lipid particle" - metabolites: !!omap - s_0798: 1 - s_2852: 1 @@ -80938,20 +81468,20 @@ - s_3692: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKR089C + - gene_reaction_rule: "YKR089C" - subsystem: - - sce00100 Steroid biosynthesis - - sce00561 Glycerolipid metabolism - - sce00564 Glycerophospholipid metabolism - - sce01110 Biosynthesis of secondary metabolites + - "sce00100 Steroid biosynthesis" + - "sce00561 Glycerolipid metabolism" + - "sce00564 Glycerophospholipid metabolism" + - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - - ec-code: 3.1.1.3 - - pmid: 22345606 - - sbo: SBO:0000176 + - ec-code: "3.1.1.3" + - pmid: "22345606" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3332 - - name: PA kinase (1-16:0, 2-16:1), Golgi membrane + - id: "r_3332" + - name: "PA kinase (1-16:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2993: -1 - s_3146: -1 @@ -80960,12 +81490,13 @@ - s_3624: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3333 - - name: PA kinase (1-16:1, 2-16:1), Golgi membrane + - id: "r_3333" + - name: "PA kinase (1-16:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_2999: -1 - s_3146: -1 @@ -80974,12 +81505,13 @@ - s_3625: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3334 - - name: PA kinase (1-18:0, 2-16:1), Golgi membrane + - id: "r_3334" + - name: "PA kinase (1-18:0, 2-16:1), Golgi membrane" - metabolites: !!omap - s_3003: -1 - s_3146: -1 @@ -80988,12 +81520,13 @@ - s_3626: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3335 - - name: PA kinase (1-18:1, 2-16:1), Golgi membrane + - id: "r_3335" + - name: "PA kinase (1-18:1, 2-16:1), Golgi membrane" - metabolites: !!omap - s_3007: -1 - s_3146: -1 @@ -81002,12 +81535,13 @@ - s_3627: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3336 - - name: PA kinase (1-16:0, 2-18:1), Golgi membrane + - id: "r_3336" + - name: "PA kinase (1-16:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_2997: -1 - s_3146: -1 @@ -81016,12 +81550,13 @@ - s_3628: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3337 - - name: PA kinase (1-16:1, 2-18:1), Golgi membrane + - id: "r_3337" + - name: "PA kinase (1-16:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_3001: -1 - s_3146: -1 @@ -81030,12 +81565,13 @@ - s_3629: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3338 - - name: PA kinase (1-18:0, 2-18:1), Golgi membrane + - id: "r_3338" + - name: "PA kinase (1-18:0, 2-18:1), Golgi membrane" - metabolites: !!omap - s_3005: -1 - s_3146: -1 @@ -81044,12 +81580,13 @@ - s_3630: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3339 - - name: PA kinase (1-18:1, 2-18:1), Golgi membrane + - id: "r_3339" + - name: "PA kinase (1-18:1, 2-18:1), Golgi membrane" - metabolites: !!omap - s_3009: -1 - s_3146: -1 @@ -81058,12 +81595,13 @@ - s_3631: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3340 - - name: PA kinase (1-16:0, 2-16:1), vacuolar membrane + - id: "r_3340" + - name: "PA kinase (1-16:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2975: -1 - s_3164: -1 @@ -81072,12 +81610,13 @@ - s_3616: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3341 - - name: PA kinase (1-16:1, 2-16:1), vacuolar membrane + - id: "r_3341" + - name: "PA kinase (1-16:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2981: -1 - s_3164: -1 @@ -81086,12 +81625,13 @@ - s_3617: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3342 - - name: PA kinase (1-18:0, 2-16:1), vacuolar membrane + - id: "r_3342" + - name: "PA kinase (1-18:0, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2985: -1 - s_3164: -1 @@ -81100,12 +81640,13 @@ - s_3618: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3343 - - name: PA kinase (1-18:1, 2-16:1), vacuolar membrane + - id: "r_3343" + - name: "PA kinase (1-18:1, 2-16:1), vacuolar membrane" - metabolites: !!omap - s_2989: -1 - s_3164: -1 @@ -81114,12 +81655,13 @@ - s_3619: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3344 - - name: PA kinase (1-16:0, 2-18:1), vacuolar membrane + - id: "r_3344" + - name: "PA kinase (1-16:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2979: -1 - s_3164: -1 @@ -81128,12 +81670,13 @@ - s_3620: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3345 - - name: PA kinase (1-16:1, 2-18:1), vacuolar membrane + - id: "r_3345" + - name: "PA kinase (1-16:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2983: -1 - s_3164: -1 @@ -81142,12 +81685,13 @@ - s_3621: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3346 - - name: PA kinase (1-18:0, 2-18:1), vacuolar membrane + - id: "r_3346" + - name: "PA kinase (1-18:0, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2987: -1 - s_3164: -1 @@ -81156,12 +81700,13 @@ - s_3622: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3347 - - name: PA kinase (1-18:1, 2-18:1), vacuolar membrane + - id: "r_3347" + - name: "PA kinase (1-18:1, 2-18:1), vacuolar membrane" - metabolites: !!omap - s_2991: -1 - s_3164: -1 @@ -81170,12 +81715,13 @@ - s_3623: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_3348 - - name: inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-A (C24)) + - id: "r_3348" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-A (C24))" - metabolites: !!omap - s_0862: 1 - s_1117: -1 @@ -81183,17 +81729,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3349 - - name: inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-A (C24)) + - id: "r_3349" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-A (C24))" - metabolites: !!omap - s_0862: 1 - s_1117: -1 @@ -81201,17 +81747,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3350 - - name: inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-A (C24)) + - id: "r_3350" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-A (C24))" - metabolites: !!omap - s_0862: 1 - s_1117: -1 @@ -81219,17 +81765,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3351 - - name: inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-A (C24)) + - id: "r_3351" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-A (C24))" - metabolites: !!omap - s_0862: 1 - s_1117: -1 @@ -81237,17 +81783,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3352 - - name: inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-A (C24)) + - id: "r_3352" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-A (C24))" - metabolites: !!omap - s_0862: 1 - s_1117: -1 @@ -81255,17 +81801,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3353 - - name: inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-A (C24)) + - id: "r_3353" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-A (C24))" - metabolites: !!omap - s_0862: 1 - s_1117: -1 @@ -81273,17 +81819,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3354 - - name: inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-A (C24)) + - id: "r_3354" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-A (C24))" - metabolites: !!omap - s_0862: 1 - s_1117: -1 @@ -81291,17 +81837,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3355 - - name: inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-A (C24)) + - id: "r_3355" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-A (C24))" - metabolites: !!omap - s_0862: 1 - s_1117: -1 @@ -81309,17 +81855,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3356 - - name: inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-A (C26)) + - id: "r_3356" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-A (C26))" - metabolites: !!omap - s_0865: 1 - s_1120: -1 @@ -81327,17 +81873,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3357 - - name: inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-A (C26)) + - id: "r_3357" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-A (C26))" - metabolites: !!omap - s_0865: 1 - s_1120: -1 @@ -81345,17 +81891,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3358 - - name: inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-A (C26)) + - id: "r_3358" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-A (C26))" - metabolites: !!omap - s_0865: 1 - s_1120: -1 @@ -81363,17 +81909,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3359 - - name: inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-A (C26)) + - id: "r_3359" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-A (C26))" - metabolites: !!omap - s_0865: 1 - s_1120: -1 @@ -81381,17 +81927,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3360 - - name: inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-A (C26)) + - id: "r_3360" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-A (C26))" - metabolites: !!omap - s_0865: 1 - s_1120: -1 @@ -81399,17 +81945,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3361 - - name: inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-A (C26)) + - id: "r_3361" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-A (C26))" - metabolites: !!omap - s_0865: 1 - s_1120: -1 @@ -81417,17 +81963,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3362 - - name: inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-A (C26)) + - id: "r_3362" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-A (C26))" - metabolites: !!omap - s_0865: 1 - s_1120: -1 @@ -81435,17 +81981,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3363 - - name: inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-A (C26)) + - id: "r_3363" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-A (C26))" - metabolites: !!omap - s_0865: 1 - s_1120: -1 @@ -81453,17 +81999,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3364 - - name: inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B' (C24)) + - id: "r_3364" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B' (C24))" - metabolites: !!omap - s_0874: 1 - s_1129: -1 @@ -81471,17 +82017,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3365 - - name: inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B' (C24)) + - id: "r_3365" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B' (C24))" - metabolites: !!omap - s_0874: 1 - s_1129: -1 @@ -81489,17 +82035,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3366 - - name: inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B' (C24)) + - id: "r_3366" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B' (C24))" - metabolites: !!omap - s_0874: 1 - s_1129: -1 @@ -81507,17 +82053,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3367 - - name: inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B' (C24)) + - id: "r_3367" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B' (C24))" - metabolites: !!omap - s_0874: 1 - s_1129: -1 @@ -81525,17 +82071,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3368 - - name: inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B' (C24)) + - id: "r_3368" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B' (C24))" - metabolites: !!omap - s_0874: 1 - s_1129: -1 @@ -81543,17 +82089,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3369 - - name: inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B' (C24)) + - id: "r_3369" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B' (C24))" - metabolites: !!omap - s_0874: 1 - s_1129: -1 @@ -81561,17 +82107,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3370 - - name: inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B' (C24)) + - id: "r_3370" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B' (C24))" - metabolites: !!omap - s_0874: 1 - s_1129: -1 @@ -81579,17 +82125,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3371 - - name: inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B' (C24)) + - id: "r_3371" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B' (C24))" - metabolites: !!omap - s_0874: 1 - s_1129: -1 @@ -81597,17 +82143,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3372 - - name: inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B' (C26)) + - id: "r_3372" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B' (C26))" - metabolites: !!omap - s_0877: 1 - s_1132: -1 @@ -81615,17 +82161,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3373 - - name: inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B' (C26)) + - id: "r_3373" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B' (C26))" - metabolites: !!omap - s_0877: 1 - s_1132: -1 @@ -81633,17 +82179,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3374 - - name: inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B' (C26)) + - id: "r_3374" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B' (C26))" - metabolites: !!omap - s_0877: 1 - s_1132: -1 @@ -81651,17 +82197,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3375 - - name: inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B' (C26)) + - id: "r_3375" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B' (C26))" - metabolites: !!omap - s_0877: 1 - s_1132: -1 @@ -81669,17 +82215,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3376 - - name: inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B' (C26)) + - id: "r_3376" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B' (C26))" - metabolites: !!omap - s_0877: 1 - s_1132: -1 @@ -81687,17 +82233,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3377 - - name: inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B' (C26)) + - id: "r_3377" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B' (C26))" - metabolites: !!omap - s_0877: 1 - s_1132: -1 @@ -81705,17 +82251,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3378 - - name: inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B' (C26)) + - id: "r_3378" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B' (C26))" - metabolites: !!omap - s_0877: 1 - s_1132: -1 @@ -81723,17 +82269,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3379 - - name: inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B' (C26)) + - id: "r_3379" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B' (C26))" - metabolites: !!omap - s_0877: 1 - s_1132: -1 @@ -81741,17 +82287,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3380 - - name: inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B (C24)) + - id: "r_3380" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B (C24))" - metabolites: !!omap - s_0868: 1 - s_1123: -1 @@ -81759,17 +82305,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3381 - - name: inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B (C24)) + - id: "r_3381" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B (C24))" - metabolites: !!omap - s_0868: 1 - s_1123: -1 @@ -81777,17 +82323,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3382 - - name: inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B (C24)) + - id: "r_3382" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B (C24))" - metabolites: !!omap - s_0868: 1 - s_1123: -1 @@ -81795,17 +82341,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3383 - - name: inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B (C24)) + - id: "r_3383" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B (C24))" - metabolites: !!omap - s_0868: 1 - s_1123: -1 @@ -81813,17 +82359,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3384 - - name: inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B (C24)) + - id: "r_3384" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B (C24))" - metabolites: !!omap - s_0868: 1 - s_1123: -1 @@ -81831,17 +82377,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3385 - - name: inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B (C24)) + - id: "r_3385" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B (C24))" - metabolites: !!omap - s_0868: 1 - s_1123: -1 @@ -81849,17 +82395,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3386 - - name: inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B (C24)) + - id: "r_3386" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B (C24))" - metabolites: !!omap - s_0868: 1 - s_1123: -1 @@ -81867,17 +82413,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3387 - - name: inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B (C24)) + - id: "r_3387" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B (C24))" - metabolites: !!omap - s_0868: 1 - s_1123: -1 @@ -81885,17 +82431,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3388 - - name: inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B (C26)) + - id: "r_3388" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B (C26))" - metabolites: !!omap - s_0871: 1 - s_1126: -1 @@ -81903,17 +82449,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3389 - - name: inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B (C26)) + - id: "r_3389" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B (C26))" - metabolites: !!omap - s_0871: 1 - s_1126: -1 @@ -81921,17 +82467,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3390 - - name: inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B (C26)) + - id: "r_3390" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B (C26))" - metabolites: !!omap - s_0871: 1 - s_1126: -1 @@ -81939,17 +82485,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3391 - - name: inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B (C26)) + - id: "r_3391" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B (C26))" - metabolites: !!omap - s_0871: 1 - s_1126: -1 @@ -81957,17 +82503,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3392 - - name: inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B (C26)) + - id: "r_3392" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B (C26))" - metabolites: !!omap - s_0871: 1 - s_1126: -1 @@ -81975,17 +82521,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3393 - - name: inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B (C26)) + - id: "r_3393" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B (C26))" - metabolites: !!omap - s_0871: 1 - s_1126: -1 @@ -81993,17 +82539,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3394 - - name: inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B (C26)) + - id: "r_3394" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B (C26))" - metabolites: !!omap - s_0871: 1 - s_1126: -1 @@ -82011,17 +82557,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3395 - - name: inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B (C26)) + - id: "r_3395" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B (C26))" - metabolites: !!omap - s_0871: 1 - s_1126: -1 @@ -82029,17 +82575,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3396 - - name: inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-C (C24)) + - id: "r_3396" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-C (C24))" - metabolites: !!omap - s_0880: 1 - s_1135: -1 @@ -82047,17 +82593,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3397 - - name: inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-C (C24)) + - id: "r_3397" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-C (C24))" - metabolites: !!omap - s_0880: 1 - s_1135: -1 @@ -82065,17 +82611,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3398 - - name: inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-C (C24)) + - id: "r_3398" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-C (C24))" - metabolites: !!omap - s_0880: 1 - s_1135: -1 @@ -82083,17 +82629,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3399 - - name: inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-C (C24)) + - id: "r_3399" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-C (C24))" - metabolites: !!omap - s_0880: 1 - s_1135: -1 @@ -82101,17 +82647,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3400 - - name: inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-C (C24)) + - id: "r_3400" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-C (C24))" - metabolites: !!omap - s_0880: 1 - s_1135: -1 @@ -82119,17 +82665,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3401 - - name: inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-C (C24)) + - id: "r_3401" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-C (C24))" - metabolites: !!omap - s_0880: 1 - s_1135: -1 @@ -82137,17 +82683,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3402 - - name: inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-C (C24)) + - id: "r_3402" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-C (C24))" - metabolites: !!omap - s_0880: 1 - s_1135: -1 @@ -82155,17 +82701,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3403 - - name: inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-C (C24)) + - id: "r_3403" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-C (C24))" - metabolites: !!omap - s_0880: 1 - s_1135: -1 @@ -82173,17 +82719,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3404 - - name: inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-C (C26)) + - id: "r_3404" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-C (C26))" - metabolites: !!omap - s_0883: 1 - s_1138: -1 @@ -82191,17 +82737,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3405 - - name: inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-C (C26)) + - id: "r_3405" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-C (C26))" - metabolites: !!omap - s_0883: 1 - s_1138: -1 @@ -82209,17 +82755,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3406 - - name: inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-C (C26)) + - id: "r_3406" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-C (C26))" - metabolites: !!omap - s_0883: 1 - s_1138: -1 @@ -82227,17 +82773,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3407 - - name: inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-C (C26)) + - id: "r_3407" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-C (C26))" - metabolites: !!omap - s_0883: 1 - s_1138: -1 @@ -82245,17 +82791,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3408 - - name: inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-C (C26)) + - id: "r_3408" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-C (C26))" - metabolites: !!omap - s_0883: 1 - s_1138: -1 @@ -82263,17 +82809,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3409 - - name: inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-C (C26)) + - id: "r_3409" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-C (C26))" - metabolites: !!omap - s_0883: 1 - s_1138: -1 @@ -82281,17 +82827,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3410 - - name: inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-C (C26)) + - id: "r_3410" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-C (C26))" - metabolites: !!omap - s_0883: 1 - s_1138: -1 @@ -82299,17 +82845,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3411 - - name: inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-C (C26)) + - id: "r_3411" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-C (C26))" - metabolites: !!omap - s_0883: 1 - s_1138: -1 @@ -82317,17 +82863,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3412 - - name: inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-D (C24)) + - id: "r_3412" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-D (C24))" - metabolites: !!omap - s_0886: 1 - s_1141: -1 @@ -82335,17 +82881,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3413 - - name: inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-D (C24)) + - id: "r_3413" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-D (C24))" - metabolites: !!omap - s_0886: 1 - s_1141: -1 @@ -82353,17 +82899,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3414 - - name: inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-D (C24)) + - id: "r_3414" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-D (C24))" - metabolites: !!omap - s_0886: 1 - s_1141: -1 @@ -82371,17 +82917,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3415 - - name: inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-D (C24)) + - id: "r_3415" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-D (C24))" - metabolites: !!omap - s_0886: 1 - s_1141: -1 @@ -82389,17 +82935,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3416 - - name: inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-D (C24)) + - id: "r_3416" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-D (C24))" - metabolites: !!omap - s_0886: 1 - s_1141: -1 @@ -82407,17 +82953,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3417 - - name: inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-D (C24)) + - id: "r_3417" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-D (C24))" - metabolites: !!omap - s_0886: 1 - s_1141: -1 @@ -82425,17 +82971,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3418 - - name: inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-D (C24)) + - id: "r_3418" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-D (C24))" - metabolites: !!omap - s_0886: 1 - s_1141: -1 @@ -82443,17 +82989,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3419 - - name: inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-D (C24)) + - id: "r_3419" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-D (C24))" - metabolites: !!omap - s_0886: 1 - s_1141: -1 @@ -82461,17 +83007,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3420 - - name: inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-D (C26)) + - id: "r_3420" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-D (C26))" - metabolites: !!omap - s_0889: 1 - s_1144: -1 @@ -82479,17 +83025,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3421 - - name: inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-D (C26)) + - id: "r_3421" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-D (C26))" - metabolites: !!omap - s_0889: 1 - s_1144: -1 @@ -82497,17 +83043,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3422 - - name: inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-D (C26)) + - id: "r_3422" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-D (C26))" - metabolites: !!omap - s_0889: 1 - s_1144: -1 @@ -82515,17 +83061,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3423 - - name: inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-D (C26)) + - id: "r_3423" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-D (C26))" - metabolites: !!omap - s_0889: 1 - s_1144: -1 @@ -82533,17 +83079,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3424 - - name: inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-D (C26)) + - id: "r_3424" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-D (C26))" - metabolites: !!omap - s_0889: 1 - s_1144: -1 @@ -82551,17 +83097,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3425 - - name: inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-D (C26)) + - id: "r_3425" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-D (C26))" - metabolites: !!omap - s_0889: 1 - s_1144: -1 @@ -82569,17 +83115,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3426 - - name: inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-D (C26)) + - id: "r_3426" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-D (C26))" - metabolites: !!omap - s_0889: 1 - s_1144: -1 @@ -82587,17 +83133,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3427 - - name: inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-D (C26)) + - id: "r_3427" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-D (C26))" - metabolites: !!omap - s_0889: 1 - s_1144: -1 @@ -82605,17 +83151,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR072C + - gene_reaction_rule: "YDR072C" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9368028 - - sbo: SBO:0000176 + - "18296751" + - "9368028" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3428 - - name: IPC synthase (PI (1-16:0, 2-16:1) ceramide-1 (C24)) + - id: "r_3428" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-1 (C24))" - metabolites: !!omap - s_0476: -1 - s_0895: 1 @@ -82623,17 +83169,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3429 - - name: IPC synthase (PI (1-16:1, 2-16:1) ceramide-1 (C24)) + - id: "r_3429" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-1 (C24))" - metabolites: !!omap - s_0476: -1 - s_0895: 1 @@ -82641,17 +83187,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3430 - - name: IPC synthase (PI (1-18:0, 2-16:1) ceramide-1 (C24)) + - id: "r_3430" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-1 (C24))" - metabolites: !!omap - s_0476: -1 - s_0895: 1 @@ -82659,17 +83205,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3431 - - name: IPC synthase (PI (1-18:1, 2-16:1) ceramide-1 (C24)) + - id: "r_3431" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-1 (C24))" - metabolites: !!omap - s_0476: -1 - s_0895: 1 @@ -82677,17 +83223,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3432 - - name: IPC synthase (PI (1-16:0, 2-18:1) ceramide-1 (C24)) + - id: "r_3432" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-1 (C24))" - metabolites: !!omap - s_0476: -1 - s_0895: 1 @@ -82695,17 +83241,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3433 - - name: IPC synthase (PI (1-16:1, 2-18:1) ceramide-1 (C24)) + - id: "r_3433" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-1 (C24))" - metabolites: !!omap - s_0476: -1 - s_0895: 1 @@ -82713,17 +83259,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3434 - - name: IPC synthase (PI (1-18:0, 2-18:1) ceramide-1 (C24)) + - id: "r_3434" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-1 (C24))" - metabolites: !!omap - s_0476: -1 - s_0895: 1 @@ -82731,17 +83277,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3435 - - name: IPC synthase (PI (1-18:1, 2-18:1) ceramide-1 (C24)) + - id: "r_3435" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-1 (C24))" - metabolites: !!omap - s_0476: -1 - s_0895: 1 @@ -82749,17 +83295,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3436 - - name: IPC synthase (PI (1-16:0, 2-16:1) ceramide-1 (C26)) + - id: "r_3436" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-1 (C26))" - metabolites: !!omap - s_0479: -1 - s_0898: 1 @@ -82767,17 +83313,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3437 - - name: IPC synthase (PI (1-16:1, 2-16:1) ceramide-1 (C26)) + - id: "r_3437" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-1 (C26))" - metabolites: !!omap - s_0479: -1 - s_0898: 1 @@ -82785,17 +83331,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3438 - - name: IPC synthase (PI (1-18:0, 2-16:1) ceramide-1 (C26)) + - id: "r_3438" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-1 (C26))" - metabolites: !!omap - s_0479: -1 - s_0898: 1 @@ -82803,17 +83349,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3439 - - name: IPC synthase (PI (1-18:1, 2-16:1) ceramide-1 (C26)) + - id: "r_3439" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-1 (C26))" - metabolites: !!omap - s_0479: -1 - s_0898: 1 @@ -82821,17 +83367,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3440 - - name: IPC synthase (PI (1-16:0, 2-18:1) ceramide-1 (C26)) + - id: "r_3440" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-1 (C26))" - metabolites: !!omap - s_0479: -1 - s_0898: 1 @@ -82839,17 +83385,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3441 - - name: IPC synthase (PI (1-16:1, 2-18:1) ceramide-1 (C26)) + - id: "r_3441" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-1 (C26))" - metabolites: !!omap - s_0479: -1 - s_0898: 1 @@ -82857,17 +83403,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3442 - - name: IPC synthase (PI (1-18:0, 2-18:1) ceramide-1 (C26)) + - id: "r_3442" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-1 (C26))" - metabolites: !!omap - s_0479: -1 - s_0898: 1 @@ -82875,17 +83421,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3443 - - name: IPC synthase (PI (1-18:1, 2-18:1) ceramide-1 (C26)) + - id: "r_3443" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-1 (C26))" - metabolites: !!omap - s_0479: -1 - s_0898: 1 @@ -82893,17 +83439,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3444 - - name: IPC synthase (PI (1-16:0, 2-16:1) ceramide-2' (C24)) + - id: "r_3444" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2' (C24))" - metabolites: !!omap - s_0488: -1 - s_0907: 1 @@ -82911,17 +83457,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3445 - - name: IPC synthase (PI (1-16:1, 2-16:1) ceramide-2' (C24)) + - id: "r_3445" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2' (C24))" - metabolites: !!omap - s_0488: -1 - s_0907: 1 @@ -82929,17 +83475,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3446 - - name: IPC synthase (PI (1-18:0, 2-16:1) ceramide-2' (C24)) + - id: "r_3446" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2' (C24))" - metabolites: !!omap - s_0488: -1 - s_0907: 1 @@ -82947,17 +83493,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3447 - - name: IPC synthase (PI (1-18:1, 2-16:1) ceramide-2' (C24)) + - id: "r_3447" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2' (C24))" - metabolites: !!omap - s_0488: -1 - s_0907: 1 @@ -82965,17 +83511,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3448 - - name: IPC synthase (PI (1-16:0, 2-18:1) ceramide-2' (C24)) + - id: "r_3448" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2' (C24))" - metabolites: !!omap - s_0488: -1 - s_0907: 1 @@ -82983,17 +83529,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3449 - - name: IPC synthase (PI (1-16:1, 2-18:1) ceramide-2' (C24)) + - id: "r_3449" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2' (C24))" - metabolites: !!omap - s_0488: -1 - s_0907: 1 @@ -83001,17 +83547,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3450 - - name: IPC synthase (PI (1-18:0, 2-18:1) ceramide-2' (C24)) + - id: "r_3450" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2' (C24))" - metabolites: !!omap - s_0488: -1 - s_0907: 1 @@ -83019,17 +83565,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3451 - - name: IPC synthase (PI (1-18:1, 2-18:1) ceramide-2' (C24)) + - id: "r_3451" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2' (C24))" - metabolites: !!omap - s_0488: -1 - s_0907: 1 @@ -83037,17 +83583,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3452 - - name: IPC synthase (PI (1-16:0, 2-16:1) ceramide-2' (C26)) + - id: "r_3452" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2' (C26))" - metabolites: !!omap - s_0491: -1 - s_0910: 1 @@ -83055,17 +83601,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3453 - - name: IPC synthase (PI (1-16:1, 2-16:1) ceramide-2' (C26)) + - id: "r_3453" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2' (C26))" - metabolites: !!omap - s_0491: -1 - s_0910: 1 @@ -83073,17 +83619,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3454 - - name: IPC synthase (PI (1-18:0, 2-16:1) ceramide-2' (C26)) + - id: "r_3454" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2' (C26))" - metabolites: !!omap - s_0491: -1 - s_0910: 1 @@ -83091,17 +83637,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3455 - - name: IPC synthase (PI (1-18:1, 2-16:1) ceramide-2' (C26)) + - id: "r_3455" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2' (C26))" - metabolites: !!omap - s_0491: -1 - s_0910: 1 @@ -83109,17 +83655,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3456 - - name: IPC synthase (PI (1-16:0, 2-18:1) ceramide-2' (C26)) + - id: "r_3456" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2' (C26))" - metabolites: !!omap - s_0491: -1 - s_0910: 1 @@ -83127,17 +83673,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3457 - - name: IPC synthase (PI (1-16:1, 2-18:1) ceramide-2' (C26)) + - id: "r_3457" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2' (C26))" - metabolites: !!omap - s_0491: -1 - s_0910: 1 @@ -83145,17 +83691,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3458 - - name: IPC synthase (PI (1-18:0, 2-18:1) ceramide-2' (C26)) + - id: "r_3458" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2' (C26))" - metabolites: !!omap - s_0491: -1 - s_0910: 1 @@ -83163,17 +83709,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3459 - - name: IPC synthase (PI (1-18:1, 2-18:1) ceramide-2' (C26)) + - id: "r_3459" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2' (C26))" - metabolites: !!omap - s_0491: -1 - s_0910: 1 @@ -83181,17 +83727,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3460 - - name: IPC synthase (PI (1-16:0, 2-16:1) ceramide-2 (C24)) + - id: "r_3460" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2 (C24))" - metabolites: !!omap - s_0482: -1 - s_0901: 1 @@ -83199,17 +83745,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3461 - - name: IPC synthase (PI (1-16:1, 2-16:1) ceramide-2 (C24)) + - id: "r_3461" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2 (C24))" - metabolites: !!omap - s_0482: -1 - s_0901: 1 @@ -83217,17 +83763,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3462 - - name: IPC synthase (PI (1-18:0, 2-16:1) ceramide-2 (C24)) + - id: "r_3462" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2 (C24))" - metabolites: !!omap - s_0482: -1 - s_0901: 1 @@ -83235,17 +83781,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3463 - - name: IPC synthase (PI (1-18:1, 2-16:1) ceramide-2 (C24)) + - id: "r_3463" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2 (C24))" - metabolites: !!omap - s_0482: -1 - s_0901: 1 @@ -83253,17 +83799,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3464 - - name: IPC synthase (PI (1-16:0, 2-18:1) ceramide-2 (C24)) + - id: "r_3464" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2 (C24))" - metabolites: !!omap - s_0482: -1 - s_0901: 1 @@ -83271,17 +83817,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3465 - - name: IPC synthase (PI (1-16:1, 2-18:1) ceramide-2 (C24)) + - id: "r_3465" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2 (C24))" - metabolites: !!omap - s_0482: -1 - s_0901: 1 @@ -83289,17 +83835,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3466 - - name: IPC synthase (PI (1-18:0, 2-18:1) ceramide-2 (C24)) + - id: "r_3466" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2 (C24))" - metabolites: !!omap - s_0482: -1 - s_0901: 1 @@ -83307,17 +83853,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3467 - - name: IPC synthase (PI (1-18:1, 2-18:1) ceramide-2 (C24)) + - id: "r_3467" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2 (C24))" - metabolites: !!omap - s_0482: -1 - s_0901: 1 @@ -83325,17 +83871,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3468 - - name: IPC synthase (PI (1-16:0, 2-16:1) ceramide-2 (C26)) + - id: "r_3468" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2 (C26))" - metabolites: !!omap - s_0485: -1 - s_0904: 1 @@ -83343,17 +83889,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3469 - - name: IPC synthase (PI (1-16:1, 2-16:1) ceramide-2 (C26)) + - id: "r_3469" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2 (C26))" - metabolites: !!omap - s_0485: -1 - s_0904: 1 @@ -83361,17 +83907,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3470 - - name: IPC synthase (PI (1-18:0, 2-16:1) ceramide-2 (C26)) + - id: "r_3470" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2 (C26))" - metabolites: !!omap - s_0485: -1 - s_0904: 1 @@ -83379,17 +83925,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3471 - - name: IPC synthase (PI (1-18:1, 2-16:1) ceramide-2 (C26)) + - id: "r_3471" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2 (C26))" - metabolites: !!omap - s_0485: -1 - s_0904: 1 @@ -83397,17 +83943,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3472 - - name: IPC synthase (PI (1-16:0, 2-18:1) ceramide-2 (C26)) + - id: "r_3472" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2 (C26))" - metabolites: !!omap - s_0485: -1 - s_0904: 1 @@ -83415,17 +83961,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3473 - - name: IPC synthase (PI (1-16:1, 2-18:1) ceramide-2 (C26)) + - id: "r_3473" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2 (C26))" - metabolites: !!omap - s_0485: -1 - s_0904: 1 @@ -83433,17 +83979,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3474 - - name: IPC synthase (PI (1-18:0, 2-18:1) ceramide-2 (C26)) + - id: "r_3474" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2 (C26))" - metabolites: !!omap - s_0485: -1 - s_0904: 1 @@ -83451,17 +83997,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3475 - - name: IPC synthase (PI (1-18:1, 2-18:1) ceramide-2 (C26)) + - id: "r_3475" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2 (C26))" - metabolites: !!omap - s_0485: -1 - s_0904: 1 @@ -83469,17 +84015,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3476 - - name: IPC synthase (PI (1-16:0, 2-16:1) ceramide-3 (C24)) + - id: "r_3476" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-3 (C24))" - metabolites: !!omap - s_0494: -1 - s_0913: 1 @@ -83487,17 +84033,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3477 - - name: IPC synthase (PI (1-16:1, 2-16:1) ceramide-3 (C24)) + - id: "r_3477" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-3 (C24))" - metabolites: !!omap - s_0494: -1 - s_0913: 1 @@ -83505,17 +84051,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3478 - - name: IPC synthase (PI (1-18:0, 2-16:1) ceramide-3 (C24)) + - id: "r_3478" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-3 (C24))" - metabolites: !!omap - s_0494: -1 - s_0913: 1 @@ -83523,17 +84069,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3479 - - name: IPC synthase (PI (1-18:1, 2-16:1) ceramide-3 (C24)) + - id: "r_3479" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-3 (C24))" - metabolites: !!omap - s_0494: -1 - s_0913: 1 @@ -83541,17 +84087,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3480 - - name: IPC synthase (PI (1-16:0, 2-18:1) ceramide-3 (C24)) + - id: "r_3480" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-3 (C24))" - metabolites: !!omap - s_0494: -1 - s_0913: 1 @@ -83559,17 +84105,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3481 - - name: IPC synthase (PI (1-16:1, 2-18:1) ceramide-3 (C24)) + - id: "r_3481" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-3 (C24))" - metabolites: !!omap - s_0494: -1 - s_0913: 1 @@ -83577,17 +84123,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3482 - - name: IPC synthase (PI (1-18:0, 2-18:1) ceramide-3 (C24)) + - id: "r_3482" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-3 (C24))" - metabolites: !!omap - s_0494: -1 - s_0913: 1 @@ -83595,17 +84141,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3483 - - name: IPC synthase (PI (1-18:1, 2-18:1) ceramide-3 (C24)) + - id: "r_3483" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-3 (C24))" - metabolites: !!omap - s_0494: -1 - s_0913: 1 @@ -83613,17 +84159,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3484 - - name: IPC synthase (PI (1-16:0, 2-16:1) ceramide-3 (C26)) + - id: "r_3484" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-3 (C26))" - metabolites: !!omap - s_0497: -1 - s_0916: 1 @@ -83631,17 +84177,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3485 - - name: IPC synthase (PI (1-16:1, 2-16:1) ceramide-3 (C26)) + - id: "r_3485" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-3 (C26))" - metabolites: !!omap - s_0497: -1 - s_0916: 1 @@ -83649,17 +84195,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3486 - - name: IPC synthase (PI (1-18:0, 2-16:1) ceramide-3 (C26)) + - id: "r_3486" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-3 (C26))" - metabolites: !!omap - s_0497: -1 - s_0916: 1 @@ -83667,17 +84213,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3487 - - name: IPC synthase (PI (1-18:1, 2-16:1) ceramide-3 (C26)) + - id: "r_3487" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-3 (C26))" - metabolites: !!omap - s_0497: -1 - s_0916: 1 @@ -83685,17 +84231,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3488 - - name: IPC synthase (PI (1-16:0, 2-18:1) ceramide-3 (C26)) + - id: "r_3488" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-3 (C26))" - metabolites: !!omap - s_0497: -1 - s_0916: 1 @@ -83703,17 +84249,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3489 - - name: IPC synthase (PI (1-16:1, 2-18:1) ceramide-3 (C26)) + - id: "r_3489" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-3 (C26))" - metabolites: !!omap - s_0497: -1 - s_0916: 1 @@ -83721,17 +84267,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3490 - - name: IPC synthase (PI (1-18:0, 2-18:1) ceramide-3 (C26)) + - id: "r_3490" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-3 (C26))" - metabolites: !!omap - s_0497: -1 - s_0916: 1 @@ -83739,17 +84285,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3491 - - name: IPC synthase (PI (1-18:1, 2-18:1) ceramide-3 (C26)) + - id: "r_3491" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-3 (C26))" - metabolites: !!omap - s_0497: -1 - s_0916: 1 @@ -83757,17 +84303,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3492 - - name: IPC synthase (PI (1-16:0, 2-16:1) ceramide-4 (C24)) + - id: "r_3492" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-4 (C24))" - metabolites: !!omap - s_0500: -1 - s_0919: 1 @@ -83775,17 +84321,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3493 - - name: IPC synthase (PI (1-16:1, 2-16:1) ceramide-4 (C24)) + - id: "r_3493" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-4 (C24))" - metabolites: !!omap - s_0500: -1 - s_0919: 1 @@ -83793,17 +84339,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3494 - - name: IPC synthase (PI (1-18:0, 2-16:1) ceramide-4 (C24)) + - id: "r_3494" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-4 (C24))" - metabolites: !!omap - s_0500: -1 - s_0919: 1 @@ -83811,17 +84357,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3495 - - name: IPC synthase (PI (1-18:1, 2-16:1) ceramide-4 (C24)) + - id: "r_3495" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-4 (C24))" - metabolites: !!omap - s_0500: -1 - s_0919: 1 @@ -83829,17 +84375,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3496 - - name: IPC synthase (PI (1-16:0, 2-18:1) ceramide-4 (C24)) + - id: "r_3496" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-4 (C24))" - metabolites: !!omap - s_0500: -1 - s_0919: 1 @@ -83847,17 +84393,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3497 - - name: IPC synthase (PI (1-16:1, 2-18:1) ceramide-4 (C24)) + - id: "r_3497" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-4 (C24))" - metabolites: !!omap - s_0500: -1 - s_0919: 1 @@ -83865,17 +84411,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3498 - - name: IPC synthase (PI (1-18:0, 2-18:1) ceramide-4 (C24)) + - id: "r_3498" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-4 (C24))" - metabolites: !!omap - s_0500: -1 - s_0919: 1 @@ -83883,17 +84429,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3499 - - name: IPC synthase (PI (1-18:1, 2-18:1) ceramide-4 (C24)) + - id: "r_3499" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-4 (C24))" - metabolites: !!omap - s_0500: -1 - s_0919: 1 @@ -83901,17 +84447,17 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3500 - - name: IPC synthase (PI (1-16:0, 2-16:1) ceramide-4 (C26)) + - id: "r_3500" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-4 (C26))" - metabolites: !!omap - s_0503: -1 - s_0922: 1 @@ -83919,17 +84465,17 @@ - s_3358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3501 - - name: IPC synthase (PI (1-16:1, 2-16:1) ceramide-4 (C26)) + - id: "r_3501" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-4 (C26))" - metabolites: !!omap - s_0503: -1 - s_0922: 1 @@ -83937,17 +84483,17 @@ - s_3362: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3502 - - name: IPC synthase (PI (1-18:0, 2-16:1) ceramide-4 (C26)) + - id: "r_3502" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-4 (C26))" - metabolites: !!omap - s_0503: -1 - s_0922: 1 @@ -83955,17 +84501,17 @@ - s_3364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3503 - - name: IPC synthase (PI (1-18:1, 2-16:1) ceramide-4 (C26)) + - id: "r_3503" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-4 (C26))" - metabolites: !!omap - s_0503: -1 - s_0922: 1 @@ -83973,17 +84519,17 @@ - s_3366: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3504 - - name: IPC synthase (PI (1-16:0, 2-18:1) ceramide-4 (C26)) + - id: "r_3504" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-4 (C26))" - metabolites: !!omap - s_0503: -1 - s_0922: 1 @@ -83991,17 +84537,17 @@ - s_3368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3505 - - name: IPC synthase (PI (1-16:1, 2-18:1) ceramide-4 (C26)) + - id: "r_3505" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-4 (C26))" - metabolites: !!omap - s_0503: -1 - s_0922: 1 @@ -84009,17 +84555,17 @@ - s_3370: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3506 - - name: IPC synthase (PI (1-18:0, 2-18:1) ceramide-4 (C26)) + - id: "r_3506" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-4 (C26))" - metabolites: !!omap - s_0503: -1 - s_0922: 1 @@ -84027,17 +84573,17 @@ - s_3372: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3507 - - name: IPC synthase (PI (1-18:1, 2-18:1) ceramide-4 (C26)) + - id: "r_3507" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-4 (C26))" - metabolites: !!omap - s_0503: -1 - s_0922: 1 @@ -84045,5171 +84591,5583 @@ - s_3374: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR367W and YKL004W + - gene_reaction_rule: "YDR367W and YKL004W" - annotation: !!omap - - ec-code: 2.-.-.- + - ec-code: "2.-.-.-" - pmid: - - 18296751 - - 9092515 - - sbo: SBO:0000176 + - "18296751" + - "9092515" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_3508 - - name: laurate transport, cytoplasm-ER membrane + - id: "r_3508" + - name: "laurate transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1065: -1 - s_2832: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR135773 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR135773" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3509 - - name: myristate transport, cytoplasm-ER membrane + - id: "r_3509" + - name: "myristate transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1161: -1 - s_2835: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR128297 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR128297" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3510 - - name: palmitate transport, cytoplasm-ER membrane + - id: "r_3510" + - name: "palmitate transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1286: -1 - s_2836: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99101 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3511 - - name: palmitoleate transport, cytoplasm-ER membrane + - id: "r_3511" + - name: "palmitoleate transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1293: -1 - s_2837: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3512 - - name: stearate transport, cytoplasm-ER membrane + - id: "r_3512" + - name: "stearate transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1449: -1 - s_2838: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99109 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99109" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3513 - - name: oleate transport, cytoplasm-ER membrane + - id: "r_3513" + - name: "oleate transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1260: -1 - s_2839: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99110 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3514 - - name: malonyl-CoA transport, cytoplasm-ER membrane + - id: "r_3514" + - name: "malonyl-CoA transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1101: -1 - s_2782: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3515 - - name: lauroyl-CoA transport, cytoplasm-ER membrane + - id: "r_3515" + - name: "lauroyl-CoA transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1073: -1 - s_2781: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3516 - - name: myristoyl-CoA transport, cytoplasm-ER membrane + - id: "r_3516" + - name: "myristoyl-CoA transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1176: -1 - s_2787: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3517 - - name: palmitoyl-CoA transport, cytoplasm-ER membrane + - id: "r_3517" + - name: "palmitoyl-CoA transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1302: -1 - s_2789: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR103046 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR103046" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3518 - - name: palmitoleoyl-CoA transport, cytoplasm-ER membrane + - id: "r_3518" + - name: "palmitoleoyl-CoA transport, cytoplasm-ER membrane" - metabolites: !!omap - s_2819: 1 - s_2877: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3519 - - name: stearoyl-CoA transport, cytoplasm-ER membrane + - id: "r_3519" + - name: "stearoyl-CoA transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1454: -1 - s_2791: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR104598 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104598" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3520 - - name: oleoyl-CoA transport, cytoplasm-ER membrane + - id: "r_3520" + - name: "oleoyl-CoA transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1262: -1 - s_2821: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR128426 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR128426" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3521 - - name: icosanoyl-CoA transport, cytoplasm-ER membrane + - id: "r_3521" + - name: "icosanoyl-CoA transport, cytoplasm-ER membrane" - metabolites: !!omap - s_2793: 1 - s_2878: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3522 - - name: docosanoyl-CoA transport, cytoplasm-ER membrane + - id: "r_3522" + - name: "docosanoyl-CoA transport, cytoplasm-ER membrane" - metabolites: !!omap - s_2795: 1 - s_2880: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3523 - - name: tetracosanoyl-CoA transport, cytoplasm-ER membrane + - id: "r_3523" + - name: "tetracosanoyl-CoA transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1479: -1 - s_2797: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137463 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137463" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3524 - - name: hexacosanoyl-CoA transport, cytoplasm-ER membrane + - id: "r_3524" + - name: "hexacosanoyl-CoA transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0816: -1 - s_2816: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR124347 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR124347" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3525 - - name: H+ transport, cytoplasm-ER membrane + - id: "r_3525" + - name: "H+ transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0794: -1 - s_2783: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100765 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3526 - - name: H2O transport, cytoplasm-ER membrane + - id: "r_3526" + - name: "H2O transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0803: -1 - s_2808: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLL052C or YPR192W + - gene_reaction_rule: "YLL052C or YPR192W" - annotation: !!omap - - metanetx.reaction: MNXR98641 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3527 - - name: CO2 transport, cytoplasm-ER membrane + - id: "r_3527" + - name: "CO2 transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0456: -1 - s_2784: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96810 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3528 - - name: coenzyme A transport, cytoplasm-ER membrane + - id: "r_3528" + - name: "coenzyme A transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0529: -1 - s_2785: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96815 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3529 - - name: NADPH transport, cytoplasm-ER membrane + - id: "r_3529" + - name: "NADPH transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1212: -1 - s_2799: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101894 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101894" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3530 - - name: NADP(+) transport, cytoplasm-ER membrane + - id: "r_3530" + - name: "NADP(+) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1207: -1 - s_2800: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101896 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101896" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3531 - - name: O2 transport, cytoplasm-ER membrane + - id: "r_3531" + - name: "O2 transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1275: -1 - s_2817: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR102090 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3532 - - name: NADH transport, cytoplasm-ER membrane + - id: "r_3532" + - name: "NADH transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1203: -1 - s_2818: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101881 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101881" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3533 - - name: NAD transport, cytoplasm-ER membrane + - id: "r_3533" + - name: "NAD transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1198: -1 - s_2820: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101900 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101900" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3534 - - name: glycerol 3-phosphate transport, cytoplasm-ER membrane + - id: "r_3534" + - name: "glycerol 3-phosphate transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0767: -1 - s_2934: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100308 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100308" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3535 - - name: dihydroxyacetone phosphate transport, cytoplasm-ER membrane + - id: "r_3535" + - name: "dihydroxyacetone phosphate transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0629: -1 - s_2939: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR97366 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR97366" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3536 - - name: diphosphate transport, cytoplasm-ER membrane + - id: "r_3536" + - name: "diphosphate transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0633: -1 - s_2834: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR103112 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR103112" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3537 - - name: phosphate transport, cytoplasm-ER membrane + - id: "r_3537" + - name: "phosphate transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1322: -1 - s_2966: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR102871 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3538 - - name: CTP transport, cytoplasm-ER membrane + - id: "r_3538" + - name: "CTP transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0539: -1 - s_3083: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96946 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96946" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3539 - - name: CDP transport, cytoplasm-ER membrane + - id: "r_3539" + - name: "CDP transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0467: -1 - s_3215: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96562 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96562" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3540 - - name: CMP transport, cytoplasm-ER membrane + - id: "r_3540" + - name: "CMP transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0526: -1 - s_3108: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96806 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96806" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3541 - - name: CDP-ethanolamine transport, cytoplasm-ER membrane + - id: "r_3541" + - name: "CDP-ethanolamine transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0474: -1 - s_3216: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3542 - - name: CDP-choline transport, cytoplasm-ER membrane + - id: "r_3542" + - name: "CDP-choline transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0469: -1 - s_3217: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR105436 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR105436" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3543 - - name: ATP transport, cytoplasm-ER membrane + - id: "r_3543" + - name: "ATP transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0434: -1 - s_2831: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96140 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3544 - - name: AMP transport, cytoplasm-ER membrane + - id: "r_3544" + - name: "AMP transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0423: -1 - s_2833: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95830 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95830" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3545 - - name: L-serine transport, cytoplasm-ER membrane + - id: "r_3545" + - name: "L-serine transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1039: -1 - s_3107: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKR039W + - gene_reaction_rule: "YKR039W" - annotation: !!omap - - metanetx.reaction: MNXR104354 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104354" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3546 - - name: myo-inositol transport, cytoplasm-ER membrane + - id: "r_3546" + - name: "myo-inositol transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1153: -1 - s_3117: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100848 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100848" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3547 - - name: S-adenosyl-L-methionine transport, cytoplasm-ER membrane + - id: "r_3547" + - name: "S-adenosyl-L-methionine transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1416: -1 - s_3182: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95809 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95809" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3548 - - name: S-adenosyl-L-homocysteine transport, cytoplasm-ER membrane + - id: "r_3548" + - name: "S-adenosyl-L-homocysteine transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1413: -1 - s_3183: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95626 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95626" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3549 - - name: episterol transport, cytoplasm-ER membrane + - id: "r_3549" + - name: "episterol transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0657: -1 - s_3432: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR97944 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR97944" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3550 - - name: fecosterol transport, cytoplasm-ER membrane + - id: "r_3550" + - name: "fecosterol transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0700: -1 - s_3435: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99529 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99529" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3551 - - name: lanosterol transport, cytoplasm-ER membrane + - id: "r_3551" + - name: "lanosterol transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1059: -1 - s_3438: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101014 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101014" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3552 - - name: ergosterol transport, cytoplasm-ER membrane + - id: "r_3552" + - name: "ergosterol transport, cytoplasm-ER membrane" - metabolites: !!omap - s_0666: -1 - s_3441: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR97950 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR97950" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3553 - - name: zymosterol transport, cytoplasm-ER membrane + - id: "r_3553" + - name: "zymosterol transport, cytoplasm-ER membrane" - metabolites: !!omap - s_1569: -1 - s_3444: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR105285 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR105285" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3554 - - name: diglyceride (1-16:0, 2-16:1) transport, cytoplasm-ER membrane + - id: "r_3554" + - name: "diglyceride (1-16:0, 2-16:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_2967: 1 - s_3497: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3555 - - name: diglyceride (1-16:1, 2-16:1) transport, cytoplasm-ER membrane + - id: "r_3555" + - name: "diglyceride (1-16:1, 2-16:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_2969: 1 - s_3500: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3556 - - name: diglyceride (1-18:0, 2-16:1) transport, cytoplasm-ER membrane + - id: "r_3556" + - name: "diglyceride (1-18:0, 2-16:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_2971: 1 - s_3502: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3557 - - name: diglyceride (1-18:1, 2-16:1) transport, cytoplasm-ER membrane + - id: "r_3557" + - name: "diglyceride (1-18:1, 2-16:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_2973: 1 - s_3504: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3558 - - name: diglyceride (1-16:0, 2-18:1) transport, cytoplasm-ER membrane + - id: "r_3558" + - name: "diglyceride (1-16:0, 2-18:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_2968: 1 - s_3506: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3559 - - name: diglyceride (1-16:1, 2-18:1) transport, cytoplasm-ER membrane + - id: "r_3559" + - name: "diglyceride (1-16:1, 2-18:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_2970: 1 - s_3508: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3560 - - name: diglyceride (1-18:0, 2-18:1) transport, cytoplasm-ER membrane + - id: "r_3560" + - name: "diglyceride (1-18:0, 2-18:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_2972: 1 - s_3510: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3561 - - name: diglyceride (1-18:1, 2-18:1) transport, cytoplasm-ER membrane + - id: "r_3561" + - name: "diglyceride (1-18:1, 2-18:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_2974: 1 - s_3512: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3562 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, cytoplasm-ER membrane + - id: "r_3562" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_3118: 1 - s_3545: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3563 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, cytoplasm-ER membrane + - id: "r_3563" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_3119: 1 - s_3547: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3564 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, cytoplasm-ER membrane + - id: "r_3564" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_3120: 1 - s_3549: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3565 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, cytoplasm-ER membrane + - id: "r_3565" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_3121: 1 - s_3551: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3566 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, cytoplasm-ER membrane + - id: "r_3566" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_3122: 1 - s_3553: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3567 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, cytoplasm-ER membrane + - id: "r_3567" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_3123: 1 - s_3555: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3568 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, cytoplasm-ER membrane + - id: "r_3568" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_3124: 1 - s_3557: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3569 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, cytoplasm-ER membrane + - id: "r_3569" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, cytoplasm-ER membrane" - metabolites: !!omap - s_3125: 1 - s_3559: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3570 - - name: sn-glycero-3-phosphocholine transport, ER membrane-cytoplasm + - id: "r_3570" + - name: "sn-glycero-3-phosphocholine transport, ER membrane-cytoplasm" - metabolites: !!omap - s_1433: 1 - s_3447: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99874 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99874" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3571 - - name: hexadecanoate (n-C16:0) transport, cytoplasm-lipid particle + - id: "r_3571" + - name: "hexadecanoate (n-C16:0) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_1286: -1 - s_2846: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99101 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3572 - - name: hexadecenoate (n-C16:1) transport, cytoplasm-lipid particle + - id: "r_3572" + - name: "hexadecenoate (n-C16:1) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_1293: -1 - s_2848: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3573 - - name: octadecanoate (n-C18:0) transport, cytoplasm-lipid particle + - id: "r_3573" + - name: "octadecanoate (n-C18:0) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_1449: -1 - s_2850: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99109 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99109" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3574 - - name: octadecenoate (n-C18:1) transport, cytoplasm-lipid particle + - id: "r_3574" + - name: "octadecenoate (n-C18:1) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_1260: -1 - s_2852: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99110 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3575 - - name: lauroyl-CoA transport, cytoplasm-lipid particle + - id: "r_3575" + - name: "lauroyl-CoA transport, cytoplasm-lipid particle" - metabolites: !!omap - s_1073: -1 - s_2843: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3576 - - name: myristoyl-CoA transport, cytoplasm-lipid particle + - id: "r_3576" + - name: "myristoyl-CoA transport, cytoplasm-lipid particle" - metabolites: !!omap - s_1176: -1 - s_2845: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3577 - - name: palmitoyl-CoA transport, cytoplasm-lipid particle + - id: "r_3577" + - name: "palmitoyl-CoA transport, cytoplasm-lipid particle" - metabolites: !!omap - s_1302: -1 - s_2847: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR103046 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR103046" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3578 - - name: palmitoleoyl-CoA transport, cytoplasm-lipid particle + - id: "r_3578" + - name: "palmitoleoyl-CoA transport, cytoplasm-lipid particle" - metabolites: !!omap - s_2849: 1 - s_2877: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3579 - - name: stearoyl-CoA transport, cytoplasm-lipid particle + - id: "r_3579" + - name: "stearoyl-CoA transport, cytoplasm-lipid particle" - metabolites: !!omap - s_1454: -1 - s_2851: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR104598 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104598" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3580 - - name: oleoyl-CoA transport, cytoplasm-lipid particle + - id: "r_3580" + - name: "oleoyl-CoA transport, cytoplasm-lipid particle" - metabolites: !!omap - s_1262: -1 - s_2853: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR128426 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR128426" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3581 - - name: glycerol 3-phosphate transport, cytoplasm-lipid particle + - id: "r_3581" + - name: "glycerol 3-phosphate transport, cytoplasm-lipid particle" - metabolites: !!omap - s_0767: -1 - s_0769: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100308 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100308" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3582 - - name: dihydroxyacetone phosphate transport, cytoplasm-lipid particle + - id: "r_3582" + - name: "dihydroxyacetone phosphate transport, cytoplasm-lipid particle" - metabolites: !!omap - s_0629: -1 - s_0631: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR97366 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR97366" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3583 - - name: NADPH transport, cytoplasm-lipid particle + - id: "r_3583" + - name: "NADPH transport, cytoplasm-lipid particle" - metabolites: !!omap - s_1212: -1 - s_2952: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101894 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101894" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3584 - - name: NADP(+) transport, cytoplasm-lipid particle + - id: "r_3584" + - name: "NADP(+) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_1207: -1 - s_2953: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101896 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101896" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3585 - - name: ATP transport, cytoplasm-lipid particle + - id: "r_3585" + - name: "ATP transport, cytoplasm-lipid particle" - metabolites: !!omap - s_0434: -1 - s_2840: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96140 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3586 - - name: AMP transport, cytoplasm-lipid particle + - id: "r_3586" + - name: "AMP transport, cytoplasm-lipid particle" - metabolites: !!omap - s_0423: -1 - s_2842: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95830 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95830" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3587 - - name: diphosphate transport, cytoplasm-lipid particle + - id: "r_3587" + - name: "diphosphate transport, cytoplasm-lipid particle" - metabolites: !!omap - s_0633: -1 - s_0635: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR103112 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR103112" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3588 - - name: diglyceride (1-16:0, 2-16:1) transport, cytoplasm-lipid particle + - id: "r_3588" + - name: "diglyceride (1-16:0, 2-16:1) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_3043: 1 - s_3497: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3589 - - name: diglyceride (1-16:1, 2-16:1) transport, cytoplasm-lipid particle + - id: "r_3589" + - name: "diglyceride (1-16:1, 2-16:1) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_3047: 1 - s_3500: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3590 - - name: diglyceride (1-18:0, 2-16:1) transport, cytoplasm-lipid particle + - id: "r_3590" + - name: "diglyceride (1-18:0, 2-16:1) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_3051: 1 - s_3502: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3591 - - name: diglyceride (1-18:1, 2-16:1) transport, cytoplasm-lipid particle + - id: "r_3591" + - name: "diglyceride (1-18:1, 2-16:1) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_3055: 1 - s_3504: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3592 - - name: diglyceride (1-16:0, 2-18:1) transport, cytoplasm-lipid particle + - id: "r_3592" + - name: "diglyceride (1-16:0, 2-18:1) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_3045: 1 - s_3506: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3593 - - name: diglyceride (1-16:1, 2-18:1) transport, cytoplasm-lipid particle + - id: "r_3593" + - name: "diglyceride (1-16:1, 2-18:1) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_3049: 1 - s_3508: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3594 - - name: diglyceride (1-18:0, 2-18:1) transport, cytoplasm-lipid particle + - id: "r_3594" + - name: "diglyceride (1-18:0, 2-18:1) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_3053: 1 - s_3510: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3595 - - name: diglyceride (1-18:1, 2-18:1) transport, cytoplasm-lipid particle + - id: "r_3595" + - name: "diglyceride (1-18:1, 2-18:1) transport, cytoplasm-lipid particle" - metabolites: !!omap - s_3057: 1 - s_3512: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3596 - - name: H2O transport, cytoplasm-lipid particle + - id: "r_3596" + - name: "H2O transport, cytoplasm-lipid particle" - metabolites: !!omap - s_0803: -1 - s_3657: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR98641 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3597 - - name: glycerol transport, lipid particle-cytoplasm + - id: "r_3597" + - name: "glycerol transport, lipid particle-cytoplasm" - metabolites: !!omap - s_0765: 1 - s_3684: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100343 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100343" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3598 - - name: docosanoyl-CoA transport, lipid particle-cytoplasm + - id: "r_3598" + - name: "docosanoyl-CoA transport, lipid particle-cytoplasm" - metabolites: !!omap - s_2872: -1 - s_2880: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3599 - - name: tetracosanoyl-CoA transport, lipid particle-cytoplasm + - id: "r_3599" + - name: "tetracosanoyl-CoA transport, lipid particle-cytoplasm" - metabolites: !!omap - s_1479: 1 - s_2874: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137463 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137463" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3600 - - name: hexacosanoyl-CoA transport, lipid particle-cytoplasm + - id: "r_3600" + - name: "hexacosanoyl-CoA transport, lipid particle-cytoplasm" - metabolites: !!omap - s_0816: 1 - s_2876: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR124347 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR124347" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3601 - - name: ATP transport, cytoplasm-cell envelope + - id: "r_3601" + - name: "ATP transport, cytoplasm-cell envelope" - metabolites: !!omap - s_0434: -1 - s_2856: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96140 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3602 - - name: ADP transport, cytoplasm-cell envelope + - id: "r_3602" + - name: "ADP transport, cytoplasm-cell envelope" - metabolites: !!omap - s_0394: -1 - s_3324: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95484 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95484" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3603 - - name: H+ transport, cytoplasm-cell envelope + - id: "r_3603" + - name: "H+ transport, cytoplasm-cell envelope" - metabolites: !!omap - s_0793: 1 - s_0794: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100765 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3604 - - name: H2O transport, cytoplasm-cell envelope + - id: "r_3604" + - name: "H2O transport, cytoplasm-cell envelope" - metabolites: !!omap - s_0803: -1 - s_3449: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLL052C or YLL053C or YPR192W + - gene_reaction_rule: "YLL052C or YLL053C or YPR192W" - annotation: !!omap - - metanetx.reaction: MNXR98641 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3605 - - name: phosphate transport, cytoplasm-cell envelope + - id: "r_3605" + - name: "phosphate transport, cytoplasm-cell envelope" - metabolites: !!omap - s_1322: -1 - s_3536: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR037C or YJL198W or YML123C + - gene_reaction_rule: "YCR037C or YJL198W or YML123C" - annotation: !!omap - - metanetx.reaction: MNXR102871 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3606 - - name: sn-glycero-3-phosphocholine transport, cell envelope-cytoplasm + - id: "r_3606" + - name: "sn-glycero-3-phosphocholine transport, cell envelope-cytoplasm" - metabolites: !!omap - s_1432: -1 - s_1433: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR098C + - gene_reaction_rule: "YCR098C" - annotation: !!omap - - metanetx.reaction: MNXR99874 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99874" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3607 - - name: 1-(sn-glycero-3-phospho)-1D-myo-inositol transport, cell envelope-cytoplasm + - id: "r_3607" + - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol transport, cell envelope-cytoplasm" - metabolites: !!omap - s_0079: 1 - s_3495: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR098C + - gene_reaction_rule: "YCR098C" - annotation: !!omap - - metanetx.reaction: MNXR99888 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99888" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3608 - - name: palmitate transport, cell envelope-cytoplasm + - id: "r_3608" + - name: "palmitate transport, cell envelope-cytoplasm" - metabolites: !!omap - s_1286: 1 - s_3463: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99101 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3609 - - name: palmitoleate transport, cell envelope-cytoplasm + - id: "r_3609" + - name: "palmitoleate transport, cell envelope-cytoplasm" - metabolites: !!omap - s_1293: 1 - s_3451: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3610 - - name: stearate transport, cell envelope-cytoplasm + - id: "r_3610" + - name: "stearate transport, cell envelope-cytoplasm" - metabolites: !!omap - s_1449: 1 - s_3464: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99109 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99109" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3611 - - name: oleate transport, cell envelope-cytoplasm + - id: "r_3611" + - name: "oleate transport, cell envelope-cytoplasm" - metabolites: !!omap - s_1260: 1 - s_3459: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99110 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3612 - - name: icosanoyl-CoA transport, cell envelope-cytoplasm + - id: "r_3612" + - name: "icosanoyl-CoA transport, cell envelope-cytoplasm" - metabolites: !!omap - s_2861: -1 - s_2878: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3613 - - name: docosanoyl-CoA transport, cell envelope-cytoplasm + - id: "r_3613" + - name: "docosanoyl-CoA transport, cell envelope-cytoplasm" - metabolites: !!omap - s_2863: -1 - s_2880: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3614 - - name: tetracosanoyl-CoA transport, cell envelope-cytoplasm + - id: "r_3614" + - name: "tetracosanoyl-CoA transport, cell envelope-cytoplasm" - metabolites: !!omap - s_1479: 1 - s_2865: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137463 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137463" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3615 - - name: hexacosanoyl-CoA transport, cell envelope-cytoplasm + - id: "r_3615" + - name: "hexacosanoyl-CoA transport, cell envelope-cytoplasm" - metabolites: !!omap - s_0816: 1 - s_2867: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR124347 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR124347" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3616 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, cell envelope-cytoplasm + - id: "r_3616" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3408: -1 - s_3496: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3617 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, cell envelope-cytoplasm + - id: "r_3617" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3409: -1 - s_3499: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3618 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, cell envelope-cytoplasm + - id: "r_3618" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3410: -1 - s_3501: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3619 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, cell envelope-cytoplasm + - id: "r_3619" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3411: -1 - s_3503: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3620 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, cell envelope-cytoplasm + - id: "r_3620" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3412: -1 - s_3505: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3621 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, cell envelope-cytoplasm + - id: "r_3621" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3413: -1 - s_3507: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3622 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, cell envelope-cytoplasm + - id: "r_3622" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3414: -1 - s_3509: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3623 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, cell envelope-cytoplasm + - id: "r_3623" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3415: -1 - s_3511: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3624 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) transport, cell envelope-cytoplasm + - id: "r_3624" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3325: -1 - s_3576: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3625 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) transport, cell envelope-cytoplasm + - id: "r_3625" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3327: -1 - s_3577: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3626 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) transport, cell envelope-cytoplasm + - id: "r_3626" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3329: -1 - s_3578: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3627 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) transport, cell envelope-cytoplasm + - id: "r_3627" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3331: -1 - s_3579: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3628 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) transport, cell envelope-cytoplasm + - id: "r_3628" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3333: -1 - s_3580: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3629 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) transport, cell envelope-cytoplasm + - id: "r_3629" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3335: -1 - s_3581: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3630 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) transport, cell envelope-cytoplasm + - id: "r_3630" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3337: -1 - s_3582: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3631 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) transport, cell envelope-cytoplasm + - id: "r_3631" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) transport, cell envelope-cytoplasm" - metabolites: !!omap - s_3339: -1 - s_3583: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3632 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, nucleus-cytoplasm + - id: "r_3632" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3400: -1 - s_3496: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3633 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, nucleus-cytoplasm + - id: "r_3633" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3401: -1 - s_3499: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3634 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, nucleus-cytoplasm + - id: "r_3634" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3402: -1 - s_3501: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3635 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, nucleus-cytoplasm + - id: "r_3635" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3403: -1 - s_3503: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3636 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, nucleus-cytoplasm + - id: "r_3636" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3404: -1 - s_3505: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3637 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, nucleus-cytoplasm + - id: "r_3637" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3405: -1 - s_3507: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3638 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, nucleus-cytoplasm + - id: "r_3638" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3406: -1 - s_3509: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3639 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, nucleus-cytoplasm + - id: "r_3639" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3407: -1 - s_3511: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3640 - - name: diglyceride (1-16:0, 2-16:1) transport, nucleus-cytoplasm + - id: "r_3640" + - name: "diglyceride (1-16:0, 2-16:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3497: 1 - s_3513: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3641 - - name: diglyceride (1-16:1, 2-16:1) transport, nucleus-cytoplasm + - id: "r_3641" + - name: "diglyceride (1-16:1, 2-16:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3500: 1 - s_3514: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3642 - - name: diglyceride (1-18:0, 2-16:1) transport, nucleus-cytoplasm + - id: "r_3642" + - name: "diglyceride (1-18:0, 2-16:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3502: 1 - s_3515: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3643 - - name: diglyceride (1-18:1, 2-16:1) transport, nucleus-cytoplasm + - id: "r_3643" + - name: "diglyceride (1-18:1, 2-16:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3504: 1 - s_3516: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3644 - - name: diglyceride (1-16:0, 2-18:1) transport, nucleus-cytoplasm + - id: "r_3644" + - name: "diglyceride (1-16:0, 2-18:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3506: 1 - s_3517: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3645 - - name: diglyceride (1-16:1, 2-18:1) transport, nucleus-cytoplasm + - id: "r_3645" + - name: "diglyceride (1-16:1, 2-18:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3508: 1 - s_3518: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3646 - - name: diglyceride (1-18:0, 2-18:1) transport, nucleus-cytoplasm + - id: "r_3646" + - name: "diglyceride (1-18:0, 2-18:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3510: 1 - s_3519: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3647 - - name: diglyceride (1-18:1, 2-18:1) transport, nucleus-cytoplasm + - id: "r_3647" + - name: "diglyceride (1-18:1, 2-18:1) transport, nucleus-cytoplasm" - metabolites: !!omap - s_3512: 1 - s_3520: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3648 - - name: H2O transport, cytoplasm-vacuolar membrane + - id: "r_3648" + - name: "H2O transport, cytoplasm-vacuolar membrane" - metabolites: !!omap - s_0803: -1 - s_2976: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR98641 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3649 - - name: phosphate transport, cytoplasm-vacuolar membrane + - id: "r_3649" + - name: "phosphate transport, cytoplasm-vacuolar membrane" - metabolites: !!omap - s_1322: -1 - s_2977: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR013C + - gene_reaction_rule: "YNR013C" - annotation: !!omap - - metanetx.reaction: MNXR102871 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3650 - - name: H+ transport, cytoplasm-vacuolar membrane + - id: "r_3650" + - name: "H+ transport, cytoplasm-vacuolar membrane" - metabolites: !!omap - s_0794: -1 - s_3164: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100765 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3651 - - name: ATP transport, cytoplasm-vacuolar membrane + - id: "r_3651" + - name: "ATP transport, cytoplasm-vacuolar membrane" - metabolites: !!omap - s_0434: -1 - s_3341: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96140 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3652 - - name: ADP transport, cytoplasm-vacuolar membrane + - id: "r_3652" + - name: "ADP transport, cytoplasm-vacuolar membrane" - metabolites: !!omap - s_0394: -1 - s_3342: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95484 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95484" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3653 - - name: carbon dioxide transport, cytoplasm-vacuolar membrane + - id: "r_3653" + - name: "carbon dioxide transport, cytoplasm-vacuolar membrane" - metabolites: !!omap - s_0456: -1 - s_3165: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96810 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3654 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) transport, vacuolar membrane-cytoplasm + - id: "r_3654" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) transport, vacuolar membrane-cytoplasm" - metabolites: !!omap - s_3416: -1 - s_3600: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3655 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) transport, vacuolar membrane-cytoplasm + - id: "r_3655" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) transport, vacuolar membrane-cytoplasm" - metabolites: !!omap - s_3417: -1 - s_3601: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3656 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) transport, vacuolar membrane-cytoplasm + - id: "r_3656" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) transport, vacuolar membrane-cytoplasm" - metabolites: !!omap - s_3418: -1 - s_3602: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3657 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) transport, vacuolar membrane-cytoplasm + - id: "r_3657" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) transport, vacuolar membrane-cytoplasm" - metabolites: !!omap - s_3419: -1 - s_3603: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3658 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) transport, vacuolar membrane-cytoplasm + - id: "r_3658" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) transport, vacuolar membrane-cytoplasm" - metabolites: !!omap - s_3420: -1 - s_3604: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3659 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) transport, vacuolar membrane-cytoplasm + - id: "r_3659" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) transport, vacuolar membrane-cytoplasm" - metabolites: !!omap - s_3421: -1 - s_3605: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3660 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) transport, vacuolar membrane-cytoplasm + - id: "r_3660" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) transport, vacuolar membrane-cytoplasm" - metabolites: !!omap - s_3422: -1 - s_3606: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3661 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) transport, vacuolar membrane-cytoplasm + - id: "r_3661" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) transport, vacuolar membrane-cytoplasm" - metabolites: !!omap - s_3423: -1 - s_3607: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3662 - - name: H2O transport, cytoplasm-Golgi membrane + - id: "r_3662" + - name: "H2O transport, cytoplasm-Golgi membrane" - metabolites: !!omap - s_0803: -1 - s_2994: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR98641 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3663 - - name: phosphate transport, cytoplasm-Golgi membrane + - id: "r_3663" + - name: "phosphate transport, cytoplasm-Golgi membrane" - metabolites: !!omap - s_1322: -1 - s_2995: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR102871 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3664 - - name: H+ transport, cytoplasm-Golgi membrane + - id: "r_3664" + - name: "H+ transport, cytoplasm-Golgi membrane" - metabolites: !!omap - s_0794: -1 - s_3146: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100765 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3665 - - name: carbon dioxide transport, cytoplasm-Golgi membrane + - id: "r_3665" + - name: "carbon dioxide transport, cytoplasm-Golgi membrane" - metabolites: !!omap - s_0456: -1 - s_3147: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96810 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3666 - - name: ATP transport, cytoplasm-Golgi membrane + - id: "r_3666" + - name: "ATP transport, cytoplasm-Golgi membrane" - metabolites: !!omap - s_0434: -1 - s_3359: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96140 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3667 - - name: ADP transport, cytoplasm-Golgi membrane + - id: "r_3667" + - name: "ADP transport, cytoplasm-Golgi membrane" - metabolites: !!omap - s_0394: -1 - s_3360: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95484 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95484" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3668 - - name: H2O transport, cytoplasm-mitochondrial membrane + - id: "r_3668" + - name: "H2O transport, cytoplasm-mitochondrial membrane" - metabolites: !!omap - s_0803: -1 - s_3226: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR98641 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3669 - - name: carbon dioxide transport, cytoplasm-mitochondrial membrane + - id: "r_3669" + - name: "carbon dioxide transport, cytoplasm-mitochondrial membrane" - metabolites: !!omap - s_0456: -1 - s_3129: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96810 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3670 - - name: palmitoleoyl-CoA transport, cytoplasm-mitochondrial membrane + - id: "r_3670" + - name: "palmitoleoyl-CoA transport, cytoplasm-mitochondrial membrane" - metabolites: !!omap - s_2877: -1 - s_3320: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3671 - - name: oleoyl-CoA transport, cytoplasm-mitochondrial membrane + - id: "r_3671" + - name: "oleoyl-CoA transport, cytoplasm-mitochondrial membrane" - metabolites: !!omap - s_1262: -1 - s_3322: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR128426 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR128426" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3672 - - name: diglyceride (1-16:0, 2-16:1) transport, mitochondrial membrane-cytoplasm + - id: "r_3672" + - name: "diglyceride (1-16:0, 2-16:1) transport, mitochondrial membrane-cytoplasm" - metabolites: !!omap - s_3497: 1 - s_3521: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3673 - - name: diglyceride (1-16:1, 2-16:1) transport, mitochondrial membrane-cytoplasm + - id: "r_3673" + - name: "diglyceride (1-16:1, 2-16:1) transport, mitochondrial membrane-cytoplasm" - metabolites: !!omap - s_3500: 1 - s_3522: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3674 - - name: diglyceride (1-18:0, 2-16:1) transport, mitochondrial membrane-cytoplasm + - id: "r_3674" + - name: "diglyceride (1-18:0, 2-16:1) transport, mitochondrial membrane-cytoplasm" - metabolites: !!omap - s_3502: 1 - s_3523: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3675 - - name: diglyceride (1-18:1, 2-16:1) transport, mitochondrial membrane-cytoplasm + - id: "r_3675" + - name: "diglyceride (1-18:1, 2-16:1) transport, mitochondrial membrane-cytoplasm" - metabolites: !!omap - s_3504: 1 - s_3524: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3676 - - name: diglyceride (1-16:0, 2-18:1) transport, mitochondrial membrane-cytoplasm + - id: "r_3676" + - name: "diglyceride (1-16:0, 2-18:1) transport, mitochondrial membrane-cytoplasm" - metabolites: !!omap - s_3506: 1 - s_3525: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3677 - - name: diglyceride (1-16:1, 2-18:1) transport, mitochondrial membrane-cytoplasm + - id: "r_3677" + - name: "diglyceride (1-16:1, 2-18:1) transport, mitochondrial membrane-cytoplasm" - metabolites: !!omap - s_3508: 1 - s_3526: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3678 - - name: palmitate transport, mitochondrial membrane-cytoplasm + - id: "r_3678" + - name: "palmitate transport, mitochondrial membrane-cytoplasm" - metabolites: !!omap - s_1286: 1 - s_3271: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99101 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3679 - - name: stearate transport, mitochondrial membrane-cytoplasm + - id: "r_3679" + - name: "stearate transport, mitochondrial membrane-cytoplasm" - metabolites: !!omap - s_1449: 1 - s_3277: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99109 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99109" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3680 - - name: coenzyme A transport, mitochondrial membrane-cytoplasm + - id: "r_3680" + - name: "coenzyme A transport, mitochondrial membrane-cytoplasm" - metabolites: !!omap - s_0529: 1 - s_3321: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR002W + - gene_reaction_rule: "YHR002W" - annotation: !!omap - - metanetx.reaction: MNXR96815 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3681 - - name: laurate transport, ER membrane-lipid particle + - id: "r_3681" + - name: "laurate transport, ER membrane-lipid particle" - metabolites: !!omap - s_2832: -1 - s_2841: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR135773 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR135773" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3682 - - name: myristate transport, ER membrane-lipid particle + - id: "r_3682" + - name: "myristate transport, ER membrane-lipid particle" - metabolites: !!omap - s_2835: -1 - s_2844: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR128297 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR128297" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3683 - - name: lignoceric acid transport, ER membrane-lipid particle + - id: "r_3683" + - name: "lignoceric acid transport, ER membrane-lipid particle" - metabolites: !!omap - s_2869: -1 - s_2873: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR128298 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR128298" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3684 - - name: cerotic acid transport, ER membrane-lipid particle + - id: "r_3684" + - name: "cerotic acid transport, ER membrane-lipid particle" - metabolites: !!omap - s_2870: -1 - s_2875: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR136128 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR136128" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3685 - - name: TAG (1-16:0, 2-16:1, 3-16:0) transport, ER membrane-lipid particle + - id: "r_3685" + - name: "TAG (1-16:0, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3011: -1 - s_3044: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3686 - - name: TAG (1-16:0, 2-16:1, 3-16:1) transport, ER membrane-lipid particle + - id: "r_3686" + - name: "TAG (1-16:0, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3019: -1 - s_3059: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3687 - - name: TAG (1-16:0, 2-16:1, 3-18:0) transport, ER membrane-lipid particle + - id: "r_3687" + - name: "TAG (1-16:0, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3027: -1 - s_3067: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3688 - - name: TAG (1-16:0, 2-16:1, 3-18:1) transport, ER membrane-lipid particle + - id: "r_3688" + - name: "TAG (1-16:0, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3035: -1 - s_3075: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3689 - - name: TAG (1-16:1, 2-16:1, 3-16:0) transport, ER membrane-lipid particle + - id: "r_3689" + - name: "TAG (1-16:1, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3013: -1 - s_3048: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3690 - - name: TAG (1-16:1, 2-16:1, 3-16:1) transport, ER membrane-lipid particle + - id: "r_3690" + - name: "TAG (1-16:1, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3021: -1 - s_3061: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3691 - - name: TAG (1-16:1, 2-16:1, 3-18:0) transport, ER membrane-lipid particle + - id: "r_3691" + - name: "TAG (1-16:1, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3029: -1 - s_3069: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3692 - - name: TAG (1-16:1, 2-16:1, 3-18:1) transport, ER membrane-lipid particle + - id: "r_3692" + - name: "TAG (1-16:1, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3037: -1 - s_3077: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3693 - - name: TAG (1-18:0, 2-16:1, 3-16:0) transport, ER membrane-lipid particle + - id: "r_3693" + - name: "TAG (1-18:0, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3015: -1 - s_3052: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3694 - - name: TAG (1-18:0, 2-16:1, 3-16:1) transport, ER membrane-lipid particle + - id: "r_3694" + - name: "TAG (1-18:0, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3023: -1 - s_3063: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3695 - - name: TAG (1-18:0, 2-16:1, 3-18:0) transport, ER membrane-lipid particle + - id: "r_3695" + - name: "TAG (1-18:0, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3031: -1 - s_3071: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3696 - - name: TAG (1-18:0, 2-16:1, 3-18:1) transport, ER membrane-lipid particle + - id: "r_3696" + - name: "TAG (1-18:0, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3039: -1 - s_3079: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3697 - - name: TAG (1-18:1, 2-16:1, 3-16:0) transport, ER membrane-lipid particle + - id: "r_3697" + - name: "TAG (1-18:1, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3017: -1 - s_3056: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3698 - - name: TAG (1-18:1, 2-16:1, 3-16:1) transport, ER membrane-lipid particle + - id: "r_3698" + - name: "TAG (1-18:1, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3025: -1 - s_3065: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3699 - - name: TAG (1-18:1, 2-16:1, 3-18:0) transport, ER membrane-lipid particle + - id: "r_3699" + - name: "TAG (1-18:1, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3033: -1 - s_3073: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3700 - - name: TAG (1-18:1, 2-16:1, 3-18:1) transport, ER membrane-lipid particle + - id: "r_3700" + - name: "TAG (1-18:1, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3041: -1 - s_3081: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3701 - - name: TAG (1-16:0, 2-18:1, 3-16:0) transport, ER membrane-lipid particle + - id: "r_3701" + - name: "TAG (1-16:0, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3012: -1 - s_3046: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3702 - - name: TAG (1-16:0, 2-18:1, 3-16:1) transport, ER membrane-lipid particle + - id: "r_3702" + - name: "TAG (1-16:0, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3020: -1 - s_3060: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3703 - - name: TAG (1-16:0, 2-18:1, 3-18:0) transport, ER membrane-lipid particle + - id: "r_3703" + - name: "TAG (1-16:0, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3028: -1 - s_3068: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3704 - - name: TAG (1-16:0, 2-18:1, 3-18:1) transport, ER membrane-lipid particle + - id: "r_3704" + - name: "TAG (1-16:0, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3036: -1 - s_3076: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3705 - - name: TAG (1-16:1, 2-18:1, 3-16:0) transport, ER membrane-lipid particle + - id: "r_3705" + - name: "TAG (1-16:1, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3014: -1 - s_3050: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3706 - - name: TAG (1-16:1, 2-18:1, 3-16:1) transport, ER membrane-lipid particle + - id: "r_3706" + - name: "TAG (1-16:1, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3022: -1 - s_3062: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3707 - - name: TAG (1-16:1, 2-18:1, 3-18:0) transport, ER membrane-lipid particle + - id: "r_3707" + - name: "TAG (1-16:1, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3030: -1 - s_3070: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3708 - - name: TAG (1-16:1, 2-18:1, 3-18:1) transport, ER membrane-lipid particle + - id: "r_3708" + - name: "TAG (1-16:1, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3038: -1 - s_3078: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3709 - - name: TAG (1-18:0, 2-18:1, 3-16:0) transport, ER membrane-lipid particle + - id: "r_3709" + - name: "TAG (1-18:0, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3016: -1 - s_3054: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3710 - - name: TAG (1-18:0, 2-18:1, 3-16:1) transport, ER membrane-lipid particle + - id: "r_3710" + - name: "TAG (1-18:0, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3024: -1 - s_3064: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3711 - - name: TAG (1-18:0, 2-18:1, 3-18:0) transport, ER membrane-lipid particle + - id: "r_3711" + - name: "TAG (1-18:0, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3032: -1 - s_3072: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3712 - - name: TAG (1-18:0, 2-18:1, 3-18:1) transport, ER membrane-lipid particle + - id: "r_3712" + - name: "TAG (1-18:0, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3040: -1 - s_3080: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3713 - - name: TAG (1-18:1, 2-18:1, 3-16:0) transport, ER membrane-lipid particle + - id: "r_3713" + - name: "TAG (1-18:1, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3018: -1 - s_3058: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3714 - - name: TAG (1-18:1, 2-18:1, 3-16:1) transport, ER membrane-lipid particle + - id: "r_3714" + - name: "TAG (1-18:1, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3026: -1 - s_3066: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3715 - - name: TAG (1-18:1, 2-18:1, 3-18:0) transport, ER membrane-lipid particle + - id: "r_3715" + - name: "TAG (1-18:1, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3034: -1 - s_3074: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3716 - - name: TAG (1-18:1, 2-18:1, 3-18:1) transport, ER membrane-lipid particle + - id: "r_3716" + - name: "TAG (1-18:1, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3042: -1 - s_3082: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3717 - - name: episterol transport, ER membrane-lipid particle + - id: "r_3717" + - name: "episterol transport, ER membrane-lipid particle" - metabolites: !!omap - s_3432: -1 - s_3660: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR97944 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR97944" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3718 - - name: fecosterol transport, ER membrane-lipid particle + - id: "r_3718" + - name: "fecosterol transport, ER membrane-lipid particle" - metabolites: !!omap - s_0703: 1 - s_3435: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99529 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99529" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3719 - - name: lanosterol transport, ER membrane-lipid particle + - id: "r_3719" + - name: "lanosterol transport, ER membrane-lipid particle" - metabolites: !!omap - s_3438: -1 - s_3665: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101014 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101014" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3720 - - name: zymosterol transport, ER membrane-lipid particle + - id: "r_3720" + - name: "zymosterol transport, ER membrane-lipid particle" - metabolites: !!omap - s_1572: 1 - s_3444: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR105285 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR105285" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3721 - - name: ergosteryl palmitoleate transport, ER membrane-lipid particle + - id: "r_3721" + - name: "ergosteryl palmitoleate transport, ER membrane-lipid particle" - metabolites: !!omap - s_3443: -1 - s_3656: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3722 - - name: ergosteryl oleate transport, ER membrane-lipid particle + - id: "r_3722" + - name: "ergosteryl oleate transport, ER membrane-lipid particle" - metabolites: !!omap - s_3442: -1 - s_3658: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3723 - - name: episteryl palmitoleate transport, ER membrane-lipid particle + - id: "r_3723" + - name: "episteryl palmitoleate transport, ER membrane-lipid particle" - metabolites: !!omap - s_3434: -1 - s_3659: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3724 - - name: episteryl oleate transport, ER membrane-lipid particle + - id: "r_3724" + - name: "episteryl oleate transport, ER membrane-lipid particle" - metabolites: !!omap - s_3433: -1 - s_3661: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3725 - - name: fecosteryl palmitoleate transport, ER membrane-lipid particle + - id: "r_3725" + - name: "fecosteryl palmitoleate transport, ER membrane-lipid particle" - metabolites: !!omap - s_3437: -1 - s_3662: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3726 - - name: fecosteryl oleate transport, ER membrane-lipid particle + - id: "r_3726" + - name: "fecosteryl oleate transport, ER membrane-lipid particle" - metabolites: !!omap - s_3436: -1 - s_3663: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3727 - - name: lanosteryl palmitoleate transport, ER membrane-lipid particle + - id: "r_3727" + - name: "lanosteryl palmitoleate transport, ER membrane-lipid particle" - metabolites: !!omap - s_3440: -1 - s_3664: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3728 - - name: lanosteryl oleate transport, ER membrane-lipid particle + - id: "r_3728" + - name: "lanosteryl oleate transport, ER membrane-lipid particle" - metabolites: !!omap - s_3439: -1 - s_3666: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3729 - - name: zymosteryl palmitoleate transport, ER membrane-lipid particle + - id: "r_3729" + - name: "zymosteryl palmitoleate transport, ER membrane-lipid particle" - metabolites: !!omap - s_3446: -1 - s_3667: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3730 - - name: zymosteryl oleate transport, ER membrane-lipid particle + - id: "r_3730" + - name: "zymosteryl oleate transport, ER membrane-lipid particle" - metabolites: !!omap - s_3445: -1 - s_3668: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3731 - - name: phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-lipid particle + - id: "r_3731" + - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3207: -1 - s_3693: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3732 - - name: phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-lipid particle + - id: "r_3732" + - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3208: -1 - s_3695: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3733 - - name: phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-lipid particle + - id: "r_3733" + - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3209: -1 - s_3697: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3734 - - name: phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-lipid particle + - id: "r_3734" + - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3210: -1 - s_3699: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3735 - - name: phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-lipid particle + - id: "r_3735" + - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3211: -1 - s_3701: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3736 - - name: phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-lipid particle + - id: "r_3736" + - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3212: -1 - s_3702: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3737 - - name: phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-lipid particle + - id: "r_3737" + - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3213: -1 - s_3703: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3738 - - name: phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-lipid particle + - id: "r_3738" + - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3214: -1 - s_3704: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3739 - - name: phosphatidylethanolamine (1-16:0, 2-16:1) transport, ER membrane-lipid particle + - id: "r_3739" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3181: -1 - s_3705: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3740 - - name: phosphatidylethanolamine (1-16:1, 2-16:1) transport, ER membrane-lipid particle + - id: "r_3740" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3185: -1 - s_3706: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3741 - - name: phosphatidylethanolamine (1-18:0, 2-16:1) transport, ER membrane-lipid particle + - id: "r_3741" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3187: -1 - s_3707: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3742 - - name: phosphatidylethanolamine (1-18:1, 2-16:1) transport, ER membrane-lipid particle + - id: "r_3742" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3189: -1 - s_3708: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3743 - - name: phosphatidylethanolamine (1-16:0, 2-18:1) transport, ER membrane-lipid particle + - id: "r_3743" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3191: -1 - s_3686: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3744 - - name: phosphatidylethanolamine (1-16:1, 2-18:1) transport, ER membrane-lipid particle + - id: "r_3744" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3193: -1 - s_3688: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3745 - - name: phosphatidylethanolamine (1-18:0, 2-18:1) transport, ER membrane-lipid particle + - id: "r_3745" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3195: -1 - s_3690: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3746 - - name: phosphatidylethanolamine (1-18:1, 2-18:1) transport, ER membrane-lipid particle + - id: "r_3746" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3197: -1 - s_3692: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3747 - - name: 1-acylglycerophosphocholine (16:0) transport, ER membrane-lipid particle + - id: "r_3747" + - name: "1-acylglycerophosphocholine (16:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3428: -1 - s_3694: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3748 - - name: 1-acylglycerophosphocholine (16:1) transport, ER membrane-lipid particle + - id: "r_3748" + - name: "1-acylglycerophosphocholine (16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3429: -1 - s_3696: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3749 - - name: 1-acylglycerophosphocholine (18:0) transport, ER membrane-lipid particle + - id: "r_3749" + - name: "1-acylglycerophosphocholine (18:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3430: -1 - s_3698: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3750 - - name: 1-acylglycerophosphocholine (18:1) transport, ER membrane-lipid particle + - id: "r_3750" + - name: "1-acylglycerophosphocholine (18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3431: -1 - s_3700: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3751 - - name: 1-acylglycerophosphoethanolamine (16:0) transport, ER membrane-lipid particle + - id: "r_3751" + - name: "1-acylglycerophosphoethanolamine (16:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3424: -1 - s_3685: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3752 - - name: 1-acylglycerophosphoethanolamine (16:1) transport, ER membrane-lipid particle + - id: "r_3752" + - name: "1-acylglycerophosphoethanolamine (16:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3425: -1 - s_3687: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3753 - - name: 1-acylglycerophosphoethanolamine (18:0) transport, ER membrane-lipid particle + - id: "r_3753" + - name: "1-acylglycerophosphoethanolamine (18:0) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3426: -1 - s_3689: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3754 - - name: 1-acylglycerophosphoethanolamine (18:1) transport, ER membrane-lipid particle + - id: "r_3754" + - name: "1-acylglycerophosphoethanolamine (18:1) transport, ER membrane-lipid particle" - metabolites: !!omap - s_3427: -1 - s_3691: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3755 - - name: phosphatidate (1-16:0, 2-18:1) transport, lipid particle-ER membrane + - id: "r_3755" + - name: "phosphatidate (1-16:0, 2-18:1) transport, lipid particle-ER membrane" - metabolites: !!omap - s_2955: 1 - s_2962: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3756 - - name: phosphatidate (1-16:1, 2-18:1) transport, lipid particle-ER membrane + - id: "r_3756" + - name: "phosphatidate (1-16:1, 2-18:1) transport, lipid particle-ER membrane" - metabolites: !!omap - s_2957: 1 - s_2963: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3757 - - name: phosphatidate (1-18:0, 2-18:1) transport, lipid particle-ER membrane + - id: "r_3757" + - name: "phosphatidate (1-18:0, 2-18:1) transport, lipid particle-ER membrane" - metabolites: !!omap - s_2959: 1 - s_2964: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3758 - - name: phosphatidate (1-18:1, 2-18:1) transport, lipid particle-ER membrane + - id: "r_3758" + - name: "phosphatidate (1-18:1, 2-18:1) transport, lipid particle-ER membrane" - metabolites: !!omap - s_2961: 1 - s_2965: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3759 - - name: phosphatidate (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane + - id: "r_3759" + - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_2954: -1 - s_3092: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3760 - - name: phosphatidate (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane + - id: "r_3760" + - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_2956: -1 - s_3097: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3761 - - name: phosphatidate (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane + - id: "r_3761" + - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_2958: -1 - s_3099: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3762 - - name: phosphatidate (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane + - id: "r_3762" + - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_2960: -1 - s_3101: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3763 - - name: phosphatidate (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane + - id: "r_3763" + - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_2955: -1 - s_3103: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3764 - - name: phosphatidate (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane + - id: "r_3764" + - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_2957: -1 - s_3105: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3765 - - name: phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane + - id: "r_3765" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3109: -1 - s_3128: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3766 - - name: phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane + - id: "r_3766" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3110: -1 - s_3131: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3767 - - name: phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane + - id: "r_3767" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3111: -1 - s_3133: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3768 - - name: phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane + - id: "r_3768" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3112: -1 - s_3135: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3769 - - name: phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane + - id: "r_3769" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3113: -1 - s_3137: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3770 - - name: phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane + - id: "r_3770" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3114: -1 - s_3139: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3771 - - name: phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-mitochondrial membrane + - id: "r_3771" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3115: -1 - s_3141: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3772 - - name: phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-mitochondrial membrane + - id: "r_3772" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3116: -1 - s_3143: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3773 - - name: phosphatidylethanolamine (1-16:0, 2-16:1) transport, mitochondrial membrane-ER membrane + - id: "r_3773" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, mitochondrial membrane-ER membrane" - metabolites: !!omap - s_3130: -1 - s_3181: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3774 - - name: phosphatidylethanolamine (1-16:1, 2-16:1) transport, mitochondrial membrane-ER membrane + - id: "r_3774" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, mitochondrial membrane-ER membrane" - metabolites: !!omap - s_3132: -1 - s_3185: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3775 - - name: phosphatidylethanolamine (1-18:0, 2-16:1) transport, mitochondrial membrane-ER membrane + - id: "r_3775" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, mitochondrial membrane-ER membrane" - metabolites: !!omap - s_3134: -1 - s_3187: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3776 - - name: phosphatidylethanolamine (1-18:1, 2-16:1) transport, mitochondrial membrane-ER membrane + - id: "r_3776" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, mitochondrial membrane-ER membrane" - metabolites: !!omap - s_3136: -1 - s_3189: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3777 - - name: phosphatidylethanolamine (1-16:0, 2-18:1) transport, mitochondrial membrane-ER membrane + - id: "r_3777" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, mitochondrial membrane-ER membrane" - metabolites: !!omap - s_3138: -1 - s_3191: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3778 - - name: phosphatidylethanolamine (1-16:1, 2-18:1) transport, mitochondrial membrane-ER membrane + - id: "r_3778" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, mitochondrial membrane-ER membrane" - metabolites: !!omap - s_3140: -1 - s_3193: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3779 - - name: phosphatidylethanolamine (1-18:0, 2-18:1) transport, mitochondrial membrane-ER membrane + - id: "r_3779" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, mitochondrial membrane-ER membrane" - metabolites: !!omap - s_3142: -1 - s_3195: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3780 - - name: phosphatidylethanolamine (1-18:1, 2-18:1) transport, mitochondrial membrane-ER membrane + - id: "r_3780" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, mitochondrial membrane-ER membrane" - metabolites: !!omap - s_3144: -1 - s_3197: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3781 - - name: phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane + - id: "r_3781" + - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3207: -1 - s_3296: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3782 - - name: phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane + - id: "r_3782" + - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3208: -1 - s_3298: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3783 - - name: phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane + - id: "r_3783" + - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3209: -1 - s_3300: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3784 - - name: phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane + - id: "r_3784" + - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3210: -1 - s_3302: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3785 - - name: phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane + - id: "r_3785" + - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3211: -1 - s_3304: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3786 - - name: phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane + - id: "r_3786" + - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3212: -1 - s_3305: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3787 - - name: phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-mitochondrial membrane + - id: "r_3787" + - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3213: -1 - s_3306: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3788 - - name: phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-mitochondrial membrane + - id: "r_3788" + - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-mitochondrial membrane" - metabolites: !!omap - s_3214: -1 - s_3307: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3789 - - name: diglyceride (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3789" + - name: "diglyceride (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2967: -1 - s_2996: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3790 - - name: diglyceride (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3790" + - name: "diglyceride (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2969: -1 - s_3000: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3791 - - name: diglyceride (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3791" + - name: "diglyceride (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2971: -1 - s_3004: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3792 - - name: diglyceride (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3792" + - name: "diglyceride (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2973: -1 - s_3008: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3793 - - name: diglyceride (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3793" + - name: "diglyceride (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2968: -1 - s_2998: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3794 - - name: diglyceride (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3794" + - name: "diglyceride (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2970: -1 - s_3002: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3795 - - name: diglyceride (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3795" + - name: "diglyceride (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2972: -1 - s_3006: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3796 - - name: diglyceride (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3796" + - name: "diglyceride (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2974: -1 - s_3010: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3797 - - name: phosphatidate (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3797" + - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2954: -1 - s_2993: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3798 - - name: phosphatidate (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3798" + - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2956: -1 - s_2999: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3799 - - name: phosphatidate (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3799" + - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2958: -1 - s_3003: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3800 - - name: phosphatidate (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3800" + - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2960: -1 - s_3007: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3801 - - name: phosphatidate (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3801" + - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2955: -1 - s_2997: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3802 - - name: phosphatidate (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3802" + - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2957: -1 - s_3001: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3803 - - name: phosphatidate (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3803" + - name: "phosphatidate (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2959: -1 - s_3005: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3804 - - name: phosphatidate (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3804" + - name: "phosphatidate (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_2961: -1 - s_3009: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3805 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3805" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3118: -1 - s_3358: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3806 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3806" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3119: -1 - s_3362: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3807 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3807" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3120: -1 - s_3364: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3808 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3808" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3121: -1 - s_3366: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3809 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3809" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3122: -1 - s_3368: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3810 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3810" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3123: -1 - s_3370: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3811 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3811" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3124: -1 - s_3372: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3812 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3812" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3125: -1 - s_3374: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3813 - - name: phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3813" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3109: -1 - s_3145: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W or YMR162C + - gene_reaction_rule: "YIL048W or YMR162C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3814 - - name: phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3814" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3110: -1 - s_3149: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W or YMR162C + - gene_reaction_rule: "YIL048W or YMR162C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3815 - - name: phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3815" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3111: -1 - s_3151: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W or YMR162C + - gene_reaction_rule: "YIL048W or YMR162C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3816 - - name: phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane + - id: "r_3816" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3112: -1 - s_3153: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W or YMR162C + - gene_reaction_rule: "YIL048W or YMR162C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3817 - - name: phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3817" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3113: -1 - s_3155: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W or YMR162C + - gene_reaction_rule: "YIL048W or YMR162C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3818 - - name: phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3818" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3114: -1 - s_3157: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W or YMR162C + - gene_reaction_rule: "YIL048W or YMR162C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3819 - - name: phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3819" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3115: -1 - s_3159: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W or YMR162C + - gene_reaction_rule: "YIL048W or YMR162C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3820 - - name: phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane + - id: "r_3820" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" - metabolites: !!omap - s_3116: -1 - s_3161: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W or YMR162C + - gene_reaction_rule: "YIL048W or YMR162C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3821 - - name: phosphatidylethanolamine (1-16:0, 2-16:1) transport, Golgi membrane-ER membrane + - id: "r_3821" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, Golgi membrane-ER membrane" - metabolites: !!omap - s_3148: -1 - s_3181: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3822 - - name: phosphatidylethanolamine (1-16:1, 2-16:1) transport, Golgi membrane-ER membrane + - id: "r_3822" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, Golgi membrane-ER membrane" - metabolites: !!omap - s_3150: -1 - s_3185: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3823 - - name: phosphatidylethanolamine (1-18:0, 2-16:1) transport, Golgi membrane-ER membrane + - id: "r_3823" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, Golgi membrane-ER membrane" - metabolites: !!omap - s_3152: -1 - s_3187: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3824 - - name: phosphatidylethanolamine (1-18:1, 2-16:1) transport, Golgi membrane-ER membrane + - id: "r_3824" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, Golgi membrane-ER membrane" - metabolites: !!omap - s_3154: -1 - s_3189: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3825 - - name: phosphatidylethanolamine (1-16:0, 2-18:1) transport, Golgi membrane-ER membrane + - id: "r_3825" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, Golgi membrane-ER membrane" - metabolites: !!omap - s_3156: -1 - s_3191: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3826 - - name: phosphatidylethanolamine (1-16:1, 2-18:1) transport, Golgi membrane-ER membrane + - id: "r_3826" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, Golgi membrane-ER membrane" - metabolites: !!omap - s_3158: -1 - s_3193: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3827 - - name: phosphatidylethanolamine (1-18:0, 2-18:1) transport, Golgi membrane-ER membrane + - id: "r_3827" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, Golgi membrane-ER membrane" - metabolites: !!omap - s_3160: -1 - s_3195: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3828 - - name: phosphatidylethanolamine (1-18:1, 2-18:1) transport, Golgi membrane-ER membrane + - id: "r_3828" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, Golgi membrane-ER membrane" - metabolites: !!omap - s_3162: -1 - s_3197: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3829 - - name: phosphatidate (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane + - id: "r_3829" + - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_2954: -1 - s_2975: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3830 - - name: phosphatidate (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane + - id: "r_3830" + - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_2956: -1 - s_2981: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3831 - - name: phosphatidate (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane + - id: "r_3831" + - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_2958: -1 - s_2985: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3832 - - name: phosphatidate (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane + - id: "r_3832" + - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_2960: -1 - s_2989: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3833 - - name: phosphatidate (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane + - id: "r_3833" + - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_2955: -1 - s_2979: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3834 - - name: phosphatidate (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane + - id: "r_3834" + - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_2957: -1 - s_2983: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3835 - - name: phosphatidate (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane + - id: "r_3835" + - name: "phosphatidate (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_2959: -1 - s_2987: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3836 - - name: phosphatidate (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane + - id: "r_3836" + - name: "phosphatidate (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_2961: -1 - s_2991: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3837 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane + - id: "r_3837" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3118: -1 - s_3340: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3838 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane + - id: "r_3838" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3119: -1 - s_3344: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3839 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane + - id: "r_3839" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3120: -1 - s_3346: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3840 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane + - id: "r_3840" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3121: -1 - s_3348: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3841 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane + - id: "r_3841" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3122: -1 - s_3350: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3842 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane + - id: "r_3842" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3123: -1 - s_3352: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3843 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane + - id: "r_3843" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3124: -1 - s_3354: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3844 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane + - id: "r_3844" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3125: -1 - s_3356: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3845 - - name: phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane + - id: "r_3845" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3109: -1 - s_3163: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3846 - - name: phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane + - id: "r_3846" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3110: -1 - s_3167: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3847 - - name: phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane + - id: "r_3847" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3111: -1 - s_3169: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3848 - - name: phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane + - id: "r_3848" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3112: -1 - s_3171: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3849 - - name: phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane + - id: "r_3849" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3113: -1 - s_3173: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3850 - - name: phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane + - id: "r_3850" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3114: -1 - s_3175: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3851 - - name: phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane + - id: "r_3851" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3115: -1 - s_3177: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3852 - - name: phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane + - id: "r_3852" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" - metabolites: !!omap - s_3116: -1 - s_3179: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3853 - - name: phosphatidylethanolamine (1-16:0, 2-16:1) transport, vacuolar membrane-ER membrane + - id: "r_3853" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3166: -1 - s_3181: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3854 - - name: phosphatidylethanolamine (1-16:1, 2-16:1) transport, vacuolar membrane-ER membrane + - id: "r_3854" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3168: -1 - s_3185: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3855 - - name: phosphatidylethanolamine (1-18:0, 2-16:1) transport, vacuolar membrane-ER membrane + - id: "r_3855" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3170: -1 - s_3187: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3856 - - name: phosphatidylethanolamine (1-18:1, 2-16:1) transport, vacuolar membrane-ER membrane + - id: "r_3856" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3172: -1 - s_3189: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3857 - - name: phosphatidylethanolamine (1-16:0, 2-18:1) transport, vacuolar membrane-ER membrane + - id: "r_3857" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3174: -1 - s_3191: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3858 - - name: phosphatidylethanolamine (1-16:1, 2-18:1) transport, vacuolar membrane-ER membrane + - id: "r_3858" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3176: -1 - s_3193: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3859 - - name: phosphatidylethanolamine (1-18:0, 2-18:1) transport, vacuolar membrane-ER membrane + - id: "r_3859" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3178: -1 - s_3195: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3860 - - name: phosphatidylethanolamine (1-18:1, 2-18:1) transport, vacuolar membrane-ER membrane + - id: "r_3860" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3180: -1 - s_3197: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3861 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) transport, vacuolar membrane-ER membrane + - id: "r_3861" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3392: -1 - s_3560: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3862 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) transport, vacuolar membrane-ER membrane + - id: "r_3862" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3393: -1 - s_3561: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3863 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) transport, vacuolar membrane-ER membrane + - id: "r_3863" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3394: -1 - s_3562: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3864 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) transport, vacuolar membrane-ER membrane + - id: "r_3864" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3395: -1 - s_3563: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3865 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) transport, vacuolar membrane-ER membrane + - id: "r_3865" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3396: -1 - s_3564: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3866 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) transport, vacuolar membrane-ER membrane + - id: "r_3866" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3397: -1 - s_3565: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3867 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) transport, vacuolar membrane-ER membrane + - id: "r_3867" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3398: -1 - s_3566: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3868 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) transport, vacuolar membrane-ER membrane + - id: "r_3868" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) transport, vacuolar membrane-ER membrane" - metabolites: !!omap - s_3399: -1 - s_3567: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3869 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3869" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3118: -1 - s_3323: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3870 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3870" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3119: -1 - s_3326: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3871 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3871" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3120: -1 - s_3328: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3872 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3872" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3121: -1 - s_3330: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3873 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3873" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3122: -1 - s_3332: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3874 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3874" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3123: -1 - s_3334: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3875 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3875" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3124: -1 - s_3336: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3876 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3876" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3125: -1 - s_3338: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3877 - - name: phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3877" + - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3207: -1 - s_3448: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3878 - - name: phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3878" + - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3208: -1 - s_3452: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3879 - - name: phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3879" + - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3209: -1 - s_3454: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3880 - - name: phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3880" + - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3210: -1 - s_3456: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3881 - - name: phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3881" + - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3211: -1 - s_3458: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3882 - - name: phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3882" + - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3212: -1 - s_3460: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3883 - - name: phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3883" + - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3213: -1 - s_3461: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3884 - - name: phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3884" + - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3214: -1 - s_3462: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3885 - - name: phosphatidylethanolamine (1-16:0, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3885" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3181: -1 - s_3465: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3886 - - name: phosphatidylethanolamine (1-16:1, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3886" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3185: -1 - s_3467: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3887 - - name: phosphatidylethanolamine (1-18:0, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3887" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3187: -1 - s_3469: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3888 - - name: phosphatidylethanolamine (1-18:1, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3888" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3189: -1 - s_3471: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3889 - - name: phosphatidylethanolamine (1-16:0, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3889" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3191: -1 - s_3473: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3890 - - name: phosphatidylethanolamine (1-16:1, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3890" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3193: -1 - s_3474: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3891 - - name: phosphatidylethanolamine (1-18:0, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3891" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3195: -1 - s_3475: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3892 - - name: phosphatidylethanolamine (1-18:1, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3892" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3197: -1 - s_3476: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL026C + - gene_reaction_rule: "YAL026C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3893 - - name: phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3893" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3109: -1 - s_3478: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W + - gene_reaction_rule: "YIL048W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3894 - - name: phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3894" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3110: -1 - s_3480: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W + - gene_reaction_rule: "YIL048W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3895 - - name: phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3895" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3111: -1 - s_3482: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W + - gene_reaction_rule: "YIL048W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3896 - - name: phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-cell envelope + - id: "r_3896" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3112: -1 - s_3484: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W + - gene_reaction_rule: "YIL048W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3897 - - name: phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3897" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3113: -1 - s_3486: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W + - gene_reaction_rule: "YIL048W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3898 - - name: phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3898" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3114: -1 - s_3487: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W + - gene_reaction_rule: "YIL048W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3899 - - name: phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3899" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3115: -1 - s_3488: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W + - gene_reaction_rule: "YIL048W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3900 - - name: phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-cell envelope + - id: "r_3900" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" - metabolites: !!omap - s_3116: -1 - s_3489: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL048W + - gene_reaction_rule: "YIL048W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3901 - - name: lignoceric acid transport, cell envelope-ER membrane + - id: "r_3901" + - name: "lignoceric acid transport, cell envelope-ER membrane" - metabolites: !!omap - s_2864: -1 - s_2869: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR128298 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR128298" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3902 - - name: cerotic acid transport, cell envelope-ER membrane + - id: "r_3902" + - name: "cerotic acid transport, cell envelope-ER membrane" - metabolites: !!omap - s_2866: -1 - s_2870: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR136128 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR136128" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3903 - - name: phosphatidate (1-16:0, 2-16:1) transport, cell envelope-ER membrane + - id: "r_3903" + - name: "phosphatidate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_2954: 1 - s_3527: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3904 - - name: phosphatidate (1-16:1, 2-16:1) transport, cell envelope-ER membrane + - id: "r_3904" + - name: "phosphatidate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_2956: 1 - s_3528: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3905 - - name: phosphatidate (1-18:0, 2-16:1) transport, cell envelope-ER membrane + - id: "r_3905" + - name: "phosphatidate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_2958: 1 - s_3529: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3906 - - name: phosphatidate (1-18:1, 2-16:1) transport, cell envelope-ER membrane + - id: "r_3906" + - name: "phosphatidate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_2960: 1 - s_3530: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3907 - - name: phosphatidate (1-16:0, 2-18:1) transport, cell envelope-ER membrane + - id: "r_3907" + - name: "phosphatidate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_2955: 1 - s_3531: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3908 - - name: phosphatidate (1-16:1, 2-18:1) transport, cell envelope-ER membrane + - id: "r_3908" + - name: "phosphatidate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_2957: 1 - s_3532: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3909 - - name: phosphatidate (1-18:0, 2-18:1) transport, cell envelope-ER membrane + - id: "r_3909" + - name: "phosphatidate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_2959: 1 - s_3533: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3910 - - name: phosphatidate (1-18:1, 2-18:1) transport, cell envelope-ER membrane + - id: "r_3910" + - name: "phosphatidate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_2961: 1 - s_3534: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3911 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) transport, cell envelope-ER membrane + - id: "r_3911" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3325: -1 - s_3584: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3912 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) transport, cell envelope-ER membrane + - id: "r_3912" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3327: -1 - s_3585: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3913 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) transport, cell envelope-ER membrane + - id: "r_3913" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3329: -1 - s_3586: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3914 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) transport, cell envelope-ER membrane + - id: "r_3914" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3331: -1 - s_3587: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3915 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) transport, cell envelope-ER membrane + - id: "r_3915" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3333: -1 - s_3588: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3916 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) transport, cell envelope-ER membrane + - id: "r_3916" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3335: -1 - s_3589: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3917 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) transport, cell envelope-ER membrane + - id: "r_3917" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3337: -1 - s_3590: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3918 - - name: 1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) transport, cell envelope-ER membrane + - id: "r_3918" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3339: -1 - s_3591: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3919 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, cell envelope-ER membrane + - id: "r_3919" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3408: -1 - s_3608: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3920 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, cell envelope-ER membrane + - id: "r_3920" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3409: -1 - s_3609: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3921 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, cell envelope-ER membrane + - id: "r_3921" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3410: -1 - s_3610: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3922 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, cell envelope-ER membrane + - id: "r_3922" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3411: -1 - s_3611: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3923 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, cell envelope-ER membrane + - id: "r_3923" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3412: -1 - s_3612: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3924 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, cell envelope-ER membrane + - id: "r_3924" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3413: -1 - s_3613: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3925 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, cell envelope-ER membrane + - id: "r_3925" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3414: -1 - s_3614: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3926 - - name: 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, cell envelope-ER membrane + - id: "r_3926" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" - metabolites: !!omap - s_3415: -1 - s_3615: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3927 - - name: zymosteryl palmitoleate transport, ER membrane-cell envelope + - id: "r_3927" + - name: "zymosteryl palmitoleate transport, ER membrane-cell envelope" - metabolites: !!omap - s_3446: -1 - s_3669: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3928 - - name: zymosteryl oleate transport, ER membrane-cell envelope + - id: "r_3928" + - name: "zymosteryl oleate transport, ER membrane-cell envelope" - metabolites: !!omap - s_3445: -1 - s_3670: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3929 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-nucleus + - id: "r_3929" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-nucleus" - metabolites: !!omap - s_3118: -1 - s_3376: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3930 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-nucleus + - id: "r_3930" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-nucleus" - metabolites: !!omap - s_3119: -1 - s_3378: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3931 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-nucleus + - id: "r_3931" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-nucleus" - metabolites: !!omap - s_3120: -1 - s_3380: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3932 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-nucleus + - id: "r_3932" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-nucleus" - metabolites: !!omap - s_3121: -1 - s_3382: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3933 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-nucleus + - id: "r_3933" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-nucleus" - metabolites: !!omap - s_3122: -1 - s_3384: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3934 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-nucleus + - id: "r_3934" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-nucleus" - metabolites: !!omap - s_3123: -1 - s_3386: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3935 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-nucleus + - id: "r_3935" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-nucleus" - metabolites: !!omap - s_3124: -1 - s_3388: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3936 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-nucleus + - id: "r_3936" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-nucleus" - metabolites: !!omap - s_3125: -1 - s_3390: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3937 - - name: lignoceric acid transport, ER membrane-ER + - id: "r_3937" + - name: "lignoceric acid transport, ER membrane-ER" - metabolites: !!omap - s_1085: 1 - s_2869: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR128298 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR128298" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3938 - - name: cerotic acid transport, ER membrane-ER + - id: "r_3938" + - name: "cerotic acid transport, ER membrane-ER" - metabolites: !!omap - s_0507: 1 - s_2870: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR136128 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR136128" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3939 - - name: ergosterol transport, ER-ER membrane + - id: "r_3939" + - name: "ergosterol transport, ER-ER membrane" - metabolites: !!omap - s_0667: -1 - s_3441: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR97950 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR97950" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3940 - - name: phosphate transport, ER-ER membrane + - id: "r_3940" + - name: "phosphate transport, ER-ER membrane" - metabolites: !!omap - s_1323: -1 - s_2966: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR102871 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3941 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) transport, vacuolar membrane-Golgi membrane + - id: "r_3941" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) transport, vacuolar membrane-Golgi membrane" - metabolites: !!omap - s_3392: -1 - s_3568: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3942 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) transport, vacuolar membrane-Golgi membrane + - id: "r_3942" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) transport, vacuolar membrane-Golgi membrane" - metabolites: !!omap - s_3393: -1 - s_3569: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3943 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) transport, vacuolar membrane-Golgi membrane + - id: "r_3943" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) transport, vacuolar membrane-Golgi membrane" - metabolites: !!omap - s_3394: -1 - s_3570: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3944 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) transport, vacuolar membrane-Golgi membrane + - id: "r_3944" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) transport, vacuolar membrane-Golgi membrane" - metabolites: !!omap - s_3395: -1 - s_3571: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3945 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) transport, vacuolar membrane-Golgi membrane + - id: "r_3945" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) transport, vacuolar membrane-Golgi membrane" - metabolites: !!omap - s_3396: -1 - s_3572: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3946 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) transport, vacuolar membrane-Golgi membrane + - id: "r_3946" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) transport, vacuolar membrane-Golgi membrane" - metabolites: !!omap - s_3397: -1 - s_3573: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3947 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) transport, vacuolar membrane-Golgi membrane + - id: "r_3947" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) transport, vacuolar membrane-Golgi membrane" - metabolites: !!omap - s_3398: -1 - s_3574: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3948 - - name: 1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) transport, vacuolar membrane-Golgi membrane + - id: "r_3948" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) transport, vacuolar membrane-Golgi membrane" - metabolites: !!omap - s_3399: -1 - s_3575: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3949 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) transport, vacuolar membrane-cell envelope + - id: "r_3949" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) transport, vacuolar membrane-cell envelope" - metabolites: !!omap - s_3416: -1 - s_3592: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3950 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) transport, vacuolar membrane-cell envelope + - id: "r_3950" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) transport, vacuolar membrane-cell envelope" - metabolites: !!omap - s_3417: -1 - s_3593: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3951 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) transport, vacuolar membrane-cell envelope + - id: "r_3951" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) transport, vacuolar membrane-cell envelope" - metabolites: !!omap - s_3418: -1 - s_3594: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3952 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) transport, vacuolar membrane-cell envelope + - id: "r_3952" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) transport, vacuolar membrane-cell envelope" - metabolites: !!omap - s_3419: -1 - s_3595: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3953 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) transport, vacuolar membrane-cell envelope + - id: "r_3953" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) transport, vacuolar membrane-cell envelope" - metabolites: !!omap - s_3420: -1 - s_3596: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3954 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) transport, vacuolar membrane-cell envelope + - id: "r_3954" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) transport, vacuolar membrane-cell envelope" - metabolites: !!omap - s_3421: -1 - s_3597: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3955 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) transport, vacuolar membrane-cell envelope + - id: "r_3955" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) transport, vacuolar membrane-cell envelope" - metabolites: !!omap - s_3422: -1 - s_3598: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3956 - - name: 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) transport, vacuolar membrane-cell envelope + - id: "r_3956" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) transport, vacuolar membrane-cell envelope" - metabolites: !!omap - s_3423: -1 - s_3599: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3957 - - name: H+ transport, mitochondrion-mitochondrial membrane + - id: "r_3957" + - name: "H+ transport, mitochondrion-mitochondrial membrane" - metabolites: !!omap - s_0799: -1 - s_3094: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100765 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3958 - - name: glycerol 3-phosphate transport, mitochondrion-mitochondrial membrane + - id: "r_3958" + - name: "glycerol 3-phosphate transport, mitochondrion-mitochondrial membrane" - metabolites: !!omap - s_0770: -1 - s_3218: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100308 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100308" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3959 - - name: CMP transport, mitochondrion-mitochondrial membrane + - id: "r_3959" + - name: "CMP transport, mitochondrion-mitochondrial membrane" - metabolites: !!omap - s_0528: -1 - s_3219: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR192W + - gene_reaction_rule: "YBR192W" - annotation: !!omap - - metanetx.reaction: MNXR96806 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96806" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3960 - - name: CTP transport, mitochondrion-mitochondrial membrane + - id: "r_3960" + - name: "CTP transport, mitochondrion-mitochondrial membrane" - metabolites: !!omap - s_0541: -1 - s_3093: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR192W + - gene_reaction_rule: "YBR192W" - annotation: !!omap - - metanetx.reaction: MNXR96946 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96946" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3961 - - name: phosphate transport, mitochondrion-mitochondrial membrane + - id: "r_3961" + - name: "phosphate transport, mitochondrion-mitochondrial membrane" - metabolites: !!omap - s_1326: -1 - s_3228: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER053C or YJR077C or YLR348C + - gene_reaction_rule: "YER053C or YJR077C or YLR348C" - annotation: !!omap - - metanetx.reaction: MNXR102871 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_3962 - - name: diphosphate transport, mitochondrion-mitochondrial membrane + - id: "r_3962" + - name: "diphosphate transport, mitochondrion-mitochondrial membrane" - metabolites: !!omap - s_0636: -1 - s_3095: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR103112 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR103112" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_3963 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) [cytoplasm] SLIME rxn + - id: "r_3963" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) [cytoplasm] SLIME rxn" - metabolites: !!omap - s_0089: 0.80903 - s_3545: -1 @@ -89217,24 +90175,26 @@ - s_3741: 0.25441 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3964 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) [cytoplasm] SLIME rxn + - id: "r_3964" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) [cytoplasm] SLIME rxn" - metabolites: !!omap - s_0089: 0.80701 - s_3547: -1 - s_3741: 0.50883 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3965 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) [cytoplasm] SLIME rxn + - id: "r_3965" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) [cytoplasm] SLIME rxn" - metabolites: !!omap - s_0089: 0.83708 - s_3549: -1 @@ -89242,12 +90202,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3966 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) [cytoplasm] SLIME rxn + - id: "r_3966" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) [cytoplasm] SLIME rxn" - metabolites: !!omap - s_0089: 0.83507 - s_3551: -1 @@ -89255,12 +90216,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3967 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) [cytoplasm] SLIME rxn + - id: "r_3967" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) [cytoplasm] SLIME rxn" - metabolites: !!omap - s_0089: 0.83708 - s_3553: -1 @@ -89268,12 +90230,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3968 - - name: 1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) [cytoplasm] SLIME rxn + - id: "r_3968" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) [cytoplasm] SLIME rxn" - metabolites: !!omap - s_0089: 0.83507 - s_3555: -1 @@ -89281,12 +90244,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3969 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) [cytoplasm] SLIME rxn + - id: "r_3969" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) [cytoplasm] SLIME rxn" - metabolites: !!omap - s_0089: 0.86514 - s_3557: -1 @@ -89294,107 +90258,116 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3970 - - name: 1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) [cytoplasm] SLIME rxn + - id: "r_3970" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) [cytoplasm] SLIME rxn" - metabolites: !!omap - s_0089: 0.86312 - s_3559: -1 - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3971 - - name: ergosteryl palmitoleate [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3971" + - name: "ergosteryl palmitoleate [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3443: -1 - s_3709: 0.63305 - s_3741: 0.25441 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3972 - - name: ergosteryl oleate [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3972" + - name: "ergosteryl oleate [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3442: -1 - s_3709: 0.66111 - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3973 - - name: ergosterol ester transport, ER membrane-cytoplasm + - id: "r_3973" + - name: "ergosterol ester transport, ER membrane-cytoplasm" - metabolites: !!omap - s_0672: 1 - s_3709: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_3975 - - name: palmitate [cytoplasm] SLIME rxn + - id: "r_3975" + - name: "palmitate [cytoplasm] SLIME rxn" - metabolites: !!omap - s_0694: 0.25542 - s_1286: -1 - s_3740: 0.25643 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3976 - - name: palmitoleate [cytoplasm] SLIME rxn + - id: "r_3976" + - name: "palmitoleate [cytoplasm] SLIME rxn" - metabolites: !!omap - s_0694: 0.25341 - s_1293: -1 - s_3741: 0.25441 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3977 - - name: stearate [cytoplasm] SLIME rxn + - id: "r_3977" + - name: "stearate [cytoplasm] SLIME rxn" - metabolites: !!omap - s_0694: 0.28347 - s_1449: -1 - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3978 - - name: oleate [cytoplasm] SLIME rxn + - id: "r_3978" + - name: "oleate [cytoplasm] SLIME rxn" - metabolites: !!omap - s_0694: 0.28146 - s_1260: -1 - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3979 - - name: phosphatidyl-L-serine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3979" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3109: -1 - s_3710: 0.73396 @@ -89402,24 +90375,26 @@ - s_3741: 0.25441 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3980 - - name: phosphatidyl-L-serine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3980" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3110: -1 - s_3710: 0.73195 - s_3741: 0.50883 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3981 - - name: phosphatidyl-L-serine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3981" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3111: -1 - s_3710: 0.76202 @@ -89427,12 +90402,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3982 - - name: phosphatidyl-L-serine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3982" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3112: -1 - s_3710: 0.76 @@ -89440,12 +90416,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3983 - - name: phosphatidyl-L-serine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3983" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3113: -1 - s_3710: 0.76202 @@ -89453,12 +90430,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3984 - - name: phosphatidyl-L-serine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3984" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3114: -1 - s_3710: 0.76 @@ -89466,12 +90444,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3985 - - name: phosphatidyl-L-serine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3985" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3115: -1 - s_3710: 0.79007 @@ -89479,36 +90458,39 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3986 - - name: phosphatidyl-L-serine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3986" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3116: -1 - s_3710: 0.78806 - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3987 - - name: phosphatidyl-L-serine transport, ER membrane-cytoplasm + - id: "r_3987" + - name: "phosphatidyl-L-serine transport, ER membrane-cytoplasm" - metabolites: !!omap - s_1337: 1 - s_3710: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR103315 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR103315" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_3988 - - name: phosphatidylcholine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3988" + - name: "phosphatidylcholine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3207: -1 - s_3711: 0.73204 @@ -89516,24 +90498,26 @@ - s_3741: 0.25441 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3989 - - name: phosphatidylcholine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3989" + - name: "phosphatidylcholine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3208: -1 - s_3711: 0.73002 - s_3741: 0.50883 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3990 - - name: phosphatidylcholine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3990" + - name: "phosphatidylcholine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3209: -1 - s_3711: 0.74409 @@ -89541,12 +90525,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3991 - - name: phosphatidylcholine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3991" + - name: "phosphatidylcholine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3210: -1 - s_3711: 0.74207 @@ -89554,12 +90539,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3992 - - name: phosphatidylcholine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3992" + - name: "phosphatidylcholine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3211: -1 - s_3711: 0.76009 @@ -89567,12 +90553,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3993 - - name: phosphatidylcholine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3993" + - name: "phosphatidylcholine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3212: -1 - s_3711: 0.75807 @@ -89580,12 +90567,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3994 - - name: phosphatidylcholine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3994" + - name: "phosphatidylcholine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3213: -1 - s_3711: 0.77214 @@ -89593,36 +90581,39 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3995 - - name: phosphatidylcholine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3995" + - name: "phosphatidylcholine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3214: -1 - s_3711: 0.77013 - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3996 - - name: phosphatidylcholine transport, ER membrane-cytoplasm + - id: "r_3996" + - name: "phosphatidylcholine transport, ER membrane-cytoplasm" - metabolites: !!omap - s_1346: 1 - s_3711: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR102406 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR102406" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_3997 - - name: phosphatidylethanolamine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3997" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3181: -1 - s_3712: 0.68995 @@ -89630,24 +90621,26 @@ - s_3741: 0.25441 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3998 - - name: phosphatidylethanolamine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3998" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3185: -1 - s_3712: 0.68794 - s_3741: 0.50883 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_3999 - - name: phosphatidylethanolamine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_3999" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3187: -1 - s_3712: 0.71801 @@ -89655,12 +90648,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4000 - - name: phosphatidylethanolamine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4000" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3189: -1 - s_3712: 0.71599 @@ -89668,12 +90662,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4001 - - name: phosphatidylethanolamine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4001" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3191: -1 - s_3712: 0.71801 @@ -89681,12 +90676,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4002 - - name: phosphatidylethanolamine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4002" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3193: -1 - s_3712: 0.71599 @@ -89694,12 +90690,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4003 - - name: phosphatidylethanolamine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4003" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3195: -1 - s_3712: 0.74606 @@ -89707,36 +90704,39 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4004 - - name: phosphatidylethanolamine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4004" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3197: -1 - s_3712: 0.74405 - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4005 - - name: phosphatidylethanolamine transport, ER membrane-cytoplasm + - id: "r_4005" + - name: "phosphatidylethanolamine transport, ER membrane-cytoplasm" - metabolites: !!omap - s_1351: 1 - s_3712: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR102505 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR102505" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4006 - - name: triglyceride (1-16:0, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4006" + - name: "triglyceride (1-16:0, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3011: -1 - s_3713: 0.80532 @@ -89744,12 +90744,13 @@ - s_3741: 0.25441 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4007 - - name: triglyceride (1-16:0, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4007" + - name: "triglyceride (1-16:0, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3012: -1 - s_3713: 0.83337 @@ -89757,12 +90758,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4008 - - name: triglyceride (1-16:1, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4008" + - name: "triglyceride (1-16:1, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3013: -1 - s_3713: 0.8033 @@ -89770,12 +90772,13 @@ - s_3741: 0.50883 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4009 - - name: triglyceride (1-16:1, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4009" + - name: "triglyceride (1-16:1, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3014: -1 - s_3713: 0.83136 @@ -89784,12 +90787,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4010 - - name: triglyceride (1-18:0, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4010" + - name: "triglyceride (1-18:0, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3015: -1 - s_3713: 0.83337 @@ -89798,12 +90802,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4011 - - name: triglyceride (1-18:0, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4011" + - name: "triglyceride (1-18:0, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3016: -1 - s_3713: 0.86143 @@ -89812,12 +90817,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4012 - - name: triglyceride (1-18:1, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4012" + - name: "triglyceride (1-18:1, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3017: -1 - s_3713: 0.83136 @@ -89826,12 +90832,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4013 - - name: triglyceride (1-18:1, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4013" + - name: "triglyceride (1-18:1, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3018: -1 - s_3713: 0.85941 @@ -89839,12 +90846,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4014 - - name: triglyceride (1-16:0, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4014" + - name: "triglyceride (1-16:0, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3019: -1 - s_3713: 0.8033 @@ -89852,12 +90860,13 @@ - s_3741: 0.50883 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4015 - - name: triglyceride (1-16:0, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4015" + - name: "triglyceride (1-16:0, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3020: -1 - s_3713: 0.83136 @@ -89866,24 +90875,26 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4016 - - name: triglyceride (1-16:1, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4016" + - name: "triglyceride (1-16:1, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3021: -1 - s_3713: 0.80129 - s_3741: 0.76324 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4017 - - name: triglyceride (1-16:1, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4017" + - name: "triglyceride (1-16:1, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3022: -1 - s_3713: 0.82934 @@ -89891,12 +90902,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4018 - - name: triglyceride (1-18:0, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4018" + - name: "triglyceride (1-18:0, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3023: -1 - s_3713: 0.83136 @@ -89904,12 +90916,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4019 - - name: triglyceride (1-18:0, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4019" + - name: "triglyceride (1-18:0, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3024: -1 - s_3713: 0.85941 @@ -89918,12 +90931,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4020 - - name: triglyceride (1-18:1, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4020" + - name: "triglyceride (1-18:1, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3025: -1 - s_3713: 0.82934 @@ -89931,12 +90945,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4021 - - name: triglyceride (1-18:1, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4021" + - name: "triglyceride (1-18:1, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3026: -1 - s_3713: 0.8574 @@ -89944,12 +90959,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4022 - - name: triglyceride (1-16:0, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4022" + - name: "triglyceride (1-16:0, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3027: -1 - s_3713: 0.83337 @@ -89958,12 +90974,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4023 - - name: triglyceride (1-16:0, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4023" + - name: "triglyceride (1-16:0, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3028: -1 - s_3713: 0.86143 @@ -89972,12 +90989,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4024 - - name: triglyceride (1-16:1, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4024" + - name: "triglyceride (1-16:1, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3029: -1 - s_3713: 0.83136 @@ -89985,12 +91003,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4025 - - name: triglyceride (1-16:1, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4025" + - name: "triglyceride (1-16:1, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3030: -1 - s_3713: 0.85941 @@ -89999,12 +91018,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4026 - - name: triglyceride (1-18:0, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4026" + - name: "triglyceride (1-18:0, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3031: -1 - s_3713: 0.86143 @@ -90012,12 +91032,13 @@ - s_3742: 0.56897 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4027 - - name: triglyceride (1-18:0, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4027" + - name: "triglyceride (1-18:0, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3032: -1 - s_3713: 0.88948 @@ -90025,12 +91046,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4028 - - name: triglyceride (1-18:1, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4028" + - name: "triglyceride (1-18:1, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3033: -1 - s_3713: 0.85941 @@ -90039,12 +91061,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4029 - - name: triglyceride (1-18:1, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4029" + - name: "triglyceride (1-18:1, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3034: -1 - s_3713: 0.88747 @@ -90052,12 +91075,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4030 - - name: triglyceride (1-16:0, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4030" + - name: "triglyceride (1-16:0, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3035: -1 - s_3713: 0.83136 @@ -90066,12 +91090,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4031 - - name: triglyceride (1-16:0, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4031" + - name: "triglyceride (1-16:0, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3036: -1 - s_3713: 0.85941 @@ -90079,12 +91104,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4032 - - name: triglyceride (1-16:1, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4032" + - name: "triglyceride (1-16:1, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3037: -1 - s_3713: 0.82934 @@ -90092,12 +91118,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4033 - - name: triglyceride (1-16:1, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4033" + - name: "triglyceride (1-16:1, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3038: -1 - s_3713: 0.8574 @@ -90105,12 +91132,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4034 - - name: triglyceride (1-18:0, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4034" + - name: "triglyceride (1-18:0, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3039: -1 - s_3713: 0.85941 @@ -90119,12 +91147,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4035 - - name: triglyceride (1-18:0, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4035" + - name: "triglyceride (1-18:0, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3040: -1 - s_3713: 0.88747 @@ -90132,12 +91161,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4036 - - name: triglyceride (1-18:1, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4036" + - name: "triglyceride (1-18:1, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3041: -1 - s_3713: 0.8574 @@ -90145,36 +91175,39 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4037 - - name: triglyceride (1-18:1, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4037" + - name: "triglyceride (1-18:1, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3042: -1 - s_3713: 0.88545 - s_3743: 0.8474 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4038 - - name: triglyceride transport, ER membrane-cytoplasm + - id: "r_4038" + - name: "triglyceride transport, ER membrane-cytoplasm" - metabolites: !!omap - s_1524: 1 - s_3713: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR104713 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104713" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4039 - - name: succinyl-CoA:acetate CoA transferase + - id: "r_4039" + - name: "succinyl-CoA:acetate CoA transferase" - metabolites: !!omap - s_0365: -1 - s_0376: 1 @@ -90182,29 +91215,30 @@ - s_1464: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBL015W - - subsystem: sce00620 Pyruvate metabolism + - gene_reaction_rule: "YBL015W" + - subsystem: "sce00620 Pyruvate metabolism" - annotation: !!omap - - ec-code: 3.1.2.1 - - kegg.reaction: R10343 - - metanetx.reaction: MNXR104636 - - pmid: 19298859 - - sbo: SBO:0000176 + - ec-code: "3.1.2.1" + - kegg.reaction: "R10343" + - metanetx.reaction: "MNXR104636" + - pmid: "19298859" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_4040 - - name: heme a transport + - id: "r_4040" + - name: "heme a transport" - metabolites: !!omap - s_0811: -1 - s_3714: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4041 - - name: biomass pseudoreaction + - id: "r_4041" + - name: "biomass pseudoreaction" - metabolites: !!omap - s_0394: 55.3 - s_0434: -55.3 @@ -90221,12 +91255,13 @@ - s_4206: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000629 + - sbo: "SBO:0000629" - confidence_score: 1 - !!omap - - id: r_4042 - - name: raffinose invertase + - id: "r_4042" + - name: "raffinose invertase" - metabolites: !!omap - s_0554: 1 - s_0805: -1 @@ -90234,35 +91269,38 @@ - s_3716: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - kegg.reaction: R02410 - - metanetx.reaction: MNXR103420 - - pmid: 4967422 - - sbo: SBO:0000176 + - kegg.reaction: "R02410" + - metanetx.reaction: "MNXR103420" + - pmid: "4967422" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_4043 - - name: raffinose exchange + - id: "r_4043" + - name: "raffinose exchange" - metabolites: !!omap - s_3715: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_raffin_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_raffin_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4044 - - name: melibiose exchange + - id: "r_4044" + - name: "melibiose exchange" - metabolites: !!omap - s_3716: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_melib_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_melib_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4045 - - name: uridine hydrolase + - id: "r_4045" + - name: "uridine hydrolase" - metabolites: !!omap - s_0575: 1 - s_0803: -1 @@ -90270,21 +91308,21 @@ - s_1556: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR400W + - gene_reaction_rule: "YDR400W" - subsystem: - - sce00240 Pyrimidine metabolism - - sce00760 Nicotinate and nicotinamide metabolism + - "sce00240 Pyrimidine metabolism" + - "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - - ec-code: 3.2.2.3 - - bigg.reaction: URIH - - kegg.reaction: R01080 - - metanetx.reaction: MNXR105161 - - pmid: 23670538 - - sbo: SBO:0000176 + - ec-code: "3.2.2.3" + - bigg.reaction: "URIH" + - kegg.reaction: "R01080" + - metanetx.reaction: "MNXR105161" + - pmid: "23670538" + - sbo: "SBO:0000176" - confidence_score: 3 - !!omap - - id: r_4046 - - name: non-growth associated maintenance reaction + - id: "r_4046" + - name: "non-growth associated maintenance reaction" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -90293,13 +91331,14 @@ - s_1322: 1 - lower_bound: 0.7 - upper_bound: 0.7 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ATPM - - sbo: SBO:0000630 + - bigg.reaction: "ATPM" + - sbo: "SBO:0000630" - confidence_score: 0 - !!omap - - id: r_4047 - - name: protein pseudoreaction + - id: "r_4047" + - name: "protein pseudoreaction" - metabolites: !!omap - s_0404: -0.52701 - s_0428: -0.18459 @@ -90344,12 +91383,13 @@ - s_3717: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4048 - - name: carbohydrate pseudoreaction + - id: "r_4048" + - name: "carbohydrate pseudoreaction" - metabolites: !!omap - s_0001: -0.74851 - s_0004: -0.25009 @@ -90359,12 +91399,13 @@ - s_3718: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4049 - - name: RNA pseudoreaction + - id: "r_4049" + - name: "RNA pseudoreaction" - metabolites: !!omap - s_0423: -0.044535 - s_0526: -0.043276 @@ -90373,12 +91414,13 @@ - s_3719: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4050 - - name: DNA pseudoreaction + - id: "r_4050" + - name: "DNA pseudoreaction" - metabolites: !!omap - s_0584: -0.0036 - s_0589: -0.0024 @@ -90387,142 +91429,155 @@ - s_3720: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4051 - - name: ceramide transport + - id: "r_4051" + - name: "ceramide transport" - metabolites: !!omap - s_3721: -1 - s_3722: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4052 - - name: inositol phosphomannosylinositol phosphoceramide transport + - id: "r_4052" + - name: "inositol phosphomannosylinositol phosphoceramide transport" - metabolites: !!omap - s_0859: -1 - s_3723: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4053 - - name: inositol-P-ceramide transport + - id: "r_4053" + - name: "inositol-P-ceramide transport" - metabolites: !!omap - s_0892: -1 - s_3724: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4054 - - name: mannosylinositol phosphorylceramide transport + - id: "r_4054" + - name: "mannosylinositol phosphorylceramide transport" - metabolites: !!omap - s_1114: -1 - s_3725: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4055 - - name: long-chain base transport + - id: "r_4055" + - name: "long-chain base transport" - metabolites: !!omap - s_3726: -1 - s_3727: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4056 - - name: long-chain base phosphate transport + - id: "r_4056" + - name: "long-chain base phosphate transport" - metabolites: !!omap - s_3728: -1 - s_3729: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4057 - - name: phosphatidate transport + - id: "r_4057" + - name: "phosphatidate transport" - metabolites: !!omap - s_3730: -1 - s_3731: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4058 - - name: diglyceride transport + - id: "r_4058" + - name: "diglyceride transport" - metabolites: !!omap - s_3732: -1 - s_3733: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4059 - - name: sn-2-acyl-1-lysophosphatidylinositol transport + - id: "r_4059" + - name: "sn-2-acyl-1-lysophosphatidylinositol transport" - metabolites: !!omap - s_3734: -1 - s_3735: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4060 - - name: phosphatidylglycerol transport + - id: "r_4060" + - name: "phosphatidylglycerol transport" - metabolites: !!omap - s_3736: -1 - s_3737: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4061 - - name: cardiolipin transport + - id: "r_4061" + - name: "cardiolipin transport" - metabolites: !!omap - s_3738: -1 - s_3739: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4062 - - name: lipid backbone exchange + - id: "r_4062" + - name: "lipid backbone exchange" - metabolites: !!omap - s_3746: -1 - lower_bound: 0 - upper_bound: 0 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000632 + - sbo: "SBO:0000632" - !!omap - - id: r_4063 - - name: lipid backbone pseudoreaction + - id: "r_4063" + - name: "lipid backbone pseudoreaction" - metabolites: !!omap - s_0089: -0.0069103 - s_0666: -0.026583 @@ -90535,21 +91590,23 @@ - s_3746: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4064 - - name: lipid chain exchange + - id: "r_4064" + - name: "lipid chain exchange" - metabolites: !!omap - s_3747: -1 - lower_bound: 0 - upper_bound: 0 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000632 + - sbo: "SBO:0000632" - !!omap - - id: r_4065 - - name: lipid chain pseudoreaction + - id: "r_4065" + - name: "lipid chain pseudoreaction" - metabolites: !!omap - s_3740: -0.0080858 - s_3741: -0.02373 @@ -90558,12 +91615,13 @@ - s_3747: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4066 - - name: ceramide-1 (C24) [Golgi] SLIME rxn + - id: "r_4066" + - name: "ceramide-1 (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0476: -1 - s_3721: 0.65214 @@ -90571,12 +91629,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4067 - - name: ceramide-1 (C26) [Golgi] SLIME rxn + - id: "r_4067" + - name: "ceramide-1 (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0479: -1 - s_3721: 0.6802 @@ -90584,12 +91643,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4068 - - name: ceramide-2 (C24) [Golgi] SLIME rxn + - id: "r_4068" + - name: "ceramide-2 (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0482: -1 - s_3721: 0.66814 @@ -90597,12 +91657,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4069 - - name: ceramide-2 (C26) [Golgi] SLIME rxn + - id: "r_4069" + - name: "ceramide-2 (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0485: -1 - s_3721: 0.6962 @@ -90610,12 +91671,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4070 - - name: ceramide-2' (C24) [Golgi] SLIME rxn + - id: "r_4070" + - name: "ceramide-2' (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0488: -1 - s_3721: 0.66814 @@ -90623,12 +91685,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4071 - - name: ceramide-2' (C26) [Golgi] SLIME rxn + - id: "r_4071" + - name: "ceramide-2' (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0491: -1 - s_3721: 0.6962 @@ -90636,12 +91699,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4072 - - name: ceramide-3 (C24) [Golgi] SLIME rxn + - id: "r_4072" + - name: "ceramide-3 (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0494: -1 - s_3721: 0.68414 @@ -90649,12 +91713,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4073 - - name: ceramide-3 (C26) [Golgi] SLIME rxn + - id: "r_4073" + - name: "ceramide-3 (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0497: -1 - s_3721: 0.71219 @@ -90662,12 +91727,13 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4074 - - name: ceramide-4 (C24) [Golgi] SLIME rxn + - id: "r_4074" + - name: "ceramide-4 (C24) [Golgi] SLIME rxn" - metabolites: !!omap - s_0500: -1 - s_3721: 0.70014 @@ -90675,12 +91741,13 @@ - s_3744: 0.36864 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4075 - - name: ceramide-4 (C26) [Golgi] SLIME rxn + - id: "r_4075" + - name: "ceramide-4 (C26) [Golgi] SLIME rxn" - metabolites: !!omap - s_0503: -1 - s_3721: 0.72819 @@ -90688,60 +91755,65 @@ - s_3745: 0.3967 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4076 - - name: phytosphingosine [endoplasmic reticulum] SLIME rxn + - id: "r_4076" + - name: "phytosphingosine [endoplasmic reticulum] SLIME rxn" - metabolites: !!omap - s_1366: -1 - s_3726: 0.31751 - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4077 - - name: phytosphingosine 1-phosphate [endoplasmic reticulum] SLIME rxn + - id: "r_4077" + - name: "phytosphingosine 1-phosphate [endoplasmic reticulum] SLIME rxn" - metabolites: !!omap - s_1367: -1 - s_3728: 0.39749 - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4078 - - name: sphinganine [endoplasmic reticulum] SLIME rxn + - id: "r_4078" + - name: "sphinganine [endoplasmic reticulum] SLIME rxn" - metabolites: !!omap - s_1445: -1 - s_3726: 0.30252 - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4079 - - name: sphinganine 1-phosphate [endoplasmic reticulum] SLIME rxn + - id: "r_4079" + - name: "sphinganine 1-phosphate [endoplasmic reticulum] SLIME rxn" - metabolites: !!omap - s_1446: -1 - s_3728: 0.38049 - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4080 - - name: phosphatidate (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4080" + - name: "phosphatidate (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2954: -1 - s_3730: 0.64487 @@ -90749,12 +91821,13 @@ - s_3741: 0.25441 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4081 - - name: phosphatidate (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4081" + - name: "phosphatidate (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2955: -1 - s_3730: 0.67494 @@ -90762,24 +91835,26 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4082 - - name: phosphatidate (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4082" + - name: "phosphatidate (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2956: -1 - s_3730: 0.64487 - s_3741: 0.50883 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4083 - - name: phosphatidate (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4083" + - name: "phosphatidate (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2957: -1 - s_3730: 0.67292 @@ -90787,12 +91862,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4084 - - name: phosphatidate (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4084" + - name: "phosphatidate (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2958: -1 - s_3730: 0.67494 @@ -90800,12 +91876,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4085 - - name: phosphatidate (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4085" + - name: "phosphatidate (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2959: -1 - s_3730: 0.70299 @@ -90813,12 +91890,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4086 - - name: phosphatidate (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4086" + - name: "phosphatidate (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2960: -1 - s_3730: 0.67292 @@ -90826,24 +91904,26 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4087 - - name: phosphatidate (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4087" + - name: "phosphatidate (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2961: -1 - s_3730: 0.70098 - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4088 - - name: diglyceride (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4088" + - name: "diglyceride (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2967: -1 - s_3732: 0.56892 @@ -90851,12 +91931,13 @@ - s_3741: 0.25441 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4089 - - name: diglyceride (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4089" + - name: "diglyceride (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2968: -1 - s_3732: 0.59496 @@ -90864,24 +91945,26 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4090 - - name: diglyceride (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4090" + - name: "diglyceride (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2969: -1 - s_3732: 0.56489 - s_3741: 0.50883 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4091 - - name: diglyceride (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4091" + - name: "diglyceride (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2970: -1 - s_3732: 0.59294 @@ -90889,12 +91972,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4092 - - name: diglyceride (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4092" + - name: "diglyceride (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2971: -1 - s_3732: 0.59496 @@ -90902,12 +91986,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4093 - - name: diglyceride (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4093" + - name: "diglyceride (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2972: -1 - s_3732: 0.62301 @@ -90915,12 +92000,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4094 - - name: diglyceride (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4094" + - name: "diglyceride (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2973: -1 - s_3732: 0.59294 @@ -90928,48 +92014,52 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4095 - - name: diglyceride (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4095" + - name: "diglyceride (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_2974: -1 - s_3732: 0.621 - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4096 - - name: sn-2-acyl-1-lysophosphatidylinositol (16:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4096" + - name: "sn-2-acyl-1-lysophosphatidylinositol (16:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3126: -1 - s_3734: 0.56457 - s_3741: 0.25441 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4097 - - name: sn-2-acyl-1-lysophosphatidylinositol (18:1) [endoplasmic reticulum membrane] SLIME rxn + - id: "r_4097" + - name: "sn-2-acyl-1-lysophosphatidylinositol (18:1) [endoplasmic reticulum membrane] SLIME rxn" - metabolites: !!omap - s_3127: -1 - s_3734: 0.59262 - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4098 - - name: phosphatidylglycerol (1-16:0, 2-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4098" + - name: "phosphatidylglycerol (1-16:0, 2-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3227: -1 - s_3736: 0.72097 @@ -90977,24 +92067,26 @@ - s_3741: 0.25441 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4099 - - name: phosphatidylglycerol (1-16:1, 2-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4099" + - name: "phosphatidylglycerol (1-16:1, 2-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3229: -1 - s_3736: 0.71895 - s_3741: 0.50883 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4100 - - name: phosphatidylglycerol (1-18:0, 2-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4100" + - name: "phosphatidylglycerol (1-18:0, 2-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3230: -1 - s_3736: 0.74902 @@ -91002,12 +92094,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4101 - - name: phosphatidylglycerol (1-18:1, 2-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4101" + - name: "phosphatidylglycerol (1-18:1, 2-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3231: -1 - s_3736: 0.747 @@ -91015,12 +92108,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4102 - - name: phosphatidylglycerol (1-16:0, 2-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4102" + - name: "phosphatidylglycerol (1-16:0, 2-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3232: -1 - s_3736: 0.74902 @@ -91028,12 +92122,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4103 - - name: phosphatidylglycerol (1-16:1, 2-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4103" + - name: "phosphatidylglycerol (1-16:1, 2-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3233: -1 - s_3736: 0.747 @@ -91041,12 +92136,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4104 - - name: cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4104" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3234: -1 - s_3738: 1.3519 @@ -91054,12 +92150,13 @@ - s_3741: 0.50883 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4105 - - name: cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4105" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3235: -1 - s_3738: 1.3478 @@ -91067,12 +92164,13 @@ - s_3741: 0.76324 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4106 - - name: cardiolipin (1-16:0, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4106" + - name: "cardiolipin (1-16:0, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3236: -1 - s_3738: 1.3799 @@ -91081,12 +92179,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4107 - - name: cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4107" + - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3237: -1 - s_3738: 1.3759 @@ -91095,12 +92194,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4108 - - name: cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4108" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3238: -1 - s_3738: 1.3799 @@ -91109,12 +92209,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4109 - - name: cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4109" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3239: -1 - s_3738: 1.3759 @@ -91123,12 +92224,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4110 - - name: cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4110" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3240: -1 - s_3738: 1.3498 @@ -91136,24 +92238,26 @@ - s_3741: 0.76324 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4111 - - name: cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4111" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3241: -1 - s_3738: 1.3458 - s_3741: 1.0177 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4112 - - name: cardiolipin (1-16:1, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4112" + - name: "cardiolipin (1-16:1, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3242: -1 - s_3738: 1.3779 @@ -91161,12 +92265,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4113 - - name: cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4113" + - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3243: -1 - s_3738: 1.3739 @@ -91174,12 +92279,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4114 - - name: cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4114" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3244: -1 - s_3738: 1.3779 @@ -91188,12 +92294,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4115 - - name: cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4115" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3245: -1 - s_3738: 1.3739 @@ -91201,12 +92308,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4116 - - name: cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4116" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3246: -1 - s_3738: 1.3799 @@ -91215,12 +92323,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4117 - - name: cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4117" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3247: -1 - s_3738: 1.3759 @@ -91228,12 +92337,13 @@ - s_3742: 0.28448 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4118 - - name: cardiolipin (1-18:0, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4118" + - name: "cardiolipin (1-18:0, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3248: -1 - s_3738: 1.408 @@ -91241,12 +92351,13 @@ - s_3742: 0.56897 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4119 - - name: cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4119" + - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3249: -1 - s_3738: 1.4039 @@ -91255,12 +92366,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4120 - - name: cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4120" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3250: -1 - s_3738: 1.408 @@ -91270,12 +92382,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4121 - - name: cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4121" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3251: -1 - s_3738: 1.4039 @@ -91284,12 +92397,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4122 - - name: cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4122" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3252: -1 - s_3738: 1.3779 @@ -91298,12 +92412,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4123 - - name: cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4123" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3253: -1 - s_3738: 1.3739 @@ -91311,12 +92426,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4124 - - name: cardiolipin (1-18:1, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4124" + - name: "cardiolipin (1-18:1, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3254: -1 - s_3738: 1.4059 @@ -91325,12 +92441,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4125 - - name: cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4125" + - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3255: -1 - s_3738: 1.4019 @@ -91338,12 +92455,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4126 - - name: cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4126" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3256: -1 - s_3738: 1.4059 @@ -91352,12 +92470,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4127 - - name: cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4127" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3257: -1 - s_3738: 1.4019 @@ -91365,12 +92484,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4128 - - name: cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4128" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3258: -1 - s_3738: 1.3799 @@ -91379,12 +92499,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4129 - - name: cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4129" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3259: -1 - s_3738: 1.3759 @@ -91393,12 +92514,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4130 - - name: cardiolipin (1-16:0, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4130" + - name: "cardiolipin (1-16:0, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3260: -1 - s_3738: 1.408 @@ -91408,12 +92530,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4131 - - name: cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4131" + - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3261: -1 - s_3738: 1.4039 @@ -91422,12 +92545,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4132 - - name: cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4132" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3262: -1 - s_3738: 1.408 @@ -91435,12 +92559,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4133 - - name: cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4133" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3263: -1 - s_3738: 1.4039 @@ -91449,12 +92574,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4134 - - name: cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4134" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3264: -1 - s_3738: 1.3779 @@ -91463,12 +92589,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4135 - - name: cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4135" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3265: -1 - s_3738: 1.3739 @@ -91476,12 +92603,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4136 - - name: cardiolipin (1-16:1, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4136" + - name: "cardiolipin (1-16:1, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3266: -1 - s_3738: 1.4059 @@ -91490,12 +92618,13 @@ - s_3743: 0.28247 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4137 - - name: cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4137" + - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3267: -1 - s_3738: 1.4019 @@ -91503,12 +92632,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4138 - - name: cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4138" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3268: -1 - s_3738: 1.4059 @@ -91517,12 +92647,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4139 - - name: cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4139" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3269: -1 - s_3738: 1.4019 @@ -91530,12 +92661,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4140 - - name: cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4140" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3308: -1 - s_3738: 1.4059 @@ -91544,12 +92676,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4141 - - name: cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4141" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3309: -1 - s_3738: 1.4019 @@ -91557,12 +92690,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4142 - - name: cardiolipin (1-18:1, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4142" + - name: "cardiolipin (1-18:1, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3310: -1 - s_3738: 1.434 @@ -91571,12 +92705,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4143 - - name: cardiolipin (1-18:1, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn + - id: "r_4143" + - name: "cardiolipin (1-18:1, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3311: -1 - s_3738: 1.43 @@ -91584,12 +92719,13 @@ - s_3743: 0.8474 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4144 - - name: cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4144" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3312: -1 - s_3738: 1.434 @@ -91597,12 +92733,13 @@ - s_3743: 0.8474 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4145 - - name: cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4145" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3313: -1 - s_3738: 1.43 @@ -91610,12 +92747,13 @@ - s_3743: 0.8474 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4146 - - name: cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4146" + - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3314: -1 - s_3738: 1.4039 @@ -91624,12 +92762,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4147 - - name: cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4147" + - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3315: -1 - s_3738: 1.4019 @@ -91637,12 +92776,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4148 - - name: cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4148" + - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3316: -1 - s_3738: 1.432 @@ -91651,12 +92791,13 @@ - s_3743: 0.56493 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4149 - - name: cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4149" + - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3317: -1 - s_3738: 1.43 @@ -91664,12 +92805,13 @@ - s_3743: 0.8474 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4150 - - name: cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4150" + - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3318: -1 - s_3738: 1.432 @@ -91677,12 +92819,13 @@ - s_3743: 0.8474 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4151 - - name: cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn + - id: "r_4151" + - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - metabolites: !!omap - s_3319: -1 - s_3738: 1.43 @@ -91690,31 +92833,32 @@ - s_3743: 0.8474 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4152 - - name: Cytochrome c apocytochrome-c-lyase + - id: "r_4152" + - name: "Cytochrome c apocytochrome-c-lyase" - metabolites: !!omap - s_0712: 1 - s_3748: -1 - s_3749: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL039C or YKL087C + - gene_reaction_rule: "YAL039C or YKL087C" - annotation: !!omap - ec-code: - - 4.4.1.17 - - 4.4.1.- - - bigg.reaction: HEMELm - - kegg.reaction: R02480 - - metanetx.reaction: MNXR138510 - - sbo: SBO:0000176 + - "4.4.1.17" + - "4.4.1.-" + - bigg.reaction: "HEMELm" + - kegg.reaction: "R02480" + - metanetx.reaction: "MNXR138510" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4153 - - name: (R)-Acetoin:NAD+ oxidoreductase + - id: "r_4153" + - name: "(R)-Acetoin:NAD+ oxidoreductase" - metabolites: !!omap - s_0020: 1 - s_0794: -1 @@ -91723,17 +92867,17 @@ - s_3750: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YAL061W + - gene_reaction_rule: "YAL061W" - annotation: !!omap - - ec-code: 1.1.1.303 - - bigg.reaction: ACTD - - kegg.reaction: R02855 - - metanetx.reaction: MNXR95419 - - sbo: SBO:0000176 + - ec-code: "1.1.1.303" + - bigg.reaction: "ACTD" + - kegg.reaction: "R02855" + - metanetx.reaction: "MNXR95419" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4154 - - name: Probable diacetyl reductase [(R)-acetoin forming] 2 (EC 1.1.1.303) + - id: "r_4154" + - name: "Probable diacetyl reductase [(R)-acetoin forming] 2 (EC 1.1.1.303)" - metabolites: !!omap - s_0794: 1 - s_1201: -1 @@ -91742,16 +92886,16 @@ - s_3753: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YAL061W + - gene_reaction_rule: "YAL061W" - annotation: !!omap - - ec-code: 1.1.1.303 - - kegg.reaction: R02855 - - metanetx.reaction: MNXR95419 - - sbo: SBO:0000176 + - ec-code: "1.1.1.303" + - kegg.reaction: "R02855" + - metanetx.reaction: "MNXR95419" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4155 - - name: Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial (Glu-AdT subunit B) (EC 6.3.5.-) (Cytochrome c oxidase assembly factor PET112) + - id: "r_4155" + - name: "Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial (Glu-AdT subunit B) (EC 6.3.5.-) (Cytochrome c oxidase assembly factor PET112)" - metabolites: !!omap - s_0397: 1 - s_0437: -1 @@ -91764,14 +92908,14 @@ - s_3756: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBL080C + - gene_reaction_rule: "YBL080C" - annotation: !!omap - - ec-code: 6.3.5.- - - sbo: SBO:0000176 + - ec-code: "6.3.5.-" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4156 - - name: Methionine aminopeptidase 2 (MAP 2) (MetAP 2) (EC 3.4.11.18) (Peptidase M) + - id: "r_4156" + - name: "Methionine aminopeptidase 2 (MAP 2) (MetAP 2) (EC 3.4.11.18) (Peptidase M)" - metabolites: !!omap - s_0810: -1 - s_3757: -1 @@ -91779,14 +92923,14 @@ - s_3759: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBL091C or YLR244C + - gene_reaction_rule: "YBL091C or YLR244C" - annotation: !!omap - - ec-code: 3.4.11.18 - - sbo: SBO:0000176 + - ec-code: "3.4.11.18" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4157 - - name: ADP-ribose 1''-phosphate phosphatase (EC 3.1.3.84) (EC 3.2.2.-) ([Protein ADP-ribosylglutamate] hydrolase) + - id: "r_4157" + - name: "ADP-ribose 1''-phosphate phosphatase (EC 3.1.3.84) (EC 3.2.2.-) ([Protein ADP-ribosylglutamate] hydrolase)" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -91794,16 +92938,16 @@ - s_3761: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR022W or YMR087W + - gene_reaction_rule: "YBR022W or YMR087W" - annotation: !!omap - ec-code: - - 3.1.3.84 - - 3.2.2.- - - sbo: SBO:0000176 + - "3.1.3.84" + - "3.2.2.-" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4158 - - name: NADPH2:quinone oxidoreductase + - id: "r_4158" + - name: "NADPH2:quinone oxidoreductase" - metabolites: !!omap - s_0794: -1 - s_1207: 1 @@ -91812,16 +92956,16 @@ - s_3763: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR046C + - gene_reaction_rule: "YBR046C" - annotation: !!omap - - ec-code: 1.6.5.5 - - kegg.reaction: R02364 - - metanetx.reaction: MNXR107466 - - sbo: SBO:0000176 + - ec-code: "1.6.5.5" + - kegg.reaction: "R02364" + - metanetx.reaction: "MNXR107466" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4159 - - name: UDP-N-acetylglucosamine transferase subunit ALG14 (Asparagine-linked glycosylation protein 14) + - id: "r_4159" + - name: "UDP-N-acetylglucosamine transferase subunit ALG14 (Asparagine-linked glycosylation protein 14)" - metabolites: !!omap - s_0795: 1 - s_3764: -1 @@ -91830,16 +92974,16 @@ - s_3767: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR070C and YGL047W + - gene_reaction_rule: "YBR070C and YGL047W" - annotation: !!omap - - ec-code: 2.4.1.141 - - kegg.reaction: R05970 - - metanetx.reaction: MNXR100208 - - sbo: SBO:0000176 + - ec-code: "2.4.1.141" + - kegg.reaction: "R05970" + - metanetx.reaction: "MNXR100208" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4160 - - name: ADP-ribose pyrophosphatase (EC 3.6.1.13) (ADP-ribose diphosphatase) (ADP-ribose phosphohydrolase) (Adenosine diphosphoribose pyrophosphatase) (ADPR-PPase) + - id: "r_4160" + - name: "ADP-ribose pyrophosphatase (EC 3.6.1.13) (ADP-ribose diphosphatase) (ADP-ribose phosphohydrolase) (Adenosine diphosphoribose pyrophosphatase) (ADPR-PPase)" - metabolites: !!omap - s_0423: 1 - s_0794: 2 @@ -91848,50 +92992,50 @@ - s_3768: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR111C + - gene_reaction_rule: "YBR111C" - annotation: !!omap - - ec-code: 3.6.1.13 - - sbo: SBO:0000176 + - ec-code: "3.6.1.13" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4161 - - name: Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2) + - id: "r_4161" + - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" - metabolites: !!omap - s_0965: 1 - s_0968: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR147W or YDR352W + - gene_reaction_rule: "YBR147W or YDR352W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4162 - - name: Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2) + - id: "r_4162" + - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" - metabolites: !!omap - s_1006: 1 - s_1009: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR147W or YDR352W + - gene_reaction_rule: "YBR147W or YDR352W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4163 - - name: Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2) + - id: "r_4163" + - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" - metabolites: !!omap - s_1025: 1 - s_1028: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR147W or YDR352W + - gene_reaction_rule: "YBR147W or YDR352W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4164 - - name: oxalate:CoA ligase (AMP-forming) + - id: "r_4164" + - name: "oxalate:CoA ligase (AMP-forming)" - metabolites: !!omap - s_0426: 1 - s_0439: -1 @@ -91901,16 +93045,16 @@ - s_3770: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR222C + - gene_reaction_rule: "YBR222C" - annotation: !!omap - - ec-code: 6.-.-.- - - kegg.reaction: R01558 - - metanetx.reaction: MNXR102232 - - sbo: SBO:0000176 + - ec-code: "6.-.-.-" + - kegg.reaction: "R01558" + - metanetx.reaction: "MNXR102232" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4165 - - name: Glucosidase 2 subunit alpha (EC 3.2.1.84) (Alpha-glucosidase II subunit alpha) (Glucosidase II subunit alpha) (Reversal of TOR2 lethality protein 2) + - id: "r_4165" + - name: "Glucosidase 2 subunit alpha (EC 3.2.1.84) (Alpha-glucosidase II subunit alpha) (Glucosidase II subunit alpha) (Reversal of TOR2 lethality protein 2)" - metabolites: !!omap - s_0804: -1 - s_3771: -1 @@ -91918,16 +93062,16 @@ - s_3773: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR229C + - gene_reaction_rule: "YBR229C" - annotation: !!omap - - ec-code: 3.2.1.84 - - kegg.reaction: R05980 - - metanetx.reaction: MNXR109971 - - sbo: SBO:0000176 + - ec-code: "3.2.1.84" + - kegg.reaction: "R05980" + - metanetx.reaction: "MNXR109971" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4166 - - name: Glucosidase 2 subunit alpha (EC 3.2.1.84) (Alpha-glucosidase II subunit alpha) (Glucosidase II subunit alpha) (Reversal of TOR2 lethality protein 2) + - id: "r_4166" + - name: "Glucosidase 2 subunit alpha (EC 3.2.1.84) (Alpha-glucosidase II subunit alpha) (Glucosidase II subunit alpha) (Reversal of TOR2 lethality protein 2)" - metabolites: !!omap - s_0804: -1 - s_3772: 1 @@ -91935,16 +93079,16 @@ - s_3774: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR229C + - gene_reaction_rule: "YBR229C" - annotation: !!omap - - ec-code: 3.2.1.84 - - kegg.reaction: R05981 - - metanetx.reaction: MNXR109972 - - sbo: SBO:0000176 + - ec-code: "3.2.1.84" + - kegg.reaction: "R05981" + - metanetx.reaction: "MNXR109972" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4167 - - name: Vacuolar cation-chloride cotransporter 1 (Vacuolar homolog of CCC family protein 1) + - id: "r_4167" + - name: "Vacuolar cation-chloride cotransporter 1 (Vacuolar homolog of CCC family protein 1)" - metabolites: !!omap - s_1373: 1 - s_1437: 1 @@ -91954,38 +93098,38 @@ - s_3778: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR235W + - gene_reaction_rule: "YBR235W" - annotation: !!omap - - ec-code: 3.6.3.7 - - sbo: SBO:0000655 + - ec-code: "3.6.3.7" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4168 - - name: Probable metabolite transport protein YBR241C + - id: "r_4168" + - name: "Probable metabolite transport protein YBR241C" - metabolites: !!omap - s_0553: -1 - s_3779: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR241C or YGL104C + - gene_reaction_rule: "YBR241C or YGL104C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4169 - - name: Probable metabolite transport protein YBR241C + - id: "r_4169" + - name: "Probable metabolite transport protein YBR241C" - metabolites: !!omap - s_0558: -1 - s_3780: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR241C or YGL104C + - gene_reaction_rule: "YBR241C or YGL104C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4170 - - name: UDP-N-acetyl-D-glucosamine:dolichyl-phosphate N-acetyl-D-glucosamine phosphotransferase + - id: "r_4170" + - name: "UDP-N-acetyl-D-glucosamine:dolichyl-phosphate N-acetyl-D-glucosamine phosphotransferase" - metabolites: !!omap - s_0646: -1 - s_3764: -1 @@ -91993,16 +93137,16 @@ - s_3781: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR243C + - gene_reaction_rule: "YBR243C" - annotation: !!omap - - ec-code: 2.7.8.15 - - kegg.reaction: R01007 - - metanetx.reaction: MNXR106786 - - sbo: SBO:0000176 + - ec-code: "2.7.8.15" + - kegg.reaction: "R01007" + - metanetx.reaction: "MNXR106786" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4171 - - name: (5-glutamyl)-peptide:amino-acid 5-glutamyltransferase + - id: "r_4171" + - name: "(5-glutamyl)-peptide:amino-acid 5-glutamyltransferase" - metabolites: !!omap - s_0750: -1 - s_0803: -1 @@ -92010,17 +93154,17 @@ - s_0991: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR281C and YNL191W + - gene_reaction_rule: "YBR281C and YNL191W" - annotation: !!omap - - ec-code: 3.4.-.- - - bigg.reaction: GTHRDH_syn - - kegg.reaction: R03916 - - metanetx.reaction: MNXR108524 - - sbo: SBO:0000176 + - ec-code: "3.4.-.-" + - bigg.reaction: "GTHRDH_syn" + - kegg.reaction: "R03916" + - metanetx.reaction: "MNXR108524" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4172 - - name: P-type cation-transporting ATPase (EC 3.6.3.3) (Cadmium resistance protein 2) (Cadmium-translocating P-type ATPase) (Cd(2+)-exporting ATPase) + - id: "r_4172" + - name: "P-type cation-transporting ATPase (EC 3.6.3.3) (Cadmium resistance protein 2) (Cadmium-translocating P-type ATPase) (Cd(2+)-exporting ATPase)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -92031,15 +93175,15 @@ - s_3783: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR295W + - gene_reaction_rule: "YBR295W" - annotation: !!omap - - ec-code: 3.6.3.3 - - bigg.reaction: CD2abc1 - - sbo: SBO:0000655 + - ec-code: "3.6.3.3" + - bigg.reaction: "CD2abc1" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4173 - - name: L-cysteine:sulfur-acceptor sulfurtransferase + - id: "r_4173" + - name: "L-cysteine:sulfur-acceptor sulfurtransferase" - metabolites: !!omap - s_0957: 1 - s_3784: -1 @@ -92047,28 +93191,28 @@ - s_3786: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCL017C + - gene_reaction_rule: "YCL017C" - annotation: !!omap - - ec-code: 2.8.1.7 - - kegg.reaction: R11528 - - metanetx.reaction: MNXR114822 - - sbo: SBO:0000176 + - ec-code: "2.8.1.7" + - kegg.reaction: "R11528" + - metanetx.reaction: "MNXR114822" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4174 - - name: Probable ATP-dependent permease + - id: "r_4174" + - name: "Probable ATP-dependent permease" - metabolites: !!omap - s_3787: -1 - s_3788: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR011C + - gene_reaction_rule: "YCR011C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4175 - - name: Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-) + - id: "r_4175" + - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" - metabolites: !!omap - s_0794: 1 - s_1198: -1 @@ -92077,14 +93221,14 @@ - s_3790: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W + - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - annotation: !!omap - - ec-code: 1.1.1.- - - sbo: SBO:0000176 + - ec-code: "1.1.1.-" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4176 - - name: Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-) + - id: "r_4176" + - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" - metabolites: !!omap - s_0794: 1 - s_1198: -1 @@ -92093,14 +93237,14 @@ - s_3792: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W + - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - annotation: !!omap - - ec-code: 1.1.1.- - - sbo: SBO:0000176 + - ec-code: "1.1.1.-" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4177 - - name: Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-) + - id: "r_4177" + - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" - metabolites: !!omap - s_0794: 1 - s_1198: -1 @@ -92109,17 +93253,17 @@ - s_3794: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W + - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - annotation: !!omap - - ec-code: 1.1.1.- - - bigg.reaction: 3MBZALDH - - kegg.reaction: R05347 - - metanetx.reaction: MNXR94914 - - sbo: SBO:0000176 + - ec-code: "1.1.1.-" + - bigg.reaction: "3MBZALDH" + - kegg.reaction: "R05347" + - metanetx.reaction: "MNXR94914" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4178 - - name: Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-) + - id: "r_4178" + - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" - metabolites: !!omap - s_0794: 1 - s_1198: -1 @@ -92128,14 +93272,14 @@ - s_3796: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W + - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - annotation: !!omap - - ec-code: 1.1.1.- - - sbo: SBO:0000176 + - ec-code: "1.1.1.-" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4179 - - name: Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-) + - id: "r_4179" + - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" - metabolites: !!omap - s_0794: 1 - s_1198: -1 @@ -92144,15 +93288,15 @@ - s_3798: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W + - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - annotation: !!omap - - ec-code: 1.1.1.- - - bigg.reaction: 4MBZALDH - - sbo: SBO:0000176 + - ec-code: "1.1.1.-" + - bigg.reaction: "4MBZALDH" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4180 - - name: Benzyl alcohol:NAD+ oxidoreductase + - id: "r_4180" + - name: "Benzyl alcohol:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 1 - s_1198: -1 @@ -92161,17 +93305,17 @@ - s_3800: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W + - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - annotation: !!omap - - ec-code: 1.1.1.- - - bigg.reaction: BZALDH - - kegg.reaction: R01763 - - metanetx.reaction: MNXR96362 - - sbo: SBO:0000176 + - ec-code: "1.1.1.-" + - bigg.reaction: "BZALDH" + - kegg.reaction: "R01763" + - metanetx.reaction: "MNXR96362" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4181 - - name: Manganese-transporting ATPase 1 (EC 3.6.3.-) + - id: "r_4181" + - name: "Manganese-transporting ATPase 1 (EC 3.6.3.-)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -92182,14 +93326,14 @@ - s_3802: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YEL031W + - gene_reaction_rule: "YEL031W" - annotation: !!omap - - ec-code: 3.6.3.- - - sbo: SBO:0000655 + - ec-code: "3.6.3.-" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4183 - - name: D-Mannitol:NAD+ 2-oxidoreductase + - id: "r_4183" + - name: "D-Mannitol:NAD+ 2-oxidoreductase" - metabolites: !!omap - s_0553: 1 - s_0794: 1 @@ -92198,34 +93342,34 @@ - s_3805: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YEL070W or YNR073C + - gene_reaction_rule: "YEL070W or YNR073C" - annotation: !!omap - - ec-code: 1.1.1.- - - bigg.reaction: MNLDH2 - - kegg.reaction: R00868 - - metanetx.reaction: MNXR101675 - - sbo: SBO:0000176 + - ec-code: "1.1.1.-" + - bigg.reaction: "MNLDH2" + - kegg.reaction: "R00868" + - metanetx.reaction: "MNXR101675" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4184 - - name: 4-hydroxy-4-methyl-2-oxoglutarate pyruvate-lyase (pyruvate-forming) + - id: "r_4184" + - name: "4-hydroxy-4-methyl-2-oxoglutarate pyruvate-lyase (pyruvate-forming)" - metabolites: !!omap - s_1399: 2 - s_3806: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER010C + - gene_reaction_rule: "YER010C" - annotation: !!omap - ec-code: - - 4.1.3.17 - - 4.1.1.3 - - kegg.reaction: R00008 - - metanetx.reaction: MNXR106336 - - sbo: SBO:0000176 + - "4.1.3.17" + - "4.1.1.3" + - kegg.reaction: "R00008" + - metanetx.reaction: "MNXR106336" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4185 - - name: oxaloacetate carboxy-lyase (pyruvate-forming) + - id: "r_4185" + - name: "oxaloacetate carboxy-lyase (pyruvate-forming)" - metabolites: !!omap - s_0456: 1 - s_0794: -1 @@ -92233,19 +93377,19 @@ - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER010C + - gene_reaction_rule: "YER010C" - annotation: !!omap - ec-code: - - 4.1.3.17 - - 4.1.1.3 - - bigg.reaction: OAADC - - kegg.reaction: R00217 - - metanetx.reaction: MNXR102097 - - sbo: SBO:0000176 + - "4.1.3.17" + - "4.1.1.3" + - bigg.reaction: "OAADC" + - kegg.reaction: "R00217" + - metanetx.reaction: "MNXR102097" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4186 - - name: L-methionine:thioredoxin-disulfide S-oxidoreductase + - id: "r_4186" + - name: "L-methionine:thioredoxin-disulfide S-oxidoreductase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -92255,16 +93399,16 @@ - s_3807: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YER042W + - gene_reaction_rule: "YER042W" - annotation: !!omap - - ec-code: 1.8.4.11 - - kegg.reaction: R07606 - - metanetx.reaction: MNXR101484 - - sbo: SBO:0000176 + - ec-code: "1.8.4.11" + - kegg.reaction: "R07606" + - metanetx.reaction: "MNXR101484" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4187 - - name: L-proline:tRNA(Pro) ligase (AMP-forming) + - id: "r_4187" + - name: "L-proline:tRNA(Pro) ligase (AMP-forming)" - metabolites: !!omap - s_0424: 1 - s_0437: -1 @@ -92274,48 +93418,48 @@ - s_3809: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER087W + - gene_reaction_rule: "YER087W" - annotation: !!omap - - ec-code: 6.1.1.15 - - kegg.reaction: R03661 - - metanetx.reaction: MNXR103208 - - sbo: SBO:0000176 + - ec-code: "6.1.1.15" + - kegg.reaction: "R03661" + - metanetx.reaction: "MNXR103208" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4188 - - name: Glutathione-specific gamma-glutamylcyclotransferase (Gamma-GCG) (EC 4.3.2.-) + - id: "r_4188" + - name: "Glutathione-specific gamma-glutamylcyclotransferase (Gamma-GCG) (EC 4.3.2.-)" - metabolites: !!omap - s_0750: -1 - s_0983: 1 - s_3810: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YER163C + - gene_reaction_rule: "YER163C" - annotation: !!omap - - ec-code: 4.3.2.- - - bigg.reaction: GGCLUT2 - - kegg.reaction: R11861 - - sbo: SBO:0000176 + - ec-code: "4.3.2.-" + - bigg.reaction: "GGCLUT2" + - kegg.reaction: "R11861" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4189 - - name: 4a-hydroxytetrahydrobiopterin hydro-lyase + - id: "r_4189" + - name: "4a-hydroxytetrahydrobiopterin hydro-lyase" - metabolites: !!omap - s_0807: 1 - s_3811: -1 - s_3812: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHL018W + - gene_reaction_rule: "YHL018W" - annotation: !!omap - - ec-code: 4.2.1.96 - - kegg.reaction: R04734 - - metanetx.reaction: MNXR143540 - - sbo: SBO:0000176 + - ec-code: "4.2.1.96" + - kegg.reaction: "R04734" + - metanetx.reaction: "MNXR143540" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4190 - - name: superoxide:superoxide oxidoreductase + - id: "r_4190" + - name: "superoxide:superoxide oxidoreductase" - metabolites: !!omap - s_0799: -2 - s_0838: 1 @@ -92323,17 +93467,17 @@ - s_3813: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR008C + - gene_reaction_rule: "YHR008C" - annotation: !!omap - - ec-code: 1.15.1.1 - - bigg.reaction: SPODMm - - kegg.reaction: R00275 - - metanetx.reaction: MNXR104498 - - sbo: SBO:0000176 + - ec-code: "1.15.1.1" + - bigg.reaction: "SPODMm" + - kegg.reaction: "R00275" + - metanetx.reaction: "MNXR104498" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4191 - - name: 2-Deoxy-D-glucose 6-phosphate phosphohydrolase + - id: "r_4191" + - name: "2-Deoxy-D-glucose 6-phosphate phosphohydrolase" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -92341,17 +93485,17 @@ - s_3815: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR043C or YHR044C + - gene_reaction_rule: "YHR043C or YHR044C" - annotation: !!omap - - ec-code: 3.1.3.68 - - bigg.reaction: 2DOXG6PP - - kegg.reaction: R02587 - - metanetx.reaction: MNXR94794 - - sbo: SBO:0000176 + - ec-code: "3.1.3.68" + - bigg.reaction: "2DOXG6PP" + - kegg.reaction: "R02587" + - metanetx.reaction: "MNXR94794" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4192 - - name: Cytochrome c lysine N-methyltransferase 1 (EC 2.1.1.59) + - id: "r_4192" + - name: "Cytochrome c lysine N-methyltransferase 1 (EC 2.1.1.59)" - metabolites: !!omap - s_0794: 1 - s_1413: 1 @@ -92360,16 +93504,16 @@ - s_3817: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR109W + - gene_reaction_rule: "YHR109W" - annotation: !!omap - - ec-code: 2.1.1.59 - - kegg.reaction: R03875 - - metanetx.reaction: MNXR108494 - - sbo: SBO:0000176 + - ec-code: "2.1.1.59" + - kegg.reaction: "R03875" + - metanetx.reaction: "MNXR108494" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4193 - - name: S-Adenosyl-L-methionine:histone-L-lysine N6-methyltransferase + - id: "r_4193" + - name: "S-Adenosyl-L-methionine:histone-L-lysine N6-methyltransferase" - metabolites: !!omap - s_0800: 1 - s_3818: -1 @@ -92378,40 +93522,40 @@ - s_3821: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR119W or YDR440W or YJL168C + - gene_reaction_rule: "YHR119W or YDR440W or YJL168C" - annotation: !!omap - - ec-code: 2.1.1.43 - - kegg.reaction: R03938 - - metanetx.reaction: MNXR108541 - - sbo: SBO:0000176 + - ec-code: "2.1.1.43" + - kegg.reaction: "R03938" + - metanetx.reaction: "MNXR108541" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4194 - - name: Zinc transporter YKE4 + - id: "r_4194" + - name: "Zinc transporter YKE4" - metabolites: !!omap - s_3822: -1 - s_3823: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL023C + - gene_reaction_rule: "YIL023C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4195 - - name: Zinc transporter YKE4 + - id: "r_4195" + - name: "Zinc transporter YKE4" - metabolites: !!omap - s_4026: -1 - s_4027: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR243C or YOR316C + - gene_reaction_rule: "YMR243C or YOR316C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4196 - - name: NADH:ferricytochrome-b5 oxidoreductase + - id: "r_4196" + - name: "NADH:ferricytochrome-b5 oxidoreductase" - metabolites: !!omap - s_2783: 1 - s_2818: -1 @@ -92419,16 +93563,16 @@ - s_4210: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL043C or YML125C + - gene_reaction_rule: "YIL043C or YML125C" - annotation: !!omap - - ec-code: 1.6.2.2 - - kegg.reaction: R00100 - - metanetx.reaction: MNXR106388 - - sbo: SBO:0000176 + - ec-code: "1.6.2.2" + - kegg.reaction: "R00100" + - metanetx.reaction: "MNXR106388" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4197 - - name: NADH-cytochrome b5 reductase 1 (EC 1.6.2.2) (Microsomal cytochrome b reductase) (P35) + - id: "r_4197" + - name: "NADH-cytochrome b5 reductase 1 (EC 1.6.2.2) (Microsomal cytochrome b reductase) (P35)" - metabolites: !!omap - s_0799: 1 - s_1200: 1 @@ -92437,17 +93581,17 @@ - s_3827: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIL043C or YKL150W or YML125C + - gene_reaction_rule: "YIL043C or YKL150W or YML125C" - annotation: !!omap - - ec-code: 1.6.2.2 - - bigg.reaction: FCYTOB5OXR_m - - kegg.reaction: R00100 - - metanetx.reaction: MNXR106388 - - sbo: SBO:0000176 + - ec-code: "1.6.2.2" + - bigg.reaction: "FCYTOB5OXR_m" + - kegg.reaction: "R00100" + - metanetx.reaction: "MNXR106388" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4198 - - name: Benzil reductase ((S)-benzoin forming) IRC24 (EC 1.1.1.320) (Increased recombination centers protein 24) + - id: "r_4198" + - name: "Benzil reductase ((S)-benzoin forming) IRC24 (EC 1.1.1.320) (Increased recombination centers protein 24)" - metabolites: !!omap - s_0794: 1 - s_1207: -1 @@ -92456,14 +93600,14 @@ - s_3829: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIR036C + - gene_reaction_rule: "YIR036C" - annotation: !!omap - - ec-code: 1.1.1.320 - - sbo: SBO:0000176 + - ec-code: "1.1.1.320" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4199 - - name: Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I) + - id: "r_4199" + - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" - metabolites: !!omap - s_3830: -1 - s_3831: -1 @@ -92471,16 +93615,16 @@ - s_3833: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YIR038C + - gene_reaction_rule: "YIR038C" - annotation: !!omap - - ec-code: 2.5.1.18 - - kegg.reaction: R03522 - - metanetx.reaction: MNXR125877 - - sbo: SBO:0000176 + - ec-code: "2.5.1.18" + - kegg.reaction: "R03522" + - metanetx.reaction: "MNXR125877" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4200 - - name: Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I) + - id: "r_4200" + - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" - metabolites: !!omap - s_0750: -1 - s_3834: -1 @@ -92488,16 +93632,16 @@ - s_3836: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR251W or YKR076W + - gene_reaction_rule: "YMR251W or YKR076W" - annotation: !!omap - - ec-code: 2.5.1.18 - - kegg.reaction: R03522 - - metanetx.reaction: MNXR125877 - - sbo: SBO:0000176 + - ec-code: "2.5.1.18" + - kegg.reaction: "R03522" + - metanetx.reaction: "MNXR125877" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4201 - - name: Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I) + - id: "r_4201" + - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" - metabolites: !!omap - s_0752: -1 - s_4028: -1 @@ -92505,16 +93649,16 @@ - s_4030: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLL060C + - gene_reaction_rule: "YLL060C" - annotation: !!omap - - ec-code: 2.5.1.18 - - kegg.reaction: R03522 - - metanetx.reaction: MNXR125877 - - sbo: SBO:0000176 + - ec-code: "2.5.1.18" + - kegg.reaction: "R03522" + - metanetx.reaction: "MNXR125877" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4202 - - name: L-methionine:oxidized-thioredoxin S-oxidoreductase + - id: "r_4202" + - name: "L-methionine:oxidized-thioredoxin S-oxidoreductase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -92524,17 +93668,17 @@ - s_3837: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL069W + - gene_reaction_rule: "YKL069W" - annotation: !!omap - - ec-code: 1.8.4.14 - - bigg.reaction: METSOXR1 - - kegg.reaction: R02025 - - metanetx.reaction: MNXR101484 - - sbo: SBO:0000176 + - ec-code: "1.8.4.14" + - bigg.reaction: "METSOXR1" + - kegg.reaction: "R02025" + - metanetx.reaction: "MNXR101484" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4203 - - name: Vacuolar aminopeptidase 1 (EC 3.4.11.22) (Aminopeptidase yscI) (Leucine aminopeptidase IV) (LAPIV) (Lysosomal aminopeptidase III) (Polypeptidase) (Vacuolar aminopeptidase I) + - id: "r_4203" + - name: "Vacuolar aminopeptidase 1 (EC 3.4.11.22) (Aminopeptidase yscI) (Leucine aminopeptidase IV) (LAPIV) (Lysosomal aminopeptidase III) (Polypeptidase) (Vacuolar aminopeptidase I)" - metabolites: !!omap - s_0810: -1 - s_3759: 1 @@ -92542,14 +93686,14 @@ - s_3839: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL103C + - gene_reaction_rule: "YKL103C" - annotation: !!omap - - ec-code: 3.4.11.22 - - sbo: SBO:0000176 + - ec-code: "3.4.11.22" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4204 - - name: Vacuolar aminopeptidase 1 (EC 3.4.11.22) (Aminopeptidase yscI) (Leucine aminopeptidase IV) (LAPIV) (Lysosomal aminopeptidase III) (Polypeptidase) (Vacuolar aminopeptidase I) + - id: "r_4204" + - name: "Vacuolar aminopeptidase 1 (EC 3.4.11.22) (Aminopeptidase yscI) (Leucine aminopeptidase IV) (LAPIV) (Lysosomal aminopeptidase III) (Polypeptidase) (Vacuolar aminopeptidase I)" - metabolites: !!omap - s_0810: -1 - s_1024: 1 @@ -92557,14 +93701,14 @@ - s_3840: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL103C + - gene_reaction_rule: "YKL103C" - annotation: !!omap - - ec-code: 3.4.11.22 - - sbo: SBO:0000176 + - ec-code: "3.4.11.22" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4205 - - name: 5-oxo-L-proline amidohydrolase (ATP-hydrolysing) + - id: "r_4205" + - name: "5-oxo-L-proline amidohydrolase (ATP-hydrolysing)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -92575,33 +93719,33 @@ - s_3810: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YKL215C + - gene_reaction_rule: "YKL215C" - annotation: !!omap - - ec-code: 3.5.2.9 - - bigg.reaction: OPAH - - kegg.reaction: R00251 - - metanetx.reaction: MNXR138674 - - sbo: SBO:0000176 + - ec-code: "3.5.2.9" + - bigg.reaction: "OPAH" + - kegg.reaction: "R00251" + - metanetx.reaction: "MNXR138674" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4206 - - name: threo-3-hydroxy-L-aspartate ammonia-lyase + - id: "r_4206" + - name: "threo-3-hydroxy-L-aspartate ammonia-lyase" - metabolites: !!omap - s_0419: 1 - s_1271: 1 - s_3841: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKL218C + - gene_reaction_rule: "YKL218C" - annotation: !!omap - - ec-code: 4.3.1.16 - - kegg.reaction: R05758 - - metanetx.reaction: MNXR109814 - - sbo: SBO:0000176 + - ec-code: "4.3.1.16" + - kegg.reaction: "R05758" + - metanetx.reaction: "MNXR109814" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4207 - - name: Glutathione S-transferase omega-like 2 (EC 2.5.1.18) (Extracellular mutant protein 4) (Glutathione-dependent dehydroascorbate reductase) (EC 1.8.5.1) + - id: "r_4207" + - name: "Glutathione S-transferase omega-like 2 (EC 2.5.1.18) (Extracellular mutant protein 4) (Glutathione-dependent dehydroascorbate reductase) (EC 1.8.5.1)" - metabolites: !!omap - s_3842: -1 - s_3843: -1 @@ -92609,16 +93753,16 @@ - s_3845: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR154C + - gene_reaction_rule: "YGR154C" - annotation: !!omap - - ec-code: 2.5.1.18 - - kegg.reaction: R03522 - - metanetx.reaction: MNXR125877 - - sbo: SBO:0000176 + - ec-code: "2.5.1.18" + - kegg.reaction: "R03522" + - metanetx.reaction: "MNXR125877" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4208 - - name: glutathione:dehydroascorbate oxidoreductase + - id: "r_4208" + - name: "glutathione:dehydroascorbate oxidoreductase" - metabolites: !!omap - s_0750: -2 - s_0754: 1 @@ -92626,19 +93770,19 @@ - s_3847: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKR076W + - gene_reaction_rule: "YKR076W" - annotation: !!omap - ec-code: - - 2.5.1.18 - - 1.8.5.1 - - bigg.reaction: GTHDH - - kegg.reaction: R01108 - - metanetx.reaction: MNXR138490 - - sbo: SBO:0000176 + - "2.5.1.18" + - "1.8.5.1" + - bigg.reaction: "GTHDH" + - kegg.reaction: "R01108" + - metanetx.reaction: "MNXR138490" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4209 - - name: Glutathione S-transferase omega-like 2 (EC 2.5.1.18) (Extracellular mutant protein 4) (Glutathione-dependent dehydroascorbate reductase) (EC 1.8.5.1) + - id: "r_4209" + - name: "Glutathione S-transferase omega-like 2 (EC 2.5.1.18) (Extracellular mutant protein 4) (Glutathione-dependent dehydroascorbate reductase) (EC 1.8.5.1)" - metabolites: !!omap - s_3843: -2 - s_3848: -1 @@ -92646,34 +93790,34 @@ - s_3850: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR154C + - gene_reaction_rule: "YGR154C" - annotation: !!omap - ec-code: - - 2.5.1.18 - - 1.8.5.1 - - kegg.reaction: R01108 - - metanetx.reaction: MNXR138490 - - sbo: SBO:0000176 + - "2.5.1.18" + - "1.8.5.1" + - kegg.reaction: "R01108" + - metanetx.reaction: "MNXR138490" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4210 - - name: urea hydro-lyase (cyanamide-forming) + - id: "r_4210" + - name: "urea hydro-lyase (cyanamide-forming)" - metabolites: !!omap - s_0803: 1 - s_1552: -1 - s_3851: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YFL061W or YNL335W + - gene_reaction_rule: "YFL061W or YNL335W" - annotation: !!omap - - ec-code: 4.2.1.69 - - kegg.reaction: R00778 - - metanetx.reaction: MNXR106683 - - sbo: SBO:0000176 + - ec-code: "4.2.1.69" + - kegg.reaction: "R00778" + - metanetx.reaction: "MNXR106683" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4211 - - name: D-ribose 5-phosphate,D-glyceraldehyde 3-phosphate pyridoxal 5-phosphate-lyase (glutamine-hydrolyzing) + - id: "r_4211" + - name: "D-ribose 5-phosphate,D-glyceraldehyde 3-phosphate pyridoxal 5-phosphate-lyase (glutamine-hydrolyzing)" - metabolites: !!omap - s_0764: -1 - s_0794: 1 @@ -92685,18 +93829,18 @@ - s_3852: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YFL060C or YNL334C + - gene_reaction_rule: "YFL060C or YNL334C" - annotation: !!omap - ec-code: - - 4.3.3.6 - - 3.5.1.2 - - kegg.reaction: R10089 - - metanetx.reaction: MNXR140225 - - sbo: SBO:0000176 + - "4.3.3.6" + - "3.5.1.2" + - kegg.reaction: "R10089" + - metanetx.reaction: "MNXR140225" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4212 - - name: D-ribulose 5-phosphate,D-glyceraldehyde 3-phosphate pyridoxal 5-phosphate-lyase + - id: "r_4212" + - name: "D-ribulose 5-phosphate,D-glyceraldehyde 3-phosphate pyridoxal 5-phosphate-lyase" - metabolites: !!omap - s_0577: -1 - s_0764: -1 @@ -92708,19 +93852,19 @@ - s_1393: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YFL059W or YNL333W + - gene_reaction_rule: "YFL059W or YNL333W" - annotation: !!omap - ec-code: - - 4.3.3.6 - - 3.5.1.2 - - bigg.reaction: PYDXS - - kegg.reaction: R07456 - - metanetx.reaction: MNXR103369 - - sbo: SBO:0000176 + - "4.3.3.6" + - "3.5.1.2" + - bigg.reaction: "PYDXS" + - kegg.reaction: "R07456" + - metanetx.reaction: "MNXR103369" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4214 - - name: L-cysteinylglycine dipeptidase + - id: "r_4214" + - name: "L-cysteinylglycine dipeptidase" - metabolites: !!omap - s_0803: -1 - s_0981: 1 @@ -92728,17 +93872,17 @@ - s_1003: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YFR044C + - gene_reaction_rule: "YFR044C" - annotation: !!omap - - ec-code: 3.4.13.- - - bigg.reaction: AMPTASECG - - kegg.reaction: R00899 - - metanetx.reaction: MNXR95828 - - sbo: SBO:0000176 + - ec-code: "3.4.13.-" + - bigg.reaction: "AMPTASECG" + - kegg.reaction: "R00899" + - metanetx.reaction: "MNXR95828" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4215 - - name: Cys-Gly metallodipeptidase DUG1 (EC 3.4.13.-) (Deficient in utilization of glutathione protein 1) (GSH degradosomal complex subunit DUG1) + - id: "r_4215" + - name: "Cys-Gly metallodipeptidase DUG1 (EC 3.4.13.-) (Deficient in utilization of glutathione protein 1) (GSH degradosomal complex subunit DUG1)" - metabolites: !!omap - s_0803: -1 - s_1003: 1 @@ -92746,16 +93890,16 @@ - s_3854: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YFR044C + - gene_reaction_rule: "YFR044C" - annotation: !!omap - - ec-code: 3.4.13.- - - kegg.reaction: R04951 - - metanetx.reaction: MNXR109244 - - sbo: SBO:0000176 + - ec-code: "3.4.13.-" + - kegg.reaction: "R04951" + - metanetx.reaction: "MNXR109244" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4216 - - name: riboflavin-5-phosphate phosphohydrolase + - id: "r_4216" + - name: "riboflavin-5-phosphate phosphohydrolase" - metabolites: !!omap - s_0714: -1 - s_0803: -1 @@ -92763,17 +93907,17 @@ - s_1405: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL024C + - gene_reaction_rule: "YDL024C" - annotation: !!omap - - ec-code: 3.1.3.2 - - bigg.reaction: ACP1_FMN - - kegg.reaction: R00548 - - metanetx.reaction: MNXR95393 - - sbo: SBO:0000176 + - ec-code: "3.1.3.2" + - bigg.reaction: "ACP1_FMN" + - kegg.reaction: "R00548" + - metanetx.reaction: "MNXR95393" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4217 - - name: Fe(II):oxygen oxidoreductase; Fe2+:oxygen oxidoreductase + - id: "r_4217" + - name: "Fe(II):oxygen oxidoreductase; Fe2+:oxygen oxidoreductase" - metabolites: !!omap - s_0799: -4 - s_0807: 2 @@ -92782,16 +93926,16 @@ - s_3855: 4 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL120W + - gene_reaction_rule: "YDL120W" - annotation: !!omap - - ec-code: 1.16.3.1 - - kegg.reaction: R00078 - - metanetx.reaction: MNXR99561 - - sbo: SBO:0000176 + - ec-code: "1.16.3.1" + - kegg.reaction: "R00078" + - metanetx.reaction: "MNXR99561" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4218 - - name: D-aminoacyl-tRNA deacylase (DTD) (EC 3.1.1.96) (D-tyrosyl-tRNA(Tyr) deacylase) (Gly-tRNA(Ala) deacylase) (EC 3.1.1.-) + - id: "r_4218" + - name: "D-aminoacyl-tRNA deacylase (DTD) (EC 3.1.1.96) (D-tyrosyl-tRNA(Tyr) deacylase) (Gly-tRNA(Ala) deacylase) (EC 3.1.1.-)" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -92800,16 +93944,16 @@ - s_3856: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL219W + - gene_reaction_rule: "YDL219W" - annotation: !!omap - ec-code: - - 3.1.1.96 - - 3.1.1.- - - sbo: SBO:0000176 + - "3.1.1.96" + - "3.1.1.-" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4219 - - name: D-aminoacyl-tRNA deacylase (DTD) (EC 3.1.1.96) (D-tyrosyl-tRNA(Tyr) deacylase) (Gly-tRNA(Ala) deacylase) (EC 3.1.1.-) + - id: "r_4219" + - name: "D-aminoacyl-tRNA deacylase (DTD) (EC 3.1.1.96) (D-tyrosyl-tRNA(Tyr) deacylase) (Gly-tRNA(Ala) deacylase) (EC 3.1.1.-)" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -92818,16 +93962,16 @@ - s_3858: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL219W + - gene_reaction_rule: "YDL219W" - annotation: !!omap - ec-code: - - 3.1.1.96 - - 3.1.1.- - - sbo: SBO:0000176 + - "3.1.1.96" + - "3.1.1.-" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4220 - - name: 4-nitrophenyl phosphate phosphohydrolase + - id: "r_4220" + - name: "4-nitrophenyl phosphate phosphohydrolase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -92836,16 +93980,16 @@ - s_3860: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL236W + - gene_reaction_rule: "YDL236W" - annotation: !!omap - - ec-code: 3.1.3.41 - - kegg.reaction: R03024 - - metanetx.reaction: MNXR107896 - - sbo: SBO:0000176 + - ec-code: "3.1.3.41" + - kegg.reaction: "R03024" + - metanetx.reaction: "MNXR107896" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4221 - - name: D-Iditol:NAD+ 2-oxidoreductase + - id: "r_4221" + - name: "D-Iditol:NAD+ 2-oxidoreductase" - metabolites: !!omap - s_0794: 1 - s_1043: 1 @@ -92854,17 +93998,17 @@ - s_3861: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL246C + - gene_reaction_rule: "YDL246C" - annotation: !!omap - - ec-code: 1.1.1.14 - - bigg.reaction: RE1317C - - kegg.reaction: R02896 - - metanetx.reaction: MNXR107809 - - sbo: SBO:0000176 + - ec-code: "1.1.1.14" + - bigg.reaction: "RE1317C" + - kegg.reaction: "R02896" + - metanetx.reaction: "MNXR107809" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4222 - - name: ATP:alpha-D-galactose 1-phosphotransferase + - id: "r_4222" + - name: "ATP:alpha-D-galactose 1-phosphotransferase" - metabolites: !!omap - s_0394: 1 - s_0410: 1 @@ -92873,16 +94017,16 @@ - s_3862: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR009W + - gene_reaction_rule: "YDR009W" - annotation: !!omap - - bigg.reaction: GALK2 - - kegg.reaction: R01092 - - metanetx.reaction: MNXR99985 - - sbo: SBO:0000176 + - bigg.reaction: "GALK2" + - kegg.reaction: "R01092" + - metanetx.reaction: "MNXR99985" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4223 - - name: 3-Hydroxy-2-methylpropanoyl-CoA hydrolase + - id: "r_4223" + - name: "3-Hydroxy-2-methylpropanoyl-CoA hydrolase" - metabolites: !!omap - s_0532: 1 - s_0799: 1 @@ -92891,16 +94035,16 @@ - s_3864: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR036C + - gene_reaction_rule: "YDR036C" - annotation: !!omap - - ec-code: 3.1.2.4 - - kegg.reaction: R03352 - - metanetx.reaction: MNXR108112 - - sbo: SBO:0000176 + - ec-code: "3.1.2.4" + - kegg.reaction: "R03352" + - metanetx.reaction: "MNXR108112" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4224 - - name: Sodium transport ATPase 5 (EC 3.6.3.7) + - id: "r_4224" + - name: "Sodium transport ATPase 5 (EC 3.6.3.7)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -92911,15 +94055,15 @@ - s_1438: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR038C or YDR039C or YDR040C + - gene_reaction_rule: "YDR038C or YDR039C or YDR040C" - annotation: !!omap - - ec-code: 3.6.3.7 - - bigg.reaction: NAabcO - - sbo: SBO:0000655 + - ec-code: "3.6.3.7" + - bigg.reaction: "NAabcO" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4225 - - name: Broad-range acid phosphatase DET1 (EC 3.1.3.-) (Decreased ergosterol transport protein 1) + - id: "r_4225" + - name: "Broad-range acid phosphatase DET1 (EC 3.1.3.-) (Decreased ergosterol transport protein 1)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -92930,14 +94074,14 @@ - s_3866: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR051C or YOL075C + - gene_reaction_rule: "YDR051C or YOL075C" - annotation: !!omap - - ec-code: 3.1.3.- - - sbo: SBO:0000655 + - ec-code: "3.1.3.-" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4226 - - name: L-Alanine:2-oxoglutarate aminotransferase + - id: "r_4226" + - name: "L-Alanine:2-oxoglutarate aminotransferase" - metabolites: !!omap - s_0180: -1 - s_0955: -1 @@ -92945,17 +94089,17 @@ - s_1399: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR111C + - gene_reaction_rule: "YDR111C" - annotation: !!omap - - ec-code: 2.6.1.2 - - bigg.reaction: ALATA_L - - kegg.reaction: R00258 - - metanetx.reaction: MNXR95698 - - sbo: SBO:0000176 + - ec-code: "2.6.1.2" + - bigg.reaction: "ALATA_L" + - kegg.reaction: "R00258" + - metanetx.reaction: "MNXR95698" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4227 - - name: 2-phenylacetamide amidohydrolase + - id: "r_4227" + - name: "2-phenylacetamide amidohydrolase" - metabolites: !!omap - s_0419: 1 - s_0803: -1 @@ -92963,17 +94107,17 @@ - s_3867: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR242W + - gene_reaction_rule: "YDR242W" - annotation: !!omap - - ec-code: 3.5.1.4 - - bigg.reaction: AMID2 - - kegg.reaction: R02540 - - metanetx.reaction: MNXR95813 - - sbo: SBO:0000176 + - ec-code: "3.5.1.4" + - bigg.reaction: "AMID2" + - kegg.reaction: "R02540" + - metanetx.reaction: "MNXR95813" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4228 - - name: Indole-3-acetamide amidohydrolase + - id: "r_4228" + - name: "Indole-3-acetamide amidohydrolase" - metabolites: !!omap - s_0419: 1 - s_0803: -1 @@ -92981,17 +94125,17 @@ - s_3868: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR242W + - gene_reaction_rule: "YDR242W" - annotation: !!omap - - ec-code: 3.5.1.4 - - bigg.reaction: AMID3 - - kegg.reaction: R03096 - - metanetx.reaction: MNXR95814 - - sbo: SBO:0000176 + - ec-code: "3.5.1.4" + - bigg.reaction: "AMID3" + - kegg.reaction: "R03096" + - metanetx.reaction: "MNXR95814" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4230 - - name: Probable amidase (EC 3.5.1.4) + - id: "r_4230" + - name: "Probable amidase (EC 3.5.1.4)" - metabolites: !!omap - s_0419: -1 - s_0803: 1 @@ -92999,17 +94143,17 @@ - s_3872: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR242W + - gene_reaction_rule: "YDR242W" - annotation: !!omap - - ec-code: 3.5.1.4 - - bigg.reaction: AMID5 - - kegg.reaction: R05551 - - metanetx.reaction: MNXR95816 - - sbo: SBO:0000176 + - ec-code: "3.5.1.4" + - bigg.reaction: "AMID5" + - kegg.reaction: "R05551" + - metanetx.reaction: "MNXR95816" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4231 - - name: Acylamide aminohydrolase + - id: "r_4231" + - name: "Acylamide aminohydrolase" - metabolites: !!omap - s_0419: 1 - s_0803: -1 @@ -93017,14 +94161,14 @@ - s_3874: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR242W + - gene_reaction_rule: "YDR242W" - annotation: !!omap - - ec-code: 3.5.1.4 - - sbo: SBO:0000176 + - ec-code: "3.5.1.4" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4232 - - name: ATP:D-Gluconate 6-phosphotransferase + - id: "r_4232" + - name: "ATP:D-Gluconate 6-phosphotransferase" - metabolites: !!omap - s_0340: 1 - s_0394: 1 @@ -93033,17 +94177,17 @@ - s_3875: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR248C + - gene_reaction_rule: "YDR248C" - annotation: !!omap - - ec-code: 2.7.1.12 - - bigg.reaction: GNK - - kegg.reaction: R01737 - - metanetx.reaction: MNXR100390 - - sbo: SBO:0000176 + - ec-code: "2.7.1.12" + - bigg.reaction: "GNK" + - kegg.reaction: "R01737" + - metanetx.reaction: "MNXR100390" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4233 - - name: S-Adenosyl-L-methionine:protein-C-terminal-S-farnesyl-L-cysteine O-methyltransferase + - id: "r_4233" + - name: "S-Adenosyl-L-methionine:protein-C-terminal-S-farnesyl-L-cysteine O-methyltransferase" - metabolites: !!omap - s_1413: 1 - s_1416: -1 @@ -93051,16 +94195,16 @@ - s_3877: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR410C + - gene_reaction_rule: "YDR410C" - annotation: !!omap - - ec-code: 2.1.1.100 - - kegg.reaction: R04496 - - metanetx.reaction: MNXR108926 - - sbo: SBO:0000176 + - ec-code: "2.1.1.100" + - kegg.reaction: "R04496" + - metanetx.reaction: "MNXR108926" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4234 - - name: Phosphatidylinositol N-acetylglucosaminyltransferase subunit GPI19 (GPI-GlcNAc transferase complex subunit GPI19) (GPI-GnT subunit GPI19) (EC 2.4.1.198) + - id: "r_4234" + - name: "Phosphatidylinositol N-acetylglucosaminyltransferase subunit GPI19 (GPI-GlcNAc transferase complex subunit GPI19) (GPI-GnT subunit GPI19) (EC 2.4.1.198)" - metabolites: !!omap - s_0795: 1 - s_3764: -1 @@ -93069,16 +94213,16 @@ - s_3879: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR437W and YGR216C and YNL038W and YPL076W and YPL175W and YPL096C-A + - gene_reaction_rule: "YDR437W and YGR216C and YNL038W and YPL076W and YPL175W and YPL096C-A" - annotation: !!omap - - ec-code: 2.4.1.198 - - kegg.reaction: R05916 - - metanetx.reaction: MNXR109940 - - sbo: SBO:0000176 + - ec-code: "2.4.1.198" + - kegg.reaction: "R05916" + - metanetx.reaction: "MNXR109940" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4236 - - name: (R)-lactate hydro-lyase + - id: "r_4236" + - name: "(R)-lactate hydro-lyase" - metabolites: !!omap - s_0025: -1 - s_0794: -1 @@ -93086,17 +94230,17 @@ - s_1151: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR533C or YMR322C or YOR391C or YPL280W + - gene_reaction_rule: "YDR533C or YMR322C or YOR391C or YPL280W" - annotation: !!omap - - ec-code: 4.2.1.130 - - bigg.reaction: GLYOX3 - - kegg.reaction: R09796 - - metanetx.reaction: MNXR100354 - - sbo: SBO:0000176 + - ec-code: "4.2.1.130" + - bigg.reaction: "GLYOX3" + - kegg.reaction: "R09796" + - metanetx.reaction: "MNXR100354" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4237 - - name: Calcium-transporting ATPase 2 (EC 3.6.3.8) (Vacuolar Ca(2+)-ATPase) + - id: "r_4237" + - name: "Calcium-transporting ATPase 2 (EC 3.6.3.8) (Vacuolar Ca(2+)-ATPase)" - metabolites: !!omap - s_0802: 1 - s_0810: -1 @@ -93107,14 +94251,14 @@ - s_3883: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL006W + - gene_reaction_rule: "YGL006W" - annotation: !!omap - - ec-code: 3.6.3.8 - - sbo: SBO:0000655 + - ec-code: "3.6.3.8" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4238 - - name: Calcium-transporting ATPase 2 (EC 3.6.3.8) (Golgi Ca(2+)-ATPase) + - id: "r_4238" + - name: "Calcium-transporting ATPase 2 (EC 3.6.3.8) (Golgi Ca(2+)-ATPase)" - metabolites: !!omap - s_0797: 1 - s_0806: -1 @@ -93125,14 +94269,14 @@ - s_4198: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL167C + - gene_reaction_rule: "YGL167C" - annotation: !!omap - - ec-code: 3.6.3.8 - - sbo: SBO:0000655 + - ec-code: "3.6.3.8" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4239 - - name: L-arginyl-tRNA(Arg):protein arginyltransferase + - id: "r_4239" + - name: "L-arginyl-tRNA(Arg):protein arginyltransferase" - metabolites: !!omap - s_0428: -1 - s_0794: 1 @@ -93141,16 +94285,16 @@ - s_3885: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL017W + - gene_reaction_rule: "YGL017W" - annotation: !!omap - - ec-code: 2.3.2.8 - - kegg.reaction: R03862 - - metanetx.reaction: MNXR108483 - - sbo: SBO:0000176 + - ec-code: "2.3.2.8" + - kegg.reaction: "R03862" + - metanetx.reaction: "MNXR108483" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4240 - - name: Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3 (Oligosaccharyl transferase subunit STT3) (EC 2.4.99.18) + - id: "r_4240" + - name: "Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3 (Oligosaccharyl transferase subunit STT3) (EC 2.4.99.18)" - metabolites: !!omap - s_0795: 1 - s_3886: -1 @@ -93159,16 +94303,16 @@ - s_3889: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL022W + - gene_reaction_rule: "YGL022W" - annotation: !!omap - - ec-code: 2.4.99.18 - - kegg.reaction: R05976 - - metanetx.reaction: MNXR109968 - - sbo: SBO:0000176 + - ec-code: "2.4.99.18" + - kegg.reaction: "R05976" + - metanetx.reaction: "MNXR109968" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4241 - - name: Mannosyl-oligosaccharide glucosidase (EC 3.2.1.106) (Processing A-glucosidase I) (Glucosidase I) + - id: "r_4241" + - name: "Mannosyl-oligosaccharide glucosidase (EC 3.2.1.106) (Processing A-glucosidase I) (Glucosidase I)" - metabolites: !!omap - s_0804: -1 - s_3771: 1 @@ -93176,16 +94320,16 @@ - s_3889: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL027C + - gene_reaction_rule: "YGL027C" - annotation: !!omap - - ec-code: 3.2.1.106 - - kegg.reaction: R05979 - - metanetx.reaction: MNXR109970 - - sbo: SBO:0000176 + - ec-code: "3.2.1.106" + - kegg.reaction: "R05979" + - metanetx.reaction: "MNXR109970" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4242 - - name: Initiation-specific alpha-1,6-mannosyltransferase (EC 2.4.1.232) (Outer chain elongation protein 1) + - id: "r_4242" + - name: "Initiation-specific alpha-1,6-mannosyltransferase (EC 2.4.1.232) (Outer chain elongation protein 1)" - metabolites: !!omap - s_0795: 1 - s_3890: -1 @@ -93194,16 +94338,16 @@ - s_3893: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL038C + - gene_reaction_rule: "YGL038C" - annotation: !!omap - - ec-code: 2.4.1.232 - - kegg.reaction: R08599 - - metanetx.reaction: MNXR112120 - - sbo: SBO:0000176 + - ec-code: "2.4.1.232" + - kegg.reaction: "R08599" + - metanetx.reaction: "MNXR112120" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4243 - - name: Alpha-1,3/1,6-mannosyltransferase ALG2 (EC 2.4.1.132) (EC 2.4.1.257) (Asparagine-linked glycosylation protein 2) (GDP-Man:Man(1)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase) (GDP-Man:Man(1)GlcNAc(2)-PP-dolichol mannosyltransferase) (GDP-Man:Man(2)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase) + - id: "r_4243" + - name: "Alpha-1,3/1,6-mannosyltransferase ALG2 (EC 2.4.1.132) (EC 2.4.1.257) (Asparagine-linked glycosylation protein 2) (GDP-Man:Man(1)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase) (GDP-Man:Man(1)GlcNAc(2)-PP-dolichol mannosyltransferase) (GDP-Man:Man(2)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase)" - metabolites: !!omap - s_0795: 1 - s_3890: -1 @@ -93212,18 +94356,18 @@ - s_3895: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL065C + - gene_reaction_rule: "YGL065C" - annotation: !!omap - ec-code: - - 2.4.1.132 - - 2.4.1.257 - - kegg.reaction: R05973 - - metanetx.reaction: MNXR109280 - - sbo: SBO:0000176 + - "2.4.1.132" + - "2.4.1.257" + - kegg.reaction: "R05973" + - metanetx.reaction: "MNXR109280" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4244 - - name: GDP-D-mannose:D-Man-alpha-(1->3)-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-6-mannosyltransferase + - id: "r_4244" + - name: "GDP-D-mannose:D-Man-alpha-(1->3)-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-6-mannosyltransferase" - metabolites: !!omap - s_0795: 1 - s_3890: -1 @@ -93232,18 +94376,18 @@ - s_3896: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL065C + - gene_reaction_rule: "YGL065C" - annotation: !!omap - ec-code: - - 2.4.1.132 - - 2.4.1.257 - - kegg.reaction: R06238 - - metanetx.reaction: MNXR110084 - - sbo: SBO:0000176 + - "2.4.1.132" + - "2.4.1.257" + - kegg.reaction: "R06238" + - metanetx.reaction: "MNXR110084" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4245 - - name: 2-O-(6-phospho-alpha-D-mannosyl)-D-glycerate 6-phosphomannohydrolase + - id: "r_4245" + - name: "2-O-(6-phospho-alpha-D-mannosyl)-D-glycerate 6-phosphomannohydrolase" - metabolites: !!omap - s_0810: -1 - s_3897: -1 @@ -93251,16 +94395,16 @@ - s_3899: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL156W + - gene_reaction_rule: "YGL156W" - annotation: !!omap - - ec-code: 3.2.1.24 - - kegg.reaction: R09645 - - metanetx.reaction: MNXR101397 - - sbo: SBO:0000176 + - ec-code: "3.2.1.24" + - kegg.reaction: "R09645" + - metanetx.reaction: "MNXR101397" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4246 - - name: Alpha-mannosidase (EC 3.2.1.24) (Alpha-D-mannoside mannohydrolase) + - id: "r_4246" + - name: "Alpha-mannosidase (EC 3.2.1.24) (Alpha-D-mannoside mannohydrolase)" - metabolites: !!omap - s_0810: -1 - s_3900: -1 @@ -93268,14 +94412,14 @@ - s_3902: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL156W + - gene_reaction_rule: "YGL156W" - annotation: !!omap - - ec-code: 3.2.1.24 - - sbo: SBO:0000176 + - ec-code: "3.2.1.24" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4247 - - name: ATP:L-threonyl,bicarbonate adenylyltransferase + - id: "r_4247" + - name: "ATP:L-threonyl,bicarbonate adenylyltransferase" - metabolites: !!omap - s_0434: -1 - s_0445: -1 @@ -93285,33 +94429,33 @@ - s_3903: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL169W + - gene_reaction_rule: "YGL169W" - annotation: !!omap - - ec-code: 2.7.7.87 - - kegg.reaction: R10463 - - metanetx.reaction: MNXR113802 - - sbo: SBO:0000176 + - ec-code: "2.7.7.87" + - kegg.reaction: "R10463" + - metanetx.reaction: "MNXR113802" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4248 - - name: D-serine ammonia-lyase + - id: "r_4248" + - name: "D-serine ammonia-lyase" - metabolites: !!omap - s_0419: 1 - s_1399: 1 - s_3904: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL196W + - gene_reaction_rule: "YGL196W" - annotation: !!omap - - ec-code: 4.3.1.18 - - bigg.reaction: SERD_D - - kegg.reaction: R00221 - - metanetx.reaction: MNXR104338 - - sbo: SBO:0000176 + - ec-code: "4.3.1.18" + - bigg.reaction: "SERD_D" + - kegg.reaction: "R00221" + - metanetx.reaction: "MNXR104338" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4249 - - name: O3-acetyl-L-serine:hydrogen-sulfide 2-amino-2-carboxyethyltransferase; O3-acetyl-L-serine acetate-lyase (adding hydrogen sulfide) + - id: "r_4249" + - name: "O3-acetyl-L-serine:hydrogen-sulfide 2-amino-2-carboxyethyltransferase; O3-acetyl-L-serine acetate-lyase (adding hydrogen sulfide)" - metabolites: !!omap - s_0365: 1 - s_3785: 1 @@ -93319,17 +94463,17 @@ - s_3906: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR012W + - gene_reaction_rule: "YGR012W" - annotation: !!omap - - ec-code: 2.5.1.47 - - bigg.reaction: CYSS_m - - kegg.reaction: R00897 - - metanetx.reaction: MNXR97007 - - sbo: SBO:0000176 + - ec-code: "2.5.1.47" + - bigg.reaction: "CYSS_m" + - kegg.reaction: "R00897" + - metanetx.reaction: "MNXR97007" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4250 - - name: Dolichyl-diphosphate phosphohydrolase + - id: "r_4250" + - name: "Dolichyl-diphosphate phosphohydrolase" - metabolites: !!omap - s_0646: 1 - s_0795: -1 @@ -93338,16 +94482,16 @@ - s_3888: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR036C + - gene_reaction_rule: "YGR036C" - annotation: !!omap - - ec-code: 3.6.1.43 - - kegg.reaction: R01004 - - metanetx.reaction: MNXR106783 - - sbo: SBO:0000176 + - ec-code: "3.6.1.43" + - kegg.reaction: "R01004" + - metanetx.reaction: "MNXR106783" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4251 - - name: CTP:phosphatidate cytidyltransferase + - id: "r_4251" + - name: "CTP:phosphatidate cytidyltransferase" - metabolites: !!omap - s_0541: -1 - s_0636: 1 @@ -93356,16 +94500,16 @@ - s_3908: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR046W + - gene_reaction_rule: "YGR046W" - annotation: !!omap - - ec-code: 2.7.7.41 - - kegg.reaction: R01799 - - metanetx.reaction: MNXR107177 - - sbo: SBO:0000176 + - ec-code: "2.7.7.41" + - kegg.reaction: "R01799" + - metanetx.reaction: "MNXR107177" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4252 - - name: Thiamine thiazole synthase (Thiazole biosynthetic enzyme) + - id: "r_4252" + - name: "Thiamine thiazole synthase (Thiazole biosynthetic enzyme)" - metabolites: !!omap - s_0803: 3 - s_1003: -1 @@ -93375,15 +94519,15 @@ - s_3910: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR144W + - gene_reaction_rule: "YGR144W" - annotation: !!omap - - kegg.reaction: R10685 - - metanetx.reaction: MNXR139808 - - sbo: SBO:0000176 + - kegg.reaction: "R10685" + - metanetx.reaction: "MNXR139808" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4253 - - name: dolichyl beta-D-glucosyl phosphate:D-Glc-alpha-(1->3)-D-Glc-alpha-(1->3)-D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,2-glucosyltransferase + - id: "r_4253" + - name: "dolichyl beta-D-glucosyl phosphate:D-Glc-alpha-(1->3)-D-Glc-alpha-(1->3)-D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,2-glucosyltransferase" - metabolites: !!omap - s_0646: 1 - s_0795: -1 @@ -93392,16 +94536,16 @@ - s_3912: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR227W + - gene_reaction_rule: "YGR227W" - annotation: !!omap - - ec-code: 2.4.1.256 - - kegg.reaction: R06264 - - metanetx.reaction: MNXR110098 - - sbo: SBO:0000176 + - ec-code: "2.4.1.256" + - kegg.reaction: "R06264" + - metanetx.reaction: "MNXR110098" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4254 - - name: nitric oxide, NADH2:oxygen oxidoreductase + - id: "r_4254" + - name: "nitric oxide, NADH2:oxygen oxidoreductase" - metabolites: !!omap - s_0794: 1 - s_1198: 1 @@ -93411,17 +94555,17 @@ - s_3914: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR234W + - gene_reaction_rule: "YGR234W" - annotation: !!omap - - ec-code: 1.14.12.17 - - bigg.reaction: NODOx - - kegg.reaction: R05724 - - metanetx.reaction: MNXR101996 - - sbo: SBO:0000176 + - ec-code: "1.14.12.17" + - bigg.reaction: "NODOx" + - kegg.reaction: "R05724" + - metanetx.reaction: "MNXR101996" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4255 - - name: nitric oxide, NADPH2:oxygen oxidoreductase + - id: "r_4255" + - name: "nitric oxide, NADPH2:oxygen oxidoreductase" - metabolites: !!omap - s_0794: 1 - s_1207: 1 @@ -93431,17 +94575,17 @@ - s_3914: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR234W + - gene_reaction_rule: "YGR234W" - annotation: !!omap - - ec-code: 1.14.12.17 - - bigg.reaction: NODOy - - kegg.reaction: R05725 - - metanetx.reaction: MNXR101997 - - sbo: SBO:0000176 + - ec-code: "1.14.12.17" + - bigg.reaction: "NODOy" + - kegg.reaction: "R05725" + - metanetx.reaction: "MNXR101997" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4256 - - name: Putative lipoate-protein ligase A (EC 6.3.1.20) (Altered inheritance rate of mitochondria protein 22) + - id: "r_4256" + - name: "Putative lipoate-protein ligase A (EC 6.3.1.20) (Altered inheritance rate of mitochondria protein 22)" - metabolites: !!omap - s_0434: -1 - s_0633: 1 @@ -93450,16 +94594,16 @@ - s_3916: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL046W + - gene_reaction_rule: "YJL046W" - annotation: !!omap - - ec-code: 6.3.1.20 - - kegg.reaction: R07770 - - metanetx.reaction: MNXR101081 - - sbo: SBO:0000176 + - ec-code: "6.3.1.20" + - kegg.reaction: "R07770" + - metanetx.reaction: "MNXR101081" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4258 - - name: [lipoyl-carrier protein]-L-lysine:lipoate ligase (AMP-forming) + - id: "r_4258" + - name: "[lipoyl-carrier protein]-L-lysine:lipoate ligase (AMP-forming)" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -93469,16 +94613,16 @@ - s_3918: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJL046W + - gene_reaction_rule: "YJL046W" - annotation: !!omap - - ec-code: 6.3.1.20 - - kegg.reaction: R11143 - - metanetx.reaction: MNXR114442 - - sbo: SBO:0000176 + - ec-code: "6.3.1.20" + - kegg.reaction: "R11143" + - metanetx.reaction: "MNXR114442" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4260 - - name: Deaminated glutathione amidase (dGSH amidase) (EC 3.5.1.-) (Nitrilase homolog 1) + - id: "r_4260" + - name: "Deaminated glutathione amidase (dGSH amidase) (EC 3.5.1.-) (Nitrilase homolog 1)" - metabolites: !!omap - s_0180: 1 - s_0803: -1 @@ -93486,15 +94630,15 @@ - s_3923: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL126W + - gene_reaction_rule: "YJL126W" - annotation: !!omap - - ec-code: 3.5.1.- - - kegg.reaction: R12024 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - kegg.reaction: "R12024" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4261 - - name: Deaminated glutathione amidase (dGSH amidase) (EC 3.5.1.-) (Nitrilase homolog 1) + - id: "r_4261" + - name: "Deaminated glutathione amidase (dGSH amidase) (EC 3.5.1.-) (Nitrilase homolog 1)" - metabolites: !!omap - s_0182: 1 - s_0807: -1 @@ -93502,43 +94646,43 @@ - s_3925: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL126W + - gene_reaction_rule: "YJL126W" - annotation: !!omap - - ec-code: 3.5.1.- - - kegg.reaction: R12024 - - sbo: SBO:0000176 + - ec-code: "3.5.1.-" + - kegg.reaction: "R12024" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4262 - - name: citrate hydroxymutase + - id: "r_4262" + - name: "citrate hydroxymutase" - metabolites: !!omap - s_0524: -1 - s_0941: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJL200C + - gene_reaction_rule: "YJL200C" - annotation: !!omap - - ec-code: 4.2.1.- - - bigg.reaction: ACONTm - - kegg.reaction: R01324 - - metanetx.reaction: MNXR95384 - - sbo: SBO:0000176 + - ec-code: "4.2.1.-" + - bigg.reaction: "ACONTm" + - kegg.reaction: "R01324" + - metanetx.reaction: "MNXR95384" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4263 - - name: Anion/proton exchange transporter GEF1 (CLC protein GEF1) (ClC-A) (ClC-Y1) (Voltage-gated chloride channel) [Cleaved into: GEF1 N-terminal; GEF1 C-terminal] + - id: "r_4263" + - name: "Anion/proton exchange transporter GEF1 (CLC protein GEF1) (ClC-A) (ClC-Y1) (Voltage-gated chloride channel) [Cleaved into: GEF1 N-terminal; GEF1 C-terminal]" - metabolites: !!omap - s_3778: 1 - s_3926: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR040W + - gene_reaction_rule: "YJR040W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4264 - - name: succinate:NAD+ oxidoreductase + - id: "r_4264" + - name: "succinate:NAD+ oxidoreductase" - metabolites: !!omap - s_0727: -1 - s_0799: -1 @@ -93547,16 +94691,16 @@ - s_1460: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR051W + - gene_reaction_rule: "YJR051W" - annotation: !!omap - - ec-code: 1.3.1.6 - - kegg.reaction: R00402 - - metanetx.reaction: MNXR106516 - - sbo: SBO:0000176 + - ec-code: "1.3.1.6" + - kegg.reaction: "R00402" + - metanetx.reaction: "MNXR106516" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4265 - - name: nucleoside-triphosphate diphosphohydrolase + - id: "r_4265" + - name: "nucleoside-triphosphate diphosphohydrolase" - metabolites: !!omap - s_0633: 1 - s_0794: 1 @@ -93565,16 +94709,16 @@ - s_3928: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR069C + - gene_reaction_rule: "YJR069C" - annotation: !!omap - - ec-code: 3.6.1.9 - - kegg.reaction: R01532 - - metanetx.reaction: MNXR107043 - - sbo: SBO:0000176 + - ec-code: "3.6.1.9" + - kegg.reaction: "R01532" + - metanetx.reaction: "MNXR107043" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4266 - - name: Inosine triphosphate pyrophosphatase (ITPase) (Inosine triphosphatase) (EC 3.6.1.9) (Hydroxylaminopurine sensitivity protein 1) (Non-canonical purine NTP pyrophosphatase) (Non-standard purine NTP pyrophosphatase) (Nucleoside-triphosphate diphosphatase) (Nucleoside-triphosphate pyrophosphatase) (NTPase) + - id: "r_4266" + - name: "Inosine triphosphate pyrophosphatase (ITPase) (Inosine triphosphatase) (EC 3.6.1.9) (Hydroxylaminopurine sensitivity protein 1) (Non-canonical purine NTP pyrophosphatase) (Non-standard purine NTP pyrophosphatase) (Nucleoside-triphosphate diphosphatase) (Nucleoside-triphosphate pyrophosphatase) (NTPase)" - metabolites: !!omap - s_0584: 1 - s_0586: -1 @@ -93583,15 +94727,15 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR069C + - gene_reaction_rule: "YJR069C" - annotation: !!omap - - ec-code: 3.6.1.9 - - bigg.reaction: NTPP5 - - sbo: SBO:0000176 + - ec-code: "3.6.1.9" + - bigg.reaction: "NTPP5" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4267 - - name: 2'-Deoxyguanosine 5'-triphosphate diphosphohydrolase + - id: "r_4267" + - name: "2'-Deoxyguanosine 5'-triphosphate diphosphohydrolase" - metabolites: !!omap - s_0615: 1 - s_0617: -1 @@ -93600,17 +94744,17 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR069C + - gene_reaction_rule: "YJR069C" - annotation: !!omap - - ec-code: 3.6.1.9 - - bigg.reaction: NTPP1 - - kegg.reaction: R01855 - - metanetx.reaction: MNXR102049 - - sbo: SBO:0000176 + - ec-code: "3.6.1.9" + - bigg.reaction: "NTPP1" + - kegg.reaction: "R01855" + - metanetx.reaction: "MNXR102049" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4268 - - name: dTTP diphosphohydrolase + - id: "r_4268" + - name: "dTTP diphosphohydrolase" - metabolites: !!omap - s_0633: 1 - s_0649: 1 @@ -93619,17 +94763,17 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR069C + - gene_reaction_rule: "YJR069C" - annotation: !!omap - - ec-code: 3.6.1.9 - - bigg.reaction: NTPP7 - - kegg.reaction: R11323 - - metanetx.reaction: MNXR97809 - - sbo: SBO:0000176 + - ec-code: "3.6.1.9" + - bigg.reaction: "NTPP7" + - kegg.reaction: "R11323" + - metanetx.reaction: "MNXR97809" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4269 - - name: Inosine triphosphate pyrophosphatase (ITPase) (Inosine triphosphatase) (EC 3.6.1.9) (Hydroxylaminopurine sensitivity protein 1) (Non-canonical purine NTP pyrophosphatase) (Non-standard purine NTP pyrophosphatase) (Nucleoside-triphosphate diphosphatase) (Nucleoside-triphosphate pyrophosphatase) (NTPase) + - id: "r_4269" + - name: "Inosine triphosphate pyrophosphatase (ITPase) (Inosine triphosphatase) (EC 3.6.1.9) (Hydroxylaminopurine sensitivity protein 1) (Non-canonical purine NTP pyrophosphatase) (Non-standard purine NTP pyrophosphatase) (Nucleoside-triphosphate diphosphatase) (Nucleoside-triphosphate pyrophosphatase) (NTPase)" - metabolites: !!omap - s_0633: 1 - s_0794: 1 @@ -93638,14 +94782,14 @@ - s_3930: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR069C + - gene_reaction_rule: "YJR069C" - annotation: !!omap - - ec-code: 3.6.1.9 - - sbo: SBO:0000176 + - ec-code: "3.6.1.9" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4270 - - name: superoxide:superoxide oxidoreductase + - id: "r_4270" + - name: "superoxide:superoxide oxidoreductase" - metabolites: !!omap - s_0794: -2 - s_0837: 1 @@ -93653,17 +94797,17 @@ - s_3931: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YJR104C + - gene_reaction_rule: "YJR104C" - annotation: !!omap - - ec-code: 1.15.1.1 - - bigg.reaction: SPODM - - kegg.reaction: R00275 - - metanetx.reaction: MNXR104498 - - sbo: SBO:0000176 + - ec-code: "1.15.1.1" + - bigg.reaction: "SPODM" + - kegg.reaction: "R00275" + - metanetx.reaction: "MNXR104498" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4271 - - name: Endoplasmic reticulum mannosyl-oligosaccharide 1,2-alpha-mannosidase (EC 3.2.1.113) (ER alpha-1,2-mannosidase) (Man(9)-alpha-mannosidase) + - id: "r_4271" + - name: "Endoplasmic reticulum mannosyl-oligosaccharide 1,2-alpha-mannosidase (EC 3.2.1.113) (ER alpha-1,2-mannosidase) (Man(9)-alpha-mannosidase)" - metabolites: !!omap - s_0804: -4 - s_3774: -1 @@ -93671,18 +94815,18 @@ - s_3933: 4 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR131W or YLR057W + - gene_reaction_rule: "YJR131W or YLR057W" - annotation: !!omap - ec-code: - - 3.2.1.113 - - 3.2.1.- - - kegg.reaction: R05982 - - metanetx.reaction: MNXR109973 - - sbo: SBO:0000176 + - "3.2.1.113" + - "3.2.1.-" + - kegg.reaction: "R05982" + - metanetx.reaction: "MNXR109973" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4272 - - name: alpha 1,2-mannosyloligosaccharide alpha-D-mannohydrolase + - id: "r_4272" + - name: "alpha 1,2-mannosyloligosaccharide alpha-D-mannohydrolase" - metabolites: !!omap - s_0804: -1 - s_3774: -1 @@ -93690,18 +94834,18 @@ - s_3933: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR131W or YLR057W + - gene_reaction_rule: "YJR131W or YLR057W" - annotation: !!omap - ec-code: - - 3.2.1.113 - - 3.2.1.- - - kegg.reaction: R06722 - - metanetx.reaction: MNXR110483 - - sbo: SBO:0000176 + - "3.2.1.113" + - "3.2.1.-" + - kegg.reaction: "R06722" + - metanetx.reaction: "MNXR110483" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4273 - - name: ethylnitronate:oxygen 2-oxidoreductase (nitrite-forming) + - id: "r_4273" + - name: "ethylnitronate:oxygen 2-oxidoreductase (nitrite-forming)" - metabolites: !!omap - s_0359: 1 - s_0714: 1 @@ -93713,16 +94857,16 @@ - s_3935: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR149W + - gene_reaction_rule: "YJR149W" - annotation: !!omap - - ec-code: 1.13.12.16 - - kegg.reaction: R00025 - - metanetx.reaction: MNXR106342 - - sbo: SBO:0000176 + - ec-code: "1.13.12.16" + - kegg.reaction: "R00025" + - metanetx.reaction: "MNXR106342" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4274 - - name: O-Succinyl-L-homoserine succinate-lyase (deaminating; 2-oxobutanoate-forming) + - id: "r_4274" + - name: "O-Succinyl-L-homoserine succinate-lyase (deaminating; 2-oxobutanoate-forming)" - metabolites: !!omap - s_0178: 1 - s_0419: 1 @@ -93732,17 +94876,17 @@ - s_1458: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLL058W or YML082W + - gene_reaction_rule: "YLL058W or YML082W" - annotation: !!omap - - ec-code: 2.5.1.48 - - bigg.reaction: SHSL4r - - kegg.reaction: R00999 - - metanetx.reaction: MNXR104384 - - sbo: SBO:0000176 + - ec-code: "2.5.1.48" + - bigg.reaction: "SHSL4r" + - kegg.reaction: "R00999" + - metanetx.reaction: "MNXR104384" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4275 - - name: Fe(II):NADP+ oxidoreductase + - id: "r_4275" + - name: "Fe(II):NADP+ oxidoreductase" - metabolites: !!omap - s_0794: 1 - s_0924: 2 @@ -93751,16 +94895,16 @@ - s_3936: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR047C or YKL220C or YLR214W or YNR060W or YOL152W or YOR381W or YOR384W + - gene_reaction_rule: "YLR047C or YKL220C or YLR214W or YNR060W or YOL152W or YOR381W or YOR384W" - annotation: !!omap - - ec-code: 1.16.1.7 - - kegg.reaction: R09541 - - metanetx.reaction: MNXR112960 - - sbo: SBO:0000176 + - ec-code: "1.16.1.7" + - kegg.reaction: "R09541" + - metanetx.reaction: "MNXR112960" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4276 - - name: Fe(II):NADP+ oxidoreductase + - id: "r_4276" + - name: "Fe(II):NADP+ oxidoreductase" - metabolites: !!omap - s_0794: 1 - s_0924: 2 @@ -93769,16 +94913,16 @@ - s_4031: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLL051C + - gene_reaction_rule: "YLL051C" - annotation: !!omap - - ec-code: 1.16.1.7 - - kegg.reaction: R09541 - - metanetx.reaction: MNXR112960 - - sbo: SBO:0000176 + - ec-code: "1.16.1.7" + - kegg.reaction: "R09541" + - metanetx.reaction: "MNXR112960" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4277 - - name: acyl-CoA:sn-glycerol-3-phosphate 1-O-acyltransferase + - id: "r_4277" + - name: "acyl-CoA:sn-glycerol-3-phosphate 1-O-acyltransferase" - metabolites: !!omap - s_0530: 1 - s_3937: -1 @@ -93786,16 +94930,16 @@ - s_3939: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR099C or YPR139C + - gene_reaction_rule: "YLR099C or YPR139C" - annotation: !!omap - - ec-code: 2.3.1.51 - - kegg.reaction: R00851 - - metanetx.reaction: MNXR106715 - - sbo: SBO:0000176 + - ec-code: "2.3.1.51" + - kegg.reaction: "R00851" + - metanetx.reaction: "MNXR106715" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4278 - - name: diphthine:ammonia ligase (AMP-forming) + - id: "r_4278" + - name: "diphthine:ammonia ligase (AMP-forming)" - metabolites: !!omap - s_0419: -1 - s_0423: 1 @@ -93806,16 +94950,16 @@ - s_3941: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR143W + - gene_reaction_rule: "YLR143W" - annotation: !!omap - - ec-code: 6.3.1.14 - - kegg.reaction: R03613 - - metanetx.reaction: MNXR108295 - - sbo: SBO:0000176 + - ec-code: "6.3.1.14" + - kegg.reaction: "R03613" + - metanetx.reaction: "MNXR108295" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4279 - - name: 8-oxo-dGTP diphosphohydrolase + - id: "r_4279" + - name: "8-oxo-dGTP diphosphohydrolase" - metabolites: !!omap - s_0638: 1 - s_0801: 1 @@ -93824,16 +94968,16 @@ - s_3943: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR151C + - gene_reaction_rule: "YLR151C" - annotation: !!omap - - ec-code: 3.6.1.55 - - kegg.reaction: R09832 - - metanetx.reaction: MNXR113234 - - sbo: SBO:0000176 + - ec-code: "3.6.1.55" + - kegg.reaction: "R09832" + - metanetx.reaction: "MNXR113234" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4280 - - name: octanoyl-[acp]:protein N6-octanoyltransferase + - id: "r_4280" + - name: "octanoyl-[acp]:protein N6-octanoyltransferase" - metabolites: !!omap - s_1254: -1 - s_1845: 1 @@ -93841,16 +94985,16 @@ - s_3945: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR239C + - gene_reaction_rule: "YLR239C" - annotation: !!omap - - ec-code: 2.3.1.181 - - kegg.reaction: R07766 - - metanetx.reaction: MNXR111354 - - sbo: SBO:0000176 + - ec-code: "2.3.1.181" + - kegg.reaction: "R07766" + - metanetx.reaction: "MNXR111354" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4281 - - name: lipoyl-[acp]:protein N6-lipoyltransferase + - id: "r_4281" + - name: "lipoyl-[acp]:protein N6-lipoyltransferase" - metabolites: !!omap - s_1845: 1 - s_3944: -1 @@ -93858,16 +95002,16 @@ - s_3947: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR239C + - gene_reaction_rule: "YLR239C" - annotation: !!omap - - ec-code: 2.3.1.181 - - kegg.reaction: R07769 - - metanetx.reaction: MNXR111357 - - sbo: SBO:0000176 + - ec-code: "2.3.1.181" + - kegg.reaction: "R07769" + - metanetx.reaction: "MNXR111357" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4282 - - name: ATP:D-fructose-6-phosphate 2-phosphotransferase + - id: "r_4282" + - name: "ATP:D-fructose-6-phosphate 2-phosphotransferase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -93876,19 +95020,19 @@ - s_3948: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR345W + - gene_reaction_rule: "YLR345W" - annotation: !!omap - ec-code: - - 2.7.1.105 - - 3.1.3.46 - - bigg.reaction: PFK26_1 - - kegg.reaction: R02732 - - metanetx.reaction: MNXR102508 - - sbo: SBO:0000176 + - "2.7.1.105" + - "3.1.3.46" + - bigg.reaction: "PFK26_1" + - kegg.reaction: "R02732" + - metanetx.reaction: "MNXR102508" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4283 - - name: ATP:D-fructose 6-phosphotransferase + - id: "r_4283" + - name: "ATP:D-fructose 6-phosphotransferase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -93897,16 +95041,16 @@ - s_3948: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR446W + - gene_reaction_rule: "YLR446W" - annotation: !!omap - - ec-code: 2.7.1.1 - - kegg.reaction: R00867 - - metanetx.reaction: MNXR100614 - - sbo: SBO:0000176 + - ec-code: "2.7.1.1" + - kegg.reaction: "R00867" + - metanetx.reaction: "MNXR100614" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4284 - - name: ATP:beta-D-glucose 6-phosphotransferase + - id: "r_4284" + - name: "ATP:beta-D-glucose 6-phosphotransferase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -93915,17 +95059,17 @@ - s_3950: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR446W + - gene_reaction_rule: "YLR446W" - annotation: !!omap - - ec-code: 2.7.1.1 - - bigg.reaction: GLUK_syn - - kegg.reaction: R01600 - - metanetx.reaction: MNXR107081 - - sbo: SBO:0000176 + - ec-code: "2.7.1.1" + - bigg.reaction: "GLUK_syn" + - kegg.reaction: "R01600" + - metanetx.reaction: "MNXR107081" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4285 - - name: ATP:alpha-D-glucose 6-phosphotransferase + - id: "r_4285" + - name: "ATP:alpha-D-glucose 6-phosphotransferase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -93934,17 +95078,17 @@ - s_3952: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR446W + - gene_reaction_rule: "YLR446W" - annotation: !!omap - - ec-code: 2.7.1.1 - - bigg.reaction: GLUKA - - kegg.reaction: R01786 - - metanetx.reaction: MNXR100284 - - sbo: SBO:0000176 + - ec-code: "2.7.1.1" + - bigg.reaction: "GLUKA" + - kegg.reaction: "R01786" + - metanetx.reaction: "MNXR100284" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4286 - - name: ATP:D-glucosamine 6-phosphotransferase + - id: "r_4286" + - name: "ATP:D-glucosamine 6-phosphotransferase" - metabolites: !!omap - s_0394: 1 - s_0412: 1 @@ -93953,17 +95097,17 @@ - s_3953: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR446W + - gene_reaction_rule: "YLR446W" - annotation: !!omap - - ec-code: 2.7.1.1 - - bigg.reaction: HEX10 - - kegg.reaction: R01961 - - metanetx.reaction: MNXR100613 - - sbo: SBO:0000176 + - ec-code: "2.7.1.1" + - bigg.reaction: "HEX10" + - kegg.reaction: "R01961" + - metanetx.reaction: "MNXR100613" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4287 - - name: ATP:D-fructose 6-phosphotransferase + - id: "r_4287" + - name: "ATP:D-fructose 6-phosphotransferase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -93972,33 +95116,33 @@ - s_3954: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YLR446W + - gene_reaction_rule: "YLR446W" - annotation: !!omap - - ec-code: 2.7.1.1 - - bigg.reaction: ABFPT - - kegg.reaction: R03920 - - metanetx.reaction: MNXR95167 - - sbo: SBO:0000176 + - ec-code: "2.7.1.1" + - bigg.reaction: "ABFPT" + - kegg.reaction: "R03920" + - metanetx.reaction: "MNXR95167" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4288 - - name: alpha-D-Glucose 6-phosphate ketol-isomerase + - id: "r_4288" + - name: "alpha-D-Glucose 6-phosphate ketol-isomerase" - metabolites: !!omap - s_3950: 1 - s_3952: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR099C + - gene_reaction_rule: "YMR099C" - annotation: !!omap - - ec-code: 5.1.3.15 - - bigg.reaction: G6PI_1 - - kegg.reaction: R02739 - - metanetx.reaction: MNXR99911 - - sbo: SBO:0000176 + - ec-code: "5.1.3.15" + - bigg.reaction: "G6PI_1" + - kegg.reaction: "R02739" + - metanetx.reaction: "MNXR99911" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4291 - - name: D-Glyceraldehyde:NAD+ oxidoreductase + - id: "r_4291" + - name: "D-Glyceraldehyde:NAD+ oxidoreductase" - metabolites: !!omap - s_0570: -1 - s_0794: 2 @@ -94008,17 +95152,17 @@ - s_3958: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - bigg.reaction: GLYALDDr - - kegg.reaction: R01752 - - metanetx.reaction: MNXR100310 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - bigg.reaction: "GLYALDDr" + - kegg.reaction: "R01752" + - metanetx.reaction: "MNXR100310" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4292 - - name: 4-Aminobutyraldehyde:NAD+ oxidoreductase + - id: "r_4292" + - name: "4-Aminobutyraldehyde:NAD+ oxidoreductase" - metabolites: !!omap - s_0274: -1 - s_0734: 1 @@ -94028,17 +95172,17 @@ - s_1212: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - bigg.reaction: 4ABUTD - - kegg.reaction: R01986 - - metanetx.reaction: MNXR94991 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - bigg.reaction: "4ABUTD" + - kegg.reaction: "R01986" + - metanetx.reaction: "MNXR94991" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4293 - - name: 4-aminobutanal:NAD+ 1-oxidoreductase; 4-aminobutyraldehyde:NAD+ oxidoreductase + - id: "r_4293" + - name: "4-aminobutanal:NAD+ 1-oxidoreductase; 4-aminobutyraldehyde:NAD+ oxidoreductase" - metabolites: !!omap - s_0274: -1 - s_0734: 1 @@ -94048,17 +95192,17 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - bigg.reaction: ABUTD - - kegg.reaction: R02549 - - metanetx.reaction: MNXR95191 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - bigg.reaction: "ABUTD" + - kegg.reaction: "R02549" + - metanetx.reaction: "MNXR95191" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4294 - - name: Indole-3-acetaldehyde:NAD+ oxidoreductase + - id: "r_4294" + - name: "Indole-3-acetaldehyde:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94068,17 +95212,17 @@ - s_1203: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - bigg.reaction: ALDD20x - - kegg.reaction: R02678 - - metanetx.reaction: MNXR95744 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - bigg.reaction: "ALDD20x" + - kegg.reaction: "R02678" + - metanetx.reaction: "MNXR95744" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4295 - - name: 2-Propyn-1-al:NAD+ oxidoreductase + - id: "r_4295" + - name: "2-Propyn-1-al:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94088,16 +95232,16 @@ - s_3960: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - kegg.reaction: R02940 - - metanetx.reaction: MNXR107839 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - kegg.reaction: "R02940" + - metanetx.reaction: "MNXR107839" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4296 - - name: D-Glucuronolactone:NAD+ oxidoreductase + - id: "r_4296" + - name: "D-Glucuronolactone:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 3 - s_0803: -2 @@ -94107,17 +95251,17 @@ - s_3962: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - bigg.reaction: ALDD32 - - kegg.reaction: R02957 - - metanetx.reaction: MNXR95753 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - bigg.reaction: "ALDD32" + - kegg.reaction: "R02957" + - metanetx.reaction: "MNXR95753" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4297 - - name: 4-Trimethylammoniobutanal:NAD+ 1-oxidoreductase; 4-Trimethylammoniobutanal:NAD+ oxidoreductase + - id: "r_4297" + - name: "4-Trimethylammoniobutanal:NAD+ 1-oxidoreductase; 4-Trimethylammoniobutanal:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94127,16 +95271,16 @@ - s_3964: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - kegg.reaction: R03283 - - metanetx.reaction: MNXR108074 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - kegg.reaction: "R03283" + - metanetx.reaction: "MNXR108074" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4298 - - name: (S)-Methylmalonate semialdehyde:NAD+ oxidoreductase + - id: "r_4298" + - name: "(S)-Methylmalonate semialdehyde:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94146,16 +95290,16 @@ - s_3966: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - kegg.reaction: R03869 - - metanetx.reaction: MNXR95762 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - kegg.reaction: "R03869" + - metanetx.reaction: "MNXR95762" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4299 - - name: Imidazole acetaldehyde:NAD+ oxidoreductase + - id: "r_4299" + - name: "Imidazole acetaldehyde:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94165,16 +95309,16 @@ - s_3968: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - kegg.reaction: R04065 - - metanetx.reaction: MNXR95745 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - kegg.reaction: "R04065" + - metanetx.reaction: "MNXR95745" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4300 - - name: 3alpha,7alpha-Dihydroxy-5beta-cholestan-26-al:NAD+ oxidoreductase + - id: "r_4300" + - name: "3alpha,7alpha-Dihydroxy-5beta-cholestan-26-al:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94184,17 +95328,17 @@ - s_3970: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - bigg.reaction: r0688 - - kegg.reaction: R04506 - - metanetx.reaction: MNXR108934 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - bigg.reaction: "r0688" + - kegg.reaction: "R04506" + - metanetx.reaction: "MNXR108934" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4301 - - name: 5-Hydroxyindoleacetaldehyde:NAD+ oxidoreductase + - id: "r_4301" + - name: "5-Hydroxyindoleacetaldehyde:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94204,16 +95348,16 @@ - s_3972: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - kegg.reaction: R04903 - - metanetx.reaction: MNXR109205 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - kegg.reaction: "R04903" + - metanetx.reaction: "MNXR109205" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4302 - - name: N4-Acetylaminobutanal:NAD+ oxidoreductase + - id: "r_4302" + - name: "N4-Acetylaminobutanal:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94223,17 +95367,17 @@ - s_3974: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - bigg.reaction: NABTNO - - kegg.reaction: R05050 - - metanetx.reaction: MNXR101805 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - bigg.reaction: "NABTNO" + - kegg.reaction: "R05050" + - metanetx.reaction: "MNXR101805" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4303 - - name: Fatty aldehyde dehydrogenase HFD1 (EC 1.2.1.3) + - id: "r_4303" + - name: "Fatty aldehyde dehydrogenase HFD1 (EC 1.2.1.3)" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94243,16 +95387,16 @@ - s_3976: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - kegg.reaction: R05237 - - metanetx.reaction: MNXR109413 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - kegg.reaction: "R05237" + - metanetx.reaction: "MNXR109413" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4304 - - name: Fatty aldehyde dehydrogenase HFD1 (EC 1.2.1.3) + - id: "r_4304" + - name: "Fatty aldehyde dehydrogenase HFD1 (EC 1.2.1.3)" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94262,16 +95406,16 @@ - s_3978: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - kegg.reaction: R05238 - - metanetx.reaction: MNXR109414 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - kegg.reaction: "R05238" + - metanetx.reaction: "MNXR109414" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4305 - - name: Chloroacetaldehyde:NAD+ oxidoreductase + - id: "r_4305" + - name: "Chloroacetaldehyde:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94281,16 +95425,16 @@ - s_3980: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - kegg.reaction: R05286 - - metanetx.reaction: MNXR109457 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - kegg.reaction: "R05286" + - metanetx.reaction: "MNXR109457" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4306 - - name: Aldehyde:NAD+ oxidoreductase + - id: "r_4306" + - name: "Aldehyde:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94300,16 +95444,16 @@ - s_3982: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - kegg.reaction: R06366 - - metanetx.reaction: MNXR110183 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - kegg.reaction: "R06366" + - metanetx.reaction: "MNXR110183" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4307 - - name: farnesal:NAD+ oxidoreductase + - id: "r_4307" + - name: "farnesal:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 2 - s_0803: -1 @@ -94319,16 +95463,16 @@ - s_3984: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR110C + - gene_reaction_rule: "YMR110C" - annotation: !!omap - - ec-code: 1.2.1.3 - - kegg.reaction: R08146 - - metanetx.reaction: MNXR111724 - - sbo: SBO:0000176 + - ec-code: "1.2.1.3" + - kegg.reaction: "R08146" + - metanetx.reaction: "MNXR111724" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4308 - - name: Probable phospholipid-transporting ATPase DNF3 (EC 3.6.3.1) (Aminophospholipid translocase) (APT) (Phospholipid translocase) (PLT) + - id: "r_4308" + - name: "Probable phospholipid-transporting ATPase DNF3 (EC 3.6.3.1) (Aminophospholipid translocase) (APT) (Phospholipid translocase) (PLT)" - metabolites: !!omap - s_2783: 1 - s_2808: -1 @@ -94339,14 +95483,14 @@ - s_3987: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR162C + - gene_reaction_rule: "YMR162C" - annotation: !!omap - - ec-code: 3.6.3.1 - - sbo: SBO:0000655 + - ec-code: "3.6.3.1" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4309 - - name: Putative esterase YMR210W (EC 3.1.1.-) + - id: "r_4309" + - name: "Putative esterase YMR210W (EC 3.1.1.-)" - metabolites: !!omap - s_0765: 1 - s_0794: 1 @@ -94355,14 +95499,14 @@ - s_3988: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YMR210W + - gene_reaction_rule: "YMR210W" - annotation: !!omap - - ec-code: 3.1.1.- - - sbo: SBO:0000176 + - ec-code: "3.1.1.-" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4310 - - name: GDP-mannose:glycolipid 1,2-alpha-D-mannosyltransferase + - id: "r_4310" + - name: "GDP-mannose:glycolipid 1,2-alpha-D-mannosyltransferase" - metabolites: !!omap - s_0795: 2 - s_3890: -2 @@ -94371,16 +95515,16 @@ - s_3989: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL048W + - gene_reaction_rule: "YNL048W" - annotation: !!omap - - ec-code: 2.4.1.131 - - kegg.reaction: R06127 - - metanetx.reaction: MNXR110030 - - sbo: SBO:0000176 + - ec-code: "2.4.1.131" + - kegg.reaction: "R06127" + - metanetx.reaction: "MNXR110030" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4311 - - name: GDP-mannose:glycolipid 1,2-alpha-D-mannosyltransferase + - id: "r_4311" + - name: "GDP-mannose:glycolipid 1,2-alpha-D-mannosyltransferase" - metabolites: !!omap - s_0795: 2 - s_3890: -2 @@ -94389,16 +95533,16 @@ - s_3990: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL048W + - gene_reaction_rule: "YNL048W" - annotation: !!omap - - ec-code: 2.4.1.131 - - kegg.reaction: R06128 - - metanetx.reaction: MNXR110031 - - sbo: SBO:0000176 + - ec-code: "2.4.1.131" + - kegg.reaction: "R06128" + - metanetx.reaction: "MNXR110031" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4312 - - name: S-adenosyl-L-methionine:carnosine N-methyltransferase + - id: "r_4312" + - name: "S-adenosyl-L-methionine:carnosine N-methyltransferase" - metabolites: !!omap - s_0794: 1 - s_1413: 1 @@ -94407,16 +95551,16 @@ - s_3992: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL092W + - gene_reaction_rule: "YNL092W" - annotation: !!omap - - ec-code: 2.1.1.22 - - kegg.reaction: R02144 - - metanetx.reaction: MNXR107333 - - sbo: SBO:0000176 + - ec-code: "2.1.1.22" + - kegg.reaction: "R02144" + - metanetx.reaction: "MNXR107333" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4313 - - name: Alpha-1,2-mannosyltransferase ALG9 (EC 2.4.1.259) (EC 2.4.1.261) (Asparagine-linked glycosylation protein 9) (Dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) (Dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) + - id: "r_4313" + - name: "Alpha-1,2-mannosyltransferase ALG9 (EC 2.4.1.259) (EC 2.4.1.261) (Asparagine-linked glycosylation protein 9) (Dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) (Dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase)" - metabolites: !!omap - s_0644: -1 - s_0646: 1 @@ -94424,18 +95568,18 @@ - s_3994: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL219C + - gene_reaction_rule: "YNL219C" - annotation: !!omap - ec-code: - - 2.4.1.259 - - 2.4.1.261 - - kegg.reaction: R06259 - - metanetx.reaction: MNXR110093 - - sbo: SBO:0000176 + - "2.4.1.259" + - "2.4.1.261" + - kegg.reaction: "R06259" + - metanetx.reaction: "MNXR110093" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4314 - - name: Alpha-1,2-mannosyltransferase ALG9 (EC 2.4.1.259) (EC 2.4.1.261) (Asparagine-linked glycosylation protein 9) (Dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) (Dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) + - id: "r_4314" + - name: "Alpha-1,2-mannosyltransferase ALG9 (EC 2.4.1.259) (EC 2.4.1.261) (Asparagine-linked glycosylation protein 9) (Dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) (Dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase)" - metabolites: !!omap - s_0644: -1 - s_0646: 1 @@ -94443,18 +95587,18 @@ - s_3996: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL219C + - gene_reaction_rule: "YNL219C" - annotation: !!omap - ec-code: - - 2.4.1.259 - - 2.4.1.261 - - kegg.reaction: R06261 - - metanetx.reaction: MNXR110095 - - sbo: SBO:0000176 + - "2.4.1.259" + - "2.4.1.261" + - kegg.reaction: "R06261" + - metanetx.reaction: "MNXR110095" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4315 - - name: Glycolate:NAD+ oxidoreductase + - id: "r_4315" + - name: "Glycolate:NAD+ oxidoreductase" - metabolites: !!omap - s_0779: 1 - s_0794: 1 @@ -94463,17 +95607,17 @@ - s_3997: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL274C + - gene_reaction_rule: "YNL274C" - annotation: !!omap - - ec-code: 1.1.1.26 - - bigg.reaction: GLYCLTDx - - kegg.reaction: R00717 - - metanetx.reaction: MNXR100331 - - sbo: SBO:0000176 + - ec-code: "1.1.1.26" + - bigg.reaction: "GLYCLTDx" + - kegg.reaction: "R00717" + - metanetx.reaction: "MNXR100331" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4316 - - name: Dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase (EC 2.4.1.260) (Asparagine-linked glycosylation protein 12) (Dolichyl-P-Man:Man(7)GlcNAc(2)-PP-dolichyl-alpha-1,6-mannosyltransferase) (Extracellular mutant protein 39) (Mannosyltransferase ALG12) + - id: "r_4316" + - name: "Dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase (EC 2.4.1.260) (Asparagine-linked glycosylation protein 12) (Dolichyl-P-Man:Man(7)GlcNAc(2)-PP-dolichyl-alpha-1,6-mannosyltransferase) (Extracellular mutant protein 39) (Mannosyltransferase ALG12)" - metabolites: !!omap - s_0644: -1 - s_0646: 1 @@ -94481,16 +95625,16 @@ - s_3995: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNR030W + - gene_reaction_rule: "YNR030W" - annotation: !!omap - - ec-code: 2.4.1.260 - - kegg.reaction: R06260 - - metanetx.reaction: MNXR110094 - - sbo: SBO:0000176 + - ec-code: "2.4.1.260" + - kegg.reaction: "R06260" + - metanetx.reaction: "MNXR110094" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4317 - - name: sucrose glucohydrolase + - id: "r_4317" + - name: "sucrose glucohydrolase" - metabolites: !!omap - s_0553: 1 - s_0563: 1 @@ -94498,17 +95642,17 @@ - s_3998: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOL157C + - gene_reaction_rule: "YOL157C" - annotation: !!omap - - ec-code: 3.2.1.10 - - bigg.reaction: SUCR - - kegg.reaction: R00801 - - metanetx.reaction: MNXR104638 - - sbo: SBO:0000176 + - ec-code: "3.2.1.10" + - bigg.reaction: "SUCR" + - kegg.reaction: "R00801" + - metanetx.reaction: "MNXR104638" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4318 - - name: Isomaltose 6-alpha-D-glucanohydrolase + - id: "r_4318" + - name: "Isomaltose 6-alpha-D-glucanohydrolase" - metabolites: !!omap - s_0563: 1 - s_0803: -1 @@ -94516,32 +95660,32 @@ - s_3999: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOL157C + - gene_reaction_rule: "YOL157C" - annotation: !!omap - - ec-code: 3.2.1.10 - - kegg.reaction: R01718 - - metanetx.reaction: MNXR107140 - - sbo: SBO:0000176 + - ec-code: "3.2.1.10" + - kegg.reaction: "R01718" + - metanetx.reaction: "MNXR107140" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4319 - - name: Dextrin 6-alpha-D-glucanohydrolase + - id: "r_4319" + - name: "Dextrin 6-alpha-D-glucanohydrolase" - metabolites: !!omap - s_0563: 2 - s_0803: -2 - s_4000: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOL157C + - gene_reaction_rule: "YOL157C" - annotation: !!omap - - ec-code: 3.2.1.10 - - kegg.reaction: R01791 - - metanetx.reaction: MNXR107171 - - sbo: SBO:0000176 + - ec-code: "3.2.1.10" + - kegg.reaction: "R01791" + - metanetx.reaction: "MNXR107171" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4320 - - name: dolichyl beta-D-glucosyl phosphate:D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,3-glucosyltransferase + - id: "r_4320" + - name: "dolichyl beta-D-glucosyl phosphate:D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,3-glucosyltransferase" - metabolites: !!omap - s_0646: 1 - s_0795: -1 @@ -94550,16 +95694,16 @@ - s_4001: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR002W + - gene_reaction_rule: "YOR002W" - annotation: !!omap - - ec-code: 2.4.1.267 - - kegg.reaction: R06262 - - metanetx.reaction: MNXR110096 - - sbo: SBO:0000176 + - ec-code: "2.4.1.267" + - kegg.reaction: "R06262" + - metanetx.reaction: "MNXR110096" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4321 - - name: dolichyl beta-D-glucosyl phosphate:D-Glc-alpha-(1->3)-D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,3-glucosyltransferase + - id: "r_4321" + - name: "dolichyl beta-D-glucosyl phosphate:D-Glc-alpha-(1->3)-D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,3-glucosyltransferase" - metabolites: !!omap - s_0646: 1 - s_0795: -1 @@ -94568,16 +95712,16 @@ - s_4001: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR067C + - gene_reaction_rule: "YOR067C" - annotation: !!omap - - ec-code: 2.4.1.265 - - kegg.reaction: R06263 - - metanetx.reaction: MNXR110097 - - sbo: SBO:0000176 + - ec-code: "2.4.1.265" + - kegg.reaction: "R06263" + - metanetx.reaction: "MNXR110097" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4322 - - name: GPI mannosyltransferase 4 (EC 2.4.1.-) (GPI mannosyltransferase IV) (GPI-MT-IV) + - id: "r_4322" + - name: "GPI mannosyltransferase 4 (EC 2.4.1.-) (GPI mannosyltransferase IV) (GPI-MT-IV)" - metabolites: !!omap - s_0644: -1 - s_0646: 1 @@ -94586,16 +95730,16 @@ - s_4003: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR149C + - gene_reaction_rule: "YOR149C" - annotation: !!omap - - ec-code: 2.4.1.- - - kegg.reaction: R07129 - - metanetx.reaction: MNXR110833 - - sbo: SBO:0000176 + - ec-code: "2.4.1.-" + - kegg.reaction: "R07129" + - metanetx.reaction: "MNXR110833" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4323 - - name: protein N6-(octanoyl)lysine:sulfur sulfurtransferase + - id: "r_4323" + - name: "protein N6-(octanoyl)lysine:sulfur sulfurtransferase" - metabolites: !!omap - s_1031: 2 - s_1419: -2 @@ -94605,16 +95749,16 @@ - s_4005: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR196C + - gene_reaction_rule: "YOR196C" - annotation: !!omap - - ec-code: 2.8.1.8 - - kegg.reaction: R07767 - - metanetx.reaction: MNXR111355 - - sbo: SBO:0000176 + - ec-code: "2.8.1.8" + - kegg.reaction: "R07767" + - metanetx.reaction: "MNXR111355" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4324 - - name: octanoyl-[acp]:sulfur sulfurtransferase + - id: "r_4324" + - name: "octanoyl-[acp]:sulfur sulfurtransferase" - metabolites: !!omap - s_1031: 2 - s_1254: -1 @@ -94624,29 +95768,29 @@ - s_4005: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR196C + - gene_reaction_rule: "YOR196C" - annotation: !!omap - - ec-code: 2.8.1.8 - - kegg.reaction: R07768 - - metanetx.reaction: MNXR111356 - - sbo: SBO:0000176 + - ec-code: "2.8.1.8" + - kegg.reaction: "R07768" + - metanetx.reaction: "MNXR111356" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4325 - - name: Iron sulfur cluster assembly protein 2, mitochondrial (Iron sulfur cluster scaffold protein 2) + - id: "r_4325" + - name: "Iron sulfur cluster assembly protein 2, mitochondrial (Iron sulfur cluster scaffold protein 2)" - metabolites: !!omap - s_4006: -1 - s_4007: -1 - s_4008: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YOR226C or YPL135W + - gene_reaction_rule: "YOR226C or YPL135W" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4326 - - name: thiosulfate:cyanide sulfurtranserase + - id: "r_4326" + - name: "thiosulfate:cyanide sulfurtranserase" - metabolites: !!omap - s_0799: 2 - s_4009: -1 @@ -94655,31 +95799,31 @@ - s_4012: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR251C or YOR285W or YOR286W + - gene_reaction_rule: "YOR251C or YOR285W or YOR286W" - annotation: !!omap - ec-code: - - 2.8.1.1 - - 2.8.1.- - - bigg.reaction: CYANSTm - - kegg.reaction: R01931 - - metanetx.reaction: MNXR138187 - - sbo: SBO:0000176 + - "2.8.1.1" + - "2.8.1.-" + - bigg.reaction: "CYANSTm" + - kegg.reaction: "R01931" + - metanetx.reaction: "MNXR138187" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4327 - - name: Magnesium transporter MRS2, mitochondrial (RNA-splicing protein MRS2) + - id: "r_4327" + - name: "Magnesium transporter MRS2, mitochondrial (RNA-splicing protein MRS2)" - metabolites: !!omap - s_4013: -1 - s_4014: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR334W or YPL060W + - gene_reaction_rule: "YOR334W or YPL060W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4328 - - name: UDPglucose:dolichyl-phosphate beta-D-glucosyltransferase + - id: "r_4328" + - name: "UDPglucose:dolichyl-phosphate beta-D-glucosyltransferase" - metabolites: !!omap - s_0646: -1 - s_0795: 2 @@ -94688,29 +95832,29 @@ - s_4015: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPL227C + - gene_reaction_rule: "YPL227C" - annotation: !!omap - - ec-code: 2.4.1.117 - - kegg.reaction: R01005 - - metanetx.reaction: MNXR143462 - - sbo: SBO:0000176 + - ec-code: "2.4.1.117" + - kegg.reaction: "R01005" + - metanetx.reaction: "MNXR143462" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4329 - - name: Putative sulfate transporter YPR003C + - id: "r_4329" + - name: "Putative sulfate transporter YPR003C" - metabolites: !!omap - s_1467: -1 - s_4016: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR003C + - gene_reaction_rule: "YPR003C" - annotation: !!omap - - bigg.reaction: HMR_9626 - - sbo: SBO:0000655 + - bigg.reaction: "HMR_9626" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4330 - - name: Pyridoxine:NADP+ 4-oxidoreductase + - id: "r_4330" + - name: "Pyridoxine:NADP+ 4-oxidoreductase" - metabolites: !!omap - s_0794: 1 - s_1207: -1 @@ -94719,46 +95863,46 @@ - s_1396: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YPR127W + - gene_reaction_rule: "YPR127W" - annotation: !!omap - - ec-code: 1.1.1.65 - - bigg.reaction: PYDXOR - - kegg.reaction: R01708 - - metanetx.reaction: MNXR103366 - - sbo: SBO:0000176 + - ec-code: "1.1.1.65" + - bigg.reaction: "PYDXOR" + - kegg.reaction: "R01708" + - metanetx.reaction: "MNXR103366" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4331 - - name: [1,4-(N-Acetyl-beta-D-glucosaminyl)]n glycanohydrolase + - id: "r_4331" + - name: "[1,4-(N-Acetyl-beta-D-glucosaminyl)]n glycanohydrolase" - metabolites: !!omap - s_0509: -1 - s_0803: -1 - s_4017: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR371W or YLR286C + - gene_reaction_rule: "YDR371W or YLR286C" - annotation: !!omap - - ec-code: 3.2.1.14 - - kegg.reaction: R01206 - - metanetx.reaction: MNXR106866 - - sbo: SBO:0000176 + - ec-code: "3.2.1.14" + - kegg.reaction: "R01206" + - metanetx.reaction: "MNXR106866" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4332 - - name: Protein PNS1 (pH nine-sensitive protein 1) + - id: "r_4332" + - name: "Protein PNS1 (pH nine-sensitive protein 1)" - metabolites: !!omap - s_0512: -1 - s_0513: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR161C + - gene_reaction_rule: "YOR161C" - annotation: !!omap - - bigg.reaction: CHOLtu - - sbo: SBO:0000655 + - bigg.reaction: "CHOLtu" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4333 - - name: Polyphosphate phosphohydrolase + - id: "r_4333" + - name: "Polyphosphate phosphohydrolase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -94766,19 +95910,19 @@ - s_4018: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR201C or YDR452W + - gene_reaction_rule: "YHR201C or YDR452W" - annotation: !!omap - ec-code: - - 3.6.1.10 - - 3.6.1.- - - 3.6.1.11 - - kegg.reaction: R03042 - - metanetx.reaction: MNXR107906 - - sbo: SBO:0000176 + - "3.6.1.10" + - "3.6.1.-" + - "3.6.1.11" + - kegg.reaction: "R03042" + - metanetx.reaction: "MNXR107906" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4334 - - name: Copper-transporting ATPase (EC 3.6.3.54) (Cu(2+)-ATPase) + - id: "r_4334" + - name: "Copper-transporting ATPase (EC 3.6.3.54) (Cu(2+)-ATPase)" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -94789,14 +95933,14 @@ - s_4020: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR270W + - gene_reaction_rule: "YDR270W" - annotation: !!omap - - ec-code: 3.6.3.54 - - sbo: SBO:0000655 + - ec-code: "3.6.3.54" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4335 - - name: Endopolyphosphatase (EC 3.6.1.10) (Deoxyadenosine triphosphate phosphohydrolase) (dATP phosphohydrolase) (EC 3.6.1.-) (Exopolyphosphatase) (EC 3.6.1.11) (Phosphate metabolism protein 5) + - id: "r_4335" + - name: "Endopolyphosphatase (EC 3.6.1.10) (Deoxyadenosine triphosphate phosphohydrolase) (dATP phosphohydrolase) (EC 3.6.1.-) (Exopolyphosphatase) (EC 3.6.1.11) (Phosphate metabolism protein 5)" - metabolites: !!omap - s_0582: 1 - s_0586: -1 @@ -94805,18 +95949,18 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YDR452W + - gene_reaction_rule: "YDR452W" - annotation: !!omap - ec-code: - - 3.6.1.10 - - 3.6.1.- - - 3.6.1.11 - - bigg.reaction: NTP2 - - sbo: SBO:0000176 + - "3.6.1.10" + - "3.6.1.-" + - "3.6.1.11" + - bigg.reaction: "NTP2" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4336 - - name: Monoamide of a dicarboxylic acid amidohydrolase + - id: "r_4336" + - name: "Monoamide of a dicarboxylic acid amidohydrolase" - metabolites: !!omap - s_0180: 1 - s_0419: 1 @@ -94824,17 +95968,17 @@ - s_4021: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YLR351C + - gene_reaction_rule: "YLR351C" - annotation: !!omap - - ec-code: 3.5.1.3 - - bigg.reaction: r0085 - - kegg.reaction: R03804 - - metanetx.reaction: MNXR108439 - - sbo: SBO:0000176 + - ec-code: "3.5.1.3" + - bigg.reaction: "r0085" + - kegg.reaction: "R03804" + - metanetx.reaction: "MNXR108439" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4337 - - name: Iron-sulfur clusters transporter ATM1, mitochondrial + - id: "r_4337" + - name: "Iron-sulfur clusters transporter ATM1, mitochondrial" - metabolites: !!omap - s_0397: 1 - s_0437: -1 @@ -94845,41 +95989,41 @@ - s_4023: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR301C + - gene_reaction_rule: "YMR301C" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4338 - - name: Oligo-1,6-glucosidase IMA2 (EC 3.2.1.10) (Alpha-glucosidase) (Isomaltase 2) + - id: "r_4338" + - name: "Oligo-1,6-glucosidase IMA2 (EC 3.2.1.10) (Alpha-glucosidase) (Isomaltase 2)" - metabolites: !!omap - s_0803: -1 - s_3951: 2 - s_4024: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOL157C + - gene_reaction_rule: "YOL157C" - annotation: !!omap - - ec-code: 3.2.1.10 - - kegg.reaction: R06199 - - metanetx.reaction: MNXR110064 - - sbo: SBO:0000176 + - ec-code: "3.2.1.10" + - kegg.reaction: "R06199" + - metanetx.reaction: "MNXR110064" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4339 - - name: UDP-N-acetylglucosamine transporter YEA4 + - id: "r_4339" + - name: "UDP-N-acetylglucosamine transporter YEA4" - metabolites: !!omap - s_3764: -1 - s_4025: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YEL004W + - gene_reaction_rule: "YEL004W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4340 - - name: D-amino-acid N-acetyltransferase HPA3 (DNT) (EC 2.3.1.36) (EC 2.3.1.48) (Histone and other protein acetyltransferase 3) + - id: "r_4340" + - name: "D-amino-acid N-acetyltransferase HPA3 (DNT) (EC 2.3.1.36) (EC 2.3.1.48) (Histone and other protein acetyltransferase 3)" - metabolites: !!omap - s_0373: -1 - s_0529: 1 @@ -94888,28 +96032,29 @@ - s_4033: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YEL066W + - gene_reaction_rule: "YEL066W" - annotation: !!omap - ec-code: - - 2.3.1.36 - - 2.3.1.48 - - sbo: SBO:0000176 + - "2.3.1.36" + - "2.3.1.48" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4341 - - name: glycerol 2-phosphate(2-) transport + - id: "r_4341" + - name: "glycerol 2-phosphate(2-) transport" - metabolites: !!omap - s_4062: 1 - s_4063: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100319 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100319" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4342 - - name: Glycerol-2-phosphate phosphohydrolase + - id: "r_4342" + - name: "Glycerol-2-phosphate phosphohydrolase" - metabolites: !!omap - s_0765: 1 - s_0803: -1 @@ -94917,16 +96062,17 @@ - s_4062: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.19 - - bigg.reaction: G2PP - - kegg.reaction: R01043 - - metanetx.reaction: MNXR99852 - - sbo: SBO:0000176 + - ec-code: "3.1.3.19" + - bigg.reaction: "G2PP" + - kegg.reaction: "R01043" + - metanetx.reaction: "MNXR99852" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4343 - - name: L-Threonine phosphate transport in via proton symport + - id: "r_4343" + - name: "L-Threonine phosphate transport in via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -94934,13 +96080,14 @@ - s_4065: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR136678 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR136678" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4344 - - name: acid phosphatase / phosphotransferase + - id: "r_4344" + - name: "acid phosphatase / phosphotransferase" - metabolites: !!omap - s_0803: -1 - s_1045: 1 @@ -94948,14 +96095,15 @@ - s_4064: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.- - - metanetx.reaction: MNXR103332 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - metanetx.reaction: "MNXR103332" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4345 - - name: alkaline phosphatase + - id: "r_4345" + - name: "alkaline phosphatase" - metabolites: !!omap - s_0790: 1 - s_0803: -1 @@ -94963,14 +96111,15 @@ - s_4066: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.- - - metanetx.reaction: MNXR118732 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - metanetx.reaction: "MNXR118732" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4346 - - name: Guanosine transport via proton symport + - id: "r_4346" + - name: "Guanosine transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -94978,12 +96127,13 @@ - s_4067: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4347 - - name: Guanosine 3'-phosphate phosphohydrolase + - id: "r_4347" + - name: "Guanosine 3'-phosphate phosphohydrolase" - metabolites: !!omap - s_0790: 1 - s_0803: -1 @@ -94991,16 +96141,17 @@ - s_4068: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.6 - - bigg.reaction: 3NUCLE4 - - kegg.reaction: R02148 - - metanetx.reaction: MNXR94936 - - sbo: SBO:0000176 + - ec-code: "3.1.3.6" + - bigg.reaction: "3NUCLE4" + - kegg.reaction: "R02148" + - metanetx.reaction: "MNXR94936" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4348 - - name: Guanosine transport via proton symport(for 3'-GMP) + - id: "r_4348" + - name: "Guanosine transport via proton symport(for 3'-GMP)" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95008,13 +96159,14 @@ - s_4069: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 3GMPt6 - - sbo: SBO:0000655 + - bigg.reaction: "3GMPt6" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4349 - - name: 2-Phosphoglycolate transport in/out via proton symport + - id: "r_4349" + - name: "2-Phosphoglycolate transport in/out via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95022,14 +96174,15 @@ - s_4071: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2PGLYCt6 - - metanetx.reaction: MNXR94822 - - sbo: SBO:0000655 + - bigg.reaction: "2PGLYCt6" + - metanetx.reaction: "MNXR94822" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4350 - - name: 2-phosphoglycolate phosphohydrolase + - id: "r_4350" + - name: "2-phosphoglycolate phosphohydrolase" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -95037,16 +96190,17 @@ - s_4071: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.18 - - bigg.reaction: PGLYCP - - kegg.reaction: R01334 - - metanetx.reaction: MNXR102543 - - sbo: SBO:0000176 + - ec-code: "3.1.3.18" + - bigg.reaction: "PGLYCP" + - kegg.reaction: "R01334" + - metanetx.reaction: "MNXR102543" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4351 - - name: alkaline phosphatase + - id: "r_4351" + - name: "alkaline phosphatase" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -95054,25 +96208,27 @@ - s_4073: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.- - - metanetx.reaction: MNXR118734 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - metanetx.reaction: "MNXR118734" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4352 - - name: cysteamine S-phosphate transport via proton symport + - id: "r_4352" + - name: "cysteamine S-phosphate transport via proton symport" - metabolites: !!omap - s_4072: 1 - s_4075: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4353 - - name: Cysteamine:oxygen oxidoreductase + - id: "r_4353" + - name: "Cysteamine:oxygen oxidoreductase" - metabolites: !!omap - s_0794: 1 - s_1275: -1 @@ -95080,15 +96236,16 @@ - s_4076: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 1.13.11.19 - - kegg.reaction: R02467 - - metanetx.reaction: MNXR107528 - - sbo: SBO:0000176 + - ec-code: "1.13.11.19" + - kegg.reaction: "R02467" + - metanetx.reaction: "MNXR107528" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4354 - - name: hypotaurine:NAD+ oxidoreductase + - id: "r_4354" + - name: "hypotaurine:NAD+ oxidoreductase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -95098,15 +96255,16 @@ - s_4076: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 1.8.1.3 - - kegg.reaction: R01681 - - metanetx.reaction: MNXR107116 - - sbo: SBO:0000176 + - ec-code: "1.8.1.3" + - kegg.reaction: "R01681" + - metanetx.reaction: "MNXR107116" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4355 - - name: 2-aminobutanoate:2-oxoglutarate aminotransferase + - id: "r_4355" + - name: "2-aminobutanoate:2-oxoglutarate aminotransferase" - metabolites: !!omap - s_0178: -1 - s_0180: 1 @@ -95114,16 +96272,17 @@ - s_4079: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 2.6.1.42 - - bigg.reaction: RE2034C - - kegg.reaction: R10991 - - metanetx.reaction: MNXR103594 - - sbo: SBO:0000176 + - ec-code: "2.6.1.42" + - bigg.reaction: "RE2034C" + - kegg.reaction: "R10991" + - metanetx.reaction: "MNXR103594" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4356 - - name: 2-aminobutyrate transport + - id: "r_4356" + - name: "2-aminobutyrate transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95131,12 +96290,13 @@ - s_4080: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4357 - - name: alkaline phosphatase + - id: "r_4357" + - name: "alkaline phosphatase" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -95144,14 +96304,15 @@ - s_4081: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.- - - metanetx.reaction: MNXR118730 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - metanetx.reaction: "MNXR118730" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4358 - - name: Uridine 2'-phosphate transport in via proton symport + - id: "r_4358" + - name: "Uridine 2'-phosphate transport in via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95159,13 +96320,14 @@ - s_4082: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR136675 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR136675" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4359 - - name: Uridine 3'-monophosphate phosphohydrolase + - id: "r_4359" + - name: "Uridine 3'-monophosphate phosphohydrolase" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -95173,16 +96335,17 @@ - s_4083: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.6 - - bigg.reaction: 3NUCLE2 - - kegg.reaction: R01877 - - metanetx.reaction: MNXR94932 - - sbo: SBO:0000176 + - ec-code: "3.1.3.6" + - bigg.reaction: "3NUCLE2" + - kegg.reaction: "R01877" + - metanetx.reaction: "MNXR94932" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4360 - - name: 3'-UMP transport in via proton symport + - id: "r_4360" + - name: "3'-UMP transport in via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95190,14 +96353,15 @@ - s_4084: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 3UMPt6 - - metanetx.reaction: MNXR94982 - - sbo: SBO:0000655 + - bigg.reaction: "3UMPt6" + - metanetx.reaction: "MNXR94982" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4361 - - name: Gly-Met transport via proton symport + - id: "r_4361" + - name: "Gly-Met transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95205,14 +96369,14 @@ - s_4086: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR152W or YKR093W + - gene_reaction_rule: "YJR152W or YKR093W" - annotation: !!omap - - metanetx.reaction: MNXR137072 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137072" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4362 - - name: dipeptidase + - id: "r_4362" + - name: "dipeptidase" - metabolites: !!omap - s_0810: -1 - s_3758: 1 @@ -95220,28 +96384,30 @@ - s_4087: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.4.13.18 - - metanetx.reaction: MNXR123343 - - sbo: SBO:0000176 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123343" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4363 - - name: R07420 + - id: "r_4363" + - name: "R07420" - metabolites: !!omap - s_1322: 1 - s_4088: -1 - s_4089: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - kegg.reaction: R07420 - - metanetx.reaction: MNXR111061 - - sbo: SBO:0000176 + - kegg.reaction: "R07420" + - metanetx.reaction: "MNXR111061" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4364 - - name: N-phosphocreatine transport + - id: "r_4364" + - name: "N-phosphocreatine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95249,12 +96415,13 @@ - s_4090: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4365 - - name: creatinine transport + - id: "r_4365" + - name: "creatinine transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95262,12 +96429,13 @@ - s_4091: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4366 - - name: ATP:L-arginine Nomega-phosphotransferase + - id: "r_4366" + - name: "ATP:L-arginine Nomega-phosphotransferase" - metabolites: !!omap - s_0394: -1 - s_0434: 1 @@ -95276,16 +96444,17 @@ - s_4092: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 2.7.3.3 - - bigg.reaction: ARGKr - - kegg.reaction: R00554 - - metanetx.reaction: MNXR95943 - - sbo: SBO:0000176 + - ec-code: "2.7.3.3" + - bigg.reaction: "ARGKr" + - kegg.reaction: "R00554" + - metanetx.reaction: "MNXR95943" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4367 - - name: L-arginine phosphate transport in/out via proton symport + - id: "r_4367" + - name: "L-arginine phosphate transport in/out via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95293,14 +96462,15 @@ - s_4093: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ARGPt6 - - metanetx.reaction: MNXR95947 - - sbo: SBO:0000655 + - bigg.reaction: "ARGPt6" + - metanetx.reaction: "MNXR95947" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4368 - - name: acid phosphatase / phosphotransferase + - id: "r_4368" + - name: "acid phosphatase / phosphotransferase" - metabolites: !!omap - s_0803: -1 - s_1051: 1 @@ -95308,13 +96478,14 @@ - s_4096: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR104998 - - sbo: SBO:0000176 + - metanetx.reaction: "MNXR104998" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4369 - - name: Tripolyphosphate transport in via proton symport + - id: "r_4369" + - name: "Tripolyphosphate transport in via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95322,13 +96493,14 @@ - s_4099: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR135003 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR135003" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4370 - - name: alkaline phosphatase + - id: "r_4370" + - name: "alkaline phosphatase" - metabolites: !!omap - s_0543: 1 - s_0803: -1 @@ -95336,14 +96508,15 @@ - s_4100: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.- - - metanetx.reaction: MNXR118731 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - metanetx.reaction: "MNXR118731" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4371 - - name: Cytidine- 2'- Monophosphate transport in via proton symport + - id: "r_4371" + - name: "Cytidine- 2'- Monophosphate transport in via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95351,13 +96524,14 @@ - s_4101: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR135010 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR135010" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4372 - - name: cyclic phosphodiesterase + - id: "r_4372" + - name: "cyclic phosphodiesterase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -95365,14 +96539,15 @@ - s_4102: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.4.37 - - metanetx.reaction: MNXR117327 - - sbo: SBO:0000176 + - ec-code: "3.1.4.37" + - metanetx.reaction: "MNXR117327" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4373 - - name: 2',3'-Cyclic UMP transport in via proton symport + - id: "r_4373" + - name: "2',3'-Cyclic UMP transport in via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95380,13 +96555,14 @@ - s_4103: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR136674 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR136674" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4374 - - name: 3-Sulfino-L-alanine 4-carboxy-lyase + - id: "r_4374" + - name: "3-Sulfino-L-alanine 4-carboxy-lyase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -95395,15 +96571,16 @@ - s_4104: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.13.1.- - - kegg.reaction: R00863 - - metanetx.reaction: MNXR123155 - - sbo: SBO:0000176 + - ec-code: "3.13.1.-" + - kegg.reaction: "R00863" + - metanetx.reaction: "MNXR123155" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4375 - - name: 3-Sulfino-L-alanine transport via proton antiport + - id: "r_4375" + - name: "3-Sulfino-L-alanine transport via proton antiport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95411,13 +96588,14 @@ - s_4105: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137086 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137086" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4376 - - name: adenosine 3'-phosphate phosphohydrolase + - id: "r_4376" + - name: "adenosine 3'-phosphate phosphohydrolase" - metabolites: !!omap - s_0386: 1 - s_0803: -1 @@ -95425,28 +96603,30 @@ - s_4106: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.6 - - bigg.reaction: 3NUCLE1 - - kegg.reaction: R01562 - - metanetx.reaction: MNXR94935 - - sbo: SBO:0000176 + - ec-code: "3.1.3.6" + - bigg.reaction: "3NUCLE1" + - kegg.reaction: "R01562" + - metanetx.reaction: "MNXR94935" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4377 - - name: 3AMP transport via diffusion (extracellular to periplasm) + - id: "r_4377" + - name: "3AMP transport via diffusion (extracellular to periplasm)" - metabolites: !!omap - s_4106: 1 - s_4107: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR94857 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR94857" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4378 - - name: alpha-glucosidase + - id: "r_4378" + - name: "alpha-glucosidase" - metabolites: !!omap - s_0553: 1 - s_0563: 1 @@ -95454,14 +96634,15 @@ - s_4108: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.2.1.20 - - metanetx.reaction: MNXR130717 - - sbo: SBO:0000176 + - ec-code: "3.2.1.20" + - metanetx.reaction: "MNXR130717" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4379 - - name: Palatinose transport in via proton symport + - id: "r_4379" + - name: "Palatinose transport in via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95469,14 +96650,15 @@ - s_4109: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PALAt2 - - metanetx.reaction: MNXR102339 - - sbo: SBO:0000655 + - bigg.reaction: "PALAt2" + - metanetx.reaction: "MNXR102339" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4380 - - name: Amino-Acid N-Acetyltransferase + - id: "r_4380" + - name: "Amino-Acid N-Acetyltransferase" - metabolites: !!omap - s_0373: 1 - s_0529: -1 @@ -95485,13 +96667,14 @@ - s_4110: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR103637 - - sbo: SBO:0000176 + - metanetx.reaction: "MNXR103637" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4381 - - name: Acetylcysteine transport via proton symport + - id: "r_4381" + - name: "Acetylcysteine transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95499,13 +96682,14 @@ - s_4111: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137052 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137052" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4382 - - name: thiosulfate:ferricytochrome-c oxidoreductase + - id: "r_4382" + - name: "thiosulfate:ferricytochrome-c oxidoreductase" - metabolites: !!omap - s_0709: -2 - s_0710: 2 @@ -95513,27 +96697,29 @@ - s_4113: -2 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 1.8.2.2 - - kegg.reaction: R00029 - - metanetx.reaction: MNXR138952 - - sbo: SBO:0000176 + - ec-code: "1.8.2.2" + - kegg.reaction: "R00029" + - metanetx.reaction: "MNXR138952" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4383 - - name: etrathionate transport via diffusion + - id: "r_4383" + - name: "etrathionate transport via diffusion" - metabolites: !!omap - s_4112: 1 - s_4114: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR104796 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104796" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4384 - - name: D-Gluconate:NADP+ 5-oxidoreductase + - id: "r_4384" + - name: "D-Gluconate:NADP+ 5-oxidoreductase" - metabolites: !!omap - s_0794: -1 - s_1207: 1 @@ -95542,18 +96728,19 @@ - s_4117: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.69 - - bigg.reaction: 5DGLCNR - - kegg.reaction: R01740 - - metanetx.reaction: MNXR95065 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.69" + - bigg.reaction: "5DGLCNR" + - kegg.reaction: "R01740" + - metanetx.reaction: "MNXR95065" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4385 - - name: 5-Dehydro-D-gluconate transport via proton symport + - id: "r_4385" + - name: "5-Dehydro-D-gluconate transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95561,13 +96748,14 @@ - s_4118: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95066 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95066" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4386 - - name: dipeptidase + - id: "r_4386" + - name: "dipeptidase" - metabolites: !!omap - s_0810: -1 - s_0977: 1 @@ -95575,14 +96763,15 @@ - s_4121: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.4.13.18 - - metanetx.reaction: MNXR123344 - - sbo: SBO:0000176 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123344" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4387 - - name: ala-L-asp-L transport via proton symport + - id: "r_4387" + - name: "ala-L-asp-L transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95590,14 +96779,14 @@ - s_4120: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR152W or YKR093W + - gene_reaction_rule: "YJR152W or YKR093W" - annotation: !!omap - - metanetx.reaction: MNXR137135 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137135" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4388 - - name: cyclic phosphodiesterase + - id: "r_4388" + - name: "cyclic phosphodiesterase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -95605,14 +96794,15 @@ - s_4126: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.4.37 - - metanetx.reaction: MNXR117326 - - sbo: SBO:0000176 + - ec-code: "3.1.4.37" + - metanetx.reaction: "MNXR117326" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4389 - - name: 2',3'-Cyclic CMP transport in via proton symport + - id: "r_4389" + - name: "2',3'-Cyclic CMP transport in via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95620,13 +96810,14 @@ - s_4127: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR136673 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR136673" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4390 - - name: beta-glucosidase (methyl-alpha-D-glucoside) + - id: "r_4390" + - name: "beta-glucosidase (methyl-alpha-D-glucoside)" - metabolites: !!omap - s_0563: 1 - s_0803: -1 @@ -95634,27 +96825,29 @@ - s_4123: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.2.1.21 - - metanetx.reaction: MNXR142673 - - sbo: SBO:0000176 + - ec-code: "3.2.1.21" + - metanetx.reaction: "MNXR142673" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4391 - - name: Methanol diffusion + - id: "r_4391" + - name: "Methanol diffusion" - metabolites: !!omap - s_4123: -1 - s_4124: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: MEOHt2 - - metanetx.reaction: MNXR101464 - - sbo: SBO:0000655 + - bigg.reaction: "MEOHt2" + - metanetx.reaction: "MNXR101464" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4392 - - name: alpha-Methyl-D-glucoside transport via proton symport + - id: "r_4392" + - name: "alpha-Methyl-D-glucoside transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95662,13 +96855,14 @@ - s_4125: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR144815 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR144815" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4393 - - name: ATP:D-tagatose 6-phosphotransferase + - id: "r_4393" + - name: "ATP:D-tagatose 6-phosphotransferase" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -95677,40 +96871,42 @@ - s_4129: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 2.7.1.101 - - kegg.reaction: R02927 - - metanetx.reaction: MNXR107830 - - sbo: SBO:0000176 + - ec-code: "2.7.1.101" + - kegg.reaction: "R02927" + - metanetx.reaction: "MNXR107830" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4394 - - name: D-tagatose 6-phosphate 4-epimerase + - id: "r_4394" + - name: "D-tagatose 6-phosphate 4-epimerase" - metabolites: !!omap - s_0557: 1 - s_4129: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4395 - - name: D-tagatose uptake via diffusion + - id: "r_4395" + - name: "D-tagatose uptake via diffusion" - metabolites: !!omap - s_4128: 1 - s_4130: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W + - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" - annotation: !!omap - - bigg.reaction: TAGAT_Dt - - metanetx.reaction: MNXR104707 - - sbo: SBO:0000655 + - bigg.reaction: "TAGAT_Dt" + - metanetx.reaction: "MNXR104707" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4396 - - name: Acetoacetate:CoA ligase (AMP-forming) + - id: "r_4396" + - name: "Acetoacetate:CoA ligase (AMP-forming)" - metabolites: !!omap - s_0367: 1 - s_0423: 1 @@ -95720,16 +96916,17 @@ - s_4132: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 6.2.1.16 - - bigg.reaction: AACOAT - - kegg.reaction: R01357 - - metanetx.reaction: MNXR95136 - - sbo: SBO:0000176 + - ec-code: "6.2.1.16" + - bigg.reaction: "AACOAT" + - kegg.reaction: "R01357" + - metanetx.reaction: "MNXR95136" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4397 - - name: N-Acyl-Aliphatic-L-Amino Acid Amidohydrolase + - id: "r_4397" + - name: "N-Acyl-Aliphatic-L-Amino Acid Amidohydrolase" - metabolites: !!omap - s_0362: 1 - s_0803: -1 @@ -95737,15 +96934,16 @@ - s_4134: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.5.1.14 - - bigg.reaction: RE2640C - - metanetx.reaction: MNXR103709 - - sbo: SBO:0000176 + - ec-code: "3.5.1.14" + - bigg.reaction: "RE2640C" + - metanetx.reaction: "MNXR103709" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4398 - - name: Ala-Gln transport via proton symport + - id: "r_4398" + - name: "Ala-Gln transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95753,14 +96951,14 @@ - s_4035: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR152W or YKR093W + - gene_reaction_rule: "YJR152W or YKR093W" - annotation: !!omap - - metanetx.reaction: MNXR137087 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137087" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4399 - - name: L-alanyl-L-glutamate transport in via proton symport + - id: "r_4399" + - name: "L-alanyl-L-glutamate transport in via proton symport" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -95768,13 +96966,14 @@ - s_4039: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101006 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101006" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4400 - - name: Maltodextrin glucosidase (maltotriose) + - id: "r_4400" + - name: "Maltodextrin glucosidase (maltotriose)" - metabolites: !!omap - s_0565: 1 - s_0805: -1 @@ -95782,16 +96981,17 @@ - s_4140: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.2.1.20 - - bigg.reaction: MLTG1e - - kegg.reaction: R05196 - - metanetx.reaction: MNXR101619 - - sbo: SBO:0000176 + - ec-code: "3.2.1.20" + - bigg.reaction: "MLTG1e" + - kegg.reaction: "R05196" + - metanetx.reaction: "MNXR101619" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4401 - - name: Ala-Thr transport via proton symport + - id: "r_4401" + - name: "Ala-Thr transport via proton symport" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -95799,12 +96999,13 @@ - s_4042: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4402 - - name: Ala-Thr transport via proton symport (extracellular to cytosol) + - id: "r_4402" + - name: "Ala-Thr transport via proton symport (extracellular to cytosol)" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95812,13 +97013,13 @@ - s_4041: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR152W or YKR093W + - gene_reaction_rule: "YJR152W or YKR093W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4403 - - name: Triphosphate phosphohydrolase + - id: "r_4403" + - name: "Triphosphate phosphohydrolase" - metabolites: !!omap - s_0633: 1 - s_0803: -1 @@ -95826,16 +97027,16 @@ - s_4098: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YHR201C or YDR452W + - gene_reaction_rule: "YHR201C or YDR452W" - annotation: !!omap - - ec-code: 3.6.1.25 - - kegg.reaction: R00138 - - metanetx.reaction: MNXR103069 - - sbo: SBO:0000176 + - ec-code: "3.6.1.25" + - kegg.reaction: "R00138" + - metanetx.reaction: "MNXR103069" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4404 - - name: Gly-Asn transport via proton symport (extracellular to cytosol) + - id: "r_4404" + - name: "Gly-Asn transport via proton symport (extracellular to cytosol)" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95843,24 +97044,25 @@ - s_4054: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR152W or YKR093W + - gene_reaction_rule: "YJR152W or YKR093W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4405 - - name: glycerol 1-phosphate transport + - id: "r_4405" + - name: "glycerol 1-phosphate transport" - metabolites: !!omap - s_4048: 1 - s_4049: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4406 - - name: D-O-Phosphoserine transport in/out via proton symport + - id: "r_4406" + - name: "D-O-Phosphoserine transport in/out via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95868,14 +97070,15 @@ - s_4078: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PSER_Dt6 - - metanetx.reaction: MNXR103244 - - sbo: SBO:0000655 + - bigg.reaction: "PSER_Dt6" + - metanetx.reaction: "MNXR103244" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4407 - - name: D-O-Phosphoserine phosphohydrolase + - id: "r_4407" + - name: "D-O-Phosphoserine phosphohydrolase" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -95883,16 +97086,17 @@ - s_4077: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.3 - - bigg.reaction: PSP_D - - kegg.reaction: R02853 - - metanetx.reaction: MNXR103265 - - sbo: SBO:0000176 + - ec-code: "3.1.3.3" + - bigg.reaction: "PSP_D" + - kegg.reaction: "R02853" + - metanetx.reaction: "MNXR103265" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4408 - - name: L-alanyl-L-glutamate transport in via proton symport + - id: "r_4408" + - name: "L-alanyl-L-glutamate transport in via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -95900,14 +97104,14 @@ - s_4038: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR152W or YKR093W + - gene_reaction_rule: "YJR152W or YKR093W" - annotation: !!omap - - metanetx.reaction: MNXR101006 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101006" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4409 - - name: L-alanyl-gamma-L-glutamate peptidase + - id: "r_4409" + - name: "L-alanyl-gamma-L-glutamate peptidase" - metabolites: !!omap - s_0810: -1 - s_0996: 1 @@ -95915,29 +97119,31 @@ - s_4039: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.4.13.18 - - metanetx.reaction: MNXR101011 - - sbo: SBO:0000176 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR101011" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4410 - - name: 3-oxalomalate glyoxylate-lyase (oxaloacetate-forming) + - id: "r_4410" + - name: "3-oxalomalate glyoxylate-lyase (oxaloacetate-forming)" - metabolites: !!omap - s_0779: 1 - s_1271: 1 - s_4136: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 4.1.3.13 - - kegg.reaction: R00477 - - metanetx.reaction: MNXR106549 - - sbo: SBO:0000176 + - ec-code: "4.1.3.13" + - kegg.reaction: "R00477" + - metanetx.reaction: "MNXR106549" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4411 - - name: L-cysteate bisulfite-lyase (deaminating) + - id: "r_4411" + - name: "L-cysteate bisulfite-lyase (deaminating)" - metabolites: !!omap - s_0419: 1 - s_0794: 1 @@ -95947,15 +97153,16 @@ - s_4138: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 4.4.1.25 - - kegg.reaction: R07634 - - metanetx.reaction: MNXR111236 - - sbo: SBO:0000176 + - ec-code: "4.4.1.25" + - kegg.reaction: "R07634" + - metanetx.reaction: "MNXR111236" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4412 - - name: cyclic phosphodiesterase + - id: "r_4412" + - name: "cyclic phosphodiesterase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -95963,14 +97170,15 @@ - s_4094: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.4.37 - - metanetx.reaction: MNXR117325 - - sbo: SBO:0000176 + - ec-code: "3.1.4.37" + - metanetx.reaction: "MNXR117325" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4413 - - name: deoxynucleotide 3'-phosphatase + - id: "r_4413" + - name: "deoxynucleotide 3'-phosphatase" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -95978,14 +97186,15 @@ - s_4044: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.34 - - metanetx.reaction: MNXR118741 - - sbo: SBO:0000176 + - ec-code: "3.1.3.34" + - metanetx.reaction: "MNXR118741" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4414 - - name: cytosol nonspecific dipeptidase + - id: "r_4414" + - name: "cytosol nonspecific dipeptidase" - metabolites: !!omap - s_0810: -1 - s_1002: 1 @@ -95993,14 +97202,15 @@ - s_4036: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.4.13.18 - - metanetx.reaction: MNXR123345 - - sbo: SBO:0000176 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123345" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4415 - - name: Cytosol non-specific dipeptidase + - id: "r_4415" + - name: "Cytosol non-specific dipeptidase" - metabolites: !!omap - s_0810: -1 - s_1009: 1 @@ -96008,14 +97218,15 @@ - s_4052: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.4.13.18 - - metanetx.reaction: MNXR123347 - - sbo: SBO:0000176 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123347" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4416 - - name: Cytosol non-specific dipeptidase + - id: "r_4416" + - name: "Cytosol non-specific dipeptidase" - metabolites: !!omap - s_0810: -1 - s_3759: 1 @@ -96023,14 +97234,15 @@ - s_4043: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.4.13.18 - - metanetx.reaction: MNXR123349 - - sbo: SBO:0000176 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123349" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4417 - - name: Cytosol non-specific dipeptidase + - id: "r_4417" + - name: "Cytosol non-specific dipeptidase" - metabolites: !!omap - s_0810: -1 - s_0972: 1 @@ -96038,14 +97250,15 @@ - s_4055: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.4.13.18 - - metanetx.reaction: MNXR123350 - - sbo: SBO:0000176 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123350" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4418 - - name: Cytosol non-specific dipeptidase + - id: "r_4418" + - name: "Cytosol non-specific dipeptidase" - metabolites: !!omap - s_0810: -1 - s_1002: 1 @@ -96053,14 +97266,15 @@ - s_4058: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.4.13.18 - - metanetx.reaction: MNXR123351 - - sbo: SBO:0000176 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123351" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4419 - - name: L-Cysteate transport via proton symport + - id: "r_4419" + - name: "L-Cysteate transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96068,13 +97282,14 @@ - s_4139: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR124424 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR124424" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4420 - - name: alpha-glucosidase + - id: "r_4420" + - name: "alpha-glucosidase" - metabolites: !!omap - s_0554: 1 - s_0565: 1 @@ -96082,14 +97297,15 @@ - s_4131: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.2.1.20 - - metanetx.reaction: MNXR130716 - - sbo: SBO:0000176 + - ec-code: "3.2.1.20" + - metanetx.reaction: "MNXR130716" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4421 - - name: 2-Hydroxyethanesulfonate transport via proton symport + - id: "r_4421" + - name: "2-Hydroxyethanesulfonate transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96097,13 +97313,14 @@ - s_4116: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137058 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137058" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4422 - - name: 3-Oxalomalate transport via proton symport + - id: "r_4422" + - name: "3-Oxalomalate transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96111,13 +97328,14 @@ - s_4137: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137067 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137067" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4423 - - name: Gly-Met transport via proton symport + - id: "r_4423" + - name: "Gly-Met transport via proton symport" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -96125,13 +97343,14 @@ - s_4087: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137072 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137072" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4424 - - name: Gly-Gln transport via proton symport + - id: "r_4424" + - name: "Gly-Gln transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96139,14 +97358,14 @@ - s_4057: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR152W or YKR093W + - gene_reaction_rule: "YJR152W or YKR093W" - annotation: !!omap - - metanetx.reaction: MNXR137074 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137074" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4425 - - name: Gly-Gln transport via proton symport + - id: "r_4425" + - name: "Gly-Gln transport via proton symport" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -96154,13 +97373,14 @@ - s_4058: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137074 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137074" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4426 - - name: Ala-Gln transport via proton symport + - id: "r_4426" + - name: "Ala-Gln transport via proton symport" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -96168,13 +97388,14 @@ - s_4036: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137087 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137087" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4427 - - name: N-Acetylmethionine transport via proton symport + - id: "r_4427" + - name: "N-Acetylmethionine transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96182,13 +97403,14 @@ - s_4135: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137089 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137089" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4428 - - name: Phosphotyrosine transport via proton symport + - id: "r_4428" + - name: "Phosphotyrosine transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96196,13 +97418,14 @@ - s_4097: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137095 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137095" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4429 - - name: Ala-His transport via proton symport + - id: "r_4429" + - name: "Ala-His transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96210,14 +97433,14 @@ - s_4051: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR152W or YKR093W + - gene_reaction_rule: "YJR152W or YKR093W" - annotation: !!omap - - metanetx.reaction: MNXR137107 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137107" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4430 - - name: Ala-His transport via proton symport + - id: "r_4430" + - name: "Ala-His transport via proton symport" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -96225,13 +97448,14 @@ - s_4052: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137107 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137107" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4431 - - name: ala-L-asp-L transport via proton symport + - id: "r_4431" + - name: "ala-L-asp-L transport via proton symport" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -96239,13 +97463,14 @@ - s_4121: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137135 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137135" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4432 - - name: FMNH2-dependent alkanesulfonate monooxygenase + - id: "r_4432" + - name: "FMNH2-dependent alkanesulfonate monooxygenase" - metabolites: !!omap - s_0714: 1 - s_0717: -1 @@ -96257,37 +97482,40 @@ - s_4115: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 1.14.14.5 - - bigg.reaction: FDMO - - metanetx.reaction: MNXR99485 - - sbo: SBO:0000176 + - ec-code: "1.14.14.5" + - bigg.reaction: "FDMO" + - metanetx.reaction: "MNXR99485" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4433 - - name: thymidine 3-monophosphate transport + - id: "r_4433" + - name: "thymidine 3-monophosphate transport" - metabolites: !!omap - s_4044: 1 - s_4045: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4434 - - name: thymidine 5-monophosphate transport + - id: "r_4434" + - name: "thymidine 5-monophosphate transport" - metabolites: !!omap - s_4046: 1 - s_4047: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4435 - - name: glycerol-1-phosphate phosphohydrolase + - id: "r_4435" + - name: "glycerol-1-phosphate phosphohydrolase" - metabolites: !!omap - s_0765: 1 - s_0803: -1 @@ -96295,15 +97523,15 @@ - s_4048: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YIL053W or YER062C + - gene_reaction_rule: "YIL053W or YER062C" - annotation: !!omap - - kegg.reaction: R08658 - - metanetx.reaction: MNXR112173 - - sbo: SBO:0000176 + - kegg.reaction: "R08658" + - metanetx.reaction: "MNXR112173" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4436 - - name: nucleotide-specific phosphatase (thymidine 5'-monophosphate) + - id: "r_4436" + - name: "nucleotide-specific phosphatase (thymidine 5'-monophosphate)" - metabolites: !!omap - s_0803: -1 - s_1322: 1 @@ -96311,12 +97539,13 @@ - s_4046: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4437 - - name: Gly-Glu transport via proton symport (extracellular to cytosol) + - id: "r_4437" + - name: "Gly-Glu transport via proton symport (extracellular to cytosol)" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96324,13 +97553,13 @@ - s_4060: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR152W or YKR093W + - gene_reaction_rule: "YJR152W or YKR093W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4438 - - name: Gly-Glu transport via proton symport (cytosol to vacuole) + - id: "r_4438" + - name: "Gly-Glu transport via proton symport (cytosol to vacuole)" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -96338,12 +97567,13 @@ - s_4061: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4439 - - name: cytosol nonspecific dipeptidase + - id: "r_4439" + - name: "cytosol nonspecific dipeptidase" - metabolites: !!omap - s_0810: -1 - s_0996: 1 @@ -96351,58 +97581,63 @@ - s_4061: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.4.13.18 - - metanetx.reaction: MNXR123352 - - sbo: SBO:0000176 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123352" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4440 - - name: L-methionine transport, vacuoluar + - id: "r_4440" + - name: "L-methionine transport, vacuoluar" - metabolites: !!omap - s_1029: -1 - s_3758: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4441 - - name: L-threonine transport, vacuoluar + - id: "r_4441" + - name: "L-threonine transport, vacuoluar" - metabolites: !!omap - s_1045: -1 - s_4043: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4442 - - name: cysteamine exchange + - id: "r_4442" + - name: "cysteamine exchange" - metabolites: !!omap - s_4074: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_cysam_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_cysam_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4443 - - name: 23cGMP transport via diffusion (extracellular to periplasm) + - id: "r_4443" + - name: "23cGMP transport via diffusion (extracellular to periplasm)" - metabolites: !!omap - s_4094: 1 - s_4095: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR94721 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR94721" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4444 - - name: D-Glycerate 2-phosphate transport in/out via proton symport + - id: "r_4444" + - name: "D-Glycerate 2-phosphate transport in/out via proton symport" - metabolites: !!omap - s_0188: 1 - s_0794: 1 @@ -96410,14 +97645,15 @@ - s_4141: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 2PGt6 - - metanetx.reaction: MNXR94824 - - sbo: SBO:0000655 + - bigg.reaction: "2PGt6" + - metanetx.reaction: "MNXR94824" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4445 - - name: 3-Phospho-D-glycerate transport in/out via proton symport + - id: "r_4445" + - name: "3-Phospho-D-glycerate transport in/out via proton symport" - metabolites: !!omap - s_0260: 1 - s_0794: 1 @@ -96425,38 +97661,41 @@ - s_4142: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 3PGt6 - - metanetx.reaction: MNXR94973 - - sbo: SBO:0000655 + - bigg.reaction: "3PGt6" + - metanetx.reaction: "MNXR94973" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4446 - - name: D-glucose 1-phosphate transport via diffusion + - id: "r_4446" + - name: "D-glucose 1-phosphate transport via diffusion" - metabolites: !!omap - s_0567: 1 - s_4145: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99849 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99849" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4447 - - name: carbamoyl phosphate nuclear transport via diffusion + - id: "r_4447" + - name: "carbamoyl phosphate nuclear transport via diffusion" - metabolites: !!omap - s_0455: 1 - s_4146: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR96488 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96488" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4448 - - name: Met-Ala transport via proton symport (extracellular to cytosol) + - id: "r_4448" + - name: "Met-Ala transport via proton symport (extracellular to cytosol)" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96464,13 +97703,13 @@ - s_4144: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR152W or YKR093W + - gene_reaction_rule: "YJR152W or YKR093W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4449 - - name: Met-Ala transport via proton symport (cytosol to vacuole) + - id: "r_4449" + - name: "Met-Ala transport via proton symport (cytosol to vacuole)" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -96478,12 +97717,13 @@ - s_4144: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4450 - - name: O-Phospho-L-serine transport in via proton symport + - id: "r_4450" + - name: "O-Phospho-L-serine transport in via proton symport" - metabolites: !!omap - s_0259: 1 - s_0794: 1 @@ -96491,14 +97731,15 @@ - s_4147: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PSER_Lt6 - - metanetx.reaction: MNXR103245 - - sbo: SBO:0000655 + - bigg.reaction: "PSER_Lt6" + - metanetx.reaction: "MNXR103245" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4451 - - name: GMP transport via proton symport + - id: "r_4451" + - name: "GMP transport via proton symport" - metabolites: !!omap - s_0782: 1 - s_0794: 1 @@ -96506,50 +97747,54 @@ - s_4148: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GMPt6 - - metanetx.reaction: MNXR100385 - - sbo: SBO:0000655 + - bigg.reaction: "GMPt6" + - metanetx.reaction: "MNXR100385" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4452 - - name: myo-inositol phosphate transport via diffusion (extracellular to periplasm) + - id: "r_4452" + - name: "myo-inositol phosphate transport via diffusion (extracellular to periplasm)" - metabolites: !!omap - s_1158: 1 - s_4149: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101585 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101585" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4453 - - name: D-glucose 6-phosphate transport + - id: "r_4453" + - name: "D-glucose 6-phosphate transport" - metabolites: !!omap - s_0568: 1 - s_4150: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99915 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99915" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4454 - - name: UMP transport + - id: "r_4454" + - name: "UMP transport" - metabolites: !!omap - s_1545: 1 - s_4151: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR105127 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR105127" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4455 - - name: Phosphoenolpyruvate transport in via proton symport + - id: "r_4455" + - name: "Phosphoenolpyruvate transport in via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96557,26 +97802,28 @@ - s_4152: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PEPt6 - - metanetx.reaction: MNXR102493 - - sbo: SBO:0000655 + - bigg.reaction: "PEPt6" + - metanetx.reaction: "MNXR102493" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4456 - - name: Mannose 6-phosphate transport via diffusion (extracellular to periplasm) + - id: "r_4456" + - name: "Mannose 6-phosphate transport via diffusion (extracellular to periplasm)" - metabolites: !!omap - s_0574: 1 - s_4153: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101385 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101385" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4457 - - name: O-Phosphoryl-Ethanolamine transport in via proton symport + - id: "r_4457" + - name: "O-Phosphoryl-Ethanolamine transport in via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96584,14 +97831,14 @@ - s_4154: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR093W + - gene_reaction_rule: "YDR093W" - annotation: !!omap - - metanetx.reaction: MNXR135002 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR135002" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4458 - - name: 6-Phospho-D-gluconate transport in/out via proton symport + - id: "r_4458" + - name: "6-Phospho-D-gluconate transport in/out via proton symport" - metabolites: !!omap - s_0340: 1 - s_0794: 1 @@ -96599,14 +97846,15 @@ - s_4155: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: 6PGCt6 - - metanetx.reaction: MNXR95102 - - sbo: SBO:0000655 + - bigg.reaction: "6PGCt6" + - metanetx.reaction: "MNXR95102" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4459 - - name: MAN1P transport in/out via proton symport + - id: "r_4459" + - name: "MAN1P transport in/out via proton symport" - metabolites: !!omap - s_0573: 1 - s_0794: 1 @@ -96614,14 +97862,15 @@ - s_4156: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: MAN1Pt6 - - metanetx.reaction: MNXR101377 - - sbo: SBO:0000655 + - bigg.reaction: "MAN1Pt6" + - metanetx.reaction: "MNXR101377" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4460 - - name: Pyrophosphate transport in via proton symport + - id: "r_4460" + - name: "Pyrophosphate transport in via proton symport" - metabolites: !!omap - s_0633: 1 - s_0794: 2 @@ -96629,39 +97878,42 @@ - s_4157: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR136667 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR136667" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4461 - - name: Choline phosphate intracellular transport + - id: "r_4461" + - name: "Choline phosphate intracellular transport" - metabolites: !!omap - s_0514: 1 - s_4158: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CHOLPtr - - metanetx.reaction: MNXR96703 - - sbo: SBO:0000655 + - bigg.reaction: "CHOLPtr" + - metanetx.reaction: "MNXR96703" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4462 - - name: thiosulfate transport + - id: "r_4462" + - name: "thiosulfate transport" - metabolites: !!omap - s_4113: 1 - s_4159: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: TSULt - - metanetx.reaction: MNXR104966 - - sbo: SBO:0000655 + - bigg.reaction: "TSULt" + - metanetx.reaction: "MNXR104966" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4463 - - name: AMP transport in/out via proton symport + - id: "r_4463" + - name: "AMP transport in/out via proton symport" - metabolites: !!omap - s_0423: 1 - s_0794: 1 @@ -96669,26 +97921,28 @@ - s_4160: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: AMPt6 - - metanetx.reaction: MNXR95831 - - sbo: SBO:0000655 + - bigg.reaction: "AMPt6" + - metanetx.reaction: "MNXR95831" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4464 - - name: 23cAMP transport via diffusion (extracellular to periplasm) + - id: "r_4464" + - name: "23cAMP transport via diffusion (extracellular to periplasm)" - metabolites: !!omap - s_0131: 1 - s_4161: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR94718 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR94718" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4465 - - name: Adenosine- 2'-Monophosphate transport in via proton symport + - id: "r_4465" + - name: "Adenosine- 2'-Monophosphate transport in via proton symport" - metabolites: !!omap - s_0389: 1 - s_0794: 1 @@ -96696,13 +97950,14 @@ - s_4162: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR135007 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR135007" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4466 - - name: CMP transport in/out via proton symport + - id: "r_4466" + - name: "CMP transport in/out via proton symport" - metabolites: !!omap - s_0526: 1 - s_0794: 1 @@ -96710,40 +97965,42 @@ - s_4163: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: CMPt6 - - metanetx.reaction: MNXR96805 - - sbo: SBO:0000655 + - bigg.reaction: "CMPt6" + - metanetx.reaction: "MNXR96805" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4467 - - name: D-glucosamine transport via diffusion (extracellular to periplasm) + - id: "r_4467" + - name: "D-glucosamine transport via diffusion (extracellular to periplasm)" - metabolites: !!omap - s_3953: 1 - s_4164: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GAMt1r - - metanetx.reaction: MNXR100035 - - sbo: SBO:0000655 + - bigg.reaction: "GAMt1r" + - metanetx.reaction: "MNXR100035" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4468 - - name: 2-deoxy-D-ribose transport + - id: "r_4468" + - name: "2-deoxy-D-ribose transport" - metabolites: !!omap - s_0152: 1 - s_4165: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YDR342C or YHR092C + - gene_reaction_rule: "YDR342C or YHR092C" - annotation: !!omap - - bigg.reaction: DRIBt - - sbo: SBO:0000655 + - bigg.reaction: "DRIBt" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4469 - - name: L-Citrulline transport in via proton symport + - id: "r_4469" + - name: "L-Citrulline transport in via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96751,28 +98008,29 @@ - s_4166: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YKR039W + - gene_reaction_rule: "YKR039W" - annotation: !!omap - - bigg.reaction: CITRt2r - - metanetx.reaction: MNXR96737 - - sbo: SBO:0000655 + - bigg.reaction: "CITRt2r" + - metanetx.reaction: "MNXR96737" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4470 - - name: Dihydroxyacetone transport via facilitated diffusion + - id: "r_4470" + - name: "Dihydroxyacetone transport via facilitated diffusion" - metabolites: !!omap - s_0771: 1 - s_4167: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: DHAt - - metanetx.reaction: MNXR97367 - - sbo: SBO:0000655 + - bigg.reaction: "DHAt" + - metanetx.reaction: "MNXR97367" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4471 - - name: Ala-Leu transport via proton symport (extracellular to cytosol) + - id: "r_4471" + - name: "Ala-Leu transport via proton symport (extracellular to cytosol)" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96780,13 +98038,13 @@ - s_4169: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR152W or YKR093W + - gene_reaction_rule: "YJR152W or YKR093W" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4472 - - name: Ala-Leu transport via proton symport (cytosol to vacuole) + - id: "r_4472" + - name: "Ala-Leu transport via proton symport (cytosol to vacuole)" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -96794,12 +98052,13 @@ - s_4169: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4473 - - name: L-alanylglycine transport via proton antiport + - id: "r_4473" + - name: "L-alanylglycine transport via proton antiport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96807,14 +98066,14 @@ - s_4171: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR152W or YKR093W + - gene_reaction_rule: "YJR152W or YKR093W" - annotation: !!omap - - metanetx.reaction: MNXR137133 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137133" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4474 - - name: L-alanylglycine transport via proton antiport + - id: "r_4474" + - name: "L-alanylglycine transport via proton antiport" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -96822,37 +98081,40 @@ - s_4171: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137133 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137133" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4475 - - name: N-acetyl-L-glutamate transport + - id: "r_4475" + - name: "N-acetyl-L-glutamate transport" - metabolites: !!omap - s_4172: -1 - s_4173: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ACGLUtd - - sbo: SBO:0000655 + - bigg.reaction: "ACGLUtd" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4476 - - name: N-acetyl-L-glutamate transport + - id: "r_4476" + - name: "N-acetyl-L-glutamate transport" - metabolites: !!omap - s_1192: 1 - s_4173: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ACGLUtm - - sbo: SBO:0000655 + - bigg.reaction: "ACGLUtm" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4477 - - name: Lipoamide transport via proton symport + - id: "r_4477" + - name: "Lipoamide transport via proton symport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96860,26 +98122,28 @@ - s_4175: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: LPAMt - - metanetx.reaction: MNXR137094 - - sbo: SBO:0000655 + - bigg.reaction: "LPAMt" + - metanetx.reaction: "MNXR137094" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4478 - - name: L-methionine S-oxide transport via diffusion (extracellular) + - id: "r_4478" + - name: "L-methionine S-oxide transport via diffusion (extracellular)" - metabolites: !!omap - s_3837: 1 - s_4176: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101483 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101483" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4479 - - name: Gly-Asn transport via proton symport + - id: "r_4479" + - name: "Gly-Asn transport via proton symport" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -96887,12 +98151,13 @@ - s_4055: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4480 - - name: Cysteamine transport via proton antiport + - id: "r_4480" + - name: "Cysteamine transport via proton antiport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -96900,13 +98165,14 @@ - s_4074: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137130 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR137130" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4481 - - name: Hydrogen sulfide oxidation + - id: "r_4481" + - name: "Hydrogen sulfide oxidation" - metabolites: !!omap - s_0794: 1 - s_0841: -1 @@ -96914,12 +98180,13 @@ - s_1467: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4482 - - name: L-alanine transport in via proton symport + - id: "r_4482" + - name: "L-alanine transport in via proton symport" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -96927,13 +98194,14 @@ - s_3759: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95704 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95704" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4483 - - name: Glycine transport (vacuole) + - id: "r_4483" + - name: "Glycine transport (vacuole)" - metabolites: !!omap - s_0794: -1 - s_0802: 1 @@ -96941,13 +98209,14 @@ - s_3839: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100368 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100368" + - sbo: "SBO:0000655" - confidence_score: 1 - !!omap - - id: r_4484 - - name: O4-succinyl-L-homoserine:hydrogen sulfide S-(3-amino-3-carboxypropyl)transferase; O-succinyl-L-homoserine succinate-lyase (adding hydrogen sulfide) + - id: "r_4484" + - name: "O4-succinyl-L-homoserine:hydrogen sulfide S-(3-amino-3-carboxypropyl)transferase; O-succinyl-L-homoserine succinate-lyase (adding hydrogen sulfide)" - metabolites: !!omap - s_0841: -1 - s_1012: 1 @@ -96955,19 +98224,19 @@ - s_1458: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YJR130C or YLL058W or YML082W + - gene_reaction_rule: "YJR130C or YLL058W or YML082W" - annotation: !!omap - ec-code: - - 2.5.1.- - - 2.5.1.48 - - bigg.reaction: SHSL2 - - kegg.reaction: R01288 - - metanetx.reaction: MNXR104382 - - sbo: SBO:0000176 + - "2.5.1.-" + - "2.5.1.48" + - bigg.reaction: "SHSL2" + - kegg.reaction: "R01288" + - metanetx.reaction: "MNXR104382" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4485 - - name: 4-Hydroxyphenylpyruvate:oxygen oxidoreductase (hydroxylating,decarboxylating) + - id: "r_4485" + - name: "4-Hydroxyphenylpyruvate:oxygen oxidoreductase (hydroxylating,decarboxylating)" - metabolites: !!omap - s_0204: -1 - s_0456: 1 @@ -96975,16 +98244,17 @@ - s_4177: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 1.13.11.27 - - bigg.reaction: 34HPPOR - - kegg.reaction: R02521 - - metanetx.reaction: MNXR94843 - - sbo: SBO:0000176 + - ec-code: "1.13.11.27" + - bigg.reaction: "34HPPOR" + - kegg.reaction: "R02521" + - metanetx.reaction: "MNXR94843" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4486 - - name: Homogentisate:oxygen 1,2-oxidoreductase (decyclizing) + - id: "r_4486" + - name: "Homogentisate:oxygen 1,2-oxidoreductase (decyclizing)" - metabolites: !!omap - s_0794: 1 - s_1275: -1 @@ -96992,31 +98262,33 @@ - s_4178: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 1.13.11.5 - - bigg.reaction: HGNTOR - - kegg.reaction: R02519 - - metanetx.reaction: MNXR100628 - - sbo: SBO:0000176 + - ec-code: "1.13.11.5" + - bigg.reaction: "HGNTOR" + - kegg.reaction: "R02519" + - metanetx.reaction: "MNXR100628" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4487 - - name: 4-Maleylacetoacetate cis-trans-isomerase + - id: "r_4487" + - name: "4-Maleylacetoacetate cis-trans-isomerase" - metabolites: !!omap - s_4178: -1 - s_4179: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 5.2.1.2 - - bigg.reaction: MACACI - - kegg.reaction: R03181 - - metanetx.reaction: MNXR101325 - - sbo: SBO:0000176 + - ec-code: "5.2.1.2" + - bigg.reaction: "MACACI" + - kegg.reaction: "R03181" + - metanetx.reaction: "MNXR101325" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4488 - - name: 4-fumarylacetoacetate fumarylhydrolase + - id: "r_4488" + - name: "4-fumarylacetoacetate fumarylhydrolase" - metabolites: !!omap - s_0725: 1 - s_0794: 1 @@ -97025,16 +98297,17 @@ - s_4179: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.7.1.2 - - bigg.reaction: FUMAC - - kegg.reaction: R01364 - - metanetx.reaction: MNXR99706 - - sbo: SBO:0000176 + - ec-code: "3.7.1.2" + - bigg.reaction: "FUMAC" + - kegg.reaction: "R01364" + - metanetx.reaction: "MNXR99706" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4489 - - name: L-arabinitol:NAD+ 4-oxidoreductase (L-xylulose-forming) + - id: "r_4489" + - name: "L-arabinitol:NAD+ 4-oxidoreductase (L-xylulose-forming)" - metabolites: !!omap - s_0794: 1 - s_0961: -1 @@ -97043,16 +98316,17 @@ - s_4180: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 1.1.1.12 - - bigg.reaction: ABTD - - kegg.reaction: R01903 - - metanetx.reaction: MNXR137988 - - sbo: SBO:0000176 + - ec-code: "1.1.1.12" + - bigg.reaction: "ABTD" + - kegg.reaction: "R01903" + - metanetx.reaction: "MNXR137988" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4490 - - name: Xylitol:NADP+ 4-oxidoreductase (L-xylulose-forming) + - id: "r_4490" + - name: "Xylitol:NADP+ 4-oxidoreductase (L-xylulose-forming)" - metabolites: !!omap - s_0794: -1 - s_1207: 1 @@ -97061,16 +98335,17 @@ - s_4180: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 1.1.1.10 - - bigg.reaction: XYLUR - - kegg.reaction: R01904 - - metanetx.reaction: MNXR105265 - - sbo: SBO:0000176 + - ec-code: "1.1.1.10" + - bigg.reaction: "XYLUR" + - kegg.reaction: "R01904" + - metanetx.reaction: "MNXR105265" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4491 - - name: arabinose reductase (D-arabinose) + - id: "r_4491" + - name: "arabinose reductase (D-arabinose)" - metabolites: !!omap - s_0548: -1 - s_0794: -1 @@ -97079,12 +98354,13 @@ - s_4181: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000176 + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4492 - - name: D-arabinitol:NAT 4-oxidoreductase + - id: "r_4492" + - name: "D-arabinitol:NAT 4-oxidoreductase" - metabolites: !!omap - s_0580: 1 - s_0794: 1 @@ -97093,40 +98369,42 @@ - s_4181: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 1.1.1.11 - - bigg.reaction: ABTDG - - kegg.reaction: R05604 - - metanetx.reaction: MNXR95188 - - sbo: SBO:0000176 + - ec-code: "1.1.1.11" + - bigg.reaction: "ABTDG" + - kegg.reaction: "R05604" + - metanetx.reaction: "MNXR95188" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4493 - - name: Acetoacetate transport via diffusion + - id: "r_4493" + - name: "Acetoacetate transport via diffusion" - metabolites: !!omap - s_4132: 1 - s_4133: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL065W + - gene_reaction_rule: "YNL065W" - annotation: !!omap - - metanetx.reaction: MNXR95208 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95208" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4494 - - name: methanol exchange + - id: "r_4494" + - name: "methanol exchange" - metabolites: !!omap - s_4124: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_meoh_e - - metanetx.reaction: MNXR101464 - - sbo: SBO:0000627 + - bigg.reaction: "EX_meoh_e" + - metanetx.reaction: "MNXR101464" + - sbo: "SBO:0000627" - !!omap - - id: r_4495 - - name: alkaline phosphatase + - id: "r_4495" + - name: "alkaline phosphatase" - metabolites: !!omap - s_0386: 1 - s_0389: -1 @@ -97134,700 +98412,771 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.1.3.- - - metanetx.reaction: MNXR118733 - - sbo: SBO:0000176 + - ec-code: "3.1.3.-" + - metanetx.reaction: "MNXR118733" + - sbo: "SBO:0000176" - confidence_score: 1 - !!omap - - id: r_4496 - - name: Ala-Gly exchange + - id: "r_4496" + - name: "Ala-Gly exchange" - metabolites: !!omap - s_4170: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_L_alagly_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_L_alagly_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4497 - - name: 3-oxalomalate(3-) exchange + - id: "r_4497" + - name: "3-oxalomalate(3-) exchange" - metabolites: !!omap - s_4137: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4498 - - name: 6-O-alpha-D-glucopyranosyl-D-fructofuranose exchange + - id: "r_4498" + - name: "6-O-alpha-D-glucopyranosyl-D-fructofuranose exchange" - metabolites: !!omap - s_4109: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pala_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pala_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4499 - - name: 5-dehydro-D-gluconate exchange + - id: "r_4499" + - name: "5-dehydro-D-gluconate exchange" - metabolites: !!omap - s_4118: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_5dglcn_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_5dglcn_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4500 - - name: D-tagatose exchange + - id: "r_4500" + - name: "D-tagatose exchange" - metabolites: !!omap - s_4130: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_tag__D_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_tag__D_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4501 - - name: turanose exchange + - id: "r_4501" + - name: "turanose exchange" - metabolites: !!omap - s_4131: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4502 - - name: D-glucose 6-phosphate exchange + - id: "r_4502" + - name: "D-glucose 6-phosphate exchange" - metabolites: !!omap - s_4150: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_g6p_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_g6p_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4503 - - name: alpha-maltotriose exchange + - id: "r_4503" + - name: "alpha-maltotriose exchange" - metabolites: !!omap - s_4140: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_malttr_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_malttr_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4504 - - name: D-glucose 1-phosphate exchange + - id: "r_4504" + - name: "D-glucose 1-phosphate exchange" - metabolites: !!omap - s_4145: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_g1p_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_g1p_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4505 - - name: methyl alpha-D-glucopyranoside exchange + - id: "r_4505" + - name: "methyl alpha-D-glucopyranoside exchange" - metabolites: !!omap - s_4125: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_madg_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_madg_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4506 - - name: D-Glucosamine exchange + - id: "r_4506" + - name: "D-Glucosamine exchange" - metabolites: !!omap - s_4164: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gam_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gam_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4507 - - name: glycerone exchange + - id: "r_4507" + - name: "glycerone exchange" - metabolites: !!omap - s_4167: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_dha_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_dha_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4508 - - name: Ala-Gln exchange + - id: "r_4508" + - name: "Ala-Gln exchange" - metabolites: !!omap - s_4034: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ala_L_gln__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ala_L_gln__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4509 - - name: Ala-Leu exchange + - id: "r_4509" + - name: "Ala-Leu exchange" - metabolites: !!omap - s_4168: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4510 - - name: Gly-Gln exchange + - id: "r_4510" + - name: "Gly-Gln exchange" - metabolites: !!omap - s_4056: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gly_gln__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gly_gln__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4511 - - name: Ala-His exchange + - id: "r_4511" + - name: "Ala-His exchange" - metabolites: !!omap - s_4050: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ala_L_his__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ala_L_his__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4512 - - name: Gly-Asn exchange + - id: "r_4512" + - name: "Gly-Asn exchange" - metabolites: !!omap - s_4053: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gly_asn__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gly_asn__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4513 - - name: Ala-Glu exchange + - id: "r_4513" + - name: "Ala-Glu exchange" - metabolites: !!omap - s_4037: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_LalaLglu_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_LalaLglu_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4514 - - name: Gly-Met exchange + - id: "r_4514" + - name: "Gly-Met exchange" - metabolites: !!omap - s_4085: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gly_met__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gly_met__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4515 - - name: Ala-Asp exchange + - id: "r_4515" + - name: "Ala-Asp exchange" - metabolites: !!omap - s_4119: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ala_L_asp__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ala_L_asp__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4516 - - name: Gly-Glu exchange + - id: "r_4516" + - name: "Gly-Glu exchange" - metabolites: !!omap - s_4059: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gly_glu__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gly_glu__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4517 - - name: Ala-Thr exchange + - id: "r_4517" + - name: "Ala-Thr exchange" - metabolites: !!omap - s_4040: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ala_L_Thr__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ala_L_Thr__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4518 - - name: Met-Ala exchange + - id: "r_4518" + - name: "Met-Ala exchange" - metabolites: !!omap - s_4143: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_met_L_ala__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_met_L_ala__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4519 - - name: L-citrulline exchange + - id: "r_4519" + - name: "L-citrulline exchange" - metabolites: !!omap - s_4166: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_citr__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_citr__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4520 - - name: 2-aminobutanoate exchange + - id: "r_4520" + - name: "2-aminobutanoate exchange" - metabolites: !!omap - s_4080: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_C02356_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_C02356_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4521 - - name: choline phosphate exchange + - id: "r_4521" + - name: "choline phosphate exchange" - metabolites: !!omap - s_4158: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_cholp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_cholp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4522 - - name: glycerol 1-phosphate exchange + - id: "r_4522" + - name: "glycerol 1-phosphate exchange" - metabolites: !!omap - s_4049: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4523 - - name: 2-phospho-D-glyceric acid exchange + - id: "r_4523" + - name: "2-phospho-D-glyceric acid exchange" - metabolites: !!omap - s_4141: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_2pg_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_2pg_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4524 - - name: GMP exchange + - id: "r_4524" + - name: "GMP exchange" - metabolites: !!omap - s_4148: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_gmp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_gmp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4525 - - name: 3-phospho-serine exchange + - id: "r_4525" + - name: "3-phospho-serine exchange" - metabolites: !!omap - s_4147: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pser__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pser__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4526 - - name: O-phosphonatooxy-D-serine(2-) exchange + - id: "r_4526" + - name: "O-phosphonatooxy-D-serine(2-) exchange" - metabolites: !!omap - s_4078: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pser__D_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pser__D_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4527 - - name: diphosphate exchange + - id: "r_4527" + - name: "diphosphate exchange" - metabolites: !!omap - s_4157: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ppi_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ppi_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4528 - - name: triphosphate exchange + - id: "r_4528" + - name: "triphosphate exchange" - metabolites: !!omap - s_4099: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4529 - - name: phosphoenolpyruvate exchange + - id: "r_4529" + - name: "phosphoenolpyruvate exchange" - metabolites: !!omap - s_4152: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_pep_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_pep_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4530 - - name: N(omega)-phospho-L-arginine exchange + - id: "r_4530" + - name: "N(omega)-phospho-L-arginine exchange" - metabolites: !!omap - s_4093: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_argp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_argp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4531 - - name: carbamoyl phosphate exchange + - id: "r_4531" + - name: "carbamoyl phosphate exchange" - metabolites: !!omap - s_4146: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4532 - - name: O-phosphoethanolamine exchange + - id: "r_4532" + - name: "O-phosphoethanolamine exchange" - metabolites: !!omap - s_4154: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ethamp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ethamp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4533 - - name: cysteamine S-phosphate exchange + - id: "r_4533" + - name: "cysteamine S-phosphate exchange" - metabolites: !!omap - s_4075: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4534 - - name: guanosine 2'-monophosphate exchange + - id: "r_4534" + - name: "guanosine 2'-monophosphate exchange" - metabolites: !!omap - s_4067: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4535 - - name: glycerol 2-phosphate(2-) exchange + - id: "r_4535" + - name: "glycerol 2-phosphate(2-) exchange" - metabolites: !!omap - s_4063: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_glyc2p_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_glyc2p_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4536 - - name: 3'-GMP exchange + - id: "r_4536" + - name: "3'-GMP exchange" - metabolites: !!omap - s_4069: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_3gmp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_3gmp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4537 - - name: 2-phosphoglycolate exchange + - id: "r_4537" + - name: "2-phosphoglycolate exchange" - metabolites: !!omap - s_4070: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_2pglyc_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_2pglyc_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4538 - - name: 6-phospho-D-gluconate exchange + - id: "r_4538" + - name: "6-phospho-D-gluconate exchange" - metabolites: !!omap - s_4155: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_6pgc_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_6pgc_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4539 - - name: D-mannose 6-phosphate exchange + - id: "r_4539" + - name: "D-mannose 6-phosphate exchange" - metabolites: !!omap - s_4153: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_man6p_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_man6p_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4540 - - name: 2',3'-cyclic GMP exchange + - id: "r_4540" + - name: "2',3'-cyclic GMP exchange" - metabolites: !!omap - s_4095: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_23cgmp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_23cgmp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4541 - - name: O(4)-phospho-L-tyrosine exchange + - id: "r_4541" + - name: "O(4)-phospho-L-tyrosine exchange" - metabolites: !!omap - s_4097: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_tyrp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_tyrp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4542 - - name: O-phospho-L-threonine exchange + - id: "r_4542" + - name: "O-phospho-L-threonine exchange" - metabolites: !!omap - s_4065: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_thrp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_thrp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4543 - - name: 3-phosphonato-D-glycerate(3-) exchange + - id: "r_4543" + - name: "3-phosphonato-D-glycerate(3-) exchange" - metabolites: !!omap - s_4142: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_3pg_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_3pg_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4544 - - name: adenosine 2'-phosphate exchange + - id: "r_4544" + - name: "adenosine 2'-phosphate exchange" - metabolites: !!omap - s_4162: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4545 - - name: 3'-AMP exchange + - id: "r_4545" + - name: "3'-AMP exchange" - metabolites: !!omap - s_4107: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_3amp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_3amp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4546 - - name: 2',3'-cyclic AMP exchange + - id: "r_4546" + - name: "2',3'-cyclic AMP exchange" - metabolites: !!omap - s_4161: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_23camp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_23camp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4547 - - name: D-mannose 1-phosphate exchange + - id: "r_4547" + - name: "D-mannose 1-phosphate exchange" - metabolites: !!omap - s_4156: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_man1p_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_man1p_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4548 - - name: AMP exchange + - id: "r_4548" + - name: "AMP exchange" - metabolites: !!omap - s_4160: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_amp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_amp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4549 - - name: N(alpha)-acetyl-L-methionine exchange + - id: "r_4549" + - name: "N(alpha)-acetyl-L-methionine exchange" - metabolites: !!omap - s_4135: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_C02712_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_C02712_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4550 - - name: L-Methionine S-oxide exchange + - id: "r_4550" + - name: "L-Methionine S-oxide exchange" - metabolites: !!omap - s_4176: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_metsox_S__L_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_metsox_S__L_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4551 - - name: 3-sulfino-L-alanine exchange + - id: "r_4551" + - name: "3-sulfino-L-alanine exchange" - metabolites: !!omap - s_4105: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4552 - - name: N-acetyl-L-cysteine exchange + - id: "r_4552" + - name: "N-acetyl-L-cysteine exchange" - metabolites: !!omap - s_4111: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_CE1310_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_CE1310_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4553 - - name: L-cysteate exchange + - id: "r_4553" + - name: "L-cysteate exchange" - metabolites: !!omap - s_4139: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_Lcyst_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_Lcyst_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4554 - - name: 2-hydroxyethane-1-sulfonate exchange + - id: "r_4554" + - name: "2-hydroxyethane-1-sulfonate exchange" - metabolites: !!omap - s_4116: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_isetac_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_isetac_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4555 - - name: acetoacetate exchange + - id: "r_4555" + - name: "acetoacetate exchange" - metabolites: !!omap - s_4133: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_acac_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_acac_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4556 - - name: N-acetyl-L-glutamate exchange + - id: "r_4556" + - name: "N-acetyl-L-glutamate exchange" - metabolites: !!omap - s_4172: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_acglu_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_acglu_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4557 - - name: UMP exchange + - id: "r_4557" + - name: "UMP exchange" - metabolites: !!omap - s_4151: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ump_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ump_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4558 - - name: CMP exchange + - id: "r_4558" + - name: "CMP exchange" - metabolites: !!omap - s_4163: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_cmp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_cmp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4559 - - name: thymidine 5'-monophosphate exchange + - id: "r_4559" + - name: "thymidine 5'-monophosphate exchange" - metabolites: !!omap - s_4047: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4560 - - name: thymidine 3'-monophosphate exchange + - id: "r_4560" + - name: "thymidine 3'-monophosphate exchange" - metabolites: !!omap - s_4045: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4561 - - name: cytidine 2'-phosphate exchange + - id: "r_4561" + - name: "cytidine 2'-phosphate exchange" - metabolites: !!omap - s_4101: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4562 - - name: uridine 2'-phosphate exchange + - id: "r_4562" + - name: "uridine 2'-phosphate exchange" - metabolites: !!omap - s_4082: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - !!omap - - id: r_4563 - - name: 3'-UMP exchange + - id: "r_4563" + - name: "3'-UMP exchange" - metabolites: !!omap - s_4084: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_3ump_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_3ump_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4564 - - name: 2',3'-cyclic CMP exchange + - id: "r_4564" + - name: "2',3'-cyclic CMP exchange" - metabolites: !!omap - s_4127: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_23ccmp_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_23ccmp_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4565 - - name: 2',3'-cyclic UMP exchange + - id: "r_4565" + - name: "2',3'-cyclic UMP exchange" - metabolites: !!omap - s_4103: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_23cump_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_23cump_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4566 - - name: ATP:D-Gluconate 6-phosphotransferase + - id: "r_4566" + - name: "ATP:D-Gluconate 6-phosphotransferase" - metabolites: !!omap - s_0340: -1 - s_0394: -1 @@ -97836,15 +99185,16 @@ - s_3875: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 2.7.1.12 - - kegg.reaction: R01737 - - metanetx.reaction: MNXR100390 - - sbo: SBO:0000176 + - ec-code: "2.7.1.12" + - kegg.reaction: "R01737" + - metanetx.reaction: "MNXR100390" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4567 - - name: 6-phosphogluconate phosphatase + - id: "r_4567" + - name: "6-phosphogluconate phosphatase" - metabolites: !!omap - s_0340: -1 - s_0803: -1 @@ -97852,31 +99202,33 @@ - s_3875: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - ec-code: - - 3.1.3.- - - 3.1.3.2 - - 3.1.3.29 - - metanetx.reaction: MNXR123213 - - sbo: SBO:0000176 + - "3.1.3.-" + - "3.1.3.2" + - "3.1.3.29" + - metanetx.reaction: "MNXR123213" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4568 - - name: R06790 + - id: "r_4568" + - name: "R06790" - metabolites: !!omap - s_0794: -1 - s_1321: -1 - s_4194: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - kegg.reaction: R06790 - - metanetx.reaction: MNXR139469 - - sbo: SBO:0000176 + - kegg.reaction: "R06790" + - metanetx.reaction: "MNXR139469" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4569 - - name: Carboxylic ester hydrolases + - id: "r_4569" + - name: "Carboxylic ester hydrolases" - metabolites: !!omap - s_0362: -1 - s_0794: -1 @@ -97885,17 +99237,18 @@ - s_4195: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - ec-code: - - 3.1.1.- - - 3.1.1.2 - - kegg.reaction: R06893 - - metanetx.reaction: MNXR110621 - - sbo: SBO:0000176 + - "3.1.1.-" + - "3.1.1.2" + - kegg.reaction: "R06893" + - metanetx.reaction: "MNXR110621" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4570 - - name: phosphoglycerate dehydrogenase + - id: "r_4570" + - name: "phosphoglycerate dehydrogenase" - metabolites: !!omap - s_0180: 1 - s_0794: 1 @@ -97904,15 +99257,16 @@ - s_4182: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 1.1.1.95 - - kegg.reaction: R08198 - - metanetx.reaction: MNXR111769 - - sbo: SBO:0000176 + - ec-code: "1.1.1.95" + - kegg.reaction: "R08198" + - metanetx.reaction: "MNXR111769" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4571 - - name: seed:rxn00681 + - id: "r_4571" + - name: "seed:rxn00681" - metabolites: !!omap - s_0529: -1 - s_0779: 1 @@ -97922,13 +99276,14 @@ - s_4183: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR134240 - - sbo: SBO:0000176 + - metanetx.reaction: "MNXR134240" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4572 - - name: beta-alanine:2-oxoglutarate aminotransferase + - id: "r_4572" + - name: "beta-alanine:2-oxoglutarate aminotransferase" - metabolites: !!omap - s_0180: -1 - s_0441: -1 @@ -97936,17 +99291,18 @@ - s_4184: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - ec-code: - - 2.6.1.19 - - 2.6.1.55 - - kegg.reaction: R00908 - - metanetx.reaction: MNXR95862 - - sbo: SBO:0000176 + - "2.6.1.19" + - "2.6.1.55" + - kegg.reaction: "R00908" + - metanetx.reaction: "MNXR95862" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4573 - - name: 3-Oxopropanoate:NAD+ oxidoreductase (decarboxylating, CoA-acetylating) + - id: "r_4573" + - name: "3-Oxopropanoate:NAD+ oxidoreductase (decarboxylating, CoA-acetylating)" - metabolites: !!omap - s_0373: 1 - s_0456: 1 @@ -97956,19 +99312,20 @@ - s_4184: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - ec-code: - - 1.2.1.- - - 1.2.1.18 - - 1.2.1.27 - - bigg.reaction: MMSAD3 - - kegg.reaction: R00705 - - metanetx.reaction: MNXR101665 - - sbo: SBO:0000176 + - "1.2.1.-" + - "1.2.1.18" + - "1.2.1.27" + - bigg.reaction: "MMSAD3" + - kegg.reaction: "R00705" + - metanetx.reaction: "MNXR101665" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4574 - - name: 3-Oxopropanoate:NADP+ oxidoreductase (decarboxylating, CoA-acetylating) + - id: "r_4574" + - name: "3-Oxopropanoate:NADP+ oxidoreductase (decarboxylating, CoA-acetylating)" - metabolites: !!omap - s_0373: 1 - s_0456: 1 @@ -97978,17 +99335,18 @@ - s_4184: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - ec-code: - - 1.2.1.- - - 1.2.1.18 - - kegg.reaction: R00706 - - metanetx.reaction: MNXR106650 - - sbo: SBO:0000176 + - "1.2.1.-" + - "1.2.1.18" + - kegg.reaction: "R00706" + - metanetx.reaction: "MNXR106650" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4575 - - name: 3-oxopropanoate carboxy-lyase + - id: "r_4575" + - name: "3-oxopropanoate carboxy-lyase" - metabolites: !!omap - s_0359: 1 - s_0456: 1 @@ -97996,17 +99354,18 @@ - s_4184: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - ec-code: - - 4.1.1.- - - 4.2.1.155 - - kegg.reaction: R06973 - - metanetx.reaction: MNXR110693 - - sbo: SBO:0000176 + - "4.1.1.-" + - "4.2.1.155" + - kegg.reaction: "R06973" + - metanetx.reaction: "MNXR110693" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4576 - - name: (R)-2,3-Dihydroxy-3-methylbutanoate:NADP+ oxidoreductase (isomerizing) + - id: "r_4576" + - name: "(R)-2,3-Dihydroxy-3-methylbutanoate:NADP+ oxidoreductase (isomerizing)" - metabolites: !!omap - s_0794: 1 - s_1207: -1 @@ -98015,29 +99374,31 @@ - s_4186: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 1.1.1.86 - - kegg.reaction: R04440 - - metanetx.reaction: MNXR100904 - - sbo: SBO:0000176 + - ec-code: "1.1.1.86" + - kegg.reaction: "R04440" + - metanetx.reaction: "MNXR100904" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4577 - - name: Dihydroxy-acid dehydratase, mitochondrial + - id: "r_4577" + - name: "Dihydroxy-acid dehydratase, mitochondrial" - metabolites: !!omap - s_0232: -1 - s_0803: -1 - s_4208: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - kegg.reaction: R01209 - - metanetx.reaction: MNXR106867 - - sbo: SBO:0000176 + - kegg.reaction: "R01209" + - metanetx.reaction: "MNXR106867" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4578 - - name: Ketol-acid reductoisomerase, mitochondrial + - id: "r_4578" + - name: "Ketol-acid reductoisomerase, mitochondrial" - metabolites: !!omap - s_0794: -1 - s_1207: 1 @@ -98046,13 +99407,14 @@ - s_4187: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR137279 - - sbo: SBO:0000176 + - metanetx.reaction: "MNXR137279" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4579 - - name: pyruvate:pyruvate acetaldehydetransferase (decarboxylating); (S)-2-acetolactate pyruvate-lyase (carboxylating) + - id: "r_4579" + - name: "pyruvate:pyruvate acetaldehydetransferase (decarboxylating); (S)-2-acetolactate pyruvate-lyase (carboxylating)" - metabolites: !!omap - s_0456: 1 - s_0794: -1 @@ -98060,16 +99422,17 @@ - s_4188: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 2.2.1.6 - - bigg.reaction: ACLS - - kegg.reaction: R00226 - - metanetx.reaction: MNXR95271 - - sbo: SBO:0000176 + - ec-code: "2.2.1.6" + - bigg.reaction: "ACLS" + - kegg.reaction: "R00226" + - metanetx.reaction: "MNXR95271" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4580 - - name: (R)-2,3-dihydroxy-3-methylbutanoate:NADP+ oxidoreductase (isomerizing) + - id: "r_4580" + - name: "(R)-2,3-dihydroxy-3-methylbutanoate:NADP+ oxidoreductase (isomerizing)" - metabolites: !!omap - s_0794: 1 - s_1207: -1 @@ -98078,18 +99441,19 @@ - s_4188: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - ec-code: - - 1.1.1.383 - - 1.1.1.86 - - bigg.reaction: KARA1 - - kegg.reaction: R04439 - - metanetx.reaction: MNXR97523 - - sbo: SBO:0000176 + - "1.1.1.383" + - "1.1.1.86" + - bigg.reaction: "KARA1" + - kegg.reaction: "R04439" + - metanetx.reaction: "MNXR97523" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4581 - - name: (2R,3S)-3-methylmalate:NAD+ oxidoreductase + - id: "r_4581" + - name: "(2R,3S)-3-methylmalate:NAD+ oxidoreductase" - metabolites: !!omap - s_0178: 1 - s_0456: 1 @@ -98098,18 +99462,19 @@ - s_4189: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.85 - - bigg.reaction: ERTHMMOR - - kegg.reaction: R00994 - - metanetx.reaction: MNXR106779 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.85" + - bigg.reaction: "ERTHMMOR" + - kegg.reaction: "R00994" + - metanetx.reaction: "MNXR106779" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4582 - - name: malate/beta-methylmalate synthase + - id: "r_4582" + - name: "malate/beta-methylmalate synthase" - metabolites: !!omap - s_0529: 1 - s_0779: -1 @@ -98119,14 +99484,15 @@ - s_4189: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 2.3.3.- - - metanetx.reaction: MNXR121603 - - sbo: SBO:0000176 + - ec-code: "2.3.3.-" + - metanetx.reaction: "MNXR121603" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4583 - - name: palmitoyl-CoA hydrolase + - id: "r_4583" + - name: "palmitoyl-CoA hydrolase" - metabolites: !!omap - s_0529: 1 - s_0794: 1 @@ -98135,18 +99501,19 @@ - s_4191: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - ec-code: - - 3.1.2.- - - 3.1.2.2 - - bigg.reaction: FACOAE1829Z12Z - - kegg.reaction: R08177 - - metanetx.reaction: MNXR99136 - - sbo: SBO:0000176 + - "3.1.2.-" + - "3.1.2.2" + - bigg.reaction: "FACOAE1829Z12Z" + - kegg.reaction: "R08177" + - metanetx.reaction: "MNXR99136" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4584 - - name: long-chain-fatty-acid---CoA ligase + - id: "r_4584" + - name: "long-chain-fatty-acid---CoA ligase" - metabolites: !!omap - s_0423: 1 - s_0434: -1 @@ -98156,15 +99523,16 @@ - s_4191: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 6.2.1.3 - - bigg.reaction: FACOAL1821 - - metanetx.reaction: MNXR99175 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - bigg.reaction: "FACOAL1821" + - metanetx.reaction: "MNXR99175" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4585 - - name: a-galactosidase (stachyose) + - id: "r_4585" + - name: "a-galactosidase (stachyose)" - metabolites: !!omap - s_0558: 1 - s_0803: -1 @@ -98172,30 +99540,32 @@ - s_4193: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 3.2.1.22 - - bigg.reaction: STACHGALACT - - kegg.reaction: R03634 - - metanetx.reaction: MNXR100010 - - sbo: SBO:0000176 + - ec-code: "3.2.1.22" + - bigg.reaction: "STACHGALACT" + - kegg.reaction: "R03634" + - metanetx.reaction: "MNXR100010" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4586 - - name: stachyose synthase + - id: "r_4586" + - name: "stachyose synthase" - metabolites: !!omap - s_3998: -1 - s_4192: -1 - s_4193: 2 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 2.4.1.- - - metanetx.reaction: MNXR122225 - - sbo: SBO:0000176 + - ec-code: "2.4.1.-" + - metanetx.reaction: "MNXR122225" + - sbo: "SBO:0000176" - confidence_score: 0 - !!omap - - id: r_4587 - - name: Ca(2+) transport + - id: "r_4587" + - name: "Ca(2+) transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -98203,28 +99573,28 @@ - s_4199: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOL122C + - gene_reaction_rule: "YOL122C" - annotation: !!omap - - metanetx.reaction: MNXR96437 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR96437" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4588 - - name: chloride transport + - id: "r_4588" + - name: "chloride transport" - metabolites: !!omap - s_3778: 1 - s_4200: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YNL275W + - gene_reaction_rule: "YNL275W" - annotation: !!omap - - bigg.reaction: Clt - - metanetx.reaction: MNXR96797 - - sbo: SBO:0000655 + - bigg.reaction: "Clt" + - metanetx.reaction: "MNXR96797" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4589 - - name: Cu2(+) transport + - id: "r_4589" + - name: "Cu2(+) transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -98232,14 +99602,14 @@ - s_4201: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOL122C + - gene_reaction_rule: "YOL122C" - annotation: !!omap - - metanetx.reaction: MNXR126350 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR126350" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4590 - - name: Mn(2+) transport + - id: "r_4590" + - name: "Mn(2+) transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -98247,15 +99617,15 @@ - s_4202: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR191W + - gene_reaction_rule: "YGR191W" - annotation: !!omap - - bigg.reaction: MNt2 - - metanetx.reaction: MNXR101669 - - sbo: SBO:0000655 + - bigg.reaction: "MNt2" + - metanetx.reaction: "MNXR101669" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4591 - - name: Zn(2+) transport + - id: "r_4591" + - name: "Zn(2+) transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -98263,15 +99633,15 @@ - s_4203: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGL255W or YLR130C + - gene_reaction_rule: "YGL255W or YLR130C" - annotation: !!omap - - bigg.reaction: r2073_1 - - metanetx.reaction: MNXR105278 - - sbo: SBO:0000655 + - bigg.reaction: "r2073_1" + - metanetx.reaction: "MNXR105278" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4592 - - name: Mg(2+) transport + - id: "r_4592" + - name: "Mg(2+) transport" - metabolites: !!omap - s_0794: 1 - s_0796: -1 @@ -98279,64 +99649,69 @@ - s_4204: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR191W or YOL130W + - gene_reaction_rule: "YGR191W or YOL130W" - annotation: !!omap - - metanetx.reaction: MNXR101553 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101553" + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4593 - - name: chloride exchange + - id: "r_4593" + - name: "chloride exchange" - metabolites: !!omap - s_4200: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_cl_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_cl_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4594 - - name: Cu2(+) exchange + - id: "r_4594" + - name: "Cu2(+) exchange" - metabolites: !!omap - s_4201: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_cu2_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_cu2_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4595 - - name: Mn(2+) exchange + - id: "r_4595" + - name: "Mn(2+) exchange" - metabolites: !!omap - s_4202: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_mn2_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_mn2_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4596 - - name: Zn(2+) exchange + - id: "r_4596" + - name: "Zn(2+) exchange" - metabolites: !!omap - s_4203: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_zn2_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_zn2_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4597 - - name: Mg(2+) exchange + - id: "r_4597" + - name: "Mg(2+) exchange" - metabolites: !!omap - s_4204: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_mg2_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_mg2_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4598 - - name: cofactor pseudoreaction + - id: "r_4598" + - name: "cofactor pseudoreaction" - metabolites: !!omap - s_0529: -0.00019 - s_0687: -1e-05 @@ -98351,12 +99726,13 @@ - s_4205: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4599 - - name: ion pseudoreaction + - id: "r_4599" + - name: "ion pseudoreaction" - metabolites: !!omap - s_0924: -3.04e-05 - s_1373: -0.00363 @@ -98371,22 +99747,24 @@ - s_4206: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000395 + - sbo: "SBO:0000395" - confidence_score: 1 - !!omap - - id: r_4600 - - name: Ca(2+) exchange + - id: "r_4600" + - name: "Ca(2+) exchange" - metabolites: !!omap - s_4199: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: EX_ca2_e - - sbo: SBO:0000627 + - bigg.reaction: "EX_ca2_e" + - sbo: "SBO:0000627" - !!omap - - id: r_4601 - - name: 3-(4-hydroxyphenyl)pyruvate transport + - id: "r_4601" + - name: "3-(4-hydroxyphenyl)pyruvate transport" - metabolites: !!omap - s_0204: -1 - s_0206: 1 @@ -98394,50 +99772,54 @@ - s_0801: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR94845 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR94845" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4602 - - name: acetate transport + - id: "r_4602" + - name: "acetate transport" - metabolites: !!omap - s_0362: -1 - s_0363: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR95431 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR95431" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4603 - - name: ADP-ribose transport + - id: "r_4603" + - name: "ADP-ribose transport" - metabolites: !!omap - s_0402: 1 - s_3761: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ADPRIBt - - metanetx.reaction: MNXR95481 - - sbo: SBO:0000655 + - bigg.reaction: "ADPRIBt" + - metanetx.reaction: "MNXR95481" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4604 - - name: farnesyl diphosphate transport + - id: "r_4604" + - name: "farnesyl diphosphate transport" - metabolites: !!omap - s_0190: -1 - s_0692: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99646 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99646" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4605 - - name: nicotinate transport + - id: "r_4605" + - name: "nicotinate transport" - metabolites: !!omap - s_0794: -1 - s_0799: 1 @@ -98445,13 +99827,14 @@ - s_1221: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101858 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101858" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4606 - - name: O-phosphoethanolamine transport + - id: "r_4606" + - name: "O-phosphoethanolamine transport" - metabolites: !!omap - s_0794: -1 - s_0795: 1 @@ -98459,26 +99842,28 @@ - s_1240: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR135002 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR135002" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4607 - - name: phosphate transport + - id: "r_4607" + - name: "phosphate transport" - metabolites: !!omap - s_1322: -1 - s_1325: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: PItg - - metanetx.reaction: MNXR102871 - - sbo: SBO:0000655 + - bigg.reaction: "PItg" + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4608 - - name: propionyl-CoA transport + - id: "r_4608" + - name: "propionyl-CoA transport" - metabolites: !!omap - s_0397: 1 - s_0434: -1 @@ -98489,76 +99874,82 @@ - s_4183: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: r2499 - - metanetx.reaction: MNXR106312 - - sbo: SBO:0000655 + - bigg.reaction: "r2499" + - metanetx.reaction: "MNXR106312" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4609 - - name: UDP transport + - id: "r_4609" + - name: "UDP transport" - metabolites: !!omap - s_1538: -1 - s_1539: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: UDPtg - - metanetx.reaction: MNXR105076 - - sbo: SBO:0000655 + - bigg.reaction: "UDPtg" + - metanetx.reaction: "MNXR105076" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4610 - - name: UDP transport + - id: "r_4610" + - name: "UDP transport" - metabolites: !!omap - s_1538: -1 - s_1540: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: UDPtg - - metanetx.reaction: MNXR105076 - - sbo: SBO:0000655 + - bigg.reaction: "UDPtg" + - metanetx.reaction: "MNXR105076" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4611 - - name: UMP transport + - id: "r_4611" + - name: "UMP transport" - metabolites: !!omap - s_1545: -1 - s_1546: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR105127 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR105127" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4612 - - name: TRX1 disulphide transport + - id: "r_4612" + - name: "TRX1 disulphide transport" - metabolites: !!omap - s_1620: -1 - s_1622: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR104921 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104921" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4613 - - name: oleate transport + - id: "r_4613" + - name: "oleate transport" - metabolites: !!omap - s_1260: -1 - s_3677: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR99110 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4614 - - name: (R)-acetoin transport + - id: "r_4614" + - name: "(R)-acetoin transport" - metabolites: !!omap - s_0020: -1 - s_0794: -1 @@ -98566,64 +99957,69 @@ - s_3751: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ACTNt2r - - metanetx.reaction: MNXR95426 - - sbo: SBO:0000655 + - bigg.reaction: "ACTNt2r" + - metanetx.reaction: "MNXR95426" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4615 - - name: L-glutamine transport + - id: "r_4615" + - name: "L-glutamine transport" - metabolites: !!omap - s_0999: -1 - s_3755: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: GLNtm - - metanetx.reaction: MNXR100259 - - sbo: SBO:0000655 + - bigg.reaction: "GLNtm" + - metanetx.reaction: "MNXR100259" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4616 - - name: UMP transport + - id: "r_4616" + - name: "UMP transport" - metabolites: !!omap - s_1545: -1 - s_3781: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR105127 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR105127" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4617 - - name: S-adenosyl-L-methionine transport + - id: "r_4617" + - name: "S-adenosyl-L-methionine transport" - metabolites: !!omap - s_1416: -1 - s_3818: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: AMETtn - - metanetx.reaction: MNXR95809 - - sbo: SBO:0000655 + - bigg.reaction: "AMETtn" + - metanetx.reaction: "MNXR95809" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4618 - - name: glutathione transport + - id: "r_4618" + - name: "glutathione transport" - metabolites: !!omap - s_0750: -1 - s_3831: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100449 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100449" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4619 - - name: ATP transport + - id: "r_4619" + - name: "ATP transport" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -98631,51 +100027,55 @@ - s_3883: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 2.7.4.6 - - metanetx.reaction: MNXR96123 - - sbo: SBO:0000655 + - ec-code: "2.7.4.6" + - metanetx.reaction: "MNXR96123" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4620 - - name: D-mannose 6-phosphate transport + - id: "r_4620" + - name: "D-mannose 6-phosphate transport" - metabolites: !!omap - s_0574: -1 - s_3898: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR101385 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR101385" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4621 - - name: O-acetyl-L-serine transport + - id: "r_4621" + - name: "O-acetyl-L-serine transport" - metabolites: !!omap - s_1234: -1 - s_3905: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - bigg.reaction: ACSERtmi - - metanetx.reaction: MNXR95416 - - sbo: SBO:0000655 + - bigg.reaction: "ACSERtmi" + - metanetx.reaction: "MNXR95416" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4622 - - name: hydrogen sulfide transport + - id: "r_4622" + - name: "hydrogen sulfide transport" - metabolites: !!omap - s_0841: -1 - s_3906: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR100494 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR100494" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4623 - - name: L-cysteinylglycine transport + - id: "r_4623" + - name: "L-cysteinylglycine transport" - metabolites: !!omap - s_0794: -1 - s_0799: 1 @@ -98683,13 +100083,14 @@ - s_3925: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR97002 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR97002" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4624 - - name: ATP transport + - id: "r_4624" + - name: "ATP transport" - metabolites: !!omap - s_0394: 1 - s_0434: -1 @@ -98697,62 +100098,67 @@ - s_3987: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - ec-code: 2.7.4.6 - - metanetx.reaction: MNXR96123 - - sbo: SBO:0000655 + - ec-code: "2.7.4.6" + - metanetx.reaction: "MNXR96123" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4625 - - name: thiosulfate transport + - id: "r_4625" + - name: "thiosulfate transport" - metabolites: !!omap - s_4010: 1 - s_4113: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR104966 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104966" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4626 - - name: sulphite transport + - id: "r_4626" + - name: "sulphite transport" - metabolites: !!omap - s_1469: -1 - s_4011: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR104460 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR104460" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4627 - - name: UDP-D-glucose transport + - id: "r_4627" + - name: "UDP-D-glucose transport" - metabolites: !!omap - s_1543: -1 - s_4015: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR105071 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR105071" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4628 - - name: UDP-N-acetyl-alpha-D-glucosamine transport + - id: "r_4628" + - name: "UDP-N-acetyl-alpha-D-glucosamine transport" - metabolites: !!omap - s_1544: -1 - s_4025: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - metanetx.reaction: MNXR105021 - - sbo: SBO:0000655 + - metanetx.reaction: "MNXR105021" + - sbo: "SBO:0000655" - confidence_score: 0 - !!omap - - id: r_4629 - - name: alcohol acyltransferase (hexanoyl-CoA) + - id: "r_4629" + - name: "alcohol acyltransferase (hexanoyl-CoA)" - metabolites: !!omap - s_0532: 1 - s_0682: -1 @@ -98760,15 +100166,15 @@ - s_4212: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR177C or YPL095C + - gene_reaction_rule: "YBR177C or YPL095C" - annotation: !!omap - - ec-code: 2.3.1.84 - - kegg.reaction: R00627 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - kegg.reaction: "R00627" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4630 - - name: alcohol acyltransferase (octanoyl-CoA) + - id: "r_4630" + - name: "alcohol acyltransferase (octanoyl-CoA)" - metabolites: !!omap - s_0532: 1 - s_0682: -1 @@ -98776,15 +100182,15 @@ - s_4214: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR177C or YPL095C + - gene_reaction_rule: "YBR177C or YPL095C" - annotation: !!omap - - ec-code: 2.3.1.84 - - kegg.reaction: R00627 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - kegg.reaction: "R00627" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4631 - - name: alcohol acyltransferase (butyryl-CoA) + - id: "r_4631" + - name: "alcohol acyltransferase (butyryl-CoA)" - metabolites: !!omap - s_0532: 1 - s_0682: -1 @@ -98792,15 +100198,15 @@ - s_4216: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR177C or YPL095C + - gene_reaction_rule: "YBR177C or YPL095C" - annotation: !!omap - - ec-code: 2.3.1.84 - - kegg.reaction: R00627 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - kegg.reaction: "R00627" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4632 - - name: alcohol acetyltransferase (hexanol) + - id: "r_4632" + - name: "alcohol acetyltransferase (hexanol)" - metabolites: !!omap - s_0376: -1 - s_0532: 1 @@ -98808,15 +100214,15 @@ - s_4218: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YGR177C or YOR377W or YGR015C + - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" - annotation: !!omap - - ec-code: 2.3.1.84 - - kegg.reaction: R00627 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - kegg.reaction: "R00627" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4633 - - name: alcohol acyltransferase (decanoyl-CoA) + - id: "r_4633" + - name: "alcohol acyltransferase (decanoyl-CoA)" - metabolites: !!omap - s_0532: 1 - s_0682: -1 @@ -98824,175 +100230,190 @@ - s_4220: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR177C or YPL095C + - gene_reaction_rule: "YBR177C or YPL095C" - annotation: !!omap - - ec-code: 2.3.1.84 - - kegg.reaction: R00627 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - kegg.reaction: "R00627" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4634 - - name: ethyl hexanoate transport, mitochondrial + - id: "r_4634" + - name: "ethyl hexanoate transport, mitochondrial" - metabolites: !!omap - s_4212: -1 - s_4221: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4635 - - name: ethyl octanoate transport, mitochondrial + - id: "r_4635" + - name: "ethyl octanoate transport, mitochondrial" - metabolites: !!omap - s_4214: -1 - s_4222: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4636 - - name: ethyl butanoate transport, mitochondrial + - id: "r_4636" + - name: "ethyl butanoate transport, mitochondrial" - metabolites: !!omap - s_4216: -1 - s_4223: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4637 - - name: hexyl acetate transport, mitochondrial + - id: "r_4637" + - name: "hexyl acetate transport, mitochondrial" - metabolites: !!omap - s_4218: -1 - s_4224: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4638 - - name: ethyl decanoate transport, mitochondrial + - id: "r_4638" + - name: "ethyl decanoate transport, mitochondrial" - metabolites: !!omap - s_4220: -1 - s_4225: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4639 - - name: ethyl hexanoate transport + - id: "r_4639" + - name: "ethyl hexanoate transport" - metabolites: !!omap - s_4221: -1 - s_4226: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4640 - - name: ethyl octanoate transport + - id: "r_4640" + - name: "ethyl octanoate transport" - metabolites: !!omap - s_4222: -1 - s_4227: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4641 - - name: ethyl butanoate transport + - id: "r_4641" + - name: "ethyl butanoate transport" - metabolites: !!omap - s_4223: -1 - s_4228: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4642 - - name: hexyl acetate transport + - id: "r_4642" + - name: "hexyl acetate transport" - metabolites: !!omap - s_4224: -1 - s_4229: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4643 - - name: ethyl decanoate transport + - id: "r_4643" + - name: "ethyl decanoate transport" - metabolites: !!omap - s_4225: -1 - s_4230: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4644 - - name: ethyl hexanoate exchange + - id: "r_4644" + - name: "ethyl hexanoate exchange" - metabolites: !!omap - s_4226: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4645 - - name: ethyl octanoate exchange + - id: "r_4645" + - name: "ethyl octanoate exchange" - metabolites: !!omap - s_4227: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4646 - - name: ethyl butanoate exchange + - id: "r_4646" + - name: "ethyl butanoate exchange" - metabolites: !!omap - s_4228: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4647 - - name: hexyl acetate exchange + - id: "r_4647" + - name: "hexyl acetate exchange" - metabolites: !!omap - s_4229: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4648 - - name: ethyl decanoate exchange + - id: "r_4648" + - name: "ethyl decanoate exchange" - metabolites: !!omap - s_4230: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4649 - - name: mitochondrial ethanol O-acetyltransferase + - id: "r_4649" + - name: "mitochondrial ethanol O-acetyltransferase" - metabolites: !!omap - s_0376: -1 - s_0532: 1 @@ -99000,26 +100421,27 @@ - s_4231: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR015C + - gene_reaction_rule: "YGR015C" - annotation: !!omap - - ec-code: 2.3.1.268 - - kegg.reaction: R11957 - - sbo: SBO:0000176 + - ec-code: "2.3.1.268" + - kegg.reaction: "R11957" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4650 - - name: ethyl acetate transport, mitochondrial + - id: "r_4650" + - name: "ethyl acetate transport, mitochondrial" - metabolites: !!omap - s_0685: 1 - s_4231: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4651 - - name: pyruvate decarboxylase (aldedyde-forming) + - id: "r_4651" + - name: "pyruvate decarboxylase (aldedyde-forming)" - metabolites: !!omap - s_0178: -1 - s_0456: 1 @@ -99027,15 +100449,15 @@ - s_4232: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR087C or YLR044C or YLR134W + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - annotation: !!omap - - ec-code: 4.1.1.1 - - kegg.reaction: R00636 - - sbo: SBO:0000176 + - ec-code: "4.1.1.1" + - kegg.reaction: "R00636" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4652 - - name: aldehyde dehydrogenase (1-propanol, NAD) + - id: "r_4652" + - name: "aldehyde dehydrogenase (1-propanol, NAD)" - metabolites: !!omap - s_0794: -1 - s_1198: 1 @@ -99044,24 +100466,24 @@ - s_4233: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR145W or YDL168W or YOL086C + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.1 - - 1.1.1.284 - - kegg.reaction: R00754 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" + - kegg.reaction: "R00754" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4653 - - name: aldehyde dehydrogenase (1-propanol, NAD) + - id: "r_4653" + - name: "aldehyde dehydrogenase (1-propanol, NAD)" - metabolites: !!omap - s_0799: -1 - s_1200: 1 @@ -99070,20 +100492,20 @@ - s_4235: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL256W or YMR083W + - gene_reaction_rule: "YGL256W or YMR083W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.1 - - sbo: SBO:0000176 + - ec-code: "1.1.1.1" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4654 - - name: aldehyde dehydrogenase (1-propanol, NADP) + - id: "r_4654" + - name: "aldehyde dehydrogenase (1-propanol, NADP)" - metabolites: !!omap - s_0794: -1 - s_1207: 1 @@ -99092,75 +100514,80 @@ - s_4233: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR105W or YDR368W or YMR318C + - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.2 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.2" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4655 - - name: 1-propyl alcohol transport, mitochondrial + - id: "r_4655" + - name: "1-propyl alcohol transport, mitochondrial" - metabolites: !!omap - s_4233: 1 - s_4235: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4656 - - name: propanal transport, cytosol + - id: "r_4656" + - name: "propanal transport, cytosol" - metabolites: !!omap - s_4232: -1 - s_4236: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4657 - - name: 1-propyl alcohol transport, cytosol + - id: "r_4657" + - name: "1-propyl alcohol transport, cytosol" - metabolites: !!omap - s_4233: -1 - s_4237: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4658 - - name: propanal exchange + - id: "r_4658" + - name: "propanal exchange" - metabolites: !!omap - s_4236: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4659 - - name: propanol exchange + - id: "r_4659" + - name: "propanol exchange" - metabolites: !!omap - s_4237: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4660 - - name: 2-oxo acid decarboxylase + - id: "r_4660" + - name: "2-oxo acid decarboxylase" - metabolites: !!omap - s_0294: -1 - s_0456: 1 @@ -99168,15 +100595,15 @@ - s_4238: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YHR137W + - gene_reaction_rule: "YHR137W" - annotation: !!omap - - ec-code: 4.1.1.1 - - kegg.reaction: R00636 - - sbo: SBO:0000176 + - ec-code: "4.1.1.1" + - kegg.reaction: "R00636" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4661 - - name: aldehyde dehydrogenase (methionol, NAD) + - id: "r_4661" + - name: "aldehyde dehydrogenase (methionol, NAD)" - metabolites: !!omap - s_0794: -1 - s_1198: 1 @@ -99185,24 +100612,24 @@ - s_4239: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR145W or YDL168W or YOL086C + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.1 - - 1.1.1.284 - - kegg.reaction: R00754 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" + - kegg.reaction: "R00754" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4662 - - name: aldehyde dehydrogenase (methionol, NAD) + - id: "r_4662" + - name: "aldehyde dehydrogenase (methionol, NAD)" - metabolites: !!omap - s_0799: -1 - s_1200: 1 @@ -99211,20 +100638,20 @@ - s_4241: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL256W or YMR083W + - gene_reaction_rule: "YGL256W or YMR083W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.1 - - sbo: SBO:0000176 + - ec-code: "1.1.1.1" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4663 - - name: aldehyde dehydrogenase (methionol, NADP) + - id: "r_4663" + - name: "aldehyde dehydrogenase (methionol, NADP)" - metabolites: !!omap - s_0794: -1 - s_1207: 1 @@ -99233,75 +100660,80 @@ - s_4239: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR105W or YDR368W or YMR318C + - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.2 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.2" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4664 - - name: methionol transport, mitochondrial + - id: "r_4664" + - name: "methionol transport, mitochondrial" - metabolites: !!omap - s_4239: 1 - s_4241: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4665 - - name: methional transport, cytosol + - id: "r_4665" + - name: "methional transport, cytosol" - metabolites: !!omap - s_4238: -1 - s_4242: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4666 - - name: methionol transport, cytosol + - id: "r_4666" + - name: "methionol transport, cytosol" - metabolites: !!omap - s_4239: -1 - s_4243: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4667 - - name: methional exchange + - id: "r_4667" + - name: "methional exchange" - metabolites: !!omap - s_4242: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4668 - - name: methionol exchange + - id: "r_4668" + - name: "methionol exchange" - metabolites: !!omap - s_4243: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4669 - - name: pyruvate decarboxylase (hydroxy-phenyl) + - id: "r_4669" + - name: "pyruvate decarboxylase (hydroxy-phenyl)" - metabolites: !!omap - s_0204: -1 - s_0456: 1 @@ -99309,14 +100741,14 @@ - s_4244: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR087C or YLR044C or YLR134W + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - annotation: !!omap - - ec-code: 4.1.1.1 - - sbo: SBO:0000176 + - ec-code: "4.1.1.1" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4670 - - name: aldehyde dehydrogenase (tyrosol, NAD) + - id: "r_4670" + - name: "aldehyde dehydrogenase (tyrosol, NAD)" - metabolites: !!omap - s_0794: -1 - s_1198: 1 @@ -99325,23 +100757,23 @@ - s_4245: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YBR145W or YDL168W or YOL086C + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.1 - - 1.1.1.284 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4671 - - name: aldehyde dehydrogenase (tyrosol, NAD) + - id: "r_4671" + - name: "aldehyde dehydrogenase (tyrosol, NAD)" - metabolites: !!omap - s_0799: -1 - s_1200: 1 @@ -99350,20 +100782,20 @@ - s_4247: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGL256W or YMR083W + - gene_reaction_rule: "YGL256W or YMR083W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.1.1.1 - - sbo: SBO:0000176 + - ec-code: "1.1.1.1" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4672 - - name: aldehyde dehydrogenase (tyrosol, NADP) + - id: "r_4672" + - name: "aldehyde dehydrogenase (tyrosol, NADP)" - metabolites: !!omap - s_0794: -1 - s_1207: 1 @@ -99372,75 +100804,80 @@ - s_4245: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YCR105W or YDR368W or YMR318C + - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - - 1.1.1.- - - 1.1.1.2 - - sbo: SBO:0000176 + - "1.1.1.-" + - "1.1.1.2" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4673 - - name: tyrosol transport, mitochondrial + - id: "r_4673" + - name: "tyrosol transport, mitochondrial" - metabolites: !!omap - s_4245: 1 - s_4247: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4674 - - name: (4-hydroxyphenyl)acetaldehyde transport, cytosol + - id: "r_4674" + - name: "(4-hydroxyphenyl)acetaldehyde transport, cytosol" - metabolites: !!omap - s_4244: -1 - s_4248: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4675 - - name: tyrosol transport, cytosol + - id: "r_4675" + - name: "tyrosol transport, cytosol" - metabolites: !!omap - s_4245: -1 - s_4249: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4676 - - name: (4-hydroxyphenyl)acetaldehyde exchange + - id: "r_4676" + - name: "(4-hydroxyphenyl)acetaldehyde exchange" - metabolites: !!omap - s_4248: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4677 - - name: tyrosol exchange + - id: "r_4677" + - name: "tyrosol exchange" - metabolites: !!omap - s_4249: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4678 - - name: aldehyde dehydrogenase + - id: "r_4678" + - name: "aldehyde dehydrogenase" - metabolites: !!omap - s_0794: 1 - s_0803: -1 @@ -99450,20 +100887,20 @@ - s_4250: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YMR170C or YMR169C or YOR374W + - gene_reaction_rule: "YMR170C or YMR169C or YOR374W" - subsystem: - - sce00010 Glycolysis / Gluconeogenesis - - sce00071 Fatty acid degradation - - sce00350 Tyrosine metabolism - - sce01110 Biosynthesis of secondary metabolites - - sce01130 Biosynthesis of antibiotics + - "sce00010 Glycolysis / Gluconeogenesis" + - "sce00071 Fatty acid degradation" + - "sce00350 Tyrosine metabolism" + - "sce01110 Biosynthesis of secondary metabolites" + - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - - ec-code: 1.2.1.5 - - sbo: SBO:0000176 + - ec-code: "1.2.1.5" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4679 - - name: short-chain-fatty-acid-CoA ligase (propionate) + - id: "r_4679" + - name: "short-chain-fatty-acid-CoA ligase (propionate)" - metabolites: !!omap - s_0426: 1 - s_0439: -1 @@ -99473,19 +100910,19 @@ - s_4252: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YOR317W or YER015W or YIL009W or YMR246W + - gene_reaction_rule: "YOR317W or YER015W or YIL009W or YMR246W" - subsystem: - - sce00061 Fatty acid biosynthesis - - sce00071 Fatty acid degradation - - sce01212 Fatty acid metabolism - - sce04146 Peroxisome + - "sce00061 Fatty acid biosynthesis" + - "sce00071 Fatty acid degradation" + - "sce01212 Fatty acid metabolism" + - "sce04146 Peroxisome" - annotation: !!omap - - ec-code: 6.2.1.3 - - sbo: SBO:0000176 + - ec-code: "6.2.1.3" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4680 - - name: alcohol acyltransferase (propionyl-CoA) + - id: "r_4680" + - name: "alcohol acyltransferase (propionyl-CoA)" - metabolites: !!omap - s_0532: 1 - s_0682: -1 @@ -99493,80 +100930,86 @@ - s_4253: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: YBR177C or YPL095C + - gene_reaction_rule: "YBR177C or YPL095C" - annotation: !!omap - - ec-code: 2.3.1.84 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4681 - - name: propionyl-CoA transport, mitochondrial + - id: "r_4681" + - name: "propionyl-CoA transport, mitochondrial" - metabolites: !!omap - s_1382: 1 - s_4252: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4682 - - name: butyryl-CoA transport, mitochondrial + - id: "r_4682" + - name: "butyryl-CoA transport, mitochondrial" - metabolites: !!omap - s_2884: -1 - s_4215: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4683 - - name: hexanoyl-CoA transport, mitochondrial + - id: "r_4683" + - name: "hexanoyl-CoA transport, mitochondrial" - metabolites: !!omap - s_2885: -1 - s_4211: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4684 - - name: octanoyl-CoA transport, mitochondrial + - id: "r_4684" + - name: "octanoyl-CoA transport, mitochondrial" - metabolites: !!omap - s_1258: -1 - s_4213: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4685 - - name: decanoyl-CoA transport, mitochondrial + - id: "r_4685" + - name: "decanoyl-CoA transport, mitochondrial" - metabolites: !!omap - s_0605: -1 - s_4219: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4686 - - name: propionate transport, cytosol + - id: "r_4686" + - name: "propionate transport, cytosol" - metabolites: !!omap - s_4250: 1 - s_4251: -1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4687 - - name: alcohol acetyltransferase (tyrosol) + - id: "r_4687" + - name: "alcohol acetyltransferase (tyrosol)" - metabolites: !!omap - s_0373: -1 - s_0529: 1 @@ -99574,35 +101017,37 @@ - s_4254: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR177C or YOR377W or YGR015C + - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" - annotation: !!omap - - ec-code: 2.3.1.84 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4688 - - name: tyrosyl acetate transport + - id: "r_4688" + - name: "tyrosyl acetate transport" - metabolites: !!omap - s_4254: -1 - s_4255: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4689 - - name: tyrosyl acetate exchange + - id: "r_4689" + - name: "tyrosyl acetate exchange" - metabolites: !!omap - s_4255: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4690 - - name: alcohol acetyltransferase (methionol) + - id: "r_4690" + - name: "alcohol acetyltransferase (methionol)" - metabolites: !!omap - s_0373: -1 - s_0529: 1 @@ -99610,35 +101055,37 @@ - s_4256: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR177C or YOR377W or YGR015C + - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" - annotation: !!omap - - ec-code: 2.3.1.84 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4691 - - name: methionyl acetate transport + - id: "r_4691" + - name: "methionyl acetate transport" - metabolites: !!omap - s_4256: -1 - s_4257: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4692 - - name: methionyl acetate exchange + - id: "r_4692" + - name: "methionyl acetate exchange" - metabolites: !!omap - s_4257: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4693 - - name: alcohol acetyltransferase (propanol) + - id: "r_4693" + - name: "alcohol acetyltransferase (propanol)" - metabolites: !!omap - s_0373: -1 - s_0529: 1 @@ -99646,3527 +101093,3532 @@ - s_4258: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: YGR177C or YOR377W or YGR015C + - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" - annotation: !!omap - - ec-code: 2.3.1.84 - - sbo: SBO:0000176 + - ec-code: "2.3.1.84" + - sbo: "SBO:0000176" - confidence_score: 2 - !!omap - - id: r_4694 - - name: propyl acetate transport + - id: "r_4694" + - name: "propyl acetate transport" - metabolites: !!omap - s_4258: -1 - s_4259: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4695 - - name: propyl acetate exchange + - id: "r_4695" + - name: "propyl acetate exchange" - metabolites: !!omap - s_4259: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - !!omap - - id: r_4697 - - name: ethyl propionate transport, mitochondrial + - id: "r_4697" + - name: "ethyl propionate transport, mitochondrial" - metabolites: !!omap - s_4253: -1 - s_4261: 1 - lower_bound: -1000 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4698 - - name: ethyl propionate transport + - id: "r_4698" + - name: "ethyl propionate transport" - metabolites: !!omap - s_4261: -1 - s_4262: 1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000655 + - sbo: "SBO:0000655" - confidence_score: 2 - !!omap - - id: r_4699 - - name: ethyl propionate exchange + - id: "r_4699" + - name: "ethyl propionate exchange" - metabolites: !!omap - s_4262: -1 - lower_bound: 0 - upper_bound: 1000 + - gene_reaction_rule: "" - annotation: !!omap - - sbo: SBO:0000627 + - sbo: "SBO:0000627" - confidence_score: 2 - genes: - !!omap - - id: Q0045 - - name: COX1 + - id: "Q0045" + - name: "COX1" - !!omap - - id: Q0080 - - name: ATP8 + - id: "Q0080" + - name: "ATP8" - !!omap - - id: Q0085 - - name: ATP6 + - id: "Q0085" + - name: "ATP6" - !!omap - - id: Q0105 - - name: COB + - id: "Q0105" + - name: "COB" - !!omap - - id: Q0130 - - name: OLI1 + - id: "Q0130" + - name: "OLI1" - !!omap - - id: Q0250 - - name: COX2 + - id: "Q0250" + - name: "COX2" - !!omap - - id: Q0275 - - name: COX3 + - id: "Q0275" + - name: "COX3" - !!omap - - id: YAL012W - - name: CYS3 + - id: "YAL012W" + - name: "CYS3" - !!omap - - id: YAL022C - - name: FUN26 + - id: "YAL022C" + - name: "FUN26" - !!omap - - id: YAL023C - - name: PMT2 + - id: "YAL023C" + - name: "PMT2" - !!omap - - id: YAL026C - - name: DRS2 + - id: "YAL026C" + - name: "DRS2" - !!omap - - id: YAL035W - - name: FUN12 + - id: "YAL035W" + - name: "FUN12" - !!omap - - id: YAL038W - - name: CDC19 + - id: "YAL038W" + - name: "CDC19" - !!omap - - id: YAL039C - - name: CYC3 + - id: "YAL039C" + - name: "CYC3" - !!omap - - id: YAL044C - - name: GCV3 + - id: "YAL044C" + - name: "GCV3" - !!omap - - id: YAL054C - - name: ACS1 + - id: "YAL054C" + - name: "ACS1" - !!omap - - id: YAL060W - - name: BDH1 + - id: "YAL060W" + - name: "BDH1" - !!omap - - id: YAL061W - - name: BDH2 + - id: "YAL061W" + - name: "BDH2" - !!omap - - id: YAL062W - - name: GDH3 + - id: "YAL062W" + - name: "GDH3" - !!omap - - id: YAR015W - - name: ADE1 + - id: "YAR015W" + - name: "ADE1" - !!omap - - id: YAR035W - - name: YAT1 + - id: "YAR035W" + - name: "YAT1" - !!omap - - id: YAR071W - - name: PHO11 + - id: "YAR071W" + - name: "PHO11" - !!omap - - id: YBL011W - - name: SCT1 + - id: "YBL011W" + - name: "SCT1" - !!omap - - id: YBL013W - - name: FMT1 + - id: "YBL013W" + - name: "FMT1" - !!omap - - id: YBL015W - - name: ACH1 + - id: "YBL015W" + - name: "ACH1" - !!omap - - id: YBL030C - - name: PET9 + - id: "YBL030C" + - name: "PET9" - !!omap - - id: YBL033C - - name: RIB1 + - id: "YBL033C" + - name: "RIB1" - !!omap - - id: YBL039C - - name: URA7 + - id: "YBL039C" + - name: "URA7" - !!omap - - id: YBL042C - - name: FUI1 + - id: "YBL042C" + - name: "FUI1" - !!omap - - id: YBL045C - - name: COR1 + - id: "YBL045C" + - name: "COR1" - !!omap - - id: YBL064C - - name: PRX1 + - id: "YBL064C" + - name: "PRX1" - !!omap - - id: YBL068W - - name: PRS4 + - id: "YBL068W" + - name: "PRS4" - !!omap - - id: YBL076C - - name: ILS1 + - id: "YBL076C" + - name: "ILS1" - !!omap - - id: YBL080C - - name: PET112 + - id: "YBL080C" + - name: "PET112" - !!omap - - id: YBL091C - - name: MAP2 + - id: "YBL091C" + - name: "MAP2" - !!omap - - id: YBL098W - - name: BNA4 + - id: "YBL098W" + - name: "BNA4" - !!omap - - id: YBL099W - - name: ATP1 + - id: "YBL099W" + - name: "ATP1" - !!omap - - id: YBR001C - - name: NTH2 + - id: "YBR001C" + - name: "NTH2" - !!omap - - id: YBR002C - - name: RER2 + - id: "YBR002C" + - name: "RER2" - !!omap - - id: YBR003W - - name: COQ1 + - id: "YBR003W" + - name: "COQ1" - !!omap - - id: YBR004C - - name: GPI18 + - id: "YBR004C" + - name: "GPI18" - !!omap - - id: YBR006W - - name: UGA2 + - id: "YBR006W" + - name: "UGA2" - !!omap - - id: YBR011C - - name: IPP1 + - id: "YBR011C" + - name: "IPP1" - !!omap - - id: YBR018C - - name: GAL7 + - id: "YBR018C" + - name: "GAL7" - !!omap - - id: YBR019C - - name: GAL10 + - id: "YBR019C" + - name: "GAL10" - !!omap - - id: YBR020W - - name: GAL1 + - id: "YBR020W" + - name: "GAL1" - !!omap - - id: YBR021W - - name: FUR4 + - id: "YBR021W" + - name: "FUR4" - !!omap - - id: YBR022W - - name: POA1 + - id: "YBR022W" + - name: "POA1" - !!omap - - id: YBR023C - - name: CHS3 + - id: "YBR023C" + - name: "CHS3" - !!omap - - id: YBR026C - - name: ETR1 + - id: "YBR026C" + - name: "ETR1" - !!omap - - id: YBR029C - - name: CDS1 + - id: "YBR029C" + - name: "CDS1" - !!omap - - id: YBR034C - - name: HMT1 + - id: "YBR034C" + - name: "HMT1" - !!omap - - id: YBR035C - - name: PDX3 + - id: "YBR035C" + - name: "PDX3" - !!omap - - id: YBR036C - - name: CSG2 + - id: "YBR036C" + - name: "CSG2" - !!omap - - id: YBR038W - - name: CHS2 + - id: "YBR038W" + - name: "CHS2" - !!omap - - id: YBR039W - - name: ATP3 + - id: "YBR039W" + - name: "ATP3" - !!omap - - id: YBR041W - - name: FAT1 + - id: "YBR041W" + - name: "FAT1" - !!omap - - id: YBR042C - - name: CST26 + - id: "YBR042C" + - name: "CST26" - !!omap - - id: YBR046C - - name: ZTA1 + - id: "YBR046C" + - name: "ZTA1" - !!omap - - id: YBR058C-A - - name: TSC3 + - id: "YBR058C-A" + - name: "TSC3" - !!omap - - id: YBR068C - - name: BAP2 + - id: "YBR068C" + - name: "BAP2" - !!omap - - id: YBR069C - - name: TAT1 + - id: "YBR069C" + - name: "TAT1" - !!omap - - id: YBR070C - - name: ALG14 + - id: "YBR070C" + - name: "ALG14" - !!omap - - id: YBR084W - - name: MIS1 + - id: "YBR084W" + - name: "MIS1" - !!omap - - id: YBR085W - - name: AAC3 + - id: "YBR085W" + - name: "AAC3" - !!omap - - id: YBR092C - - name: PHO3 + - id: "YBR092C" + - name: "PHO3" - !!omap - - id: YBR093C - - name: PHO5 + - id: "YBR093C" + - name: "PHO5" - !!omap - - id: YBR097W - - name: VPS15 + - id: "YBR097W" + - name: "VPS15" - !!omap - - id: YBR110W - - name: ALG1 + - id: "YBR110W" + - name: "ALG1" - !!omap - - id: YBR111C - - name: YSA1 + - id: "YBR111C" + - name: "YSA1" - !!omap - - id: YBR115C - - name: LYS2 + - id: "YBR115C" + - name: "LYS2" - !!omap - - id: YBR117C - - name: TKL2 + - id: "YBR117C" + - name: "TKL2" - !!omap - - id: YBR121C - - name: GRS1 + - id: "YBR121C" + - name: "GRS1" - !!omap - - id: YBR126C - - name: TPS1 + - id: "YBR126C" + - name: "TPS1" - !!omap - - id: YBR127C - - name: VMA2 + - id: "YBR127C" + - name: "VMA2" - !!omap - - id: YBR132C - - name: AGP2 + - id: "YBR132C" + - name: "AGP2" - !!omap - - id: YBR145W - - name: ADH5 + - id: "YBR145W" + - name: "ADH5" - !!omap - - id: YBR147W - - name: RTC2 + - id: "YBR147W" + - name: "RTC2" - !!omap - - id: YBR149W - - name: ARA1 + - id: "YBR149W" + - name: "ARA1" - !!omap - - id: YBR153W - - name: RIB7 + - id: "YBR153W" + - name: "RIB7" - !!omap - - id: YBR159W - - name: IFA38 + - id: "YBR159W" + - name: "IFA38" - !!omap - - id: YBR161W - - name: CSH1 + - id: "YBR161W" + - name: "CSH1" - !!omap - - id: YBR166C - - name: TYR1 + - id: "YBR166C" + - name: "TYR1" - !!omap - - id: YBR176W - - name: ECM31 + - id: "YBR176W" + - name: "ECM31" - !!omap - - id: YBR177C - - name: EHT1 + - id: "YBR177C" + - name: "EHT1" - !!omap - - id: YBR180W - - name: DTR1 + - id: "YBR180W" + - name: "DTR1" - !!omap - - id: YBR183W - - name: YPC1 + - id: "YBR183W" + - name: "YPC1" - !!omap - - id: YBR192W - - name: RIM2 + - id: "YBR192W" + - name: "RIM2" - !!omap - - id: YBR196C - - name: PGI1 + - id: "YBR196C" + - name: "PGI1" - !!omap - - id: YBR199W - - name: KTR4 + - id: "YBR199W" + - name: "KTR4" - !!omap - - id: YBR204C - - name: LDH1 + - id: "YBR204C" + - name: "LDH1" - !!omap - - id: YBR205W - - name: KTR3 + - id: "YBR205W" + - name: "KTR3" - !!omap - - id: YBR208C - - name: DUR1,2 + - id: "YBR208C" + - name: "DUR1,2" - !!omap - - id: YBR213W - - name: MET8 + - id: "YBR213W" + - name: "MET8" - !!omap - - id: YBR218C - - name: PYC2 + - id: "YBR218C" + - name: "PYC2" - !!omap - - id: YBR221C - - name: PDB1 + - id: "YBR221C" + - name: "PDB1" - !!omap - - id: YBR222C - - name: PCS60 + - id: "YBR222C" + - name: "PCS60" - !!omap - - id: YBR229C - - name: ROT2 + - id: "YBR229C" + - name: "ROT2" - !!omap - - id: YBR235W - - name: VHC1 + - id: "YBR235W" + - name: "VHC1" - !!omap - - id: YBR241C - - name: YBR241C + - id: "YBR241C" + - name: "YBR241C" - !!omap - - id: YBR243C - - name: ALG7 + - id: "YBR243C" + - name: "ALG7" - !!omap - - id: YBR244W - - name: GPX2 + - id: "YBR244W" + - name: "GPX2" - !!omap - - id: YBR248C - - name: HIS7 + - id: "YBR248C" + - name: "HIS7" - !!omap - - id: YBR249C - - name: ARO4 + - id: "YBR249C" + - name: "ARO4" - !!omap - - id: YBR252W - - name: DUT1 + - id: "YBR252W" + - name: "DUT1" - !!omap - - id: YBR256C - - name: RIB5 + - id: "YBR256C" + - name: "RIB5" - !!omap - - id: YBR263W - - name: SHM1 + - id: "YBR263W" + - name: "SHM1" - !!omap - - id: YBR265W - - name: TSC10 + - id: "YBR265W" + - name: "TSC10" - !!omap - - id: YBR281C - - name: DUG2 + - id: "YBR281C" + - name: "DUG2" - !!omap - - id: YBR291C - - name: CTP1 + - id: "YBR291C" + - name: "CTP1" - !!omap - - id: YBR293W - - name: VBA2 + - id: "YBR293W" + - name: "VBA2" - !!omap - - id: YBR294W - - name: SUL1 + - id: "YBR294W" + - name: "SUL1" - !!omap - - id: YBR295W - - name: PCA1 + - id: "YBR295W" + - name: "PCA1" - !!omap - - id: YBR296C - - name: PHO89 + - id: "YBR296C" + - name: "PHO89" - !!omap - - id: YBR298C - - name: MAL31 + - id: "YBR298C" + - name: "MAL31" - !!omap - - id: YBR299W - - name: MAL32 + - id: "YBR299W" + - name: "MAL32" - !!omap - - id: YCL004W - - name: PGS1 + - id: "YCL004W" + - name: "PGS1" - !!omap - - id: YCL005W-A - - name: VMA9 + - id: "YCL005W-A" + - name: "VMA9" - !!omap - - id: YCL009C - - name: ILV6 + - id: "YCL009C" + - name: "ILV6" - !!omap - - id: YCL017C - - name: NFS1 + - id: "YCL017C" + - name: "NFS1" - !!omap - - id: YCL018W - - name: LEU2 + - id: "YCL018W" + - name: "LEU2" - !!omap - - id: YCL025C - - name: AGP1 + - id: "YCL025C" + - name: "AGP1" - !!omap - - id: YCL030C - - name: HIS4 + - id: "YCL030C" + - name: "HIS4" - !!omap - - id: YCL035C - - name: GRX1 + - id: "YCL035C" + - name: "GRX1" - !!omap - - id: YCL038C - - name: ATG22 + - id: "YCL038C" + - name: "ATG22" - !!omap - - id: YCL040W - - name: GLK1 + - id: "YCL040W" + - name: "GLK1" - !!omap - - id: YCL047C - - name: POF1 + - id: "YCL047C" + - name: "POF1" - !!omap - - id: YCL050C - - name: APA1 + - id: "YCL050C" + - name: "APA1" - !!omap - - id: YCL052C - - name: PBN1 + - id: "YCL052C" + - name: "PBN1" - !!omap - - id: YCL064C - - name: CHA1 + - id: "YCL064C" + - name: "CHA1" - !!omap - - id: YCL069W - - name: VBA3 + - id: "YCL069W" + - name: "VBA3" - !!omap - - id: YCR005C - - name: CIT2 + - id: "YCR005C" + - name: "CIT2" - !!omap - - id: YCR010C - - name: ADY2 + - id: "YCR010C" + - name: "ADY2" - !!omap - - id: YCR011C - - name: ADP1 + - id: "YCR011C" + - name: "ADP1" - !!omap - - id: YCR012W - - name: PGK1 + - id: "YCR012W" + - name: "PGK1" - !!omap - - id: YCR024C - - name: SLM5 + - id: "YCR024C" + - name: "SLM5" - !!omap - - id: YCR024C-A - - name: PMP1 + - id: "YCR024C-A" + - name: "PMP1" - !!omap - - id: YCR028C - - name: FEN2 + - id: "YCR028C" + - name: "FEN2" - !!omap - - id: YCR034W - - name: ELO2 + - id: "YCR034W" + - name: "ELO2" - !!omap - - id: YCR036W - - name: RBK1 + - id: "YCR036W" + - name: "RBK1" - !!omap - - id: YCR037C - - name: PHO87 + - id: "YCR037C" + - name: "PHO87" - !!omap - - id: YCR048W - - name: ARE1 + - id: "YCR048W" + - name: "ARE1" - !!omap - - id: YCR053W - - name: THR4 + - id: "YCR053W" + - name: "THR4" - !!omap - - id: YCR068W - - name: ATG15 + - id: "YCR068W" + - name: "ATG15" - !!omap - - id: YCR075C - - name: ERS1 + - id: "YCR075C" + - name: "ERS1" - !!omap - - id: YCR083W - - name: TRX3 + - id: "YCR083W" + - name: "TRX3" - !!omap - - id: YCR098C - - name: GIT1 + - id: "YCR098C" + - name: "GIT1" - !!omap - - id: YCR105W - - name: ADH7 + - id: "YCR105W" + - name: "ADH7" - !!omap - - id: YCR107W - - name: AAD3 + - id: "YCR107W" + - name: "AAD3" - !!omap - - id: YDL004W - - name: ATP16 + - id: "YDL004W" + - name: "ATP16" - !!omap - - id: YDL015C - - name: TSC13 + - id: "YDL015C" + - name: "TSC13" - !!omap - - id: YDL022W - - name: GPD1 + - id: "YDL022W" + - name: "GPD1" - !!omap - - id: YDL024C - - name: DIA3 + - id: "YDL024C" + - name: "DIA3" - !!omap - - id: YDL040C - - name: NAT1 + - id: "YDL040C" + - name: "NAT1" - !!omap - - id: YDL042C - - name: SIR2 + - id: "YDL042C" + - name: "SIR2" - !!omap - - id: YDL045C - - name: FAD1 + - id: "YDL045C" + - name: "FAD1" - !!omap - - id: YDL052C - - name: SLC1 + - id: "YDL052C" + - name: "SLC1" - !!omap - - id: YDL055C - - name: PSA1 + - id: "YDL055C" + - name: "PSA1" - !!omap - - id: YDL066W - - name: IDP1 + - id: "YDL066W" + - name: "IDP1" - !!omap - - id: YDL067C - - name: COX9 + - id: "YDL067C" + - name: "COX9" - !!omap - - id: YDL078C - - name: MDH3 + - id: "YDL078C" + - name: "MDH3" - !!omap - - id: YDL080C - - name: THI3 + - id: "YDL080C" + - name: "THI3" - !!omap - - id: YDL085W - - name: NDE2 + - id: "YDL085W" + - name: "NDE2" - !!omap - - id: YDL090C - - name: RAM1 + - id: "YDL090C" + - name: "RAM1" - !!omap - - id: YDL093W - - name: PMT5 + - id: "YDL093W" + - name: "PMT5" - !!omap - - id: YDL095W - - name: PMT1 + - id: "YDL095W" + - name: "PMT1" - !!omap - - id: YDL100C - - name: GET3 + - id: "YDL100C" + - name: "GET3" - !!omap - - id: YDL103C - - name: QRI1 + - id: "YDL103C" + - name: "QRI1" - !!omap - - id: YDL120W - - name: YFH1 + - id: "YDL120W" + - name: "YFH1" - !!omap - - id: YDL131W - - name: LYS21 + - id: "YDL131W" + - name: "LYS21" - !!omap - - id: YDL141W - - name: BPL1 + - id: "YDL141W" + - name: "BPL1" - !!omap - - id: YDL142C - - name: CRD1 + - id: "YDL142C" + - name: "CRD1" - !!omap - - id: YDL166C - - name: FAP7 + - id: "YDL166C" + - name: "FAP7" - !!omap - - id: YDL168W - - name: SFA1 + - id: "YDL168W" + - name: "SFA1" - !!omap - - id: YDL171C - - name: GLT1 + - id: "YDL171C" + - name: "GLT1" - !!omap - - id: YDL174C - - name: DLD1 + - id: "YDL174C" + - name: "DLD1" - !!omap - - id: YDL178W - - name: DLD2 + - id: "YDL178W" + - name: "DLD2" - !!omap - - id: YDL182W - - name: LYS20 + - id: "YDL182W" + - name: "LYS20" - !!omap - - id: YDL185W - - name: VMA1 + - id: "YDL185W" + - name: "VMA1" - !!omap - - id: YDL198C - - name: GGC1 + - id: "YDL198C" + - name: "GGC1" - !!omap - - id: YDL205C - - name: HEM3 + - id: "YDL205C" + - name: "HEM3" - !!omap - - id: YDL210W - - name: UGA4 + - id: "YDL210W" + - name: "UGA4" - !!omap - - id: YDL215C - - name: GDH2 + - id: "YDL215C" + - name: "GDH2" - !!omap - - id: YDL219W - - name: DTD1 + - id: "YDL219W" + - name: "DTD1" - !!omap - - id: YDL236W - - name: PHO13 + - id: "YDL236W" + - name: "PHO13" - !!omap - - id: YDL238C - - name: GUD1 + - id: "YDL238C" + - name: "GUD1" - !!omap - - id: YDL243C - - name: AAD4 + - id: "YDL243C" + - name: "AAD4" - !!omap - - id: YDL245C - - name: HXT15 + - id: "YDL245C" + - name: "HXT15" - !!omap - - id: YDL246C - - name: SOR2 + - id: "YDL246C" + - name: "SOR2" - !!omap - - id: YDL247W - - name: MPH2 + - id: "YDL247W" + - name: "MPH2" - !!omap - - id: YDR001C - - name: NTH1 + - id: "YDR001C" + - name: "NTH1" - !!omap - - id: YDR007W - - name: TRP1 + - id: "YDR007W" + - name: "TRP1" - !!omap - - id: YDR009W - - name: GAL3 + - id: "YDR009W" + - name: "GAL3" - !!omap - - id: YDR017C - - name: KCS1 + - id: "YDR017C" + - name: "KCS1" - !!omap - - id: YDR019C - - name: GCV1 + - id: "YDR019C" + - name: "GCV1" - !!omap - - id: YDR020C - - name: DAS2 + - id: "YDR020C" + - name: "DAS2" - !!omap - - id: YDR023W - - name: SES1 + - id: "YDR023W" + - name: "SES1" - !!omap - - id: YDR035W - - name: ARO3 + - id: "YDR035W" + - name: "ARO3" - !!omap - - id: YDR036C - - name: EHD3 + - id: "YDR036C" + - name: "EHD3" - !!omap - - id: YDR037W - - name: KRS1 + - id: "YDR037W" + - name: "KRS1" - !!omap - - id: YDR038C - - name: ENA5 + - id: "YDR038C" + - name: "ENA5" - !!omap - - id: YDR039C - - name: ENA2 + - id: "YDR039C" + - name: "ENA2" - !!omap - - id: YDR040C - - name: ENA1 + - id: "YDR040C" + - name: "ENA1" - !!omap - - id: YDR044W - - name: HEM13 + - id: "YDR044W" + - name: "HEM13" - !!omap - - id: YDR046C - - name: BAP3 + - id: "YDR046C" + - name: "BAP3" - !!omap - - id: YDR047W - - name: HEM12 + - id: "YDR047W" + - name: "HEM12" - !!omap - - id: YDR050C - - name: TPI1 + - id: "YDR050C" + - name: "TPI1" - !!omap - - id: YDR051C - - name: DET1 + - id: "YDR051C" + - name: "DET1" - !!omap - - id: YDR058C - - name: TGL2 + - id: "YDR058C" + - name: "TGL2" - !!omap - - id: YDR062W - - name: LCB2 + - id: "YDR062W" + - name: "LCB2" - !!omap - - id: YDR071C - - name: PAA1 + - id: "YDR071C" + - name: "PAA1" - !!omap - - id: YDR072C - - name: IPT1 + - id: "YDR072C" + - name: "IPT1" - !!omap - - id: YDR074W - - name: TPS2 + - id: "YDR074W" + - name: "TPS2" - !!omap - - id: YDR093W - - name: DNF2 + - id: "YDR093W" + - name: "DNF2" - !!omap - - id: YDR098C - - name: GRX3 + - id: "YDR098C" + - name: "GRX3" - !!omap - - id: YDR105C - - name: TMS1 + - id: "YDR105C" + - name: "TMS1" - !!omap - - id: YDR111C - - name: ALT2 + - id: "YDR111C" + - name: "ALT2" - !!omap - - id: YDR127W - - name: ARO1 + - id: "YDR127W" + - name: "ARO1" - !!omap - - id: YDR135C - - name: YCF1 + - id: "YDR135C" + - name: "YCF1" - !!omap - - id: YDR147W - - name: EKI1 + - id: "YDR147W" + - name: "EKI1" - !!omap - - id: YDR148C - - name: KGD2 + - id: "YDR148C" + - name: "KGD2" - !!omap - - id: YDR158W - - name: HOM2 + - id: "YDR158W" + - name: "HOM2" - !!omap - - id: YDR173C - - name: ARG82 + - id: "YDR173C" + - name: "ARG82" - !!omap - - id: YDR178W - - name: SDH4 + - id: "YDR178W" + - name: "SDH4" - !!omap - - id: YDR191W - - name: HST4 + - id: "YDR191W" + - name: "HST4" - !!omap - - id: YDR196C - - name: CAB5 + - id: "YDR196C" + - name: "CAB5" - !!omap - - id: YDR204W - - name: COQ4 + - id: "YDR204W" + - name: "COQ4" - !!omap - - id: YDR208W - - name: MSS4 + - id: "YDR208W" + - name: "MSS4" - !!omap - - id: YDR226W - - name: ADK1 + - id: "YDR226W" + - name: "ADK1" - !!omap - - id: YDR231C - - name: COX20 + - id: "YDR231C" + - name: "COX20" - !!omap - - id: YDR232W - - name: HEM1 + - id: "YDR232W" + - name: "HEM1" - !!omap - - id: YDR234W - - name: LYS4 + - id: "YDR234W" + - name: "LYS4" - !!omap - - id: YDR236C - - name: FMN1 + - id: "YDR236C" + - name: "FMN1" - !!omap - - id: YDR242W - - name: AMD2 + - id: "YDR242W" + - name: "AMD2" - !!omap - - id: YDR248C - - name: YDR248C + - id: "YDR248C" + - name: "YDR248C" - !!omap - - id: YDR256C - - name: CTA1 + - id: "YDR256C" + - name: "CTA1" - !!omap - - id: YDR261C - - name: EXG2 + - id: "YDR261C" + - name: "EXG2" - !!omap - - id: YDR268W - - name: MSW1 + - id: "YDR268W" + - name: "MSW1" - !!omap - - id: YDR270W - - name: CCC2 + - id: "YDR270W" + - name: "CCC2" - !!omap - - id: YDR272W - - name: GLO2 + - id: "YDR272W" + - name: "GLO2" - !!omap - - id: YDR284C - - name: DPP1 + - id: "YDR284C" + - name: "DPP1" - !!omap - - id: YDR287W - - name: INM2 + - id: "YDR287W" + - name: "INM2" - !!omap - - id: YDR294C - - name: DPL1 + - id: "YDR294C" + - name: "DPL1" - !!omap - - id: YDR297W - - name: SUR2 + - id: "YDR297W" + - name: "SUR2" - !!omap - - id: YDR298C - - name: ATP5 + - id: "YDR298C" + - name: "ATP5" - !!omap - - id: YDR300C - - name: PRO1 + - id: "YDR300C" + - name: "PRO1" - !!omap - - id: YDR302W - - name: GPI11 + - id: "YDR302W" + - name: "GPI11" - !!omap - - id: YDR305C - - name: HNT2 + - id: "YDR305C" + - name: "HNT2" - !!omap - - id: YDR315C - - name: IPK1 + - id: "YDR315C" + - name: "IPK1" - !!omap - - id: YDR321W - - name: ASP1 + - id: "YDR321W" + - name: "ASP1" - !!omap - - id: YDR322C-A - - name: TIM11 + - id: "YDR322C-A" + - name: "TIM11" - !!omap - - id: YDR341C - - name: YDR341C + - id: "YDR341C" + - name: "YDR341C" - !!omap - - id: YDR342C - - name: HXT7 + - id: "YDR342C" + - name: "HXT7" - !!omap - - id: YDR343C - - name: HXT6 + - id: "YDR343C" + - name: "HXT6" - !!omap - - id: YDR345C - - name: HXT3 + - id: "YDR345C" + - name: "HXT3" - !!omap - - id: YDR352W - - name: YPQ2 + - id: "YDR352W" + - name: "YPQ2" - !!omap - - id: YDR353W - - name: TRR1 + - id: "YDR353W" + - name: "TRR1" - !!omap - - id: YDR354W - - name: TRP4 + - id: "YDR354W" + - name: "TRP4" - !!omap - - id: YDR367W - - name: KEI1 + - id: "YDR367W" + - name: "KEI1" - !!omap - - id: YDR368W - - name: YPR1 + - id: "YDR368W" + - name: "YPR1" - !!omap - - id: YDR371W - - name: CTS2 + - id: "YDR371W" + - name: "CTS2" - !!omap - - id: YDR373W - - name: FRQ1 + - id: "YDR373W" + - name: "FRQ1" - !!omap - - id: YDR376W - - name: ARH1 + - id: "YDR376W" + - name: "ARH1" - !!omap - - id: YDR377W - - name: ATP17 + - id: "YDR377W" + - name: "ATP17" - !!omap - - id: YDR380W - - name: ARO10 + - id: "YDR380W" + - name: "ARO10" - !!omap - - id: YDR384C - - name: ATO3 + - id: "YDR384C" + - name: "ATO3" - !!omap - - id: YDR387C - - name: CIN10 + - id: "YDR387C" + - name: "CIN10" - !!omap - - id: YDR399W - - name: HPT1 + - id: "YDR399W" + - name: "HPT1" - !!omap - - id: YDR400W - - name: URH1 + - id: "YDR400W" + - name: "URH1" - !!omap - - id: YDR402C - - name: DIT2 + - id: "YDR402C" + - name: "DIT2" - !!omap - - id: YDR403W - - name: DIT1 + - id: "YDR403W" + - name: "DIT1" - !!omap - - id: YDR408C - - name: ADE8 + - id: "YDR408C" + - name: "ADE8" - !!omap - - id: YDR410C - - name: STE14 + - id: "YDR410C" + - name: "STE14" - !!omap - - id: YDR428C - - name: BNA7 + - id: "YDR428C" + - name: "BNA7" - !!omap - - id: YDR437W - - name: GPI19 + - id: "YDR437W" + - name: "GPI19" - !!omap - - id: YDR440W - - name: DOT1 + - id: "YDR440W" + - name: "DOT1" - !!omap - - id: YDR441C - - name: APT2 + - id: "YDR441C" + - name: "APT2" - !!omap - - id: YDR452W - - name: PPN1 + - id: "YDR452W" + - name: "PPN1" - !!omap - - id: YDR453C - - name: TSA2 + - id: "YDR453C" + - name: "TSA2" - !!omap - - id: YDR454C - - name: GUK1 + - id: "YDR454C" + - name: "GUK1" - !!omap - - id: YDR456W - - name: NHX1 + - id: "YDR456W" + - name: "NHX1" - !!omap - - id: YDR481C - - name: PHO8 + - id: "YDR481C" + - name: "PHO8" - !!omap - - id: YDR483W - - name: KRE2 + - id: "YDR483W" + - name: "KRE2" - !!omap - - id: YDR487C - - name: RIB3 + - id: "YDR487C" + - name: "RIB3" - !!omap - - id: YDR497C - - name: ITR1 + - id: "YDR497C" + - name: "ITR1" - !!omap - - id: YDR502C - - name: SAM2 + - id: "YDR502C" + - name: "SAM2" - !!omap - - id: YDR503C - - name: LPP1 + - id: "YDR503C" + - name: "LPP1" - !!omap - - id: YDR508C - - name: GNP1 + - id: "YDR508C" + - name: "GNP1" - !!omap - - id: YDR513W - - name: GRX2 + - id: "YDR513W" + - name: "GRX2" - !!omap - - id: YDR516C - - name: EMI2 + - id: "YDR516C" + - name: "EMI2" - !!omap - - id: YDR529C - - name: QCR7 + - id: "YDR529C" + - name: "QCR7" - !!omap - - id: YDR530C - - name: APA2 + - id: "YDR530C" + - name: "APA2" - !!omap - - id: YDR531W - - name: CAB1 + - id: "YDR531W" + - name: "CAB1" - !!omap - - id: YDR533C - - name: HSP31 + - id: "YDR533C" + - name: "HSP31" - !!omap - - id: YDR536W - - name: STL1 + - id: "YDR536W" + - name: "STL1" - !!omap - - id: YDR538W - - name: PAD1 + - id: "YDR538W" + - name: "PAD1" - !!omap - - id: YDR539W - - name: FDC1 + - id: "YDR539W" + - name: "FDC1" - !!omap - - id: YEL004W - - name: YEA4 + - id: "YEL004W" + - name: "YEA4" - !!omap - - id: YEL006W - - name: YEA6 + - id: "YEL006W" + - name: "YEA6" - !!omap - - id: YEL017C-A - - name: PMP2 + - id: "YEL017C-A" + - name: "PMP2" - !!omap - - id: YEL021W - - name: URA3 + - id: "YEL021W" + - name: "URA3" - !!omap - - id: YEL024W - - name: RIP1 + - id: "YEL024W" + - name: "RIP1" - !!omap - - id: YEL027W - - name: VMA3 + - id: "YEL027W" + - name: "VMA3" - !!omap - - id: YEL029C - - name: BUD16 + - id: "YEL029C" + - name: "BUD16" - !!omap - - id: YEL031W - - name: SPF1 + - id: "YEL031W" + - name: "SPF1" - !!omap - - id: YEL038W - - name: UTR4 + - id: "YEL038W" + - name: "UTR4" - !!omap - - id: YEL039C - - name: CYC7 + - id: "YEL039C" + - name: "CYC7" - !!omap - - id: YEL041W - - name: YEF1 + - id: "YEL041W" + - name: "YEF1" - !!omap - - id: YEL042W - - name: GDA1 + - id: "YEL042W" + - name: "GDA1" - !!omap - - id: YEL046C - - name: GLY1 + - id: "YEL046C" + - name: "GLY1" - !!omap - - id: YEL047C - - name: FRD1 + - id: "YEL047C" + - name: "FRD1" - !!omap - - id: YEL051W - - name: VMA8 + - id: "YEL051W" + - name: "VMA8" - !!omap - - id: YEL058W - - name: PCM1 + - id: "YEL058W" + - name: "PCM1" - !!omap - - id: YEL063C - - name: CAN1 + - id: "YEL063C" + - name: "CAN1" - !!omap - - id: YEL066W - - name: HPA3 + - id: "YEL066W" + - name: "HPA3" - !!omap - - id: YEL069C - - name: HXT13 + - id: "YEL069C" + - name: "HXT13" - !!omap - - id: YEL070W - - name: DSF1 + - id: "YEL070W" + - name: "DSF1" - !!omap - - id: YEL071W - - name: DLD3 + - id: "YEL071W" + - name: "DLD3" - !!omap - - id: YER003C - - name: PMI40 + - id: "YER003C" + - name: "PMI40" - !!omap - - id: YER005W - - name: YND1 + - id: "YER005W" + - name: "YND1" - !!omap - - id: YER010C - - name: YER010C + - id: "YER010C" + - name: "YER010C" - !!omap - - id: YER014W - - name: HEM14 + - id: "YER014W" + - name: "HEM14" - !!omap - - id: YER015W - - name: FAA2 + - id: "YER015W" + - name: "FAA2" - !!omap - - id: YER019W - - name: ISC1 + - id: "YER019W" + - name: "ISC1" - !!omap - - id: YER023W - - name: PRO3 + - id: "YER023W" + - name: "PRO3" - !!omap - - id: YER024W - - name: YAT2 + - id: "YER024W" + - name: "YAT2" - !!omap - - id: YER026C - - name: CHO1 + - id: "YER026C" + - name: "CHO1" - !!omap - - id: YER037W - - name: PHM8 + - id: "YER037W" + - name: "PHM8" - !!omap - - id: YER042W - - name: MXR1 + - id: "YER042W" + - name: "MXR1" - !!omap - - id: YER043C - - name: SAH1 + - id: "YER043C" + - name: "SAH1" - !!omap - - id: YER052C - - name: HOM3 + - id: "YER052C" + - name: "HOM3" - !!omap - - id: YER053C - - name: PIC2 + - id: "YER053C" + - name: "PIC2" - !!omap - - id: YER055C - - name: HIS1 + - id: "YER055C" + - name: "HIS1" - !!omap - - id: YER056C - - name: FCY2 + - id: "YER056C" + - name: "FCY2" - !!omap - - id: YER060W - - name: FCY21 + - id: "YER060W" + - name: "FCY21" - !!omap - - id: YER060W-A - - name: FCY22 + - id: "YER060W-A" + - name: "FCY22" - !!omap - - id: YER061C - - name: CEM1 + - id: "YER061C" + - name: "CEM1" - !!omap - - id: YER062C - - name: GPP2 + - id: "YER062C" + - name: "GPP2" - !!omap - - id: YER065C - - name: ICL1 + - id: "YER065C" + - name: "ICL1" - !!omap - - id: YER069W - - name: ARG5,6 + - id: "YER069W" + - name: "ARG5,6" - !!omap - - id: YER070W - - name: RNR1 + - id: "YER070W" + - name: "RNR1" - !!omap - - id: YER073W - - name: ALD5 + - id: "YER073W" + - name: "ALD5" - !!omap - - id: YER081W - - name: SER3 + - id: "YER081W" + - name: "SER3" - !!omap - - id: YER086W - - name: ILV1 + - id: "YER086W" + - name: "ILV1" - !!omap - - id: YER087W - - name: AIM10 + - id: "YER087W" + - name: "AIM10" - !!omap - - id: YER090W - - name: TRP2 + - id: "YER090W" + - name: "TRP2" - !!omap - - id: YER091C - - name: MET6 + - id: "YER091C" + - name: "MET6" - !!omap - - id: YER099C - - name: PRS2 + - id: "YER099C" + - name: "PRS2" - !!omap - - id: YER119C - - name: AVT6 + - id: "YER119C" + - name: "AVT6" - !!omap - - id: YER141W - - name: COX15 + - id: "YER141W" + - name: "COX15" - !!omap - - id: YER152C - - name: YER152C + - id: "YER152C" + - name: "YER152C" - !!omap - - id: YER163C - - name: GCG1 + - id: "YER163C" + - name: "GCG1" - !!omap - - id: YER170W - - name: ADK2 + - id: "YER170W" + - name: "ADK2" - !!omap - - id: YER174C - - name: GRX4 + - id: "YER174C" + - name: "GRX4" - !!omap - - id: YER175C - - name: TMT1 + - id: "YER175C" + - name: "TMT1" - !!omap - - id: YER178W - - name: PDA1 + - id: "YER178W" + - name: "PDA1" - !!omap - - id: YER183C - - name: FAU1 + - id: "YER183C" + - name: "FAU1" - !!omap - - id: YFL001W - - name: DEG1 + - id: "YFL001W" + - name: "DEG1" - !!omap - - id: YFL011W - - name: HXT10 + - id: "YFL011W" + - name: "HXT10" - !!omap - - id: YFL017C - - name: GNA1 + - id: "YFL017C" + - name: "GNA1" - !!omap - - id: YFL018C - - name: LPD1 + - id: "YFL018C" + - name: "LPD1" - !!omap - - id: YFL022C - - name: FRS2 + - id: "YFL022C" + - name: "FRS2" - !!omap - - id: YFL030W - - name: AGX1 + - id: "YFL030W" + - name: "AGX1" - !!omap - - id: YFL045C - - name: SEC53 + - id: "YFL045C" + - name: "SEC53" - !!omap - - id: YFL053W - - name: DAK2 + - id: "YFL053W" + - name: "DAK2" - !!omap - - id: YFL054C - - name: AQY3 + - id: "YFL054C" + - name: "AQY3" - !!omap - - id: YFL055W - - name: AGP3 + - id: "YFL055W" + - name: "AGP3" - !!omap - - id: YFL058W - - name: THI5 + - id: "YFL058W" + - name: "THI5" - !!omap - - id: YFL059W - - name: SNZ3 + - id: "YFL059W" + - name: "SNZ3" - !!omap - - id: YFL060C - - name: SNO3 + - id: "YFL060C" + - name: "SNO3" - !!omap - - id: YFL061W - - name: DDI2 + - id: "YFL061W" + - name: "DDI2" - !!omap - - id: YFR015C - - name: GSY1 + - id: "YFR015C" + - name: "GSY1" - !!omap - - id: YFR019W - - name: FAB1 + - id: "YFR019W" + - name: "FAB1" - !!omap - - id: YFR025C - - name: HIS2 + - id: "YFR025C" + - name: "HIS2" - !!omap - - id: YFR030W - - name: MET10 + - id: "YFR030W" + - name: "MET10" - !!omap - - id: YFR033C - - name: QCR6 + - id: "YFR033C" + - name: "QCR6" - !!omap - - id: YFR044C - - name: DUG1 + - id: "YFR044C" + - name: "DUG1" - !!omap - - id: YFR047C - - name: BNA6 + - id: "YFR047C" + - name: "BNA6" - !!omap - - id: YFR053C - - name: HXK1 + - id: "YFR053C" + - name: "HXK1" - !!omap - - id: YFR055W - - name: IRC7 + - id: "YFR055W" + - name: "IRC7" - !!omap - - id: YGL001C - - name: ERG26 + - id: "YGL001C" + - name: "ERG26" - !!omap - - id: YGL006W - - name: PMC1 + - id: "YGL006W" + - name: "PMC1" - !!omap - - id: YGL008C - - name: PMA1 + - id: "YGL008C" + - name: "PMA1" - !!omap - - id: YGL009C - - name: LEU1 + - id: "YGL009C" + - name: "LEU1" - !!omap - - id: YGL012W - - name: ERG4 + - id: "YGL012W" + - name: "ERG4" - !!omap - - id: YGL017W - - name: ATE1 + - id: "YGL017W" + - name: "ATE1" - !!omap - - id: YGL022W - - name: STT3 + - id: "YGL022W" + - name: "STT3" - !!omap - - id: YGL026C - - name: TRP5 + - id: "YGL026C" + - name: "TRP5" - !!omap - - id: YGL027C - - name: CWH41 + - id: "YGL027C" + - name: "CWH41" - !!omap - - id: YGL037C - - name: PNC1 + - id: "YGL037C" + - name: "PNC1" - !!omap - - id: YGL038C - - name: OCH1 + - id: "YGL038C" + - name: "OCH1" - !!omap - - id: YGL040C - - name: HEM2 + - id: "YGL040C" + - name: "HEM2" - !!omap - - id: YGL047W - - name: ALG13 + - id: "YGL047W" + - name: "ALG13" - !!omap - - id: YGL055W - - name: OLE1 + - id: "YGL055W" + - name: "OLE1" - !!omap - - id: YGL062W - - name: PYC1 + - id: "YGL062W" + - name: "PYC1" - !!omap - - id: YGL063W - - name: PUS2 + - id: "YGL063W" + - name: "PUS2" - !!omap - - id: YGL065C - - name: ALG2 + - id: "YGL065C" + - name: "ALG2" - !!omap - - id: YGL067W - - name: NPY1 + - id: "YGL067W" + - name: "NPY1" - !!omap - - id: YGL077C - - name: HNM1 + - id: "YGL077C" + - name: "HNM1" - !!omap - - id: YGL080W - - name: MPC1 + - id: "YGL080W" + - name: "MPC1" - !!omap - - id: YGL084C - - name: GUP1 + - id: "YGL084C" + - name: "GUP1" - !!omap - - id: YGL104C - - name: VPS73 + - id: "YGL104C" + - name: "VPS73" - !!omap - - id: YGL119W - - name: COQ8 + - id: "YGL119W" + - name: "COQ8" - !!omap - - id: YGL125W - - name: MET13 + - id: "YGL125W" + - name: "MET13" - !!omap - - id: YGL142C - - name: GPI10 + - id: "YGL142C" + - name: "GPI10" - !!omap - - id: YGL148W - - name: ARO2 + - id: "YGL148W" + - name: "ARO2" - !!omap - - id: YGL154C - - name: LYS5 + - id: "YGL154C" + - name: "LYS5" - !!omap - - id: YGL156W - - name: AMS1 + - id: "YGL156W" + - name: "AMS1" - !!omap - - id: YGL167C - - name: PMR1 + - id: "YGL167C" + - name: "PMR1" - !!omap - - id: YGL169W - - name: SUA5 + - id: "YGL169W" + - name: "SUA5" - !!omap - - id: YGL184C - - name: STR3 + - id: "YGL184C" + - name: "STR3" - !!omap - - id: YGL186C - - name: TPN1 + - id: "YGL186C" + - name: "TPN1" - !!omap - - id: YGL187C - - name: COX4 + - id: "YGL187C" + - name: "COX4" - !!omap - - id: YGL191W - - name: COX13 + - id: "YGL191W" + - name: "COX13" - !!omap - - id: YGL196W - - name: DSD1 + - id: "YGL196W" + - name: "DSD1" - !!omap - - id: YGL202W - - name: ARO8 + - id: "YGL202W" + - name: "ARO8" - !!omap - - id: YGL205W - - name: POX1 + - id: "YGL205W" + - name: "POX1" - !!omap - - id: YGL224C - - name: SDT1 + - id: "YGL224C" + - name: "SDT1" - !!omap - - id: YGL225W - - name: VRG4 + - id: "YGL225W" + - name: "VRG4" - !!omap - - id: YGL234W - - name: ADE5,7 + - id: "YGL234W" + - name: "ADE5,7" - !!omap - - id: YGL245W - - name: GUS1 + - id: "YGL245W" + - name: "GUS1" - !!omap - - id: YGL248W - - name: PDE1 + - id: "YGL248W" + - name: "PDE1" - !!omap - - id: YGL253W - - name: HXK2 + - id: "YGL253W" + - name: "HXK2" - !!omap - - id: YGL255W - - name: ZRT1 + - id: "YGL255W" + - name: "ZRT1" - !!omap - - id: YGL256W - - name: ADH4 + - id: "YGL256W" + - name: "ADH4" - !!omap - - id: YGR007W - - name: ECT1 + - id: "YGR007W" + - name: "ECT1" - !!omap - - id: YGR010W - - name: NMA2 + - id: "YGR010W" + - name: "NMA2" - !!omap - - id: YGR012W - - name: MCY1 + - id: "YGR012W" + - name: "MCY1" - !!omap - - id: YGR015C - - name: EAT1 + - id: "YGR015C" + - name: "EAT1" - !!omap - - id: YGR019W - - name: UGA1 + - id: "YGR019W" + - name: "UGA1" - !!omap - - id: YGR020C - - name: VMA7 + - id: "YGR020C" + - name: "VMA7" - !!omap - - id: YGR032W - - name: GSC2 + - id: "YGR032W" + - name: "GSC2" - !!omap - - id: YGR036C - - name: CAX4 + - id: "YGR036C" + - name: "CAX4" - !!omap - - id: YGR043C - - name: NQM1 + - id: "YGR043C" + - name: "NQM1" - !!omap - - id: YGR046W - - name: TAM41 + - id: "YGR046W" + - name: "TAM41" - !!omap - - id: YGR055W - - name: MUP1 + - id: "YGR055W" + - name: "MUP1" - !!omap - - id: YGR060W - - name: ERG25 + - id: "YGR060W" + - name: "ERG25" - !!omap - - id: YGR061C - - name: ADE6 + - id: "YGR061C" + - name: "ADE6" - !!omap - - id: YGR062C - - name: COX18 + - id: "YGR062C" + - name: "COX18" - !!omap - - id: YGR065C - - name: VHT1 + - id: "YGR065C" + - name: "VHT1" - !!omap - - id: YGR087C - - name: PDC6 + - id: "YGR087C" + - name: "PDC6" - !!omap - - id: YGR088W - - name: CTT1 + - id: "YGR088W" + - name: "CTT1" - !!omap - - id: YGR094W - - name: VAS1 + - id: "YGR094W" + - name: "VAS1" - !!omap - - id: YGR096W - - name: TPC1 + - id: "YGR096W" + - name: "TPC1" - !!omap - - id: YGR110W - - name: CLD1 + - id: "YGR110W" + - name: "CLD1" - !!omap - - id: YGR121C - - name: MEP1 + - id: "YGR121C" + - name: "MEP1" - !!omap - - id: YGR124W - - name: ASN2 + - id: "YGR124W" + - name: "ASN2" - !!omap - - id: YGR138C - - name: TPO2 + - id: "YGR138C" + - name: "TPO2" - !!omap - - id: YGR143W - - name: SKN1 + - id: "YGR143W" + - name: "SKN1" - !!omap - - id: YGR144W - - name: THI4 + - id: "YGR144W" + - name: "THI4" - !!omap - - id: YGR147C - - name: NAT2 + - id: "YGR147C" + - name: "NAT2" - !!omap - - id: YGR154C - - name: GTO1 + - id: "YGR154C" + - name: "GTO1" - !!omap - - id: YGR155W - - name: CYS4 + - id: "YGR155W" + - name: "CYS4" - !!omap - - id: YGR157W - - name: CHO2 + - id: "YGR157W" + - name: "CHO2" - !!omap - - id: YGR170W - - name: PSD2 + - id: "YGR170W" + - name: "PSD2" - !!omap - - id: YGR171C - - name: MSM1 + - id: "YGR171C" + - name: "MSM1" - !!omap - - id: YGR175C - - name: ERG1 + - id: "YGR175C" + - name: "ERG1" - !!omap - - id: YGR177C - - name: ATF2 + - id: "YGR177C" + - name: "ATF2" - !!omap - - id: YGR180C - - name: RNR4 + - id: "YGR180C" + - name: "RNR4" - !!omap - - id: YGR183C - - name: QCR9 + - id: "YGR183C" + - name: "QCR9" - !!omap - - id: YGR185C - - name: TYS1 + - id: "YGR185C" + - name: "TYS1" - !!omap - - id: YGR191W - - name: HIP1 + - id: "YGR191W" + - name: "HIP1" - !!omap - - id: YGR192C - - name: TDH3 + - id: "YGR192C" + - name: "TDH3" - !!omap - - id: YGR193C - - name: PDX1 + - id: "YGR193C" + - name: "PDX1" - !!omap - - id: YGR194C - - name: XKS1 + - id: "YGR194C" + - name: "XKS1" - !!omap - - id: YGR202C - - name: PCT1 + - id: "YGR202C" + - name: "PCT1" - !!omap - - id: YGR204W - - name: ADE3 + - id: "YGR204W" + - name: "ADE3" - !!omap - - id: YGR208W - - name: SER2 + - id: "YGR208W" + - name: "SER2" - !!omap - - id: YGR209C - - name: TRX2 + - id: "YGR209C" + - name: "TRX2" - !!omap - - id: YGR216C - - name: GPI1 + - id: "YGR216C" + - name: "GPI1" - !!omap - - id: YGR227W - - name: DIE2 + - id: "YGR227W" + - name: "DIE2" - !!omap - - id: YGR234W - - name: YHB1 + - id: "YGR234W" + - name: "YHB1" - !!omap - - id: YGR240C - - name: PFK1 + - id: "YGR240C" + - name: "PFK1" - !!omap - - id: YGR243W - - name: MPC3 + - id: "YGR243W" + - name: "MPC3" - !!omap - - id: YGR244C - - name: LSC2 + - id: "YGR244C" + - name: "LSC2" - !!omap - - id: YGR247W - - name: CPD1 + - id: "YGR247W" + - name: "CPD1" - !!omap - - id: YGR248W - - name: SOL4 + - id: "YGR248W" + - name: "SOL4" - !!omap - - id: YGR254W - - name: ENO1 + - id: "YGR254W" + - name: "ENO1" - !!omap - - id: YGR255C - - name: COQ6 + - id: "YGR255C" + - name: "COQ6" - !!omap - - id: YGR256W - - name: GND2 + - id: "YGR256W" + - name: "GND2" - !!omap - - id: YGR260W - - name: TNA1 + - id: "YGR260W" + - name: "TNA1" - !!omap - - id: YGR264C - - name: MES1 + - id: "YGR264C" + - name: "MES1" - !!omap - - id: YGR267C - - name: FOL2 + - id: "YGR267C" + - name: "FOL2" - !!omap - - id: YGR277C - - name: CAB4 + - id: "YGR277C" + - name: "CAB4" - !!omap - - id: YGR282C - - name: BGL2 + - id: "YGR282C" + - name: "BGL2" - !!omap - - id: YGR286C - - name: BIO2 + - id: "YGR286C" + - name: "BIO2" - !!omap - - id: YGR287C - - name: IMA1 + - id: "YGR287C" + - name: "IMA1" - !!omap - - id: YGR289C - - name: MAL11 + - id: "YGR289C" + - name: "MAL11" - !!omap - - id: YGR292W - - name: MAL12 + - id: "YGR292W" + - name: "MAL12" - !!omap - - id: YHL003C - - name: LAG1 + - id: "YHL003C" + - name: "LAG1" - !!omap - - id: YHL011C - - name: PRS3 + - id: "YHL011C" + - name: "PRS3" - !!omap - - id: YHL012W - - name: YHL012W + - id: "YHL012W" + - name: "YHL012W" - !!omap - - id: YHL016C - - name: DUR3 + - id: "YHL016C" + - name: "DUR3" - !!omap - - id: YHL018W - - name: YHL018W + - id: "YHL018W" + - name: "YHL018W" - !!omap - - id: YHL032C - - name: GUT1 + - id: "YHL032C" + - name: "GUT1" - !!omap - - id: YHL036W - - name: MUP3 + - id: "YHL036W" + - name: "MUP3" - !!omap - - id: YHR001W-A - - name: QCR10 + - id: "YHR001W-A" + - name: "QCR10" - !!omap - - id: YHR002W - - name: LEU5 + - id: "YHR002W" + - name: "LEU5" - !!omap - - id: YHR007C - - name: ERG11 + - id: "YHR007C" + - name: "ERG11" - !!omap - - id: YHR008C - - name: SOD2 + - id: "YHR008C" + - name: "SOD2" - !!omap - - id: YHR011W - - name: DIA4 + - id: "YHR011W" + - name: "DIA4" - !!omap - - id: YHR013C - - name: ARD1 + - id: "YHR013C" + - name: "ARD1" - !!omap - - id: YHR018C - - name: ARG4 + - id: "YHR018C" + - name: "ARG4" - !!omap - - id: YHR019C - - name: DED81 + - id: "YHR019C" + - name: "DED81" - !!omap - - id: YHR020W - - name: YHR020W + - id: "YHR020W" + - name: "YHR020W" - !!omap - - id: YHR025W - - name: THR1 + - id: "YHR025W" + - name: "THR1" - !!omap - - id: YHR026W - - name: VMA16 + - id: "YHR026W" + - name: "VMA16" - !!omap - - id: YHR037W - - name: PUT2 + - id: "YHR037W" + - name: "PUT2" - !!omap - - id: YHR039C-A - - name: VMA10 + - id: "YHR039C-A" + - name: "VMA10" - !!omap - - id: YHR042W - - name: NCP1 + - id: "YHR042W" + - name: "NCP1" - !!omap - - id: YHR043C - - name: DOG2 + - id: "YHR043C" + - name: "DOG2" - !!omap - - id: YHR044C - - name: DOG1 + - id: "YHR044C" + - name: "DOG1" - !!omap - - id: YHR046C - - name: INM1 + - id: "YHR046C" + - name: "INM1" - !!omap - - id: YHR051W - - name: COX6 + - id: "YHR051W" + - name: "COX6" - !!omap - - id: YHR063C - - name: PAN5 + - id: "YHR063C" + - name: "PAN5" - !!omap - - id: YHR067W - - name: HTD2 + - id: "YHR067W" + - name: "HTD2" - !!omap - - id: YHR068W - - name: DYS1 + - id: "YHR068W" + - name: "DYS1" - !!omap - - id: YHR072W - - name: ERG7 + - id: "YHR072W" + - name: "ERG7" - !!omap - - id: YHR074W - - name: QNS1 + - id: "YHR074W" + - name: "QNS1" - !!omap - - id: YHR091C - - name: MSR1 + - id: "YHR091C" + - name: "MSR1" - !!omap - - id: YHR092C - - name: HXT4 + - id: "YHR092C" + - name: "HXT4" - !!omap - - id: YHR094C - - name: HXT1 + - id: "YHR094C" + - name: "HXT1" - !!omap - - id: YHR096C - - name: HXT5 + - id: "YHR096C" + - name: "HXT5" - !!omap - - id: YHR100C - - name: GEP4 + - id: "YHR100C" + - name: "GEP4" - !!omap - - id: YHR104W - - name: GRE3 + - id: "YHR104W" + - name: "GRE3" - !!omap - - id: YHR106W - - name: TRR2 + - id: "YHR106W" + - name: "TRR2" - !!omap - - id: YHR109W - - name: CTM1 + - id: "YHR109W" + - name: "CTM1" - !!omap - - id: YHR116W - - name: COX23 + - id: "YHR116W" + - name: "COX23" - !!omap - - id: YHR119W - - name: SET1 + - id: "YHR119W" + - name: "SET1" - !!omap - - id: YHR123W - - name: EPT1 + - id: "YHR123W" + - name: "EPT1" - !!omap - - id: YHR128W - - name: FUR1 + - id: "YHR128W" + - name: "FUR1" - !!omap - - id: YHR137W - - name: ARO9 + - id: "YHR137W" + - name: "ARO9" - !!omap - - id: YHR144C - - name: DCD1 + - id: "YHR144C" + - name: "DCD1" - !!omap - - id: YHR162W - - name: MPC2 + - id: "YHR162W" + - name: "MPC2" - !!omap - - id: YHR163W - - name: SOL3 + - id: "YHR163W" + - name: "SOL3" - !!omap - - id: YHR174W - - name: ENO2 + - id: "YHR174W" + - name: "ENO2" - !!omap - - id: YHR183W - - name: GND1 + - id: "YHR183W" + - name: "GND1" - !!omap - - id: YHR190W - - name: ERG9 + - id: "YHR190W" + - name: "ERG9" - !!omap - - id: YHR201C - - name: PPX1 + - id: "YHR201C" + - name: "PPX1" - !!omap - - id: YHR208W - - name: BAT1 + - id: "YHR208W" + - name: "BAT1" - !!omap - - id: YHR215W - - name: PHO12 + - id: "YHR215W" + - name: "PHO12" - !!omap - - id: YHR216W - - name: IMD2 + - id: "YHR216W" + - name: "IMD2" - !!omap - - id: YIL002C - - name: INP51 + - id: "YIL002C" + - name: "INP51" - !!omap - - id: YIL006W - - name: YIA6 + - id: "YIL006W" + - name: "YIA6" - !!omap - - id: YIL009W - - name: FAA3 + - id: "YIL009W" + - name: "FAA3" - !!omap - - id: YIL010W - - name: DOT5 + - id: "YIL010W" + - name: "DOT5" - !!omap - - id: YIL013C - - name: PDR11 + - id: "YIL013C" + - name: "PDR11" - !!omap - - id: YIL020C - - name: HIS6 + - id: "YIL020C" + - name: "HIS6" - !!omap - - id: YIL023C - - name: YKE4 + - id: "YIL023C" + - name: "YKE4" - !!omap - - id: YIL043C - - name: CBR1 + - id: "YIL043C" + - name: "CBR1" - !!omap - - id: YIL048W - - name: NEO1 + - id: "YIL048W" + - name: "NEO1" - !!omap - - id: YIL053W - - name: GPP1 + - id: "YIL053W" + - name: "GPP1" - !!omap - - id: YIL066C - - name: RNR3 + - id: "YIL066C" + - name: "RNR3" - !!omap - - id: YIL074C - - name: SER33 + - id: "YIL074C" + - name: "SER33" - !!omap - - id: YIL078W - - name: THS1 + - id: "YIL078W" + - name: "THS1" - !!omap - - id: YIL083C - - name: CAB2 + - id: "YIL083C" + - name: "CAB2" - !!omap - - id: YIL094C - - name: LYS12 + - id: "YIL094C" + - name: "LYS12" - !!omap - - id: YIL099W - - name: SGA1 + - id: "YIL099W" + - name: "SGA1" - !!omap - - id: YIL107C - - name: PFK26 + - id: "YIL107C" + - name: "PFK26" - !!omap - - id: YIL111W - - name: COX5B + - id: "YIL111W" + - name: "COX5B" - !!omap - - id: YIL116W - - name: HIS5 + - id: "YIL116W" + - name: "HIS5" - !!omap - - id: YIL124W - - name: AYR1 + - id: "YIL124W" + - name: "AYR1" - !!omap - - id: YIL125W - - name: KGD1 + - id: "YIL125W" + - name: "KGD1" - !!omap - - id: YIL134W - - name: FLX1 + - id: "YIL134W" + - name: "FLX1" - !!omap - - id: YIL145C - - name: PAN6 + - id: "YIL145C" + - name: "PAN6" - !!omap - - id: YIL155C - - name: GUT2 + - id: "YIL155C" + - name: "GUT2" - !!omap - - id: YIL160C - - name: POT1 + - id: "YIL160C" + - name: "POT1" - !!omap - - id: YIL162W - - name: SUC2 + - id: "YIL162W" + - name: "SUC2" - !!omap - - id: YIL172C - - name: IMA3 + - id: "YIL172C" + - name: "IMA3" - !!omap - - id: YIR027C - - name: DAL1 + - id: "YIR027C" + - name: "DAL1" - !!omap - - id: YIR028W - - name: DAL4 + - id: "YIR028W" + - name: "DAL4" - !!omap - - id: YIR029W - - name: DAL2 + - id: "YIR029W" + - name: "DAL2" - !!omap - - id: YIR031C - - name: DAL7 + - id: "YIR031C" + - name: "DAL7" - !!omap - - id: YIR032C - - name: DAL3 + - id: "YIR032C" + - name: "DAL3" - !!omap - - id: YIR034C - - name: LYS1 + - id: "YIR034C" + - name: "LYS1" - !!omap - - id: YIR036C - - name: IRC24 + - id: "YIR036C" + - name: "IRC24" - !!omap - - id: YIR037W - - name: HYR1 + - id: "YIR037W" + - name: "HYR1" - !!omap - - id: YIR038C - - name: GTT1 + - id: "YIR038C" + - name: "GTT1" - !!omap - - id: YJL003W - - name: COX16 + - id: "YJL003W" + - name: "COX16" - !!omap - - id: YJL005W - - name: CYR1 + - id: "YJL005W" + - name: "CYR1" - !!omap - - id: YJL026W - - name: RNR2 + - id: "YJL026W" + - name: "RNR2" - !!omap - - id: YJL045W - - name: YJL045W + - id: "YJL045W" + - name: "YJL045W" - !!omap - - id: YJL046W - - name: AIM22 + - id: "YJL046W" + - name: "AIM22" - !!omap - - id: YJL052W - - name: TDH1 + - id: "YJL052W" + - name: "TDH1" - !!omap - - id: YJL060W - - name: BNA3 + - id: "YJL060W" + - name: "BNA3" - !!omap - - id: YJL068C - - name: YJL068C + - id: "YJL068C" + - name: "YJL068C" - !!omap - - id: YJL071W - - name: ARG2 + - id: "YJL071W" + - name: "ARG2" - !!omap - - id: YJL088W - - name: ARG3 + - id: "YJL088W" + - name: "ARG3" - !!omap - - id: YJL091C - - name: GWT1 + - id: "YJL091C" + - name: "GWT1" - !!omap - - id: YJL097W - - name: PHS1 + - id: "YJL097W" + - name: "PHS1" - !!omap - - id: YJL100W - - name: LSB6 + - id: "YJL100W" + - name: "LSB6" - !!omap - - id: YJL101C - - name: GSH1 + - id: "YJL101C" + - name: "GSH1" - !!omap - - id: YJL121C - - name: RPE1 + - id: "YJL121C" + - name: "RPE1" - !!omap - - id: YJL126W - - name: NIT2 + - id: "YJL126W" + - name: "NIT2" - !!omap - - id: YJL129C - - name: TRK1 + - id: "YJL129C" + - name: "TRK1" - !!omap - - id: YJL130C - - name: URA2 + - id: "YJL130C" + - name: "URA2" - !!omap - - id: YJL133W - - name: MRS3 + - id: "YJL133W" + - name: "MRS3" - !!omap - - id: YJL134W - - name: LCB3 + - id: "YJL134W" + - name: "LCB3" - !!omap - - id: YJL137C - - name: GLG2 + - id: "YJL137C" + - name: "GLG2" - !!omap - - id: YJL139C - - name: YUR1 + - id: "YJL139C" + - name: "YUR1" - !!omap - - id: YJL153C - - name: INO1 + - id: "YJL153C" + - name: "INO1" - !!omap - - id: YJL155C - - name: FBP26 + - id: "YJL155C" + - name: "FBP26" - !!omap - - id: YJL166W - - name: QCR8 + - id: "YJL166W" + - name: "QCR8" - !!omap - - id: YJL167W - - name: ERG20 + - id: "YJL167W" + - name: "ERG20" - !!omap - - id: YJL168C - - name: SET2 + - id: "YJL168C" + - name: "SET2" - !!omap - - id: YJL180C - - name: ATP12 + - id: "YJL180C" + - name: "ATP12" - !!omap - - id: YJL196C - - name: ELO1 + - id: "YJL196C" + - name: "ELO1" - !!omap - - id: YJL198W - - name: PHO90 + - id: "YJL198W" + - name: "PHO90" - !!omap - - id: YJL200C - - name: ACO2 + - id: "YJL200C" + - name: "ACO2" - !!omap - - id: YJL212C - - name: OPT1 + - id: "YJL212C" + - name: "OPT1" - !!omap - - id: YJL214W - - name: HXT8 + - id: "YJL214W" + - name: "HXT8" - !!omap - - id: YJL216C - - name: IMA5 + - id: "YJL216C" + - name: "IMA5" - !!omap - - id: YJL219W - - name: HXT9 + - id: "YJL219W" + - name: "HXT9" - !!omap - - id: YJL221C - - name: IMA4 + - id: "YJL221C" + - name: "IMA4" - !!omap - - id: YJR001W - - name: AVT1 + - id: "YJR001W" + - name: "AVT1" - !!omap - - id: YJR009C - - name: TDH2 + - id: "YJR009C" + - name: "TDH2" - !!omap - - id: YJR010W - - name: MET3 + - id: "YJR010W" + - name: "MET3" - !!omap - - id: YJR013W - - name: GPI14 + - id: "YJR013W" + - name: "GPI14" - !!omap - - id: YJR016C - - name: ILV3 + - id: "YJR016C" + - name: "ILV3" - !!omap - - id: YJR019C - - name: TES1 + - id: "YJR019C" + - name: "TES1" - !!omap - - id: YJR024C - - name: MDE1 + - id: "YJR024C" + - name: "MDE1" - !!omap - - id: YJR025C - - name: BNA1 + - id: "YJR025C" + - name: "BNA1" - !!omap - - id: YJR040W - - name: GEF1 + - id: "YJR040W" + - name: "GEF1" - !!omap - - id: YJR048W - - name: CYC1 + - id: "YJR048W" + - name: "CYC1" - !!omap - - id: YJR049C - - name: UTR1 + - id: "YJR049C" + - name: "UTR1" - !!omap - - id: YJR051W - - name: OSM1 + - id: "YJR051W" + - name: "OSM1" - !!omap - - id: YJR057W - - name: CDC8 + - id: "YJR057W" + - name: "CDC8" - !!omap - - id: YJR069C - - name: HAM1 + - id: "YJR069C" + - name: "HAM1" - !!omap - - id: YJR073C - - name: OPI3 + - id: "YJR073C" + - name: "OPI3" - !!omap - - id: YJR077C - - name: MIR1 + - id: "YJR077C" + - name: "MIR1" - !!omap - - id: YJR078W - - name: BNA2 + - id: "YJR078W" + - name: "BNA2" - !!omap - - id: YJR095W - - name: SFC1 + - id: "YJR095W" + - name: "SFC1" - !!omap - - id: YJR103W - - name: URA8 + - id: "YJR103W" + - name: "URA8" - !!omap - - id: YJR104C - - name: SOD1 + - id: "YJR104C" + - name: "SOD1" - !!omap - - id: YJR105W - - name: ADO1 + - id: "YJR105W" + - name: "ADO1" - !!omap - - id: YJR109C - - name: CPA2 + - id: "YJR109C" + - name: "CPA2" - !!omap - - id: YJR110W - - name: YMR1 + - id: "YJR110W" + - name: "YMR1" - !!omap - - id: YJR121W - - name: ATP2 + - id: "YJR121W" + - name: "ATP2" - !!omap - - id: YJR130C - - name: STR2 + - id: "YJR130C" + - name: "STR2" - !!omap - - id: YJR131W - - name: MNS1 + - id: "YJR131W" + - name: "MNS1" - !!omap - - id: YJR133W - - name: XPT1 + - id: "YJR133W" + - name: "XPT1" - !!omap - - id: YJR137C - - name: MET5 + - id: "YJR137C" + - name: "MET5" - !!omap - - id: YJR139C - - name: HOM6 + - id: "YJR139C" + - name: "HOM6" - !!omap - - id: YJR143C - - name: PMT4 + - id: "YJR143C" + - name: "PMT4" - !!omap - - id: YJR148W - - name: BAT2 + - id: "YJR148W" + - name: "BAT2" - !!omap - - id: YJR149W - - name: YJR149W + - id: "YJR149W" + - name: "YJR149W" - !!omap - - id: YJR152W - - name: DAL5 + - id: "YJR152W" + - name: "DAL5" - !!omap - - id: YJR153W - - name: PGU1 + - id: "YJR153W" + - name: "PGU1" - !!omap - - id: YJR155W - - name: AAD10 + - id: "YJR155W" + - name: "AAD10" - !!omap - - id: YJR158W - - name: HXT16 + - id: "YJR158W" + - name: "HXT16" - !!omap - - id: YJR159W - - name: SOR1 + - id: "YJR159W" + - name: "SOR1" - !!omap - - id: YJR160C - - name: MPH3 + - id: "YJR160C" + - name: "MPH3" - !!omap - - id: YKL001C - - name: MET14 + - id: "YKL001C" + - name: "MET14" - !!omap - - id: YKL004W - - name: AUR1 + - id: "YKL004W" + - name: "AUR1" - !!omap - - id: YKL008C - - name: LAC1 + - id: "YKL008C" + - name: "LAC1" - !!omap - - id: YKL016C - - name: ATP7 + - id: "YKL016C" + - name: "ATP7" - !!omap - - id: YKL019W - - name: RAM2 + - id: "YKL019W" + - name: "RAM2" - !!omap - - id: YKL024C - - name: URA6 + - id: "YKL024C" + - name: "URA6" - !!omap - - id: YKL026C - - name: GPX1 + - id: "YKL026C" + - name: "GPX1" - !!omap - - id: YKL029C - - name: MAE1 + - id: "YKL029C" + - name: "MAE1" - !!omap - - id: YKL035W - - name: UGP1 + - id: "YKL035W" + - name: "UGP1" - !!omap - - id: YKL055C - - name: OAR1 + - id: "YKL055C" + - name: "OAR1" - !!omap - - id: YKL060C - - name: FBA1 + - id: "YKL060C" + - name: "FBA1" - !!omap - - id: YKL067W - - name: YNK1 + - id: "YKL067W" + - name: "YNK1" - !!omap - - id: YKL069W - - name: YKL069W + - id: "YKL069W" + - name: "YKL069W" - !!omap - - id: YKL080W - - name: VMA5 + - id: "YKL080W" + - name: "VMA5" - !!omap - - id: YKL085W - - name: MDH1 + - id: "YKL085W" + - name: "MDH1" - !!omap - - id: YKL087C - - name: CYT2 + - id: "YKL087C" + - name: "CYT2" - !!omap - - id: YKL088W - - name: CAB3 + - id: "YKL088W" + - name: "CAB3" - !!omap - - id: YKL094W - - name: YJU3 + - id: "YKL094W" + - name: "YJU3" - !!omap - - id: YKL103C - - name: APE1 + - id: "YKL103C" + - name: "APE1" - !!omap - - id: YKL104C - - name: GFA1 + - id: "YKL104C" + - name: "GFA1" - !!omap - - id: YKL106W - - name: AAT1 + - id: "YKL106W" + - name: "AAT1" - !!omap - - id: YKL120W - - name: OAC1 + - id: "YKL120W" + - name: "OAC1" - !!omap - - id: YKL127W - - name: PGM1 + - id: "YKL127W" + - name: "PGM1" - !!omap - - id: YKL132C - - name: RMA1 + - id: "YKL132C" + - name: "RMA1" - !!omap - - id: YKL140W - - name: TGL1 + - id: "YKL140W" + - name: "TGL1" - !!omap - - id: YKL141W - - name: SDH3 + - id: "YKL141W" + - name: "SDH3" - !!omap - - id: YKL146W - - name: AVT3 + - id: "YKL146W" + - name: "AVT3" - !!omap - - id: YKL148C - - name: SDH1 + - id: "YKL148C" + - name: "SDH1" - !!omap - - id: YKL150W - - name: MCR1 + - id: "YKL150W" + - name: "MCR1" - !!omap - - id: YKL152C - - name: GPM1 + - id: "YKL152C" + - name: "GPM1" - !!omap - - id: YKL165C - - name: MCD4 + - id: "YKL165C" + - name: "MCD4" - !!omap - - id: YKL174C - - name: TPO5 + - id: "YKL174C" + - name: "TPO5" - !!omap - - id: YKL181W - - name: PRS1 + - id: "YKL181W" + - name: "PRS1" - !!omap - - id: YKL182W - - name: FAS1 + - id: "YKL182W" + - name: "FAS1" - !!omap - - id: YKL184W - - name: SPE1 + - id: "YKL184W" + - name: "SPE1" - !!omap - - id: YKL188C - - name: PXA2 + - id: "YKL188C" + - name: "PXA2" - !!omap - - id: YKL192C - - name: ACP1 + - id: "YKL192C" + - name: "ACP1" - !!omap - - id: YKL194C - - name: MST1 + - id: "YKL194C" + - name: "MST1" - !!omap - - id: YKL211C - - name: TRP3 + - id: "YKL211C" + - name: "TRP3" - !!omap - - id: YKL212W - - name: SAC1 + - id: "YKL212W" + - name: "SAC1" - !!omap - - id: YKL215C - - name: OXP1 + - id: "YKL215C" + - name: "OXP1" - !!omap - - id: YKL216W - - name: URA1 + - id: "YKL216W" + - name: "URA1" - !!omap - - id: YKL217W - - name: JEN1 + - id: "YKL217W" + - name: "JEN1" - !!omap - - id: YKL218C - - name: SRY1 + - id: "YKL218C" + - name: "SRY1" - !!omap - - id: YKL220C - - name: FRE2 + - id: "YKL220C" + - name: "FRE2" - !!omap - - id: YKR009C - - name: FOX2 + - id: "YKR009C" + - name: "FOX2" - !!omap - - id: YKR031C - - name: SPO14 + - id: "YKR031C" + - name: "SPO14" - !!omap - - id: YKR039W - - name: GAP1 + - id: "YKR039W" + - name: "GAP1" - !!omap - - id: YKR043C - - name: SHB17 + - id: "YKR043C" + - name: "SHB17" - !!omap - - id: YKR052C - - name: MRS4 + - id: "YKR052C" + - name: "MRS4" - !!omap - - id: YKR053C - - name: YSR3 + - id: "YKR053C" + - name: "YSR3" - !!omap - - id: YKR058W - - name: GLG1 + - id: "YKR058W" + - name: "GLG1" - !!omap - - id: YKR061W - - name: KTR2 + - id: "YKR061W" + - name: "KTR2" - !!omap - - id: YKR066C - - name: CCP1 + - id: "YKR066C" + - name: "CCP1" - !!omap - - id: YKR067W - - name: GPT2 + - id: "YKR067W" + - name: "GPT2" - !!omap - - id: YKR069W - - name: MET1 + - id: "YKR069W" + - name: "MET1" - !!omap - - id: YKR072C - - name: SIS2 + - id: "YKR072C" + - name: "SIS2" - !!omap - - id: YKR076W - - name: ECM4 + - id: "YKR076W" + - name: "ECM4" - !!omap - - id: YKR080W - - name: MTD1 + - id: "YKR080W" + - name: "MTD1" - !!omap - - id: YKR089C - - name: TGL4 + - id: "YKR089C" + - name: "TGL4" - !!omap - - id: YKR093W - - name: PTR2 + - id: "YKR093W" + - name: "PTR2" - !!omap - - id: YKR097W - - name: PCK1 + - id: "YKR097W" + - name: "PCK1" - !!omap - - id: YLL001W - - name: DNM1 + - id: "YLL001W" + - name: "DNM1" - !!omap - - id: YLL012W - - name: YEH1 + - id: "YLL012W" + - name: "YEH1" - !!omap - - id: YLL015W - - name: BPT1 + - id: "YLL015W" + - name: "BPT1" - !!omap - - id: YLL018C - - name: DPS1 + - id: "YLL018C" + - name: "DPS1" - !!omap - - id: YLL018C-A - - name: COX19 + - id: "YLL018C-A" + - name: "COX19" - !!omap - - id: YLL028W - - name: TPO1 + - id: "YLL028W" + - name: "TPO1" - !!omap - - id: YLL031C - - name: GPI13 + - id: "YLL031C" + - name: "GPI13" - !!omap - - id: YLL041C - - name: SDH2 + - id: "YLL041C" + - name: "SDH2" - !!omap - - id: YLL043W - - name: FPS1 + - id: "YLL043W" + - name: "FPS1" - !!omap - - id: YLL048C - - name: YBT1 + - id: "YLL048C" + - name: "YBT1" - !!omap - - id: YLL051C - - name: FRE6 + - id: "YLL051C" + - name: "FRE6" - !!omap - - id: YLL052C - - name: AQY2 + - id: "YLL052C" + - name: "AQY2" - !!omap - - id: YLL053C - - name: YLL053C + - id: "YLL053C" + - name: "YLL053C" - !!omap - - id: YLL057C - - name: JLP1 + - id: "YLL057C" + - name: "JLP1" - !!omap - - id: YLL058W - - name: YLL058W + - id: "YLL058W" + - name: "YLL058W" - !!omap - - id: YLL060C - - name: GTT2 + - id: "YLL060C" + - name: "GTT2" - !!omap - - id: YLL061W - - name: MMP1 + - id: "YLL061W" + - name: "MMP1" - !!omap - - id: YLL062C - - name: MHT1 + - id: "YLL062C" + - name: "MHT1" - !!omap - - id: YLR011W - - name: LOT6 + - id: "YLR011W" + - name: "LOT6" - !!omap - - id: YLR017W - - name: MEU1 + - id: "YLR017W" + - name: "MEU1" - !!omap - - id: YLR020C - - name: YEH2 + - id: "YLR020C" + - name: "YEH2" - !!omap - - id: YLR027C - - name: AAT2 + - id: "YLR027C" + - name: "AAT2" - !!omap - - id: YLR028C - - name: ADE16 + - id: "YLR028C" + - name: "ADE16" - !!omap - - id: YLR038C - - name: COX12 + - id: "YLR038C" + - name: "COX12" - !!omap - - id: YLR043C - - name: TRX1 + - id: "YLR043C" + - name: "TRX1" - !!omap - - id: YLR044C - - name: PDC1 + - id: "YLR044C" + - name: "PDC1" - !!omap - - id: YLR047C - - name: FRE8 + - id: "YLR047C" + - name: "FRE8" - !!omap - - id: YLR056W - - name: ERG3 + - id: "YLR056W" + - name: "ERG3" - !!omap - - id: YLR057W - - name: MNL2 + - id: "YLR057W" + - name: "MNL2" - !!omap - - id: YLR058C - - name: SHM2 + - id: "YLR058C" + - name: "SHM2" - !!omap - - id: YLR060W - - name: FRS1 + - id: "YLR060W" + - name: "FRS1" - !!omap - - id: YLR070C - - name: XYL2 + - id: "YLR070C" + - name: "XYL2" - !!omap - - id: YLR081W - - name: GAL2 + - id: "YLR081W" + - name: "GAL2" - !!omap - - id: YLR089C - - name: ALT1 + - id: "YLR089C" + - name: "ALT1" - !!omap - - id: YLR092W - - name: SUL2 + - id: "YLR092W" + - name: "SUL2" - !!omap - - id: YLR099C - - name: ICT1 + - id: "YLR099C" + - name: "ICT1" - !!omap - - id: YLR100W - - name: ERG27 + - id: "YLR100W" + - name: "ERG27" - !!omap - - id: YLR109W - - name: AHP1 + - id: "YLR109W" + - name: "AHP1" - !!omap - - id: YLR130C - - name: ZRT2 + - id: "YLR130C" + - name: "ZRT2" - !!omap - - id: YLR133W - - name: CKI1 + - id: "YLR133W" + - name: "CKI1" - !!omap - - id: YLR134W - - name: PDC5 + - id: "YLR134W" + - name: "PDC5" - !!omap - - id: YLR138W - - name: NHA1 + - id: "YLR138W" + - name: "NHA1" - !!omap - - id: YLR142W - - name: PUT1 + - id: "YLR142W" + - name: "PUT1" - !!omap - - id: YLR143W - - name: DPH6 + - id: "YLR143W" + - name: "DPH6" - !!omap - - id: YLR146C - - name: SPE4 + - id: "YLR146C" + - name: "SPE4" - !!omap - - id: YLR151C - - name: PCD1 + - id: "YLR151C" + - name: "PCD1" - !!omap - - id: YLR153C - - name: ACS2 + - id: "YLR153C" + - name: "ACS2" - !!omap - - id: YLR155C - - name: ASP3-1 + - id: "YLR155C" + - name: "ASP3-1" - !!omap - - id: YLR157C - - name: ASP3-2 + - id: "YLR157C" + - name: "ASP3-2" - !!omap - - id: YLR158C - - name: ASP3-3 + - id: "YLR158C" + - name: "ASP3-3" - !!omap - - id: YLR160C - - name: ASP3-4 + - id: "YLR160C" + - name: "ASP3-4" - !!omap - - id: YLR164W - - name: SHH4 + - id: "YLR164W" + - name: "SHH4" - !!omap - - id: YLR172C - - name: DPH5 + - id: "YLR172C" + - name: "DPH5" - !!omap - - id: YLR174W - - name: IDP2 + - id: "YLR174W" + - name: "IDP2" - !!omap - - id: YLR180W - - name: SAM1 + - id: "YLR180W" + - name: "SAM1" - !!omap - - id: YLR189C - - name: ATG26 + - id: "YLR189C" + - name: "ATG26" - !!omap - - id: YLR201C - - name: COQ9 + - id: "YLR201C" + - name: "COQ9" - !!omap - - id: YLR209C - - name: PNP1 + - id: "YLR209C" + - name: "PNP1" - !!omap - - id: YLR214W - - name: FRE1 + - id: "YLR214W" + - name: "FRE1" - !!omap - - id: YLR231C - - name: BNA5 + - id: "YLR231C" + - name: "BNA5" - !!omap - - id: YLR237W - - name: THI7 + - id: "YLR237W" + - name: "THI7" - !!omap - - id: YLR239C - - name: LIP2 + - id: "YLR239C" + - name: "LIP2" - !!omap - - id: YLR240W - - name: VPS34 + - id: "YLR240W" + - name: "VPS34" - !!omap - - id: YLR244C - - name: MAP1 + - id: "YLR244C" + - name: "MAP1" - !!omap - - id: YLR245C - - name: CDD1 + - id: "YLR245C" + - name: "CDD1" - !!omap - - id: YLR258W - - name: GSY2 + - id: "YLR258W" + - name: "GSY2" - !!omap - - id: YLR260W - - name: LCB5 + - id: "YLR260W" + - name: "LCB5" - !!omap - - id: YLR284C - - name: ECI1 + - id: "YLR284C" + - name: "ECI1" - !!omap - - id: YLR285W - - name: NNT1 + - id: "YLR285W" + - name: "NNT1" - !!omap - - id: YLR286C - - name: CTS1 + - id: "YLR286C" + - name: "CTS1" - !!omap - - id: YLR295C - - name: ATP14 + - id: "YLR295C" + - name: "ATP14" - !!omap - - id: YLR299W - - name: ECM38 + - id: "YLR299W" + - name: "ECM38" - !!omap - - id: YLR300W - - name: EXG1 + - id: "YLR300W" + - name: "EXG1" - !!omap - - id: YLR303W - - name: MET17 + - id: "YLR303W" + - name: "MET17" - !!omap - - id: YLR304C - - name: ACO1 + - id: "YLR304C" + - name: "ACO1" - !!omap - - id: YLR305C - - name: STT4 + - id: "YLR305C" + - name: "STT4" - !!omap - - id: YLR307W - - name: CDA1 + - id: "YLR307W" + - name: "CDA1" - !!omap - - id: YLR308W - - name: CDA2 + - id: "YLR308W" + - name: "CDA2" - !!omap - - id: YLR328W - - name: NMA1 + - id: "YLR328W" + - name: "NMA1" - !!omap - - id: YLR342W - - name: FKS1 + - id: "YLR342W" + - name: "FKS1" - !!omap - - id: YLR345W - - name: YLR345W + - id: "YLR345W" + - name: "YLR345W" - !!omap - - id: YLR348C - - name: DIC1 + - id: "YLR348C" + - name: "DIC1" - !!omap - - id: YLR351C - - name: NIT3 + - id: "YLR351C" + - name: "NIT3" - !!omap - - id: YLR354C - - name: TAL1 + - id: "YLR354C" + - name: "TAL1" - !!omap - - id: YLR355C - - name: ILV5 + - id: "YLR355C" + - name: "ILV5" - !!omap - - id: YLR359W - - name: ADE13 + - id: "YLR359W" + - name: "ADE13" - !!omap - - id: YLR372W - - name: ELO3 + - id: "YLR372W" + - name: "ELO3" - !!omap - - id: YLR377C - - name: FBP1 + - id: "YLR377C" + - name: "FBP1" - !!omap - - id: YLR382C - - name: NAM2 + - id: "YLR382C" + - name: "NAM2" - !!omap - - id: YLR386W - - name: VAC14 + - id: "YLR386W" + - name: "VAC14" - !!omap - - id: YLR393W - - name: ATP10 + - id: "YLR393W" + - name: "ATP10" - !!omap - - id: YLR395C - - name: COX8 + - id: "YLR395C" + - name: "COX8" - !!omap - - id: YLR410W - - name: VIP1 + - id: "YLR410W" + - name: "VIP1" - !!omap - - id: YLR420W - - name: URA4 + - id: "YLR420W" + - name: "URA4" - !!omap - - id: YLR432W - - name: IMD3 + - id: "YLR432W" + - name: "IMD3" - !!omap - - id: YLR438W - - name: CAR2 + - id: "YLR438W" + - name: "CAR2" - !!omap - - id: YLR446W - - name: YLR446W + - id: "YLR446W" + - name: "YLR446W" - !!omap - - id: YLR447C - - name: VMA6 + - id: "YLR447C" + - name: "VMA6" - !!omap - - id: YLR450W - - name: HMG2 + - id: "YLR450W" + - name: "HMG2" - !!omap - - id: YML004C - - name: GLO1 + - id: "YML004C" + - name: "GLO1" - !!omap - - id: YML008C - - name: ERG6 + - id: "YML008C" + - name: "ERG6" - !!omap - - id: YML022W - - name: APT1 + - id: "YML022W" + - name: "APT1" - !!omap - - id: YML035C - - name: AMD1 + - id: "YML035C" + - name: "AMD1" - !!omap - - id: YML042W - - name: CAT2 + - id: "YML042W" + - name: "CAT2" - !!omap - - id: YML054C - - name: CYB2 + - id: "YML054C" + - name: "CYB2" - !!omap - - id: YML056C - - name: IMD4 + - id: "YML056C" + - name: "IMD4" - !!omap - - id: YML059C - - name: NTE1 + - id: "YML059C" + - name: "NTE1" - !!omap - - id: YML070W - - name: DAK1 + - id: "YML070W" + - name: "DAK1" - !!omap - - id: YML075C - - name: HMG1 + - id: "YML075C" + - name: "HMG1" - !!omap - - id: YML081C-A - - name: ATP18 + - id: "YML081C-A" + - name: "ATP18" - !!omap - - id: YML082W - - name: YML082W + - id: "YML082W" + - name: "YML082W" - !!omap - - id: YML086C - - name: ALO1 + - id: "YML086C" + - name: "ALO1" - !!omap - - id: YML100W - - name: TSL1 + - id: "YML100W" + - name: "TSL1" - !!omap - - id: YML106W - - name: URA5 + - id: "YML106W" + - name: "URA5" - !!omap - - id: YML110C - - name: COQ5 + - id: "YML110C" + - name: "COQ5" - !!omap - - id: YML120C - - name: NDI1 + - id: "YML120C" + - name: "NDI1" - !!omap - - id: YML123C - - name: PHO84 + - id: "YML123C" + - name: "PHO84" - !!omap - - id: YML125C - - name: PGA3 + - id: "YML125C" + - name: "PGA3" - !!omap - - id: YML126C - - name: ERG13 + - id: "YML126C" + - name: "ERG13" - !!omap - - id: YMR006C - - name: PLB2 + - id: "YMR006C" + - name: "PLB2" - !!omap - - id: YMR008C - - name: PLB1 + - id: "YMR008C" + - name: "PLB1" - !!omap - - id: YMR009W - - name: ADI1 + - id: "YMR009W" + - name: "ADI1" - !!omap - - id: YMR011W - - name: HXT2 + - id: "YMR011W" + - name: "HXT2" - !!omap - - id: YMR013C - - name: SEC59 + - id: "YMR013C" + - name: "SEC59" - !!omap - - id: YMR015C - - name: ERG5 + - id: "YMR015C" + - name: "ERG5" - !!omap - - id: YMR020W - - name: FMS1 + - id: "YMR020W" + - name: "FMS1" - !!omap - - id: YMR041C - - name: ARA2 + - id: "YMR041C" + - name: "ARA2" - !!omap - - id: YMR054W - - name: STV1 + - id: "YMR054W" + - name: "STV1" - !!omap - - id: YMR056C - - name: AAC1 + - id: "YMR056C" + - name: "AAC1" - !!omap - - id: YMR058W - - name: FET3 + - id: "YMR058W" + - name: "FET3" - !!omap - - id: YMR062C - - name: ARG7 + - id: "YMR062C" + - name: "ARG7" - !!omap - - id: YMR083W - - name: ADH3 + - id: "YMR083W" + - name: "ADH3" - !!omap - - id: YMR084W - - name: YMR084W + - id: "YMR084W" + - name: "YMR084W" - !!omap - - id: YMR087W - - name: YMR087W + - id: "YMR087W" + - name: "YMR087W" - !!omap - - id: YMR088C - - name: VBA1 + - id: "YMR088C" + - name: "VBA1" - !!omap - - id: YMR099C - - name: YMR099C + - id: "YMR099C" + - name: "YMR099C" - !!omap - - id: YMR101C - - name: SRT1 + - id: "YMR101C" + - name: "SRT1" - !!omap - - id: YMR105C - - name: PGM2 + - id: "YMR105C" + - name: "PGM2" - !!omap - - id: YMR108W - - name: ILV2 + - id: "YMR108W" + - name: "ILV2" - !!omap - - id: YMR110C - - name: HFD1 + - id: "YMR110C" + - name: "HFD1" - !!omap - - id: YMR113W - - name: FOL3 + - id: "YMR113W" + - name: "FOL3" - !!omap - - id: YMR120C - - name: ADE17 + - id: "YMR120C" + - name: "ADE17" - !!omap - - id: YMR145C - - name: NDE1 + - id: "YMR145C" + - name: "NDE1" - !!omap - - id: YMR162C - - name: DNF3 + - id: "YMR162C" + - name: "DNF3" - !!omap - - id: YMR165C - - name: PAH1 + - id: "YMR165C" + - name: "PAH1" - !!omap - - id: YMR169C - - name: ALD3 + - id: "YMR169C" + - name: "ALD3" - !!omap - - id: YMR170C - - name: ALD2 + - id: "YMR170C" + - name: "ALD2" - !!omap - - id: YMR189W - - name: GCV2 + - id: "YMR189W" + - name: "GCV2" - !!omap - - id: YMR202W - - name: ERG2 + - id: "YMR202W" + - name: "ERG2" - !!omap - - id: YMR205C - - name: PFK2 + - id: "YMR205C" + - name: "PFK2" - !!omap - - id: YMR207C - - name: HFA1 + - id: "YMR207C" + - name: "HFA1" - !!omap - - id: YMR208W - - name: ERG12 + - id: "YMR208W" + - name: "ERG12" - !!omap - - id: YMR210W - - name: MGL2 + - id: "YMR210W" + - name: "MGL2" - !!omap - - id: YMR217W - - name: GUA1 + - id: "YMR217W" + - name: "GUA1" - !!omap - - id: YMR220W - - name: ERG8 + - id: "YMR220W" + - name: "ERG8" - !!omap - - id: YMR226C - - name: YMR226C + - id: "YMR226C" + - name: "YMR226C" - !!omap - - id: YMR241W - - name: YHM2 + - id: "YMR241W" + - name: "YHM2" - !!omap - - id: YMR243C - - name: ZRC1 + - id: "YMR243C" + - name: "ZRC1" - !!omap - - id: YMR246W - - name: FAA4 + - id: "YMR246W" + - name: "FAA4" - !!omap - - id: YMR250W - - name: GAD1 + - id: "YMR250W" + - name: "GAD1" - !!omap - - id: YMR251W - - name: GTO3 + - id: "YMR251W" + - name: "GTO3" - !!omap - - id: YMR256C - - name: COX7 + - id: "YMR256C" + - name: "COX7" - !!omap - - id: YMR261C - - name: TPS3 + - id: "YMR261C" + - name: "TPS3" - !!omap - - id: YMR267W - - name: PPA2 + - id: "YMR267W" + - name: "PPA2" - !!omap - - id: YMR271C - - name: URA10 + - id: "YMR271C" + - name: "URA10" - !!omap - - id: YMR272C - - name: SCS7 + - id: "YMR272C" + - name: "SCS7" - !!omap - - id: YMR278W - - name: PRM15 + - id: "YMR278W" + - name: "PRM15" - !!omap - - id: YMR281W - - name: GPI12 + - id: "YMR281W" + - name: "GPI12" - !!omap - - id: YMR289W - - name: ABZ2 + - id: "YMR289W" + - name: "ABZ2" - !!omap - - id: YMR293C - - name: HER2 + - id: "YMR293C" + - name: "HER2" - !!omap - - id: YMR296C - - name: LCB1 + - id: "YMR296C" + - name: "LCB1" - !!omap - - id: YMR298W - - name: LIP1 + - id: "YMR298W" + - name: "LIP1" - !!omap - - id: YMR300C - - name: ADE4 + - id: "YMR300C" + - name: "ADE4" - !!omap - - id: YMR301C - - name: ATM1 + - id: "YMR301C" + - name: "ATM1" - !!omap - - id: YMR303C - - name: ADH2 + - id: "YMR303C" + - name: "ADH2" - !!omap - - id: YMR306W - - name: FKS3 + - id: "YMR306W" + - name: "FKS3" - !!omap - - id: YMR313C - - name: TGL3 + - id: "YMR313C" + - name: "TGL3" - !!omap - - id: YMR318C - - name: ADH6 + - id: "YMR318C" + - name: "ADH6" - !!omap - - id: YMR319C - - name: FET4 + - id: "YMR319C" + - name: "FET4" - !!omap - - id: YMR322C - - name: SNO4 + - id: "YMR322C" + - name: "SNO4" - !!omap - - id: YMR323W - - name: ERR3 + - id: "YMR323W" + - name: "ERR3" - !!omap - - id: YNL003C - - name: PET8 + - id: "YNL003C" + - name: "PET8" - !!omap - - id: YNL009W - - name: IDP3 + - id: "YNL009W" + - name: "IDP3" - !!omap - - id: YNL029C - - name: KTR5 + - id: "YNL029C" + - name: "KTR5" - !!omap - - id: YNL036W - - name: NCE103 + - id: "YNL036W" + - name: "NCE103" - !!omap - - id: YNL037C - - name: IDH1 + - id: "YNL037C" + - name: "IDH1" - !!omap - - id: YNL038W - - name: GPI15 + - id: "YNL038W" + - name: "GPI15" - !!omap - - id: YNL045W - - name: LAP2 + - id: "YNL045W" + - name: "LAP2" - !!omap - - id: YNL048W - - name: ALG11 + - id: "YNL048W" + - name: "ALG11" - !!omap - - id: YNL052W - - name: COX5A + - id: "YNL052W" + - name: "COX5A" - !!omap - - id: YNL065W - - name: AQR1 + - id: "YNL065W" + - name: "AQR1" - !!omap - - id: YNL071W - - name: LAT1 + - id: "YNL071W" + - name: "LAT1" - !!omap - - id: YNL073W - - name: MSK1 + - id: "YNL073W" + - name: "MSK1" - !!omap - - id: YNL092W - - name: YNL092W + - id: "YNL092W" + - name: "YNL092W" - !!omap - - id: YNL101W - - name: AVT4 + - id: "YNL101W" + - name: "AVT4" - !!omap - - id: YNL104C - - name: LEU4 + - id: "YNL104C" + - name: "LEU4" - !!omap - - id: YNL106C - - name: INP52 + - id: "YNL106C" + - name: "INP52" - !!omap - - id: YNL117W - - name: MLS1 + - id: "YNL117W" + - name: "MLS1" - !!omap - - id: YNL129W - - name: NRK1 + - id: "YNL129W" + - name: "NRK1" - !!omap - - id: YNL130C - - name: CPT1 + - id: "YNL130C" + - name: "CPT1" - !!omap - - id: YNL141W - - name: AAH1 + - id: "YNL141W" + - name: "AAH1" - !!omap - - id: YNL142W - - name: MEP2 + - id: "YNL142W" + - name: "MEP2" - !!omap - - id: YNL169C - - name: PSD1 + - id: "YNL169C" + - name: "PSD1" - !!omap - - id: YNL191W - - name: DUG3 + - id: "YNL191W" + - name: "DUG3" - !!omap - - id: YNL192W - - name: CHS1 + - id: "YNL192W" + - name: "CHS1" - !!omap - - id: YNL202W - - name: SPS19 + - id: "YNL202W" + - name: "SPS19" - !!omap - - id: YNL219C - - name: ALG9 + - id: "YNL219C" + - name: "ALG9" - !!omap - - id: YNL220W - - name: ADE12 + - id: "YNL220W" + - name: "ADE12" - !!omap - - id: YNL229C - - name: URE2 + - id: "YNL229C" + - name: "URE2" - !!omap - - id: YNL241C - - name: ZWF1 + - id: "YNL241C" + - name: "ZWF1" - !!omap - - id: YNL247W - - name: YNL247W + - id: "YNL247W" + - name: "YNL247W" - !!omap - - id: YNL256W - - name: FOL1 + - id: "YNL256W" + - name: "FOL1" - !!omap - - id: YNL267W - - name: PIK1 + - id: "YNL267W" + - name: "PIK1" - !!omap - - id: YNL268W - - name: LYP1 + - id: "YNL268W" + - name: "LYP1" - !!omap - - id: YNL270C - - name: ALP1 + - id: "YNL270C" + - name: "ALP1" - !!omap - - id: YNL274C - - name: GOR1 + - id: "YNL274C" + - name: "GOR1" - !!omap - - id: YNL275W - - name: BOR1 + - id: "YNL275W" + - name: "BOR1" - !!omap - - id: YNL277W - - name: MET2 + - id: "YNL277W" + - name: "MET2" - !!omap - - id: YNL280C - - name: ERG24 + - id: "YNL280C" + - name: "ERG24" - !!omap - - id: YNL292W - - name: PUS4 + - id: "YNL292W" + - name: "PUS4" - !!omap - - id: YNL315C - - name: ATP11 + - id: "YNL315C" + - name: "ATP11" - !!omap - - id: YNL316C - - name: PHA2 + - id: "YNL316C" + - name: "PHA2" - !!omap - - id: YNL318C - - name: HXT14 + - id: "YNL318C" + - name: "HXT14" - !!omap - - id: YNL325C - - name: FIG4 + - id: "YNL325C" + - name: "FIG4" - !!omap - - id: YNL331C - - name: AAD14 + - id: "YNL331C" + - name: "AAD14" - !!omap - - id: YNL333W - - name: SNZ2 + - id: "YNL333W" + - name: "SNZ2" - !!omap - - id: YNL334C - - name: SNO2 + - id: "YNL334C" + - name: "SNO2" - !!omap - - id: YNL335W - - name: DDI3 + - id: "YNL335W" + - name: "DDI3" - !!omap - - id: YNR001C - - name: CIT1 + - id: "YNR001C" + - name: "CIT1" - !!omap - - id: YNR008W - - name: LRO1 + - id: "YNR008W" + - name: "LRO1" - !!omap - - id: YNR012W - - name: URK1 + - id: "YNR012W" + - name: "URK1" - !!omap - - id: YNR013C - - name: PHO91 + - id: "YNR013C" + - name: "PHO91" - !!omap - - id: YNR016C - - name: ACC1 + - id: "YNR016C" + - name: "ACC1" - !!omap - - id: YNR019W - - name: ARE2 + - id: "YNR019W" + - name: "ARE2" - !!omap - - id: YNR027W - - name: BUD17 + - id: "YNR027W" + - name: "BUD17" - !!omap - - id: YNR030W - - name: ALG12 + - id: "YNR030W" + - name: "ALG12" - !!omap - - id: YNR033W - - name: ABZ1 + - id: "YNR033W" + - name: "ABZ1" - !!omap - - id: YNR041C - - name: COQ2 + - id: "YNR041C" + - name: "COQ2" - !!omap - - id: YNR043W - - name: MVD1 + - id: "YNR043W" + - name: "MVD1" - !!omap - - id: YNR050C - - name: LYS9 + - id: "YNR050C" + - name: "LYS9" - !!omap - - id: YNR056C - - name: BIO5 + - id: "YNR056C" + - name: "BIO5" - !!omap - - id: YNR057C - - name: BIO4 + - id: "YNR057C" + - name: "BIO4" - !!omap - - id: YNR058W - - name: BIO3 + - id: "YNR058W" + - name: "BIO3" - !!omap - - id: YNR060W - - name: FRE4 + - id: "YNR060W" + - name: "FRE4" - !!omap - - id: YNR067C - - name: DSE4 + - id: "YNR067C" + - name: "DSE4" - !!omap - - id: YNR072W - - name: HXT17 + - id: "YNR072W" + - name: "HXT17" - !!omap - - id: YNR073C - - name: MAN2 + - id: "YNR073C" + - name: "MAN2" - !!omap - - id: YOL011W - - name: PLB3 + - id: "YOL011W" + - name: "PLB3" - !!omap - - id: YOL020W - - name: TAT2 + - id: "YOL020W" + - name: "TAT2" - !!omap - - id: YOL033W - - name: MSE1 + - id: "YOL033W" + - name: "MSE1" - !!omap - - id: YOL049W - - name: GSH2 + - id: "YOL049W" + - name: "GSH2" - !!omap - - id: YOL052C - - name: SPE2 + - id: "YOL052C" + - name: "SPE2" - !!omap - - id: YOL055C - - name: THI20 + - id: "YOL055C" + - name: "THI20" - !!omap - - id: YOL058W - - name: ARG1 + - id: "YOL058W" + - name: "ARG1" - !!omap - - id: YOL059W - - name: GPD2 + - id: "YOL059W" + - name: "GPD2" - !!omap - - id: YOL061W - - name: PRS5 + - id: "YOL061W" + - name: "PRS5" - !!omap - - id: YOL064C - - name: MET22 + - id: "YOL064C" + - name: "MET22" - !!omap - - id: YOL065C - - name: INP54 + - id: "YOL065C" + - name: "INP54" - !!omap - - id: YOL066C - - name: RIB2 + - id: "YOL066C" + - name: "RIB2" - !!omap - - id: YOL068C - - name: HST1 + - id: "YOL068C" + - name: "HST1" - !!omap - - id: YOL075C - - name: YOL075C + - id: "YOL075C" + - name: "YOL075C" - !!omap - - id: YOL077W-A - - name: ATP19 + - id: "YOL077W-A" + - name: "ATP19" - !!omap - - id: YOL086C - - name: ADH1 + - id: "YOL086C" + - name: "ADH1" - !!omap - - id: YOL092W - - name: YPQ1 + - id: "YOL092W" + - name: "YPQ1" - !!omap - - id: YOL096C - - name: COQ3 + - id: "YOL096C" + - name: "COQ3" - !!omap - - id: YOL097C - - name: WRS1 + - id: "YOL097C" + - name: "WRS1" - !!omap - - id: YOL103W - - name: ITR2 + - id: "YOL103W" + - name: "ITR2" - !!omap - - id: YOL122C - - name: SMF1 + - id: "YOL122C" + - name: "SMF1" - !!omap - - id: YOL126C - - name: MDH2 + - id: "YOL126C" + - name: "MDH2" - !!omap - - id: YOL130W - - name: ALR1 + - id: "YOL130W" + - name: "ALR1" - !!omap - - id: YOL136C - - name: PFK27 + - id: "YOL136C" + - name: "PFK27" - !!omap - - id: YOL140W - - name: ARG8 + - id: "YOL140W" + - name: "ARG8" - !!omap - - id: YOL143C - - name: RIB4 + - id: "YOL143C" + - name: "RIB4" - !!omap - - id: YOL151W - - name: GRE2 + - id: "YOL151W" + - name: "GRE2" - !!omap - - id: YOL152W - - name: FRE7 + - id: "YOL152W" + - name: "FRE7" - !!omap - - id: YOL156W - - name: HXT11 + - id: "YOL156W" + - name: "HXT11" - !!omap - - id: YOL157C - - name: IMA2 + - id: "YOL157C" + - name: "IMA2" - !!omap - - id: YOL165C - - name: AAD15 + - id: "YOL165C" + - name: "AAD15" - !!omap - - id: YOR002W - - name: ALG6 + - id: "YOR002W" + - name: "ALG6" - !!omap - - id: YOR011W - - name: AUS1 + - id: "YOR011W" + - name: "AUS1" - !!omap - - id: YOR025W - - name: HST3 + - id: "YOR025W" + - name: "HST3" - !!omap - - id: YOR040W - - name: GLO4 + - id: "YOR040W" + - name: "GLO4" - !!omap - - id: YOR054C - - name: VHS3 + - id: "YOR054C" + - name: "VHS3" - !!omap - - id: YOR065W - - name: CYT1 + - id: "YOR065W" + - name: "CYT1" - !!omap - - id: YOR067C - - name: ALG8 + - id: "YOR067C" + - name: "ALG8" - !!omap - - id: YOR071C - - name: NRT1 + - id: "YOR071C" + - name: "NRT1" - !!omap - - id: YOR074C - - name: CDC21 + - id: "YOR074C" + - name: "CDC21" - !!omap - - id: YOR081C - - name: TGL5 + - id: "YOR081C" + - name: "TGL5" - !!omap - - id: YOR095C - - name: RKI1 + - id: "YOR095C" + - name: "RKI1" - !!omap - - id: YOR099W - - name: KTR1 + - id: "YOR099W" + - name: "KTR1" - !!omap - - id: YOR100C - - name: CRC1 + - id: "YOR100C" + - name: "CRC1" - !!omap - - id: YOR108W - - name: LEU9 + - id: "YOR108W" + - name: "LEU9" - !!omap - - id: YOR109W - - name: INP53 + - id: "YOR109W" + - name: "INP53" - !!omap - - id: YOR120W - - name: GCY1 + - id: "YOR120W" + - name: "GCY1" - !!omap - - id: YOR125C - - name: CAT5 + - id: "YOR125C" + - name: "CAT5" - !!omap - - id: YOR126C - - name: IAH1 + - id: "YOR126C" + - name: "IAH1" - !!omap - - id: YOR128C - - name: ADE2 + - id: "YOR128C" + - name: "ADE2" - !!omap - - id: YOR130C - - name: ORT1 + - id: "YOR130C" + - name: "ORT1" - !!omap - - id: YOR136W - - name: IDH2 + - id: "YOR136W" + - name: "IDH2" - !!omap - - id: YOR142W - - name: LSC1 + - id: "YOR142W" + - name: "LSC1" - !!omap - - id: YOR143C - - name: THI80 + - id: "YOR143C" + - name: "THI80" - !!omap - - id: YOR149C - - name: SMP3 + - id: "YOR149C" + - name: "SMP3" - !!omap - - id: YOR155C - - name: ISN1 + - id: "YOR155C" + - name: "ISN1" - !!omap - - id: YOR161C - - name: PNS1 + - id: "YOR161C" + - name: "PNS1" - !!omap - - id: YOR163W - - name: DDP1 + - id: "YOR163W" + - name: "DDP1" - !!omap - - id: YOR168W - - name: GLN4 + - id: "YOR168W" + - name: "GLN4" - !!omap - - id: YOR171C - - name: LCB4 + - id: "YOR171C" + - name: "LCB4" - !!omap - - id: YOR175C - - name: ALE1 + - id: "YOR175C" + - name: "ALE1" - !!omap - - id: YOR176W - - name: HEM15 + - id: "YOR176W" + - name: "HEM15" - !!omap - - id: YOR180C - - name: DCI1 + - id: "YOR180C" + - name: "DCI1" - !!omap - - id: YOR184W - - name: SER1 + - id: "YOR184W" + - name: "SER1" - !!omap - - id: YOR190W - - name: SPR1 + - id: "YOR190W" + - name: "SPR1" - !!omap - - id: YOR192C - - name: THI72 + - id: "YOR192C" + - name: "THI72" - !!omap - - id: YOR196C - - name: LIP5 + - id: "YOR196C" + - name: "LIP5" - !!omap - - id: YOR202W - - name: HIS3 + - id: "YOR202W" + - name: "HIS3" - !!omap - - id: YOR209C - - name: NPT1 + - id: "YOR209C" + - name: "NPT1" - !!omap - - id: YOR221C - - name: MCT1 + - id: "YOR221C" + - name: "MCT1" - !!omap - - id: YOR222W - - name: ODC2 + - id: "YOR222W" + - name: "ODC2" - !!omap - - id: YOR226C - - name: ISU2 + - id: "YOR226C" + - name: "ISU2" - !!omap - - id: YOR236W - - name: DFR1 + - id: "YOR236W" + - name: "DFR1" - !!omap - - id: YOR241W - - name: MET7 + - id: "YOR241W" + - name: "MET7" - !!omap - - id: YOR245C - - name: DGA1 + - id: "YOR245C" + - name: "DGA1" - !!omap - - id: YOR251C - - name: TUM1 + - id: "YOR251C" + - name: "TUM1" - !!omap - - id: YOR270C - - name: VPH1 + - id: "YOR270C" + - name: "VPH1" - !!omap - - id: YOR273C - - name: TPO4 + - id: "YOR273C" + - name: "TPO4" - !!omap - - id: YOR278W - - name: HEM4 + - id: "YOR278W" + - name: "HEM4" - !!omap - - id: YOR283W - - name: YOR283W + - id: "YOR283W" + - name: "YOR283W" - !!omap - - id: YOR285W - - name: RDL1 + - id: "YOR285W" + - name: "RDL1" - !!omap - - id: YOR286W - - name: RDL2 + - id: "YOR286W" + - name: "RDL2" - !!omap - - id: YOR303W - - name: CPA1 + - id: "YOR303W" + - name: "CPA1" - !!omap - - id: YOR306C - - name: MCH5 + - id: "YOR306C" + - name: "MCH5" - !!omap - - id: YOR311C - - name: DGK1 + - id: "YOR311C" + - name: "DGK1" - !!omap - - id: YOR316C - - name: COT1 + - id: "YOR316C" + - name: "COT1" - !!omap - - id: YOR317W - - name: FAA1 + - id: "YOR317W" + - name: "FAA1" - !!omap - - id: YOR321W - - name: PMT3 + - id: "YOR321W" + - name: "PMT3" - !!omap - - id: YOR323C - - name: PRO2 + - id: "YOR323C" + - name: "PRO2" - !!omap - - id: YOR332W - - name: VMA4 + - id: "YOR332W" + - name: "VMA4" - !!omap - - id: YOR334W - - name: MRS2 + - id: "YOR334W" + - name: "MRS2" - !!omap - - id: YOR335C - - name: ALA1 + - id: "YOR335C" + - name: "ALA1" - !!omap - - id: YOR347C - - name: PYK2 + - id: "YOR347C" + - name: "PYK2" - !!omap - - id: YOR348C - - name: PUT4 + - id: "YOR348C" + - name: "PUT4" - !!omap - - id: YOR360C - - name: PDE2 + - id: "YOR360C" + - name: "PDE2" - !!omap - - id: YOR374W - - name: ALD4 + - id: "YOR374W" + - name: "ALD4" - !!omap - - id: YOR375C - - name: GDH1 + - id: "YOR375C" + - name: "GDH1" - !!omap - - id: YOR377W - - name: ATF1 + - id: "YOR377W" + - name: "ATF1" - !!omap - - id: YOR381W - - name: FRE3 + - id: "YOR381W" + - name: "FRE3" - !!omap - - id: YOR384W - - name: FRE5 + - id: "YOR384W" + - name: "FRE5" - !!omap - - id: YOR388C - - name: FDH1 + - id: "YOR388C" + - name: "FDH1" - !!omap - - id: YOR391C - - name: HSP33 + - id: "YOR391C" + - name: "HSP33" - !!omap - - id: YOR393W - - name: ERR1 + - id: "YOR393W" + - name: "ERR1" - !!omap - - id: YPL015C - - name: HST2 + - id: "YPL015C" + - name: "HST2" - !!omap - - id: YPL023C - - name: MET12 + - id: "YPL023C" + - name: "MET12" - !!omap - - id: YPL028W - - name: ERG10 + - id: "YPL028W" + - name: "ERG10" - !!omap - - id: YPL036W - - name: PMA2 + - id: "YPL036W" + - name: "PMA2" - !!omap - - id: YPL040C - - name: ISM1 + - id: "YPL040C" + - name: "ISM1" - !!omap - - id: YPL053C - - name: KTR6 + - id: "YPL053C" + - name: "KTR6" - !!omap - - id: YPL057C - - name: SUR1 + - id: "YPL057C" + - name: "SUR1" - !!omap - - id: YPL059W - - name: GRX5 + - id: "YPL059W" + - name: "GRX5" - !!omap - - id: YPL060W - - name: MFM1 + - id: "YPL060W" + - name: "MFM1" - !!omap - - id: YPL061W - - name: ALD6 + - id: "YPL061W" + - name: "ALD6" - !!omap - - id: YPL069C - - name: BTS1 + - id: "YPL069C" + - name: "BTS1" - !!omap - - id: YPL076W - - name: GPI2 + - id: "YPL076W" + - name: "GPI2" - !!omap - - id: YPL078C - - name: ATP4 + - id: "YPL078C" + - name: "ATP4" - !!omap - - id: YPL087W - - name: YDC1 + - id: "YPL087W" + - name: "YDC1" - !!omap - - id: YPL088W - - name: YPL088W + - id: "YPL088W" + - name: "YPL088W" - !!omap - - id: YPL091W - - name: GLR1 + - id: "YPL091W" + - name: "GLR1" - !!omap - - id: YPL092W - - name: SSU1 + - id: "YPL092W" + - name: "SSU1" - !!omap - - id: YPL095C - - name: EEB1 + - id: "YPL095C" + - name: "EEB1" - !!omap - - id: YPL096C-A - - name: ERI1 + - id: "YPL096C-A" + - name: "ERI1" - !!omap - - id: YPL097W - - name: MSY1 + - id: "YPL097W" + - name: "MSY1" - !!omap - - id: YPL104W - - name: MSD1 + - id: "YPL104W" + - name: "MSD1" - !!omap - - id: YPL110C - - name: GDE1 + - id: "YPL110C" + - name: "GDE1" - !!omap - - id: YPL111W - - name: CAR1 + - id: "YPL111W" + - name: "CAR1" - !!omap - - id: YPL117C - - name: IDI1 + - id: "YPL117C" + - name: "IDI1" - !!omap - - id: YPL132W - - name: COX11 + - id: "YPL132W" + - name: "COX11" - !!omap - - id: YPL134C - - name: ODC1 + - id: "YPL134C" + - name: "ODC1" - !!omap - - id: YPL135W - - name: ISU1 + - id: "YPL135W" + - name: "ISU1" - !!omap - - id: YPL147W - - name: PXA1 + - id: "YPL147W" + - name: "PXA1" - !!omap - - id: YPL148C - - name: PPT2 + - id: "YPL148C" + - name: "PPT2" - !!omap - - id: YPL160W - - name: CDC60 + - id: "YPL160W" + - name: "CDC60" - !!omap - - id: YPL172C - - name: COX10 + - id: "YPL172C" + - name: "COX10" - !!omap - - id: YPL175W - - name: SPT14 + - id: "YPL175W" + - name: "SPT14" - !!omap - - id: YPL188W - - name: POS5 + - id: "YPL188W" + - name: "POS5" - !!omap - - id: YPL189W - - name: GUP2 + - id: "YPL189W" + - name: "GUP2" - !!omap - - id: YPL206C - - name: PGC1 + - id: "YPL206C" + - name: "PGC1" - !!omap - - id: YPL212C - - name: PUS1 + - id: "YPL212C" + - name: "PUS1" - !!omap - - id: YPL214C - - name: THI6 + - id: "YPL214C" + - name: "THI6" - !!omap - - id: YPL227C - - name: ALG5 + - id: "YPL227C" + - name: "ALG5" - !!omap - - id: YPL231W - - name: FAS2 + - id: "YPL231W" + - name: "FAS2" - !!omap - - id: YPL234C - - name: VMA11 + - id: "YPL234C" + - name: "VMA11" - !!omap - - id: YPL244C - - name: HUT1 + - id: "YPL244C" + - name: "HUT1" - !!omap - - id: YPL252C - - name: YAH1 + - id: "YPL252C" + - name: "YAH1" - !!omap - - id: YPL258C - - name: THI21 + - id: "YPL258C" + - name: "THI21" - !!omap - - id: YPL262W - - name: FUM1 + - id: "YPL262W" + - name: "FUM1" - !!omap - - id: YPL265W - - name: DIP5 + - id: "YPL265W" + - name: "DIP5" - !!omap - - id: YPL268W - - name: PLC1 + - id: "YPL268W" + - name: "PLC1" - !!omap - - id: YPL271W - - name: ATP15 + - id: "YPL271W" + - name: "ATP15" - !!omap - - id: YPL273W - - name: SAM4 + - id: "YPL273W" + - name: "SAM4" - !!omap - - id: YPL274W - - name: SAM3 + - id: "YPL274W" + - name: "SAM3" - !!omap - - id: YPL280W - - name: HSP32 + - id: "YPL280W" + - name: "HSP32" - !!omap - - id: YPL281C - - name: ERR2 + - id: "YPL281C" + - name: "ERR2" - !!omap - - id: YPR001W - - name: CIT3 + - id: "YPR001W" + - name: "CIT3" - !!omap - - id: YPR002W - - name: PDH1 + - id: "YPR002W" + - name: "PDH1" - !!omap - - id: YPR003C - - name: YPR003C + - id: "YPR003C" + - name: "YPR003C" - !!omap - - id: YPR006C - - name: ICL2 + - id: "YPR006C" + - name: "ICL2" - !!omap - - id: YPR011C - - name: YPR011C + - id: "YPR011C" + - name: "YPR011C" - !!omap - - id: YPR020W - - name: ATP20 + - id: "YPR020W" + - name: "ATP20" - !!omap - - id: YPR021C - - name: AGC1 + - id: "YPR021C" + - name: "AGC1" - !!omap - - id: YPR026W - - name: ATH1 + - id: "YPR026W" + - name: "ATH1" - !!omap - - id: YPR033C - - name: HTS1 + - id: "YPR033C" + - name: "HTS1" - !!omap - - id: YPR035W - - name: GLN1 + - id: "YPR035W" + - name: "GLN1" - !!omap - - id: YPR036W - - name: VMA13 + - id: "YPR036W" + - name: "VMA13" - !!omap - - id: YPR047W - - name: MSF1 + - id: "YPR047W" + - name: "MSF1" - !!omap - - id: YPR058W - - name: YMC1 + - id: "YPR058W" + - name: "YMC1" - !!omap - - id: YPR060C - - name: ARO7 + - id: "YPR060C" + - name: "ARO7" - !!omap - - id: YPR062W - - name: FCY1 + - id: "YPR062W" + - name: "FCY1" - !!omap - - id: YPR069C - - name: SPE3 + - id: "YPR069C" + - name: "SPE3" - !!omap - - id: YPR074C - - name: TKL1 + - id: "YPR074C" + - name: "TKL1" - !!omap - - id: YPR081C - - name: GRS2 + - id: "YPR081C" + - name: "GRS2" - !!omap - - id: YPR113W - - name: PIS1 + - id: "YPR113W" + - name: "PIS1" - !!omap - - id: YPR118W - - name: MRI1 + - id: "YPR118W" + - name: "MRI1" - !!omap - - id: YPR121W - - name: THI22 + - id: "YPR121W" + - name: "THI22" - !!omap - - id: YPR127W - - name: YPR127W + - id: "YPR127W" + - name: "YPR127W" - !!omap - - id: YPR128C - - name: ANT1 + - id: "YPR128C" + - name: "ANT1" - !!omap - - id: YPR138C - - name: MEP3 + - id: "YPR138C" + - name: "MEP3" - !!omap - - id: YPR139C - - name: LOA1 + - id: "YPR139C" + - name: "LOA1" - !!omap - - id: YPR140W - - name: TAZ1 + - id: "YPR140W" + - name: "TAZ1" - !!omap - - id: YPR145W - - name: ASN1 + - id: "YPR145W" + - name: "ASN1" - !!omap - - id: YPR156C - - name: TPO3 + - id: "YPR156C" + - name: "TPO3" - !!omap - - id: YPR159W - - name: KRE6 + - id: "YPR159W" + - name: "KRE6" - !!omap - - id: YPR160W - - name: GPH1 + - id: "YPR160W" + - name: "GPH1" - !!omap - - id: YPR167C - - name: MET16 + - id: "YPR167C" + - name: "MET16" - !!omap - - id: YPR183W - - name: DPM1 + - id: "YPR183W" + - name: "DPM1" - !!omap - - id: YPR184W - - name: GDB1 + - id: "YPR184W" + - name: "GDB1" - !!omap - - id: YPR191W - - name: QCR2 + - id: "YPR191W" + - name: "QCR2" - !!omap - - id: YPR192W - - name: AQY1 + - id: "YPR192W" + - name: "AQY1" - compartments: !!omap - - c: cytoplasm - - ce: cell envelope - - e: extracellular - - er: endoplasmic reticulum - - erm: endoplasmic reticulum membrane - - g: Golgi - - gm: Golgi membrane - - lp: lipid particle - - m: mitochondrion - - mm: mitochondrial membrane - - n: nucleus - - p: peroxisome - - v: vacuole - - vm: vacuolar membrane + - c: "cytoplasm" + - ce: "cell envelope" + - e: "extracellular" + - er: "endoplasmic reticulum" + - erm: "endoplasmic reticulum membrane" + - g: "Golgi" + - gm: "Golgi membrane" + - lp: "lipid particle" + - m: "mitochondrion" + - mm: "mitochondrial membrane" + - n: "nucleus" + - p: "peroxisome" + - v: "vacuole" + - vm: "vacuolar membrane" From 41be91ccaffc4afb4f8d917c6732761ab9a0457f Mon Sep 17 00:00:00 2001 From: Benjamin Sanchez Date: Tue, 24 Nov 2020 12:33:16 +0100 Subject: [PATCH 32/56] chore-rxn: move KEGG pathway ids to proper field after COBRA (https://github.com/opencobra/cobratoolbox/pull/1604) and RAVEN (https://github.com/SysBioChalmers/RAVEN/pull/313) added functionality for them --- .../otherChanges/migrateKEGGpathways.m | 21 + ModelFiles/xml/yeastGEM.xml | 17065 +++++++++++----- ModelFiles/yml/yeastGEM.yml | 11260 +++++----- README.md | 2 +- 4 files changed, 17721 insertions(+), 10627 deletions(-) create mode 100644 ComplementaryScripts/otherChanges/migrateKEGGpathways.m diff --git a/ComplementaryScripts/otherChanges/migrateKEGGpathways.m b/ComplementaryScripts/otherChanges/migrateKEGGpathways.m new file mode 100644 index 00000000..3f4a6b13 --- /dev/null +++ b/ComplementaryScripts/otherChanges/migrateKEGGpathways.m @@ -0,0 +1,21 @@ + +% Load Model: +cd .. +model = loadYeastModel; + +% Migrate KEGG pathways from 'subSystems' to 'rxnKEGGpathways' +model.rxnKEGGPathways = cell(size(model.rxns)); +for i = 1:length(model.rxns) + KEGGPathways = model.subSystems{i}; + for j = 1:length(KEGGPathways) + if ~isempty(KEGGPathways{j}) + KEGGPathways{j} = KEGGPathways{j}(1:8); + end + end + model.rxnKEGGPathways{i} = strjoin(KEGGPathways,';'); +end +model.subSystems = cell(size(model.rxns)); + +% Save Model: +saveYeastModel(model); +cd otherChanges diff --git a/ModelFiles/xml/yeastGEM.xml b/ModelFiles/xml/yeastGEM.xml index 53aabee7..8d465939 100644 --- a/ModelFiles/xml/yeastGEM.xml +++ b/ModelFiles/xml/yeastGEM.xml @@ -58857,6 +58857,12 @@ + + + + + + @@ -58913,6 +58919,12 @@ + + + + + + @@ -58960,6 +58972,11 @@ + + + + + @@ -58999,6 +59016,12 @@ + + + + + + @@ -59046,6 +59069,12 @@ + + + + + + @@ -59131,6 +59160,13 @@ + + + + + + + @@ -59167,6 +59203,12 @@ + + + + + + @@ -59211,6 +59253,11 @@ + + + + + @@ -59257,6 +59304,11 @@ + + + + + @@ -59301,6 +59353,11 @@ + + + + + @@ -59343,6 +59400,18 @@ + + + + + + + + + + + + @@ -59392,6 +59461,11 @@ + + + + + @@ -59431,6 +59505,21 @@ + + + + + + + + + + + + + + + @@ -59480,6 +59569,12 @@ + + + + + + @@ -59518,6 +59613,14 @@ + + + + + + + + @@ -59559,6 +59662,12 @@ + + + + + + @@ -59614,6 +59723,12 @@ + + + + + + @@ -59668,6 +59783,14 @@ + + + + + + + + @@ -59709,6 +59832,15 @@ + + + + + + + + + @@ -59756,6 +59888,15 @@ + + + + + + + + + @@ -59846,6 +59987,14 @@ + + + + + + + + @@ -59886,6 +60035,17 @@ + + + + + + + + + + + @@ -59930,6 +60090,18 @@ + + + + + + + + + + + + @@ -59967,6 +60139,18 @@ + + + + + + + + + + + + @@ -60004,6 +60188,12 @@ + + + + + + @@ -60046,6 +60236,11 @@ + + + + + @@ -60087,6 +60282,11 @@ + + + + + @@ -60123,6 +60323,11 @@ + + + + + @@ -60159,6 +60364,11 @@ + + + + + @@ -60196,6 +60406,11 @@ + + + + + @@ -60232,6 +60447,12 @@ + + + + + + @@ -60274,6 +60495,14 @@ + + + + + + + + @@ -60314,6 +60543,14 @@ + + + + + + + + @@ -60360,6 +60597,11 @@ + + + + + @@ -60403,6 +60645,14 @@ + + + + + + + + @@ -60536,6 +60786,11 @@ + + + + + @@ -60614,6 +60869,11 @@ + + + + + @@ -60694,6 +60954,14 @@ + + + + + + + + @@ -60735,6 +61003,15 @@ + + + + + + + + + @@ -60778,6 +61055,13 @@ + + + + + + + @@ -60826,6 +61110,12 @@ + + + + + + @@ -60864,6 +61154,13 @@ + + + + + + + @@ -60914,6 +61211,14 @@ + + + + + + + + @@ -60960,6 +61265,11 @@ + + + + + @@ -61034,6 +61344,15 @@ + + + + + + + + + @@ -61076,6 +61395,14 @@ + + + + + + + + @@ -61158,6 +61485,13 @@ + + + + + + + @@ -61249,6 +61583,12 @@ + + + + + + @@ -61289,6 +61629,11 @@ + + + + + @@ -61331,6 +61676,11 @@ + + + + + @@ -61377,6 +61727,12 @@ + + + + + + @@ -61419,6 +61775,11 @@ + + + + + @@ -61465,6 +61826,13 @@ + + + + + + + @@ -61508,6 +61876,12 @@ + + + + + + @@ -61554,6 +61928,13 @@ + + + + + + + @@ -61638,6 +62019,12 @@ + + + + + + @@ -61679,6 +62066,11 @@ + + + + + @@ -61717,6 +62109,14 @@ + + + + + + + + @@ -61921,6 +62321,11 @@ + + + + + @@ -61961,6 +62366,14 @@ + + + + + + + + @@ -62056,6 +62469,12 @@ + + + + + + @@ -62136,6 +62555,13 @@ + + + + + + + @@ -62182,6 +62608,16 @@ + + + + + + + + + + @@ -62222,6 +62658,18 @@ + + + + + + + + + + + + @@ -62269,6 +62717,11 @@ + + + + + @@ -62310,6 +62763,17 @@ + + + + + + + + + + + @@ -62346,6 +62810,17 @@ + + + + + + + + + + + @@ -62382,6 +62857,17 @@ + + + + + + + + + + + @@ -62419,6 +62905,24 @@ + + + + + + + + + + + + + + + + + + @@ -62455,6 +62959,24 @@ + + + + + + + + + + + + + + + + + + @@ -62491,6 +63013,17 @@ + + + + + + + + + + + @@ -62528,6 +63061,17 @@ + + + + + + + + + + + @@ -62565,6 +63109,17 @@ + + + + + + + + + + + @@ -62601,6 +63156,15 @@ + + + + + + + + + @@ -62647,6 +63211,16 @@ + + + + + + + + + + @@ -62690,6 +63264,11 @@ + + + + + @@ -62728,6 +63307,16 @@ + + + + + + + + + + @@ -62775,6 +63364,16 @@ + + + + + + + + + + @@ -62814,6 +63413,16 @@ + + + + + + + + + + @@ -62857,6 +63466,15 @@ + + + + + + + + + @@ -62895,6 +63513,13 @@ + + + + + + + @@ -62942,6 +63567,11 @@ + + + + + @@ -62981,6 +63611,15 @@ + + + + + + + + + @@ -63056,6 +63695,15 @@ + + + + + + + + + @@ -63091,6 +63739,15 @@ + + + + + + + + + @@ -63127,6 +63784,15 @@ + + + + + + + + + @@ -63163,6 +63829,15 @@ + + + + + + + + + @@ -63199,6 +63874,15 @@ + + + + + + + + + @@ -63235,6 +63919,15 @@ + + + + + + + + + @@ -63271,6 +63964,11 @@ + + + + + @@ -63311,6 +64009,11 @@ + + + + + @@ -63354,6 +64057,11 @@ + + + + + @@ -63394,6 +64102,11 @@ + + + + + @@ -63434,6 +64147,11 @@ + + + + + @@ -63473,6 +64191,11 @@ + + + + + @@ -63512,6 +64235,11 @@ + + + + + @@ -63554,6 +64282,11 @@ + + + + + @@ -63593,6 +64326,11 @@ + + + + + @@ -63632,6 +64370,11 @@ + + + + + @@ -63671,6 +64414,11 @@ + + + + + @@ -63710,6 +64458,11 @@ + + + + + @@ -63748,6 +64501,11 @@ + + + + + @@ -63793,6 +64551,11 @@ + + + + + @@ -63831,6 +64594,11 @@ + + + + + @@ -63869,6 +64637,13 @@ + + + + + + + @@ -63907,6 +64682,11 @@ + + + + + @@ -63949,6 +64729,12 @@ + + + + + + @@ -63991,6 +64777,11 @@ + + + + + @@ -64028,6 +64819,13 @@ + + + + + + + @@ -64064,6 +64862,14 @@ + + + + + + + + @@ -64103,6 +64909,14 @@ + + + + + + + + @@ -64139,6 +64953,14 @@ + + + + + + + + @@ -64175,6 +64997,14 @@ + + + + + + + + @@ -64211,6 +65041,14 @@ + + + + + + + + @@ -64247,6 +65085,12 @@ + + + + + + @@ -64287,6 +65131,12 @@ + + + + + + @@ -64372,6 +65222,17 @@ + + + + + + + + + + + @@ -64409,6 +65270,11 @@ + + + + + @@ -64672,6 +65538,15 @@ + + + + + + + + + @@ -64715,6 +65590,11 @@ + + + + + @@ -64762,6 +65642,15 @@ + + + + + + + + + @@ -64808,6 +65697,16 @@ + + + + + + + + + + @@ -64856,6 +65755,15 @@ + + + + + + + + + @@ -64901,6 +65809,15 @@ + + + + + + + + + @@ -64949,6 +65866,16 @@ + + + + + + + + + + @@ -64998,6 +65925,15 @@ + + + + + + + + + @@ -65044,6 +65980,15 @@ + + + + + + + + + @@ -65090,6 +66035,16 @@ + + + + + + + + + + @@ -65138,6 +66093,22 @@ + + + + + + + + + + + + + + + + @@ -65182,6 +66153,22 @@ + + + + + + + + + + + + + + + + @@ -65226,6 +66213,22 @@ + + + + + + + + + + + + + + + + @@ -65273,6 +66276,22 @@ + + + + + + + + + + + + + + + + @@ -65312,6 +66331,22 @@ + + + + + + + + + + + + + + + + @@ -65350,6 +66385,22 @@ + + + + + + + + + + + + + + + + @@ -65397,6 +66448,16 @@ + + + + + + + + + + @@ -65447,6 +66508,15 @@ + + + + + + + + + @@ -65494,6 +66564,15 @@ + + + + + + + + + @@ -65541,6 +66620,16 @@ + + + + + + + + + + @@ -65589,6 +66678,15 @@ + + + + + + + + + @@ -65634,6 +66732,15 @@ + + + + + + + + + @@ -65680,6 +66787,16 @@ + + + + + + + + + + @@ -65727,6 +66844,16 @@ + + + + + + + + + + @@ -65776,6 +66903,15 @@ + + + + + + + + + @@ -65823,6 +66959,12 @@ + + + + + + @@ -65864,6 +67006,11 @@ + + + + + @@ -65906,6 +67053,11 @@ + + + + + @@ -65948,6 +67100,12 @@ + + + + + + @@ -65988,6 +67146,12 @@ + + + + + + @@ -66042,6 +67206,11 @@ + + + + + @@ -66081,6 +67250,11 @@ + + + + + @@ -66123,6 +67297,11 @@ + + + + + @@ -66179,6 +67358,12 @@ + + + + + + @@ -66223,6 +67408,11 @@ + + + + + @@ -66303,6 +67493,22 @@ + + + + + + + + + + + + + + + + @@ -66342,6 +67548,14 @@ + + + + + + + + @@ -66379,6 +67593,14 @@ + + + + + + + + @@ -66426,6 +67648,11 @@ + + + + + @@ -66463,6 +67690,11 @@ + + + + + @@ -66502,6 +67734,15 @@ + + + + + + + + + @@ -66540,6 +67781,15 @@ + + + + + + + + + @@ -66577,6 +67827,15 @@ + + + + + + + + + @@ -66622,6 +67881,11 @@ + + + + + @@ -66661,6 +67925,11 @@ + + + + + @@ -66700,6 +67969,12 @@ + + + + + + @@ -66750,6 +68025,11 @@ + + + + + @@ -66794,6 +68074,11 @@ + + + + + @@ -66838,6 +68123,12 @@ + + + + + + @@ -66877,6 +68168,18 @@ + + + + + + + + + + + + @@ -66919,6 +68222,22 @@ + + + + + + + + + + + + + + + + @@ -66961,6 +68280,22 @@ + + + + + + + + + + + + + + + + @@ -67003,6 +68338,22 @@ + + + + + + + + + + + + + + + + @@ -67045,6 +68396,18 @@ + + + + + + + + + + + + @@ -67089,6 +68452,11 @@ + + + + + @@ -67133,6 +68501,11 @@ + + + + + @@ -67177,6 +68550,11 @@ + + + + + @@ -67216,6 +68594,12 @@ + + + + + + @@ -67254,6 +68638,12 @@ + + + + + + @@ -67292,6 +68682,13 @@ + + + + + + + @@ -67329,6 +68726,11 @@ + + + + + @@ -67430,6 +68832,13 @@ + + + + + + + @@ -67487,6 +68896,12 @@ + + + + + + @@ -67529,6 +68944,11 @@ + + + + + @@ -67563,6 +68983,11 @@ + + + + + @@ -67610,6 +69035,13 @@ + + + + + + + @@ -67648,6 +69080,12 @@ + + + + + + @@ -67689,6 +69127,12 @@ + + + + + + @@ -67730,6 +69174,12 @@ + + + + + + @@ -67766,6 +69216,12 @@ + + + + + + @@ -67803,6 +69259,12 @@ + + + + + + @@ -67840,6 +69302,12 @@ + + + + + + @@ -67878,6 +69346,12 @@ + + + + + + @@ -67918,6 +69392,12 @@ + + + + + + @@ -67960,6 +69440,12 @@ + + + + + + @@ -67999,6 +69485,13 @@ + + + + + + + @@ -68038,6 +69531,12 @@ + + + + + + @@ -68073,6 +69572,12 @@ + + + + + + @@ -68112,6 +69617,12 @@ + + + + + + @@ -68156,6 +69667,12 @@ + + + + + + @@ -68203,6 +69720,11 @@ + + + + + @@ -68248,6 +69770,11 @@ + + + + + @@ -68285,6 +69812,11 @@ + + + + + @@ -68323,6 +69855,18 @@ + + + + + + + + + + + + @@ -68364,6 +69908,18 @@ + + + + + + + + + + + + @@ -68405,6 +69961,11 @@ + + + + + @@ -68493,6 +70054,11 @@ + + + + + @@ -68581,6 +70147,11 @@ + + + + + @@ -68635,6 +70206,11 @@ + + + + + @@ -68689,6 +70265,11 @@ + + + + + @@ -68743,6 +70324,11 @@ + + + + + @@ -68974,6 +70560,11 @@ + + + + + @@ -69014,6 +70605,11 @@ + + + + + @@ -69059,6 +70655,11 @@ + + + + + @@ -69102,6 +70703,12 @@ + + + + + + @@ -69140,6 +70747,14 @@ + + + + + + + + @@ -69180,6 +70795,14 @@ + + + + + + + + @@ -69221,6 +70844,17 @@ + + + + + + + + + + + @@ -69262,6 +70896,12 @@ + + + + + + @@ -69306,6 +70946,12 @@ + + + + + + @@ -69350,6 +70996,12 @@ + + + + + + @@ -69394,6 +71046,12 @@ + + + + + + @@ -69438,6 +71096,12 @@ + + + + + + @@ -69482,6 +71146,12 @@ + + + + + + @@ -69526,6 +71196,12 @@ + + + + + + @@ -69570,6 +71246,12 @@ + + + + + + @@ -69613,6 +71295,12 @@ + + + + + + @@ -69655,6 +71343,12 @@ + + + + + + @@ -69697,6 +71391,12 @@ + + + + + + @@ -69739,6 +71439,12 @@ + + + + + + @@ -69781,6 +71487,12 @@ + + + + + + @@ -69823,6 +71535,12 @@ + + + + + + @@ -69865,6 +71583,12 @@ + + + + + + @@ -69907,6 +71631,12 @@ + + + + + + @@ -69949,6 +71679,12 @@ + + + + + + @@ -69991,6 +71727,12 @@ + + + + + + @@ -70033,6 +71775,12 @@ + + + + + + @@ -70075,6 +71823,17 @@ + + + + + + + + + + + @@ -70122,6 +71881,17 @@ + + + + + + + + + + + @@ -70166,6 +71936,17 @@ + + + + + + + + + + + @@ -70207,6 +71988,17 @@ + + + + + + + + + + + @@ -70248,6 +72040,12 @@ + + + + + + @@ -70287,6 +72085,11 @@ + + + + + @@ -70332,6 +72135,11 @@ + + + + + @@ -70375,6 +72183,14 @@ + + + + + + + + @@ -70421,6 +72237,14 @@ + + + + + + + + @@ -70463,6 +72287,15 @@ + + + + + + + + + @@ -70506,6 +72339,16 @@ + + + + + + + + + + @@ -70550,6 +72393,16 @@ + + + + + + + + + + @@ -70594,6 +72447,11 @@ + + + + + @@ -70638,6 +72496,11 @@ + + + + + @@ -70676,6 +72539,11 @@ + + + + + @@ -70714,6 +72582,13 @@ + + + + + + + @@ -70764,6 +72639,12 @@ + + + + + + @@ -70926,6 +72807,17 @@ + + + + + + + + + + + @@ -70962,6 +72854,12 @@ + + + + + + @@ -71003,6 +72901,11 @@ + + + + + @@ -71041,6 +72944,11 @@ + + + + + @@ -71079,6 +72987,11 @@ + + + + + @@ -71117,6 +73030,11 @@ + + + + + @@ -71155,6 +73073,11 @@ + + + + + @@ -71229,6 +73152,11 @@ + + + + + @@ -71267,6 +73195,11 @@ + + + + + @@ -71305,6 +73238,11 @@ + + + + + @@ -71346,6 +73284,11 @@ + + + + + @@ -71388,6 +73331,11 @@ + + + + + @@ -71429,6 +73377,11 @@ + + + + + @@ -71471,6 +73424,11 @@ + + + + + @@ -71512,6 +73470,12 @@ + + + + + + @@ -71550,6 +73514,12 @@ + + + + + + @@ -71589,6 +73559,11 @@ + + + + + @@ -71634,6 +73609,11 @@ + + + + + @@ -71709,6 +73689,11 @@ + + + + + @@ -71752,6 +73737,11 @@ + + + + + @@ -71791,6 +73781,11 @@ + + + + + @@ -71830,6 +73825,16 @@ + + + + + + + + + + @@ -71871,6 +73876,16 @@ + + + + + + + + + + @@ -71912,6 +73927,13 @@ + + + + + + + @@ -71954,6 +73976,13 @@ + + + + + + + @@ -71992,6 +74021,16 @@ + + + + + + + + + + @@ -72076,6 +74115,12 @@ + + + + + + @@ -72162,6 +74207,11 @@ + + + + + @@ -72201,6 +74251,11 @@ + + + + + @@ -72240,6 +74295,12 @@ + + + + + + @@ -72283,6 +74344,11 @@ + + + + + @@ -72320,6 +74386,11 @@ + + + + + @@ -72361,6 +74432,11 @@ + + + + + @@ -72400,6 +74476,16 @@ + + + + + + + + + + @@ -72447,6 +74533,11 @@ + + + + + @@ -72535,6 +74626,11 @@ + + + + + @@ -72583,6 +74679,13 @@ + + + + + + + @@ -72628,6 +74731,14 @@ + + + + + + + + @@ -72665,6 +74776,14 @@ + + + + + + + + @@ -72703,6 +74822,14 @@ + + + + + + + + @@ -72742,6 +74869,14 @@ + + + + + + + + @@ -72780,6 +74915,14 @@ + + + + + + + + @@ -72818,6 +74961,12 @@ + + + + + + @@ -72856,6 +75005,11 @@ + + + + + @@ -72903,6 +75057,12 @@ + + + + + + @@ -73015,6 +75175,12 @@ + + + + + + @@ -73078,6 +75244,12 @@ + + + + + + @@ -73204,6 +75376,16 @@ + + + + + + + + + + @@ -73244,6 +75426,12 @@ + + + + + + @@ -73281,6 +75469,11 @@ + + + + + @@ -73329,6 +75522,11 @@ + + + + + @@ -73377,6 +75575,11 @@ + + + + + @@ -73418,6 +75621,16 @@ + + + + + + + + + + @@ -73455,6 +75668,17 @@ + + + + + + + + + + + @@ -73495,6 +75719,15 @@ + + + + + + + + + @@ -73536,6 +75769,15 @@ + + + + + + + + + @@ -73578,6 +75820,11 @@ + + + + + @@ -73710,6 +75957,12 @@ + + + + + + @@ -73747,6 +76000,12 @@ + + + + + + @@ -73785,6 +76044,12 @@ + + + + + + @@ -73823,6 +76088,12 @@ + + + + + + @@ -73901,6 +76172,13 @@ + + + + + + + @@ -73939,6 +76217,12 @@ + + + + + + @@ -73980,6 +76264,11 @@ + + + + + @@ -74057,6 +76346,15 @@ + + + + + + + + + @@ -74101,6 +76399,17 @@ + + + + + + + + + + + @@ -74141,6 +76450,14 @@ + + + + + + + + @@ -74178,6 +76495,15 @@ + + + + + + + + + @@ -74220,6 +76546,14 @@ + + + + + + + + @@ -74265,6 +76599,13 @@ + + + + + + + @@ -74308,6 +76649,15 @@ + + + + + + + + + @@ -74352,6 +76702,15 @@ + + + + + + + + + @@ -74435,6 +76794,15 @@ + + + + + + + + + @@ -74481,6 +76849,13 @@ + + + + + + + @@ -74526,6 +76901,11 @@ + + + + + @@ -74570,6 +76950,13 @@ + + + + + + + @@ -74609,6 +76996,13 @@ + + + + + + + @@ -74653,6 +77047,11 @@ + + + + + @@ -74708,6 +77107,11 @@ + + + + + @@ -74755,6 +77159,11 @@ + + + + + @@ -74842,6 +77251,12 @@ + + + + + + @@ -74882,6 +77297,15 @@ + + + + + + + + + @@ -74930,6 +77354,11 @@ + + + + + @@ -74973,6 +77402,11 @@ + + + + + @@ -75011,6 +77445,11 @@ + + + + + @@ -75052,6 +77491,12 @@ + + + + + + @@ -75090,6 +77535,13 @@ + + + + + + + @@ -75136,6 +77588,13 @@ + + + + + + + @@ -75174,6 +77633,11 @@ + + + + + @@ -75217,6 +77681,14 @@ + + + + + + + + @@ -75293,6 +77765,21 @@ + + + + + + + + + + + + + + + @@ -75339,6 +77826,17 @@ + + + + + + + + + + + @@ -75383,6 +77881,17 @@ + + + + + + + + + + + @@ -75427,6 +77936,21 @@ + + + + + + + + + + + + + + + @@ -75471,6 +77995,23 @@ + + + + + + + + + + + + + + + + + @@ -75526,6 +78067,21 @@ + + + + + + + + + + + + + + + @@ -75571,6 +78127,21 @@ + + + + + + + + + + + + + + + @@ -75617,6 +78188,21 @@ + + + + + + + + + + + + + + + @@ -75662,6 +78248,21 @@ + + + + + + + + + + + + + + + @@ -75706,6 +78307,11 @@ + + + + + @@ -75764,6 +78370,12 @@ + + + + + + @@ -75799,6 +78411,11 @@ + + + + + @@ -75846,6 +78463,11 @@ + + + + + @@ -75889,6 +78511,11 @@ + + + + + @@ -75931,6 +78558,11 @@ + + + + + @@ -75973,6 +78605,11 @@ + + + + + @@ -76011,6 +78648,11 @@ + + + + + @@ -76050,6 +78692,11 @@ + + + + + @@ -76088,6 +78735,11 @@ + + + + + @@ -76130,6 +78782,11 @@ + + + + + @@ -76168,6 +78825,13 @@ + + + + + + + @@ -76207,6 +78871,11 @@ + + + + + @@ -76250,6 +78919,12 @@ + + + + + + @@ -76287,6 +78962,11 @@ + + + + + @@ -76324,6 +79004,11 @@ + + + + + @@ -76409,6 +79094,13 @@ + + + + + + + @@ -76452,6 +79144,12 @@ + + + + + + @@ -76499,6 +79197,18 @@ + + + + + + + + + + + + @@ -76542,6 +79252,18 @@ + + + + + + + + + + + + @@ -76592,6 +79314,18 @@ + + + + + + + + + + + + @@ -76634,6 +79368,13 @@ + + + + + + + @@ -76675,6 +79416,13 @@ + + + + + + + @@ -76712,6 +79460,17 @@ + + + + + + + + + + + @@ -76749,6 +79508,11 @@ + + + + + @@ -76793,6 +79557,11 @@ + + + + + @@ -76881,6 +79650,14 @@ + + + + + + + + @@ -76926,6 +79703,15 @@ + + + + + + + + + @@ -76967,6 +79753,12 @@ + + + + + + @@ -77014,6 +79806,14 @@ + + + + + + + + @@ -77056,6 +79856,16 @@ + + + + + + + + + + @@ -77100,6 +79910,16 @@ + + + + + + + + + + @@ -77143,6 +79963,13 @@ + + + + + + + @@ -77186,6 +80013,12 @@ + + + + + + @@ -77327,6 +80160,11 @@ + + + + + @@ -77378,6 +80216,11 @@ + + + + + @@ -77416,6 +80259,11 @@ + + + + + @@ -77454,6 +80302,12 @@ + + + + + + @@ -77491,6 +80345,11 @@ + + + + + @@ -77530,6 +80389,12 @@ + + + + + + @@ -77568,6 +80433,13 @@ + + + + + + + @@ -77611,6 +80483,16 @@ + + + + + + + + + + @@ -77650,6 +80532,16 @@ + + + + + + + + + + @@ -77689,6 +80581,11 @@ + + + + + @@ -77732,6 +80629,12 @@ + + + + + + @@ -77769,6 +80672,13 @@ + + + + + + + @@ -77809,6 +80719,13 @@ + + + + + + + @@ -77845,6 +80762,12 @@ + + + + + + @@ -77893,6 +80816,14 @@ + + + + + + + + @@ -77937,6 +80868,13 @@ + + + + + + + @@ -77986,6 +80924,11 @@ + + + + + @@ -78028,6 +80971,11 @@ + + + + + @@ -78070,6 +81018,14 @@ + + + + + + + + @@ -78111,6 +81067,12 @@ + + + + + + @@ -78154,6 +81116,13 @@ + + + + + + + @@ -78197,6 +81166,13 @@ + + + + + + + @@ -78240,6 +81216,13 @@ + + + + + + + @@ -78283,6 +81266,13 @@ + + + + + + + @@ -78325,6 +81315,11 @@ + + + + + @@ -78365,6 +81360,11 @@ + + + + + @@ -78405,6 +81405,11 @@ + + + + + @@ -78445,6 +81450,11 @@ + + + + + @@ -78485,6 +81495,11 @@ + + + + + @@ -78525,6 +81540,11 @@ + + + + + @@ -78565,6 +81585,11 @@ + + + + + @@ -78605,6 +81630,11 @@ + + + + + @@ -78645,6 +81675,11 @@ + + + + + @@ -78685,6 +81720,11 @@ + + + + + @@ -78725,6 +81765,11 @@ + + + + + @@ -78765,6 +81810,11 @@ + + + + + @@ -78805,6 +81855,11 @@ + + + + + @@ -78845,6 +81900,11 @@ + + + + + @@ -78885,6 +81945,11 @@ + + + + + @@ -78925,6 +81990,11 @@ + + + + + @@ -78965,6 +82035,11 @@ + + + + + @@ -79005,6 +82080,11 @@ + + + + + @@ -79045,6 +82125,11 @@ + + + + + @@ -79085,6 +82170,11 @@ + + + + + @@ -79126,6 +82216,11 @@ + + + + + @@ -79168,6 +82263,11 @@ + + + + + @@ -79210,6 +82310,11 @@ + + + + + @@ -79252,6 +82357,11 @@ + + + + + @@ -79294,6 +82404,11 @@ + + + + + @@ -79336,6 +82451,11 @@ + + + + + @@ -79378,6 +82498,11 @@ + + + + + @@ -79420,6 +82545,11 @@ + + + + + @@ -79462,6 +82592,11 @@ + + + + + @@ -79504,6 +82639,11 @@ + + + + + @@ -79545,6 +82685,11 @@ + + + + + @@ -79585,6 +82730,11 @@ + + + + + @@ -79625,6 +82775,11 @@ + + + + + @@ -79665,6 +82820,11 @@ + + + + + @@ -79705,6 +82865,11 @@ + + + + + @@ -79745,6 +82910,11 @@ + + + + + @@ -79785,6 +82955,11 @@ + + + + + @@ -79825,6 +83000,11 @@ + + + + + @@ -79865,6 +83045,11 @@ + + + + + @@ -79905,6 +83090,11 @@ + + + + + @@ -79945,6 +83135,11 @@ + + + + + @@ -79985,6 +83180,11 @@ + + + + + @@ -80025,6 +83225,11 @@ + + + + + @@ -80065,6 +83270,11 @@ + + + + + @@ -80105,6 +83315,11 @@ + + + + + @@ -80145,6 +83360,11 @@ + + + + + @@ -80185,6 +83405,11 @@ + + + + + @@ -80225,6 +83450,11 @@ + + + + + @@ -80265,6 +83495,11 @@ + + + + + @@ -80305,6 +83540,11 @@ + + + + + @@ -80346,6 +83586,11 @@ + + + + + @@ -80388,6 +83633,11 @@ + + + + + @@ -80430,6 +83680,11 @@ + + + + + @@ -80472,6 +83727,11 @@ + + + + + @@ -80514,6 +83774,11 @@ + + + + + @@ -80556,6 +83821,11 @@ + + + + + @@ -80598,6 +83868,11 @@ + + + + + @@ -80640,6 +83915,11 @@ + + + + + @@ -80682,6 +83962,11 @@ + + + + + @@ -80724,6 +84009,11 @@ + + + + + @@ -80849,6 +84139,16 @@ + + + + + + + + + + @@ -80895,6 +84195,18 @@ + + + + + + + + + + + + @@ -80938,6 +84250,18 @@ + + + + + + + + + + + + @@ -80981,6 +84305,13 @@ + + + + + + + @@ -81018,6 +84349,18 @@ + + + + + + + + + + + + @@ -81060,6 +84403,18 @@ + + + + + + + + + + + + @@ -81102,6 +84457,11 @@ + + + + + @@ -81146,6 +84506,11 @@ + + + + + @@ -81190,6 +84555,13 @@ + + + + + + + @@ -81225,6 +84597,15 @@ + + + + + + + + + @@ -81272,6 +84653,16 @@ + + + + + + + + + + @@ -81314,6 +84705,11 @@ + + + + + @@ -81357,6 +84753,11 @@ + + + + + @@ -81402,6 +84803,12 @@ + + + + + + @@ -81441,6 +84848,12 @@ + + + + + + @@ -81480,6 +84893,15 @@ + + + + + + + + + @@ -81517,6 +84939,14 @@ + + + + + + + + @@ -81558,6 +84988,12 @@ + + + + + + @@ -81601,6 +85037,15 @@ + + + + + + + + + @@ -81651,6 +85096,12 @@ + + + + + + @@ -81740,6 +85191,22 @@ + + + + + + + + + + + + + + + + @@ -81777,6 +85244,22 @@ + + + + + + + + + + + + + + + + @@ -81814,6 +85297,22 @@ + + + + + + + + + + + + + + + + @@ -81888,6 +85387,14 @@ + + + + + + + + @@ -81937,6 +85444,17 @@ + + + + + + + + + + + @@ -81979,6 +85497,12 @@ + + + + + + @@ -82022,6 +85546,12 @@ + + + + + + @@ -82059,6 +85589,17 @@ + + + + + + + + + + + @@ -82101,6 +85642,16 @@ + + + + + + + + + + @@ -82142,6 +85693,11 @@ + + + + + @@ -82267,6 +85823,11 @@ + + + + + @@ -82303,6 +85864,13 @@ + + + + + + + @@ -82338,6 +85906,18 @@ + + + + + + + + + + + + @@ -82380,6 +85960,18 @@ + + + + + + + + + + + + @@ -82422,6 +86014,11 @@ + + + + + @@ -82466,6 +86063,11 @@ + + + + + @@ -82743,6 +86345,11 @@ + + + + + @@ -82787,6 +86394,11 @@ + + + + + @@ -82831,6 +86443,17 @@ + + + + + + + + + + + @@ -82874,6 +86497,17 @@ + + + + + + + + + + + @@ -82917,6 +86551,17 @@ + + + + + + + + + + + @@ -82960,6 +86605,14 @@ + + + + + + + + @@ -83002,6 +86655,14 @@ + + + + + + + + @@ -83046,6 +86707,12 @@ + + + + + + @@ -83091,6 +86758,12 @@ + + + + + + @@ -83136,6 +86809,14 @@ + + + + + + + + @@ -83181,6 +86862,13 @@ + + + + + + + @@ -83220,6 +86908,14 @@ + + + + + + + + @@ -83255,6 +86951,11 @@ + + + + + @@ -83294,6 +86995,11 @@ + + + + + @@ -83333,6 +87039,13 @@ + + + + + + + @@ -83381,6 +87094,14 @@ + + + + + + + + @@ -83424,6 +87145,12 @@ + + + + + + @@ -83462,6 +87189,12 @@ + + + + + + @@ -83506,6 +87239,12 @@ + + + + + + @@ -83550,6 +87289,11 @@ + + + + + @@ -83587,6 +87331,11 @@ + + + + + @@ -83626,6 +87375,11 @@ + + + + + @@ -83672,6 +87426,13 @@ + + + + + + + @@ -83713,6 +87474,14 @@ + + + + + + + + @@ -83751,6 +87520,14 @@ + + + + + + + + @@ -83788,6 +87565,14 @@ + + + + + + + + @@ -83825,6 +87610,14 @@ + + + + + + + + @@ -83862,6 +87655,13 @@ + + + + + + + @@ -84422,6 +88222,12 @@ + + + + + + @@ -84467,6 +88273,12 @@ + + + + + + @@ -84501,6 +88313,15 @@ + + + + + + + + + @@ -84542,6 +88363,11 @@ + + + + + @@ -84585,6 +88411,15 @@ + + + + + + + + + @@ -84627,6 +88462,12 @@ + + + + + + @@ -84671,6 +88512,12 @@ + + + + + + @@ -84715,6 +88562,12 @@ + + + + + + @@ -84753,6 +88606,11 @@ + + + + + @@ -84800,6 +88658,11 @@ + + + + + @@ -84848,6 +88711,12 @@ + + + + + + @@ -84896,6 +88765,11 @@ + + + + + @@ -84943,6 +88817,11 @@ + + + + + @@ -85034,6 +88913,11 @@ + + + + + @@ -85080,6 +88964,11 @@ + + + + + @@ -85164,6 +89053,11 @@ + + + + + @@ -85205,6 +89099,11 @@ + + + + + @@ -85246,6 +89145,12 @@ + + + + + + @@ -85325,6 +89230,11 @@ + + + + + @@ -85372,6 +89282,11 @@ + + + + + @@ -85419,6 +89334,11 @@ + + + + + @@ -85466,6 +89386,11 @@ + + + + + @@ -85505,6 +89430,11 @@ + + + + + @@ -85544,6 +89474,12 @@ + + + + + + @@ -85587,6 +89523,12 @@ + + + + + + @@ -85630,6 +89572,12 @@ + + + + + + @@ -85711,6 +89659,12 @@ + + + + + + @@ -85749,6 +89703,12 @@ + + + + + + @@ -85787,6 +89747,14 @@ + + + + + + + + @@ -85824,6 +89792,14 @@ + + + + + + + + @@ -85861,6 +89837,14 @@ + + + + + + + + @@ -85898,6 +89882,14 @@ + + + + + + + + @@ -85935,6 +89927,14 @@ + + + + + + + + @@ -85972,6 +89972,14 @@ + + + + + + + + @@ -86009,6 +90017,14 @@ + + + + + + + + @@ -86046,6 +90062,14 @@ + + + + + + + + @@ -86083,6 +90107,14 @@ + + + + + + + + @@ -86120,6 +90152,12 @@ + + + + + + @@ -86167,6 +90205,12 @@ + + + + + + @@ -86210,6 +90254,12 @@ + + + + + + @@ -86248,6 +90298,12 @@ + + + + + + @@ -86324,6 +90380,14 @@ + + + + + + + + @@ -86361,6 +90425,16 @@ + + + + + + + + + + @@ -86406,6 +90480,16 @@ + + + + + + + + + + @@ -86449,6 +90533,15 @@ + + + + + + + + + @@ -86496,6 +90589,14 @@ + + + + + + + + @@ -86534,6 +90635,14 @@ + + + + + + + + @@ -86571,6 +90680,15 @@ + + + + + + + + + @@ -86609,6 +90727,13 @@ + + + + + + + @@ -86646,6 +90771,11 @@ + + + + + @@ -86686,6 +90816,11 @@ + + + + + @@ -86723,6 +90858,22 @@ + + + + + + + + + + + + + + + + @@ -86771,6 +90922,22 @@ + + + + + + + + + + + + + + + + @@ -86820,6 +90987,11 @@ + + + + + @@ -86863,6 +91035,11 @@ + + + + + @@ -86901,6 +91078,13 @@ + + + + + + + @@ -86941,6 +91125,13 @@ + + + + + + + @@ -86982,6 +91173,13 @@ + + + + + + + @@ -87024,6 +91222,13 @@ + + + + + + + @@ -87067,6 +91272,13 @@ + + + + + + + @@ -87109,6 +91321,13 @@ + + + + + + + @@ -87152,6 +91371,13 @@ + + + + + + + @@ -87195,6 +91421,21 @@ + + + + + + + + + + + + + + + @@ -87239,6 +91480,11 @@ + + + + + @@ -87286,6 +91532,11 @@ + + + + + @@ -87331,6 +91582,11 @@ + + + + + @@ -87374,6 +91630,13 @@ + + + + + + + @@ -87414,6 +91677,12 @@ + + + + + + @@ -87454,6 +91723,11 @@ + + + + + @@ -87506,6 +91780,16 @@ + + + + + + + + + + @@ -87544,6 +91828,12 @@ + + + + + + @@ -87582,6 +91872,19 @@ + + + + + + + + + + + + + @@ -87631,6 +91934,19 @@ + + + + + + + + + + + + + @@ -87675,6 +91991,18 @@ + + + + + + + + + + + + @@ -87719,6 +92047,15 @@ + + + + + + + + + @@ -87765,6 +92102,12 @@ + + + + + + @@ -87805,6 +92148,14 @@ + + + + + + + + @@ -87852,6 +92203,15 @@ + + + + + + + + + @@ -87894,6 +92254,16 @@ + + + + + + + + + + @@ -87937,6 +92307,14 @@ + + + + + + + + @@ -87972,6 +92350,11 @@ + + + + + @@ -88019,6 +92402,13 @@ + + + + + + + @@ -88056,6 +92446,11 @@ + + + + + @@ -88096,6 +92491,11 @@ + + + + + @@ -88148,6 +92548,18 @@ + + + + + + + + + + + + @@ -88188,6 +92600,13 @@ + + + + + + + @@ -88228,6 +92647,13 @@ + + + + + + + @@ -88271,6 +92697,13 @@ + + + + + + + @@ -88312,6 +92745,12 @@ + + + + + + @@ -88348,6 +92787,14 @@ + + + + + + + + @@ -88389,6 +92836,14 @@ + + + + + + + + @@ -88429,6 +92884,13 @@ + + + + + + + @@ -88470,6 +92932,14 @@ + + + + + + + + @@ -88509,6 +92979,16 @@ + + + + + + + + + + @@ -88572,6 +93052,14 @@ + + + + + + + + @@ -88614,6 +93102,15 @@ + + + + + + + + + @@ -88657,6 +93154,11 @@ + + + + + @@ -88699,6 +93201,12 @@ + + + + + + @@ -88735,6 +93243,11 @@ + + + + + @@ -88776,6 +93289,11 @@ + + + + + @@ -88821,6 +93339,12 @@ + + + + + + @@ -88864,6 +93388,12 @@ + + + + + + @@ -88901,6 +93431,12 @@ + + + + + + @@ -88945,6 +93481,12 @@ + + + + + + @@ -88990,6 +93532,14 @@ + + + + + + + + @@ -89033,6 +93583,13 @@ + + + + + + + @@ -89076,6 +93633,13 @@ + + + + + + + @@ -89113,6 +93677,11 @@ + + + + + @@ -89152,6 +93721,12 @@ + + + + + + @@ -89189,6 +93764,15 @@ + + + + + + + + + @@ -89238,6 +93822,14 @@ + + + + + + + + @@ -89280,6 +93872,14 @@ + + + + + + + + @@ -89322,6 +93922,14 @@ + + + + + + + + @@ -89364,6 +93972,11 @@ + + + + + @@ -89402,6 +94015,11 @@ + + + + + @@ -89442,6 +94060,11 @@ + + + + + @@ -89479,6 +94102,11 @@ + + + + + @@ -89516,6 +94144,14 @@ + + + + + + + + @@ -89554,6 +94190,14 @@ + + + + + + + + @@ -89597,6 +94241,13 @@ + + + + + + + @@ -89641,6 +94292,13 @@ + + + + + + + @@ -89690,6 +94348,20 @@ + + + + + + + + + + + + + + @@ -89742,6 +94414,17 @@ + + + + + + + + + + + @@ -89788,6 +94471,12 @@ + + + + + + @@ -89837,6 +94526,12 @@ + + + + + + @@ -89875,6 +94570,12 @@ + + + + + + @@ -89914,6 +94615,12 @@ + + + + + + @@ -89954,6 +94661,12 @@ + + + + + + @@ -89992,6 +94705,11 @@ + + + + + @@ -90192,6 +94910,13 @@ + + + + + + + @@ -90237,6 +94962,13 @@ + + + + + + + @@ -90282,6 +95014,13 @@ + + + + + + + @@ -90327,6 +95066,13 @@ + + + + + + + @@ -90372,6 +95118,13 @@ + + + + + + + @@ -90417,6 +95170,13 @@ + + + + + + + @@ -90461,6 +95221,15 @@ + + + + + + + + + @@ -90500,6 +95269,11 @@ + + + + + @@ -90544,6 +95318,16 @@ + + + + + + + + + + @@ -90584,6 +95368,12 @@ + + + + + + @@ -90639,6 +95429,13 @@ + + + + + + + @@ -90678,6 +95475,11 @@ + + + + + @@ -90716,6 +95518,15 @@ + + + + + + + + + @@ -90761,6 +95572,15 @@ + + + + + + + + + @@ -90806,6 +95626,17 @@ + + + + + + + + + + + @@ -90894,6 +95725,12 @@ + + + + + + @@ -90950,6 +95787,11 @@ + + + + + @@ -90997,6 +95839,14 @@ + + + + + + + + @@ -91044,6 +95894,14 @@ + + + + + + + + @@ -91092,6 +95950,12 @@ + + + + + + @@ -91137,6 +96001,12 @@ + + + + + + @@ -91224,6 +96094,14 @@ + + + + + + + + @@ -91262,6 +96140,14 @@ + + + + + + + + @@ -91300,6 +96186,11 @@ + + + + + @@ -91342,6 +96233,11 @@ + + + + + @@ -91388,6 +96284,11 @@ + + + + + @@ -91435,6 +96336,11 @@ + + + + + @@ -91480,6 +96386,11 @@ + + + + + @@ -91597,6 +96508,14 @@ + + + + + + + + @@ -91641,6 +96560,14 @@ + + + + + + + + @@ -91686,6 +96613,14 @@ + + + + + + + + @@ -91725,6 +96660,15 @@ + + + + + + + + + @@ -91785,6 +96729,15 @@ + + + + + + + + + @@ -91832,6 +96785,15 @@ + + + + + + + + + @@ -91876,6 +96838,12 @@ + + + + + + @@ -91913,6 +96881,15 @@ + + + + + + + + + @@ -91956,6 +96933,12 @@ + + + + + + @@ -92001,6 +96984,11 @@ + + + + + @@ -92089,6 +97077,21 @@ + + + + + + + + + + + + + + + @@ -92134,6 +97137,11 @@ + + + + + @@ -92184,6 +97192,12 @@ + + + + + + @@ -92221,6 +97235,12 @@ + + + + + + @@ -92258,6 +97278,11 @@ + + + + + @@ -92296,6 +97321,11 @@ + + + + + @@ -92333,6 +97363,11 @@ + + + + + @@ -92425,6 +97460,11 @@ + + + + + @@ -92473,6 +97513,12 @@ + + + + + + @@ -92525,6 +97571,14 @@ + + + + + + + + @@ -92566,6 +97620,14 @@ + + + + + + + + @@ -92608,6 +97670,11 @@ + + + + + @@ -92652,6 +97719,11 @@ + + + + + @@ -92696,6 +97768,12 @@ + + + + + + @@ -92775,6 +97853,12 @@ + + + + + + @@ -92817,6 +97901,15 @@ + + + + + + + + + @@ -92861,6 +97954,15 @@ + + + + + + + + + @@ -92905,6 +98007,15 @@ + + + + + + + + + @@ -92944,6 +98055,11 @@ + + + + + @@ -92998,6 +98114,17 @@ + + + + + + + + + + + @@ -93038,6 +98165,15 @@ + + + + + + + + + @@ -93080,6 +98216,21 @@ + + + + + + + + + + + + + + + @@ -93124,6 +98275,11 @@ + + + + + @@ -93168,6 +98324,11 @@ + + + + + @@ -93212,6 +98373,21 @@ + + + + + + + + + + + + + + + @@ -93256,6 +98432,22 @@ + + + + + + + + + + + + + + + + @@ -93293,6 +98485,11 @@ + + + + + @@ -93337,6 +98534,11 @@ + + + + + @@ -93422,6 +98624,12 @@ + + + + + + @@ -93465,6 +98673,15 @@ + + + + + + + + + @@ -93502,6 +98719,12 @@ + + + + + + @@ -93539,6 +98762,11 @@ + + + + + @@ -93576,6 +98804,11 @@ + + + + + @@ -93613,6 +98846,11 @@ + + + + + @@ -93650,6 +98888,12 @@ + + + + + + @@ -93691,6 +98935,11 @@ + + + + + @@ -93735,6 +98984,11 @@ + + + + + @@ -93776,6 +99030,11 @@ + + + + + @@ -93817,6 +99076,11 @@ + + + + + @@ -93854,6 +99118,11 @@ + + + + + @@ -93891,6 +99160,12 @@ + + + + + + @@ -93928,6 +99203,12 @@ + + + + + + @@ -93966,6 +99247,12 @@ + + + + + + @@ -94003,6 +99290,15 @@ + + + + + + + + + @@ -94049,6 +99345,18 @@ + + + + + + + + + + + + @@ -94091,6 +99399,18 @@ + + + + + + + + + + + + @@ -94133,6 +99453,11 @@ + + + + + @@ -94177,6 +99502,11 @@ + + + + + @@ -94258,6 +99588,11 @@ + + + + + @@ -94296,6 +99631,11 @@ + + + + + @@ -94335,6 +99675,11 @@ + + + + + @@ -94457,6 +99802,15 @@ + + + + + + + + + @@ -94498,6 +99852,11 @@ + + + + + @@ -94537,6 +99896,11 @@ + + + + + @@ -94657,6 +100021,15 @@ + + + + + + + + + @@ -94704,6 +100077,16 @@ + + + + + + + + + + @@ -94748,6 +100131,15 @@ + + + + + + + + + @@ -94791,6 +100183,15 @@ + + + + + + + + + @@ -94835,6 +100236,15 @@ + + + + + + + + + @@ -94879,6 +100289,16 @@ + + + + + + + + + + @@ -94921,6 +100341,18 @@ + + + + + + + + + + + + @@ -94965,6 +100397,12 @@ + + + + + + @@ -95012,6 +100450,12 @@ + + + + + + @@ -95059,6 +100503,14 @@ + + + + + + + + @@ -95104,6 +100556,14 @@ + + + + + + + + @@ -95148,6 +100608,14 @@ + + + + + + + + @@ -95192,6 +100660,15 @@ + + + + + + + + + @@ -95233,6 +100710,15 @@ + + + + + + + + + @@ -95275,6 +100761,15 @@ + + + + + + + + + @@ -95433,6 +100928,12 @@ + + + + + + @@ -95473,6 +100974,12 @@ + + + + + + @@ -95513,6 +101020,12 @@ + + + + + + @@ -95553,6 +101066,14 @@ + + + + + + + + @@ -95595,6 +101116,14 @@ + + + + + + + + @@ -95637,6 +101166,14 @@ + + + + + + + + @@ -95680,6 +101217,14 @@ + + + + + + + + @@ -95725,6 +101270,14 @@ + + + + + + + + @@ -95769,6 +101322,14 @@ + + + + + + + + @@ -95813,6 +101374,14 @@ + + + + + + + + @@ -95855,6 +101424,14 @@ + + + + + + + + @@ -95895,6 +101472,14 @@ + + + + + + + + @@ -95935,6 +101520,14 @@ + + + + + + + + @@ -95977,6 +101570,14 @@ + + + + + + + + @@ -96018,6 +101619,14 @@ + + + + + + + + @@ -96060,6 +101669,14 @@ + + + + + + + + @@ -96101,6 +101718,14 @@ + + + + + + + + @@ -96141,6 +101766,14 @@ + + + + + + + + @@ -96181,6 +101814,14 @@ + + + + + + + + @@ -96219,6 +101860,14 @@ + + + + + + + + @@ -96259,6 +101908,14 @@ + + + + + + + + @@ -96297,6 +101954,14 @@ + + + + + + + + @@ -96336,6 +102001,14 @@ + + + + + + + + @@ -96375,6 +102048,14 @@ + + + + + + + + @@ -96413,6 +102094,14 @@ + + + + + + + + @@ -96455,6 +102144,14 @@ + + + + + + + + @@ -96495,6 +102192,14 @@ + + + + + + + + @@ -96537,6 +102242,14 @@ + + + + + + + + @@ -96577,6 +102290,14 @@ + + + + + + + + @@ -96617,6 +102338,14 @@ + + + + + + + + @@ -96657,6 +102386,14 @@ + + + + + + + + @@ -96698,6 +102435,12 @@ + + + + + + @@ -96740,6 +102483,12 @@ + + + + + + @@ -96782,6 +102531,14 @@ + + + + + + + + @@ -96824,6 +102581,14 @@ + + + + + + + + @@ -96869,6 +102634,14 @@ + + + + + + + + @@ -96915,6 +102688,14 @@ + + + + + + + + @@ -96960,6 +102741,14 @@ + + + + + + + + @@ -97005,6 +102794,14 @@ + + + + + + + + @@ -97050,6 +102847,14 @@ + + + + + + + + @@ -97092,6 +102897,14 @@ + + + + + + + + @@ -97137,6 +102950,14 @@ + + + + + + + + @@ -97183,6 +103004,14 @@ + + + + + + + + @@ -97228,6 +103057,14 @@ + + + + + + + + @@ -97273,6 +103110,14 @@ + + + + + + + + @@ -97318,6 +103163,14 @@ + + + + + + + + @@ -97361,6 +103214,14 @@ + + + + + + + + @@ -97403,6 +103264,14 @@ + + + + + + + + @@ -97445,6 +103314,14 @@ + + + + + + + + @@ -97486,6 +103363,14 @@ + + + + + + + + @@ -97527,6 +103412,14 @@ + + + + + + + + @@ -97569,6 +103462,14 @@ + + + + + + + + @@ -97848,6 +103749,13 @@ + + + + + + + @@ -97889,6 +103797,13 @@ + + + + + + + @@ -97931,6 +103846,13 @@ + + + + + + + @@ -97972,6 +103894,13 @@ + + + + + + + @@ -98015,6 +103944,15 @@ + + + + + + + + + @@ -98057,6 +103995,15 @@ + + + + + + + + + @@ -98098,6 +104045,15 @@ + + + + + + + + + @@ -98137,6 +104093,15 @@ + + + + + + + + + @@ -98176,6 +104141,15 @@ + + + + + + + + + @@ -98216,6 +104190,15 @@ + + + + + + + + + @@ -98258,6 +104241,15 @@ + + + + + + + + + @@ -98298,6 +104290,15 @@ + + + + + + + + + @@ -98337,6 +104338,15 @@ + + + + + + + + + @@ -98376,6 +104386,15 @@ + + + + + + + + + @@ -98415,6 +104434,15 @@ + + + + + + + + + @@ -98454,6 +104482,15 @@ + + + + + + + + + @@ -99927,6 +105964,17 @@ + + + + + + + + + + + @@ -99968,6 +106016,17 @@ + + + + + + + + + + + @@ -100008,6 +106067,17 @@ + + + + + + + + + + + @@ -100048,6 +106118,17 @@ + + + + + + + + + + + @@ -100088,6 +106169,17 @@ + + + + + + + + + + + @@ -100128,6 +106220,17 @@ + + + + + + + + + + + @@ -100168,6 +106271,17 @@ + + + + + + + + + + + @@ -100207,6 +106321,17 @@ + + + + + + + + + + + @@ -100246,6 +106371,17 @@ + + + + + + + + + + + @@ -100285,6 +106421,17 @@ + + + + + + + + + + + @@ -100324,6 +106471,17 @@ + + + + + + + + + + + @@ -100363,6 +106521,17 @@ + + + + + + + + + + + @@ -100403,6 +106572,12 @@ + + + + + + @@ -100441,6 +106616,12 @@ + + + + + + @@ -100479,6 +106660,12 @@ + + + + + + @@ -100519,6 +106706,12 @@ + + + + + + @@ -100557,6 +106750,12 @@ + + + + + + @@ -100595,6 +106794,12 @@ + + + + + + @@ -100707,6 +106912,11 @@ + + + + + @@ -100747,6 +106957,11 @@ + + + + + @@ -100787,6 +107002,17 @@ + + + + + + + + + + + @@ -100829,6 +107055,13 @@ + + + + + + + @@ -100874,6 +107107,13 @@ + + + + + + + @@ -100919,6 +107159,13 @@ + + + + + + + @@ -100961,6 +107208,13 @@ + + + + + + + @@ -101003,6 +107257,13 @@ + + + + + + + @@ -101048,6 +107309,13 @@ + + + + + + + @@ -101093,6 +107361,13 @@ + + + + + + + @@ -101135,6 +107410,13 @@ + + + + + + + @@ -101177,6 +107459,13 @@ + + + + + + + @@ -101219,6 +107508,13 @@ + + + + + + + @@ -101261,6 +107557,13 @@ + + + + + + + @@ -101303,6 +107606,13 @@ + + + + + + + @@ -101345,6 +107655,13 @@ + + + + + + + @@ -101387,6 +107704,13 @@ + + + + + + + @@ -101429,6 +107753,13 @@ + + + + + + + @@ -101471,6 +107802,13 @@ + + + + + + + @@ -101512,6 +107850,11 @@ + + + + + @@ -101552,6 +107895,11 @@ + + + + + @@ -101592,6 +107940,11 @@ + + + + + @@ -101632,6 +107985,11 @@ + + + + + @@ -101672,6 +108030,11 @@ + + + + + @@ -101712,6 +108075,11 @@ + + + + + @@ -101752,6 +108120,11 @@ + + + + + @@ -101792,6 +108165,11 @@ + + + + + @@ -101832,6 +108210,13 @@ + + + + + + + @@ -101872,6 +108257,13 @@ + + + + + + + @@ -101915,6 +108307,13 @@ + + + + + + + @@ -101955,6 +108354,13 @@ + + + + + + + @@ -101998,6 +108404,13 @@ + + + + + + + @@ -102038,6 +108451,13 @@ + + + + + + + @@ -102081,6 +108501,13 @@ + + + + + + + @@ -102121,6 +108548,13 @@ + + + + + + + @@ -102164,6 +108598,14 @@ + + + + + + + + @@ -102208,6 +108650,14 @@ + + + + + + + + @@ -102252,6 +108702,14 @@ + + + + + + + + @@ -102296,6 +108754,14 @@ + + + + + + + + @@ -102341,6 +108807,13 @@ + + + + + + + @@ -102382,6 +108855,13 @@ + + + + + + + @@ -102423,6 +108903,13 @@ + + + + + + + @@ -102464,6 +108951,13 @@ + + + + + + + @@ -102505,6 +108999,13 @@ + + + + + + + @@ -102546,6 +109047,13 @@ + + + + + + + @@ -102587,6 +109095,13 @@ + + + + + + + @@ -102628,6 +109143,13 @@ + + + + + + + @@ -102669,6 +109191,13 @@ + + + + + + + @@ -102711,6 +109240,13 @@ + + + + + + + @@ -102753,6 +109289,13 @@ + + + + + + + @@ -102795,6 +109338,13 @@ + + + + + + + @@ -102837,6 +109387,13 @@ + + + + + + + @@ -102879,6 +109436,13 @@ + + + + + + + @@ -102921,6 +109485,13 @@ + + + + + + + @@ -102963,6 +109534,13 @@ + + + + + + + @@ -103340,6 +109918,12 @@ + + + + + + @@ -103385,6 +109969,12 @@ + + + + + + @@ -103430,6 +110020,12 @@ + + + + + + @@ -103475,6 +110071,12 @@ + + + + + + @@ -103520,6 +110122,12 @@ + + + + + + @@ -103565,6 +110173,12 @@ + + + + + + @@ -103610,6 +110224,12 @@ + + + + + + @@ -103655,6 +110275,12 @@ + + + + + + @@ -103700,6 +110326,12 @@ + + + + + + @@ -103745,6 +110377,12 @@ + + + + + + @@ -103790,6 +110428,12 @@ + + + + + + @@ -103835,6 +110479,12 @@ + + + + + + @@ -103880,6 +110530,12 @@ + + + + + + @@ -103925,6 +110581,12 @@ + + + + + + @@ -103970,6 +110632,12 @@ + + + + + + @@ -104015,6 +110683,12 @@ + + + + + + @@ -104060,6 +110734,12 @@ + + + + + + @@ -104105,6 +110785,12 @@ + + + + + + @@ -104150,6 +110836,12 @@ + + + + + + @@ -104195,6 +110887,12 @@ + + + + + + @@ -104240,6 +110938,12 @@ + + + + + + @@ -104285,6 +110989,12 @@ + + + + + + @@ -104330,6 +111040,12 @@ + + + + + + @@ -104375,6 +111091,12 @@ + + + + + + @@ -104420,6 +111142,12 @@ + + + + + + @@ -104465,6 +111193,12 @@ + + + + + + @@ -104510,6 +111244,12 @@ + + + + + + @@ -104555,6 +111295,12 @@ + + + + + + @@ -104600,6 +111346,12 @@ + + + + + + @@ -104645,6 +111397,12 @@ + + + + + + @@ -104690,6 +111448,12 @@ + + + + + + @@ -104735,6 +111499,12 @@ + + + + + + @@ -104780,6 +111550,11 @@ + + + + + @@ -104820,6 +111595,11 @@ + + + + + @@ -104860,6 +111640,11 @@ + + + + + @@ -104900,6 +111685,11 @@ + + + + + @@ -104940,6 +111730,11 @@ + + + + + @@ -104980,6 +111775,11 @@ + + + + + @@ -105020,6 +111820,11 @@ + + + + + @@ -105060,6 +111865,11 @@ + + + + + @@ -105100,6 +111910,11 @@ + + + + + @@ -105140,6 +111955,11 @@ + + + + + @@ -105180,6 +112000,11 @@ + + + + + @@ -105220,6 +112045,11 @@ + + + + + @@ -105260,6 +112090,11 @@ + + + + + @@ -105300,6 +112135,11 @@ + + + + + @@ -105340,6 +112180,11 @@ + + + + + @@ -105380,6 +112225,11 @@ + + + + + @@ -105420,6 +112270,11 @@ + + + + + @@ -105460,6 +112315,11 @@ + + + + + @@ -105500,6 +112360,11 @@ + + + + + @@ -105540,6 +112405,11 @@ + + + + + @@ -105580,6 +112450,11 @@ + + + + + @@ -105620,6 +112495,11 @@ + + + + + @@ -105660,6 +112540,11 @@ + + + + + @@ -105700,6 +112585,11 @@ + + + + + @@ -105740,6 +112630,11 @@ + + + + + @@ -105780,6 +112675,11 @@ + + + + + @@ -105820,6 +112720,11 @@ + + + + + @@ -105860,6 +112765,11 @@ + + + + + @@ -105900,6 +112810,11 @@ + + + + + @@ -105940,6 +112855,11 @@ + + + + + @@ -105980,6 +112900,11 @@ + + + + + @@ -106020,6 +112945,11 @@ + + + + + @@ -106060,6 +112990,13 @@ + + + + + + + @@ -106100,6 +113037,13 @@ + + + + + + + @@ -106140,6 +113084,13 @@ + + + + + + + @@ -106180,6 +113131,13 @@ + + + + + + + @@ -106220,6 +113178,13 @@ + + + + + + + @@ -106260,6 +113225,13 @@ + + + + + + + @@ -106300,6 +113272,13 @@ + + + + + + + @@ -106340,6 +113319,13 @@ + + + + + + + @@ -106380,6 +113366,13 @@ + + + + + + + @@ -106420,6 +113413,13 @@ + + + + + + + @@ -106460,6 +113460,13 @@ + + + + + + + @@ -106500,6 +113507,13 @@ + + + + + + + @@ -106540,6 +113554,13 @@ + + + + + + + @@ -106580,6 +113601,13 @@ + + + + + + + @@ -106621,6 +113649,13 @@ + + + + + + + @@ -106662,6 +113697,13 @@ + + + + + + + @@ -106703,6 +113745,13 @@ + + + + + + + @@ -106744,6 +113793,13 @@ + + + + + + + @@ -106785,6 +113841,13 @@ + + + + + + + @@ -106826,6 +113889,13 @@ + + + + + + + @@ -106867,6 +113937,13 @@ + + + + + + + @@ -106908,6 +113985,13 @@ + + + + + + + @@ -106949,6 +114033,13 @@ + + + + + + + @@ -106990,6 +114081,13 @@ + + + + + + + @@ -107031,6 +114129,13 @@ + + + + + + + @@ -107072,6 +114177,13 @@ + + + + + + + @@ -107113,6 +114225,13 @@ + + + + + + + @@ -107154,6 +114273,13 @@ + + + + + + + @@ -107195,6 +114321,13 @@ + + + + + + + @@ -107236,6 +114369,13 @@ + + + + + + + @@ -107355,6 +114495,12 @@ + + + + + + @@ -107394,6 +114540,12 @@ + + + + + + @@ -107433,6 +114585,12 @@ + + + + + + @@ -107472,6 +114630,12 @@ + + + + + + @@ -107511,6 +114675,12 @@ + + + + + + @@ -107550,6 +114720,12 @@ + + + + + + @@ -107589,6 +114765,12 @@ + + + + + + @@ -107628,6 +114810,12 @@ + + + + + + @@ -107667,6 +114855,12 @@ + + + + + + @@ -107706,6 +114900,12 @@ + + + + + + @@ -107745,6 +114945,12 @@ + + + + + + @@ -107784,6 +114990,12 @@ + + + + + + @@ -107823,6 +115035,12 @@ + + + + + + @@ -107862,6 +115080,12 @@ + + + + + + @@ -107901,6 +115125,12 @@ + + + + + + @@ -107940,6 +115170,12 @@ + + + + + + @@ -107979,6 +115215,12 @@ + + + + + + @@ -108018,6 +115260,12 @@ + + + + + + @@ -108057,6 +115305,12 @@ + + + + + + @@ -108096,6 +115350,12 @@ + + + + + + @@ -108135,6 +115395,12 @@ + + + + + + @@ -108174,6 +115440,12 @@ + + + + + + @@ -108213,6 +115485,12 @@ + + + + + + @@ -108252,6 +115530,12 @@ + + + + + + @@ -108290,6 +115574,12 @@ + + + + + + @@ -108334,6 +115624,12 @@ + + + + + + @@ -108378,6 +115674,12 @@ + + + + + + @@ -108422,6 +115724,12 @@ + + + + + + @@ -108466,6 +115774,12 @@ + + + + + + @@ -108510,6 +115824,12 @@ + + + + + + @@ -108554,6 +115874,12 @@ + + + + + + @@ -108598,6 +115924,12 @@ + + + + + + @@ -108642,6 +115974,12 @@ + + + + + + @@ -108683,6 +116021,12 @@ + + + + + + @@ -108724,6 +116068,12 @@ + + + + + + @@ -108765,6 +116115,12 @@ + + + + + + @@ -108806,6 +116162,12 @@ + + + + + + @@ -108847,6 +116209,12 @@ + + + + + + @@ -108888,6 +116256,12 @@ + + + + + + @@ -108929,6 +116303,12 @@ + + + + + + @@ -108970,6 +116350,12 @@ + + + + + + @@ -109011,6 +116397,12 @@ + + + + + + @@ -109052,6 +116444,12 @@ + + + + + + @@ -109093,6 +116491,12 @@ + + + + + + @@ -109134,6 +116538,12 @@ + + + + + + @@ -109175,6 +116585,12 @@ + + + + + + @@ -109216,6 +116632,12 @@ + + + + + + @@ -109257,6 +116679,12 @@ + + + + + + @@ -109299,6 +116727,12 @@ + + + + + + @@ -109340,6 +116774,12 @@ + + + + + + @@ -109381,6 +116821,12 @@ + + + + + + @@ -109422,6 +116868,12 @@ + + + + + + @@ -109463,6 +116915,12 @@ + + + + + + @@ -109504,6 +116962,12 @@ + + + + + + @@ -109545,6 +117009,12 @@ + + + + + + @@ -109586,6 +117056,12 @@ + + + + + + @@ -109626,6 +117102,13 @@ + + + + + + + @@ -109667,6 +117150,13 @@ + + + + + + + @@ -109708,6 +117198,13 @@ + + + + + + + @@ -109749,6 +117246,13 @@ + + + + + + + @@ -109790,6 +117294,13 @@ + + + + + + + @@ -109831,6 +117342,13 @@ + + + + + + + @@ -109872,6 +117390,13 @@ + + + + + + + @@ -109913,6 +117438,13 @@ + + + + + + + @@ -109954,6 +117486,13 @@ + + + + + + + @@ -109998,6 +117537,13 @@ + + + + + + + @@ -110042,6 +117588,13 @@ + + + + + + + @@ -110086,6 +117639,13 @@ + + + + + + + @@ -110130,6 +117690,13 @@ + + + + + + + @@ -110174,6 +117741,13 @@ + + + + + + + @@ -110218,6 +117792,13 @@ + + + + + + + @@ -110262,6 +117843,13 @@ + + + + + + + @@ -110307,6 +117895,11 @@ + + + + + @@ -110347,6 +117940,11 @@ + + + + + @@ -110387,6 +117985,11 @@ + + + + + @@ -110427,6 +118030,11 @@ + + + + + @@ -110467,6 +118075,11 @@ + + + + + @@ -110507,6 +118120,11 @@ + + + + + @@ -110547,6 +118165,11 @@ + + + + + @@ -110588,6 +118211,11 @@ + + + + + @@ -110629,6 +118257,11 @@ + + + + + @@ -110670,6 +118303,11 @@ + + + + + @@ -110711,6 +118349,11 @@ + + + + + @@ -110752,6 +118395,11 @@ + + + + + @@ -110793,6 +118441,11 @@ + + + + + @@ -110834,6 +118487,11 @@ + + + + + @@ -110875,6 +118533,11 @@ + + + + + @@ -110916,6 +118579,11 @@ + + + + + @@ -110957,6 +118625,11 @@ + + + + + @@ -110998,6 +118671,11 @@ + + + + + @@ -111039,6 +118717,11 @@ + + + + + @@ -111080,6 +118763,11 @@ + + + + + @@ -111121,6 +118809,11 @@ + + + + + @@ -111162,6 +118855,11 @@ + + + + + @@ -111203,6 +118901,11 @@ + + + + + @@ -111244,6 +118947,11 @@ + + + + + @@ -111285,6 +118993,11 @@ + + + + + @@ -111326,6 +119039,11 @@ + + + + + @@ -111367,6 +119085,11 @@ + + + + + @@ -111408,6 +119131,11 @@ + + + + + @@ -111449,6 +119177,11 @@ + + + + + @@ -111490,6 +119223,11 @@ + + + + + @@ -111531,6 +119269,11 @@ + + + + + @@ -111572,6 +119315,11 @@ + + + + + @@ -111613,6 +119361,11 @@ + + + + + @@ -111654,6 +119407,11 @@ + + + + + @@ -111695,6 +119453,11 @@ + + + + + @@ -111736,6 +119499,11 @@ + + + + + @@ -111777,6 +119545,11 @@ + + + + + @@ -111818,6 +119591,11 @@ + + + + + @@ -111859,6 +119637,11 @@ + + + + + @@ -111900,6 +119683,11 @@ + + + + + @@ -111941,6 +119729,11 @@ + + + + + @@ -111982,6 +119775,11 @@ + + + + + @@ -112023,6 +119821,11 @@ + + + + + @@ -112064,6 +119867,11 @@ + + + + + @@ -112105,6 +119913,11 @@ + + + + + @@ -112146,6 +119959,11 @@ + + + + + @@ -112187,6 +120005,11 @@ + + + + + @@ -112228,6 +120051,11 @@ + + + + + @@ -112268,6 +120096,11 @@ + + + + + @@ -112308,6 +120141,11 @@ + + + + + @@ -112348,6 +120186,11 @@ + + + + + @@ -112388,6 +120231,11 @@ + + + + + @@ -112428,6 +120276,11 @@ + + + + + @@ -112468,6 +120321,11 @@ + + + + + @@ -112508,6 +120366,11 @@ + + + + + @@ -112548,6 +120411,11 @@ + + + + + @@ -112588,6 +120456,11 @@ + + + + + @@ -112628,6 +120501,11 @@ + + + + + @@ -112668,6 +120546,11 @@ + + + + + @@ -112708,6 +120591,11 @@ + + + + + @@ -112748,6 +120636,11 @@ + + + + + @@ -112788,6 +120681,11 @@ + + + + + @@ -112828,6 +120726,11 @@ + + + + + @@ -112868,6 +120771,11 @@ + + + + + @@ -112908,6 +120816,11 @@ + + + + + @@ -112948,6 +120861,11 @@ + + + + + @@ -112988,6 +120906,11 @@ + + + + + @@ -113028,6 +120951,11 @@ + + + + + @@ -113068,6 +120996,11 @@ + + + + + @@ -113108,6 +121041,11 @@ + + + + + @@ -113148,6 +121086,11 @@ + + + + + @@ -113188,6 +121131,11 @@ + + + + + @@ -113228,6 +121176,11 @@ + + + + + @@ -113268,6 +121221,11 @@ + + + + + @@ -113308,6 +121266,11 @@ + + + + + @@ -113348,6 +121311,11 @@ + + + + + @@ -113388,6 +121356,11 @@ + + + + + @@ -113428,6 +121401,11 @@ + + + + + @@ -113468,6 +121446,11 @@ + + + + + @@ -113508,6 +121491,11 @@ + + + + + @@ -113548,6 +121536,11 @@ + + + + + @@ -113588,6 +121581,11 @@ + + + + + @@ -113628,6 +121626,11 @@ + + + + + @@ -113668,6 +121671,11 @@ + + + + + @@ -113708,6 +121716,11 @@ + + + + + @@ -113747,6 +121760,11 @@ + + + + + @@ -113786,6 +121804,11 @@ + + + + + @@ -113825,6 +121848,11 @@ + + + + + @@ -113864,6 +121892,11 @@ + + + + + @@ -113903,6 +121936,11 @@ + + + + + @@ -113942,6 +121980,11 @@ + + + + + @@ -113981,6 +122024,11 @@ + + + + + @@ -114020,6 +122068,11 @@ + + + + + @@ -114059,6 +122112,11 @@ + + + + + @@ -114098,6 +122156,11 @@ + + + + + @@ -114137,6 +122200,11 @@ + + + + + @@ -114176,6 +122244,11 @@ + + + + + @@ -114215,6 +122288,11 @@ + + + + + @@ -114254,6 +122332,11 @@ + + + + + @@ -114293,6 +122376,11 @@ + + + + + @@ -114332,6 +122420,11 @@ + + + + + @@ -114371,6 +122464,11 @@ + + + + + @@ -114410,6 +122508,11 @@ + + + + + @@ -114449,6 +122552,11 @@ + + + + + @@ -114488,6 +122596,11 @@ + + + + + @@ -114527,6 +122640,11 @@ + + + + + @@ -114566,6 +122684,11 @@ + + + + + @@ -114605,6 +122728,11 @@ + + + + + @@ -114644,6 +122772,11 @@ + + + + + @@ -114683,6 +122816,11 @@ + + + + + @@ -114722,6 +122860,11 @@ + + + + + @@ -114761,6 +122904,11 @@ + + + + + @@ -114800,6 +122948,11 @@ + + + + + @@ -114839,6 +122992,11 @@ + + + + + @@ -114878,6 +123036,11 @@ + + + + + @@ -114917,6 +123080,11 @@ + + + + + @@ -114956,6 +123124,11 @@ + + + + + @@ -114995,6 +123168,11 @@ + + + + + @@ -115034,6 +123212,11 @@ + + + + + @@ -115073,6 +123256,11 @@ + + + + + @@ -115112,6 +123300,11 @@ + + + + + @@ -115151,6 +123344,11 @@ + + + + + @@ -115190,6 +123388,11 @@ + + + + + @@ -115229,6 +123432,11 @@ + + + + + @@ -115268,6 +123476,11 @@ + + + + + @@ -115307,6 +123520,11 @@ + + + + + @@ -115346,6 +123564,11 @@ + + + + + @@ -115385,6 +123608,11 @@ + + + + + @@ -115424,6 +123652,11 @@ + + + + + @@ -115463,6 +123696,11 @@ + + + + + @@ -115502,6 +123740,11 @@ + + + + + @@ -115541,6 +123784,11 @@ + + + + + @@ -115580,6 +123828,11 @@ + + + + + @@ -115619,6 +123872,11 @@ + + + + + @@ -115658,6 +123916,11 @@ + + + + + @@ -115697,6 +123960,11 @@ + + + + + @@ -115736,6 +124004,11 @@ + + + + + @@ -115775,6 +124048,11 @@ + + + + + @@ -115814,6 +124092,11 @@ + + + + + @@ -115853,6 +124136,11 @@ + + + + + @@ -115892,6 +124180,11 @@ + + + + + @@ -115931,6 +124224,11 @@ + + + + + @@ -115970,6 +124268,11 @@ + + + + + @@ -116009,6 +124312,11 @@ + + + + + @@ -116048,6 +124356,11 @@ + + + + + @@ -116087,6 +124400,11 @@ + + + + + @@ -116126,6 +124444,11 @@ + + + + + @@ -116165,6 +124488,11 @@ + + + + + @@ -116204,6 +124532,11 @@ + + + + + @@ -116243,6 +124576,11 @@ + + + + + @@ -116282,6 +124620,11 @@ + + + + + @@ -116321,6 +124664,11 @@ + + + + + @@ -116360,6 +124708,11 @@ + + + + + @@ -116399,6 +124752,11 @@ + + + + + @@ -116438,6 +124796,11 @@ + + + + + @@ -116477,6 +124840,11 @@ + + + + + @@ -116516,6 +124884,11 @@ + + + + + @@ -116555,6 +124928,11 @@ + + + + + @@ -116594,6 +124972,11 @@ + + + + + @@ -116633,6 +125016,11 @@ + + + + + @@ -116672,6 +125060,11 @@ + + + + + @@ -116711,6 +125104,11 @@ + + + + + @@ -116750,6 +125148,11 @@ + + + + + @@ -116789,6 +125192,11 @@ + + + + + @@ -116828,6 +125236,11 @@ + + + + + @@ -116867,6 +125280,11 @@ + + + + + @@ -116906,6 +125324,11 @@ + + + + + @@ -116945,6 +125368,11 @@ + + + + + @@ -116984,6 +125412,11 @@ + + + + + @@ -117023,6 +125456,11 @@ + + + + + @@ -117062,6 +125500,11 @@ + + + + + @@ -117101,6 +125544,11 @@ + + + + + @@ -117140,6 +125588,11 @@ + + + + + @@ -117179,6 +125632,11 @@ + + + + + @@ -117218,6 +125676,11 @@ + + + + + @@ -117257,6 +125720,11 @@ + + + + + @@ -117296,6 +125764,11 @@ + + + + + @@ -117335,6 +125808,11 @@ + + + + + @@ -117374,6 +125852,11 @@ + + + + + @@ -117413,6 +125896,11 @@ + + + + + @@ -117452,6 +125940,11 @@ + + + + + @@ -117491,6 +125984,11 @@ + + + + + @@ -117530,6 +126028,11 @@ + + + + + @@ -117569,6 +126072,11 @@ + + + + + @@ -117608,6 +126116,11 @@ + + + + + @@ -117647,6 +126160,11 @@ + + + + + @@ -117686,6 +126204,11 @@ + + + + + @@ -117725,6 +126248,11 @@ + + + + + @@ -117764,6 +126292,11 @@ + + + + + @@ -117803,6 +126336,11 @@ + + + + + @@ -117842,6 +126380,11 @@ + + + + + @@ -117881,6 +126424,11 @@ + + + + + @@ -117920,6 +126468,11 @@ + + + + + @@ -117959,6 +126512,11 @@ + + + + + @@ -117998,6 +126556,11 @@ + + + + + @@ -118037,6 +126600,11 @@ + + + + + @@ -118076,6 +126644,11 @@ + + + + + @@ -118115,6 +126688,11 @@ + + + + + @@ -118154,6 +126732,11 @@ + + + + + @@ -118193,6 +126776,11 @@ + + + + + @@ -118232,6 +126820,11 @@ + + + + + @@ -118271,6 +126864,11 @@ + + + + + @@ -118310,6 +126908,11 @@ + + + + + @@ -118349,6 +126952,11 @@ + + + + + @@ -118388,6 +126996,11 @@ + + + + + @@ -118427,6 +127040,11 @@ + + + + + @@ -118466,6 +127084,11 @@ + + + + + @@ -118505,6 +127128,11 @@ + + + + + @@ -118544,6 +127172,11 @@ + + + + + @@ -118583,6 +127216,11 @@ + + + + + @@ -118622,6 +127260,11 @@ + + + + + @@ -118661,6 +127304,11 @@ + + + + + @@ -118700,6 +127348,11 @@ + + + + + @@ -118739,6 +127392,11 @@ + + + + + @@ -118778,6 +127436,11 @@ + + + + + @@ -118817,6 +127480,11 @@ + + + + + @@ -118856,6 +127524,11 @@ + + + + + @@ -118895,6 +127568,11 @@ + + + + + @@ -118934,6 +127612,11 @@ + + + + + @@ -118973,6 +127656,11 @@ + + + + + @@ -119012,6 +127700,11 @@ + + + + + @@ -119051,6 +127744,11 @@ + + + + + @@ -119090,6 +127788,11 @@ + + + + + @@ -119129,6 +127832,11 @@ + + + + + @@ -119168,6 +127876,11 @@ + + + + + @@ -119207,6 +127920,11 @@ + + + + + @@ -119246,6 +127964,11 @@ + + + + + @@ -119285,6 +128008,11 @@ + + + + + @@ -119324,6 +128052,11 @@ + + + + + @@ -119363,6 +128096,11 @@ + + + + + @@ -119402,6 +128140,11 @@ + + + + + @@ -119441,6 +128184,11 @@ + + + + + @@ -119480,6 +128228,11 @@ + + + + + @@ -119519,6 +128272,11 @@ + + + + + @@ -119558,6 +128316,11 @@ + + + + + @@ -119597,6 +128360,11 @@ + + + + + @@ -119636,6 +128404,11 @@ + + + + + @@ -119675,6 +128448,11 @@ + + + + + @@ -119714,6 +128492,11 @@ + + + + + @@ -119753,6 +128536,11 @@ + + + + + @@ -119792,6 +128580,11 @@ + + + + + @@ -119831,6 +128624,11 @@ + + + + + @@ -119870,6 +128668,11 @@ + + + + + @@ -119909,6 +128712,11 @@ + + + + + @@ -119948,6 +128756,11 @@ + + + + + @@ -119987,6 +128800,11 @@ + + + + + @@ -120026,6 +128844,11 @@ + + + + + @@ -120065,6 +128888,11 @@ + + + + + @@ -120104,6 +128932,11 @@ + + + + + @@ -120143,6 +128976,11 @@ + + + + + @@ -120182,6 +129020,11 @@ + + + + + @@ -120221,6 +129064,11 @@ + + + + + @@ -120260,6 +129108,11 @@ + + + + + @@ -120299,6 +129152,11 @@ + + + + + @@ -120338,6 +129196,11 @@ + + + + + @@ -120377,6 +129240,11 @@ + + + + + @@ -120416,6 +129284,11 @@ + + + + + @@ -120455,6 +129328,11 @@ + + + + + @@ -120494,6 +129372,11 @@ + + + + + @@ -120533,6 +129416,11 @@ + + + + + @@ -120572,6 +129460,11 @@ + + + + + @@ -120611,6 +129504,11 @@ + + + + + @@ -120650,6 +129548,11 @@ + + + + + @@ -120689,6 +129592,11 @@ + + + + + @@ -120728,6 +129636,11 @@ + + + + + @@ -120767,6 +129680,11 @@ + + + + + @@ -120806,6 +129724,11 @@ + + + + + @@ -120845,6 +129768,11 @@ + + + + + @@ -120884,6 +129812,11 @@ + + + + + @@ -120923,6 +129856,11 @@ + + + + + @@ -120962,6 +129900,11 @@ + + + + + @@ -121001,6 +129944,11 @@ + + + + + @@ -121040,6 +129988,11 @@ + + + + + @@ -121079,6 +130032,11 @@ + + + + + @@ -121118,6 +130076,11 @@ + + + + + @@ -121157,6 +130120,11 @@ + + + + + @@ -121197,6 +130165,13 @@ + + + + + + + @@ -121241,6 +130216,13 @@ + + + + + + + @@ -121285,6 +130267,13 @@ + + + + + + + @@ -121329,6 +130318,13 @@ + + + + + + + @@ -121373,6 +130369,13 @@ + + + + + + + @@ -121417,6 +130420,13 @@ + + + + + + + @@ -121461,6 +130471,13 @@ + + + + + + + @@ -121505,6 +130522,13 @@ + + + + + + + @@ -121549,6 +130573,12 @@ + + + + + + @@ -121590,6 +130620,12 @@ + + + + + + @@ -121631,6 +130667,12 @@ + + + + + + @@ -121672,6 +130714,12 @@ + + + + + + @@ -121713,6 +130761,12 @@ + + + + + + @@ -121754,6 +130808,12 @@ + + + + + + @@ -121795,6 +130855,12 @@ + + + + + + @@ -121836,6 +130902,12 @@ + + + + + + @@ -121877,6 +130949,12 @@ + + + + + + @@ -121921,6 +130999,12 @@ + + + + + + @@ -121965,6 +131049,12 @@ + + + + + + @@ -122009,6 +131099,12 @@ + + + + + + @@ -122053,6 +131149,12 @@ + + + + + + @@ -122097,6 +131199,12 @@ + + + + + + @@ -122141,6 +131249,12 @@ + + + + + + @@ -122185,6 +131299,12 @@ + + + + + + @@ -122229,6 +131349,12 @@ + + + + + + @@ -122270,6 +131396,12 @@ + + + + + + @@ -122311,6 +131443,12 @@ + + + + + + @@ -122352,6 +131490,12 @@ + + + + + + @@ -122393,6 +131537,12 @@ + + + + + + @@ -122434,6 +131584,12 @@ + + + + + + @@ -122475,6 +131631,12 @@ + + + + + + @@ -122516,6 +131678,12 @@ + + + + + + @@ -122557,6 +131725,15 @@ + + + + + + + + + @@ -122602,6 +131779,15 @@ + + + + + + + + + @@ -122647,6 +131833,15 @@ + + + + + + + + + @@ -122692,6 +131887,15 @@ + + + + + + + + + @@ -122737,6 +131941,15 @@ + + + + + + + + + @@ -122782,6 +131995,15 @@ + + + + + + + + + @@ -122827,6 +132049,15 @@ + + + + + + + + + @@ -122872,6 +132103,15 @@ + + + + + + + + + @@ -122917,6 +132157,15 @@ + + + + + + + + + @@ -122958,6 +132207,15 @@ + + + + + + + + + @@ -122999,6 +132257,15 @@ + + + + + + + + + @@ -123040,6 +132307,15 @@ + + + + + + + + + @@ -123081,6 +132357,15 @@ + + + + + + + + + @@ -123122,6 +132407,15 @@ + + + + + + + + + @@ -123163,6 +132457,15 @@ + + + + + + + + + @@ -123204,6 +132507,15 @@ + + + + + + + + + @@ -123245,6 +132557,15 @@ + + + + + + + + + @@ -123286,47 +132607,65 @@ - - - - - - - - - - - + - + + + + + - - - - - - - - - - - - - - - - - - - - -

Confidence Level: 3

-

NOTES: model.S(600,1554) curated (PR #222)

- -
- - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +

Confidence Level: 3

+

NOTES: model.S(600,1554) curated (PR #222)

+ +
+ + + + + + + + + + + + @@ -123368,6 +132707,15 @@ + + + + + + + + + @@ -123409,6 +132757,15 @@ + + + + + + + + + @@ -123450,6 +132807,15 @@ + + + + + + + + + @@ -123491,6 +132857,15 @@ + + + + + + + + + @@ -123532,6 +132907,15 @@ + + + + + + + + + @@ -123573,6 +132957,13 @@ + + + + + + + @@ -123614,6 +133005,13 @@ + + + + + + + @@ -123655,6 +133053,13 @@ + + + + + + + @@ -123696,6 +133101,13 @@ + + + + + + + @@ -123737,6 +133149,13 @@ + + + + + + + @@ -123778,6 +133197,13 @@ + + + + + + + @@ -123819,6 +133245,13 @@ + + + + + + + @@ -123860,6 +133293,13 @@ + + + + + + + @@ -123900,6 +133340,11 @@ + + + + + @@ -123939,6 +133384,11 @@ + + + + + @@ -123978,6 +133428,11 @@ + + + + + @@ -124017,6 +133472,11 @@ + + + + + @@ -124056,6 +133516,11 @@ + + + + + @@ -124095,6 +133560,11 @@ + + + + + @@ -124134,6 +133604,11 @@ + + + + + @@ -124173,6 +133648,11 @@ + + + + + @@ -124212,6 +133692,11 @@ + + + + + @@ -124251,6 +133736,11 @@ + + + + + @@ -124290,6 +133780,11 @@ + + + + + @@ -124329,6 +133824,11 @@ + + + + + @@ -124368,6 +133868,11 @@ + + + + + @@ -124407,6 +133912,11 @@ + + + + + @@ -124446,6 +133956,11 @@ + + + + + @@ -124485,6 +134000,11 @@ + + + + + @@ -124524,6 +134044,11 @@ + + + + + @@ -124563,6 +134088,11 @@ + + + + + @@ -124602,6 +134132,11 @@ + + + + + @@ -124641,6 +134176,11 @@ + + + + + @@ -124680,6 +134220,11 @@ + + + + + @@ -124719,6 +134264,11 @@ + + + + + @@ -124758,6 +134308,11 @@ + + + + + @@ -124797,6 +134352,11 @@ + + + + + @@ -124836,6 +134396,11 @@ + + + + + @@ -124875,6 +134440,11 @@ + + + + + @@ -124914,6 +134484,11 @@ + + + + + @@ -124953,6 +134528,11 @@ + + + + + @@ -124992,6 +134572,11 @@ + + + + + @@ -125031,6 +134616,11 @@ + + + + + @@ -125070,6 +134660,11 @@ + + + + + @@ -125109,6 +134704,11 @@ + + + + + @@ -125148,6 +134748,11 @@ + + + + + @@ -125187,6 +134792,11 @@ + + + + + @@ -125226,6 +134836,11 @@ + + + + + @@ -125265,6 +134880,11 @@ + + + + + @@ -125304,6 +134924,11 @@ + + + + + @@ -125343,6 +134968,11 @@ + + + + + @@ -125382,6 +135012,11 @@ + + + + + @@ -125421,6 +135056,11 @@ + + + + + @@ -125460,6 +135100,11 @@ + + + + + @@ -125499,6 +135144,11 @@ + + + + + @@ -125538,6 +135188,11 @@ + + + + + @@ -125577,6 +135232,11 @@ + + + + + @@ -125616,6 +135276,11 @@ + + + + + @@ -125655,6 +135320,11 @@ + + + + + @@ -125694,6 +135364,11 @@ + + + + + @@ -125733,6 +135408,11 @@ + + + + + @@ -125772,6 +135452,11 @@ + + + + + @@ -125811,6 +135496,11 @@ + + + + + @@ -125850,6 +135540,11 @@ + + + + + @@ -125889,6 +135584,11 @@ + + + + + @@ -125928,6 +135628,11 @@ + + + + + @@ -125967,6 +135672,11 @@ + + + + + @@ -126006,6 +135716,11 @@ + + + + + @@ -126045,6 +135760,11 @@ + + + + + @@ -126084,6 +135804,11 @@ + + + + + @@ -126123,6 +135848,11 @@ + + + + + @@ -126162,6 +135892,11 @@ + + + + + @@ -126201,6 +135936,11 @@ + + + + + @@ -126240,6 +135980,11 @@ + + + + + @@ -126279,6 +136024,11 @@ + + + + + @@ -126318,6 +136068,11 @@ + + + + + @@ -126357,6 +136112,11 @@ + + + + + @@ -126396,6 +136156,11 @@ + + + + + @@ -126435,6 +136200,11 @@ + + + + + @@ -126474,6 +136244,11 @@ + + + + + @@ -126513,6 +136288,11 @@ + + + + + @@ -126552,6 +136332,11 @@ + + + + + @@ -126591,6 +136376,11 @@ + + + + + @@ -126630,6 +136420,11 @@ + + + + + @@ -126669,6 +136464,11 @@ + + + + + @@ -126708,6 +136508,11 @@ + + + + + @@ -126747,6 +136552,11 @@ + + + + + @@ -126786,6 +136596,11 @@ + + + + + @@ -126825,6 +136640,11 @@ + + + + + @@ -126864,6 +136684,11 @@ + + + + + @@ -126903,6 +136728,11 @@ + + + + + @@ -126942,6 +136772,11 @@ + + + + + @@ -126981,6 +136816,11 @@ + + + + + @@ -127020,6 +136860,11 @@ + + + + + @@ -127059,6 +136904,11 @@ + + + + + @@ -127098,6 +136948,11 @@ + + + + + @@ -127137,6 +136992,11 @@ + + + + + @@ -127176,6 +137036,11 @@ + + + + + @@ -127215,6 +137080,11 @@ + + + + + @@ -127254,6 +137124,11 @@ + + + + + @@ -127293,6 +137168,11 @@ + + + + + @@ -127332,6 +137212,11 @@ + + + + + @@ -127371,6 +137256,11 @@ + + + + + @@ -127410,6 +137300,11 @@ + + + + + @@ -127449,6 +137344,11 @@ + + + + + @@ -127488,6 +137388,11 @@ + + + + + @@ -127527,6 +137432,11 @@ + + + + + @@ -127566,6 +137476,11 @@ + + + + + @@ -127605,6 +137520,11 @@ + + + + + @@ -127644,6 +137564,11 @@ + + + + + @@ -127683,6 +137608,11 @@ + + + + + @@ -127722,6 +137652,11 @@ + + + + + @@ -127761,6 +137696,11 @@ + + + + + @@ -127800,6 +137740,11 @@ + + + + + @@ -127839,6 +137784,11 @@ + + + + + @@ -127878,6 +137828,11 @@ + + + + + @@ -127917,6 +137872,11 @@ + + + + + @@ -127956,6 +137916,11 @@ + + + + + @@ -127995,6 +137960,11 @@ + + + + + @@ -128034,6 +138004,11 @@ + + + + + @@ -128073,6 +138048,11 @@ + + + + + @@ -128112,6 +138092,11 @@ + + + + + @@ -128151,6 +138136,11 @@ + + + + + @@ -128190,6 +138180,11 @@ + + + + + @@ -128229,6 +138224,11 @@ + + + + + @@ -128268,6 +138268,11 @@ + + + + + @@ -128307,6 +138312,11 @@ + + + + + @@ -128346,6 +138356,11 @@ + + + + + @@ -128385,6 +138400,11 @@ + + + + + @@ -128424,6 +138444,11 @@ + + + + + @@ -128463,6 +138488,11 @@ + + + + + @@ -128502,6 +138532,11 @@ + + + + + @@ -128541,6 +138576,11 @@ + + + + + @@ -128580,6 +138620,11 @@ + + + + + @@ -128619,6 +138664,11 @@ + + + + + @@ -128658,6 +138708,11 @@ + + + + + @@ -128697,6 +138752,11 @@ + + + + + @@ -128736,6 +138796,11 @@ + + + + + @@ -128775,6 +138840,11 @@ + + + + + @@ -128814,6 +138884,11 @@ + + + + + @@ -128853,6 +138928,11 @@ + + + + + @@ -128892,6 +138972,11 @@ + + + + + @@ -128932,6 +139017,11 @@ + + + + + @@ -128972,6 +139062,11 @@ + + + + + @@ -129012,6 +139107,11 @@ + + + + + @@ -129052,6 +139152,11 @@ + + + + + @@ -129092,6 +139197,11 @@ + + + + + @@ -129132,6 +139242,11 @@ + + + + + @@ -129172,6 +139287,11 @@ + + + + + @@ -129212,6 +139332,11 @@ + + + + + @@ -129252,6 +139377,11 @@ + + + + + @@ -129292,6 +139422,11 @@ + + + + + @@ -129332,6 +139467,11 @@ + + + + + @@ -129372,6 +139512,11 @@ + + + + + @@ -129412,6 +139557,11 @@ + + + + + @@ -129452,6 +139602,11 @@ + + + + + @@ -129492,6 +139647,11 @@ + + + + + @@ -129532,6 +139692,11 @@ + + + + + @@ -129572,6 +139737,11 @@ + + + + + @@ -129612,6 +139782,11 @@ + + + + + @@ -129652,6 +139827,11 @@ + + + + + @@ -129692,6 +139872,11 @@ + + + + + @@ -129732,6 +139917,11 @@ + + + + + @@ -129772,6 +139962,11 @@ + + + + + @@ -129812,6 +140007,11 @@ + + + + + @@ -129852,6 +140052,11 @@ + + + + + @@ -129895,6 +140100,11 @@ + + + + + @@ -129938,6 +140148,11 @@ + + + + + @@ -129981,6 +140196,11 @@ + + + + + @@ -130024,6 +140244,11 @@ + + + + + @@ -130067,6 +140292,11 @@ + + + + + @@ -130110,6 +140340,11 @@ + + + + + @@ -130153,6 +140388,11 @@ + + + + + @@ -130196,6 +140436,11 @@ + + + + + @@ -130239,6 +140484,11 @@ + + + + + @@ -130282,6 +140532,11 @@ + + + + + @@ -130325,6 +140580,11 @@ + + + + + @@ -130368,6 +140628,11 @@ + + + + + @@ -130411,6 +140676,11 @@ + + + + + @@ -130454,6 +140724,11 @@ + + + + + @@ -130497,6 +140772,11 @@ + + + + + @@ -130540,6 +140820,11 @@ + + + + + @@ -130583,6 +140868,11 @@ + + + + + @@ -130626,6 +140916,11 @@ + + + + + @@ -130669,6 +140964,11 @@ + + + + + @@ -130712,6 +141012,11 @@ + + + + + @@ -130755,6 +141060,11 @@ + + + + + @@ -130798,6 +141108,11 @@ + + + + + @@ -130841,6 +141156,11 @@ + + + + + @@ -130884,6 +141204,11 @@ + + + + + @@ -130924,6 +141249,11 @@ + + + + + @@ -130964,6 +141294,11 @@ + + + + + @@ -131004,6 +141339,11 @@ + + + + + @@ -131044,6 +141384,11 @@ + + + + + @@ -131084,6 +141429,11 @@ + + + + + @@ -131124,6 +141474,11 @@ + + + + + @@ -131164,6 +141519,11 @@ + + + + + @@ -131205,6 +141565,11 @@ + + + + + @@ -131246,6 +141611,11 @@ + + + + + @@ -131287,6 +141657,11 @@ + + + + + @@ -131328,6 +141703,11 @@ + + + + + @@ -131369,6 +141749,13 @@ + + + + + + + @@ -131410,6 +141797,13 @@ + + + + + + + @@ -131451,6 +141845,13 @@ + + + + + + + @@ -131492,6 +141893,13 @@ + + + + + + + @@ -131533,6 +141941,13 @@ + + + + + + + @@ -131574,6 +141989,13 @@ + + + + + + + @@ -131615,6 +142037,13 @@ + + + + + + + @@ -131656,6 +142085,13 @@ + + + + + + + @@ -131697,6 +142133,13 @@ + + + + + + + @@ -131738,6 +142181,13 @@ + + + + + + + @@ -131779,6 +142229,13 @@ + + + + + + + @@ -131820,6 +142277,13 @@ + + + + + + + @@ -131861,6 +142325,13 @@ + + + + + + + @@ -131902,6 +142373,13 @@ + + + + + + + @@ -131943,6 +142421,13 @@ + + + + + + + @@ -131984,6 +142469,13 @@ + + + + + + + @@ -132025,6 +142517,11 @@ + + + + + @@ -132066,6 +142563,11 @@ + + + + + @@ -132107,6 +142609,11 @@ + + + + + @@ -132148,6 +142655,11 @@ + + + + + @@ -132189,6 +142701,11 @@ + + + + + @@ -132230,6 +142747,11 @@ + + + + + @@ -132271,6 +142793,13 @@ + + + + + + + @@ -132312,6 +142841,13 @@ + + + + + + + @@ -132353,6 +142889,13 @@ + + + + + + + @@ -132394,6 +142937,13 @@ + + + + + + + @@ -132435,6 +142985,13 @@ + + + + + + + @@ -132476,6 +143033,13 @@ + + + + + + + @@ -132517,6 +143081,13 @@ + + + + + + + @@ -132558,6 +143129,13 @@ + + + + + + + @@ -132599,6 +143177,12 @@ + + + + + + @@ -132644,6 +143228,12 @@ + + + + + + @@ -132689,6 +143279,12 @@ + + + + + + @@ -132734,6 +143330,12 @@ + + + + + + @@ -132779,6 +143381,12 @@ + + + + + + @@ -132824,6 +143432,12 @@ + + + + + + @@ -132869,6 +143483,12 @@ + + + + + + @@ -132914,6 +143534,12 @@ + + + + + + @@ -132959,6 +143585,13 @@ + + + + + + + @@ -133006,6 +143639,13 @@ + + + + + + + @@ -133054,6 +143694,13 @@ + + + + + + + @@ -133101,6 +143748,13 @@ + + + + + + + @@ -133148,6 +143802,13 @@ + + + + + + + @@ -133195,6 +143856,13 @@ + + + + + + + @@ -133242,6 +143910,13 @@ + + + + + + + @@ -133289,6 +143964,13 @@ + + + + + + + @@ -133336,6 +144018,12 @@ + + + + + + @@ -133377,6 +144065,12 @@ + + + + + + @@ -133418,6 +144112,12 @@ + + + + + + @@ -133459,6 +144159,12 @@ + + + + + + @@ -133500,6 +144206,12 @@ + + + + + + @@ -133541,6 +144253,12 @@ + + + + + + @@ -133582,6 +144300,12 @@ + + + + + + @@ -133623,6 +144347,12 @@ + + + + + + @@ -133664,6 +144394,12 @@ + + + + + + @@ -133705,6 +144441,12 @@ + + + + + + @@ -133746,6 +144488,12 @@ + + + + + + @@ -133787,6 +144535,12 @@ + + + + + + @@ -133828,6 +144582,12 @@ + + + + + + @@ -133869,6 +144629,12 @@ + + + + + + @@ -133910,6 +144676,12 @@ + + + + + + @@ -133951,6 +144723,12 @@ + + + + + + @@ -133992,6 +144770,12 @@ + + + + + + @@ -134037,6 +144821,12 @@ + + + + + + @@ -134082,6 +144872,12 @@ + + + + + + @@ -134127,6 +144923,12 @@ + + + + + + @@ -134172,6 +144974,12 @@ + + + + + + @@ -134217,6 +145025,12 @@ + + + + + + @@ -134262,6 +145076,12 @@ + + + + + + @@ -134307,6 +145127,12 @@ + + + + + + @@ -134352,6 +145178,12 @@ + + + + + + @@ -134397,6 +145229,12 @@ + + + + + + @@ -134442,6 +145280,12 @@ + + + + + + @@ -134487,6 +145331,12 @@ + + + + + + @@ -134532,6 +145382,12 @@ + + + + + + @@ -134577,6 +145433,12 @@ + + + + + + @@ -134622,6 +145484,12 @@ + + + + + + @@ -134667,6 +145535,12 @@ + + + + + + @@ -134712,6 +145586,12 @@ + + + + + + @@ -134753,6 +145633,12 @@ + + + + + + @@ -134794,6 +145680,12 @@ + + + + + + @@ -134835,6 +145727,12 @@ + + + + + + @@ -134876,6 +145774,12 @@ + + + + + + @@ -134917,6 +145821,12 @@ + + + + + + @@ -134958,6 +145868,12 @@ + + + + + + @@ -134999,6 +145915,12 @@ + + + + + + @@ -135040,6 +145962,12 @@ + + + + + + @@ -135081,6 +146009,12 @@ + + + + + + @@ -135122,6 +146056,12 @@ + + + + + + @@ -135163,6 +146103,12 @@ + + + + + + @@ -135204,6 +146150,12 @@ + + + + + + @@ -135245,6 +146197,12 @@ + + + + + + @@ -135286,6 +146244,12 @@ + + + + + + @@ -135327,6 +146291,12 @@ + + + + + + @@ -135368,6 +146338,12 @@ + + + + + + @@ -135413,6 +146389,12 @@ + + + + + + @@ -135458,6 +146440,12 @@ + + + + + + @@ -135503,6 +146491,12 @@ + + + + + + @@ -135548,6 +146542,12 @@ + + + + + + @@ -135593,6 +146593,12 @@ + + + + + + @@ -135638,6 +146644,12 @@ + + + + + + @@ -135683,6 +146695,12 @@ + + + + + + @@ -135728,6 +146746,12 @@ + + + + + + @@ -135773,6 +146797,12 @@ + + + + + + @@ -135818,6 +146848,12 @@ + + + + + + @@ -135863,6 +146899,12 @@ + + + + + + @@ -135908,6 +146950,12 @@ + + + + + + @@ -135953,6 +147001,12 @@ + + + + + + @@ -135998,6 +147052,12 @@ + + + + + + @@ -136043,6 +147103,12 @@ + + + + + + @@ -136088,6 +147154,12 @@ + + + + + + @@ -136134,6 +147206,12 @@ + + + + + + @@ -136180,6 +147258,12 @@ + + + + + + @@ -136226,6 +147310,12 @@ + + + + + + @@ -136272,6 +147362,12 @@ + + + + + + @@ -136318,6 +147414,12 @@ + + + + + + @@ -136364,6 +147466,12 @@ + + + + + + @@ -136410,6 +147518,12 @@ + + + + + + @@ -136456,6 +147570,12 @@ + + + + + + @@ -136502,6 +147622,12 @@ + + + + + + @@ -136548,6 +147674,12 @@ + + + + + + @@ -136594,6 +147726,12 @@ + + + + + + @@ -136640,6 +147778,12 @@ + + + + + + @@ -136686,6 +147830,12 @@ + + + + + + @@ -136732,6 +147882,12 @@ + + + + + + @@ -136778,6 +147934,12 @@ + + + + + + @@ -136824,6 +147986,12 @@ + + + + + + @@ -136865,6 +148033,12 @@ + + + + + + @@ -136906,6 +148080,12 @@ + + + + + + @@ -136947,6 +148127,12 @@ + + + + + + @@ -136988,6 +148174,12 @@ + + + + + + @@ -137029,6 +148221,12 @@ + + + + + + @@ -137070,6 +148268,12 @@ + + + + + + @@ -137111,6 +148315,12 @@ + + + + + + @@ -137504,6 +148714,13 @@ + + + + + + + @@ -137546,6 +148763,13 @@ + + + + + + + @@ -137588,6 +148812,13 @@ + + + + + + + @@ -137630,6 +148861,13 @@ + + + + + + + @@ -137672,6 +148910,13 @@ + + + + + + + @@ -137714,6 +148959,13 @@ + + + + + + + @@ -137756,6 +149008,13 @@ + + + + + + + @@ -137798,6 +149057,13 @@ + + + + + + + @@ -138320,6 +149586,13 @@ + + + + + + + @@ -138362,6 +149635,13 @@ + + + + + + + @@ -138404,6 +149684,13 @@ + + + + + + + @@ -138446,6 +149733,13 @@ + + + + + + + @@ -138655,6 +149949,11 @@ + + + + + @@ -138699,6 +149998,11 @@ + + + + + @@ -139145,6 +150449,14 @@ + + + + + + + + @@ -139192,6 +150504,14 @@ + + + + + + + + @@ -139238,6 +150558,14 @@ + + + + + + + + @@ -139284,6 +150612,14 @@ + + + + + + + + @@ -139330,6 +150666,14 @@ + + + + + + + + @@ -139376,6 +150720,14 @@ + + + + + + + + @@ -139422,6 +150774,14 @@ + + + + + + + + @@ -139468,6 +150828,14 @@ + + + + + + + + @@ -139514,6 +150882,14 @@ + + + + + + + + @@ -139560,6 +150936,14 @@ + + + + + + + + @@ -139606,6 +150990,14 @@ + + + + + + + + @@ -139652,6 +151044,14 @@ + + + + + + + + @@ -139698,6 +151098,14 @@ + + + + + + + + @@ -139744,6 +151152,14 @@ + + + + + + + + @@ -139790,6 +151206,14 @@ + + + + + + + + @@ -139836,6 +151260,14 @@ + + + + + + + + @@ -139882,6 +151314,14 @@ + + + + + + + + @@ -139928,6 +151368,14 @@ + + + + + + + + @@ -139974,6 +151422,14 @@ + + + + + + + + @@ -140020,6 +151476,14 @@ + + + + + + + + @@ -140066,6 +151530,14 @@ + + + + + + + + @@ -140112,6 +151584,14 @@ + + + + + + + + @@ -140158,6 +151638,14 @@ + + + + + + + + @@ -140204,6 +151692,14 @@ + + + + + + + + @@ -140250,6 +151746,14 @@ + + + + + + + + @@ -140296,6 +151800,14 @@ + + + + + + + + @@ -140342,6 +151854,14 @@ + + + + + + + + @@ -140388,6 +151908,14 @@ + + + + + + + + @@ -140434,6 +151962,14 @@ + + + + + + + + @@ -140480,6 +152016,14 @@ + + + + + + + + @@ -140526,6 +152070,14 @@ + + + + + + + + @@ -140572,6 +152124,14 @@ + + + + + + + + @@ -140618,6 +152178,11 @@ + + + + + @@ -140658,6 +152223,11 @@ + + + + + @@ -140701,6 +152271,11 @@ + + + + + @@ -140741,6 +152316,11 @@ + + + + + @@ -140781,6 +152361,11 @@ + + + + + @@ -140821,6 +152406,11 @@ + + + + + @@ -140861,6 +152451,11 @@ + + + + + @@ -140901,6 +152496,11 @@ + + + + + @@ -140941,6 +152541,11 @@ + + + + + @@ -140981,6 +152586,11 @@ + + + + + @@ -141021,6 +152631,11 @@ + + + + + @@ -141061,6 +152676,11 @@ + + + + + @@ -141101,6 +152721,11 @@ + + + + + @@ -141141,6 +152766,11 @@ + + + + + @@ -141181,6 +152811,11 @@ + + + + + @@ -141221,6 +152856,11 @@ + + + + + @@ -141261,6 +152901,11 @@ + + + + + @@ -141300,6 +152945,11 @@ + + + + + @@ -141339,6 +152989,11 @@ + + + + + @@ -141378,6 +153033,11 @@ + + + + + @@ -141417,6 +153077,14 @@ + + + + + + + + @@ -141457,6 +153125,14 @@ + + + + + + + + @@ -141497,6 +153173,14 @@ + + + + + + + + @@ -141537,6 +153221,14 @@ + + + + + + + + @@ -141577,6 +153269,14 @@ + + + + + + + + @@ -141617,6 +153317,14 @@ + + + + + + + + @@ -141657,6 +153365,14 @@ + + + + + + + + @@ -141697,6 +153413,14 @@ + + + + + + + + @@ -141737,6 +153461,14 @@ + + + + + + + + @@ -141777,6 +153509,14 @@ + + + + + + + + @@ -141817,6 +153557,14 @@ + + + + + + + + @@ -141857,6 +153605,14 @@ + + + + + + + + @@ -141897,6 +153653,14 @@ + + + + + + + + @@ -141937,6 +153701,14 @@ + + + + + + + + @@ -141977,6 +153749,14 @@ + + + + + + + + @@ -142017,6 +153797,14 @@ + + + + + + + + @@ -142057,6 +153845,11 @@ + + + + + @@ -142136,6 +153929,12 @@ + + + + + + @@ -142262,6 +154061,12 @@ + + + + + + @@ -142320,6 +154125,12 @@ + + + + + + @@ -143688,6 +155499,11 @@ + + + + + @@ -143739,6 +155555,11 @@ + + + + + @@ -143890,6 +155711,11 @@ + + + + + @@ -144295,6 +156121,11 @@ + + + + + @@ -145193,6 +157024,11 @@ + + + + + @@ -145594,6 +157430,11 @@ + + + + + @@ -145761,6 +157602,11 @@ + + + + + @@ -145838,6 +157684,11 @@ + + + + + @@ -146000,6 +157851,11 @@ + + + + + @@ -146077,6 +157933,11 @@ + + + + + @@ -146501,6 +158362,11 @@ + + + + + @@ -146581,6 +158447,11 @@ + + + + + @@ -148718,6 +160589,12 @@ + + + + + + @@ -148758,6 +160635,12 @@ + + + + + + @@ -148798,6 +160681,12 @@ + + + + + + @@ -148844,6 +160733,12 @@ + + + + + + @@ -148884,6 +160779,12 @@ + + + + + + @@ -148930,6 +160831,12 @@ + + + + + + @@ -148970,6 +160877,12 @@ + + + + + + @@ -149010,6 +160923,12 @@ + + + + + + @@ -149055,6 +160974,12 @@ + + + + + + @@ -149100,6 +161025,12 @@ + + + + + + @@ -204352,6 +216283,15 @@ + + + + + + + + + @@ -204395,6 +216335,15 @@ + + + + + + + + + @@ -204434,6 +216383,15 @@ + + + + + + + + + @@ -204630,6 +216588,15 @@ + + + + + + + + + @@ -204673,6 +216640,15 @@ + + + + + + + + + @@ -204712,6 +216688,15 @@ + + + + + + + + + @@ -204911,6 +216896,15 @@ + + + + + + + + + @@ -204953,6 +216947,15 @@ + + + + + + + + + @@ -204992,6 +216995,15 @@ + + + + + + + + + @@ -205152,6 +217164,15 @@ + + + + + + + + + @@ -205193,6 +217214,14 @@ + + + + + + + + @@ -206904,4963 +218933,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/ModelFiles/yml/yeastGEM.yml b/ModelFiles/yml/yeastGEM.yml index 9c137383..e0524b1f 100644 --- a/ModelFiles/yml/yeastGEM.yml +++ b/ModelFiles/yml/yeastGEM.yml @@ -29842,14 +29842,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YDL174C and YEL039C) or (YDL174C and YJR048W) or (YEL039C and YEL071W) or (YEL071W and YJR048W)" - - subsystem: - - "sce00620 Pyruvate metabolism" - - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: - "1.1.2.4" - "1.1.99.-" - bigg.reaction: "D_LACDcm" + - kegg.pathway: + - "sce00620" + - "sce00920" - kegg.reaction: "R00197" - metanetx.reaction: "MNXR138960" - sbo: "SBO:0000176" @@ -29865,14 +29865,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YDL178W and YEL039C) or (YDL178W and YJR048W)" - - subsystem: - - "sce00620 Pyruvate metabolism" - - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: - "1.1.2.4" - "1.1.99.-" - bigg.reaction: "D_LACDm" + - kegg.pathway: + - "sce00620" + - "sce00920" - kegg.reaction: "R00197" - metanetx.reaction: "MNXR138960" - sbo: "SBO:0000176" @@ -29889,10 +29889,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL060W" - - subsystem: "sce00650 Butanoate metabolism" - annotation: !!omap - ec-code: "1.1.1.4" - bigg.reaction: "BTDD_RR" + - kegg.pathway: "sce00650" - kegg.reaction: "R02946" - metanetx.reaction: "MNXR107844" - sbo: "SBO:0000176" @@ -29908,12 +29908,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YEL039C and YML054C) or (YJR048W and YML054C)" - - subsystem: - - "sce00620 Pyruvate metabolism" - - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: "1.1.2.3" - bigg.reaction: "L_LACD2cm" + - kegg.pathway: + - "sce00620" + - "sce00920" - kegg.reaction: "R00196" - metanetx.reaction: "MNXR138959" - sbo: "SBO:0000176" @@ -29929,11 +29929,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR032W or YMR306W or (YLR342W and YCR034W)" - - subsystem: - - "sce00500 Starch and sucrose metabolism" - - "sce04011 MAPK signaling pathway - yeast" - annotation: !!omap - ec-code: "2.4.1.34" + - kegg.pathway: + - "sce00500" + - "sce04011" - kegg.reaction: "R03118" - metanetx.reaction: "MNXR143499" - pmid: "7649185" @@ -29963,13 +29963,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL020C" - - subsystem: - - "sce00340 Histidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "5.3.1.16" - bigg.reaction: "PRMICI" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R04640" - metanetx.reaction: "MNXR103169" - sbo: "SBO:0000176" @@ -29987,12 +29987,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR037W" - - subsystem: - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00330 Arginine and proline metabolism" - annotation: !!omap - ec-code: "1.2.1.88" - bigg.reaction: "P5CDm" + - kegg.pathway: + - "sce00250" + - "sce00330" - kegg.reaction: "R00707" - metanetx.reaction: "MNXR102301" - pmid: "387737" @@ -30011,11 +30011,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL038W and YMR009W" - - subsystem: "sce00270 Cysteine and methionine metabolism" - annotation: !!omap - ec-code: - "1.13.11.54" - "3.1.3.77" + - kegg.pathway: "sce00270" - pmid: "14506228" - sbo: "SBO:0000176" - confidence_score: 3 @@ -30031,12 +30031,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL066C" - - subsystem: "sce00740 Riboflavin metabolism" - annotation: !!omap - ec-code: - "3.5.4.26" - "5.4.99.28" - bigg.reaction: "DRTPPD" + - kegg.pathway: "sce00740" - kegg.reaction: "R09377" - metanetx.reaction: "MNXR112805" - pmid: "9068650" @@ -30054,9 +30054,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR153W" - - subsystem: "sce00740 Riboflavin metabolism" - annotation: !!omap - ec-code: "1.1.1.302" + - kegg.pathway: "sce00740" - kegg.reaction: "R09376" - metanetx.reaction: "MNXR112804" - pmid: "9068650" @@ -30074,18 +30074,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YCL009C and YMR108W) or YMR108W" - - subsystem: - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00650 Butanoate metabolism" - - "sce00660 C5-Branched dibasic acid metabolism" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.2.1.6" - bigg.reaction: "ACHBSm" + - kegg.pathway: + - "sce00290" + - "sce00650" + - "sce00660" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R08648" - metanetx.reaction: "MNXR95260" - pmid: "8972574" @@ -30103,12 +30103,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL256W" - - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: - "2.5.1.15" - "2.7.6.3" - "4.1.2.25" + - kegg.pathway: "sce00790" - kegg.reaction: "R03503" - metanetx.reaction: "MNXR100694" - sbo: "SBO:0000176" @@ -30124,24 +30124,24 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER152C or YGL202W or YJL060W" - - subsystem: - - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" - - "sce00270 Cysteine and methionine metabolism" - - "sce00300 Lysine biosynthesis" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00380 Tryptophan metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "2.6.1.39" - "2.6.1.57" - "2.6.1.7" - bigg.reaction: "AATA" + - kegg.pathway: + - "sce00130" + - "sce00270" + - "sce00300" + - "sce00350" + - "sce00360" + - "sce00380" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01939" - metanetx.reaction: "MNXR95160" - pmid: @@ -30161,12 +30161,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR063C" - - subsystem: - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "1.1.1.169" - bigg.reaction: "DPR" + - kegg.pathway: + - "sce00770" + - "sce01110" - kegg.reaction: "R02472" - metanetx.reaction: "MNXR97779" - sbo: "SBO:0000176" @@ -30183,14 +30183,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR035W or YBR249C" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.5.1.54" - bigg.reaction: "DDPAm" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01826" - metanetx.reaction: "MNXR97218" - sbo: "SBO:0000176" @@ -30207,9 +30207,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - subsystem: - - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "1.14.13.-" @@ -30218,6 +30215,9 @@ - "2.1.1.64" - "2.7.-.-" - bigg.reaction: "2HPMBQMTm" + - kegg.pathway: + - "sce00130" + - "sce01110" - kegg.reaction: "R04983" - metanetx.reaction: "MNXR109269" - pmid: "15792955" @@ -30234,9 +30234,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - subsystem: - - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "1.14.13.-" @@ -30245,6 +30242,9 @@ - "2.1.1.64" - "2.7.-.-" - bigg.reaction: "2HP6MPMOm" + - kegg.pathway: + - "sce00130" + - "sce01110" - kegg.reaction: "R04982" - metanetx.reaction: "MNXR109268" - pmid: "15792955" @@ -30260,14 +30260,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL009C" - - subsystem: - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.33" - bigg.reaction: "IPPMIb" + - kegg.pathway: + - "sce00290" + - "sce01110" + - "sce01210" + - "sce01230" - kegg.reaction: "R03968" - metanetx.reaction: "MNXR100826" - pmid: "3071717" @@ -30286,15 +30286,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL104C or YOR108W" - - subsystem: - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.3.3.13" - bigg.reaction: "IPPS" + - kegg.pathway: + - "sce00290" + - "sce00620" + - "sce01110" + - "sce01210" + - "sce01230" - kegg.reaction: "R01213" - metanetx.reaction: "MNXR100879" - pmid: "6090272" @@ -30313,15 +30313,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL104C" - - subsystem: - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.3.3.13" - bigg.reaction: "IPPSm" + - kegg.pathway: + - "sce00290" + - "sce00620" + - "sce01110" + - "sce01210" + - "sce01230" - kegg.reaction: "R01213" - metanetx.reaction: "MNXR100879" - pmid: "6090272" @@ -30354,13 +30354,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR234W" - - subsystem: - - "sce00300 Lysine biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.36" + - kegg.pathway: + - "sce00300" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R03444" - metanetx.reaction: "MNXR141287" - pmid: "5908136" @@ -30379,17 +30379,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR001W" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.3.3.1" - bigg.reaction: "MCITSm" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00931" - metanetx.reaction: "MNXR101417" - pmid: "16332871" @@ -30406,18 +30406,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR148W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "OMCDC" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01652" - metanetx.reaction: "MNXR102180" - sbo: "SBO:0000176" @@ -30433,18 +30433,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR208W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "OMCDCm" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01652" - metanetx.reaction: "MNXR102180" - sbo: "SBO:0000176" @@ -30460,12 +30460,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL064C" - - subsystem: - - "sce00920 Sulfur metabolism" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "3.1.3.7" - bigg.reaction: "BPNT" + - kegg.pathway: + - "sce00920" + - "sce01130" - kegg.reaction: "R00188" - metanetx.reaction: "MNXR96321" - pmid: "7809627" @@ -30482,12 +30482,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL248W or YOR360C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: - "3.1.4.17" - "3.1.4.53" - bigg.reaction: "PDE1" + - kegg.pathway: "sce00230" - kegg.reaction: "R00191" - metanetx.reaction: "MNXR95886" - sbo: "SBO:0000176" @@ -30503,10 +30503,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR360C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "3.1.4.53" - bigg.reaction: "PDE2" + - kegg.pathway: "sce00230" - metanetx.reaction: "MNXR136084" - sbo: "SBO:0000176" - confidence_score: 2 @@ -30521,10 +30521,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR360C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "3.1.4.53" - bigg.reaction: "PDE3" + - kegg.pathway: "sce00230" - metanetx.reaction: "MNXR136083" - sbo: "SBO:0000176" - confidence_score: 2 @@ -30539,10 +30539,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR360C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "3.1.4.53" - bigg.reaction: "PDE4" + - kegg.pathway: "sce00230" - kegg.reaction: "R01234" - metanetx.reaction: "MNXR100078" - sbo: "SBO:0000176" @@ -30558,10 +30558,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR360C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "3.1.4.53" - bigg.reaction: "PDE5" + - kegg.pathway: "sce00230" - metanetx.reaction: "MNXR136082" - sbo: "SBO:0000176" - confidence_score: 2 @@ -30576,12 +30576,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR487C" - - subsystem: - - "sce00740 Riboflavin metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.99.12" - bigg.reaction: "DB4PS" + - kegg.pathway: + - "sce00740" + - "sce01110" - kegg.reaction: "R07281" - metanetx.reaction: "MNXR97178" - pmid: "12595523" @@ -30597,11 +30597,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR127W" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "1.1.1.25" @@ -30610,6 +30605,11 @@ - "4.2.1.10" - "4.2.3.4" - bigg.reaction: "DHQTi" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03084" - metanetx.reaction: "MNXR97449" - sbo: "SBO:0000176" @@ -30624,11 +30624,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR127W" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "1.1.1.25" @@ -30637,6 +30632,11 @@ - "4.2.1.10" - "4.2.3.4" - bigg.reaction: "DHQS" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03083" - metanetx.reaction: "MNXR97447" - pmid: "6355828" @@ -30654,9 +30654,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR265W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "1.1.1.102" + - kegg.pathway: "sce00600" - kegg.reaction: "R02978" - metanetx.reaction: "MNXR94866" - pmid: @@ -30676,14 +30676,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR249C or YDR035W" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.5.1.54" - bigg.reaction: "DDPA" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01826" - metanetx.reaction: "MNXR97218" - pmid: "2880280" @@ -30735,10 +30735,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR231C" - - subsystem: "sce00380 Tryptophan metabolism" - annotation: !!omap - ec-code: "3.7.1.3" - bigg.reaction: "HKYNH" + - kegg.pathway: "sce00380" - kegg.reaction: "R02668" - metanetx.reaction: "MNXR100656" - sbo: "SBO:0000176" @@ -30774,10 +30774,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR025C" - - subsystem: "sce00380 Tryptophan metabolism" - annotation: !!omap - ec-code: "1.13.11.6" - bigg.reaction: "3HAO" + - kegg.pathway: "sce00380" - kegg.reaction: "R02665" - metanetx.reaction: "MNXR94889" - pmid: "9539135" @@ -30809,14 +30809,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL009C" - - subsystem: - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.33" - bigg.reaction: "IPPMIa" + - kegg.pathway: + - "sce00290" + - "sce01110" + - "sce01210" + - "sce01230" - kegg.reaction: "R04001" - metanetx.reaction: "MNXR100827" - pmid: "3071717" @@ -30834,15 +30834,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL018W" - - subsystem: - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00660 C5-Branched dibasic acid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.1.1.85" - bigg.reaction: "IPMD" + - kegg.pathway: + - "sce00290" + - "sce00660" + - "sce01110" + - "sce01210" + - "sce01230" - kegg.reaction: "R04426" - metanetx.reaction: "MNXR100878" - pmid: "6297759" @@ -30859,10 +30859,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "4.1.1.-" @@ -30870,6 +30866,10 @@ - "4.1.1.43" - "4.1.1.74" - bigg.reaction: "3MOBDC" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR94922" - pmid: "12902239" - sbo: "SBO:0000176" @@ -30886,12 +30886,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR176W" - - subsystem: - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.1.2.11" - bigg.reaction: "MTMOHT" + - kegg.pathway: + - "sce00770" + - "sce01110" - kegg.reaction: "R01226" - metanetx.reaction: "MNXR101702" - sbo: "SBO:0000176" @@ -30907,10 +30907,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL080C or YGR087C or YLR044C or YLR134W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "4.1.1.-" @@ -30918,6 +30914,10 @@ - "4.1.1.43" - "4.1.1.74" - bigg.reaction: "3MOPDC" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" - kegg.reaction: "R03894" - metanetx.reaction: "MNXR94925" - pmid: "12902239" @@ -30934,11 +30934,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR127W" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "1.1.1.25" @@ -30947,6 +30942,11 @@ - "4.2.1.10" - "4.2.3.4" - bigg.reaction: "PSCVT" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03460" - metanetx.reaction: "MNXR103226" - pmid: "6355828" @@ -30963,10 +30963,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNR033W" - - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: "2.6.1.85" - bigg.reaction: "ADCS" + - kegg.pathway: "sce00790" - kegg.reaction: "R01716" - metanetx.reaction: "MNXR95440" - sbo: "SBO:0000176" @@ -31000,15 +31000,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR019W" - - subsystem: - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00410 beta-Alanine metabolism" - - "sce00640 Propanoate metabolism" - - "sce00650 Butanoate metabolism" - annotation: !!omap - ec-code: "2.6.1.19" - bigg.reaction: "ABTA" + - kegg.pathway: + - "sce00250" + - "sce00280" + - "sce00410" + - "sce00640" + - "sce00650" - kegg.reaction: "R01648" - metanetx.reaction: "MNXR95186" - pmid: "10590462" @@ -31025,14 +31025,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR053W" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00750 Vitamin B6 metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.3.1" - bigg.reaction: "4HTHRS" + - kegg.pathway: + - "sce00260" + - "sce00750" + - "sce01110" + - "sce01230" - kegg.reaction: "R05086" - metanetx.reaction: "MNXR95024" - pmid: "8082795" @@ -31068,13 +31068,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL080C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "4.1.1.-" - bigg.reaction: "4MOPDC" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR137950" - pmid: "12902239" - sbo: "SBO:0000176" @@ -31114,11 +31114,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR017C" - - subsystem: - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: "2.7.4.21" + - kegg.pathway: + - "sce04070" + - "sce04138" - pmid: "17412958" - sbo: "SBO:0000176" - confidence_score: 3 @@ -31133,10 +31133,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR017W" - - subsystem: "sce00270 Cysteine and methionine metabolism" - annotation: !!omap - ec-code: "2.4.2.28" - bigg.reaction: "MTAP" + - kegg.pathway: "sce00270" - kegg.reaction: "R01402" - metanetx.reaction: "MNXR101745" - pmid: "14506228" @@ -31153,10 +31153,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER037W or YGL224C" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: "3.1.3.-" - bigg.reaction: "NTD4" + - kegg.pathway: "sce00760" - kegg.reaction: "R00511" - metanetx.reaction: "MNXR102034" - pmid: @@ -31175,12 +31175,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR155C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: "3.1.3.99" - bigg.reaction: "NTD11" + - kegg.pathway: + - "sce00230" + - "sce00760" - kegg.reaction: "R01126" - metanetx.reaction: "MNXR102030" - pmid: "12735798" @@ -31197,10 +31197,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER037W or YGL224C" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: "3.1.3.-" - bigg.reaction: "NTD2" + - kegg.pathway: "sce00760" - kegg.reaction: "R00963" - metanetx.reaction: "MNXR102032" - pmid: @@ -31224,13 +31224,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR061C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "6.3.5.3" - bigg.reaction: "PRFGS" + - kegg.pathway: + - "sce00230" + - "sce01110" + - "sce01130" - kegg.reaction: "R04463" - metanetx.reaction: "MNXR108904" - sbo: "SBO:0000176" @@ -31247,12 +31247,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL125W or YPL023C" - - subsystem: - - "sce00670 One carbon pool by folate" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "1.5.1.20" - bigg.reaction: "MTHFR3" + - kegg.pathway: + - "sce00670" + - "sce01200" - kegg.reaction: "R01224" - metanetx.reaction: "MNXR101752" - pmid: "21623372" @@ -31271,13 +31271,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR232W" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.3.1.37" - bigg.reaction: "ALASm" + - kegg.pathway: + - "sce00260" + - "sce00860" + - "sce01110" - kegg.reaction: "R00830" - metanetx.reaction: "MNXR95695" - sbo: "SBO:0000176" @@ -31314,11 +31314,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR017C" - - subsystem: - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: "2.7.4.21" + - kegg.pathway: + - "sce04070" + - "sce04138" - kegg.reaction: "R09087" - metanetx.reaction: "MNXR101584" - pmid: "11956213" @@ -31336,10 +31336,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER183C" - - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: "6.3.3.2" - bigg.reaction: "FTHFCL" + - kegg.pathway: "sce00670" - kegg.reaction: "R02301" - metanetx.reaction: "MNXR99668" - sbo: "SBO:0000176" @@ -31355,14 +31355,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER091C" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00450 Selenocompound metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.1.1.14" - bigg.reaction: "MHPGLUT" + - kegg.pathway: + - "sce00270" + - "sce00450" + - "sce01110" + - "sce01230" - kegg.reaction: "R04405" - metanetx.reaction: "MNXR101555" - pmid: "3542720" @@ -31451,10 +31451,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL107C or YOL136C" - - subsystem: "sce00051 Fructose and mannose metabolism" - annotation: !!omap - ec-code: "2.7.1.105" - bigg.reaction: "PFK26" + - kegg.pathway: "sce00051" - metanetx.reaction: "MNXR124534" - sbo: "SBO:0000176" - confidence_score: 2 @@ -31469,14 +31469,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR248W or YHR163W" - - subsystem: - - "sce00030 Pentose phosphate pathway" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "3.1.1.31" - bigg.reaction: "PGL" + - kegg.pathway: + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R02035" - metanetx.reaction: "MNXR102539" - pmid: "14454532" @@ -31517,11 +31517,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR017C" - - subsystem: - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: "2.7.4.21" + - kegg.pathway: + - "sce04070" + - "sce04138" - pmid: "17412958" - sbo: "SBO:0000176" - confidence_score: 3 @@ -31553,10 +31553,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "4.1.1.-" @@ -31564,6 +31560,10 @@ - "4.1.1.43" - "4.1.1.74" - bigg.reaction: "ACALDCD" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95211" - pmid: "12902239" - sbo: "SBO:0000176" @@ -31580,15 +31580,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR355C" - - subsystem: - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.1.1.86" + - kegg.pathway: + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - pmid: "8972574" - sbo: "SBO:0000176" - confidence_score: 3 @@ -31603,17 +31603,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YCL009C and YMR108W) or YMR108W" - - subsystem: - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00650 Butanoate metabolism" - - "sce00660 C5-Branched dibasic acid metabolism" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.2.1.6" + - kegg.pathway: + - "sce00290" + - "sce00650" + - "sce00660" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00006" - metanetx.reaction: "MNXR106335" - pmid: "8972574" @@ -31630,9 +31630,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL192C" - - subsystem: "sce00190 Oxidative phosphorylation" - annotation: !!omap - bigg.reaction: "ACOATAm" + - kegg.pathway: "sce00190" - kegg.reaction: "R01624" - metanetx.reaction: "MNXR95376" - pmid: "15387819" @@ -31649,17 +31649,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT8p" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR95204" - sbo: "SBO:0000176" - confidence_score: 2 @@ -31674,17 +31674,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT9p" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR124343" - sbo: "SBO:0000176" - confidence_score: 2 @@ -31699,17 +31699,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT7p" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - kegg.reaction: "R03991" - metanetx.reaction: "MNXR95203" - sbo: "SBO:0000176" @@ -31724,24 +31724,24 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPL028W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00072 Synthesis and degradation of ketone bodies" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00310 Lysine degradation" - - "sce00380 Tryptophan metabolism" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce00650 Butanoate metabolism" - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.9" - bigg.reaction: "ACACT1r" + - kegg.pathway: + - "sce00071" + - "sce00072" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00650" + - "sce00900" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01212" - kegg.reaction: "R00238" - metanetx.reaction: "MNXR95194" - sbo: "SBO:0000176" @@ -31756,24 +31756,24 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPL028W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00072 Synthesis and degradation of ketone bodies" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00310 Lysine degradation" - - "sce00380 Tryptophan metabolism" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce00650 Butanoate metabolism" - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.9" - bigg.reaction: "ACACT1m" + - kegg.pathway: + - "sce00071" + - "sce00072" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00650" + - "sce00900" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01212" - kegg.reaction: "R00238" - metanetx.reaction: "MNXR95194" - sbo: "SBO:0000176" @@ -31789,17 +31789,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT6p" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - kegg.reaction: "R03858" - metanetx.reaction: "MNXR95201" - sbo: "SBO:0000176" @@ -31815,17 +31815,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT4p" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - kegg.reaction: "R03778" - metanetx.reaction: "MNXR95198" - sbo: "SBO:0000176" @@ -31841,16 +31841,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - kegg.reaction: "R04742" - metanetx.reaction: "MNXR95200" - sbo: "SBO:0000176" @@ -31869,17 +31869,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR207C" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00620 Pyruvate metabolism" - - "sce00640 Propanoate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: - "6.3.4.14" - "6.4.1.2" - bigg.reaction: "ACCOACrm" + - kegg.pathway: + - "sce00061" + - "sce00620" + - "sce00640" + - "sce01110" + - "sce01212" - kegg.reaction: "R00742" - metanetx.reaction: "MNXR95219" - pmid: "14761959" @@ -31899,16 +31899,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL141W and YNR016C" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00620 Pyruvate metabolism" - - "sce00640 Propanoate metabolism" - - "sce00780 Biotin metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "6.3.4.14" - bigg.reaction: "ACCOAC" + - kegg.pathway: + - "sce00061" + - "sce00620" + - "sce00640" + - "sce00780" + - "sce01110" + - "sce01212" - kegg.reaction: "R00742" - metanetx.reaction: "MNXR95219" - sbo: "SBO:0000176" @@ -31925,10 +31925,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL015W" - - subsystem: "sce00620 Pyruvate metabolism" - annotation: !!omap - ec-code: "3.1.2.1" - bigg.reaction: "ACOAHim" + - kegg.pathway: "sce00620" - kegg.reaction: "R00227" - metanetx.reaction: "MNXR95363" - sbo: "SBO:0000176" @@ -31946,16 +31946,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL054C or YLR153C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00620 Pyruvate metabolism" - - "sce00640 Propanoate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "6.2.1.1" - bigg.reaction: "ACS" + - kegg.pathway: + - "sce00010" + - "sce00620" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00235" - metanetx.reaction: "MNXR95413" - pmid: "8910545" @@ -31974,16 +31974,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL054C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00620 Pyruvate metabolism" - - "sce00640 Propanoate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "6.2.1.1" - bigg.reaction: "ACSm" + - kegg.pathway: + - "sce00010" + - "sce00620" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00235" - metanetx.reaction: "MNXR95413" - sbo: "SBO:0000176" @@ -32001,15 +32001,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR153C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00620 Pyruvate metabolism" - - "sce00640 Propanoate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "6.2.1.1" + - kegg.pathway: + - "sce00010" + - "sce00620" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00235" - metanetx.reaction: "MNXR95413" - pmid: "16857587" @@ -32026,17 +32026,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER069W" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "1.2.1.38" - "2.7.2.8" - bigg.reaction: "ACGKm" + - kegg.pathway: + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R02649" - metanetx.reaction: "MNXR95256" - sbo: "SBO:0000176" @@ -32052,13 +32052,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR093C or YAR071W or YBR092C or YHR215W" - - subsystem: - - "sce00730 Thiamine metabolism" - - "sce00740 Riboflavin metabolism" - - "sce04111 Cell cycle - yeast" - annotation: !!omap - ec-code: "3.1.3.2" - bigg.reaction: "ACP1e" + - kegg.pathway: + - "sce00730" + - "sce00740" + - "sce04111" - kegg.reaction: "R00548" - metanetx.reaction: "MNXR95393" - pmid: "13405892" @@ -32073,10 +32073,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR002W" - - subsystem: "sce00640 Propanoate metabolism" - annotation: !!omap - ec-code: "4.2.1.79" - bigg.reaction: "ACONT3m" + - kegg.pathway: "sce00640" - metanetx.reaction: "MNXR95385" - pmid: "16332871" - sbo: "SBO:0000176" @@ -32092,15 +32092,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL140W" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.11" - bigg.reaction: "ACOTAim" + - kegg.pathway: + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R02283" - metanetx.reaction: "MNXR95388" - sbo: "SBO:0000176" @@ -32135,14 +32135,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR127526" - sbo: "SBO:0000176" - confidence_score: 2 @@ -32157,15 +32157,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO5p" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR95365" - sbo: "SBO:0000176" - confidence_score: 2 @@ -32180,15 +32180,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO9p" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR124346" - sbo: "SBO:0000176" - confidence_score: 2 @@ -32203,15 +32203,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO7p" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR95367" - sbo: "SBO:0000176" - confidence_score: 2 @@ -32226,15 +32226,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO8p" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR95368" - sbo: "SBO:0000176" - confidence_score: 2 @@ -32249,15 +32249,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO6p" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR95366" - sbo: "SBO:0000176" - confidence_score: 2 @@ -32272,9 +32272,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - confidence_score: 3 @@ -32289,9 +32289,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W" - - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" - metanetx.reaction: "MNXR119161" - pmid: "10672016" - sbo: "SBO:0000176" @@ -32307,9 +32307,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - confidence_score: 3 @@ -32324,9 +32324,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" - metanetx.reaction: "MNXR119159" - pmid: "10672016" - sbo: "SBO:0000176" @@ -32342,9 +32342,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - confidence_score: 3 @@ -32359,9 +32359,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - confidence_score: 3 @@ -32376,9 +32376,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W" - - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - confidence_score: 3 @@ -32393,9 +32393,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - confidence_score: 3 @@ -32410,9 +32410,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - confidence_score: 3 @@ -32427,9 +32427,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - confidence_score: 3 @@ -32444,9 +32444,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJL091C" - - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - ec-code: "2.3.-.-" + - kegg.pathway: "sce00563" - pmid: "12714589" - sbo: "SBO:0000176" - confidence_score: 3 @@ -32462,10 +32462,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL141W" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "3.5.4.2" - bigg.reaction: "ADD" + - kegg.pathway: "sce00230" - kegg.reaction: "R01244" - metanetx.reaction: "MNXR95443" - sbo: "SBO:0000176" @@ -32481,10 +32481,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR441C or YML022W" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "2.4.2.7" - bigg.reaction: "ADPT" + - kegg.pathway: "sce00230" - kegg.reaction: "R00190" - metanetx.reaction: "MNXR95482" - pmid: "9864350" @@ -32502,10 +32502,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL141W" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "3.5.4.2" - bigg.reaction: "ADA" + - kegg.pathway: "sce00230" - kegg.reaction: "R01560" - metanetx.reaction: "MNXR95432" - sbo: "SBO:0000176" @@ -32522,10 +32522,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR105W" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "2.7.1.20" - bigg.reaction: "ADNK1" + - kegg.pathway: "sce00230" - kegg.reaction: "R00185" - metanetx.reaction: "MNXR95456" - sbo: "SBO:0000176" @@ -32542,13 +32542,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML035C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "3.5.4.6" - bigg.reaction: "AMPDA" + - kegg.pathway: + - "sce00230" + - "sce01110" + - "sce01130" - kegg.reaction: "R00181" - metanetx.reaction: "MNXR95824" - sbo: "SBO:0000176" @@ -32564,10 +32564,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER043C" - - subsystem: "sce00270 Cysteine and methionine metabolism" - annotation: !!omap - ec-code: "3.3.1.1" - bigg.reaction: "AHCi" + - kegg.pathway: "sce00270" - kegg.reaction: "R00192" - metanetx.reaction: "MNXR95492" - pmid: "15556636" @@ -32584,12 +32584,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL052C" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00330 Arginine and proline metabolism" - annotation: !!omap - ec-code: "4.1.1.50" - bigg.reaction: "ADMDC" + - kegg.pathway: + - "sce00270" + - "sce00330" - kegg.reaction: "R00178" - metanetx.reaction: "MNXR95455" - pmid: "3087344" @@ -32606,10 +32606,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR058W" - - subsystem: "sce00780 Biotin metabolism" - annotation: !!omap - ec-code: "2.6.1.62" - bigg.reaction: "AMAOTr" + - kegg.pathway: "sce00780" - kegg.reaction: "R03231" - metanetx.reaction: "MNXR95806" - sbo: "SBO:0000176" @@ -32624,13 +32624,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL005W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce04113 Meiosis - yeast" - - "sce04213 Longevity regulating pathway - multiple species" - annotation: !!omap - ec-code: "4.6.1.1" - bigg.reaction: "ADNCYC" + - kegg.pathway: + - "sce00230" + - "sce04113" + - "sce04213" - kegg.reaction: "R00089" - metanetx.reaction: "MNXR95444" - sbo: "SBO:0000176" @@ -32645,14 +32645,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL166C or YDR226W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00730 Thiamine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.3" - bigg.reaction: "ADK1" + - kegg.pathway: + - "sce00230" + - "sce00730" + - "sce01110" + - "sce01130" - kegg.reaction: "R00127" - metanetx.reaction: "MNXR95450" - sbo: "SBO:0000176" @@ -32667,14 +32667,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER170W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00730 Thiamine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.10" - bigg.reaction: "ADK1m" + - kegg.pathway: + - "sce00230" + - "sce00730" + - "sce01110" + - "sce01130" - kegg.reaction: "R00127" - metanetx.reaction: "MNXR95450" - sbo: "SBO:0000176" @@ -32690,14 +32690,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER170W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00730 Thiamine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.10" - bigg.reaction: "ADK3m" + - kegg.pathway: + - "sce00230" + - "sce00730" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95452" - sbo: "SBO:0000176" - confidence_score: 2 @@ -32711,14 +32711,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR359W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "4.3.2.2" - bigg.reaction: "ADSL2r" + - kegg.pathway: + - "sce00230" + - "sce00250" + - "sce01110" + - "sce01130" - kegg.reaction: "R04559" - metanetx.reaction: "MNXR108966" - sbo: "SBO:0000176" @@ -32733,14 +32733,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR359W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "4.3.2.2" - bigg.reaction: "ADSL1r" + - kegg.pathway: + - "sce00230" + - "sce00250" + - "sce01110" + - "sce01130" - kegg.reaction: "R01083" - metanetx.reaction: "MNXR95493" - sbo: "SBO:0000176" @@ -32759,12 +32759,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL220W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00250 Alanine, aspartate and glutamate metabolism" - annotation: !!omap - ec-code: "6.3.4.4" - bigg.reaction: "ADSS" + - kegg.pathway: + - "sce00230" + - "sce00250" - kegg.reaction: "R01135" - metanetx.reaction: "MNXR95495" - sbo: "SBO:0000176" @@ -32781,12 +32781,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL001C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: "2.7.1.25" - bigg.reaction: "ADSK" + - kegg.pathway: + - "sce00230" + - "sce00920" - kegg.reaction: "R00509" - metanetx.reaction: "MNXR95159" - pmid: "1654509" @@ -32821,17 +32821,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFL030W" - - subsystem: - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.6.1.44" - bigg.reaction: "AGTi" + - kegg.pathway: + - "sce00250" + - "sce00260" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce04146" - kegg.reaction: "R00369" - metanetx.reaction: "MNXR95618" - sbo: "SBO:0000176" @@ -32849,10 +32849,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR335C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.7" - bigg.reaction: "ALATRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03038" - metanetx.reaction: "MNXR107903" - pmid: "7761427" @@ -32959,15 +32959,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR303C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD2x" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R00754" - metanetx.reaction: "MNXR95725" - pmid: "12702265" @@ -32985,12 +32985,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR368W or YHR104W" - - subsystem: "sce00040 Pentose and glucuronate interconversions" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.21" - bigg.reaction: "ALCD19y" + - kegg.pathway: "sce00040" - kegg.reaction: "R01041" - metanetx.reaction: "MNXR95711" - pmid: "12210903" @@ -33008,15 +33008,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD2irm" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R00754" - metanetx.reaction: "MNXR95725" - pmid: "12499363" @@ -33034,19 +33034,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.1" - "1.1.1.284" - bigg.reaction: "ALCD22xi" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" - metanetx.reaction: "MNXR95716" - pmid: "12702265" - sbo: "SBO:0000176" @@ -33063,15 +33063,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD22xim" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95716" - pmid: "12499363" - sbo: "SBO:0000176" @@ -33088,17 +33088,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00040 Pentose and glucuronate interconversions" - - "sce00561 Glycerolipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.2" - bigg.reaction: "ALCD22yi" + - kegg.pathway: + - "sce00010" + - "sce00040" + - "sce00561" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95717" - pmid: - "12210903" @@ -33117,19 +33117,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.1" - "1.1.1.284" - bigg.reaction: "ALCD25xi" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R02611" - metanetx.reaction: "MNXR95722" - pmid: "12702265" @@ -33147,15 +33147,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD25xim" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R02611" - metanetx.reaction: "MNXR95722" - pmid: "12499363" @@ -33173,15 +33173,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YMR318C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00040 Pentose and glucuronate interconversions" - - "sce00561 Glycerolipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.2" - bigg.reaction: "ALCD25yi" + - kegg.pathway: + - "sce00010" + - "sce00040" + - "sce00561" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95723" - pmid: - "11742541" @@ -33201,16 +33201,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR110C or YMR169C or YMR170C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00340 Histidine metabolism" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "1.2.1.3" - bigg.reaction: "ALDD22x" + - kegg.pathway: + - "sce00010" + - "sce00340" + - "sce00350" + - "sce00360" + - "sce00410" + - "sce01110" - kegg.reaction: "R00904" - metanetx.reaction: "MNXR95748" - pmid: "12586697" @@ -33229,22 +33229,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL061W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00310 Lysine degradation" - - "sce00330 Arginine and proline metabolism" - - "sce00340 Histidine metabolism" - - "sce00380 Tryptophan metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce00561 Glycerolipid metabolism" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.2.1.4" - bigg.reaction: "ALDD2y" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - kegg.reaction: "R00711" - metanetx.reaction: "MNXR95750" - pmid: "15256563" @@ -33263,22 +33263,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR374W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00310 Lysine degradation" - - "sce00330 Arginine and proline metabolism" - - "sce00340 Histidine metabolism" - - "sce00380 Tryptophan metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce00561 Glycerolipid metabolism" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.2.1.5" - bigg.reaction: "ALDD2xm" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - kegg.reaction: "R00710" - metanetx.reaction: "MNXR95749" - pmid: "15256563" @@ -33297,22 +33297,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER073W or YOR374W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00310 Lysine degradation" - - "sce00330 Arginine and proline metabolism" - - "sce00340 Histidine metabolism" - - "sce00380 Tryptophan metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce00561 Glycerolipid metabolism" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.2.1.5" - bigg.reaction: "ALDD2ym" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - kegg.reaction: "R00711" - metanetx.reaction: "MNXR95750" - pmid: "15256563" @@ -33331,22 +33331,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR374W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00310 Lysine degradation" - - "sce00330 Arginine and proline metabolism" - - "sce00340 Histidine metabolism" - - "sce00380 Tryptophan metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce00561 Glycerolipid metabolism" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.2.1.5" - bigg.reaction: "ALDD20xm" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - kegg.reaction: "R02678" - metanetx.reaction: "MNXR95744" - sbo: "SBO:0000176" @@ -33364,22 +33364,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL061W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00310 Lysine degradation" - - "sce00330 Arginine and proline metabolism" - - "sce00340 Histidine metabolism" - - "sce00380 Tryptophan metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce00561 Glycerolipid metabolism" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.2.1.4" - bigg.reaction: "ALDD20y" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95746" - sbo: "SBO:0000176" - confidence_score: 2 @@ -33396,22 +33396,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER073W or YOR374W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00310 Lysine degradation" - - "sce00330 Arginine and proline metabolism" - - "sce00340 Histidine metabolism" - - "sce00380 Tryptophan metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce00561 Glycerolipid metabolism" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.2.1.5" - bigg.reaction: "ALDD20ym" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95746" - pmid: "9675847" - sbo: "SBO:0000176" @@ -33428,19 +33428,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.1" - "1.1.1.284" - bigg.reaction: "ALCD24xi" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R05685" - metanetx.reaction: "MNXR138038" - pmid: "12702265" @@ -33458,15 +33458,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD24xim" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R05685" - metanetx.reaction: "MNXR138038" - pmid: "12499363" @@ -33484,15 +33484,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YMR318C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00040 Pentose and glucuronate interconversions" - - "sce00561 Glycerolipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.2" - bigg.reaction: "ALCD24yi" + - kegg.pathway: + - "sce00010" + - "sce00040" + - "sce00561" + - "sce01110" + - "sce01130" - kegg.reaction: "R05686" - metanetx.reaction: "MNXR138039" - pmid: @@ -33512,19 +33512,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.1" - "1.1.1.284" - bigg.reaction: "ALCD23xi" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" - metanetx.reaction: "MNXR95718" - pmid: "12702265" - sbo: "SBO:0000176" @@ -33541,15 +33541,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD23xim" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95718" - pmid: "12499363" - sbo: "SBO:0000176" @@ -33566,15 +33566,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YMR318C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00040 Pentose and glucuronate interconversions" - - "sce00561 Glycerolipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.2" - bigg.reaction: "ALCD23yi" + - kegg.pathway: + - "sce00010" + - "sce00040" + - "sce00561" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95719" - pmid: - "11742541" @@ -33594,16 +33594,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR169C or YMR170C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00340 Histidine metabolism" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "1.2.1.3" - bigg.reaction: "ALDD19xr" + - kegg.pathway: + - "sce00010" + - "sce00340" + - "sce00350" + - "sce00360" + - "sce00410" + - "sce01110" - kegg.reaction: "R02536" - metanetx.reaction: "MNXR95743" - pmid: "8801420" @@ -33621,19 +33621,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.1" - "1.1.1.284" - bigg.reaction: "ALCD26xi" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R02679" - metanetx.reaction: "MNXR95724" - pmid: "12702265" @@ -33651,15 +33651,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD26xim" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R02679" - metanetx.reaction: "MNXR95724" - pmid: "12499363" @@ -33677,15 +33677,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR481C" - - subsystem: - - "sce00730 Thiamine metabolism" - - "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: - "3.1.3.1" - "3.1.3.54" - "3.1.7.6" - bigg.reaction: "AKP1" + - kegg.pathway: + - "sce00730" + - "sce00790" - kegg.reaction: "R04620" - metanetx.reaction: "MNXR139295" - sbo: "SBO:0000176" @@ -33701,10 +33701,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIR029W" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "3.5.3.4" - bigg.reaction: "ALLTAHr" + - kegg.pathway: "sce00230" - kegg.reaction: "R02422" - metanetx.reaction: "MNXR95767" - pmid: "4604238" @@ -33721,10 +33721,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIR027C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "3.5.2.5" - bigg.reaction: "ALLTN" + - kegg.pathway: "sce00230" - kegg.reaction: "R02424" - metanetx.reaction: "MNXR95769" - pmid: "4604238" @@ -33742,14 +33742,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR208C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00791 Atrazine degradation" - annotation: !!omap - ec-code: - "3.5.1.54" - "6.3.4.6" - bigg.reaction: "ALPHNH" + - kegg.pathway: + - "sce00220" + - "sce00791" - kegg.reaction: "R00005" - metanetx.reaction: "MNXR95786" - sbo: "SBO:0000176" @@ -33766,11 +33766,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR199W or YBR205W or YDR483W or YJL139C or YKR061W or YNL029C or YOR099W or YPL053C" - - subsystem: - - "sce00513 Various types of N-glycan biosynthesis" - - "sce00514 Other types of O-glycan biosynthesis" - annotation: !!omap - ec-code: "2.4.1.-" + - kegg.pathway: + - "sce00513" + - "sce00514" - kegg.reaction: "R05002" - metanetx.reaction: "MNXR109280" - pmid: @@ -33790,10 +33790,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR026W or YBR001C" - - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: "3.2.1.28" - bigg.reaction: "TREHv" + - kegg.pathway: "sce00500" - kegg.reaction: "R00010" - metanetx.reaction: "MNXR95163" - sbo: "SBO:0000176" @@ -33808,10 +33808,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR001C" - - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: "3.2.1.28" - bigg.reaction: "TREH" + - kegg.pathway: "sce00500" - kegg.reaction: "R00010" - metanetx.reaction: "MNXR95163" - pmid: "8764988" @@ -33829,12 +33829,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR126C and YDR074W and YML100W) or (YBR126C and YDR074W and YMR261C)" - - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: - "2.4.1.15" - "3.1.3.12" - bigg.reaction: "TRE6PS" + - kegg.pathway: "sce00500" - kegg.reaction: "R00836" - metanetx.reaction: "MNXR143415" - pmid: "21623372" @@ -33850,14 +33850,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR299W or YGR287C or YGR292W or YIL172C or YJL216C or YJL221C" - - subsystem: - - "sce00052 Galactose metabolism" - - "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: - "3.2.1.10" - "3.2.1.20" - bigg.reaction: "MALT" + - kegg.pathway: + - "sce00052" + - "sce00500" - kegg.reaction: "R00028" - metanetx.reaction: "MNXR101350" - sbo: "SBO:0000176" @@ -33873,10 +33873,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR242W or YMR293C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.3.5.7" - bigg.reaction: "AMID" + - kegg.pathway: "sce00970" - kegg.reaction: "R03180" - metanetx.reaction: "MNXR95812" - sbo: "SBO:0000176" @@ -33914,22 +33914,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR374W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00310 Lysine degradation" - - "sce00330 Arginine and proline metabolism" - - "sce00340 Histidine metabolism" - - "sce00380 Tryptophan metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce00561 Glycerolipid metabolism" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.2.1.5" - bigg.reaction: "ABUTDm" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - kegg.reaction: "R02549" - metanetx.reaction: "MNXR95191" - sbo: "SBO:0000176" @@ -33945,14 +33945,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR354W" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.4.2.18" - bigg.reaction: "ANPRT" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01073" - metanetx.reaction: "MNXR95842" - sbo: "SBO:0000176" @@ -33970,14 +33970,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER090W and YKL211C" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.1.3.27" - bigg.reaction: "ANS" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R00986" - metanetx.reaction: "MNXR95843" - pmid: "8001582" @@ -33994,10 +33994,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR305C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "3.6.1.29" - bigg.reaction: "AP4AH" + - kegg.pathway: "sce00230" - kegg.reaction: "R00125" - metanetx.reaction: "MNXR95856" - sbo: "SBO:0000176" @@ -34014,12 +34014,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR104W" - - subsystem: "sce00040 Pentose and glucuronate interconversions" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.21" - bigg.reaction: "ARABR" + - kegg.pathway: "sce00040" - kegg.reaction: "R01759" - metanetx.reaction: "MNXR107158" - sbo: "SBO:0000176" @@ -34035,15 +34035,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL111W" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00330 Arginine and proline metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "3.5.3.1" - bigg.reaction: "ARGN" + - kegg.pathway: + - "sce00220" + - "sce00330" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R00551" - metanetx.reaction: "MNXR95945" - sbo: "SBO:0000176" @@ -34058,15 +34058,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR018C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.3.2.1" - bigg.reaction: "ARGSL" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01086" - metanetx.reaction: "MNXR138059" - sbo: "SBO:0000176" @@ -34085,15 +34085,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOL058W" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "6.3.4.5" - bigg.reaction: "ARGSS" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01954" - metanetx.reaction: "MNXR138060" - pmid: "35347" @@ -34112,10 +34112,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR341C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.19" - bigg.reaction: "ARGTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03646" - metanetx.reaction: "MNXR95950" - sbo: "SBO:0000176" @@ -34133,10 +34133,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR091C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.19" - bigg.reaction: "ARGTRSm" + - kegg.pathway: "sce00970" - kegg.reaction: "R03646" - metanetx.reaction: "MNXR95950" - sbo: "SBO:0000176" @@ -34157,12 +34157,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR124W or YPR145W" - - subsystem: - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "6.3.5.4" - bigg.reaction: "ASNS1" + - kegg.pathway: + - "sce00250" + - "sce01110" - kegg.reaction: "R00578" - metanetx.reaction: "MNXR96059" - pmid: "9881155" @@ -34181,10 +34181,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR019C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.22" - bigg.reaction: "ASNTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03648" - metanetx.reaction: "MNXR96064" - pmid: "9605503" @@ -34203,10 +34203,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR024C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.22" - bigg.reaction: "ASNTRSm" + - kegg.pathway: "sce00970" - kegg.reaction: "R03648" - metanetx.reaction: "MNXR96064" - pmid: "9605503" @@ -34224,14 +34224,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL130C" - - subsystem: - - "sce00240 Pyrimidine metabolism" - - "sce00250 Alanine, aspartate and glutamate metabolism" - annotation: !!omap - ec-code: - "2.1.3.2" - "6.3.5.5" - bigg.reaction: "ASPCT" + - kegg.pathway: + - "sce00240" + - "sce00250" - kegg.reaction: "R01397" - metanetx.reaction: "MNXR96080" - sbo: "SBO:0000176" @@ -34247,18 +34247,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER052C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00261 Monobactam biosynthesis" - - "sce00270 Cysteine and methionine metabolism" - - "sce00300 Lysine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.7.2.4" - bigg.reaction: "ASPK" + - kegg.pathway: + - "sce00260" + - "sce00261" + - "sce00270" + - "sce00300" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00480" - metanetx.reaction: "MNXR96085" - pmid: "9315655" @@ -34275,22 +34275,22 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR027C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00330 Arginine and proline metabolism" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "ASPTA" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00355" - metanetx.reaction: "MNXR96079" - pmid: "1859361" @@ -34307,22 +34307,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL106W" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00330 Arginine and proline metabolism" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "ASPTAm" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00355" - metanetx.reaction: "MNXR96079" - pmid: "1482685" @@ -34339,22 +34339,22 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR027C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00330 Arginine and proline metabolism" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "ASPTAp" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00355" - metanetx.reaction: "MNXR96079" - pmid: "9288922" @@ -34373,18 +34373,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR158W" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00261 Monobactam biosynthesis" - - "sce00270 Cysteine and methionine metabolism" - - "sce00300 Lysine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.2.1.11" - bigg.reaction: "ASAD" + - kegg.pathway: + - "sce00260" + - "sce00261" + - "sce00270" + - "sce00300" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R02291" - metanetx.reaction: "MNXR96039" - pmid: "2570346" @@ -34403,10 +34403,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLL018C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.12" - bigg.reaction: "ASPTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R05577" - metanetx.reaction: "MNXR96101" - pmid: "3902099" @@ -34425,10 +34425,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL104W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.12" - bigg.reaction: "ASPTRSm" + - kegg.pathway: "sce00970" - kegg.reaction: "R05577" - metanetx.reaction: "MNXR96101" - pmid: "2668951" @@ -34446,12 +34446,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR530C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: - "2.7.7.5" - "2.7.7.53" - bigg.reaction: "ATPATF1" + - kegg.pathway: "sce00230" - kegg.reaction: "R00126" - metanetx.reaction: "MNXR95435" - sbo: "SBO:0000176" @@ -34468,14 +34468,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL050C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: - "2.7.7.5" - "2.7.7.53" - bigg.reaction: "ATPATF2" + - kegg.pathway: + - "sce00230" + - "sce00920" - metanetx.reaction: "MNXR136085" - sbo: "SBO:0000176" - confidence_score: 2 @@ -34491,14 +34491,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL050C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: - "2.7.7.5" - "2.7.7.53" - bigg.reaction: "ATPATF3" + - kegg.pathway: + - "sce00230" + - "sce00920" - metanetx.reaction: "MNXR96127" - sbo: "SBO:0000176" - confidence_score: 2 @@ -34513,13 +34513,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER055C" - - subsystem: - - "sce00340 Histidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.4.2.17" - bigg.reaction: "ATPPRT" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R01071" - metanetx.reaction: "MNXR96132" - sbo: "SBO:0000176" @@ -34537,10 +34537,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR322C-A and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W) or (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W and YPR020W) or (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR322C-A and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W and YJL180C and YLR393W and YNL315C and YOL077W-A and YCL005W-A)" - - subsystem: "sce00190 Oxidative phosphorylation" - annotation: !!omap - ec-code: "3.6.3.14" - bigg.reaction: "ATPS3m" + - kegg.pathway: "sce00190" - metanetx.reaction: "MNXR96136" - pmid: - "6223276" @@ -34559,15 +34559,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YCR024C-A and YEL017C-A and YGL008C) or (YCR024C-A and YEL017C-A and YPL036W) or YER005W" - - subsystem: - - "sce00190 Oxidative phosphorylation" - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: - "3.6.1.5" - "3.6.3.6" - bigg.reaction: "ATPS" + - kegg.pathway: + - "sce00190" + - "sce00230" + - "sce00240" - kegg.reaction: "R00086" - metanetx.reaction: "MNXR96131" - pmid: "10409709" @@ -34585,11 +34585,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR110W" - - subsystem: - - "sce00510 N-Glycan biosynthesis" - - "sce00513 Various types of N-glycan biosynthesis" - annotation: !!omap - ec-code: "2.4.1.142" + - kegg.pathway: + - "sce00510" + - "sce00513" - kegg.reaction: "R04502" - metanetx.reaction: "MNXR108930" - pmid: "6368538" @@ -34606,9 +34606,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR286C" - - subsystem: "sce00780 Biotin metabolism" - annotation: !!omap - ec-code: "2.8.1.6" + - kegg.pathway: "sce00780" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -34623,7 +34623,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL141W" - - subsystem: "sce00780 Biotin metabolism" - annotation: !!omap - ec-code: - "6.3.4.-" @@ -34632,6 +34631,7 @@ - "6.3.4.15" - "6.3.4.9" - bigg.reaction: "BACCL" + - kegg.pathway: "sce00780" - kegg.reaction: "R01074" - metanetx.reaction: "MNXR96208" - pmid: "9688262" @@ -34649,13 +34649,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL280C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.3.1.70" - bigg.reaction: "C14STR" + - kegg.pathway: + - "sce00100" + - "sce01110" + - "sce01130" - kegg.reaction: "R05639" - metanetx.reaction: "MNXR109728" - sbo: "SBO:0000176" @@ -34674,12 +34674,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR015C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.14.19.41" - bigg.reaction: "C22STDS" + - kegg.pathway: + - "sce00100" + - "sce01130" - kegg.reaction: "R07506" - metanetx.reaction: "MNXR123636" - sbo: "SBO:0000176" @@ -34696,11 +34696,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL001C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.170" + - kegg.pathway: + - "sce00100" + - "sce01130" - pmid: "22194828" - sbo: "SBO:0000176" - confidence_score: 3 @@ -34716,11 +34716,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL001C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.170" + - kegg.pathway: + - "sce00100" + - "sce01130" - metanetx.reaction: "MNXR128630" - sbo: "SBO:0000176" - confidence_score: 2 @@ -34736,11 +34736,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR100W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.270" + - kegg.pathway: + - "sce00100" + - "sce01130" - kegg.reaction: "R07495" - metanetx.reaction: "MNXR111123" - sbo: "SBO:0000176" @@ -34757,12 +34757,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR100W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.270" - bigg.reaction: "HMR_1509" + - kegg.pathway: + - "sce00100" + - "sce01130" - metanetx.reaction: "MNXR123719" - sbo: "SBO:0000176" - confidence_score: 2 @@ -34780,11 +34780,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR060W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.14.13.72" + - kegg.pathway: + - "sce00100" + - "sce01130" - metanetx.reaction: "MNXR128521" - sbo: "SBO:0000176" - confidence_score: 2 @@ -34802,12 +34802,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR060W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.14.13.72" - bigg.reaction: "HMR_1503" + - kegg.pathway: + - "sce00100" + - "sce01130" - metanetx.reaction: "MNXR128522" - sbo: "SBO:0000176" - confidence_score: 2 @@ -34824,11 +34824,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR060W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.14.13.72" + - kegg.pathway: + - "sce00100" + - "sce01130" - pmid: "22194828" - sbo: "SBO:0000176" - confidence_score: 3 @@ -34846,11 +34846,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR060W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.14.13.72" + - kegg.pathway: + - "sce00100" + - "sce01130" - kegg.reaction: "R07509" - metanetx.reaction: "MNXR111130" - sbo: "SBO:0000176" @@ -34869,13 +34869,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR056W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.14.19.20" - bigg.reaction: "C5STDS" + - kegg.pathway: + - "sce00100" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR126641" - sbo: "SBO:0000176" - confidence_score: 2 @@ -34888,12 +34888,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR202W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "5.-.-.-" - bigg.reaction: "C8STI" + - kegg.pathway: + - "sce00100" + - "sce01130" - kegg.reaction: "R07497" - metanetx.reaction: "MNXR96432" - sbo: "SBO:0000176" @@ -34910,12 +34910,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL012W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.3.1.71" - bigg.reaction: "C24STRer" + - kegg.pathway: + - "sce00100" + - "sce01130" - kegg.reaction: "R05641" - metanetx.reaction: "MNXR96407" - sbo: "SBO:0000176" @@ -34931,11 +34931,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL090C and YKL019W" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.5.1.58" + - kegg.pathway: + - "sce00900" + - "sce01130" - kegg.reaction: "R07273" - metanetx.reaction: "MNXR110956" - pmid: "1763050" @@ -34957,14 +34957,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL130C and YJR109C and YOR303W" - - subsystem: - - "sce00240 Pyrimidine metabolism" - - "sce00250 Alanine, aspartate and glutamate metabolism" - annotation: !!omap - ec-code: - "2.1.3.2" - "6.3.5.5" - bigg.reaction: "CBPS" + - kegg.pathway: + - "sce00240" + - "sce00250" - kegg.reaction: "R00575" - metanetx.reaction: "MNXR96485" - sbo: "SBO:0000176" @@ -34980,10 +34980,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAR035W or YER024W" - - subsystem: "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.7" - bigg.reaction: "CSNATr" + - kegg.pathway: "sce04146" - kegg.reaction: "R02396" - metanetx.reaction: "MNXR96926" - pmid: "11329169" @@ -35000,10 +35000,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML042W" - - subsystem: "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.7" - bigg.reaction: "CSNATp" + - kegg.pathway: "sce04146" - kegg.reaction: "R02396" - metanetx.reaction: "MNXR96926" - sbo: "SBO:0000176" @@ -35019,10 +35019,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML042W" - - subsystem: "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.7" - bigg.reaction: "CSNATm" + - kegg.pathway: "sce04146" - kegg.reaction: "R02396" - metanetx.reaction: "MNXR96926" - sbo: "SBO:0000176" @@ -35037,18 +35037,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR088W" - - subsystem: - - "sce00380 Tryptophan metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04146 Peroxisome" - - "sce04213 Longevity regulating pathway - multiple species" - annotation: !!omap - ec-code: "1.11.1.6" - bigg.reaction: "CAT" + - kegg.pathway: + - "sce00380" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce04011" + - "sce04146" + - "sce04213" - kegg.reaction: "R00009" - metanetx.reaction: "MNXR96455" - pmid: "3536508" @@ -35064,18 +35064,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR256C" - - subsystem: - - "sce00380 Tryptophan metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04146 Peroxisome" - - "sce04213 Longevity regulating pathway - multiple species" - annotation: !!omap - ec-code: "1.11.1.6" - bigg.reaction: "CATp" + - kegg.pathway: + - "sce00380" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce04011" + - "sce04146" + - "sce04213" - kegg.reaction: "R00009" - metanetx.reaction: "MNXR96455" - pmid: "9931255" @@ -35095,9 +35095,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR297W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "1.-.-.-" + - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126673" - pmid: - "18296751" @@ -35140,9 +35140,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR297W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "1.-.-.-" + - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126661" - pmid: - "18296751" @@ -35183,10 +35183,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.24" - bigg.reaction: "CERS124er" + - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126659" - pmid: - "11387200" @@ -35206,10 +35206,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.24" - bigg.reaction: "CERS126er" + - kegg.pathway: "sce00600" - kegg.reaction: "R06517" - metanetx.reaction: "MNXR126619" - pmid: @@ -35230,10 +35230,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.24" - bigg.reaction: "CERS224er" + - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126660" - pmid: - "11387200" @@ -35253,10 +35253,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.24" - bigg.reaction: "CERS226er" + - kegg.pathway: "sce00600" - kegg.reaction: "R06527" - metanetx.reaction: "MNXR126618" - pmid: @@ -35365,9 +35365,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR307W or YLR308W" - - subsystem: "sce00520 Amino sugar and nucleotide sugar metabolism" - annotation: !!omap - ec-code: "3.5.1.41" + - kegg.pathway: "sce00520" - kegg.reaction: "R02333" - metanetx.reaction: "MNXR107444" - sbo: "SBO:0000176" @@ -35383,9 +35383,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR023C or YBR038W or YNL192W" - - subsystem: "sce00520 Amino sugar and nucleotide sugar metabolism" - annotation: !!omap - ec-code: "2.4.1.16" + - kegg.pathway: "sce00520" - kegg.reaction: "R02335" - metanetx.reaction: "MNXR107446" - pmid: "16408321" @@ -35403,10 +35403,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR133W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.1.32" - bigg.reaction: "CHOLK" + - kegg.pathway: "sce00564" - kegg.reaction: "R01021" - metanetx.reaction: "MNXR96702" - pmid: "10329685" @@ -35424,12 +35424,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR202C" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.7.15" - bigg.reaction: "CHLPCTD" + - kegg.pathway: + - "sce00440" + - "sce00564" - kegg.reaction: "R01890" - metanetx.reaction: "MNXR96686" - sbo: "SBO:0000176" @@ -35443,14 +35443,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR060C" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "5.4.99.5" - bigg.reaction: "CHORM" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01715" - metanetx.reaction: "MNXR96708" - pmid: "3027508" @@ -35466,14 +35466,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL148W" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.3.5" - bigg.reaction: "CHORS" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01714" - metanetx.reaction: "MNXR96709" - pmid: "8971708" @@ -35489,17 +35489,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR304C" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.3" - bigg.reaction: "ACN_b_m" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R01900" - metanetx.reaction: "MNXR95387" - pmid: "21623372" @@ -35516,11 +35516,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - kegg.reaction: "R02061" - metanetx.reaction: "MNXR99650" - pmid: "12702274" @@ -35537,11 +35537,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - kegg.reaction: "R07475" - metanetx.reaction: "MNXR100137" - pmid: "12702274" @@ -35558,11 +35558,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - kegg.reaction: "R05613" - metanetx.reaction: "MNXR103150" - pmid: "12702274" @@ -35579,11 +35579,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - kegg.reaction: "R05612" - metanetx.reaction: "MNXR100621" - pmid: "12702274" @@ -35600,11 +35600,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - kegg.reaction: "R05611" - metanetx.reaction: "MNXR109713" - pmid: "12702274" @@ -35621,11 +35621,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - kegg.reaction: "R07267" - metanetx.reaction: "MNXR110950" - pmid: "12702274" @@ -35642,11 +35642,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - kegg.reaction: "R08747" - metanetx.reaction: "MNXR112246" - pmid: "12702274" @@ -35663,11 +35663,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - metanetx.reaction: "MNXR105052" - pmid: "12702274" - sbo: "SBO:0000176" @@ -35683,11 +35683,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - confidence_score: 3 @@ -35702,11 +35702,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - confidence_score: 3 @@ -35721,11 +35721,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - confidence_score: 3 @@ -35740,11 +35740,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - confidence_score: 3 @@ -35759,11 +35759,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - confidence_score: 3 @@ -35778,11 +35778,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - confidence_score: 3 @@ -35797,11 +35797,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - confidence_score: 3 @@ -35816,11 +35816,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - confidence_score: 3 @@ -35835,11 +35835,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - confidence_score: 3 @@ -35854,11 +35854,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - confidence_score: 3 @@ -35873,11 +35873,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - confidence_score: 3 @@ -35894,17 +35894,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNR001C or YPR001W" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.3.3.1" - bigg.reaction: "CSm" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00351" - metanetx.reaction: "MNXR96920" - pmid: "9140965" @@ -35923,17 +35923,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR005C" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.3.3.16" - bigg.reaction: "CSp" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00351" - metanetx.reaction: "MNXR96920" - pmid: "10587442" @@ -35949,17 +35949,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR304C" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.3" - bigg.reaction: "ACN_a_m" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R01325" - metanetx.reaction: "MNXR95386" - pmid: "21623372" @@ -35975,17 +35975,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR304C" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.3" - bigg.reaction: "ACONTa" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R01325" - metanetx.reaction: "MNXR95386" - pmid: "15975908" @@ -36004,12 +36004,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR044W" - - subsystem: - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "1.3.3.3" - bigg.reaction: "CPPPGO" + - kegg.pathway: + - "sce00860" + - "sce01110" - kegg.reaction: "R03220" - metanetx.reaction: "MNXR96880" - sbo: "SBO:0000176" @@ -36030,10 +36030,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL039C or YJR103W" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "6.3.4.2" - bigg.reaction: "CTPS2" + - kegg.pathway: "sce00240" - kegg.reaction: "R00573" - metanetx.reaction: "MNXR96945" - sbo: "SBO:0000176" @@ -36052,10 +36052,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL039C or YJR103W" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "6.3.4.2" - bigg.reaction: "CTPS1" + - kegg.pathway: "sce00240" - kegg.reaction: "R00571" - metanetx.reaction: "MNXR96944" - sbo: "SBO:0000176" @@ -36072,14 +36072,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR055W or YGL184C" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00450 Selenocompound metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.4.1.8" - bigg.reaction: "CYSTL" + - kegg.pathway: + - "sce00270" + - "sce00450" + - "sce01110" + - "sce01230" - kegg.reaction: "R01286" - metanetx.reaction: "MNXR96469" - pmid: "10922376" @@ -36096,14 +36096,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR155W" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.22" - bigg.reaction: "CYSTS" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce01130" + - "sce01230" - kegg.reaction: "R01290" - metanetx.reaction: "MNXR97019" - pmid: "10766767" @@ -36121,15 +36121,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL012W" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00450 Selenocompound metabolism" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.4.1.1" - bigg.reaction: "CYSTGL" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce00450" + - "sce01130" + - "sce01230" - kegg.reaction: "R01001" - metanetx.reaction: "MNXR97012" - pmid: "1577698" @@ -36147,16 +36147,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR130C" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00450 Selenocompound metabolism" - - "sce00920 Sulfur metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.5.1.48" - bigg.reaction: "METB1" + - kegg.pathway: + - "sce00270" + - "sce00450" + - "sce00920" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03217" - metanetx.reaction: "MNXR95637" - pmid: "10821189" @@ -36173,18 +36173,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR303W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00920 Sulfur metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "2.5.1.47" - "2.5.1.49" - bigg.reaction: "CYSS" + - kegg.pathway: + - "sce00270" + - "sce00920" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00897" - metanetx.reaction: "MNXR97007" - pmid: @@ -36205,10 +36205,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL247W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.16" - bigg.reaction: "CYSTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03650" - metanetx.reaction: "MNXR97018" - pmid: "9523015" @@ -36226,10 +36226,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR245C" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.5.4.5" - bigg.reaction: "CYTD" + - kegg.pathway: "sce00240" - kegg.reaction: "R01878" - metanetx.reaction: "MNXR97039" - sbo: "SBO:0000176" @@ -36246,10 +36246,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNR012W" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "2.7.1.48" - bigg.reaction: "CYTDK2" + - kegg.pathway: "sce00240" - kegg.reaction: "R00517" - metanetx.reaction: "MNXR97042" - sbo: "SBO:0000176" @@ -36269,15 +36269,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR007C and YHR042W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "1.14.13.70" - "1.6.2.4" - bigg.reaction: "LNS14DM" + - kegg.pathway: + - "sce00100" + - "sce01110" + - "sce01130" - kegg.reaction: "R05640" - metanetx.reaction: "MNXR109729" - pmid: "10622712" @@ -36295,12 +36295,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR062W" - - subsystem: - - "sce00240 Pyrimidine metabolism" - - "sce00330 Arginine and proline metabolism" - annotation: !!omap - ec-code: "3.5.4.1" - bigg.reaction: "CSND" + - kegg.pathway: + - "sce00240" + - "sce00330" - kegg.reaction: "R00974" - metanetx.reaction: "MNXR96927" - sbo: "SBO:0000176" @@ -36373,17 +36373,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL060C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00030 Pentose phosphate pathway" - - "sce00051 Fructose and mannose metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.1.2.13" - bigg.reaction: "FBA2" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00051" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R02568" - metanetx.reaction: "MNXR99460" - sbo: "SBO:0000176" @@ -36400,12 +36400,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL246C or YJR159W" - - subsystem: - - "sce00040 Pentose and glucuronate interconversions" - - "sce00051 Fructose and mannose metabolism" - annotation: !!omap - ec-code: "1.1.1.14" - bigg.reaction: "SBTD_D2" + - kegg.pathway: + - "sce00040" + - "sce00051" - kegg.reaction: "R00875" - metanetx.reaction: "MNXR104283" - sbo: "SBO:0000176" @@ -36422,10 +36422,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR144C" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.5.4.12" - bigg.reaction: "DCMPDA" + - kegg.pathway: "sce00240" - kegg.reaction: "R01663" - metanetx.reaction: "MNXR97185" - sbo: "SBO:0000176" @@ -36442,10 +36442,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR144C" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.5.4.12" - bigg.reaction: "DCTPD" + - kegg.pathway: "sce00240" - kegg.reaction: "R02325" - metanetx.reaction: "MNXR97201" - sbo: "SBO:0000176" @@ -36462,10 +36462,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL141W" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "3.5.4.2" - bigg.reaction: "DADA" + - kegg.pathway: "sce00230" - kegg.reaction: "R02556" - metanetx.reaction: "MNXR97076" - sbo: "SBO:0000176" @@ -36482,10 +36482,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR245C" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.5.4.5" - bigg.reaction: "DCYTD" + - kegg.pathway: "sce00240" - kegg.reaction: "R02485" - metanetx.reaction: "MNXR97207" - sbo: "SBO:0000176" @@ -36501,10 +36501,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR454C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "2.7.4.8" - bigg.reaction: "DGK1" + - kegg.pathway: "sce00230" - kegg.reaction: "R02090" - metanetx.reaction: "MNXR97320" - sbo: "SBO:0000176" @@ -36539,10 +36539,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR036W" - - subsystem: "sce00030 Pentose phosphate pathway" - annotation: !!omap - ec-code: "2.7.1.15" - bigg.reaction: "DRBK" + - kegg.pathway: "sce00030" - kegg.reaction: "R02750" - metanetx.reaction: "MNXR97781" - sbo: "SBO:0000176" @@ -36559,10 +36559,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR196C" - - subsystem: "sce00770 Pantothenate and CoA biosynthesis" - annotation: !!omap - ec-code: "2.7.1.24" - bigg.reaction: "DPCOAKm" + - kegg.pathway: "sce00770" - kegg.reaction: "R00130" - metanetx.reaction: "MNXR97762" - sbo: "SBO:0000176" @@ -36581,10 +36581,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR057C" - - subsystem: "sce00780 Biotin metabolism" - annotation: !!omap - ec-code: "6.3.3.3" - bigg.reaction: "DBTS" + - kegg.pathway: "sce00780" - kegg.reaction: "R03182" - metanetx.reaction: "MNXR97180" - sbo: "SBO:0000176" @@ -36600,9 +36600,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPL087W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126695" - pmid: - "10900202" @@ -36620,9 +36620,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPL087W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00600" - pmid: - "10900202" - "18296751" @@ -36639,9 +36639,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL087W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126696" - pmid: - "10900202" @@ -36659,9 +36659,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL087W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126694" - pmid: - "10900202" @@ -36680,12 +36680,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR236W" - - subsystem: - - "sce00670 One carbon pool by folate" - - "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: "1.5.1.3" - bigg.reaction: "DHFR" + - kegg.pathway: + - "sce00670" + - "sce00790" - kegg.reaction: "R00939" - metanetx.reaction: "MNXR97401" - sbo: "SBO:0000176" @@ -36702,12 +36702,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR236W" - - subsystem: - - "sce00670 One carbon pool by folate" - - "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: "1.5.1.3" - bigg.reaction: "DHFRim" + - kegg.pathway: + - "sce00670" + - "sce00790" - kegg.reaction: "R00939" - metanetx.reaction: "MNXR97401" - sbo: "SBO:0000176" @@ -36726,10 +36726,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR113W" - - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: "6.3.2.12" - bigg.reaction: "DHFS" + - kegg.pathway: "sce00790" - kegg.reaction: "R02237" - metanetx.reaction: "MNXR140043" - pmid: "11731153" @@ -36745,12 +36745,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL256W" - - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: - "2.5.1.15" - "2.7.6.3" - "4.1.2.25" + - kegg.pathway: "sce00790" - kegg.reaction: "R03504" - metanetx.reaction: "MNXR97415" - sbo: "SBO:0000176" @@ -36784,10 +36784,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR420W" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.5.2.3" - bigg.reaction: "DHORTS" + - kegg.pathway: "sce00240" - kegg.reaction: "R01993" - metanetx.reaction: "MNXR97428" - pmid: "2897615" @@ -36804,12 +36804,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL256W" - - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: - "2.5.1.15" - "2.7.6.3" - "4.1.2.25" + - kegg.pathway: "sce00790" - kegg.reaction: "R03066" - metanetx.reaction: "MNXR140386" - sbo: "SBO:0000176" @@ -36825,13 +36825,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL256W" - - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: - "2.5.1.15" - "2.7.6.3" - "4.1.2.25" - bigg.reaction: "FOLD3m" + - kegg.pathway: "sce00790" - kegg.reaction: "R03067" - metanetx.reaction: "MNXR140085" - sbo: "SBO:0000176" @@ -36846,16 +36846,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR016C" - - subsystem: - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.9" - bigg.reaction: "DHAD1m" + - kegg.pathway: + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R04441" - metanetx.reaction: "MNXR97358" - pmid: "14576278" @@ -36871,16 +36871,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR016C" - - subsystem: - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.9" - bigg.reaction: "DHAD2m" + - kegg.pathway: + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R05070" - metanetx.reaction: "MNXR97359" - pmid: "14576278" @@ -36898,15 +36898,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFL053W or YML070W" - - subsystem: - - "sce00051 Fructose and mannose metabolism" - - "sce00561 Glycerolipid metabolism" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "2.7.1.28" - "2.7.1.29" - bigg.reaction: "DHAK" + - kegg.pathway: + - "sce00051" + - "sce00561" + - "sce01200" - kegg.reaction: "R01011" - metanetx.reaction: "MNXR97361" - sbo: "SBO:0000176" @@ -36922,15 +36922,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL167W" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "2.5.1.1" - "2.5.1.10" - bigg.reaction: "DMATT" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R01658" - metanetx.reaction: "MNXR97512" - sbo: "SBO:0000176" @@ -36945,16 +36945,16 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL152C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "5.4.2.11" - bigg.reaction: "DPGM" + - kegg.pathway: + - "sce00010" + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01662" - metanetx.reaction: "MNXR107112" - pmid: "6313356" @@ -36993,11 +36993,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR017C" - - subsystem: - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: "2.7.4.21" + - kegg.pathway: + - "sce04070" + - "sce04138" - pmid: "11956213" - sbo: "SBO:0000176" - confidence_score: 3 @@ -37033,10 +37033,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR013C" - - subsystem: "sce00510 N-Glycan biosynthesis" - annotation: !!omap - ec-code: "2.7.1.108" - bigg.reaction: "DOLK" + - kegg.pathway: "sce00510" - kegg.reaction: "R01018" - metanetx.reaction: "MNXR106791" - sbo: "SBO:0000176" @@ -37053,10 +37053,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR183W" - - subsystem: "sce00510 N-Glycan biosynthesis" - annotation: !!omap - ec-code: "2.4.1.83" - bigg.reaction: "DOLPMTcer" + - kegg.pathway: "sce00510" - kegg.reaction: "R01009" - metanetx.reaction: "MNXR106788" - sbo: "SBO:0000176" @@ -37071,12 +37071,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YAL023C and YDL095W) or YDL093W or YJR143C or YOR321W" - - subsystem: - - "sce00514 Other types of O-glycan biosynthesis" - - "sce00515 Mannose type O-glycan biosynthesis" - annotation: !!omap - ec-code: "2.4.1.109" - bigg.reaction: "DOLPMMer" + - kegg.pathway: + - "sce00514" + - "sce00515" - metanetx.reaction: "MNXR136057" - sbo: "SBO:0000176" - confidence_score: 2 @@ -37091,10 +37091,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR057W" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "2.7.4.9" - bigg.reaction: "DTMPK" + - kegg.pathway: "sce00240" - kegg.reaction: "R02094" - metanetx.reaction: "MNXR97804" - sbo: "SBO:0000176" @@ -37111,10 +37111,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR069C or YBR252W" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.6.1.23" - bigg.reaction: "DUTPDP" + - kegg.pathway: "sce00240" - kegg.reaction: "R02100" - metanetx.reaction: "MNXR97822" - sbo: "SBO:0000176" @@ -37129,10 +37129,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR153W" - - subsystem: "sce00040 Pentose and glucuronate interconversions" - annotation: !!omap - ec-code: "3.2.1.15" - bigg.reaction: "EPGALURSe" + - kegg.pathway: "sce00040" - pmid: "10028181" - sbo: "SBO:0000176" - confidence_score: 3 @@ -37146,16 +37146,16 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPL281C or YGR254W or YHR174W or YMR323W or YOR393W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - - "sce03018 RNA degradation" - annotation: !!omap - ec-code: "4.2.1.11" - bigg.reaction: "ENO" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - "sce03018" - kegg.reaction: "R00658" - metanetx.reaction: "MNXR97932" - pmid: "7520111" @@ -37173,12 +37173,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR147W or YLR133W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: - "2.7.1.32" - "2.7.1.82" - bigg.reaction: "ETHAK" + - kegg.pathway: "sce00564" - kegg.reaction: "R01468" - metanetx.reaction: "MNXR97969" - pmid: "9506987" @@ -37212,12 +37212,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR261C or YGR282C or YLR300W or YNR067C or YOR190W" - - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: - "3.2.1.58" - "3.2.1.6" - bigg.reaction: "13BGHe" + - kegg.pathway: "sce00500" - kegg.reaction: "R00308" - metanetx.reaction: "MNXR106465" - pmid: "8458852" @@ -37234,10 +37234,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL069C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "2.5.1.-" @@ -37245,6 +37241,10 @@ - "2.5.1.10" - "2.5.1.29" - bigg.reaction: "FRTT" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R02061" - metanetx.reaction: "MNXR99650" - pmid: "7665600" @@ -37263,13 +37263,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER015W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR118203" - sbo: "SBO:0000176" - confidence_score: 2 @@ -37286,14 +37286,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER015W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL120p" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR120051" - sbo: "SBO:0000176" - confidence_score: 2 @@ -37310,14 +37310,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER015W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL160p" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - kegg.reaction: "R01280" - metanetx.reaction: "MNXR99153" - sbo: "SBO:0000176" @@ -37335,14 +37335,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER015W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL80p" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR99205" - sbo: "SBO:0000176" - confidence_score: 2 @@ -37359,14 +37359,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER015W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL140p" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126663" - sbo: "SBO:0000176" - confidence_score: 2 @@ -37381,12 +37381,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR176W" - - subsystem: - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.99.1.1" - bigg.reaction: "FCLTm" + - kegg.pathway: + - "sce00860" + - "sce01110" - kegg.reaction: "R00310" - metanetx.reaction: "MNXR99471" - sbo: "SBO:0000176" @@ -37402,10 +37402,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YEL039C and YKR066C) or (YJR048W and YKR066C)" - - subsystem: "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: "1.11.1.5" - bigg.reaction: "CCP2m" + - kegg.pathway: "sce00920" - kegg.reaction: "R00017" - metanetx.reaction: "MNXR138164" - sbo: "SBO:0000176" @@ -37423,11 +37423,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(Q0045 and Q0250 and Q0275 and YDL067C and YEL039C and YGL187C and YGL191W and YHR051W and YIL111W and YLR038C and YLR395C and YMR256C) or (Q0045 and Q0250 and Q0275 and YDL067C and YEL039C and YGL187C and YGL191W and YHR051W and YLR038C and YLR395C and YMR256C and YNL052W) or (Q0045 and Q0250 and Q0275 and YDL067C and YGL187C and YGL191W and YHR051W and YIL111W and YJR048W and YLR038C and YLR395C and YMR256C) or (Q0045 and Q0250 and Q0275 and YDL067C and YGL187C and YGL191W and YHR051W and YJR048W and YLR038C and YLR395C and YMR256C and YNL052W) or (Q0045 and Q0250 and Q0275 and YDL067C and YHR116W and YDR231C and YGR062C and YJL003W and YPL132W and YLL018C-A)" - - subsystem: - - "sce00190 Oxidative phosphorylation" - - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: "1.9.3.1" + - kegg.pathway: + - "sce00190" + - "sce00920" - kegg.reaction: "R00081" - metanetx.reaction: "MNXR138955" - pmid: "21964735" @@ -37446,11 +37446,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(Q0105 and YBL045C and YDR529C and YEL024W and YEL039C and YFR033C and YGR183C and YHR001W-A and YJL166W and YOR065W and YPR191W) or (Q0105 and YBL045C and YDR529C and YEL024W and YFR033C and YGR183C and YHR001W-A and YJL166W and YJR048W and YOR065W and YPR191W)" - - subsystem: - - "sce00190 Oxidative phosphorylation" - - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: "1.10.2.2" + - kegg.pathway: + - "sce00190" + - "sce00920" - sbo: "SBO:0000655" - confidence_score: 2 - !!omap @@ -37465,12 +37465,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL045C" - - subsystem: - - "sce00740 Riboflavin metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.7.2" - bigg.reaction: "FMNAT" + - kegg.pathway: + - "sce00740" + - "sce01110" - kegg.reaction: "R00161" - metanetx.reaction: "MNXR95501" - sbo: "SBO:0000176" @@ -37528,19 +37528,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL168W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.1" - "1.1.1.284" - bigg.reaction: "FALDH" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" - metanetx.reaction: "MNXR99236" - sbo: "SBO:0000176" - confidence_score: 2 @@ -37555,12 +37555,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR388C" - - subsystem: - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "1.2.1.2" - bigg.reaction: "FDH" + - kegg.pathway: + - "sce00630" + - "sce01200" - kegg.reaction: "R00519" - metanetx.reaction: "MNXR99475" - sbo: "SBO:0000176" @@ -37578,13 +37578,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR204W" - - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: - "1.5.1.5" - "3.5.4.9" - "6.3.4.3" - bigg.reaction: "FTHFLi" + - kegg.pathway: "sce00670" - kegg.reaction: "R00943" - metanetx.reaction: "MNXR99672" - pmid: @@ -37606,13 +37606,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR084W" - - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: - "1.5.1.5" - "3.5.4.9" - "6.3.4.3" - bigg.reaction: "FTHFLmi" + - kegg.pathway: "sce00670" - kegg.reaction: "R00943" - metanetx.reaction: "MNXR99672" - pmid: @@ -37632,10 +37632,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR345W or YJL155C" - - subsystem: "sce00051 Fructose and mannose metabolism" - annotation: !!omap - ec-code: "3.1.3.46" - bigg.reaction: "FBP26" + - kegg.pathway: "sce00051" - kegg.reaction: "R00763" - metanetx.reaction: "MNXR106671" - sbo: "SBO:0000176" @@ -37651,16 +37651,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR377C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00030 Pentose phosphate pathway" - - "sce00051 Fructose and mannose metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "3.1.3.11" - bigg.reaction: "FBP" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00051" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00762" - metanetx.reaction: "MNXR106670" - sbo: "SBO:0000176" @@ -37675,17 +37675,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL060C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00030 Pentose phosphate pathway" - - "sce00051 Fructose and mannose metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.1.2.13" - bigg.reaction: "FBA" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00051" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - metanetx.reaction: "MNXR124532" - pmid: "8435847" - sbo: "SBO:0000176" @@ -37700,15 +37700,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPL262W" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "4.2.1.2" - bigg.reaction: "FUMm" + - kegg.pathway: + - "sce00020" + - "sce00620" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R01082" - metanetx.reaction: "MNXR99705" - pmid: "9627400" @@ -37724,15 +37724,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPL262W" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "4.2.1.2" - bigg.reaction: "FUM" + - kegg.pathway: + - "sce00020" + - "sce00620" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R01082" - metanetx.reaction: "MNXR99705" - pmid: @@ -37751,10 +37751,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL216W" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "1.3.98.1" - bigg.reaction: "DHORDfum" + - kegg.pathway: "sce00240" - kegg.reaction: "R01867" - metanetx.reaction: "MNXR97425" - pmid: "1409592" @@ -37814,14 +37814,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR299W" - - subsystem: - - "sce00430 Taurine and hypotaurine metabolism" - - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: - "2.3.2.2" - "3.4.19.13" - bigg.reaction: "GTMLT" + - kegg.pathway: + - "sce00430" + - "sce00480" - metanetx.reaction: "MNXR100451" - sbo: "SBO:0000176" - confidence_score: 2 @@ -37837,12 +37837,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR020W" - - subsystem: - - "sce00052 Galactose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - annotation: !!omap - ec-code: "2.7.1.6" - bigg.reaction: "GALKr" + - kegg.pathway: + - "sce00052" + - "sce00520" - kegg.reaction: "R01092" - metanetx.reaction: "MNXR99985" - sbo: "SBO:0000176" @@ -37859,12 +37859,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR018C" - - subsystem: - - "sce00052 Galactose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - annotation: !!omap - ec-code: "2.7.7.12" - bigg.reaction: "GALT" + - kegg.pathway: + - "sce00052" + - "sce00520" - kegg.reaction: "R00502" - metanetx.reaction: "MNXR100014" - sbo: "SBO:0000176" @@ -37883,12 +37883,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL101C" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: "6.3.2.2" - bigg.reaction: "GLUCYS" + - kegg.pathway: + - "sce00270" + - "sce00480" - kegg.reaction: "R00894" - metanetx.reaction: "MNXR100074" - sbo: "SBO:0000176" @@ -37922,15 +37922,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL167W" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "2.5.1.1" - "2.5.1.10" - bigg.reaction: "GRTT" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R02003" - metanetx.reaction: "MNXR99634" - sbo: "SBO:0000176" @@ -37945,14 +37945,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR184W" - - subsystem: - - "sce00500 Starch and sucrose metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.4.1.25" - "3.2.1.33" - bigg.reaction: "GLCGSD" + - kegg.pathway: + - "sce00500" + - "sce01110" - metanetx.reaction: "MNXR100180" - pmid: "11094287" - sbo: "SBO:0000176" @@ -37967,10 +37967,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL099W" - - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: "3.2.1.3" - bigg.reaction: "GLCGSDv" + - kegg.pathway: "sce00500" - metanetx.reaction: "MNXR100180" - pmid: "11486014" - sbo: "SBO:0000176" @@ -38004,15 +38004,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL241C" - - subsystem: - - "sce00030 Pentose phosphate pathway" - - "sce00480 Glutathione metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "1.1.1.49" - bigg.reaction: "G6PDH2r" + - kegg.pathway: + - "sce00030" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00835" - metanetx.reaction: "MNXR99907" - pmid: "2269430" @@ -38027,17 +38027,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR196C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00030 Pentose phosphate pathway" - - "sce00500 Starch and sucrose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "5.3.1.9" - bigg.reaction: "PGI" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00771" - metanetx.reaction: "MNXR106678" - pmid: "8435847" @@ -38054,14 +38054,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR300C" - - subsystem: - - "sce00330 Arginine and proline metabolism" - - "sce00332 Carbapenem biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.7.2.11" - bigg.reaction: "GLU5K" + - kegg.pathway: + - "sce00330" + - "sce00332" + - "sce01130" + - "sce01230" - kegg.reaction: "R00239" - metanetx.reaction: "MNXR100277" - sbo: "SBO:0000176" @@ -38077,15 +38077,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR250W" - - subsystem: - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce00430 Taurine and hypotaurine metabolism" - - "sce00650 Butanoate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.15" - bigg.reaction: "GLUDC" + - kegg.pathway: + - "sce00250" + - "sce00410" + - "sce00430" + - "sce00650" + - "sce01110" - kegg.reaction: "R00261" - metanetx.reaction: "MNXR95942" - pmid: "11031268" @@ -38105,14 +38105,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL215C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00430 Taurine and hypotaurine metabolism" - - "sce00910 Nitrogen metabolism" - annotation: !!omap - ec-code: "1.4.1.2" - bigg.reaction: "GLUDxi" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00430" + - "sce00910" - kegg.reaction: "R00243" - metanetx.reaction: "MNXR100085" - pmid: "14554197" @@ -38132,13 +38132,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL062W or YOR375C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00910 Nitrogen metabolism" - annotation: !!omap - ec-code: "1.4.1.4" - bigg.reaction: "GLUDy" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00910" - kegg.reaction: "R00248" - metanetx.reaction: "MNXR100086" - sbo: "SBO:0000176" @@ -38156,15 +38156,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL171C" - - subsystem: - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00910 Nitrogen metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.4.1.14" - bigg.reaction: "GLUSx" + - kegg.pathway: + - "sce00250" + - "sce00910" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R00093" - metanetx.reaction: "MNXR100289" - pmid: "9657994" @@ -38183,15 +38183,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR323C" - - subsystem: - - "sce00330 Arginine and proline metabolism" - - "sce00332 Carbapenem biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.2.1.41" - bigg.reaction: "G5SD" + - kegg.pathway: + - "sce00330" + - "sce00332" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03313" - metanetx.reaction: "MNXR99896" - sbo: "SBO:0000176" @@ -38228,15 +38228,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR035W" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00910 Nitrogen metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "6.3.1.2" - bigg.reaction: "GLNS" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00630" + - "sce00910" + - "sce01230" - kegg.reaction: "R00253" - metanetx.reaction: "MNXR100024" - pmid: "9611819" @@ -38253,13 +38253,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR084W or YKL104C" - - subsystem: - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.6.1.16" - bigg.reaction: "GF6PTA" + - kegg.pathway: + - "sce00250" + - "sce00520" + - "sce01130" - kegg.reaction: "R00768" - metanetx.reaction: "MNXR106675" - pmid: "2656689" @@ -38278,10 +38278,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR168W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.18" - bigg.reaction: "GLNTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03652" - metanetx.reaction: "MNXR100257" - pmid: "2991203" @@ -38300,13 +38300,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL245W" - - subsystem: - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce00970 Aminoacyl-tRNA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "6.1.1.17" - bigg.reaction: "GLUTRS" + - kegg.pathway: + - "sce00860" + - "sce00970" + - "sce01110" - kegg.reaction: "R05578" - metanetx.reaction: "MNXR100295" - sbo: "SBO:0000176" @@ -38324,13 +38324,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL033W" - - subsystem: - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce00970 Aminoacyl-tRNA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "6.1.1.17" - bigg.reaction: "GLUTRSm" + - kegg.pathway: + - "sce00860" + - "sce00970" + - "sce01110" - kegg.reaction: "R05578" - metanetx.reaction: "MNXR100295" - pmid: "7607232" @@ -38348,10 +38348,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YCL035C and YPL091W) or (YDR098C and YPL091W) or (YDR513W and YPL091W) or (YER174C and YPL091W)" - - subsystem: "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: "1.8.1.7" - bigg.reaction: "GTHOr" + - kegg.pathway: "sce00480" - kegg.reaction: "R00115" - metanetx.reaction: "MNXR100098" - sbo: "SBO:0000176" @@ -38368,10 +38368,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL059W and YPL091W" - - subsystem: "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: "1.8.1.7" - bigg.reaction: "GTHOm" + - kegg.pathway: "sce00480" - kegg.reaction: "R00115" - metanetx.reaction: "MNXR100098" - pmid: "14672937" @@ -38388,12 +38388,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL229C or YBR244W or YCL035C or YDR513W or YIR037W or YKL026C" - - subsystem: "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: - "1.11.1.15" - "1.11.1.9" - bigg.reaction: "GTHPi" + - kegg.pathway: "sce00480" - kegg.reaction: "R00274" - metanetx.reaction: "MNXR100446" - sbo: "SBO:0000176" @@ -38430,12 +38430,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL049W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: "6.3.2.3" - bigg.reaction: "GTHS" + - kegg.pathway: + - "sce00270" + - "sce00480" - kegg.reaction: "R00497" - metanetx.reaction: "MNXR100450" - sbo: "SBO:0000176" @@ -38453,15 +38453,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR192C or YJL052W or YJR009C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.2.1.12" - bigg.reaction: "GAPD" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01061" - metanetx.reaction: "MNXR100040" - pmid: "3905788" @@ -38479,10 +38479,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR120W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "1.1.1.156" - bigg.reaction: "GLYCDy" + - kegg.pathway: "sce00561" - kegg.reaction: "R01039" - metanetx.reaction: "MNXR100327" - pmid: "11113971" @@ -38500,10 +38500,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHL032C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.7.1.30" - bigg.reaction: "GLYK" + - kegg.pathway: "sce00561" - kegg.reaction: "R00847" - metanetx.reaction: "MNXR100348" - sbo: "SBO:0000176" @@ -38519,10 +38519,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER062C or YIL053W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.3.21" - bigg.reaction: "G3PT" + - kegg.pathway: "sce00561" - kegg.reaction: "R00841" - metanetx.reaction: "MNXR99894" - sbo: "SBO:0000176" @@ -38539,12 +38539,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL155C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "1.1.5.3" - bigg.reaction: "G3PDm" + - kegg.pathway: + - "sce00564" + - "sce01110" - kegg.reaction: "R00848" - metanetx.reaction: "MNXR99875" - sbo: "SBO:0000176" @@ -38561,13 +38561,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL022W or YOL059W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04011 MAPK signaling pathway - yeast" - annotation: !!omap - ec-code: "1.1.1.8" - bigg.reaction: "G3PD1ir" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04011" - kegg.reaction: "R00842" - metanetx.reaction: "MNXR99876" - pmid: "8196651" @@ -38585,13 +38585,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL059W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04011 MAPK signaling pathway - yeast" - annotation: !!omap - ec-code: "1.1.1.8" - bigg.reaction: "G3PD1irm" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04011" - kegg.reaction: "R00842" - metanetx.reaction: "MNXR99876" - sbo: "SBO:0000176" @@ -38608,10 +38608,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL110C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.4.46" - bigg.reaction: "GPDDA1" + - kegg.pathway: "sce00564" - kegg.reaction: "R01030" - metanetx.reaction: "MNXR100410" - pmid: "16141200" @@ -38629,14 +38629,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR408C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.1.2.2" - bigg.reaction: "GARFT" + - kegg.pathway: + - "sce00230" + - "sce00670" + - "sce01110" + - "sce01130" - kegg.reaction: "R04325" - metanetx.reaction: "MNXR99623" - sbo: "SBO:0000176" @@ -38673,24 +38673,24 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.4.4.2" - "1.8.1.4" - "2.1.2.10" - bigg.reaction: "GLYCLm" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -38705,17 +38705,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR058C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.1.2.1" - bigg.reaction: "GHMT2r" + - kegg.pathway: + - "sce00260" + - "sce00630" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00945" - metanetx.reaction: "MNXR100142" - pmid: "8852837" @@ -38733,17 +38733,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR263W" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.1.2.1" - bigg.reaction: "GHMT2rm" + - kegg.pathway: + - "sce00260" + - "sce00630" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00945" - metanetx.reaction: "MNXR100142" - pmid: @@ -38763,24 +38763,24 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.4.4.2" - "1.8.1.4" - "2.1.2.10" - bigg.reaction: "GCC2am" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - metanetx.reaction: "MNXR100065" - sbo: "SBO:0000176" - confidence_score: 2 @@ -38796,20 +38796,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YAL044C and YDR019C and YFL018C and YMR189W) or (YDR148C and YFL018C and YIL125W)" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00310 Lysine degradation" - - "sce00380 Tryptophan metabolism" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.2.4.2" @@ -38818,6 +38804,20 @@ - "2.1.2.10" - "2.3.1.61" - bigg.reaction: "GCC2cm" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R01698" - metanetx.reaction: "MNXR100066" - sbo: "SBO:0000176" @@ -38833,24 +38833,24 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.4.4.2" - "1.8.1.4" - "2.1.2.10" - bigg.reaction: "GCCam" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R03425" - metanetx.reaction: "MNXR100067" - sbo: "SBO:0000176" @@ -38868,24 +38868,24 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.4.4.2" - "1.8.1.4" - "2.1.2.10" - bigg.reaction: "GCCbim" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R04125" - metanetx.reaction: "MNXR100068" - sbo: "SBO:0000176" @@ -38902,24 +38902,24 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.4.4.2" - "1.8.1.4" - "2.1.2.10" - bigg.reaction: "GCCcm" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R03815" - metanetx.reaction: "MNXR100069" - sbo: "SBO:0000176" @@ -38936,24 +38936,24 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.4.4.2" - "1.8.1.4" - "2.1.2.10" - bigg.reaction: "GCC2bim" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -38967,11 +38967,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YFR015C and YJL137C) or (YFR015C and YKR058W) or (YJL137C and YLR258W) or (YKR058W and YLR258W)" - - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: - "2.4.1.11" - "2.4.1.186" + - kegg.pathway: "sce00500" - metanetx.reaction: "MNXR143136" - pmid: "8900126" - sbo: "SBO:0000176" @@ -38986,12 +38986,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR160W" - - subsystem: - - "sce00500 Starch and sucrose metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.4.1.1" - bigg.reaction: "GLCP" + - kegg.pathway: + - "sce00500" + - "sce01110" - metanetx.reaction: "MNXR100214" - sbo: "SBO:0000176" - confidence_score: 2 @@ -39008,10 +39008,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR121C or YPR081C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.14" - bigg.reaction: "GLYTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03654" - metanetx.reaction: "MNXR100365" - pmid: "10874035" @@ -39033,10 +39033,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR217W" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "6.3.5.2" - bigg.reaction: "GMPS2" + - kegg.pathway: "sce00230" - kegg.reaction: "R01231" - metanetx.reaction: "MNXR100384" - sbo: "SBO:0000176" @@ -39053,9 +39053,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR281W" - - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - ec-code: "3.5.1.89" + - kegg.pathway: "sce00563" - kegg.reaction: "R05917" - metanetx.reaction: "MNXR95257" - pmid: "10085243" @@ -39072,9 +39072,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCL052C and YJR013W" - - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - ec-code: "2.4.1.-" + - kegg.pathway: "sce00563" - pmid: "11102867" - sbo: "SBO:0000176" - confidence_score: 3 @@ -39088,9 +39088,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL165C" - - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - ec-code: "2.-.-.-" + - kegg.pathway: "sce00563" - pmid: "11102867" - sbo: "SBO:0000176" - confidence_score: 3 @@ -39105,9 +39105,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR004C" - - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - ec-code: "2.4.1.-" + - kegg.pathway: "sce00563" - pmid: "15623507" - sbo: "SBO:0000176" - confidence_score: 3 @@ -39121,9 +39121,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL142C" - - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - ec-code: "2.4.1.-" + - kegg.pathway: "sce00563" - pmid: "11102867" - sbo: "SBO:0000176" - confidence_score: 3 @@ -39138,9 +39138,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR302W or YLL031C" - - subsystem: "sce00563 Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - annotation: !!omap - ec-code: "2.-.-.-" + - kegg.pathway: "sce00563" - pmid: "10793139" - sbo: "SBO:0000176" - confidence_score: 3 @@ -39156,10 +39156,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR267C" - - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: "3.5.4.16" - bigg.reaction: "GTPCI" + - kegg.pathway: "sce00790" - kegg.reaction: "R00424" - metanetx.reaction: "MNXR100453" - sbo: "SBO:0000176" @@ -39177,13 +39177,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL033C" - - subsystem: - - "sce00740 Riboflavin metabolism" - - "sce00790 Folate biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.5.4.25" - bigg.reaction: "GTPCII2" + - kegg.pathway: + - "sce00740" + - "sce00790" + - "sce01110" - kegg.reaction: "R00425" - metanetx.reaction: "MNXR100455" - sbo: "SBO:0000176" @@ -39200,10 +39200,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL238C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "3.5.4.3" - bigg.reaction: "GUAD" + - kegg.pathway: "sce00230" - kegg.reaction: "R01676" - metanetx.reaction: "MNXR100464" - pmid: "15565584" @@ -39220,12 +39220,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR399W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.4.2.8" - bigg.reaction: "GUAPRT" + - kegg.pathway: + - "sce00230" + - "sce01110" - kegg.reaction: "R01229" - metanetx.reaction: "MNXR100409" - sbo: "SBO:0000176" @@ -39241,10 +39241,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR454C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "2.7.4.8" - bigg.reaction: "GK1" + - kegg.pathway: "sce00230" - kegg.reaction: "R00332" - metanetx.reaction: "MNXR100144" - sbo: "SBO:0000176" @@ -39260,10 +39260,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR454C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "2.7.4.8" - bigg.reaction: "GK2" + - kegg.pathway: "sce00230" - metanetx.reaction: "MNXR100145" - sbo: "SBO:0000176" - confidence_score: 2 @@ -39299,13 +39299,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL172C" - - subsystem: - - "sce00190 Oxidative phosphorylation" - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.-" - bigg.reaction: "HEMEOSm" + - kegg.pathway: + - "sce00190" + - "sce00860" + - "sce01110" - kegg.reaction: "R07411" - metanetx.reaction: "MNXR100596" - pmid: "11788607" @@ -39323,9 +39323,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - subsystem: - - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "1.14.13.-" @@ -39333,6 +39330,9 @@ - "2.1.1.201" - "2.1.1.64" - "2.7.-.-" + - kegg.pathway: + - "sce00130" + - "sce01110" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -39347,18 +39347,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR446W or YFR053C or YGL253W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00051 Fructose and mannose metabolism" - - "sce00052 Galactose metabolism" - - "sce00500 Starch and sucrose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "2.7.1.1" - bigg.reaction: "HEX7" + - kegg.pathway: + - "sce00010" + - "sce00051" + - "sce00052" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00760" - metanetx.reaction: "MNXR106668" - sbo: "SBO:0000176" @@ -39375,20 +39375,20 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR446W or YCL040W or YFR053C or YGL253W or YDR516C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00051 Fructose and mannose metabolism" - - "sce00052 Galactose metabolism" - - "sce00500 Starch and sucrose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "2.7.1.1" - "2.7.1.2" - bigg.reaction: "HEX1" + - kegg.pathway: + - "sce00010" + - "sce00051" + - "sce00052" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00299" - metanetx.reaction: "MNXR100612" - pmid: "6394965" @@ -39406,18 +39406,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR446W or YFR053C or YGL253W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00051 Fructose and mannose metabolism" - - "sce00052 Galactose metabolism" - - "sce00500 Starch and sucrose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "2.7.1.1" - bigg.reaction: "HEX4" + - kegg.pathway: + - "sce00010" + - "sce00051" + - "sce00052" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R01326" - metanetx.reaction: "MNXR95795" - sbo: "SBO:0000176" @@ -39435,16 +39435,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL030C" - - subsystem: - - "sce00340 Histidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "1.1.1.23" - "3.5.4.19" - "3.6.1.31" - bigg.reaction: "HISTD" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R01158" - metanetx.reaction: "MNXR100587" - sbo: "SBO:0000176" @@ -39460,13 +39460,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR025C" - - subsystem: - - "sce00340 Histidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "3.1.3.15" - bigg.reaction: "HISTP" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R03013" - metanetx.reaction: "MNXR100642" - sbo: "SBO:0000176" @@ -39482,17 +39482,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL116W" - - subsystem: - - "sce00340 Histidine metabolism" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.9" - bigg.reaction: "HSTPT" + - kegg.pathway: + - "sce00340" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03243" - metanetx.reaction: "MNXR95852" - sbo: "SBO:0000176" @@ -39510,10 +39510,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR033C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.21" - bigg.reaction: "HISTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03655" - metanetx.reaction: "MNXR100643" - pmid: "1459448" @@ -39532,10 +39532,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR033C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.21" - bigg.reaction: "HISTRSm" + - kegg.pathway: "sce00970" - kegg.reaction: "R03655" - metanetx.reaction: "MNXR100643" - pmid: "1459448" @@ -39571,14 +39571,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJL200C or YDR234W" - - subsystem: - - "sce00300 Lysine biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.36" - bigg.reaction: "HACNHm" + - kegg.pathway: + - "sce00300" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R04371" - metanetx.reaction: "MNXR100552" - pmid: "2507177" @@ -39597,14 +39597,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL131W or YDL182W" - - subsystem: - - "sce00300 Lysine biosynthesis" - - "sce00620 Pyruvate metabolism" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.3.3.14" + - kegg.pathway: + - "sce00300" + - "sce00620" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00271" - metanetx.reaction: "MNXR141692" - sbo: "SBO:0000176" @@ -39621,12 +39621,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLL062C or YPL273W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.1.1.10" - bigg.reaction: "HCYSMT" + - kegg.pathway: + - "sce00270" + - "sce01110" - kegg.reaction: "R00650" - metanetx.reaction: "MNXR100577" - pmid: "11013242" @@ -39644,13 +39644,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL094C" - - subsystem: - - "sce00300 Lysine biosynthesis" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.1.1.87" + - kegg.pathway: + - "sce00300" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01934" - metanetx.reaction: "MNXR107239" - pmid: "10714900" @@ -39668,16 +39668,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR139C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00300 Lysine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.1.1.3" - bigg.reaction: "HSDxi" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce00300" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01775" - metanetx.reaction: "MNXR100734" - pmid: @@ -39697,16 +39697,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR139C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00300 Lysine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.1.1.3" - bigg.reaction: "HSDy" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce00300" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01775" - metanetx.reaction: "MNXR100734" - pmid: "8500624" @@ -39724,13 +39724,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR025W" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.7.1.39" - bigg.reaction: "HSK" + - kegg.pathway: + - "sce00260" + - "sce01110" + - "sce01230" - kegg.reaction: "R01771" - metanetx.reaction: "MNXR100737" - pmid: "8973190" @@ -39747,12 +39747,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL277W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.3.1.31" - bigg.reaction: "HSERTA" + - kegg.pathway: + - "sce00270" + - "sce01130" - kegg.reaction: "R01776" - metanetx.reaction: "MNXR100736" - pmid: "16232856" @@ -39808,10 +39808,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YGR209C and YLR109W) or (YLR043C and YLR109W)" - - subsystem: "sce04122 Sulfur relay system" - annotation: !!omap - ec-code: "1.11.1.15" - bigg.reaction: "THIORDXp" + - kegg.pathway: "sce04122" - metanetx.reaction: "MNXR104815" - pmid: "14640681" - sbo: "SBO:0000176" @@ -39828,10 +39828,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR272W" - - subsystem: "sce00620 Pyruvate metabolism" - annotation: !!omap - ec-code: "3.1.2.6" - bigg.reaction: "GLYOX" + - kegg.pathway: "sce00620" - kegg.reaction: "R01736" - metanetx.reaction: "MNXR100353" - sbo: "SBO:0000176" @@ -39848,10 +39848,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR040W" - - subsystem: "sce00620 Pyruvate metabolism" - annotation: !!omap - ec-code: "3.1.2.6" - bigg.reaction: "GLYOXm" + - kegg.pathway: "sce00620" - kegg.reaction: "R01736" - metanetx.reaction: "MNXR100353" - sbo: "SBO:0000176" @@ -39867,12 +39867,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNR041C" - - subsystem: - - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.39" - bigg.reaction: "HBZOPT6m" + - kegg.pathway: + - "sce00130" + - "sce01110" - kegg.reaction: "R05616" - metanetx.reaction: "MNXR100569" - sbo: "SBO:0000176" @@ -39889,12 +39889,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL214C" - - subsystem: "sce00730 Thiamine metabolism" - annotation: !!omap - ec-code: - "2.5.1.3" - "2.7.1.50" - bigg.reaction: "HETZK" + - kegg.pathway: "sce00730" - kegg.reaction: "R04448" - metanetx.reaction: "MNXR100611" - sbo: "SBO:0000176" @@ -39910,12 +39910,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL205C" - - subsystem: - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.61" - bigg.reaction: "HMBS" + - kegg.pathway: + - "sce00860" + - "sce01110" - kegg.reaction: "R00084" - metanetx.reaction: "MNXR100658" - sbo: "SBO:0000176" @@ -39933,13 +39933,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR450W or YML075C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.34" - bigg.reaction: "HMGCOAR" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R02082" - metanetx.reaction: "MNXR107304" - sbo: "SBO:0000176" @@ -39957,16 +39957,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML126C" - - subsystem: - - "sce00072 Synthesis and degradation of ketone bodies" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00650 Butanoate metabolism" - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.3.3.10" - bigg.reaction: "HMGCOAS" + - kegg.pathway: + - "sce00072" + - "sce00280" + - "sce00650" + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R01978" - metanetx.reaction: "MNXR107257" - sbo: "SBO:0000176" @@ -39984,16 +39984,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML126C" - - subsystem: - - "sce00072 Synthesis and degradation of ketone bodies" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00650 Butanoate metabolism" - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.3.3.10" - bigg.reaction: "HMGCOASm" + - kegg.pathway: + - "sce00072" + - "sce00280" + - "sce00650" + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R01978" - metanetx.reaction: "MNXR107257" - sbo: "SBO:0000176" @@ -40010,12 +40010,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL055C or YPL258C or YPR121W" - - subsystem: "sce00730 Thiamine metabolism" - annotation: !!omap - ec-code: - "2.7.1.49" - "2.7.4.7" - bigg.reaction: "HMPK1" + - kegg.pathway: "sce00730" - kegg.reaction: "R03471" - metanetx.reaction: "MNXR100664" - sbo: "SBO:0000176" @@ -40031,12 +40031,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR399W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.4.2.8" - bigg.reaction: "HXPRT" + - kegg.pathway: + - "sce00230" + - "sce01110" - kegg.reaction: "R01132" - metanetx.reaction: "MNXR100752" - sbo: "SBO:0000176" @@ -40054,15 +40054,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR248C" - - subsystem: - - "sce00340 Histidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "2.4.2.-" - "4.1.3.-" - bigg.reaction: "IG3PS" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R04558" - metanetx.reaction: "MNXR100811" - sbo: "SBO:0000176" @@ -40077,13 +40077,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR202W" - - subsystem: - - "sce00340 Histidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.19" - bigg.reaction: "IGPDH" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R03457" - metanetx.reaction: "MNXR100813" - sbo: "SBO:0000176" @@ -40101,12 +40101,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR216W or YLR432W or YML056C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "1.1.1.205" - bigg.reaction: "IMPD" + - kegg.pathway: + - "sce00230" + - "sce01110" - kegg.reaction: "R01130" - metanetx.reaction: "MNXR100830" - pmid: "11003640" @@ -40124,16 +40124,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL211C" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "4.1.1.48" - "4.1.3.27" - bigg.reaction: "IGPS" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03508" - metanetx.reaction: "MNXR100814" - pmid: "6323449" @@ -40150,10 +40150,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "4.1.1.-" @@ -40161,6 +40157,10 @@ - "4.1.1.43" - "4.1.1.74" - bigg.reaction: "INDPYRD" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" - kegg.reaction: "R01974" - metanetx.reaction: "MNXR100837" - pmid: "12902239" @@ -40177,10 +40177,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR011C" - - subsystem: "sce00190 Oxidative phosphorylation" - annotation: !!omap - ec-code: "3.6.1.1" - bigg.reaction: "PPA" + - kegg.pathway: "sce00190" - kegg.reaction: "R00004" - metanetx.reaction: "MNXR100808" - pmid: "8224193" @@ -40197,10 +40197,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR267W" - - subsystem: "sce00190 Oxidative phosphorylation" - annotation: !!omap - ec-code: "3.6.1.1" - bigg.reaction: "PPAm" + - kegg.pathway: "sce00190" - kegg.reaction: "R00004" - metanetx.reaction: "MNXR100808" - pmid: "1648084" @@ -40216,16 +40216,16 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR028C or YMR120C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "2.1.2.3" - "3.5.4.10" - bigg.reaction: "IMPC" + - kegg.pathway: + - "sce00230" + - "sce00670" + - "sce01110" + - "sce01130" - kegg.reaction: "R01127" - metanetx.reaction: "MNXR100783" - sbo: "SBO:0000176" @@ -40242,11 +40242,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR315C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.158" + - kegg.pathway: + - "sce00562" + - "sce04070" - kegg.reaction: "R05202" - metanetx.reaction: "MNXR109392" - pmid: "10960485" @@ -40264,12 +40264,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR173C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: "2.7.1.151" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" - kegg.reaction: "R10953" - metanetx.reaction: "MNXR114260" - pmid: "11956213" @@ -40287,12 +40287,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR173C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: "2.7.1.151" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" - kegg.reaction: "R05801" - metanetx.reaction: "MNXR109848" - pmid: "11956213" @@ -40310,12 +40310,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR173C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: "2.7.1.151" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" - kegg.reaction: "R05800" - metanetx.reaction: "MNXR109847" - pmid: "11956213" @@ -40333,12 +40333,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR173C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: "2.7.1.151" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" - kegg.reaction: "R03433" - metanetx.reaction: "MNXR108166" - pmid: "11956213" @@ -40355,9 +40355,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40374,9 +40374,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40393,9 +40393,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40412,9 +40412,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40431,9 +40431,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40450,9 +40450,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40469,9 +40469,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40488,9 +40488,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40507,9 +40507,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40526,9 +40526,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40545,9 +40545,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40564,9 +40564,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40583,9 +40583,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40602,9 +40602,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40621,9 +40621,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40640,9 +40640,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40659,9 +40659,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40678,9 +40678,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40697,9 +40697,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40716,9 +40716,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -40736,9 +40736,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40756,9 +40756,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40776,9 +40776,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40796,9 +40796,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40816,9 +40816,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40836,9 +40836,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40856,9 +40856,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40876,9 +40876,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40896,9 +40896,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40916,9 +40916,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40935,9 +40935,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40954,9 +40954,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40973,9 +40973,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -40992,9 +40992,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41011,9 +41011,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41030,9 +41030,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41049,9 +41049,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41068,9 +41068,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41087,9 +41087,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41106,9 +41106,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41125,9 +41125,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41144,9 +41144,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41163,9 +41163,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41182,9 +41182,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41201,9 +41201,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41220,9 +41220,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41239,9 +41239,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41258,9 +41258,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41277,9 +41277,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41296,9 +41296,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "17880915" - "18296751" @@ -41316,9 +41316,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -41336,9 +41336,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -41356,9 +41356,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -41376,9 +41376,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -41396,9 +41396,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -41416,9 +41416,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -41436,9 +41436,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -41456,9 +41456,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -41476,9 +41476,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -41496,9 +41496,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER019W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" - pmid: - "11006294" - "18296751" @@ -41554,16 +41554,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL037C and YOR136W" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.1.1.41" - bigg.reaction: "ICDHxm" + - kegg.pathway: + - "sce00020" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00709" - metanetx.reaction: "MNXR100782" - pmid: "1644826" @@ -41581,18 +41581,18 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR174W" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00480 Glutathione metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.1.1.42" - bigg.reaction: "ICDHyr" + - kegg.pathway: + - "sce00020" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - "sce04146" - kegg.reaction: "R00267" - metanetx.reaction: "MNXR100781" - pmid: "9175438" @@ -41610,18 +41610,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL009W" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00480 Glutathione metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.1.1.42" - bigg.reaction: "ICDHyp" + - kegg.pathway: + - "sce00020" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - "sce04146" - kegg.reaction: "R00267" - metanetx.reaction: "MNXR100781" - pmid: "9175438" @@ -41637,15 +41637,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER065C" - - subsystem: - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "4.1.3.1" - "4.1.3.30" - bigg.reaction: "ICL" + - kegg.pathway: + - "sce00630" + - "sce01110" + - "sce01200" - kegg.reaction: "R00479" - metanetx.reaction: "MNXR100789" - sbo: "SBO:0000176" @@ -41661,18 +41661,18 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR148W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "ILETA" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R02199" - metanetx.reaction: "MNXR96228" - pmid: "8798704" @@ -41689,18 +41689,18 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR208W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "ILETAm" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R02199" - metanetx.reaction: "MNXR96228" - pmid: "8798704" @@ -41719,10 +41719,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL076C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.5" - bigg.reaction: "ILETRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03656" - metanetx.reaction: "MNXR100820" - pmid: "7619074" @@ -41741,10 +41741,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL040C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.5" - bigg.reaction: "ILETRSm" + - kegg.pathway: "sce00970" - kegg.reaction: "R03656" - metanetx.reaction: "MNXR100820" - pmid: "7607232" @@ -41759,13 +41759,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPL117C" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "5.3.3.2" - bigg.reaction: "IPDDI" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R01123" - metanetx.reaction: "MNXR100796" - sbo: "SBO:0000176" @@ -41783,15 +41783,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR244C and YOR142W" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00640 Propanoate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "6.2.1.5" - bigg.reaction: "ITCOALm" + - kegg.pathway: + - "sce00020" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R02404" - metanetx.reaction: "MNXR100884" - pmid: "9874242" @@ -41809,16 +41809,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR355C" - - subsystem: - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.1.1.86" - bigg.reaction: "KARA2im" + - kegg.pathway: + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - metanetx.reaction: "MNXR100902" - pmid: "3027658" - sbo: "SBO:0000176" @@ -41835,10 +41835,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR231C" - - subsystem: "sce00380 Tryptophan metabolism" - annotation: !!omap - ec-code: "3.7.1.3" - bigg.reaction: "KYN" + - kegg.pathway: "sce00380" - kegg.reaction: "R00987" - metanetx.reaction: "MNXR100946" - pmid: "12062417" @@ -41858,10 +41858,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL098W" - - subsystem: "sce00380 Tryptophan metabolism" - annotation: !!omap - ec-code: "1.14.13.9" - bigg.reaction: "KYN3OX" + - kegg.pathway: "sce00380" - kegg.reaction: "R01960" - metanetx.reaction: "MNXR100947" - pmid: "12062417" @@ -41880,12 +41880,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR037W" - - subsystem: - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00330 Arginine and proline metabolism" - annotation: !!omap - ec-code: "1.2.1.88" - bigg.reaction: "PHCDm" + - kegg.pathway: + - "sce00250" + - "sce00330" - kegg.reaction: "R04444" - metanetx.reaction: "MNXR102616" - sbo: "SBO:0000176" @@ -41903,12 +41903,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR037W" - - subsystem: - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00330 Arginine and proline metabolism" - annotation: !!omap - ec-code: "1.2.1.88" - bigg.reaction: "4HGLSDm" + - kegg.pathway: + - "sce00250" + - "sce00330" - kegg.reaction: "R05051" - metanetx.reaction: "MNXR95015" - sbo: "SBO:0000176" @@ -41924,15 +41924,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR089C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.2" - bigg.reaction: "ALATA_Lm" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00258" - metanetx.reaction: "MNXR95698" - sbo: "SBO:0000176" @@ -41947,14 +41947,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL046C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.1.2.48" - bigg.reaction: "THRA2" + - kegg.pathway: + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R06171" - metanetx.reaction: "MNXR104834" - pmid: "9151955" @@ -41972,12 +41972,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR226C" - - subsystem: - - "sce00240 Pyrimidine metabolism" - - "sce00260 Glycine, serine and threonine metabolism" - annotation: !!omap - ec-code: "1.1.1.381" - bigg.reaction: "ATHRDHr" + - kegg.pathway: + - "sce00240" + - "sce00260" - kegg.reaction: "R10851" - metanetx.reaction: "MNXR96121" - pmid: "12535615" @@ -41998,18 +41998,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR115C and YGL154C" - - subsystem: - - "sce00300 Lysine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "1.2.1.31" - "1.2.1.95" - "2.7.8.7" - bigg.reaction: "AASAD1" + - kegg.pathway: + - "sce00300" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01230" - metanetx.reaction: "MNXR95156" - pmid: "3928261" - sbo: "SBO:0000176" @@ -42025,12 +42025,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR321W" - - subsystem: - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.5.1.1" - bigg.reaction: "ASNN" + - kegg.pathway: + - "sce00250" + - "sce01110" - kegg.reaction: "R00485" - metanetx.reaction: "MNXR96056" - pmid: "8026756" @@ -42066,22 +42066,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR027C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00330 Arginine and proline metabolism" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "EHGLAT" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R03266" - metanetx.reaction: "MNXR97908" - sbo: "SBO:0000176" @@ -42097,22 +42097,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL106W" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00330 Arginine and proline metabolism" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "EHGLATm" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R03266" - metanetx.reaction: "MNXR97908" - sbo: "SBO:0000176" @@ -42128,22 +42128,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR027C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00330 Arginine and proline metabolism" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "EHGLATp" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R03266" - metanetx.reaction: "MNXR97908" - sbo: "SBO:0000176" @@ -42178,11 +42178,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR104W or YOL151W" - - subsystem: - - "sce00040 Pentose and glucuronate interconversions" - - "sce00620 Pyruvate metabolism" - - "sce00640 Propanoate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - annotation: !!omap - ec-code: - "1.1.1.-" @@ -42190,6 +42185,11 @@ - "1.1.1.265" - "1.1.1.283" - bigg.reaction: "LALDO3" + - kegg.pathway: + - "sce00040" + - "sce00620" + - "sce00640" + - "sce04011" - kegg.reaction: "R02260" - metanetx.reaction: "MNXR101010" - pmid: "12722185" @@ -42205,19 +42205,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL064C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "4.3.1.17" - "4.3.1.19" - bigg.reaction: "SERD_L" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce00290" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00220" - metanetx.reaction: "MNXR104339" - pmid: "2194168" @@ -42235,12 +42235,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR226C" - - subsystem: - - "sce00240 Pyrimidine metabolism" - - "sce00260 Glycine, serine and threonine metabolism" - annotation: !!omap - ec-code: "1.1.1.381" - bigg.reaction: "LSERDHr" + - kegg.pathway: + - "sce00240" + - "sce00260" - kegg.reaction: "R06126" - metanetx.reaction: "MNXR101242" - pmid: "12535615" @@ -42258,12 +42258,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR159W" - - subsystem: - - "sce00040 Pentose and glucuronate interconversions" - - "sce00051 Fructose and mannose metabolism" - annotation: !!omap - ec-code: "1.1.1.14" - bigg.reaction: "SBTD_L" + - kegg.pathway: + - "sce00040" + - "sce00051" - metanetx.reaction: "MNXR104284" - sbo: "SBO:0000176" - confidence_score: 2 @@ -42277,19 +42277,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL064C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "4.3.1.17" - "4.3.1.19" - bigg.reaction: "THRD_L" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce00290" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00996" - metanetx.reaction: "MNXR104714" - pmid: "1628804" @@ -42305,16 +42305,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER086W" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.3.1.19" - bigg.reaction: "THRD_Lm" + - kegg.pathway: + - "sce00260" + - "sce00290" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00996" - metanetx.reaction: "MNXR104714" - pmid: "3289762" @@ -42330,10 +42330,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR078W" - - subsystem: "sce00380 Tryptophan metabolism" - annotation: !!omap - ec-code: "1.13.11.52" - bigg.reaction: "TRPO2" + - kegg.pathway: "sce00380" - kegg.reaction: "R00678" - metanetx.reaction: "MNXR104944" - pmid: "12062417" @@ -42387,10 +42387,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML004C" - - subsystem: "sce00620 Pyruvate metabolism" - annotation: !!omap - ec-code: "4.4.1.5" - bigg.reaction: "LGTHL" + - kegg.pathway: "sce00620" - kegg.reaction: "R02530" - metanetx.reaction: "MNXR100355" - sbo: "SBO:0000176" @@ -42404,13 +42404,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR072W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "5.4.99.7" - bigg.reaction: "LNSTLS" + - kegg.pathway: + - "sce00100" + - "sce01110" + - "sce01130" - kegg.reaction: "R03199" - metanetx.reaction: "MNXR101117" - sbo: "SBO:0000176" @@ -42426,18 +42426,18 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR148W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "LEUTA" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01090" - metanetx.reaction: "MNXR96229" - pmid: "9748245" @@ -42454,18 +42454,18 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR208W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "LEUTAm" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01090" - metanetx.reaction: "MNXR96229" - pmid: "8798704" @@ -42484,10 +42484,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL160W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.4" - bigg.reaction: "LEUTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03657" - metanetx.reaction: "MNXR101053" - pmid: "9742237" @@ -42506,10 +42506,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR382C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.4" - bigg.reaction: "LEUTRSm" + - kegg.pathway: "sce00970" - kegg.reaction: "R03657" - metanetx.reaction: "MNXR101053" - pmid: "1990003" @@ -42623,10 +42623,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR037W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.6" - bigg.reaction: "LYSTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03658" - metanetx.reaction: "MNXR101264" - pmid: "2903861" @@ -42645,10 +42645,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL073W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.6" - bigg.reaction: "LYSTRSm" + - kegg.pathway: "sce00970" - kegg.reaction: "R03658" - metanetx.reaction: "MNXR101264" - pmid: "2016746" @@ -42666,17 +42666,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL085W" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00270 Cysteine and methionine metabolism" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "1.1.1.37" - bigg.reaction: "MDHm" + - kegg.pathway: + - "sce00020" + - "sce00270" + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00342" - metanetx.reaction: "MNXR101439" - pmid: "9175438" @@ -42694,17 +42694,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOL126C" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00270 Cysteine and methionine metabolism" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "1.1.1.37" - bigg.reaction: "MDH" + - kegg.pathway: + - "sce00020" + - "sce00270" + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00342" - metanetx.reaction: "MNXR101439" - pmid: "11914276" @@ -42722,17 +42722,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDL078C" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00270 Cysteine and methionine metabolism" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "1.1.1.37" - bigg.reaction: "MDHp" + - kegg.pathway: + - "sce00020" + - "sce00270" + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00342" - metanetx.reaction: "MNXR101439" - pmid: "9175438" @@ -42751,14 +42751,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIR031C or YNL117W" - - subsystem: - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "2.3.3.9" - bigg.reaction: "MALS" + - kegg.pathway: + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01200" - kegg.reaction: "R00472" - metanetx.reaction: "MNXR101347" - sbo: "SBO:0000176" @@ -42776,14 +42776,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL117W" - - subsystem: - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "2.3.3.9" - bigg.reaction: "MALSp" + - kegg.pathway: + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01200" - kegg.reaction: "R00472" - metanetx.reaction: "MNXR101347" - pmid: "11846793" @@ -42801,12 +42801,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL029C" - - subsystem: - - "sce00620 Pyruvate metabolism" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "1.1.1.38" - bigg.reaction: "ME1m" + - kegg.pathway: + - "sce00620" + - "sce01200" - kegg.reaction: "R00214" - metanetx.reaction: "MNXR101446" - pmid: @@ -42827,12 +42827,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL029C" - - subsystem: - - "sce00620 Pyruvate metabolism" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "1.1.1.38" - bigg.reaction: "ME2m" + - kegg.pathway: + - "sce00620" + - "sce01200" - kegg.reaction: "R00214" - metanetx.reaction: "MNXR101446" - pmid: @@ -42852,14 +42852,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL192C and YOR221C" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00190 Oxidative phosphorylation" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.39" - bigg.reaction: "MCOATAm" + - kegg.pathway: + - "sce00061" + - "sce00190" + - "sce01130" + - "sce01212" - kegg.reaction: "R01626" - metanetx.reaction: "MNXR101421" - pmid: "15387819" @@ -42877,13 +42877,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL055C" - - subsystem: - - "sce00051 Fructose and mannose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.7.13" - bigg.reaction: "MAN1PT" + - kegg.pathway: + - "sce00051" + - "sce00520" + - "sce01110" - kegg.reaction: "R00885" - metanetx.reaction: "MNXR101375" - sbo: "SBO:0000176" @@ -42897,14 +42897,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER003C" - - subsystem: - - "sce00051 Fructose and mannose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "5.3.1.8" - bigg.reaction: "MAN6PI" + - kegg.pathway: + - "sce00051" + - "sce00520" + - "sce01110" + - "sce01130" - kegg.reaction: "R00772" - metanetx.reaction: "MNXR106679" - sbo: "SBO:0000176" @@ -42920,13 +42920,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR084W" - - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: - "1.5.1.5" - "3.5.4.9" - "6.3.4.3" - bigg.reaction: "MTHFCm" + - kegg.pathway: "sce00670" - kegg.reaction: "R01655" - metanetx.reaction: "MNXR101748" - sbo: "SBO:0000176" @@ -42942,13 +42942,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR204W" - - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: - "1.5.1.5" - "3.5.4.9" - "6.3.4.3" - bigg.reaction: "MTHFC" + - kegg.pathway: "sce00670" - kegg.reaction: "R01655" - metanetx.reaction: "MNXR101748" - sbo: "SBO:0000176" @@ -42966,13 +42966,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR502C or YLR180W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.5.1.6" - bigg.reaction: "METAT" + - kegg.pathway: + - "sce00270" + - "sce01110" + - "sce01230" - kegg.reaction: "R00177" - metanetx.reaction: "MNXR101407" - pmid: "194884" @@ -42989,14 +42989,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER091C" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00450 Selenocompound metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.1.1.14" - bigg.reaction: "METS" + - kegg.pathway: + - "sce00270" + - "sce00450" + - "sce01110" + - "sce01230" - kegg.reaction: "R00946" - metanetx.reaction: "MNXR101481" - pmid: "16083849" @@ -43014,12 +43014,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL013W" - - subsystem: - - "sce00670 One carbon pool by folate" - - "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "2.1.2.9" - bigg.reaction: "FMETTRSm" + - kegg.pathway: + - "sce00670" + - "sce00970" - kegg.reaction: "R03940" - metanetx.reaction: "MNXR99604" - sbo: "SBO:0000176" @@ -43037,12 +43037,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR264C" - - subsystem: - - "sce00450 Selenocompound metabolism" - - "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.10" - bigg.reaction: "METTRS" + - kegg.pathway: + - "sce00450" + - "sce00970" - kegg.reaction: "R03659" - metanetx.reaction: "MNXR101488" - pmid: "6304034" @@ -43061,12 +43061,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR171C" - - subsystem: - - "sce00450 Selenocompound metabolism" - - "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.10" - bigg.reaction: "METTRSm" + - kegg.pathway: + - "sce00450" + - "sce00970" - kegg.reaction: "R03659" - metanetx.reaction: "MNXR101488" - pmid: "2645139" @@ -43083,10 +43083,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR080W" - - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: "1.5.1.15" - bigg.reaction: "MTHFD2i" + - kegg.pathway: "sce00670" - kegg.reaction: "R01218" - metanetx.reaction: "MNXR101750" - sbo: "SBO:0000176" @@ -43102,13 +43102,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR204W" - - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: - "1.5.1.5" - "3.5.4.9" - "6.3.4.3" - bigg.reaction: "MTHFD" + - kegg.pathway: "sce00670" - kegg.reaction: "R01220" - metanetx.reaction: "MNXR101749" - sbo: "SBO:0000176" @@ -43124,13 +43124,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR084W" - - subsystem: "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: - "1.5.1.5" - "3.5.4.9" - "6.3.4.3" - bigg.reaction: "MTHFDm" + - kegg.pathway: "sce00670" - kegg.reaction: "R01220" - metanetx.reaction: "MNXR101749" - pmid: @@ -43149,13 +43149,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR006C" - - subsystem: - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "4.1.3.30" - bigg.reaction: "MCITL2m" + - kegg.pathway: + - "sce00630" + - "sce01110" + - "sce01200" - kegg.reaction: "R00409" - metanetx.reaction: "MNXR101415" - pmid: "16332871" @@ -43173,14 +43173,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR208W" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.7.1.36" - bigg.reaction: "MEVK1" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - "sce04146" - kegg.reaction: "R02245" - metanetx.reaction: "MNXR101495" - sbo: "SBO:0000176" @@ -43197,14 +43197,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR208W" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.7.1.36" - bigg.reaction: "MEVK2" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - "sce04146" - metanetx.reaction: "MNXR101496" - sbo: "SBO:0000176" - confidence_score: 2 @@ -43220,14 +43220,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR208W" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.7.1.36" - bigg.reaction: "MEVK3" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - "sce04146" - metanetx.reaction: "MNXR101497" - sbo: "SBO:0000176" - confidence_score: 2 @@ -43243,14 +43243,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR208W" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.7.1.36" - bigg.reaction: "MEVK4" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - "sce04146" - metanetx.reaction: "MNXR101498" - sbo: "SBO:0000176" - confidence_score: 2 @@ -43267,13 +43267,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNR043W" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "4.1.1.33" - bigg.reaction: "DPMVD" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R01121" - metanetx.reaction: "MNXR97776" - sbo: "SBO:0000176" @@ -43500,12 +43500,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR287W or YHR046C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.25" - bigg.reaction: "MI1PP" + - kegg.pathway: + - "sce00562" + - "sce04070" - kegg.reaction: "R01185" - metanetx.reaction: "MNXR101570" - pmid: "10844654" @@ -43520,12 +43520,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL153C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "5.5.1.4" - bigg.reaction: "MI1PS" + - kegg.pathway: + - "sce00562" + - "sce01130" - metanetx.reaction: "MNXR101571" - sbo: "SBO:0000176" - confidence_score: 2 @@ -43542,17 +43542,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER069W" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "1.2.1.38" - "2.7.2.8" - bigg.reaction: "AGPRim" + - kegg.pathway: + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R03443" - metanetx.reaction: "MNXR95530" - sbo: "SBO:0000176" @@ -43569,10 +43569,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFL017C" - - subsystem: "sce00520 Amino sugar and nucleotide sugar metabolism" - annotation: !!omap - ec-code: "2.3.1.4" - bigg.reaction: "ACGAM6PS" + - kegg.pathway: "sce00520" - kegg.reaction: "R02058" - metanetx.reaction: "MNXR95248" - pmid: "9867860" @@ -43590,17 +43590,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJL071W or YMR062C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "2.3.1.1" - "2.3.1.35" - bigg.reaction: "ACGSm" + - kegg.pathway: + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00259" - metanetx.reaction: "MNXR95259" - sbo: "SBO:0000176" @@ -43617,12 +43617,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR428C" - - subsystem: - - "sce00380 Tryptophan metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - annotation: !!omap - ec-code: "3.5.1.9" - bigg.reaction: "FKYNH" + - kegg.pathway: + - "sce00380" + - "sce00630" - kegg.reaction: "R01959" - metanetx.reaction: "MNXR99596" - pmid: "18205391" @@ -43640,11 +43640,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR402C and YDR403W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00380 Tryptophan metabolism" - annotation: !!omap - ec-code: "1.14.14.-" + - kegg.pathway: + - "sce00071" + - "sce00380" - metanetx.reaction: "MNXR101947" - pmid: "8706696" - sbo: "SBO:0000176" @@ -43661,12 +43661,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL067W" - - subsystem: - - "sce00760 Nicotinate and nicotinamide metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "3.6.1.22" - bigg.reaction: "NADDPp" + - kegg.pathway: + - "sce00760" + - "sce04146" - kegg.reaction: "R00103" - metanetx.reaction: "MNXR101861" - sbo: "SBO:0000176" @@ -43683,12 +43683,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL041W or YJR049C" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - "2.7.1.23" - "2.7.1.86" - bigg.reaction: "NADK" + - kegg.pathway: "sce00760" - kegg.reaction: "R00104" - metanetx.reaction: "MNXR101882" - pmid: "15978040" @@ -43706,12 +43706,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL041W or YJR049C or YPL188W" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - "2.7.1.23" - "2.7.1.86" - bigg.reaction: "NADKm" + - kegg.pathway: "sce00760" - kegg.reaction: "R00104" - metanetx.reaction: "MNXR101882" - pmid: "15978040" @@ -43729,11 +43729,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL042C or YDR191W or YOL068C or YOR025W or YPL015C" - - subsystem: - - "sce00760 Nicotinate and nicotinamide metabolism" - - "sce04213 Longevity regulating pathway - multiple species" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: + - "sce00760" + - "sce04213" - kegg.reaction: "R00102" - metanetx.reaction: "MNXR101888" - pmid: "17482543" @@ -43755,10 +43755,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR074W" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: "6.3.5.1" - bigg.reaction: "NADS2" + - kegg.pathway: "sce00760" - kegg.reaction: "R00257" - metanetx.reaction: "MNXR97678" - pmid: "12771147" @@ -43780,9 +43780,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR074W" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: "6.3.5.1" + - kegg.pathway: "sce00760" - kegg.reaction: "R00257" - metanetx.reaction: "MNXR97678" - pmid: "12771147" @@ -43819,11 +43819,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL041W or YJR049C" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - "2.7.1.23" - "2.7.1.86" + - kegg.pathway: "sce00760" - kegg.reaction: "R00105" - metanetx.reaction: "MNXR106390" - pmid: "15978040" @@ -43841,11 +43841,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL041W or YJR049C or YPL188W" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - "2.7.1.23" - "2.7.1.86" + - kegg.pathway: "sce00760" - kegg.reaction: "R00105" - metanetx.reaction: "MNXR106390" - pmid: "15978040" @@ -43884,10 +43884,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR209C" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: "6.3.4.21" - bigg.reaction: "NAPRT" + - kegg.pathway: "sce00760" - kegg.reaction: "R01724" - metanetx.reaction: "MNXR101909" - sbo: "SBO:0000176" @@ -43907,10 +43907,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR209C" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: "6.3.4.21" - bigg.reaction: "NAPRTm" + - kegg.pathway: "sce00760" - kegg.reaction: "R01724" - metanetx.reaction: "MNXR101909" - sbo: "SBO:0000176" @@ -43926,12 +43926,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL037C" - - subsystem: - - "sce00760 Nicotinate and nicotinamide metabolism" - - "sce04213 Longevity regulating pathway - multiple species" - annotation: !!omap - ec-code: "3.5.1.19" - bigg.reaction: "NNAM" + - kegg.pathway: + - "sce00760" + - "sce04213" - kegg.reaction: "R01268" - metanetx.reaction: "MNXR101977" - sbo: "SBO:0000176" @@ -43967,12 +43967,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL047C or YLR328W" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - "2.7.7.1" - "2.7.7.18" - bigg.reaction: "NMNAT" + - kegg.pathway: "sce00760" - kegg.reaction: "R00137" - metanetx.reaction: "MNXR95841" - pmid: "15078171" @@ -43990,12 +43990,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR010W or YLR328W" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - "2.7.7.1" - "2.7.7.18" - bigg.reaction: "NMNATn" + - kegg.pathway: "sce00760" - kegg.reaction: "R00137" - metanetx.reaction: "MNXR95841" - pmid: "15078171" @@ -44013,12 +44013,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR010W or YLR328W" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - "2.7.7.1" - "2.7.7.18" - bigg.reaction: "NNATr" + - kegg.pathway: "sce00760" - kegg.reaction: "R03005" - metanetx.reaction: "MNXR101978" - pmid: "15078171" @@ -44037,10 +44037,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR047C" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: "2.4.2.19" - bigg.reaction: "NNDPR" + - kegg.pathway: "sce00760" - kegg.reaction: "R03348" - metanetx.reaction: "MNXR101980" - sbo: "SBO:0000176" @@ -44058,10 +44058,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR047C" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: "2.4.2.19" - bigg.reaction: "NNDPRm" + - kegg.pathway: "sce00760" - kegg.reaction: "R03348" - metanetx.reaction: "MNXR101980" - sbo: "SBO:0000176" @@ -44078,12 +44078,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER005W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NDP1" + - kegg.pathway: + - "sce00230" + - "sce00240" - kegg.reaction: "R00122" - metanetx.reaction: "MNXR96129" - pmid: "10409709" @@ -44101,12 +44101,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER005W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NDP3" + - kegg.pathway: + - "sce00230" + - "sce00240" - kegg.reaction: "R00328" - metanetx.reaction: "MNXR101928" - pmid: "10409709" @@ -44124,12 +44124,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER005W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NDP7" + - kegg.pathway: + - "sce00230" + - "sce00240" - kegg.reaction: "R00155" - metanetx.reaction: "MNXR101931" - pmid: "10409709" @@ -44166,12 +44166,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER005W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "CDPPH" + - kegg.pathway: + - "sce00230" + - "sce00240" - kegg.reaction: "R00514" - metanetx.reaction: "MNXR96559" - sbo: "SBO:0000176" @@ -44188,12 +44188,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER005W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "IDPA" + - kegg.pathway: + - "sce00230" + - "sce00240" - kegg.reaction: "R00961" - metanetx.reaction: "MNXR100807" - sbo: "SBO:0000176" @@ -44209,14 +44209,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK3" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R00570" - metanetx.reaction: "MNXR101936" - sbo: "SBO:0000176" @@ -44232,14 +44232,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK8" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R01137" - metanetx.reaction: "MNXR101940" - sbo: "SBO:0000176" @@ -44255,14 +44255,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK7" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R02326" - metanetx.reaction: "MNXR101939" - sbo: "SBO:0000176" @@ -44278,14 +44278,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK5" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R01857" - metanetx.reaction: "MNXR96118" - sbo: "SBO:0000176" @@ -44301,14 +44301,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK4" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R02093" - metanetx.reaction: "MNXR101937" - sbo: "SBO:0000176" @@ -44324,14 +44324,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK1" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R00330" - metanetx.reaction: "MNXR96119" - sbo: "SBO:0000176" @@ -44347,14 +44347,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK9" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R00722" - metanetx.reaction: "MNXR101941" - sbo: "SBO:0000176" @@ -44370,14 +44370,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK10" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R03530" - metanetx.reaction: "MNXR101934" - sbo: "SBO:0000176" @@ -44393,14 +44393,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK6" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R02331" - metanetx.reaction: "MNXR101938" - sbo: "SBO:0000176" @@ -44417,12 +44417,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL035W or YLL001W or YER005W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NTP3" + - kegg.pathway: + - "sce00230" + - "sce00240" - kegg.reaction: "R00335" - metanetx.reaction: "MNXR102043" - pmid: "10409709" @@ -44440,12 +44440,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER005W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NTP7" + - kegg.pathway: + - "sce00230" + - "sce00240" - kegg.reaction: "R00159" - metanetx.reaction: "MNXR101933" - pmid: "10409709" @@ -44463,12 +44463,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER005W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NTP5" + - kegg.pathway: + - "sce00230" + - "sce00240" - kegg.reaction: "R00569" - metanetx.reaction: "MNXR102045" - sbo: "SBO:0000176" @@ -44485,12 +44485,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER005W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NTP10" + - kegg.pathway: + - "sce00230" + - "sce00240" - kegg.reaction: "R00719" - metanetx.reaction: "MNXR100892" - sbo: "SBO:0000176" @@ -44525,14 +44525,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK2" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R00156" - metanetx.reaction: "MNXR101935" - sbo: "SBO:0000176" @@ -44549,18 +44549,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR303W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00920 Sulfur metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "2.5.1.47" - "2.5.1.49" - bigg.reaction: "AHSERL" + - kegg.pathway: + - "sce00270" + - "sce00920" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00651" - metanetx.reaction: "MNXR95634" - pmid: "15042590" @@ -44577,18 +44577,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR303W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00920 Sulfur metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "2.5.1.47" - "2.5.1.49" - bigg.reaction: "AHSERL2" + - kegg.pathway: + - "sce00270" + - "sce00920" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01287" - metanetx.reaction: "MNXR95631" - pmid: "15042590" @@ -44606,15 +44606,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLL058W or YML082W or YAL012W" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00450 Selenocompound metabolism" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.4.1.1" - bigg.reaction: "SHSL1" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce00450" + - "sce01130" + - "sce01230" - kegg.reaction: "R03260" - metanetx.reaction: "MNXR104380" - pmid: "8511969" @@ -44632,14 +44632,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL088W" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.1.3.3" - bigg.reaction: "OCBT" + - kegg.pathway: + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01398" - metanetx.reaction: "MNXR102137" - sbo: "SBO:0000176" @@ -44655,14 +44655,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL184W" - - subsystem: - - "sce00330 Arginine and proline metabolism" - - "sce00480 Glutathione metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "4.1.1.17" - bigg.reaction: "ORNDC" + - kegg.pathway: + - "sce00330" + - "sce00480" + - "sce01110" + - "sce01130" - kegg.reaction: "R00670" - metanetx.reaction: "MNXR102209" - sbo: "SBO:0000176" @@ -44678,17 +44678,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR062C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "2.3.1.1" - "2.3.1.35" - bigg.reaction: "ORNTACim" + - kegg.pathway: + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R02282" - metanetx.reaction: "MNXR102221" - sbo: "SBO:0000176" @@ -44704,13 +44704,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR438W" - - subsystem: - - "sce00330 Arginine and proline metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.6.1.13" - bigg.reaction: "ORNTA" + - kegg.pathway: + - "sce00330" + - "sce01110" + - "sce01130" - kegg.reaction: "R00667" - metanetx.reaction: "MNXR102220" - sbo: "SBO:0000176" @@ -44726,10 +44726,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YML106W or YMR271C" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "2.4.2.10" - bigg.reaction: "ORPT" + - kegg.pathway: "sce00240" - kegg.reaction: "R01870" - metanetx.reaction: "MNXR102231" - sbo: "SBO:0000176" @@ -44745,10 +44745,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL021W" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "4.1.1.23" - bigg.reaction: "OMPDC" + - kegg.pathway: "sce00240" - kegg.reaction: "R00965" - metanetx.reaction: "MNXR102190" - sbo: "SBO:0000176" @@ -44764,25 +44764,25 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR148C and YFL018C and YIL125W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00310 Lysine degradation" - - "sce00380 Tryptophan metabolism" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.2.4.2" - "1.8.1.4" - "2.3.1.61" - bigg.reaction: "AKGDbm" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R02570" - metanetx.reaction: "MNXR95656" - pmid: "2178788" @@ -44800,25 +44800,25 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR148C and YFL018C and YIL125W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00310 Lysine degradation" - - "sce00380 Tryptophan metabolism" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.2.4.2" - "1.8.1.4" - "2.3.1.61" - bigg.reaction: "AKGDam" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R01700" - metanetx.reaction: "MNXR95657" - pmid: "10224250" @@ -44836,10 +44836,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR277C" - - subsystem: "sce00770 Pantothenate and CoA biosynthesis" - annotation: !!omap - ec-code: "2.7.7.3" - bigg.reaction: "PTPATi" + - kegg.pathway: "sce00770" - kegg.reaction: "R03035" - metanetx.reaction: "MNXR95892" - pmid: "19266201" @@ -44857,10 +44857,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR531W" - - subsystem: "sce00770 Pantothenate and CoA biosynthesis" - annotation: !!omap - ec-code: "2.7.1.33" - bigg.reaction: "PNTK" + - kegg.pathway: "sce00770" - kegg.reaction: "R03018" - metanetx.reaction: "MNXR103050" - sbo: "SBO:0000176" @@ -44879,13 +44879,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL145C" - - subsystem: - - "sce00410 beta-Alanine metabolism" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "6.3.2.1" - bigg.reaction: "PANTS" + - kegg.pathway: + - "sce00410" + - "sce00770" + - "sce01110" - kegg.reaction: "R02473" - metanetx.reaction: "MNXR102345" - sbo: "SBO:0000176" @@ -44902,12 +44902,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.2.2" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" - metanetx.reaction: "MNXR122908" - pmid: "10092594" - sbo: "SBO:0000176" @@ -44924,13 +44924,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.2.2" - bigg.reaction: "PTE11x" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" - metanetx.reaction: "MNXR122907" - pmid: "10092594" - sbo: "SBO:0000176" @@ -44947,13 +44947,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.2.2" - bigg.reaction: "PTE2x" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" - kegg.reaction: "R01274" - metanetx.reaction: "MNXR99131" - pmid: "10092594" @@ -44971,13 +44971,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.2.2" - bigg.reaction: "PTE7x" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" - metanetx.reaction: "MNXR122906" - pmid: "10092594" - sbo: "SBO:0000176" @@ -44994,13 +44994,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.2.2" - bigg.reaction: "PTE8x" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" - kegg.reaction: "R08174" - metanetx.reaction: "MNXR99133" - pmid: "10092594" @@ -45018,13 +45018,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.2.2" - bigg.reaction: "PTE9x" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" - metanetx.reaction: "MNXR99140" - pmid: "10092594" - sbo: "SBO:0000176" @@ -45040,23 +45040,23 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL202W" - - subsystem: - - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" - - "sce00270 Cysteine and methionine metabolism" - - "sce00300 Lysine biosynthesis" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00380 Tryptophan metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "2.6.1.39" - "2.6.1.57" - bigg.reaction: "PHETA1" + - kegg.pathway: + - "sce00130" + - "sce00270" + - "sce00300" + - "sce00350" + - "sce00360" + - "sce00380" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00694" - metanetx.reaction: "MNXR126234" - pmid: @@ -45077,10 +45077,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFL022C and YLR060W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.20" - bigg.reaction: "PHETRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03660" - metanetx.reaction: "MNXR102634" - pmid: "3049607" @@ -45099,10 +45099,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR047W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.20" - bigg.reaction: "PHETRSm" + - kegg.pathway: "sce00970" - kegg.reaction: "R03660" - metanetx.reaction: "MNXR102634" - pmid: "3029120" @@ -45119,10 +45119,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR380W" - - subsystem: "sce00360 Phenylalanine metabolism" - annotation: !!omap - ec-code: "4.1.1.43" - bigg.reaction: "PPYRDC" + - kegg.pathway: "sce00360" - kegg.reaction: "R01377" - metanetx.reaction: "MNXR125761" - pmid: "12902239" @@ -45141,15 +45141,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL234W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "6.3.3.1" - "6.3.4.13" - bigg.reaction: "PRAIS" + - kegg.pathway: + - "sce00230" + - "sce01110" + - "sce01130" - kegg.reaction: "R04208" - metanetx.reaction: "MNXR139261" - sbo: "SBO:0000176" @@ -45163,11 +45163,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YEL058W" - - subsystem: - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "5.4.2.3" + - kegg.pathway: + - "sce00520" + - "sce01130" - kegg.reaction: "R08193" - metanetx.reaction: "MNXR111765" - pmid: "8174553" @@ -45186,10 +45186,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YGR209C and YPR167C) or (YLR043C and YPR167C)" - - subsystem: "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: "1.8.4.8" - bigg.reaction: "PAPSR" + - kegg.pathway: "sce00920" - metanetx.reaction: "MNXR137297" - pmid: "2203779" - sbo: "SBO:0000176" @@ -45206,16 +45206,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR097W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "4.1.1.49" - bigg.reaction: "PPCK" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00620" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00341" - metanetx.reaction: "MNXR103099" - sbo: "SBO:0000176" @@ -45232,12 +45232,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR007W" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.7.14" - bigg.reaction: "PETHCT" + - kegg.pathway: + - "sce00440" + - "sce00564" - kegg.reaction: "R02038" - metanetx.reaction: "MNXR102498" - sbo: "SBO:0000176" @@ -45254,19 +45254,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR205C or (YGR240C and YMR205C)" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00030 Pentose phosphate pathway" - - "sce00051 Fructose and mannose metabolism" - - "sce00052 Galactose metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - - "sce03018 RNA degradation" - annotation: !!omap - ec-code: "2.7.1.11" - bigg.reaction: "PFK" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00051" + - "sce00052" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - "sce03018" - kegg.reaction: "R00756" - metanetx.reaction: "MNXR106666" - pmid: "3007939" @@ -45284,19 +45284,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR205C or (YGR240C and YMR205C)" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00030 Pentose phosphate pathway" - - "sce00051 Fructose and mannose metabolism" - - "sce00052 Galactose metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - - "sce03018 RNA degradation" - annotation: !!omap - ec-code: "2.7.1.11" - bigg.reaction: "PFK_3" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00051" + - "sce00052" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - "sce03018" - kegg.reaction: "R01843" - metanetx.reaction: "MNXR102510" - sbo: "SBO:0000176" @@ -45310,18 +45310,18 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR105C or YKL127W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00030 Pentose phosphate pathway" - - "sce00052 Galactose metabolism" - - "sce00230 Purine metabolism" - - "sce00500 Starch and sucrose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "5.4.2.2" - bigg.reaction: "PGMT" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00052" + - "sce00230" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" - kegg.reaction: "R08639" - metanetx.reaction: "MNXR102548" - pmid: @@ -45341,15 +45341,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR256W or YHR183W" - - subsystem: - - "sce00030 Pentose phosphate pathway" - - "sce00480 Glutathione metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "1.1.1.44" - bigg.reaction: "GND" + - kegg.pathway: + - "sce00030" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R01528" - metanetx.reaction: "MNXR100389" - pmid: "24626" @@ -45364,12 +45364,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YEL058W" - - subsystem: - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "5.4.2.3" - bigg.reaction: "PGAMT" + - kegg.pathway: + - "sce00520" + - "sce01130" - kegg.reaction: "R02060" - metanetx.reaction: "MNXR102526" - pmid: "8174553" @@ -45387,16 +45387,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER081W or YIL074C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "1.1.1.399" - "1.1.1.95" - bigg.reaction: "PGCD" + - kegg.pathway: + - "sce00260" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01513" - metanetx.reaction: "MNXR102527" - pmid: "12525494" @@ -45413,15 +45413,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR012W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.7.2.3" - bigg.reaction: "PGK" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01512" - metanetx.reaction: "MNXR102538" - pmid: "6347186" @@ -45436,16 +45436,16 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOR283W or YKL152C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "5.4.2.11" - bigg.reaction: "PGM" + - kegg.pathway: + - "sce00010" + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01518" - metanetx.reaction: "MNXR102547" - pmid: "3033435" @@ -45460,14 +45460,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YFL045C" - - subsystem: - - "sce00051 Fructose and mannose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "5.4.2.8" - bigg.reaction: "PMANM" + - kegg.pathway: + - "sce00051" + - "sce00520" + - "sce01110" + - "sce01130" - kegg.reaction: "R01818" - metanetx.reaction: "MNXR101729" - sbo: "SBO:0000176" @@ -45483,12 +45483,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL055C or YPL258C or YPR121W" - - subsystem: "sce00730 Thiamine metabolism" - annotation: !!omap - ec-code: - "2.7.1.49" - "2.7.4.7" - bigg.reaction: "PMPK" + - kegg.pathway: "sce00730" - kegg.reaction: "R04509" - metanetx.reaction: "MNXR103045" - pmid: "10383756" @@ -45505,13 +45505,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR220W" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.4.2" - bigg.reaction: "PMEVK" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R03245" - metanetx.reaction: "MNXR103043" - sbo: "SBO:0000176" @@ -45530,10 +45530,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL083C" - - subsystem: "sce00770 Pantothenate and CoA biosynthesis" - annotation: !!omap - ec-code: "6.3.2.5" - bigg.reaction: "PPNCL2" + - kegg.pathway: "sce00770" - kegg.reaction: "R04231" - metanetx.reaction: "MNXR103119" - sbo: "SBO:0000176" @@ -45549,10 +45549,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YKL088W and YKR072C and YOR054C) or (YKL088W and YKR072C) or (YKL088W and YOR054C) or YKL088W" - - subsystem: "sce00770 Pantothenate and CoA biosynthesis" - annotation: !!omap - ec-code: "4.1.1.36" - bigg.reaction: "PPCDC" + - kegg.pathway: "sce00770" - kegg.reaction: "R03269" - metanetx.reaction: "MNXR103098" - sbo: "SBO:0000176" @@ -45566,20 +45566,20 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL127W or YMR105C or YMR278W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00030 Pentose phosphate pathway" - - "sce00052 Galactose metabolism" - - "sce00230 Purine metabolism" - - "sce00500 Starch and sucrose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "5.4.2.2" - "5.4.2.7" - bigg.reaction: "PPM" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00052" + - "sce00230" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR103115" - sbo: "SBO:0000176" - confidence_score: 2 @@ -45597,13 +45597,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAR015W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "6.3.2.6" - bigg.reaction: "PRASCSi" + - kegg.pathway: + - "sce00230" + - "sce01110" + - "sce01130" - kegg.reaction: "R04591" - metanetx.reaction: "MNXR108987" - sbo: "SBO:0000176" @@ -45618,16 +45618,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL030C" - - subsystem: - - "sce00340 Histidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "1.1.1.23" - "3.5.4.19" - "3.6.1.31" - bigg.reaction: "PRAMPC" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R04037" - metanetx.reaction: "MNXR103154" - pmid: "7049842" @@ -45645,16 +45645,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL030C" - - subsystem: - - "sce00340 Histidine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "1.1.1.23" - "3.5.4.19" - "3.6.1.31" - bigg.reaction: "PRATPP" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R04035" - metanetx.reaction: "MNXR103155" - sbo: "SBO:0000176" @@ -45670,11 +45670,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR128C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.21" + - kegg.pathway: + - "sce00230" + - "sce01110" - kegg.reaction: "R04209" - metanetx.reaction: "MNXR108735" - sbo: "SBO:0000176" @@ -45690,16 +45690,16 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR028C or YMR120C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "2.1.2.3" - "3.5.4.10" - bigg.reaction: "AICART" + - kegg.pathway: + - "sce00230" + - "sce00670" + - "sce01110" + - "sce01130" - kegg.reaction: "R04560" - metanetx.reaction: "MNXR95639" - sbo: "SBO:0000176" @@ -45713,14 +45713,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR007W" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "5.3.1.24" - bigg.reaction: "PRAIi" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03509" - metanetx.reaction: "MNXR103156" - pmid: "348687" @@ -45740,15 +45740,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL234W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "6.3.3.1" - "6.3.4.13" - bigg.reaction: "PRAGSr" + - kegg.pathway: + - "sce00230" + - "sce01110" + - "sce01130" - kegg.reaction: "R04144" - metanetx.reaction: "MNXR103139" - sbo: "SBO:0000176" @@ -45766,14 +45766,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR300C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.4.2.14" - bigg.reaction: "GLUPRT" + - kegg.pathway: + - "sce00230" + - "sce00250" + - "sce01110" + - "sce01130" - kegg.reaction: "R01072" - metanetx.reaction: "MNXR100287" - sbo: "SBO:0000176" @@ -45790,16 +45790,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YKL181W and YER099C) or (YKL181W and YHL011C) or (YKL181W and YBL068W) or (YER099C and YOL061W) or (YBL068W and YOL061W)" - - subsystem: - - "sce00030 Pentose phosphate pathway" - - "sce00230 Purine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.7.6.1" - bigg.reaction: "PRPPS" + - kegg.pathway: + - "sce00030" + - "sce00230" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - metanetx.reaction: "MNXR103215" - pmid: "10212224" - sbo: "SBO:0000176" @@ -45815,14 +45815,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR208W" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "3.1.3.3" - bigg.reaction: "PSP_L" + - kegg.pathway: + - "sce00260" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00582" - metanetx.reaction: "MNXR103260" - pmid: "1326413" @@ -45839,15 +45839,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR184W" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00750 Vitamin B6 metabolism" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.52" - bigg.reaction: "PSERT" + - kegg.pathway: + - "sce00260" + - "sce00750" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R04173" - metanetx.reaction: "MNXR103225" - pmid: "8017107" @@ -45864,9 +45864,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR183W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126696" - pmid: - "10702247" @@ -45884,11 +45884,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR402C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00380 Tryptophan metabolism" - annotation: !!omap - ec-code: "1.14.14.-" + - kegg.pathway: + - "sce00071" + - "sce00380" - kegg.reaction: "R06527" - metanetx.reaction: "MNXR126694" - sbo: "SBO:0000176" @@ -45903,9 +45903,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR294C" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "4.1.2.27" + - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR103262" - pmid: - "18296751" @@ -45926,9 +45926,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR297W" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "1.-.-.-" + - kegg.pathway: "sce00600" - kegg.reaction: "R06525" - metanetx.reaction: "MNXR103263" - pmid: @@ -45949,12 +45949,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR020W" - - subsystem: - - "sce00330 Arginine and proline metabolism" - - "sce00410 beta-Alanine metabolism" - annotation: !!omap - ec-code: "1.5.3.17" - bigg.reaction: "POLYAO" + - kegg.pathway: + - "sce00330" + - "sce00410" - metanetx.reaction: "MNXR103057" - pmid: "12670477" - sbo: "SBO:0000176" @@ -45970,12 +45970,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL040C" - - subsystem: - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.2.1.24" - bigg.reaction: "PPBNGS" + - kegg.pathway: + - "sce00860" + - "sce01110" - kegg.reaction: "R00036" - metanetx.reaction: "MNXR103095" - sbo: "SBO:0000176" @@ -45993,12 +45993,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR020W" - - subsystem: - - "sce00330 Arginine and proline metabolism" - - "sce00410 beta-Alanine metabolism" - annotation: !!omap - ec-code: "1.5.3.17" - bigg.reaction: "POLYAO2" + - kegg.pathway: + - "sce00330" + - "sce00410" - kegg.reaction: "R03899" - metanetx.reaction: "MNXR103058" - pmid: "12670477" @@ -46017,12 +46017,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR020W" - - subsystem: - - "sce00330 Arginine and proline metabolism" - - "sce00410 beta-Alanine metabolism" - annotation: !!omap - ec-code: "1.5.3.17" - bigg.reaction: "POLYAO3" + - kegg.pathway: + - "sce00330" + - "sce00410" - kegg.reaction: "R09076" - metanetx.reaction: "MNXR103059" - pmid: "12670477" @@ -46040,14 +46040,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL316C" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.51" - bigg.reaction: "PPNDH" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01373" - metanetx.reaction: "MNXR126086" - pmid: "7502583" @@ -46065,13 +46065,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR166C" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.3.1.13" - bigg.reaction: "PPND2" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" - kegg.reaction: "R01730" - metanetx.reaction: "MNXR103122" - pmid: "2697638" @@ -46088,12 +46088,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR142W" - - subsystem: - - "sce00330 Arginine and proline metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.5.5.2" + - kegg.pathway: + - "sce00330" + - "sce01110" + - "sce01130" - kegg.reaction: "R10507" - metanetx.reaction: "MNXR103187" - sbo: "SBO:0000176" @@ -46111,10 +46111,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR020W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.15" - bigg.reaction: "PROTRS_1" + - kegg.pathway: "sce00970" - kegg.reaction: "R03661" - metanetx.reaction: "MNXR103208" - sbo: "SBO:0000176" @@ -46130,12 +46130,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER014W" - - subsystem: - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "1.3.3.4" - bigg.reaction: "PPPGOm" + - kegg.pathway: + - "sce00860" + - "sce01110" - kegg.reaction: "R03222" - metanetx.reaction: "MNXR103132" - sbo: "SBO:0000176" @@ -46152,18 +46152,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR400W and YLR017W and YLR209C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00760 Nicotinate and nicotinamide metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.4.2.1" - "2.4.2.28" - "3.2.2.3" - bigg.reaction: "PNP" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00270" + - "sce00760" + - "sce01110" - kegg.reaction: "R02294" - metanetx.reaction: "MNXR103048" - pmid: "17482543" @@ -46180,14 +46180,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR209C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce00760 Nicotinate and nicotinamide metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.4.2.1" - bigg.reaction: "PUNP3" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00760" + - "sce01110" - kegg.reaction: "R02147" - metanetx.reaction: "MNXR103345" - pmid: "23670538" @@ -46204,14 +46204,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR209C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce00760 Nicotinate and nicotinamide metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.4.2.1" - bigg.reaction: "PUNP3m" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00760" + - "sce01110" - kegg.reaction: "R02147" - metanetx.reaction: "MNXR103345" - pmid: "23670538" @@ -46228,14 +46228,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR209C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce00760 Nicotinate and nicotinamide metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.4.2.1" - bigg.reaction: "PUNP5" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00760" + - "sce01110" - kegg.reaction: "R01863" - metanetx.reaction: "MNXR103347" - pmid: "23670538" @@ -46254,10 +46254,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR035C" - - subsystem: "sce00750 Vitamin B6 metabolism" - annotation: !!omap - ec-code: "1.4.3.5" - bigg.reaction: "PYDXO" + - kegg.pathway: "sce00750" - metanetx.reaction: "MNXR103365" - sbo: "SBO:0000176" - confidence_score: 2 @@ -46274,10 +46274,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR035C" - - subsystem: "sce00750 Vitamin B6 metabolism" - annotation: !!omap - ec-code: "1.4.3.5" - bigg.reaction: "PYAM5PO" + - kegg.pathway: "sce00750" - kegg.reaction: "R00277" - metanetx.reaction: "MNXR103355" - sbo: "SBO:0000176" @@ -46293,10 +46293,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR035C" - - subsystem: "sce00750 Vitamin B6 metabolism" - annotation: !!omap - ec-code: "1.4.3.5" - bigg.reaction: "PDX5POi" + - kegg.pathway: "sce00750" - kegg.reaction: "R00278" - metanetx.reaction: "MNXR102438" - sbo: "SBO:0000176" @@ -46312,10 +46312,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR035C" - - subsystem: "sce00750 Vitamin B6 metabolism" - annotation: !!omap - ec-code: "1.4.3.5" - bigg.reaction: "PYDXNO" + - kegg.pathway: "sce00750" - kegg.reaction: "R01711" - metanetx.reaction: "MNXR103363" - sbo: "SBO:0000176" @@ -46332,14 +46332,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER023W" - - subsystem: - - "sce00330 Arginine and proline metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.5.1.2" - bigg.reaction: "P5CR" + - kegg.pathway: + - "sce00330" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01251" - metanetx.reaction: "MNXR102302" - sbo: "SBO:0000176" @@ -46358,14 +46358,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR218C or YGL062W" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00620 Pyruvate metabolism" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "6.4.1.1" - bigg.reaction: "PC" + - kegg.pathway: + - "sce00020" + - "sce00620" + - "sce01200" + - "sce01230" - kegg.reaction: "R00344" - metanetx.reaction: "MNXR102391" - sbo: "SBO:0000176" @@ -46381,10 +46381,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "4.1.1.-" @@ -46392,6 +46388,10 @@ - "4.1.1.43" - "4.1.1.74" - bigg.reaction: "PYRDC" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" - kegg.reaction: "R00224" - metanetx.reaction: "MNXR103379" - sbo: "SBO:0000176" @@ -46408,10 +46408,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "4.1.1.-" @@ -46419,6 +46415,10 @@ - "4.1.1.43" - "4.1.1.74" - bigg.reaction: "PYRDC2" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR103380" - pmid: "12902239" - sbo: "SBO:0000176" @@ -46436,23 +46436,23 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR221C and YER178W and YFL018C and YGR193C and YNL071W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.2.4.1" - "1.8.1.4" - "2.3.1.12" - bigg.reaction: "PDHm" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00209" - metanetx.reaction: "MNXR102425" - pmid: "8433986" @@ -46470,17 +46470,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL038W or YOR347C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00230 Purine metabolism" - - "sce00620 Pyruvate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.7.1.40" - bigg.reaction: "PYK" + - kegg.pathway: + - "sce00010" + - "sce00230" + - "sce00620" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00200" - metanetx.reaction: "MNXR103371" - pmid: "6185493" @@ -46500,9 +46500,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - subsystem: - - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "1.14.13.-" @@ -46510,6 +46507,9 @@ - "2.1.1.201" - "2.1.1.64" - "2.7.-.-" + - kegg.pathway: + - "sce00130" + - "sce01110" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -46543,12 +46543,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR236C" - - subsystem: - - "sce00740 Riboflavin metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.1.26" - bigg.reaction: "RBFK" + - kegg.pathway: + - "sce00740" + - "sce01110" - kegg.reaction: "R00549" - metanetx.reaction: "MNXR103429" - sbo: "SBO:0000176" @@ -46565,12 +46565,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR236C" - - subsystem: - - "sce00740 Riboflavin metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.1.26" - bigg.reaction: "RBFKm" + - kegg.pathway: + - "sce00740" + - "sce01110" - kegg.reaction: "R00549" - metanetx.reaction: "MNXR103429" - sbo: "SBO:0000176" @@ -46588,12 +46588,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL143C" - - subsystem: - - "sce00740 Riboflavin metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.78" - bigg.reaction: "RBFSa" + - kegg.pathway: + - "sce00740" + - "sce01110" - kegg.reaction: "R04457" - metanetx.reaction: "MNXR97501" - sbo: "SBO:0000176" @@ -46609,12 +46609,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR256C" - - subsystem: - - "sce00740 Riboflavin metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.9" - bigg.reaction: "RBFSb" + - kegg.pathway: + - "sce00740" + - "sce01110" - kegg.reaction: "R00066" - metanetx.reaction: "MNXR103430" - sbo: "SBO:0000176" @@ -46631,10 +46631,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR036W" - - subsystem: "sce00030 Pentose phosphate pathway" - annotation: !!omap - ec-code: "2.7.1.15" - bigg.reaction: "RBK" + - kegg.pathway: "sce00030" - kegg.reaction: "R01051" - metanetx.reaction: "MNXR103431" - pmid: "1964349" @@ -46729,13 +46729,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: "1.17.4.1" - bigg.reaction: "RNDR1" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00480" - kegg.reaction: "R02017" - metanetx.reaction: "MNXR104060" - sbo: "SBO:0000176" @@ -46753,13 +46753,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: "1.17.4.1" - bigg.reaction: "RNDR1n" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00480" - kegg.reaction: "R02017" - metanetx.reaction: "MNXR104060" - sbo: "SBO:0000176" @@ -46777,13 +46777,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: "1.17.4.1" - bigg.reaction: "RNDR3" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00480" - kegg.reaction: "R02024" - metanetx.reaction: "MNXR104064" - sbo: "SBO:0000176" @@ -46801,13 +46801,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: "1.17.4.1" - bigg.reaction: "RNDR3n" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00480" - kegg.reaction: "R02024" - metanetx.reaction: "MNXR104064" - sbo: "SBO:0000176" @@ -46825,13 +46825,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: "1.17.4.1" - bigg.reaction: "RNDR2" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00480" - kegg.reaction: "R02019" - metanetx.reaction: "MNXR104062" - sbo: "SBO:0000176" @@ -46849,13 +46849,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00240 Pyrimidine metabolism" - - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: "1.17.4.1" - bigg.reaction: "RNDR2n" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00480" - kegg.reaction: "R02019" - metanetx.reaction: "MNXR104062" - sbo: "SBO:0000176" @@ -46869,15 +46869,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOR095C" - - subsystem: - - "sce00030 Pentose phosphate pathway" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "5.3.1.6" - bigg.reaction: "RPI" + - kegg.pathway: + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - metanetx.reaction: "MNXR104084" - pmid: "9763699" - sbo: "SBO:0000176" @@ -46894,12 +46894,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL129W" - - subsystem: "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: - "2.7.1.173" - "2.7.1.22" - bigg.reaction: "RNMK" + - kegg.pathway: "sce00760" - kegg.reaction: "R02324" - metanetx.reaction: "MNXR104069" - pmid: "15137942" @@ -46914,16 +46914,16 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJL121C" - - subsystem: - - "sce00030 Pentose phosphate pathway" - - "sce00040 Pentose and glucuronate interconversions" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "5.1.3.1" - bigg.reaction: "RPE" + - kegg.pathway: + - "sce00030" + - "sce00040" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01529" - metanetx.reaction: "MNXR104083" - pmid: "9032985" @@ -46941,9 +46941,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - subsystem: - - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "1.14.13.-" @@ -46952,6 +46949,9 @@ - "2.1.1.64" - "2.7.-.-" - bigg.reaction: "3DH5HPBMTm" + - kegg.pathway: + - "sce00130" + - "sce01110" - kegg.reaction: "R04711" - metanetx.reaction: "MNXR94862" - pmid: "15792955" @@ -46969,13 +46969,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML008C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.1.1.41" - bigg.reaction: "SAM24MT" + - kegg.pathway: + - "sce00100" + - "sce01110" + - "sce01130" - kegg.reaction: "R04427" - metanetx.reaction: "MNXR104270" - sbo: "SBO:0000176" @@ -46992,10 +46992,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL068C" - - subsystem: "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "3.1.2.12" - bigg.reaction: "SFGTHi" + - kegg.pathway: "sce01200" - kegg.reaction: "R00527" - metanetx.reaction: "MNXR104357" - sbo: "SBO:0000176" @@ -47014,15 +47014,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIR034C" - - subsystem: - - "sce00300 Lysine biosynthesis" - - "sce00310 Lysine degradation" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.5.1.7" - bigg.reaction: "SACCD2" + - kegg.pathway: + - "sce00300" + - "sce00310" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R00715" - metanetx.reaction: "MNXR104237" - pmid: "3928261" @@ -47042,15 +47042,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNR050C" - - subsystem: - - "sce00300 Lysine biosynthesis" - - "sce00310 Lysine degradation" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "1.5.1.10" - bigg.reaction: "SACCD1" + - kegg.pathway: + - "sce00300" + - "sce00310" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R02315" - metanetx.reaction: "MNXR104236" - pmid: "3123231" @@ -47066,17 +47066,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL060C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00030 Pentose phosphate pathway" - - "sce00051 Fructose and mannose metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.1.2.13" - bigg.reaction: "FBA3" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00051" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01829" - metanetx.reaction: "MNXR99461" - sbo: "SBO:0000176" @@ -47112,11 +47112,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR058C-A and YDR062W and YMR296C) or (YDR062W and YMR296C)" - - subsystem: - - "sce00600 Sphingolipid metabolism" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: "2.3.1.50" + - kegg.pathway: + - "sce00600" + - "sce04138" - kegg.reaction: "R01281" - metanetx.reaction: "MNXR104347" - pmid: @@ -47139,10 +47139,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR023W or YHR011W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.11" - bigg.reaction: "SERTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03662" - metanetx.reaction: "MNXR104350" - pmid: "3031581" @@ -47160,11 +47160,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR127W" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "1.1.1.25" @@ -47173,6 +47168,11 @@ - "4.2.1.10" - "4.2.3.4" - bigg.reaction: "SHK3Dr" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R02413" - metanetx.reaction: "MNXR104378" - pmid: "6355828" @@ -47190,11 +47190,6 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR127W" - - subsystem: - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "1.1.1.25" @@ -47203,6 +47198,11 @@ - "4.2.1.10" - "4.2.3.4" - bigg.reaction: "SHKK" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R02412" - metanetx.reaction: "MNXR104379" - pmid: "6355828" @@ -47220,14 +47220,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR213W" - - subsystem: - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "1.3.1.76" - "4.99.1.4" - bigg.reaction: "SHCHD2" + - kegg.pathway: + - "sce00860" + - "sce01110" - kegg.reaction: "R03947" - metanetx.reaction: "MNXR104373" - pmid: "11980703" @@ -47244,14 +47244,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR213W" - - subsystem: - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "1.3.1.76" - "4.99.1.4" - bigg.reaction: "SHCHF" + - kegg.pathway: + - "sce00860" + - "sce01110" - kegg.reaction: "R02864" - metanetx.reaction: "MNXR104375" - pmid: "11980703" @@ -47290,14 +47290,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR069C" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00330 Arginine and proline metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: "2.5.1.16" - bigg.reaction: "SPMS" + - kegg.pathway: + - "sce00270" + - "sce00330" + - "sce00410" + - "sce00480" - kegg.reaction: "R01920" - metanetx.reaction: "MNXR95860" - sbo: "SBO:0000176" @@ -47314,14 +47314,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR146C" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00330 Arginine and proline metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: "2.5.1.22" - bigg.reaction: "SPRMS" + - kegg.pathway: + - "sce00270" + - "sce00330" + - "sce00410" + - "sce00480" - kegg.reaction: "R02869" - metanetx.reaction: "MNXR96042" - sbo: "SBO:0000176" @@ -47336,10 +47336,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR294C" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "4.1.2.27" - bigg.reaction: "SGPL11r" + - kegg.pathway: "sce00600" - kegg.reaction: "R02464" - metanetx.reaction: "MNXR104365" - pmid: @@ -47358,10 +47358,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL134W or YKR053C" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.3.-" - bigg.reaction: "SBPP2er" + - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR104281" - pmid: - "18296751" @@ -47380,10 +47380,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL134W or YKR053C" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "3.1.3.-" - bigg.reaction: "SBPP1er" + - kegg.pathway: "sce00600" - kegg.reaction: "R06520" - metanetx.reaction: "MNXR104280" - pmid: @@ -47404,9 +47404,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR260W or YOR171C" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "2.7.1.91" + - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR104440" - pmid: - "18296751" @@ -47425,9 +47425,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR260W or YOR171C" - - subsystem: "sce00600 Sphingolipid metabolism" - annotation: !!omap - ec-code: "2.7.1.91" + - kegg.pathway: "sce00600" - kegg.reaction: "R02976" - metanetx.reaction: "MNXR104439" - pmid: @@ -47480,14 +47480,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR175C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00909 Sesquiterpenoid and triterpenoid biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.14.14.17" - bigg.reaction: "SQLErx" + - kegg.pathway: + - "sce00100" + - "sce00909" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR104528" - pmid: "10622712" - sbo: "SBO:0000176" @@ -47506,14 +47506,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR175C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00909 Sesquiterpenoid and triterpenoid biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.14.14.17" - bigg.reaction: "SQLEr" + - kegg.pathway: + - "sce00100" + - "sce00909" + - "sce01110" + - "sce01130" - kegg.reaction: "R02874" - metanetx.reaction: "MNXR104447" - pmid: "10622712" @@ -47532,14 +47532,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR190W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00909 Sesquiterpenoid and triterpenoid biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.5.1.21" - bigg.reaction: "SQLS" + - kegg.pathway: + - "sce00100" + - "sce00909" + - "sce01110" + - "sce01130" - kegg.reaction: "R06223" - metanetx.reaction: "MNXR104529" - sbo: "SBO:0000176" @@ -47555,15 +47555,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "(YDR178W and YJL045W and YKL141W and YLL041C) or (YDR178W and YKL141W and YKL148C and YLL041C) or (YLR164W and YJL045W and YKL141W and YLL041C)" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00190 Oxidative phosphorylation" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "1.3.5.1" - bigg.reaction: "SUCD2_u6m" + - kegg.pathway: + - "sce00020" + - "sce00190" + - "sce01110" + - "sce01130" + - "sce01200" - metanetx.reaction: "MNXR104627" - pmid: "9929002" - sbo: "SBO:0000176" @@ -47581,15 +47581,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR244C and YOR142W" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00640 Propanoate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: "6.2.1.5" - bigg.reaction: "SUCOASm" + - kegg.pathway: + - "sce00020" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00405" - metanetx.reaction: "MNXR104635" - pmid: "9874242" @@ -47608,15 +47608,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR006W" - - subsystem: - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00310 Lysine degradation" - - "sce00350 Tyrosine metabolism" - - "sce00650 Butanoate metabolism" - - "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: "1.2.1.16" - bigg.reaction: "SSALy" + - kegg.pathway: + - "sce00250" + - "sce00310" + - "sce00350" + - "sce00650" + - "sce00760" - kegg.reaction: "R00714" - metanetx.reaction: "MNXR104541" - pmid: "11031268" @@ -47633,12 +47633,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL162W" - - subsystem: - - "sce00052 Galactose metabolism" - - "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: "3.2.1.26" - bigg.reaction: "SUCRe" + - kegg.pathway: + - "sce00052" + - "sce00500" - kegg.reaction: "R00801" - metanetx.reaction: "MNXR104638" - sbo: "SBO:0000176" @@ -47655,15 +47655,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR010W" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00261 Monobactam biosynthesis" - - "sce00450 Selenocompound metabolism" - - "sce00920 Sulfur metabolism" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.7.4" - bigg.reaction: "SADT" + - kegg.pathway: + - "sce00230" + - "sce00261" + - "sce00450" + - "sce00920" + - "sce01130" - kegg.reaction: "R00529" - metanetx.reaction: "MNXR104240" - pmid: "197388" @@ -47681,14 +47681,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL050C" - - subsystem: - - "sce00230 Purine metabolism" - - "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: - "2.7.7.5" - "2.7.7.53" - bigg.reaction: "SLFAT" + - kegg.pathway: + - "sce00230" + - "sce00920" - kegg.reaction: "R00530" - metanetx.reaction: "MNXR104444" - pmid: "2556364" @@ -47707,10 +47707,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR030W and YJR137C" - - subsystem: "sce00920 Sulfur metabolism" - annotation: !!omap - ec-code: "1.8.1.2" - bigg.reaction: "SULR" + - kegg.pathway: "sce00920" - kegg.reaction: "R00858" - metanetx.reaction: "MNXR104650" - sbo: "SBO:0000176" @@ -47768,24 +47768,24 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00620 Pyruvate metabolism" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce00640 Propanoate metabolism" - - "sce00670 One carbon pool by folate" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - annotation: !!omap - ec-code: - "1.4.4.2" - "1.8.1.4" - "2.1.2.10" - bigg.reaction: "THFATm" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R02300" - metanetx.reaction: "MNXR99614" - sbo: "SBO:0000176" @@ -47804,10 +47804,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL132C or YOR241W" - - subsystem: "sce00790 Folate biosynthesis" - annotation: !!omap - ec-code: "6.3.2.17" - bigg.reaction: "THFGLUS" + - kegg.pathway: "sce00790" - kegg.reaction: "R00942" - metanetx.reaction: "MNXR143412" - pmid: @@ -47827,12 +47827,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR092C" - - subsystem: - - "sce00730 Thiamine metabolism" - - "sce00740 Riboflavin metabolism" - annotation: !!omap - ec-code: "3.1.3.2" - bigg.reaction: "THMDPe" + - kegg.pathway: + - "sce00730" + - "sce00740" - metanetx.reaction: "MNXR138860" - sbo: "SBO:0000176" - confidence_score: 2 @@ -47847,12 +47847,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR092C" - - subsystem: - - "sce00730 Thiamine metabolism" - - "sce00740 Riboflavin metabolism" - annotation: !!omap - ec-code: "3.1.3.2" - bigg.reaction: "THMPe" + - kegg.pathway: + - "sce00730" + - "sce00740" - kegg.reaction: "R02135" - metanetx.reaction: "MNXR104823" - sbo: "SBO:0000176" @@ -47869,10 +47869,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR143C" - - subsystem: "sce00730 Thiamine metabolism" - annotation: !!omap - ec-code: "2.7.6.2" - bigg.reaction: "TMDPK" + - kegg.pathway: "sce00730" - kegg.reaction: "R00619" - metanetx.reaction: "MNXR104886" - sbo: "SBO:0000176" @@ -47888,10 +47888,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR143C" - - subsystem: "sce00730 Thiamine metabolism" - annotation: !!omap - ec-code: "2.7.6.2" - bigg.reaction: "TMDPPK" + - kegg.pathway: "sce00730" - kegg.reaction: "R00616" - metanetx.reaction: "MNXR104888" - sbo: "SBO:0000176" @@ -47908,12 +47908,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL214C" - - subsystem: "sce00730 Thiamine metabolism" - annotation: !!omap - ec-code: - "2.5.1.3" - "2.7.1.50" - bigg.reaction: "TMPPP" + - kegg.pathway: "sce00730" - kegg.reaction: "R03223" - metanetx.reaction: "MNXR104908" - sbo: "SBO:0000176" @@ -47948,10 +47948,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YDR353W and YGR209C) or (YDR353W and YLR043C) or YDR353W" - - subsystem: "sce00450 Selenocompound metabolism" - annotation: !!omap - ec-code: "1.8.1.9" - bigg.reaction: "TRDR" + - kegg.pathway: "sce00450" - kegg.reaction: "R02016" - metanetx.reaction: "MNXR104766" - sbo: "SBO:0000176" @@ -47967,14 +47967,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YCR083W and YHR106W) or (YCR083W and YPL091W)" - - subsystem: - - "sce00450 Selenocompound metabolism" - - "sce00480 Glutathione metabolism" - annotation: !!omap - ec-code: - "1.8.1.7" - "1.8.1.9" - bigg.reaction: "TRDRm" + - kegg.pathway: + - "sce00450" + - "sce00480" - kegg.reaction: "R02016" - metanetx.reaction: "MNXR104766" - pmid: "15701801" @@ -47990,14 +47990,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL046C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.1.2.48" - bigg.reaction: "THRA" + - kegg.pathway: + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R00751" - metanetx.reaction: "MNXR104833" - pmid: "9151955" @@ -48014,14 +48014,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR053W" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00750 Vitamin B6 metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.3.1" - bigg.reaction: "THRS" + - kegg.pathway: + - "sce00260" + - "sce00750" + - "sce01110" + - "sce01230" - kegg.reaction: "R01466" - metanetx.reaction: "MNXR104846" - pmid: "8082795" @@ -48040,10 +48040,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL078W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.3" - bigg.reaction: "THRTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03663" - metanetx.reaction: "MNXR104848" - pmid: "2995918" @@ -48062,10 +48062,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL194C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.3" - bigg.reaction: "THRTRSm" + - kegg.pathway: "sce00970" - kegg.reaction: "R03663" - metanetx.reaction: "MNXR104848" - pmid: "2999113" @@ -48082,12 +48082,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR074C" - - subsystem: - - "sce00240 Pyrimidine metabolism" - - "sce00670 One carbon pool by folate" - annotation: !!omap - ec-code: "2.1.1.45" - bigg.reaction: "TMDS" + - kegg.pathway: + - "sce00240" + - "sce00670" - kegg.reaction: "R02101" - metanetx.reaction: "MNXR104889" - sbo: "SBO:0000176" @@ -48122,12 +48122,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR003W" - - subsystem: - - "sce00900 Terpenoid backbone biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.5.1.-" - bigg.reaction: "PPTTm" + - kegg.pathway: + - "sce00900" + - "sce01110" - kegg.reaction: "R05613" - metanetx.reaction: "MNXR103150" - pmid: "2198286" @@ -48144,15 +48144,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR043C or YLR354C" - - subsystem: - - "sce00030 Pentose phosphate pathway" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.2.1.2" - bigg.reaction: "TALA" + - kegg.pathway: + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - metanetx.reaction: "MNXR124173" - pmid: "8300619" - sbo: "SBO:0000176" @@ -48168,15 +48168,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR117C or YPR074C" - - subsystem: - - "sce00030 Pentose phosphate pathway" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.2.1.1" - bigg.reaction: "TKT1" + - kegg.pathway: + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - metanetx.reaction: "MNXR104868" - pmid: "8268320" - sbo: "SBO:0000176" @@ -48192,15 +48192,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR117C or YPR074C" - - subsystem: - - "sce00030 Pentose phosphate pathway" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.2.1.1" - bigg.reaction: "TKT2" + - kegg.pathway: + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - metanetx.reaction: "MNXR124172" - sbo: "SBO:0000176" - confidence_score: 2 @@ -48215,12 +48215,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR126C and YDR074W and YML100W) or (YBR126C and YDR074W and YMR261C)" - - subsystem: "sce00500 Starch and sucrose metabolism" - annotation: !!omap - ec-code: - "2.4.1.15" - "3.1.3.12" - bigg.reaction: "TRE6PP" + - kegg.pathway: "sce00500" - kegg.reaction: "R02778" - metanetx.reaction: "MNXR104926" - pmid: "21623372" @@ -48235,17 +48235,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR050C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00051 Fructose and mannose metabolism" - - "sce00562 Inositol phosphate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "5.3.1.1" - bigg.reaction: "TPI" + - kegg.pathway: + - "sce00010" + - "sce00051" + - "sce00562" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01015" - metanetx.reaction: "MNXR104918" - pmid: "6759603" @@ -48263,15 +48263,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL026C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.20" - bigg.reaction: "TRPS1" + - kegg.pathway: + - "sce00260" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - metanetx.reaction: "MNXR132685" - pmid: "6342605" - sbo: "SBO:0000176" @@ -48287,23 +48287,23 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL202W" - - subsystem: - - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" - - "sce00270 Cysteine and methionine metabolism" - - "sce00300 Lysine biosynthesis" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00380 Tryptophan metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "2.6.1.39" - "2.6.1.57" - bigg.reaction: "TRPTA" + - kegg.pathway: + - "sce00130" + - "sce00270" + - "sce00300" + - "sce00350" + - "sce00360" + - "sce00380" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00684" - metanetx.reaction: "MNXR104947" - pmid: @@ -48324,10 +48324,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL097C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.2" - bigg.reaction: "TRPTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03664" - metanetx.reaction: "MNXR104948" - pmid: "9046085" @@ -48346,10 +48346,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR268W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.2" - bigg.reaction: "TRPTRSm" + - kegg.pathway: "sce00970" - kegg.reaction: "R03664" - metanetx.reaction: "MNXR104948" - pmid: "2999114" @@ -48366,23 +48366,23 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL202W" - - subsystem: - - "sce00130 Ubiquinone and other terpenoid-quinone biosynthesis" - - "sce00270 Cysteine and methionine metabolism" - - "sce00300 Lysine biosynthesis" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00380 Tryptophan metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: - "2.6.1.39" - "2.6.1.57" - bigg.reaction: "TYRTA" + - kegg.pathway: + - "sce00130" + - "sce00270" + - "sce00300" + - "sce00350" + - "sce00360" + - "sce00380" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00734" - metanetx.reaction: "MNXR105000" - pmid: @@ -48401,22 +48401,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR027C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00250 Alanine, aspartate and glutamate metabolism" - - "sce00270 Cysteine and methionine metabolism" - - "sce00330 Arginine and proline metabolism" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "TYRTAip" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00734" - metanetx.reaction: "MNXR105000" - sbo: "SBO:0000176" @@ -48434,10 +48434,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR185C" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.1" - bigg.reaction: "TYRTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R02918" - metanetx.reaction: "MNXR105001" - pmid: "8509419" @@ -48456,10 +48456,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL097W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.1" - bigg.reaction: "TYRTRSm" + - kegg.pathway: "sce00970" - kegg.reaction: "R02918" - metanetx.reaction: "MNXR105001" - pmid: "3315228" @@ -48495,11 +48495,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDL103C" - - subsystem: - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.7.23" + - kegg.pathway: + - "sce00520" + - "sce01130" - kegg.reaction: "R00416" - metanetx.reaction: "MNXR106519" - pmid: "16408321" @@ -48514,17 +48514,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR019C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00052 Galactose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "5.1.3.2" - "5.1.3.3" - bigg.reaction: "UDPG4E" + - kegg.pathway: + - "sce00010" + - "sce00052" + - "sce00520" + - "sce01110" + - "sce01130" - kegg.reaction: "R00291" - metanetx.reaction: "MNXR143428" - sbo: "SBO:0000176" @@ -48540,12 +48540,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR018C" - - subsystem: - - "sce00052 Galactose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - annotation: !!omap - ec-code: "2.7.7.12" - bigg.reaction: "UGLT" + - kegg.pathway: + - "sce00052" + - "sce00520" - kegg.reaction: "R00955" - metanetx.reaction: "MNXR143436" - sbo: "SBO:0000176" @@ -48561,10 +48561,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL024C" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "2.7.4.14" - bigg.reaction: "UMPK" + - kegg.pathway: "sce00240" - kegg.reaction: "R00158" - metanetx.reaction: "MNXR105118" - sbo: "SBO:0000176" @@ -48580,10 +48580,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL024C" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "2.7.4.14" - bigg.reaction: "UMPKn" + - kegg.pathway: "sce00240" - kegg.reaction: "R00158" - metanetx.reaction: "MNXR105118" - sbo: "SBO:0000176" @@ -48599,10 +48599,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR128W" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "2.4.2.9" - bigg.reaction: "UPPRT" + - kegg.pathway: "sce00240" - kegg.reaction: "R00966" - metanetx.reaction: "MNXR105142" - sbo: "SBO:0000176" @@ -48621,14 +48621,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR208C" - - subsystem: - - "sce00220 Arginine biosynthesis" - - "sce00791 Atrazine degradation" - annotation: !!omap - ec-code: - "3.5.1.54" - "6.3.4.6" - bigg.reaction: "UREASE" + - kegg.pathway: + - "sce00220" + - "sce00791" - kegg.reaction: "R00774" - metanetx.reaction: "MNXR105149" - sbo: "SBO:0000176" @@ -48646,10 +48646,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIR032C" - - subsystem: "sce00230 Purine metabolism" - annotation: !!omap - ec-code: "4.3.2.3" - bigg.reaction: "UGLYCH" + - kegg.pathway: "sce00230" - kegg.reaction: "R00469" - metanetx.reaction: "MNXR105091" - pmid: "1776360" @@ -48667,10 +48667,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR020C or YNR012W" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "2.7.1.48" - bigg.reaction: "URIK1" + - kegg.pathway: "sce00240" - kegg.reaction: "R00964" - metanetx.reaction: "MNXR105162" - sbo: "SBO:0000176" @@ -48687,10 +48687,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR020C or YNR012W" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "2.7.1.48" - bigg.reaction: "URIK2" + - kegg.pathway: "sce00240" - kegg.reaction: "R00968" - metanetx.reaction: "MNXR105163" - sbo: "SBO:0000176" @@ -48706,10 +48706,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL024C" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "2.7.4.14" - bigg.reaction: "URIDK2r" + - kegg.pathway: "sce00240" - kegg.reaction: "R02098" - metanetx.reaction: "MNXR105160" - sbo: "SBO:0000176" @@ -48725,10 +48725,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL024C" - - subsystem: "sce00240 Pyrimidine metabolism" - annotation: !!omap - ec-code: "2.7.4.14" - bigg.reaction: "URIDK2rn" + - kegg.pathway: "sce00240" - kegg.reaction: "R02098" - metanetx.reaction: "MNXR105160" - sbo: "SBO:0000176" @@ -48744,12 +48744,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR047W" - - subsystem: - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.37" - bigg.reaction: "UPPDC1" + - kegg.pathway: + - "sce00860" + - "sce01110" - kegg.reaction: "R03197" - metanetx.reaction: "MNXR105140" - sbo: "SBO:0000176" @@ -48766,12 +48766,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR069W" - - subsystem: - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.1.1.107" - bigg.reaction: "UPP3MT" + - kegg.pathway: + - "sce00860" + - "sce01110" - kegg.reaction: "R03194" - metanetx.reaction: "MNXR105137" - sbo: "SBO:0000176" @@ -48786,12 +48786,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR278W" - - subsystem: - - "sce00860 Porphyrin and chlorophyll metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.2.1.75" - bigg.reaction: "UPP3S" + - kegg.pathway: + - "sce00860" + - "sce01110" - kegg.reaction: "R03165" - metanetx.reaction: "MNXR105139" - sbo: "SBO:0000176" @@ -48808,15 +48808,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHL012W or YKL035W" - - subsystem: - - "sce00040 Pentose and glucuronate interconversions" - - "sce00052 Galactose metabolism" - - "sce00500 Starch and sucrose metabolism" - - "sce00520 Amino sugar and nucleotide sugar metabolism" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "2.7.7.9" - bigg.reaction: "GALUi" + - kegg.pathway: + - "sce00040" + - "sce00052" + - "sce00500" + - "sce00520" + - "sce01130" - kegg.reaction: "R00289" - metanetx.reaction: "MNXR143121" - pmid: "7588797" @@ -48835,13 +48835,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR127C and YDL185W and YEL027W and YEL051W and YGR020C and YHR026W and YHR039C-A and YKL080W and YLR447C and YMR054W and YOR332W and YPL234C and YPR036W" - - subsystem: - - "sce00190 Oxidative phosphorylation" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: - "3.1.-.-" - "3.6.3.14" + - kegg.pathway: + - "sce00190" + - "sce04145" - metanetx.reaction: "MNXR96133" - pmid: - "11278748" @@ -48861,13 +48861,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR127C and YDL185W and YEL027W and YEL051W and YGR020C and YHR026W and YHR039C-A and YKL080W and YLR447C and YOR270C and YOR332W and YPL234C and YPR036W" - - subsystem: - - "sce00190 Oxidative phosphorylation" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: - "3.1.-.-" - "3.6.3.14" + - kegg.pathway: + - "sce00190" + - "sce04145" - metanetx.reaction: "MNXR96133" - pmid: - "11278748" @@ -48885,18 +48885,18 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR148W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "VALTA" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01214" - metanetx.reaction: "MNXR96230" - pmid: "9748245" @@ -48913,18 +48913,18 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR208W" - - subsystem: - - "sce00270 Cysteine and methionine metabolism" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce00290 Valine, leucine and isoleucine biosynthesis" - - "sce00770 Pantothenate and CoA biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "VALTAim" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01214" - metanetx.reaction: "MNXR96230" - pmid: "9748245" @@ -48943,10 +48943,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR094W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.9" - bigg.reaction: "VALTRS" + - kegg.pathway: "sce00970" - kegg.reaction: "R03665" - metanetx.reaction: "MNXR105186" - pmid: "3294828" @@ -48965,10 +48965,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR094W" - - subsystem: "sce00970 Aminoacyl-tRNA biosynthesis" - annotation: !!omap - ec-code: "6.1.1.9" - bigg.reaction: "VALTRSm" + - kegg.pathway: "sce00970" - kegg.reaction: "R03665" - metanetx.reaction: "MNXR105186" - pmid: "3294828" @@ -49004,10 +49004,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR070C" - - subsystem: "sce00040 Pentose and glucuronate interconversions" - annotation: !!omap - ec-code: "1.1.1.9" - bigg.reaction: "XYLTD_D" + - kegg.pathway: "sce00040" - kegg.reaction: "R01896" - metanetx.reaction: "MNXR105262" - sbo: "SBO:0000176" @@ -49024,12 +49024,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR104W" - - subsystem: "sce00040 Pentose and glucuronate interconversions" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.21" - bigg.reaction: "XYLR" + - kegg.pathway: "sce00040" - kegg.reaction: "R01431" - metanetx.reaction: "MNXR105261" - sbo: "SBO:0000176" @@ -49046,10 +49046,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR194C" - - subsystem: "sce00040 Pentose and glucuronate interconversions" - annotation: !!omap - ec-code: "2.7.1.17" - bigg.reaction: "XYLK" + - kegg.pathway: "sce00040" - kegg.reaction: "R01639" - metanetx.reaction: "MNXR105255" - sbo: "SBO:0000176" @@ -49653,9 +49653,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" - - subsystem: "sce04113 Meiosis - yeast" - annotation: !!omap - bigg.reaction: "FRUt2" + - kegg.pathway: "sce04113" - metanetx.reaction: "MNXR99664" - sbo: "SBO:0000655" - confidence_score: 2 @@ -49670,9 +49670,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR536W or YFL011W or YJL219W or YLR081W or YNL318C or YOL156W" - - subsystem: "sce04113 Meiosis - yeast" - annotation: !!omap - bigg.reaction: "GALt2" + - kegg.pathway: "sce04113" - metanetx.reaction: "MNXR100026" - sbo: "SBO:0000655" - confidence_score: 2 @@ -49737,9 +49737,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" - - subsystem: "sce04113 Meiosis - yeast" - annotation: !!omap - bigg.reaction: "MANt2" + - kegg.pathway: "sce04113" - metanetx.reaction: "MNXR101403" - sbo: "SBO:0000655" - confidence_score: 2 @@ -49887,9 +49887,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL245C or YDL247W or YDR342C or YDR343C or YDR345C or YDR536W or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YJR160C or YLR081W or YMR011W or YNR072W or YOL156W or YDR387C" - - subsystem: "sce04113 Meiosis - yeast" - annotation: !!omap - bigg.reaction: "GLCt1" + - kegg.pathway: "sce04113" - metanetx.reaction: "MNXR100188" - pmid: "10618490" - sbo: "SBO:0000655" @@ -50241,9 +50241,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL146W or YNL101W" - - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - bigg.reaction: "ASNt7" + - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR96066" - pmid: "11274162" - sbo: "SBO:0000655" @@ -50405,9 +50405,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL146W or YNL101W" - - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - bigg.reaction: "GLNt7" + - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR100260" - pmid: "11274162" - sbo: "SBO:0000655" @@ -50470,8 +50470,8 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCL038C" - - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap + - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR100824" - pmid: "17021250" - sbo: "SBO:0000655" @@ -50504,9 +50504,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL146W or YNL101W" - - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - bigg.reaction: "ILEt7" + - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR100822" - pmid: "11274162" - sbo: "SBO:0000655" @@ -50568,8 +50568,8 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCL038C" - - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap + - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR101057" - pmid: "17021250" - sbo: "SBO:0000655" @@ -50602,9 +50602,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL146W or YNL101W" - - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - bigg.reaction: "LEUt7" + - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR101055" - pmid: "11274162" - sbo: "SBO:0000655" @@ -50765,8 +50765,8 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCL038C" - - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap + - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR105002" - pmid: "17021250" - sbo: "SBO:0000655" @@ -50799,9 +50799,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL146W or YNL101W" - - subsystem: "sce04138 Autophagy - yeast" - annotation: !!omap - bigg.reaction: "TYRt7" + - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR105003" - pmid: "11274162" - sbo: "SBO:0000655" @@ -55309,14 +55309,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL131W or YDL182W" - - subsystem: - - "sce00300 Lysine biosynthesis" - - "sce00620 Pyruvate metabolism" - - "sce01130 Biosynthesis of antibiotics" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "2.3.3.14" + - kegg.pathway: + - "sce00300" + - "sce00620" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00271" - metanetx.reaction: "MNXR141692" - sbo: "SBO:0000176" @@ -57244,10 +57244,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL029C" - - subsystem: "sce00750 Vitamin B6 metabolism" - annotation: !!omap - ec-code: "2.7.1.35" - bigg.reaction: "PYDXNK" + - kegg.pathway: "sce00750" - kegg.reaction: "R01909" - metanetx.reaction: "MNXR103362" - sbo: "SBO:0000176" @@ -58222,9 +58222,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJL060W" - - subsystem: "sce00380 Tryptophan metabolism" - annotation: !!omap - ec-code: "2.6.1.7" + - kegg.pathway: "sce00380" - kegg.reaction: "R01959" - metanetx.reaction: "MNXR132503" - pmid: "18205391" @@ -58278,15 +58278,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YOL086C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD2ir" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R00754" - metanetx.reaction: "MNXR95725" - pmid: "12499363" @@ -58305,15 +58305,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR110C or YMR170C or YER073W or YOR374W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00340 Histidine metabolism" - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00410 beta-Alanine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "1.2.1.3" + - kegg.pathway: + - "sce00010" + - "sce00340" + - "sce00350" + - "sce00360" + - "sce00410" + - "sce01110" - kegg.reaction: "R00710" - metanetx.reaction: "MNXR95749" - sbo: "SBO:0000176" @@ -58329,16 +58329,16 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR137W" - - subsystem: - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "2.6.1.58" - "2.6.1.7" + - kegg.pathway: + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" - kegg.reaction: "R00692" - metanetx.reaction: "MNXR125716" - pmid: @@ -58357,17 +58357,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR137W" - - subsystem: - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "2.6.1.57" - "2.6.1.7" - bigg.reaction: "araphe3" + - kegg.pathway: + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" - kegg.reaction: "R00684" - metanetx.reaction: "MNXR104947" - pmid: @@ -58386,16 +58386,16 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR137W" - - subsystem: - - "sce00350 Tyrosine metabolism" - - "sce00360 Phenylalanine metabolism" - - "sce00400 Phenylalanine, tyrosine and tryptophan biosynthesis" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "2.6.1.57" - "2.6.1.7" + - kegg.pathway: + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" - kegg.reaction: "R00734" - metanetx.reaction: "MNXR105000" - pmid: @@ -58429,15 +58429,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR043C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00260 Glycine, serine and threonine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "3.1.3.37" + - kegg.pathway: + - "sce00010" + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01845" - metanetx.reaction: "MNXR104279" - pmid: @@ -58472,18 +58472,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL066W" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00480 Glutathione metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.1.1.42" - bigg.reaction: "ICDHym" + - kegg.pathway: + - "sce00020" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - "sce04146" - kegg.reaction: "R00267" - metanetx.reaction: "MNXR100781" - pmid: @@ -58570,11 +58570,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL182W and YPL231W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.86" + - kegg.pathway: + - "sce00061" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -58594,11 +58594,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL182W and YPL231W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.86" + - kegg.pathway: + - "sce00061" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -58615,14 +58615,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER061C and YKL192C" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00190 Oxidative phosphorylation" - - "sce00780 Biotin metabolism" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.41" - bigg.reaction: "3OAS40_m" + - kegg.pathway: + - "sce00061" + - "sce00190" + - "sce00780" + - "sce01212" - pmid: "8412701" - sbo: "SBO:0000176" - confidence_score: 3 @@ -58639,13 +58639,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER061C and YKL192C" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00190 Oxidative phosphorylation" - - "sce00780 Biotin metabolism" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.41" + - kegg.pathway: + - "sce00061" + - "sce00190" + - "sce00780" + - "sce01212" - pmid: "8412701" - sbo: "SBO:0000176" - confidence_score: 3 @@ -58662,13 +58662,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER061C and YKL192C" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00190 Oxidative phosphorylation" - - "sce00780 Biotin metabolism" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.41" + - kegg.pathway: + - "sce00061" + - "sce00190" + - "sce00780" + - "sce01212" - pmid: "8412701" - sbo: "SBO:0000176" - confidence_score: 3 @@ -58684,15 +58684,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL055C" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00780 Biotin metabolism" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.1.1.100" - bigg.reaction: "3OAR40_m" + - kegg.pathway: + - "sce00061" + - "sce00780" + - "sce01040" + - "sce01130" + - "sce01212" - pmid: "9388293" - sbo: "SBO:0000176" - confidence_score: 3 @@ -58708,15 +58708,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL055C" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00780 Biotin metabolism" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.1.1.100" - bigg.reaction: "3OAR60_m" + - kegg.pathway: + - "sce00061" + - "sce00780" + - "sce01040" + - "sce01130" + - "sce01212" - pmid: "9388293" - sbo: "SBO:0000176" - confidence_score: 3 @@ -58732,14 +58732,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL055C" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00780 Biotin metabolism" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.1.1.100" + - kegg.pathway: + - "sce00061" + - "sce00780" + - "sce01040" + - "sce01130" + - "sce01212" - metanetx.reaction: "MNXR137225" - pmid: "9388293" - sbo: "SBO:0000176" @@ -58803,11 +58803,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR026C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.3.1.104" + - kegg.pathway: + - "sce00062" + - "sce01212" - pmid: "11509667" - sbo: "SBO:0000176" - confidence_score: 3 @@ -58823,11 +58823,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR026C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.3.1.104" + - kegg.pathway: + - "sce00062" + - "sce01212" - pmid: "11509667" - sbo: "SBO:0000176" - confidence_score: 3 @@ -58843,11 +58843,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR026C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.3.1.104" + - kegg.pathway: + - "sce00062" + - "sce01212" - pmid: "11509667" - sbo: "SBO:0000176" - confidence_score: 3 @@ -58864,13 +58864,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL196C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR122920" - pmid: "22345606" - sbo: "SBO:0000176" @@ -58888,13 +58888,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL196C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR122921" - pmid: "22345606" - sbo: "SBO:0000176" @@ -58912,13 +58912,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR034W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - kegg.reaction: "R07758" - metanetx.reaction: "MNXR94939" - pmid: "22345606" @@ -58937,13 +58937,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR034W or YLR372W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR103450" - pmid: "22345606" - sbo: "SBO:0000176" @@ -58961,13 +58961,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR034W or YLR372W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -58984,13 +58984,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR034W or YLR372W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59007,13 +59007,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR372W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR118002" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59030,13 +59030,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59052,13 +59052,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59074,13 +59074,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - kegg.reaction: "R07759" - metanetx.reaction: "MNXR103465" - pmid: "22345606" @@ -59098,13 +59098,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR103451" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59121,13 +59121,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR103455" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59144,13 +59144,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR118005" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59167,13 +59167,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59187,13 +59187,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - kegg.reaction: "R04740" - metanetx.reaction: "MNXR97891" - pmid: "22345606" @@ -59209,13 +59209,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59229,13 +59229,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - kegg.reaction: "R07760" - metanetx.reaction: "MNXR103466" - pmid: "22345606" @@ -59251,13 +59251,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59271,13 +59271,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59291,13 +59291,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR118009" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59312,13 +59312,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59334,13 +59334,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - kegg.reaction: "R03989" - metanetx.reaction: "MNXR95374" - pmid: "22345606" @@ -59358,13 +59358,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59380,13 +59380,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - kegg.reaction: "R07761" - metanetx.reaction: "MNXR97895" - pmid: "22345606" @@ -59404,13 +59404,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59426,13 +59426,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59448,13 +59448,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59470,13 +59470,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR118013" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59495,11 +59495,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL055W" - - subsystem: - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.14.19.1" + - kegg.pathway: + - "sce01040" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59517,11 +59517,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL055W" - - subsystem: - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01212 Fatty acid metabolism" - annotation: !!omap - ec-code: "1.14.19.1" + - kegg.pathway: + - "sce01040" + - "sce01212" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -59665,13 +59665,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOR317W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR120051" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59689,13 +59689,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126663" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59713,13 +59713,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - kegg.reaction: "R01280" - metanetx.reaction: "MNXR99153" - pmid: "22345606" @@ -59738,13 +59738,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126667" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59762,13 +59762,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR99164" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59786,13 +59786,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR122919" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59810,13 +59810,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOR317W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR120051" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59834,13 +59834,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126663" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59858,13 +59858,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - kegg.reaction: "R01280" - metanetx.reaction: "MNXR99153" - pmid: "22345606" @@ -59883,13 +59883,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126667" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59907,13 +59907,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR99164" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59931,13 +59931,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR122919" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59955,14 +59955,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER015W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL161p" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126667" - pmid: "22345606" - sbo: "SBO:0000176" @@ -59980,13 +59980,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER015W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR99164" - pmid: "22345606" - sbo: "SBO:0000176" @@ -60004,13 +60004,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER015W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR122919" - pmid: "22345606" - sbo: "SBO:0000176" @@ -60028,13 +60028,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL009W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -60051,13 +60051,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL009W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -60074,13 +60074,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL009W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126665" - pmid: "22345606" - sbo: "SBO:0000176" @@ -60098,13 +60098,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL009W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR128076" - pmid: "22345606" - sbo: "SBO:0000176" @@ -60229,10 +60229,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - subsystem: - - "sce02010 ABC transporters" - - "sce04146 Peroxisome" - annotation: !!omap + - kegg.pathway: + - "sce02010" + - "sce04146" - pmid: "17010456" - sbo: "SBO:0000655" - confidence_score: 3 @@ -60250,10 +60250,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - subsystem: - - "sce02010 ABC transporters" - - "sce04146 Peroxisome" - annotation: !!omap + - kegg.pathway: + - "sce02010" + - "sce04146" - pmid: "17010456" - sbo: "SBO:0000655" - confidence_score: 3 @@ -60271,11 +60271,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - subsystem: - - "sce02010 ABC transporters" - - "sce04146 Peroxisome" - annotation: !!omap - bigg.reaction: "FA160COAabcp_1" + - kegg.pathway: + - "sce02010" + - "sce04146" - metanetx.reaction: "MNXR99100" - pmid: "17010456" - sbo: "SBO:0000655" @@ -60294,10 +60294,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - subsystem: - - "sce02010 ABC transporters" - - "sce04146 Peroxisome" - annotation: !!omap + - kegg.pathway: + - "sce02010" + - "sce04146" - pmid: "17010456" - sbo: "SBO:0000655" - confidence_score: 3 @@ -60315,11 +60315,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - subsystem: - - "sce02010 ABC transporters" - - "sce04146 Peroxisome" - annotation: !!omap - bigg.reaction: "STCOATxc" + - kegg.pathway: + - "sce02010" + - "sce04146" - metanetx.reaction: "MNXR104597" - pmid: "17010456" - sbo: "SBO:0000655" @@ -60338,10 +60338,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - subsystem: - - "sce02010 ABC transporters" - - "sce04146 Peroxisome" - annotation: !!omap + - kegg.pathway: + - "sce02010" + - "sce04146" - pmid: "17010456" - sbo: "SBO:0000655" - confidence_score: 3 @@ -60359,10 +60359,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - subsystem: - - "sce02010 ABC transporters" - - "sce04146 Peroxisome" - annotation: !!omap + - kegg.pathway: + - "sce02010" + - "sce04146" - pmid: "17010456" - sbo: "SBO:0000655" - confidence_score: 3 @@ -60380,11 +60380,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - subsystem: - - "sce02010 ABC transporters" - - "sce04146 Peroxisome" - annotation: !!omap - bigg.reaction: "DOCOSCOAtxc" + - kegg.pathway: + - "sce02010" + - "sce04146" - pmid: "17010456" - sbo: "SBO:0000655" - confidence_score: 3 @@ -60402,11 +60402,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - subsystem: - - "sce02010 ABC transporters" - - "sce04146 Peroxisome" - annotation: !!omap - bigg.reaction: "LGNCCOAtcx_1" + - kegg.pathway: + - "sce02010" + - "sce04146" - pmid: "17010456" - sbo: "SBO:0000655" - confidence_score: 3 @@ -60424,10 +60424,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - subsystem: - - "sce02010 ABC transporters" - - "sce04146 Peroxisome" - annotation: !!omap + - kegg.pathway: + - "sce02010" + - "sce04146" - pmid: "17010456" - sbo: "SBO:0000655" - confidence_score: 3 @@ -60482,12 +60482,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.2.2" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" - pmid: "16490786" - sbo: "SBO:0000176" - confidence_score: 3 @@ -60503,13 +60503,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.2.2" - bigg.reaction: "HXCOAx" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" - metanetx.reaction: "MNXR127520" - pmid: "16490786" - sbo: "SBO:0000176" @@ -60526,12 +60526,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.2.2" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" - metanetx.reaction: "MNXR116444" - pmid: "16490786" - sbo: "SBO:0000176" @@ -60548,12 +60548,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - - subsystem: - - "sce00062 Fatty acid elongation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.2.2" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" - kegg.reaction: "R08176" - metanetx.reaction: "MNXR111750" - pmid: "16490786" @@ -60570,15 +60570,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "HMR_3102" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR127857" - pmid: "12697341" - sbo: "SBO:0000176" @@ -60594,15 +60594,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "HMR_3098" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR127546" - pmid: "12697341" - sbo: "SBO:0000176" @@ -60618,14 +60618,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -60640,14 +60640,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -60662,14 +60662,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -60684,15 +60684,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "HMR_3062" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR127548" - pmid: "12697341" - sbo: "SBO:0000176" @@ -60709,14 +60709,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -60731,14 +60731,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -60753,14 +60753,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -60775,14 +60775,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -60797,14 +60797,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -60819,14 +60819,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61500,17 +61500,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT1x" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - kegg.reaction: "R00238" - metanetx.reaction: "MNXR95194" - pmid: "12697341" @@ -61527,17 +61527,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT2" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61552,17 +61552,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT3" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61577,17 +61577,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "HMR_3073" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61602,17 +61602,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "HMR_3069" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61627,17 +61627,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "HMR_3065" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61652,16 +61652,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61676,16 +61676,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61700,16 +61700,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61724,16 +61724,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61748,16 +61748,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61772,16 +61772,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce00280 Valine, leucine and isoleucine degradation" - - "sce01040 Biosynthesis of unsaturated fatty acids" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61795,11 +61795,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR284C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "5.3.3.8" + - kegg.pathway: + - "sce00071" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61812,11 +61812,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR284C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "5.3.3.8" + - kegg.pathway: + - "sce00071" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61830,12 +61830,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR284C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "5.3.3.8" - bigg.reaction: "FAOXC121x" + - kegg.pathway: + - "sce00071" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61849,11 +61849,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR284C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "5.3.3.8" + - kegg.pathway: + - "sce00071" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61866,11 +61866,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR284C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "5.3.3.8" + - kegg.pathway: + - "sce00071" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61884,11 +61884,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR284C" - - subsystem: - - "sce00071 Fatty acid degradation" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "5.3.3.8" + - kegg.pathway: + - "sce00071" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61932,9 +61932,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL202W" - - subsystem: "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.1.34" + - kegg.pathway: "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61950,9 +61950,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL202W" - - subsystem: "sce04146 Peroxisome" - annotation: !!omap - ec-code: "1.3.1.34" + - kegg.pathway: "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - confidence_score: 3 @@ -61966,17 +61966,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR304C" - - subsystem: - - "sce00020 Citrate cycle (TCA cycle)" - - "sce00630 Glyoxylate and dicarboxylate metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - - "sce01200 Carbon metabolism" - - "sce01210 2-Oxocarboxylic acid metabolism" - - "sce01230 Biosynthesis of amino acids" - annotation: !!omap - ec-code: "4.2.1.3" - bigg.reaction: "ACONTb" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R01900" - metanetx.reaction: "MNXR95387" - pmid: "15975908" @@ -61994,14 +61994,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL011W or YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62017,14 +62017,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL011W or YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62040,14 +62040,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62063,14 +62063,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62086,14 +62086,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL011W or YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62109,14 +62109,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL011W or YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62132,14 +62132,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62155,14 +62155,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62178,14 +62178,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62201,14 +62201,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62224,14 +62224,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62247,14 +62247,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62270,14 +62270,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62293,14 +62293,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62316,14 +62316,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62339,14 +62339,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.15" - "2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62362,9 +62362,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62380,9 +62380,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62398,9 +62398,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62416,9 +62416,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62434,9 +62434,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62452,9 +62452,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62470,9 +62470,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62488,9 +62488,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62505,14 +62505,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR175C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.23" - "2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62527,14 +62527,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YOR175C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.23" - "2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62549,14 +62549,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR175C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.23" - "2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62571,14 +62571,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YOR175C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.23" - "2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62593,14 +62593,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR175C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.23" - "2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62615,14 +62615,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YOR175C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.23" - "2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62637,14 +62637,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR175C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.23" - "2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62659,14 +62659,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YOR175C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.23" - "2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62681,15 +62681,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.51" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62704,15 +62704,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.51" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62727,15 +62727,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.51" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62750,15 +62750,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.3.1.51" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62774,12 +62774,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62795,12 +62795,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62816,12 +62816,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62837,12 +62837,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62858,12 +62858,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62879,12 +62879,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62900,12 +62900,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62921,12 +62921,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62942,14 +62942,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62965,14 +62965,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -62988,14 +62988,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63011,14 +63011,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63034,14 +63034,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63057,14 +63057,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63080,14 +63080,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63103,14 +63103,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63277,14 +63277,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63299,14 +63299,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63321,14 +63321,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63343,14 +63343,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63365,14 +63365,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63387,14 +63387,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63409,14 +63409,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63431,14 +63431,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63453,14 +63453,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63475,14 +63475,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63497,14 +63497,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63519,14 +63519,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63541,14 +63541,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63563,14 +63563,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63585,14 +63585,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63607,14 +63607,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63629,14 +63629,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63651,14 +63651,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63673,14 +63673,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63695,14 +63695,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63717,14 +63717,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63739,14 +63739,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63761,14 +63761,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63783,14 +63783,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63805,14 +63805,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63827,14 +63827,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63849,14 +63849,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63871,14 +63871,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63893,14 +63893,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63915,14 +63915,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63937,14 +63937,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63959,14 +63959,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" - "2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -63981,11 +63981,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64000,11 +64000,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64019,11 +64019,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64038,11 +64038,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64057,11 +64057,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64076,11 +64076,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64095,11 +64095,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64114,11 +64114,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64133,11 +64133,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64152,11 +64152,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64171,11 +64171,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64190,11 +64190,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64209,11 +64209,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64228,11 +64228,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64247,11 +64247,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64266,11 +64266,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64285,11 +64285,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64304,11 +64304,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64323,11 +64323,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64342,11 +64342,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64361,11 +64361,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64380,11 +64380,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64399,11 +64399,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64418,11 +64418,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64437,11 +64437,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64456,11 +64456,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64475,11 +64475,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64494,11 +64494,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64513,11 +64513,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64532,11 +64532,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64551,11 +64551,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64570,11 +64570,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: - "2.3.1.20" - "2.3.1.22" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64590,12 +64590,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64611,12 +64611,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64632,12 +64632,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64653,12 +64653,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64674,12 +64674,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64695,12 +64695,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64716,12 +64716,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64737,12 +64737,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64758,12 +64758,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64779,12 +64779,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64800,12 +64800,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64821,12 +64821,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64842,12 +64842,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64863,12 +64863,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64884,12 +64884,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER026C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64905,12 +64905,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER026C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64926,12 +64926,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER026C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64947,12 +64947,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER026C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64968,12 +64968,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER026C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -64989,12 +64989,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER026C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65010,12 +65010,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER026C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65031,12 +65031,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER026C" - - subsystem: - - "sce00260 Glycine, serine and threonine metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65052,12 +65052,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65073,12 +65073,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65094,12 +65094,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65115,12 +65115,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65136,12 +65136,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65157,12 +65157,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65178,12 +65178,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65199,12 +65199,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65250,11 +65250,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65268,11 +65268,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65286,11 +65286,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65304,11 +65304,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65322,11 +65322,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65340,11 +65340,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65358,11 +65358,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65376,11 +65376,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65394,11 +65394,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65412,11 +65412,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65430,11 +65430,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65448,11 +65448,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65466,11 +65466,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65484,11 +65484,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65502,11 +65502,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65520,11 +65520,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65538,11 +65538,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65556,11 +65556,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65574,11 +65574,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65592,11 +65592,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65610,11 +65610,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65628,11 +65628,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65646,11 +65646,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65664,11 +65664,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65684,13 +65684,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65706,13 +65706,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65728,13 +65728,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65750,13 +65750,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65772,13 +65772,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65794,13 +65794,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65816,13 +65816,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65838,13 +65838,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65860,13 +65860,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65882,13 +65882,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65904,13 +65904,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65926,13 +65926,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65948,13 +65948,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65970,13 +65970,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -65992,13 +65992,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66014,13 +66014,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66036,13 +66036,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66058,13 +66058,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66080,13 +66080,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66102,13 +66102,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66124,13 +66124,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66146,13 +66146,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66168,13 +66168,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66190,13 +66190,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.1.1.17" - "2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66212,11 +66212,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66232,11 +66232,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66252,11 +66252,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66272,11 +66272,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66292,11 +66292,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66312,11 +66312,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66332,11 +66332,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66352,11 +66352,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66372,14 +66372,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66395,14 +66395,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66418,14 +66418,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66441,14 +66441,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66464,14 +66464,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66487,14 +66487,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66510,14 +66510,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66533,14 +66533,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66556,14 +66556,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66579,14 +66579,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66602,14 +66602,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66625,14 +66625,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66648,14 +66648,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66671,14 +66671,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66694,14 +66694,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66717,14 +66717,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - subsystem: - - "sce00440 Phosphonate and phosphinate metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "2.7.8.1" - "2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66739,9 +66739,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL004W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66756,9 +66756,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL004W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66773,9 +66773,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL004W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66790,9 +66790,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL004W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66807,9 +66807,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL004W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66824,9 +66824,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL004W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66842,9 +66842,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR100C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.3.27" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66860,9 +66860,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR100C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.3.27" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66878,9 +66878,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR100C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.3.27" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66896,9 +66896,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR100C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.3.27" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66914,9 +66914,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR100C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.3.27" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66932,9 +66932,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR100C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.3.27" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66950,9 +66950,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66968,9 +66968,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -66986,9 +66986,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67004,9 +67004,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67022,9 +67022,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67040,9 +67040,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67058,9 +67058,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67076,9 +67076,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67094,9 +67094,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67112,9 +67112,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67130,9 +67130,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67148,9 +67148,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67166,9 +67166,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67184,9 +67184,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67202,9 +67202,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67220,9 +67220,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67238,9 +67238,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67256,9 +67256,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67274,9 +67274,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67292,9 +67292,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67310,9 +67310,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67328,9 +67328,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67346,9 +67346,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67364,9 +67364,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67382,9 +67382,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67400,9 +67400,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67418,9 +67418,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67436,9 +67436,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67454,9 +67454,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67472,9 +67472,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67490,9 +67490,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67508,9 +67508,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67526,9 +67526,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67544,9 +67544,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67562,9 +67562,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67580,9 +67580,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67598,9 +67598,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67616,9 +67616,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67634,9 +67634,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67652,9 +67652,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67670,9 +67670,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67688,9 +67688,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67706,9 +67706,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67724,9 +67724,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67742,9 +67742,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67760,9 +67760,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67778,9 +67778,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67796,9 +67796,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67814,9 +67814,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67832,9 +67832,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67850,9 +67850,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67868,9 +67868,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67886,9 +67886,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67904,9 +67904,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67922,9 +67922,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67940,9 +67940,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67958,9 +67958,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67976,9 +67976,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -67994,9 +67994,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68012,9 +68012,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68030,9 +68030,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68048,9 +68048,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68066,9 +68066,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68084,9 +68084,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68102,9 +68102,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68120,9 +68120,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68138,9 +68138,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68156,9 +68156,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68174,9 +68174,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68192,9 +68192,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68210,9 +68210,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68228,9 +68228,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68245,9 +68245,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68262,9 +68262,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68279,9 +68279,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68296,9 +68296,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68313,9 +68313,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68330,9 +68330,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68347,9 +68347,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68364,9 +68364,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68381,9 +68381,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68398,9 +68398,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68415,9 +68415,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68432,9 +68432,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68449,9 +68449,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68466,9 +68466,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68483,9 +68483,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68500,9 +68500,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68517,9 +68517,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68534,9 +68534,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68551,9 +68551,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68568,9 +68568,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68585,9 +68585,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68602,9 +68602,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68619,9 +68619,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68636,9 +68636,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68653,9 +68653,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68670,9 +68670,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68687,9 +68687,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68704,9 +68704,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68721,9 +68721,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68738,9 +68738,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68755,9 +68755,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68772,9 +68772,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68789,9 +68789,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68806,9 +68806,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68823,9 +68823,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68840,9 +68840,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68857,9 +68857,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68874,9 +68874,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68891,9 +68891,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68908,9 +68908,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68925,9 +68925,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68942,9 +68942,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68959,9 +68959,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68976,9 +68976,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -68993,9 +68993,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69010,9 +69010,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69027,9 +69027,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69044,9 +69044,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69061,9 +69061,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69078,9 +69078,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69095,9 +69095,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69112,9 +69112,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69129,9 +69129,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69146,9 +69146,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69163,9 +69163,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69180,9 +69180,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69197,9 +69197,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69214,9 +69214,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69231,9 +69231,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69248,9 +69248,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69265,9 +69265,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69282,9 +69282,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69299,9 +69299,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69316,9 +69316,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69333,9 +69333,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69350,9 +69350,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69367,9 +69367,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69384,9 +69384,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69401,9 +69401,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69418,9 +69418,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69435,9 +69435,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69452,9 +69452,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69469,9 +69469,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69486,9 +69486,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69503,9 +69503,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69520,9 +69520,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69537,9 +69537,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69554,9 +69554,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69571,9 +69571,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69588,9 +69588,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69605,9 +69605,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69622,9 +69622,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69639,9 +69639,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69656,9 +69656,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69673,9 +69673,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69690,9 +69690,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69707,9 +69707,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69724,9 +69724,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69741,9 +69741,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69758,9 +69758,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69775,9 +69775,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69792,9 +69792,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69809,9 +69809,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69826,9 +69826,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69843,9 +69843,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69860,9 +69860,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69877,9 +69877,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69894,9 +69894,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69911,9 +69911,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69928,9 +69928,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69945,9 +69945,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69962,9 +69962,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69979,9 +69979,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -69996,9 +69996,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70013,9 +70013,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70030,9 +70030,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70047,9 +70047,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70064,9 +70064,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70081,9 +70081,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70098,9 +70098,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70115,9 +70115,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70132,9 +70132,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70149,9 +70149,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70166,9 +70166,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70183,9 +70183,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70200,9 +70200,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70217,9 +70217,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70234,9 +70234,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70251,9 +70251,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70268,9 +70268,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70285,9 +70285,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70302,9 +70302,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70319,9 +70319,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70336,9 +70336,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70353,9 +70353,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70370,9 +70370,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70387,9 +70387,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70404,9 +70404,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70421,9 +70421,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70438,9 +70438,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70455,9 +70455,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70472,9 +70472,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70489,9 +70489,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70506,9 +70506,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70523,9 +70523,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70540,9 +70540,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70557,9 +70557,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70574,9 +70574,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70591,9 +70591,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70608,9 +70608,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70625,9 +70625,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70642,9 +70642,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70659,9 +70659,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70676,9 +70676,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70693,9 +70693,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70710,9 +70710,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70727,9 +70727,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70744,9 +70744,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70761,9 +70761,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70778,9 +70778,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70795,9 +70795,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70812,9 +70812,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70829,9 +70829,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70846,9 +70846,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70863,9 +70863,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70880,9 +70880,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70897,9 +70897,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70914,9 +70914,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70931,9 +70931,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70948,9 +70948,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70965,9 +70965,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70982,9 +70982,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -70999,9 +70999,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71016,9 +71016,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71033,9 +71033,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71050,9 +71050,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71067,9 +71067,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71084,9 +71084,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71101,9 +71101,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71118,9 +71118,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71135,9 +71135,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71152,9 +71152,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71169,9 +71169,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71186,9 +71186,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71203,9 +71203,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71220,9 +71220,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71237,9 +71237,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71254,9 +71254,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71271,9 +71271,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71288,9 +71288,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71305,9 +71305,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71322,9 +71322,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71339,9 +71339,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71356,9 +71356,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71373,9 +71373,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71390,9 +71390,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71407,9 +71407,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71424,9 +71424,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71441,9 +71441,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71458,9 +71458,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71475,9 +71475,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71492,9 +71492,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71622,12 +71622,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71643,12 +71643,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71664,12 +71664,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71685,12 +71685,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71706,12 +71706,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71727,12 +71727,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71748,12 +71748,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71769,12 +71769,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71790,11 +71790,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71810,11 +71810,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71830,11 +71830,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71850,11 +71850,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71870,11 +71870,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71890,11 +71890,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71910,11 +71910,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71930,11 +71930,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71950,11 +71950,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71970,11 +71970,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -71990,11 +71990,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72010,11 +72010,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72030,11 +72030,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72050,11 +72050,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72070,11 +72070,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72090,11 +72090,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72110,11 +72110,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72130,11 +72130,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72150,11 +72150,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72170,11 +72170,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72190,11 +72190,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72210,11 +72210,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72230,11 +72230,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72250,11 +72250,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72270,16 +72270,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04136 Autophagy - other" - - "sce04138 Autophagy - yeast" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: - "2.7.1.137" - "2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72295,16 +72295,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04136 Autophagy - other" - - "sce04138 Autophagy - yeast" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: - "2.7.1.137" - "2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72320,16 +72320,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04136 Autophagy - other" - - "sce04138 Autophagy - yeast" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: - "2.7.1.137" - "2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72345,16 +72345,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04136 Autophagy - other" - - "sce04138 Autophagy - yeast" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: - "2.7.1.137" - "2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72370,16 +72370,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04136 Autophagy - other" - - "sce04138 Autophagy - yeast" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: - "2.7.1.137" - "2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72395,16 +72395,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04136 Autophagy - other" - - "sce04138 Autophagy - yeast" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: - "2.7.1.137" - "2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72420,16 +72420,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04136 Autophagy - other" - - "sce04138 Autophagy - yeast" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: - "2.7.1.137" - "2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72445,16 +72445,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04136 Autophagy - other" - - "sce04138 Autophagy - yeast" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: - "2.7.1.137" - "2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72470,14 +72470,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72493,14 +72493,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72516,14 +72516,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72539,14 +72539,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72562,14 +72562,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72585,14 +72585,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72608,14 +72608,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72631,14 +72631,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72654,14 +72654,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72677,14 +72677,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72700,14 +72700,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72723,14 +72723,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72746,14 +72746,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72769,14 +72769,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72792,14 +72792,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72815,14 +72815,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04011 MAPK signaling pathway - yeast" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04139 Mitophagy - yeast" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72838,12 +72838,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72859,12 +72859,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72880,12 +72880,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72901,12 +72901,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72922,12 +72922,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72943,12 +72943,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72964,12 +72964,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -72985,12 +72985,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04145 Phagosome" - annotation: !!omap - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73005,9 +73005,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73022,9 +73022,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73039,9 +73039,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73056,9 +73056,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73073,9 +73073,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73090,9 +73090,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73107,9 +73107,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73124,9 +73124,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73141,9 +73141,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73158,9 +73158,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73175,9 +73175,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73192,9 +73192,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73209,9 +73209,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73226,9 +73226,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73243,9 +73243,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73260,9 +73260,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73277,9 +73277,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73294,9 +73294,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73311,9 +73311,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73328,9 +73328,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73345,9 +73345,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73362,9 +73362,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73379,9 +73379,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73396,9 +73396,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73413,9 +73413,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73430,9 +73430,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73447,9 +73447,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73464,9 +73464,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73481,9 +73481,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73498,9 +73498,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73515,9 +73515,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73532,9 +73532,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73549,9 +73549,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73566,9 +73566,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73583,9 +73583,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73600,9 +73600,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73617,9 +73617,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73634,9 +73634,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73651,9 +73651,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73668,9 +73668,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73685,9 +73685,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73702,9 +73702,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73719,9 +73719,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73736,9 +73736,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73753,9 +73753,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73770,9 +73770,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73787,9 +73787,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73804,9 +73804,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73821,9 +73821,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73838,9 +73838,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73855,9 +73855,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73872,9 +73872,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73889,9 +73889,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73906,9 +73906,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73923,9 +73923,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73940,9 +73940,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73957,9 +73957,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73974,9 +73974,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -73991,9 +73991,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74008,9 +74008,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74025,9 +74025,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74042,9 +74042,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74059,9 +74059,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74076,9 +74076,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74093,9 +74093,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74110,9 +74110,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74127,9 +74127,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74144,9 +74144,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74161,9 +74161,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74178,9 +74178,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74195,9 +74195,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74212,9 +74212,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74229,9 +74229,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74246,9 +74246,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74263,9 +74263,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74280,9 +74280,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74297,9 +74297,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74314,9 +74314,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74331,9 +74331,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74348,9 +74348,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74365,9 +74365,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74382,9 +74382,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74399,9 +74399,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74416,9 +74416,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74433,9 +74433,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74450,9 +74450,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74467,9 +74467,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74484,9 +74484,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74501,9 +74501,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74518,9 +74518,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74535,9 +74535,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74552,9 +74552,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74569,9 +74569,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74586,9 +74586,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74603,9 +74603,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74620,9 +74620,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74637,9 +74637,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74654,9 +74654,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74671,9 +74671,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74688,9 +74688,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74705,9 +74705,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74722,9 +74722,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74739,9 +74739,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74756,9 +74756,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74773,9 +74773,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74790,9 +74790,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74807,9 +74807,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74824,9 +74824,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74841,9 +74841,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74858,9 +74858,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74875,9 +74875,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74892,9 +74892,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74909,9 +74909,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74926,9 +74926,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74943,9 +74943,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74960,9 +74960,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74977,9 +74977,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -74994,9 +74994,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75011,9 +75011,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75028,9 +75028,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75045,9 +75045,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75062,9 +75062,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75079,9 +75079,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75096,9 +75096,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75113,9 +75113,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75130,9 +75130,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75147,9 +75147,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75164,9 +75164,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75182,9 +75182,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML059C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75200,9 +75200,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML059C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75218,9 +75218,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML059C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75236,9 +75236,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML059C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75254,9 +75254,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML059C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75272,9 +75272,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML059C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75290,9 +75290,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML059C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75308,9 +75308,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML059C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75326,9 +75326,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML059C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75344,9 +75344,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML059C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75362,9 +75362,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML059C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75380,9 +75380,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YML059C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75398,9 +75398,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75416,9 +75416,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75434,9 +75434,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75452,9 +75452,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75470,9 +75470,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75488,9 +75488,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75506,9 +75506,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75524,9 +75524,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75542,9 +75542,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75560,9 +75560,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75578,9 +75578,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75596,9 +75596,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75614,9 +75614,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75632,9 +75632,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75650,9 +75650,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75668,9 +75668,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75686,9 +75686,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75704,9 +75704,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75722,9 +75722,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75740,9 +75740,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75758,9 +75758,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75776,9 +75776,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75794,9 +75794,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75812,9 +75812,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75830,9 +75830,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75848,9 +75848,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75866,9 +75866,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75884,9 +75884,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75902,9 +75902,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75920,9 +75920,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75938,9 +75938,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75956,9 +75956,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75974,9 +75974,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -75992,9 +75992,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76010,9 +76010,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76028,9 +76028,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76046,9 +76046,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76064,9 +76064,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76082,9 +76082,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76100,9 +76100,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76118,9 +76118,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76136,9 +76136,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76154,9 +76154,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76172,9 +76172,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76190,9 +76190,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76208,9 +76208,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76226,9 +76226,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76244,9 +76244,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76262,12 +76262,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76283,12 +76283,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76304,12 +76304,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76325,12 +76325,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76346,12 +76346,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76367,12 +76367,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76388,12 +76388,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76409,12 +76409,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76430,12 +76430,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76451,12 +76451,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76472,12 +76472,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76493,12 +76493,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76514,12 +76514,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76535,12 +76535,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76556,12 +76556,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76577,12 +76577,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04933 AGE-RAGE signaling pathway in diabetic complications" - annotation: !!omap - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76598,9 +76598,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL206C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76616,9 +76616,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL206C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76634,9 +76634,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL206C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76652,9 +76652,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL206C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76670,9 +76670,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL206C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76688,9 +76688,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL206C" - - subsystem: "sce00564 Glycerophospholipid metabolism" - annotation: !!omap - ec-code: "3.1.4.-" + - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76706,12 +76706,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76727,12 +76727,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76748,12 +76748,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76769,12 +76769,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76790,12 +76790,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76811,12 +76811,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76832,12 +76832,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76853,12 +76853,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - - subsystem: - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce04144 Endocytosis" - annotation: !!omap - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76874,13 +76874,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76896,13 +76896,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76918,13 +76918,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76940,13 +76940,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76962,13 +76962,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -76984,13 +76984,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77006,13 +77006,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77028,13 +77028,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77050,15 +77050,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" - "3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77074,16 +77074,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" - "3.1.3.64" - bigg.reaction: "PIP3P_HDE_HDE_c" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77099,15 +77099,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" - "3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77123,15 +77123,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" - "3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77147,15 +77147,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" - "3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77171,15 +77171,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" - "3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77195,15 +77195,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" - "3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77219,15 +77219,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - - "sce04138 Autophagy - yeast" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" - "3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77243,11 +77243,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77263,11 +77263,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77283,11 +77283,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77303,11 +77303,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77323,11 +77323,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77343,11 +77343,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77363,11 +77363,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77383,11 +77383,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77403,11 +77403,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77423,11 +77423,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77443,11 +77443,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77463,11 +77463,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77483,11 +77483,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77503,11 +77503,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77523,11 +77523,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77543,11 +77543,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77563,13 +77563,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77585,13 +77585,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77607,13 +77607,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77629,13 +77629,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77651,13 +77651,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77673,13 +77673,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77695,13 +77695,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77717,13 +77717,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77739,13 +77739,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77761,13 +77761,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77783,13 +77783,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77805,13 +77805,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77827,13 +77827,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77849,13 +77849,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77871,13 +77871,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77893,13 +77893,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77915,11 +77915,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77935,11 +77935,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77955,11 +77955,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77975,11 +77975,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -77995,11 +77995,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78015,11 +78015,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78035,11 +78035,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78055,11 +78055,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78075,11 +78075,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78095,11 +78095,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78115,11 +78115,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78135,11 +78135,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78155,11 +78155,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78175,11 +78175,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78195,11 +78195,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78215,11 +78215,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78235,13 +78235,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78257,13 +78257,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78279,13 +78279,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78301,13 +78301,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78323,13 +78323,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78345,13 +78345,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78367,13 +78367,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78389,13 +78389,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78411,13 +78411,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78433,13 +78433,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78455,13 +78455,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78477,13 +78477,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78499,13 +78499,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78521,13 +78521,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78543,13 +78543,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78565,13 +78565,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78587,13 +78587,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78609,13 +78609,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78631,13 +78631,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78653,13 +78653,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78675,13 +78675,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78697,13 +78697,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78719,13 +78719,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78741,13 +78741,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78763,13 +78763,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78785,13 +78785,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78807,13 +78807,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78829,13 +78829,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78851,13 +78851,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78873,13 +78873,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78895,13 +78895,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78917,13 +78917,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: - "3.1.3.-" - "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78939,11 +78939,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78959,11 +78959,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78979,11 +78979,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -78999,11 +78999,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79019,11 +79019,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79039,11 +79039,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79059,11 +79059,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79079,11 +79079,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - - subsystem: - - "sce00562 Inositol phosphate metabolism" - - "sce04070 Phosphatidylinositol signaling system" - annotation: !!omap - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79235,14 +79235,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79258,14 +79258,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79281,14 +79281,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79304,14 +79304,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79327,14 +79327,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79350,14 +79350,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79373,14 +79373,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79396,14 +79396,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79635,14 +79635,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79658,14 +79658,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79681,14 +79681,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79704,14 +79704,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - subsystem: - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.3.4" - "3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -79803,9 +79803,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL140W or YLL012W" - - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - ec-code: "3.1.1.13" + - kegg.pathway: "sce00100" - pmid: - "16835446" - "14640980" @@ -79823,9 +79823,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL140W or YLL012W" - - subsystem: "sce00100 Steroid biosynthesis" - annotation: !!omap - ec-code: "3.1.1.13" + - kegg.pathway: "sce00100" - metanetx.reaction: "MNXR119162" - pmid: - "16835446" @@ -80015,15 +80015,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C or YCR068W" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80039,15 +80039,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80063,15 +80063,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80087,15 +80087,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80111,15 +80111,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80135,15 +80135,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80159,15 +80159,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80183,15 +80183,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80207,15 +80207,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80231,15 +80231,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80255,15 +80255,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80279,15 +80279,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80303,15 +80303,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80327,15 +80327,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80351,15 +80351,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80375,15 +80375,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80399,15 +80399,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80423,15 +80423,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80447,15 +80447,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80471,15 +80471,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80495,15 +80495,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80519,15 +80519,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80543,15 +80543,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80567,15 +80567,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80591,15 +80591,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80615,15 +80615,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80639,15 +80639,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80663,15 +80663,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80687,15 +80687,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80711,15 +80711,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80735,15 +80735,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80759,15 +80759,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: - "3.1.1.-" - "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80783,9 +80783,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80801,9 +80801,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR068W or YMR313C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80819,9 +80819,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80837,9 +80837,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80855,9 +80855,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80873,9 +80873,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80891,9 +80891,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80909,9 +80909,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80927,9 +80927,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR058C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80945,9 +80945,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR058C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80963,9 +80963,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR058C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80981,9 +80981,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR058C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -80999,9 +80999,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL094W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.23" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81017,9 +81017,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL094W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.23" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81035,9 +81035,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL094W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.23" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81053,9 +81053,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL094W" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.23" + - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81070,9 +81070,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "20016004" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81087,9 +81087,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "20016004" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81104,9 +81104,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "20016004" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81121,9 +81121,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - - subsystem: "sce00561 Glycerolipid metabolism" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" - pmid: "20016004" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81139,13 +81139,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81161,13 +81161,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81183,13 +81183,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81205,13 +81205,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81227,13 +81227,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81249,13 +81249,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81271,13 +81271,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81293,13 +81293,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81315,13 +81315,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81337,13 +81337,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81359,13 +81359,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81381,13 +81381,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81403,13 +81403,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81425,13 +81425,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81447,13 +81447,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -81469,13 +81469,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - - subsystem: - - "sce00100 Steroid biosynthesis" - - "sce00561 Glycerolipid metabolism" - - "sce00564 Glycerophospholipid metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - annotation: !!omap - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" - pmid: "22345606" - sbo: "SBO:0000176" - confidence_score: 3 @@ -91216,9 +91216,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBL015W" - - subsystem: "sce00620 Pyruvate metabolism" - annotation: !!omap - ec-code: "3.1.2.1" + - kegg.pathway: "sce00620" - kegg.reaction: "R10343" - metanetx.reaction: "MNXR104636" - pmid: "19298859" @@ -91309,12 +91309,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR400W" - - subsystem: - - "sce00240 Pyrimidine metabolism" - - "sce00760 Nicotinate and nicotinamide metabolism" - annotation: !!omap - ec-code: "3.2.2.3" - bigg.reaction: "URIH" + - kegg.pathway: + - "sce00240" + - "sce00760" - kegg.reaction: "R01080" - metanetx.reaction: "MNXR105161" - pmid: "23670538" @@ -100467,17 +100467,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.1" - "1.1.1.284" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R00754" - sbo: "SBO:0000176" - confidence_score: 2 @@ -100493,14 +100493,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.1" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -100515,16 +100515,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.2" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -100613,17 +100613,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.1" - "1.1.1.284" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R00754" - sbo: "SBO:0000176" - confidence_score: 2 @@ -100639,14 +100639,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.1" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -100661,16 +100661,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.2" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -100758,17 +100758,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.1" - "1.1.1.284" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -100783,14 +100783,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.1.1.1" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -100805,16 +100805,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: - "1.1.1.-" - "1.1.1.2" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -100888,14 +100888,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR170C or YMR169C or YOR374W" - - subsystem: - - "sce00010 Glycolysis / Gluconeogenesis" - - "sce00071 Fatty acid degradation" - - "sce00350 Tyrosine metabolism" - - "sce01110 Biosynthesis of secondary metabolites" - - "sce01130 Biosynthesis of antibiotics" - annotation: !!omap - ec-code: "1.2.1.5" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap @@ -100911,13 +100911,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOR317W or YER015W or YIL009W or YMR246W" - - subsystem: - - "sce00061 Fatty acid biosynthesis" - - "sce00071 Fatty acid degradation" - - "sce01212 Fatty acid metabolism" - - "sce04146 Peroxisome" - annotation: !!omap - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - sbo: "SBO:0000176" - confidence_score: 2 - !!omap diff --git a/README.md b/README.md index 8a7891c1..03075d59 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This repository contains the current consensus genome-scale metabolic model of _ **GEM Category:** species; **Utilisation:** experimental data reconstruction, multi-omics integrative analysis, _in silico_ strain design, model template; **Field:** metabolic-network reconstruction; **Type of Model:** reconstruction, curated; **Model Source:** YeastMetabolicNetwork; **Omic Source:** genomics, metabolomics; **Taxonomy:** _Saccharomyces cerevisiae_; **Metabolic System:** general metabolism; **Bioreactor**; **Strain:** S288C; **Condition:** aerobic, glucose-limited, defined media; -* Last update: 2020-11-23 +* Last update: 2020-11-24 * Main Model Descriptors: From 5e16d26bfff4aa81d40848fb0d66485d63ce0c5e Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Tue, 6 Apr 2021 23:43:52 +0200 Subject: [PATCH 33/56] fix-rxn/met: solves #252 and #254 --- .../modelCuration/curationsOnV8_4_2.m | 16 ++++++++++++++++ ModelFiles/dependencies.txt | 6 +++--- ModelFiles/txt/yeastGEM.txt | 2 +- ModelFiles/xml/yeastGEM.xml | 4 ++-- ModelFiles/yml/yeastGEM.yml | 4 ++-- README.md | 6 +++--- 6 files changed, 27 insertions(+), 11 deletions(-) create mode 100644 ComplementaryScripts/modelCuration/curationsOnV8_4_2.m diff --git a/ComplementaryScripts/modelCuration/curationsOnV8_4_2.m b/ComplementaryScripts/modelCuration/curationsOnV8_4_2.m new file mode 100644 index 00000000..d832e54b --- /dev/null +++ b/ComplementaryScripts/modelCuration/curationsOnV8_4_2.m @@ -0,0 +1,16 @@ +%% Curations on version 8.4.2 +% This is a list of various smaller curations to be performed on version +% 8.4.2 of yeast-GEM. Indicated is what Issue is solved. + +% Load model +cd .. +model = loadYeastModel; + +% Solves #252 +model = changeGeneAssociation(model,'r_4590','YOL130W'); + +% Solves #254 +model.metNames = regexprep(model.metNames,'^nicotinamide ribose','nicotinamide riboside'); +% All annotations, formula and charge were correct. + +saveYeastModel(model); diff --git a/ModelFiles/dependencies.txt b/ModelFiles/dependencies.txt index f0930f4c..e763aead 100644 --- a/ModelFiles/dependencies.txt +++ b/ModelFiles/dependencies.txt @@ -1,7 +1,7 @@ -MATLAB 9.7.0.1190202 (R2019b) +MATLAB 9.9.0.1524771 (R2020b) Update 2 libSBML 5.17.0 -RAVEN_toolbox 2.4.1 -COBRA_toolbox commit 6c49aaf +RAVEN_toolbox commit 025f118 +COBRA_toolbox commit 1699e85 SBML_level 3 SBML_version 1 fbc_version 2 diff --git a/ModelFiles/txt/yeastGEM.txt b/ModelFiles/txt/yeastGEM.txt index 44b1cf26..f787d1ad 100644 --- a/ModelFiles/txt/yeastGEM.txt +++ b/ModelFiles/txt/yeastGEM.txt @@ -3948,7 +3948,7 @@ r_4586 s_3998[c] + s_4192[c] -> 2 s_4193[c] 0.00 1000.00 0.00 r_4587 s_0796[e] + s_4199[e] <=> s_0794[c] + s_3880[c] YOL122C -1000.00 1000.00 0.00 r_4588 s_4200[e] <=> s_3778[c] YNL275W -1000.00 1000.00 0.00 r_4589 s_0796[e] + s_4201[e] <=> s_0794[c] + s_4019[c] YOL122C -1000.00 1000.00 0.00 -r_4590 s_0796[e] + s_4202[e] <=> s_0794[c] + s_3801[c] YGR191W -1000.00 1000.00 0.00 +r_4590 s_0796[e] + s_4202[e] <=> s_0794[c] + s_3801[c] YOL130W -1000.00 1000.00 0.00 r_4591 s_0796[e] + s_4203[e] <=> s_0794[c] + s_3822[c] ( YGL255W or YLR130C ) -1000.00 1000.00 0.00 r_4592 s_0796[e] + s_4204[e] <=> s_0794[c] + s_4013[c] ( YGR191W or YOL130W ) -1000.00 1000.00 0.00 r_4593 s_4200[e] <=> -1000.00 1000.00 0.00 diff --git a/ModelFiles/xml/yeastGEM.xml b/ModelFiles/xml/yeastGEM.xml index 8d465939..d28a2259 100644 --- a/ModelFiles/xml/yeastGEM.xml +++ b/ModelFiles/xml/yeastGEM.xml @@ -20570,7 +20570,7 @@ - + @@ -214436,7 +214436,7 @@ - +
diff --git a/ModelFiles/yml/yeastGEM.yml b/ModelFiles/yml/yeastGEM.yml index e0524b1f..6cf429a0 100644 --- a/ModelFiles/yml/yeastGEM.yml +++ b/ModelFiles/yml/yeastGEM.yml @@ -11207,7 +11207,7 @@ - sbo: "SBO:0000247" - !!omap - id: "s_1218" - - name: "nicotinamide ribose" + - name: "nicotinamide riboside" - compartment: "c" - formula: "C11H15N2O5" - charge: 1 @@ -99617,7 +99617,7 @@ - s_4202: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "YGR191W" + - gene_reaction_rule: "YOL130W" - annotation: !!omap - bigg.reaction: "MNt2" - metanetx.reaction: "MNXR101669" diff --git a/README.md b/README.md index 03075d59..4837e5f6 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This repository contains the current consensus genome-scale metabolic model of _ **GEM Category:** species; **Utilisation:** experimental data reconstruction, multi-omics integrative analysis, _in silico_ strain design, model template; **Field:** metabolic-network reconstruction; **Type of Model:** reconstruction, curated; **Model Source:** YeastMetabolicNetwork; **Omic Source:** genomics, metabolomics; **Taxonomy:** _Saccharomyces cerevisiae_; **Metabolic System:** general metabolism; **Bioreactor**; **Strain:** S288C; **Condition:** aerobic, glucose-limited, defined media; -* Last update: 2020-11-24 +* Last update: 2021-04-06 * Main Model Descriptors: @@ -18,7 +18,7 @@ This repository contains the current consensus genome-scale metabolic model of _ |:-------:|:--------------:|:---------:|:----------:|:-----:| |_Saccharomyces cerevisiae_|[Yeast 7.6](https://sourceforge.net/projects/yeast/)|4058|2742|1150| -This repository is administered by Benjamín J. Sánchez ([@BenjaSanchez](https://github.com/benjasanchez)), Division of Systems and Synthetic Biology, Department of Biology and Biological Engineering, Chalmers University of Technology. +This repository is administered by Benjamín J. Sánchez ([@BenjaSanchez](https://github.com/benjasanchez)), Division of Systems and Synthetic Biology, Department of Biology and Biological Engineering, Chalmers University of Technology. ## Installation @@ -80,7 +80,7 @@ The model is available in `.xml`, `.txt`, `.yml`, `.mat` and `.xlsx` (the last 2 > Lu, H. et al. _A consensus S. cerevisiae metabolic model Yeast8 and its ecosystem for comprehensively probing cellular metabolism._ Nature Communications 10, 3586 (2019). https://doi.org/10.1038/s41467-019-11581-3. * Additionally, all yeast-GEM releases are archived in [Zenodo](https://zenodo.org/badge/latestdoi/52777598), for you to cite the specific version of yeast-GEM that you used in your study, to ensure reproducibility. You should always cite the original publication + the specific version, for instance: - > _The yeast consensus genome-scale model [Lu et al. 2019], version 8.3.4 [Sánchez et al. 2019], was used._ + > _The yeast consensus genome-scale model [Lu et al. 2019], version 8.3.4 [Sánchez et al. 2019], was used._ Find the citation details for your specific version [here](https://zenodo.org/search?page=1&size=20&q=conceptrecid:%221494182%22&sort=-publication_date&all_versions=True). From 56874b0d90ca3dde1970f08403741e549d73f536 Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Wed, 7 Apr 2021 11:09:55 +0200 Subject: [PATCH 34/56] fix: deal with special characters in README.md --- ComplementaryScripts/saveYeastModel.m | 3 ++- README.md | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ComplementaryScripts/saveYeastModel.m b/ComplementaryScripts/saveYeastModel.m index 3f2ec988..75fae7b5 100644 --- a/ComplementaryScripts/saveYeastModel.m +++ b/ComplementaryScripts/saveYeastModel.m @@ -92,7 +92,8 @@ function saveYeastModel(model,upDATE,allowNoGrowth) num2str(length(model.mets)) '|' ... num2str(length(model.genes)) '|' newline]; end - fwrite(fout,inline); + inline=unicode2native(inline,'UTF-8'); + fwrite(fout,inline,'uint8'); end end fclose('all'); diff --git a/README.md b/README.md index 4837e5f6..6cef6900 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This repository contains the current consensus genome-scale metabolic model of _ **GEM Category:** species; **Utilisation:** experimental data reconstruction, multi-omics integrative analysis, _in silico_ strain design, model template; **Field:** metabolic-network reconstruction; **Type of Model:** reconstruction, curated; **Model Source:** YeastMetabolicNetwork; **Omic Source:** genomics, metabolomics; **Taxonomy:** _Saccharomyces cerevisiae_; **Metabolic System:** general metabolism; **Bioreactor**; **Strain:** S288C; **Condition:** aerobic, glucose-limited, defined media; -* Last update: 2021-04-06 +* Last update: 2021-04-07 * Main Model Descriptors: @@ -18,7 +18,7 @@ This repository contains the current consensus genome-scale metabolic model of _ |:-------:|:--------------:|:---------:|:----------:|:-----:| |_Saccharomyces cerevisiae_|[Yeast 7.6](https://sourceforge.net/projects/yeast/)|4058|2742|1150| -This repository is administered by Benjamín J. Sánchez ([@BenjaSanchez](https://github.com/benjasanchez)), Division of Systems and Synthetic Biology, Department of Biology and Biological Engineering, Chalmers University of Technology. +This repository is administered by Benjamín J. Sánchez ([@BenjaSanchez](https://github.com/benjasanchez)), Division of Systems and Synthetic Biology, Department of Biology and Biological Engineering, Chalmers University of Technology. ## Installation @@ -80,7 +80,7 @@ The model is available in `.xml`, `.txt`, `.yml`, `.mat` and `.xlsx` (the last 2 > Lu, H. et al. _A consensus S. cerevisiae metabolic model Yeast8 and its ecosystem for comprehensively probing cellular metabolism._ Nature Communications 10, 3586 (2019). https://doi.org/10.1038/s41467-019-11581-3. * Additionally, all yeast-GEM releases are archived in [Zenodo](https://zenodo.org/badge/latestdoi/52777598), for you to cite the specific version of yeast-GEM that you used in your study, to ensure reproducibility. You should always cite the original publication + the specific version, for instance: - > _The yeast consensus genome-scale model [Lu et al. 2019], version 8.3.4 [Sánchez et al. 2019], was used._ + > _The yeast consensus genome-scale model [Lu et al. 2019], version 8.3.4 [Sánchez et al. 2019], was used._ Find the citation details for your specific version [here](https://zenodo.org/search?page=1&size=20&q=conceptrecid:%221494182%22&sort=-publication_date&all_versions=True). From 1d5b325be7a50a7845dfa5239619a8a8c38f6ae7 Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Fri, 9 Apr 2021 23:57:09 +0200 Subject: [PATCH 35/56] fix: valid yaml - using RAVEN PR #338 --- ModelFiles/dependencies.txt | 4 +- ModelFiles/yml/yeastGEM.yml | 185912 ++++++++++++++++++--------------- 2 files changed, 101347 insertions(+), 84569 deletions(-) diff --git a/ModelFiles/dependencies.txt b/ModelFiles/dependencies.txt index e763aead..c9db5a5b 100644 --- a/ModelFiles/dependencies.txt +++ b/ModelFiles/dependencies.txt @@ -1,7 +1,7 @@ MATLAB 9.9.0.1524771 (R2020b) Update 2 libSBML 5.17.0 -RAVEN_toolbox commit 025f118 -COBRA_toolbox commit 1699e85 +RAVEN_toolbox commit 5061381 +COBRA_toolbox commit 800dcfe SBML_level 3 SBML_version 1 fbc_version 2 diff --git a/ModelFiles/yml/yeastGEM.yml b/ModelFiles/yml/yeastGEM.yml index 6cf429a0..4e69b6a4 100644 --- a/ModelFiles/yml/yeastGEM.yml +++ b/ModelFiles/yml/yeastGEM.yml @@ -1,30780 +1,30919 @@ +--- !!omap +- metaData: + id: "yeastGEM_devel" + name: "The Consensus Genome-Scale Metabolic Model of Yeast" + date: "2021-04-09" - metabolites: - - !!omap - - id: "s_0001" - - name: "(1->3)-beta-D-glucan" - - compartment: "ce" - - formula: "C6H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0001" + - name: "(1->3)-beta-D-glucan" + - compartment: "ce" + - formula: "C6H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "13BDglcn" - chebi: "CHEBI:37671" - kegg.compound: "C00965" - metanetx.chemical: "MNXM6492" - sbo: "SBO:0000247" - - !!omap - - id: "s_0002" - - name: "(1->3)-beta-D-glucan" - - compartment: "c" - - formula: "C6H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0002" + - name: "(1->3)-beta-D-glucan" + - compartment: "c" + - formula: "C6H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "13BDglcn" - chebi: "CHEBI:37671" - kegg.compound: "C00965" - metanetx.chemical: "MNXM6492" - sbo: "SBO:0000247" - - !!omap - - id: "s_0003" - - name: "(1->3)-beta-D-glucan" - - compartment: "e" - - formula: "C6H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0003" + - name: "(1->3)-beta-D-glucan" + - compartment: "e" + - formula: "C6H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "13BDglcn" - chebi: "CHEBI:37671" - kegg.compound: "C00965" - metanetx.chemical: "MNXM6492" - sbo: "SBO:0000247" - - !!omap - - id: "s_0004" - - name: "(1->6)-beta-D-glucan" - - compartment: "ce" - - formula: "C6H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0004" + - name: "(1->6)-beta-D-glucan" + - compartment: "ce" + - formula: "C6H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "16BDglcn" - chebi: "CHEBI:27380" - kegg.compound: "C02493" - metanetx.chemical: "MNXM9375" - sbo: "SBO:0000247" - - !!omap - - id: "s_0006" - - name: "(2-amino-4-hydroxy-7,8-dihydropteridin-6-yl)methyl trihydrogen diphosphate" - - compartment: "m" - - formula: "C7H8N5O8P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0006" + - name: "(2-amino-4-hydroxy-7,8-dihydropteridin-6-yl)methyl trihydrogen diphosphate" + - compartment: "m" + - formula: "C7H8N5O8P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "2ahhmd" - chebi: "CHEBI:57602" - kegg.compound: "C04807" - metanetx.chemical: "MNXM1160" - sbo: "SBO:0000247" - - !!omap - - id: "s_0007" - - name: "(2E)-3-(methoxycarbonyl)pent-2-enedioic acid" - - compartment: "c" - - formula: "C7H6O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0007" + - name: "(2E)-3-(methoxycarbonyl)pent-2-enedioic acid" + - compartment: "c" + - formula: "C7H6O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "aconm" - chebi: "CHEBI:57470" - kegg.compound: "C11514" - metanetx.chemical: "MNXM3742" - sbo: "SBO:0000247" - - !!omap - - id: "s_0008" - - name: "(2R,3R)-2,3-dihydroxy-3-methylpentanoate" - - compartment: "m" - - formula: "C6H11O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0008" + - name: "(2R,3R)-2,3-dihydroxy-3-methylpentanoate" + - compartment: "m" + - formula: "C6H11O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "23dhmp" - chebi: "CHEBI:49258" - kegg.compound: "C06007" - metanetx.chemical: "MNXM1202" - sbo: "SBO:0000247" - - !!omap - - id: "s_0009" - - name: "(2R,3S)-3-isopropylmalate" - - compartment: "c" - - formula: "C7H10O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0009" + - name: "(2R,3S)-3-isopropylmalate" + - compartment: "c" + - formula: "C7H10O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3c2hmp" - chebi: "CHEBI:35121" - kegg.compound: "C04411" - metanetx.chemical: "MNXM891" - sbo: "SBO:0000247" - - !!omap - - id: "s_0010" - - name: "(2S)-2-isopropyl-3-oxosuccinate" - - compartment: "c" - - formula: "C7H8O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0010" + - name: "(2S)-2-isopropyl-3-oxosuccinate" + - compartment: "c" + - formula: "C7H8O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3c4mop" - chebi: "CHEBI:17214" - kegg.compound: "C04236" - metanetx.chemical: "MNXM1602" - sbo: "SBO:0000247" - - !!omap - - id: "s_0011" - - name: "(2S)-2-isopropyl-3-oxosuccinate" - - compartment: "m" - - formula: "C7H8O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0011" + - name: "(2S)-2-isopropyl-3-oxosuccinate" + - compartment: "m" + - formula: "C7H8O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3c4mop" - chebi: "CHEBI:17214" - kegg.compound: "C04236" - metanetx.chemical: "MNXM1602" - sbo: "SBO:0000247" - - !!omap - - id: "s_0012" - - name: "(2S,3R)-3-hydroxybutane-1,2,3-tricarboxylic acid" - - compartment: "m" - - formula: "C7H7O7" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0012" + - name: "(2S,3R)-3-hydroxybutane-1,2,3-tricarboxylic acid" + - compartment: "m" + - formula: "C7H7O7" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "micit" - chebi: "CHEBI:57429" - kegg.compound: "C04593" - metanetx.chemical: "MNXM1694" - sbo: "SBO:0000247" - - !!omap - - id: "s_0013" - - name: "(5S,6S)-di-HETE" - - compartment: "c" - - formula: "C20H31O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0013" + - name: "(5S,6S)-di-HETE" + - compartment: "c" + - formula: "C20H31O4" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:53026" - metanetx.chemical: "MNXM31306" - sbo: "SBO:0000247" - - !!omap - - id: "s_0014" - - name: "(5S,6S)-di-HETE" - - compartment: "n" - - formula: "C20H31O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0014" + - name: "(5S,6S)-di-HETE" + - compartment: "n" + - formula: "C20H31O4" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:53026" - metanetx.chemical: "MNXM31306" - sbo: "SBO:0000247" - - !!omap - - id: "s_0015" - - name: "(N(omega)-L-arginino)succinic acid" - - compartment: "c" - - formula: "C10H17N4O6" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0015" + - name: "(N(omega)-L-arginino)succinic acid" + - compartment: "c" + - formula: "C10H17N4O6" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "argsuc" - chebi: "CHEBI:57472" - kegg.compound: "C03406" - metanetx.chemical: "MNXM722743" - sbo: "SBO:0000247" - - !!omap - - id: "s_0016" - - name: "(R)-2,3-dihydroxy-3-methylbutanoate" - - compartment: "m" - - formula: "C5H9O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0016" + - name: "(R)-2,3-dihydroxy-3-methylbutanoate" + - compartment: "m" + - formula: "C5H9O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "23dhmb" - chebi: "CHEBI:49072" - kegg.compound: "C04272" - metanetx.chemical: "MNXM114097" - sbo: "SBO:0000247" - - !!omap - - id: "s_0017" - - name: "(R)-4'-phosphopantothenic acid" - - compartment: "c" - - formula: "C9H15NO8P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0017" + - name: "(R)-4'-phosphopantothenic acid" + - compartment: "c" + - formula: "C9H15NO8P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "4ppan" - chebi: "CHEBI:15905" - kegg.compound: "C03492" - metanetx.chemical: "MNXM415" - sbo: "SBO:0000247" - - !!omap - - id: "s_0018" - - name: "(R)-5-diphosphomevalonic acid" - - compartment: "c" - - formula: "C6H10O10P2" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0018" + - name: "(R)-5-diphosphomevalonic acid" + - compartment: "c" + - formula: "C6H10O10P2" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "5dpmev" - chebi: "CHEBI:57557" - kegg.compound: "C01143" - metanetx.chemical: "MNXM689" - sbo: "SBO:0000247" - - !!omap - - id: "s_0019" - - name: "(R)-5-phosphomevalonic acid" - - compartment: "c" - - formula: "C6H10O7P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0019" + - name: "(R)-5-phosphomevalonic acid" + - compartment: "c" + - formula: "C6H10O7P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "5pmev" - chebi: "CHEBI:58146" - kegg.compound: "C01107" - metanetx.chemical: "MNXM567" - sbo: "SBO:0000247" - - !!omap - - id: "s_0020" - - name: "(R)-acetoin" - - compartment: "c" - - formula: "C4H8O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0020" + - name: "(R)-acetoin" + - compartment: "c" + - formula: "C4H8O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "actn__R" - chebi: "CHEBI:15686" - kegg.compound: "C00810" - metanetx.chemical: "MNXM664" - sbo: "SBO:0000247" - - !!omap - - id: "s_0021" - - name: "(R)-carnitine" - - compartment: "c" - - formula: "C7H15NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0021" + - name: "(R)-carnitine" + - compartment: "c" + - formula: "C7H15NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "crn" - chebi: "CHEBI:16347" - kegg.compound: "C00318" - metanetx.chemical: "MNXM173" - sbo: "SBO:0000247" - - !!omap - - id: "s_0022" - - name: "(R)-carnitine" - - compartment: "e" - - formula: "C7H15NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0022" + - name: "(R)-carnitine" + - compartment: "e" + - formula: "C7H15NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "crn" - chebi: "CHEBI:16347" - kegg.compound: "C00318" - metanetx.chemical: "MNXM173" - sbo: "SBO:0000247" - - !!omap - - id: "s_0023" - - name: "(R)-carnitine" - - compartment: "m" - - formula: "C7H15NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0023" + - name: "(R)-carnitine" + - compartment: "m" + - formula: "C7H15NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "crn" - chebi: "CHEBI:16347" - kegg.compound: "C00318" - metanetx.chemical: "MNXM173" - sbo: "SBO:0000247" - - !!omap - - id: "s_0024" - - name: "(R)-carnitine" - - compartment: "p" - - formula: "C7H15NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0024" + - name: "(R)-carnitine" + - compartment: "p" + - formula: "C7H15NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "crn" - chebi: "CHEBI:16347" - kegg.compound: "C00318" - metanetx.chemical: "MNXM173" - sbo: "SBO:0000247" - - !!omap - - id: "s_0025" - - name: "(R)-lactate" - - compartment: "c" - - formula: "C3H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0025" + - name: "(R)-lactate" + - compartment: "c" + - formula: "C3H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lac__D" - chebi: "CHEBI:16004" - kegg.compound: "C00256" - metanetx.chemical: "MNXM285" - sbo: "SBO:0000247" - - !!omap - - id: "s_0026" - - name: "(R)-lactate" - - compartment: "e" - - formula: "C3H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0026" + - name: "(R)-lactate" + - compartment: "e" + - formula: "C3H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lac__D" - chebi: "CHEBI:16004" - kegg.compound: "C00256" - metanetx.chemical: "MNXM285" - sbo: "SBO:0000247" - - !!omap - - id: "s_0027" - - name: "(R)-lactate" - - compartment: "m" - - formula: "C3H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0027" + - name: "(R)-lactate" + - compartment: "m" + - formula: "C3H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lac__D" - chebi: "CHEBI:16004" - kegg.compound: "C00256" - metanetx.chemical: "MNXM285" - sbo: "SBO:0000247" - - !!omap - - id: "s_0028" - - name: "(R)-mevalonate" - - compartment: "c" - - formula: "C6H11O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0028" + - name: "(R)-mevalonate" + - compartment: "c" + - formula: "C6H11O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "mev__R" - chebi: "CHEBI:36464" - kegg.compound: "C00418" - metanetx.chemical: "MNXM333" - sbo: "SBO:0000247" - - !!omap - - id: "s_0029" - - name: "(R)-mevalonate" - - compartment: "e" - - formula: "C6H11O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0029" + - name: "(R)-mevalonate" + - compartment: "e" + - formula: "C6H11O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "mev__R" - chebi: "CHEBI:36464" - kegg.compound: "C00418" - metanetx.chemical: "MNXM333" - sbo: "SBO:0000247" - - !!omap - - id: "s_0030" - - name: "(R)-pantoate" - - compartment: "c" - - formula: "C6H11O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0030" + - name: "(R)-pantoate" + - compartment: "c" + - formula: "C6H11O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "pant__R" - chebi: "CHEBI:15980" - kegg.compound: "C00522" - metanetx.chemical: "MNXM593" - sbo: "SBO:0000247" - - !!omap - - id: "s_0031" - - name: "(R)-pantothenate" - - compartment: "c" - - formula: "C9H16NO5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0031" + - name: "(R)-pantothenate" + - compartment: "c" + - formula: "C9H16NO5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "pnto__R" - chebi: "CHEBI:29032" - kegg.compound: "C00864" - metanetx.chemical: "MNXM364" - sbo: "SBO:0000247" - - !!omap - - id: "s_0032" - - name: "(R)-pantothenate" - - compartment: "e" - - formula: "C9H16NO5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0032" + - name: "(R)-pantothenate" + - compartment: "e" + - formula: "C9H16NO5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "pnto__R" - chebi: "CHEBI:29032" - kegg.compound: "C00864" - metanetx.chemical: "MNXM364" - sbo: "SBO:0000247" - - !!omap - - id: "s_0033" - - name: "(R)-S-lactoylglutathione" - - compartment: "c" - - formula: "C13H20N3O8S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0033" + - name: "(R)-S-lactoylglutathione" + - compartment: "c" + - formula: "C13H20N3O8S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lgt__S" - chebi: "CHEBI:57474" - kegg.compound: "C03451" - metanetx.chemical: "MNXM1253" - sbo: "SBO:0000247" - - !!omap - - id: "s_0034" - - name: "(R)-S-lactoylglutathione" - - compartment: "m" - - formula: "C13H20N3O8S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0034" + - name: "(R)-S-lactoylglutathione" + - compartment: "m" + - formula: "C13H20N3O8S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lgt__S" - chebi: "CHEBI:57474" - kegg.compound: "C03451" - metanetx.chemical: "MNXM1253" - sbo: "SBO:0000247" - - !!omap - - id: "s_0035" - - name: "(R,R)-2,3-butanediol" - - compartment: "c" - - formula: "C4H10O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0035" + - name: "(R,R)-2,3-butanediol" + - compartment: "c" + - formula: "C4H10O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "btd_RR" - chebi: "CHEBI:16982" - kegg.compound: "C03044" - metanetx.chemical: "MNXM2757" - sbo: "SBO:0000247" - - !!omap - - id: "s_0036" - - name: "(R,R)-2,3-butanediol" - - compartment: "e" - - formula: "C4H10O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0036" + - name: "(R,R)-2,3-butanediol" + - compartment: "e" + - formula: "C4H10O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "btd_RR" - chebi: "CHEBI:16982" - kegg.compound: "C03044" - metanetx.chemical: "MNXM2757" - sbo: "SBO:0000247" - - !!omap - - id: "s_0037" - - name: "(S)-2,3-epoxysqualene" - - compartment: "c" - - formula: "C30H50O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0037" + - name: "(S)-2,3-epoxysqualene" + - compartment: "c" + - formula: "C30H50O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "Ssq23epx" - chebi: "CHEBI:15441" - kegg.compound: "C01054" - metanetx.chemical: "MNXM130" - sbo: "SBO:0000247" - - !!omap - - id: "s_0038" - - name: "(S)-2,3-epoxysqualene" - - compartment: "er" - - formula: "C30H50O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0038" + - name: "(S)-2,3-epoxysqualene" + - compartment: "er" + - formula: "C30H50O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "Ssq23epx" - chebi: "CHEBI:15441" - kegg.compound: "C01054" - metanetx.chemical: "MNXM130" - sbo: "SBO:0000247" - - !!omap - - id: "s_0039" - - name: "(S)-2-acetyl-2-hydroxybutanoate" - - compartment: "m" - - formula: "C6H9O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0039" + - name: "(S)-2-acetyl-2-hydroxybutanoate" + - compartment: "m" + - formula: "C6H9O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "2ahbut" - chebi: "CHEBI:49256" - kegg.compound: "C06006" - metanetx.chemical: "MNXM114220" - sbo: "SBO:0000247" - - !!omap - - id: "s_0042" - - name: "(R)-3-hydroxydecanoyl-CoA" - - compartment: "p" - - formula: "C31H50N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0042" + - name: "(R)-3-hydroxydecanoyl-CoA" + - compartment: "p" + - formula: "C31H50N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3hdcoa" - chebi: "CHEBI:28325" - kegg.compound: "C05264" - metanetx.chemical: "MNXM674" - sbo: "SBO:0000247" - - !!omap - - id: "s_0045" - - name: "(S)-3-hydroxyhexacosanoyl-CoA" - - compartment: "p" - - formula: "C47H82N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0045" + - name: "(S)-3-hydroxyhexacosanoyl-CoA" + - compartment: "p" + - formula: "C47H82N7O18P3S" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:52976" - metanetx.chemical: "MNXM31741" - sbo: "SBO:0000247" - - !!omap - - id: "s_0048" - - name: "(R)-3-hydroxylauroyl-CoA" - - compartment: "p" - - formula: "C33H54N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0048" + - name: "(R)-3-hydroxylauroyl-CoA" + - compartment: "p" + - formula: "C33H54N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3hddcoa" - chebi: "CHEBI:27668" - kegg.compound: "C05262" - metanetx.chemical: "MNXM733" - sbo: "SBO:0000247" - - !!omap - - id: "s_0051" - - name: "(S)-3-hydroxypalmitoyl-CoA" - - compartment: "p" - - formula: "C37H62N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0051" + - name: "(S)-3-hydroxypalmitoyl-CoA" + - compartment: "p" + - formula: "C37H62N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3hhdcoa" - chebi: "CHEBI:27402" - kegg.compound: "C05258" - metanetx.chemical: "MNXM825" - sbo: "SBO:0000247" - - !!omap - - id: "s_0054" - - name: "(S)-3-hydroxytetradecanoyl-CoA" - - compartment: "p" - - formula: "C35H58N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0054" + - name: "(S)-3-hydroxytetradecanoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3htdcoa" - chebi: "CHEBI:27466" - kegg.compound: "C05260" - metanetx.chemical: "MNXM767" - sbo: "SBO:0000247" - - !!omap - - id: "s_0056" - - name: "(S)-3-methyl-2-oxopentanoate" - - compartment: "c" - - formula: "C6H9O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0056" + - name: "(S)-3-methyl-2-oxopentanoate" + - compartment: "c" + - formula: "C6H9O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3mop" - chebi: "CHEBI:35146" - kegg.compound: "C00671" - metanetx.chemical: "MNXM439" - sbo: "SBO:0000247" - - !!omap - - id: "s_0058" - - name: "(S)-3-methyl-2-oxopentanoate" - - compartment: "e" - - formula: "C6H9O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0058" + - name: "(S)-3-methyl-2-oxopentanoate" + - compartment: "e" + - formula: "C6H9O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3mop" - chebi: "CHEBI:35146" - kegg.compound: "C00671" - metanetx.chemical: "MNXM439" - sbo: "SBO:0000247" - - !!omap - - id: "s_0060" - - name: "(S)-3-methyl-2-oxopentanoate" - - compartment: "m" - - formula: "C6H9O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0060" + - name: "(S)-3-methyl-2-oxopentanoate" + - compartment: "m" + - formula: "C6H9O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3mop" - chebi: "CHEBI:35146" - kegg.compound: "C00671" - metanetx.chemical: "MNXM439" - sbo: "SBO:0000247" - - !!omap - - id: "s_0061" - - name: "(S)-dihydroorotate" - - compartment: "c" - - formula: "C5H5N2O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0061" + - name: "(S)-dihydroorotate" + - compartment: "c" + - formula: "C5H5N2O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "dhor__S" - chebi: "CHEBI:30864" - kegg.compound: "C00337" - metanetx.chemical: "MNXM252" - sbo: "SBO:0000247" - - !!omap - - id: "s_0062" - - name: "(S)-lactaldehyde" - - compartment: "c" - - formula: "C3H6O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0062" + - name: "(S)-lactaldehyde" + - compartment: "c" + - formula: "C3H6O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "lald__L" - chebi: "CHEBI:18041" - kegg.compound: "C00424" - metanetx.chemical: "MNXM2387" - sbo: "SBO:0000247" - - !!omap - - id: "s_0063" - - name: "(S)-lactate" - - compartment: "c" - - formula: "C3H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0063" + - name: "(S)-lactate" + - compartment: "c" + - formula: "C3H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lac__L" - chebi: "CHEBI:16651" - kegg.compound: "C00186" - metanetx.chemical: "MNXM179" - sbo: "SBO:0000247" - - !!omap - - id: "s_0064" - - name: "(S)-lactate" - - compartment: "e" - - formula: "C3H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0064" + - name: "(S)-lactate" + - compartment: "e" + - formula: "C3H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lac__L" - chebi: "CHEBI:16651" - kegg.compound: "C00186" - metanetx.chemical: "MNXM179" - sbo: "SBO:0000247" - - !!omap - - id: "s_0065" - - name: "(S)-lactate" - - compartment: "m" - - formula: "C3H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0065" + - name: "(S)-lactate" + - compartment: "m" + - formula: "C3H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lac__L" - chebi: "CHEBI:16651" - kegg.compound: "C00186" - metanetx.chemical: "MNXM179" - sbo: "SBO:0000247" - - !!omap - - id: "s_0066" - - name: "(S)-malate" - - compartment: "c" - - formula: "C4H4O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0066" + - name: "(S)-malate" + - compartment: "c" + - formula: "C4H4O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "mal__L" - chebi: "CHEBI:15589" - kegg.compound: "C00149" - metanetx.chemical: "MNXM98" - sbo: "SBO:0000247" - - !!omap - - id: "s_0067" - - name: "(S)-malate" - - compartment: "e" - - formula: "C4H4O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0067" + - name: "(S)-malate" + - compartment: "e" + - formula: "C4H4O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "mal__L" - chebi: "CHEBI:15589" - kegg.compound: "C00149" - metanetx.chemical: "MNXM98" - sbo: "SBO:0000247" - - !!omap - - id: "s_0068" - - name: "(S)-malate" - - compartment: "m" - - formula: "C4H4O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0068" + - name: "(S)-malate" + - compartment: "m" + - formula: "C4H4O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "mal__L" - chebi: "CHEBI:15589" - kegg.compound: "C00149" - metanetx.chemical: "MNXM98" - sbo: "SBO:0000247" - - !!omap - - id: "s_0069" - - name: "(S)-malate" - - compartment: "p" - - formula: "C4H4O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0069" + - name: "(S)-malate" + - compartment: "p" + - formula: "C4H4O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "mal__L" - chebi: "CHEBI:15589" - kegg.compound: "C00149" - metanetx.chemical: "MNXM98" - sbo: "SBO:0000247" - - !!omap - - id: "s_0075" - - name: "1,3-bisphospho-D-glycerate" - - compartment: "c" - - formula: "C3H4O10P2" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0075" + - name: "1,3-bisphospho-D-glycerate" + - compartment: "c" + - formula: "C3H4O10P2" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "13dpg" - chebi: "CHEBI:57604" - kegg.compound: "C00236" - metanetx.chemical: "MNXM261" - sbo: "SBO:0000247" - - !!omap - - id: "s_0076" - - name: "1-(2-carboxyphenylamino)-1-deoxy-D-ribulose 5-phosphate" - - compartment: "c" - - formula: "C12H13NO9P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0076" + - name: "1-(2-carboxyphenylamino)-1-deoxy-D-ribulose 5-phosphate" + - compartment: "c" + - formula: "C12H13NO9P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "2cpr5p" - chebi: "CHEBI:58613" - kegg.compound: "C01302" - metanetx.chemical: "MNXM1455" - sbo: "SBO:0000247" - - !!omap - - id: "s_0077" - - name: "1-(5-phospho-D-ribosyl)-5-[(5-phospho-D-ribosylamino)methylideneamino]imidazole-4-carboxamide" - - compartment: "c" - - formula: "C15H21N5O15P2" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0077" + - name: "1-(5-phospho-D-ribosyl)-5-[(5-phospho-D-ribosylamino)methylideneamino]imidazole-4-carboxamide" + - compartment: "c" + - formula: "C15H21N5O15P2" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "prfp" - chebi: "CHEBI:58435" - kegg.compound: "C04896" - metanetx.chemical: "MNXM1397" - sbo: "SBO:0000247" - - !!omap - - id: "s_0078" - - name: "1-(5-phosphoribosyl)-5'-AMP" - - compartment: "c" - - formula: "C15H19N5O14P2" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0078" + - name: "1-(5-phosphoribosyl)-5'-AMP" + - compartment: "c" + - formula: "C15H19N5O14P2" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "prbamp" - chebi: "CHEBI:59457" - kegg.compound: "C02741" - metanetx.chemical: "MNXM1515" - sbo: "SBO:0000247" - - !!omap - - id: "s_0079" - - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol" - - compartment: "c" - - formula: "C9H18O11P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0079" + - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol" + - compartment: "c" + - formula: "C9H18O11P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "g3pi" - chebi: "CHEBI:58444" - kegg.compound: "C01225" - metanetx.chemical: "MNXM1517" - sbo: "SBO:0000247" - - !!omap - - id: "s_0080" - - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol" - - compartment: "e" - - formula: "C9H18O11P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0080" + - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol" + - compartment: "e" + - formula: "C9H18O11P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "g3pi" - chebi: "CHEBI:58444" - kegg.compound: "C01225" - metanetx.chemical: "MNXM1517" - sbo: "SBO:0000247" - - !!omap - - id: "s_0084" - - name: "1-acylglycerophosphocholine" - - compartment: "e" - - formula: "C9H20NO7PR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0084" + - name: "1-acylglycerophosphocholine" + - compartment: "e" + - formula: "C9H20NO7PR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "pchol_cho" - chebi: "CHEBI:11230" - kegg.compound: "C04230" - metanetx.chemical: "MNXM96952" - sbo: "SBO:0000247" - - !!omap - - id: "s_0086" - - name: "1-C-(indol-3-yl)glycerol 3-phosphate" - - compartment: "c" - - formula: "C11H12NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0086" + - name: "1-C-(indol-3-yl)glycerol 3-phosphate" + - compartment: "c" + - formula: "C11H12NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3ig3p" - chebi: "CHEBI:60820" - kegg.compound: "C03506" - metanetx.chemical: "MNXM163633" - sbo: "SBO:0000247" - - !!omap - - id: "s_0087" - - name: "1-methylnicotinamide" - - compartment: "c" - - formula: "C7H9N2O" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0087" + - name: "1-methylnicotinamide" + - compartment: "c" + - formula: "C7H9N2O" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "1mncam" - chebi: "CHEBI:16797" - kegg.compound: "C02918" - metanetx.chemical: "MNXM2172" - sbo: "SBO:0000247" - - !!omap - - id: "s_0089" - - name: "1-phosphatidyl-1D-myo-inositol backbone" - - compartment: "c" - - formula: "C9H15O9P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0089" + - name: "1-phosphatidyl-1D-myo-inositol backbone" + - compartment: "c" + - formula: "C9H15O9P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "pail_cho" - chebi: "CHEBI:57880" - kegg.compound: "C01194" - metanetx.chemical: "MNXM62" - sbo: "SBO:0000649" - - !!omap - - id: "s_0116" - - name: "1-pyrroline-3-hydroxy-5-carboxylic acid" - - compartment: "c" - - formula: "C5H6NO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0116" + - name: "1-pyrroline-3-hydroxy-5-carboxylic acid" + - compartment: "c" + - formula: "C5H6NO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "1p3h5c" - chebi: "CHEBI:58509" - kegg.compound: "C04281" - metanetx.chemical: "MNXM114091" - sbo: "SBO:0000247" - - !!omap - - id: "s_0117" - - name: "1-pyrroline-3-hydroxy-5-carboxylic acid" - - compartment: "m" - - formula: "C5H6NO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0117" + - name: "1-pyrroline-3-hydroxy-5-carboxylic acid" + - compartment: "m" + - formula: "C5H6NO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "1p3h5c" - chebi: "CHEBI:58509" - kegg.compound: "C04281" - metanetx.chemical: "MNXM114091" - sbo: "SBO:0000247" - - !!omap - - id: "s_0118" - - name: "1-pyrroline-5-carboxylate" - - compartment: "c" - - formula: "C5H6NO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0118" + - name: "1-pyrroline-5-carboxylate" + - compartment: "c" + - formula: "C5H6NO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "1pyr5c" - chebi: "CHEBI:15893" - kegg.compound: "C04322" - metanetx.chemical: "MNXM1617" - sbo: "SBO:0000247" - - !!omap - - id: "s_0119" - - name: "1-pyrroline-5-carboxylate" - - compartment: "m" - - formula: "C5H6NO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0119" + - name: "1-pyrroline-5-carboxylate" + - compartment: "m" + - formula: "C5H6NO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "1pyr5c" - chebi: "CHEBI:15893" - kegg.compound: "C04322" - metanetx.chemical: "MNXM1617" - sbo: "SBO:0000247" - - !!omap - - id: "s_0120" - - name: "10-formyl-THF" - - compartment: "c" - - formula: "C20H21N7O7" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0120" + - name: "10-formyl-THF" + - compartment: "c" + - formula: "C20H21N7O7" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "10fthf" - chebi: "CHEBI:57454" - kegg.compound: "C00234" - metanetx.chemical: "MNXM237" - sbo: "SBO:0000247" - - !!omap - - id: "s_0121" - - name: "10-formyl-THF" - - compartment: "m" - - formula: "C20H21N7O7" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0121" + - name: "10-formyl-THF" + - compartment: "m" + - formula: "C20H21N7O7" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "10fthf" - chebi: "CHEBI:57454" - kegg.compound: "C00234" - metanetx.chemical: "MNXM237" - sbo: "SBO:0000247" - - !!omap - - id: "s_0122" - - name: "14-demethyllanosterol" - - compartment: "c" - - formula: "C29H48O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0122" + - name: "14-demethyllanosterol" + - compartment: "c" + - formula: "C29H48O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "44mzym" - chebi: "CHEBI:18364" - kegg.compound: "C05108" - metanetx.chemical: "MNXM913" - sbo: "SBO:0000247" - - !!omap - - id: "s_0123" - - name: "1D-myo-inositol 1,3,4,5-tetrakisphosphate" - - compartment: "n" - - formula: "C6H8O18P4" - - charge: -8 - - annotation: !!omap + - !!omap + - id: "s_0123" + - name: "1D-myo-inositol 1,3,4,5-tetrakisphosphate" + - compartment: "n" + - formula: "C6H8O18P4" + - charge: -8 + - annotation: !!omap - bigg.metabolite: "mi1345p" - chebi: "CHEBI:57895" - kegg.compound: "C01272" - metanetx.chemical: "MNXM624" - sbo: "SBO:0000247" - - !!omap - - id: "s_0124" - - name: "1D-myo-inositol 1,4,5,6-tetrakisphosphate" - - compartment: "n" - - formula: "C6H8O18P4" - - charge: -8 - - annotation: !!omap + - !!omap + - id: "s_0124" + - name: "1D-myo-inositol 1,4,5,6-tetrakisphosphate" + - compartment: "n" + - formula: "C6H8O18P4" + - charge: -8 + - annotation: !!omap - bigg.metabolite: "mi3456p" - chebi: "CHEBI:57627" - kegg.compound: "C11555" - metanetx.chemical: "MNXM1620" - sbo: "SBO:0000247" - - !!omap - - id: "s_0125" - - name: "1D-myo-inositol 1,4,5-trisphosphate" - - compartment: "n" - - formula: "C6H9O15P3" - - charge: -6 - - annotation: !!omap + - !!omap + - id: "s_0125" + - name: "1D-myo-inositol 1,4,5-trisphosphate" + - compartment: "n" + - formula: "C6H9O15P3" + - charge: -6 + - annotation: !!omap - bigg.metabolite: "mi145p" - chebi: "CHEBI:203600" - kegg.compound: "C01245" - metanetx.chemical: "MNXM200" - sbo: "SBO:0000247" - - !!omap - - id: "s_0126" - - name: "1D-myo-inositol 1-phosphate" - - compartment: "c" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0126" + - name: "1D-myo-inositol 1-phosphate" + - compartment: "c" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "mi1p__D" - chebi: "CHEBI:58433" - kegg.compound: "C01177" - metanetx.chemical: "MNXM646" - sbo: "SBO:0000247" - - !!omap - - id: "s_0127" - - name: "1D-myo-inositol 1-phosphate" - - compartment: "er" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0127" + - name: "1D-myo-inositol 1-phosphate" + - compartment: "er" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "mi1p__D" - chebi: "CHEBI:58433" - kegg.compound: "C01177" - metanetx.chemical: "MNXM646" - sbo: "SBO:0000247" - - !!omap - - id: "s_0129" - - name: "1D-myo-inositol 3-phosphate" - - compartment: "m" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0129" + - name: "1D-myo-inositol 3-phosphate" + - compartment: "m" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "mi3p__D" - chebi: "CHEBI:58401" - kegg.compound: "C04006" - metanetx.chemical: "MNXM540" - sbo: "SBO:0000247" - - !!omap - - id: "s_0131" - - name: "2',3'-cyclic AMP" - - compartment: "c" - - formula: "C10H11N5O6P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0131" + - name: "2',3'-cyclic AMP" + - compartment: "c" + - formula: "C10H11N5O6P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "23camp" - chebi: "CHEBI:60879" - kegg.compound: "C02353" - metanetx.chemical: "MNXM2598" - sbo: "SBO:0000247" - - !!omap - - id: "s_0132" - - name: "2'-deoxyadenosine" - - compartment: "c" - - formula: "C10H13N5O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0132" + - name: "2'-deoxyadenosine" + - compartment: "c" + - formula: "C10H13N5O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dad_2" - chebi: "CHEBI:17256" - kegg.compound: "C00559" - metanetx.chemical: "MNXM625" - sbo: "SBO:0000247" - - !!omap - - id: "s_0133" - - name: "2'-deoxyadenosine" - - compartment: "e" - - formula: "C10H13N5O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0133" + - name: "2'-deoxyadenosine" + - compartment: "e" + - formula: "C10H13N5O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dad_2" - chebi: "CHEBI:17256" - kegg.compound: "C00559" - metanetx.chemical: "MNXM625" - sbo: "SBO:0000247" - - !!omap - - id: "s_0134" - - name: "2'-deoxyguanosine" - - compartment: "c" - - formula: "C10H13N5O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0134" + - name: "2'-deoxyguanosine" + - compartment: "c" + - formula: "C10H13N5O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dgsn" - chebi: "CHEBI:17172" - kegg.compound: "C00330" - metanetx.chemical: "MNXM647" - sbo: "SBO:0000247" - - !!omap - - id: "s_0135" - - name: "2'-deoxyguanosine" - - compartment: "e" - - formula: "C10H13N5O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0135" + - name: "2'-deoxyguanosine" + - compartment: "e" + - formula: "C10H13N5O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dgsn" - chebi: "CHEBI:17172" - kegg.compound: "C00330" - metanetx.chemical: "MNXM647" - sbo: "SBO:0000247" - - !!omap - - id: "s_0136" - - name: "2'-deoxyinosine" - - compartment: "c" - - formula: "C10H12N4O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0136" + - name: "2'-deoxyinosine" + - compartment: "c" + - formula: "C10H12N4O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "din" - chebi: "CHEBI:28997" - kegg.compound: "C05512" - metanetx.chemical: "MNXM935" - sbo: "SBO:0000247" - - !!omap - - id: "s_0137" - - name: "2'-deoxyinosine" - - compartment: "e" - - formula: "C10H12N4O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0137" + - name: "2'-deoxyinosine" + - compartment: "e" + - formula: "C10H12N4O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "din" - chebi: "CHEBI:28997" - kegg.compound: "C05512" - metanetx.chemical: "MNXM935" - sbo: "SBO:0000247" - - !!omap - - id: "s_0138" - - name: "2'-deoxyuridine" - - compartment: "c" - - formula: "C9H12N2O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0138" + - name: "2'-deoxyuridine" + - compartment: "c" + - formula: "C9H12N2O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "duri" - chebi: "CHEBI:16450" - kegg.compound: "C00526" - metanetx.chemical: "MNXM492" - sbo: "SBO:0000247" - - !!omap - - id: "s_0139" - - name: "2'-deoxyuridine" - - compartment: "e" - - formula: "C9H12N2O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0139" + - name: "2'-deoxyuridine" + - compartment: "e" + - formula: "C9H12N2O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "duri" - chebi: "CHEBI:16450" - kegg.compound: "C00526" - metanetx.chemical: "MNXM492" - sbo: "SBO:0000247" - - !!omap - - id: "s_0140" - - name: "2,3-bisphospho-D-glyceric acid" - - compartment: "c" - - formula: "C3H3O10P2" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_0140" + - name: "2,3-bisphospho-D-glyceric acid" + - compartment: "c" + - formula: "C3H3O10P2" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "23dpg" - chebi: "CHEBI:58248" - kegg.compound: "C01159" - metanetx.chemical: "MNXM892" - sbo: "SBO:0000247" - - !!omap - - id: "s_0141" - - name: "2,5-diamino-4-hydroxy-6-(5-phosphoribosylamino)pyrimidine" - - compartment: "c" - - formula: "C9H14N5O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0141" + - name: "2,5-diamino-4-hydroxy-6-(5-phosphoribosylamino)pyrimidine" + - compartment: "c" + - formula: "C9H14N5O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "25drapp" - chebi: "CHEBI:58614" - kegg.compound: "C01304" - metanetx.chemical: "MNXM648" - sbo: "SBO:0000247" - - !!omap - - id: "s_0142" - - name: "2,5-diamino-6-(5-phosphono)ribitylamino-4(3H)-pyrimidinone" - - compartment: "c" - - formula: "C9H16N5O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0142" + - name: "2,5-diamino-6-(5-phosphono)ribitylamino-4(3H)-pyrimidinone" + - compartment: "c" + - formula: "C9H16N5O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "25dthpp" - chebi: "CHEBI:52957" - kegg.compound: "C18910" - metanetx.chemical: "MNXM1099" - sbo: "SBO:0000247" - - !!omap - - id: "s_0143" - - name: "2-(3-amino-3-carboxypropyl)-L-histidine" - - compartment: "c" - - formula: "C10H16N4O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0143" + - name: "2-(3-amino-3-carboxypropyl)-L-histidine" + - compartment: "c" + - formula: "C10H16N4O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "caphis" - chebi: "CHEBI:17144" - kegg.compound: "C04441" - metanetx.chemical: "MNXM3804" - sbo: "SBO:0000247" - - !!omap - - id: "s_0144" - - name: "2-[3-carboxy-3-(methylammonio)propyl]-L-histidine" - - compartment: "c" - - formula: "C11H18N4O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0144" + - name: "2-[3-carboxy-3-(methylammonio)propyl]-L-histidine" + - compartment: "c" + - formula: "C11H18N4O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cmaphis" - chebi: "CHEBI:57784" - kegg.compound: "C04692" - metanetx.chemical: "MNXM3805" - sbo: "SBO:0000247" - - !!omap - - id: "s_0145" - - name: "2-acetamido-5-oxopentanoate" - - compartment: "m" - - formula: "C7H10NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0145" + - name: "2-acetamido-5-oxopentanoate" + - compartment: "m" + - formula: "C7H10NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "acg5sa" - chebi: "CHEBI:29123" - kegg.compound: "C01250" - metanetx.chemical: "MNXM1062" - sbo: "SBO:0000247" - - !!omap - - id: "s_0146" - - name: "2-acetyllactic acid" - - compartment: "m" - - formula: "C5H7O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0146" + - name: "2-acetyllactic acid" + - compartment: "m" + - formula: "C5H7O4" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:57774" - kegg.compound: "C00900" - metanetx.chemical: "MNXM426" - sbo: "SBO:0000247" - - !!omap - - id: "s_0147" - - name: "2-amino-3-carboxymuconate-6-semialdehyde" - - compartment: "c" - - formula: "C7H6NO5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0147" + - name: "2-amino-3-carboxymuconate-6-semialdehyde" + - compartment: "c" + - formula: "C7H6NO5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "cmusa" - chebi: "CHEBI:29044" - kegg.compound: "C04409" - metanetx.chemical: "MNXM1372" - sbo: "SBO:0000247" - - !!omap - - id: "s_0148" - - name: "2-amino-6-(hydroxymethyl)-7,8-dihydropteridin-4-ol" - - compartment: "m" - - formula: "C7H9N5O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0148" + - name: "2-amino-6-(hydroxymethyl)-7,8-dihydropteridin-4-ol" + - compartment: "m" + - formula: "C7H9N5O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "6hmhpt" - chebi: "CHEBI:17083" - kegg.compound: "C01300" - metanetx.chemical: "MNXM937" - sbo: "SBO:0000247" - - !!omap - - id: "s_0149" - - name: "2-dehydropantoate" - - compartment: "c" - - formula: "C6H9O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0149" + - name: "2-dehydropantoate" + - compartment: "c" + - formula: "C6H9O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "2dhp" - chebi: "CHEBI:11561" - kegg.compound: "C00966" - metanetx.chemical: "MNXM959" - sbo: "SBO:0000247" - - !!omap - - id: "s_0150" - - name: "2-dehydropantoate" - - compartment: "m" - - formula: "C6H9O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0150" + - name: "2-dehydropantoate" + - compartment: "m" + - formula: "C6H9O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "2dhp" - chebi: "CHEBI:11561" - kegg.compound: "C00966" - metanetx.chemical: "MNXM959" - sbo: "SBO:0000247" - - !!omap - - id: "s_0152" - - name: "2-deoxy-D-ribose" - - compartment: "c" - - formula: "C5H10O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0152" + - name: "2-deoxy-D-ribose" + - compartment: "c" + - formula: "C5H10O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "drib" - chebi: "CHEBI:28816" - kegg.compound: "C01801" - metanetx.chemical: "MNXM2474" - sbo: "SBO:0000247" - - !!omap - - id: "s_0153" - - name: "2-deoxy-D-ribose 5-phosphate" - - compartment: "c" - - formula: "C5H9O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0153" + - name: "2-deoxy-D-ribose 5-phosphate" + - compartment: "c" + - formula: "C5H9O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "2dr5p" - chebi: "CHEBI:57651" - kegg.compound: "C00673" - metanetx.chemical: "MNXM2179" - sbo: "SBO:0000247" - - !!omap - - id: "s_0154" - - name: "2-hexaprenyl-5-hydroxy-6-methoxy-3-methyl-1,4-benzoquinone" - - compartment: "m" - - formula: "C38H56O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0154" + - name: "2-hexaprenyl-5-hydroxy-6-methoxy-3-methyl-1,4-benzoquinone" + - compartment: "m" + - formula: "C38H56O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2hpmhmbq" - chebi: "CHEBI:28753" - kegg.compound: "C05805" - metanetx.chemical: "MNXM5466" - sbo: "SBO:0000247" - - !!omap - - id: "s_0155" - - name: "2-hexaprenyl-6-methoxy-1,4-benzoquinone" - - compartment: "m" - - formula: "C37H54O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0155" + - name: "2-hexaprenyl-6-methoxy-1,4-benzoquinone" + - compartment: "m" + - formula: "C37H54O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2hp6mbq" - chebi: "CHEBI:27752" - kegg.compound: "C05803" - metanetx.chemical: "MNXM6707" - sbo: "SBO:0000247" - - !!omap - - id: "s_0156" - - name: "2-hexaprenyl-6-methoxy-3-methyl-1,4-benzoquinone" - - compartment: "m" - - formula: "C38H56O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0156" + - name: "2-hexaprenyl-6-methoxy-3-methyl-1,4-benzoquinone" + - compartment: "m" + - formula: "C38H56O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2hpmmbq" - chebi: "CHEBI:28711" - kegg.compound: "C05804" - metanetx.chemical: "MNXM6067" - sbo: "SBO:0000247" - - !!omap - - id: "s_0157" - - name: "2-hexaprenyl-6-methoxyphenol" - - compartment: "m" - - formula: "C37H56O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0157" + - name: "2-hexaprenyl-6-methoxyphenol" + - compartment: "m" + - formula: "C37H56O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2hp6mp" - chebi: "CHEBI:1109" - kegg.compound: "C05802" - metanetx.chemical: "MNXM4291" - sbo: "SBO:0000247" - - !!omap - - id: "s_0158" - - name: "2-hydroxy-3-oxobutyl phosphate" - - compartment: "c" - - formula: "C4H7O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0158" + - name: "2-hydroxy-3-oxobutyl phosphate" + - compartment: "c" + - formula: "C4H7O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "db4p" - chebi: "CHEBI:50606" - kegg.compound: "C15556" - metanetx.chemical: "MNXM2323" - sbo: "SBO:0000247" - - !!omap - - id: "s_0161" - - name: "2-hydroxyhexadecanal" - - compartment: "er" - - formula: "C16H32O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0161" + - name: "2-hydroxyhexadecanal" + - compartment: "er" + - formula: "C16H32O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2hhxdal" - chebi: "CHEBI:50626" - metanetx.chemical: "MNXM35167" - sbo: "SBO:0000247" - - !!omap - - id: "s_0162" - - name: "2-isopropylmalate" - - compartment: "c" - - formula: "C7H10O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0162" + - name: "2-isopropylmalate" + - compartment: "c" + - formula: "C7H10O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3c3hmp" - chebi: "CHEBI:28107" - kegg.compound: "C02504" - metanetx.chemical: "MNXM164143" - sbo: "SBO:0000247" - - !!omap - - id: "s_0163" - - name: "2-isopropylmalate" - - compartment: "e" - - formula: "C7H10O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0163" + - name: "2-isopropylmalate" + - compartment: "e" + - formula: "C7H10O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3c3hmp" - chebi: "CHEBI:28107" - kegg.compound: "C02504" - metanetx.chemical: "MNXM164143" - sbo: "SBO:0000247" - - !!omap - - id: "s_0164" - - name: "2-isopropylmalate" - - compartment: "m" - - formula: "C7H10O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0164" + - name: "2-isopropylmalate" + - compartment: "m" + - formula: "C7H10O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3c3hmp" - chebi: "CHEBI:28107" - kegg.compound: "C02504" - metanetx.chemical: "MNXM164143" - sbo: "SBO:0000247" - - !!omap - - id: "s_0165" - - name: "2-isopropylmaleic acid" - - compartment: "c" - - formula: "C7H8O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0165" + - name: "2-isopropylmaleic acid" + - compartment: "c" + - formula: "C7H8O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "2ippm" - chebi: "CHEBI:58085" - kegg.compound: "C02631" - metanetx.chemical: "MNXM1706" - sbo: "SBO:0000247" - - !!omap - - id: "s_0166" - - name: "2-methylbutanal" - - compartment: "c" - - formula: "C5H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0166" + - name: "2-methylbutanal" + - compartment: "c" + - formula: "C5H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2mbald" - chebi: "CHEBI:16182" - kegg.compound: "C02223" - metanetx.chemical: "MNXM2604" - sbo: "SBO:0000247" - - !!omap - - id: "s_0167" - - name: "2-methylbutanal" - - compartment: "e" - - formula: "C5H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0167" + - name: "2-methylbutanal" + - compartment: "e" + - formula: "C5H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2mbald" - chebi: "CHEBI:16182" - kegg.compound: "C02223" - metanetx.chemical: "MNXM2604" - sbo: "SBO:0000247" - - !!omap - - id: "s_0168" - - name: "2-methylbutanal" - - compartment: "m" - - formula: "C5H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0168" + - name: "2-methylbutanal" + - compartment: "m" + - formula: "C5H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2mbald" - chebi: "CHEBI:16182" - kegg.compound: "C02223" - metanetx.chemical: "MNXM2604" - sbo: "SBO:0000247" - - !!omap - - id: "s_0169" - - name: "2-methylbutanol" - - compartment: "c" - - formula: "C5H12O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0169" + - name: "2-methylbutanol" + - compartment: "c" + - formula: "C5H12O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2mbtoh" - chebi: "CHEBI:48945" - metanetx.chemical: "MNXM5476" - sbo: "SBO:0000247" - - !!omap - - id: "s_0170" - - name: "2-methylbutanol" - - compartment: "e" - - formula: "C5H12O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0170" + - name: "2-methylbutanol" + - compartment: "e" + - formula: "C5H12O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2mbtoh" - chebi: "CHEBI:48945" - metanetx.chemical: "MNXM5476" - sbo: "SBO:0000247" - - !!omap - - id: "s_0171" - - name: "2-methylbutanol" - - compartment: "m" - - formula: "C5H12O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0171" + - name: "2-methylbutanol" + - compartment: "m" + - formula: "C5H12O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2mbtoh" - chebi: "CHEBI:48945" - metanetx.chemical: "MNXM5476" - sbo: "SBO:0000247" - - !!omap - - id: "s_0172" - - name: "2-methylbutyl acetate" - - compartment: "c" - - formula: "C7H14O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0172" + - name: "2-methylbutyl acetate" + - compartment: "c" + - formula: "C7H14O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2mbac" - chebi: "CHEBI:50585" - metanetx.chemical: "MNXM35277" - sbo: "SBO:0000247" - - !!omap - - id: "s_0173" - - name: "2-methylbutyl acetate" - - compartment: "e" - - formula: "C7H14O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0173" + - name: "2-methylbutyl acetate" + - compartment: "e" + - formula: "C7H14O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2mbac" - chebi: "CHEBI:50585" - metanetx.chemical: "MNXM35277" - sbo: "SBO:0000247" - - !!omap - - id: "s_0174" - - name: "2-methylcitrate" - - compartment: "m" - - formula: "C7H7O7" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0174" + - name: "2-methylcitrate" + - compartment: "m" + - formula: "C7H7O7" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "2mcit" - chebi: "CHEBI:15598" - kegg.compound: "C02225" - metanetx.chemical: "MNXM90279" - sbo: "SBO:0000247" - - !!omap - - id: "s_0176" - - name: "2-oxoadipic acid" - - compartment: "c" - - formula: "C6H6O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0176" + - name: "2-oxoadipic acid" + - compartment: "c" + - formula: "C6H6O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "2oxoadp" - chebi: "CHEBI:57499" - kegg.compound: "C00322" - metanetx.chemical: "MNXM263" - sbo: "SBO:0000247" - - !!omap - - id: "s_0177" - - name: "2-oxoadipic acid" - - compartment: "m" - - formula: "C6H6O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0177" + - name: "2-oxoadipic acid" + - compartment: "m" + - formula: "C6H6O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "2oxoadp" - chebi: "CHEBI:57499" - kegg.compound: "C00322" - metanetx.chemical: "MNXM263" - sbo: "SBO:0000247" - - !!omap - - id: "s_0178" - - name: "2-oxobutanoate" - - compartment: "c" - - formula: "C4H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0178" + - name: "2-oxobutanoate" + - compartment: "c" + - formula: "C4H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "2obut" - chebi: "CHEBI:16763" - kegg.compound: "C00109" - metanetx.chemical: "MNXM159" - sbo: "SBO:0000247" - - !!omap - - id: "s_0179" - - name: "2-oxobutanoate" - - compartment: "m" - - formula: "C4H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0179" + - name: "2-oxobutanoate" + - compartment: "m" + - formula: "C4H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "2obut" - chebi: "CHEBI:16763" - kegg.compound: "C00109" - metanetx.chemical: "MNXM159" - sbo: "SBO:0000247" - - !!omap - - id: "s_0180" - - name: "2-oxoglutarate" - - compartment: "c" - - formula: "C5H4O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0180" + - name: "2-oxoglutarate" + - compartment: "c" + - formula: "C5H4O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "akg" - chebi: "CHEBI:16810" - kegg.compound: "C00026" - metanetx.chemical: "MNXM20" - sbo: "SBO:0000247" - - !!omap - - id: "s_0181" - - name: "2-oxoglutarate" - - compartment: "e" - - formula: "C5H4O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0181" + - name: "2-oxoglutarate" + - compartment: "e" + - formula: "C5H4O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "akg" - chebi: "CHEBI:16810" - kegg.compound: "C00026" - metanetx.chemical: "MNXM20" - sbo: "SBO:0000247" - - !!omap - - id: "s_0182" - - name: "2-oxoglutarate" - - compartment: "m" - - formula: "C5H4O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0182" + - name: "2-oxoglutarate" + - compartment: "m" + - formula: "C5H4O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "akg" - chebi: "CHEBI:16810" - kegg.compound: "C00026" - metanetx.chemical: "MNXM20" - sbo: "SBO:0000247" - - !!omap - - id: "s_0183" - - name: "2-oxoglutarate" - - compartment: "n" - - formula: "C5H4O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0183" + - name: "2-oxoglutarate" + - compartment: "n" + - formula: "C5H4O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "akg" - chebi: "CHEBI:16810" - kegg.compound: "C00026" - metanetx.chemical: "MNXM20" - sbo: "SBO:0000247" - - !!omap - - id: "s_0184" - - name: "2-oxoglutarate" - - compartment: "p" - - formula: "C5H4O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0184" + - name: "2-oxoglutarate" + - compartment: "p" + - formula: "C5H4O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "akg" - chebi: "CHEBI:16810" - kegg.compound: "C00026" - metanetx.chemical: "MNXM20" - sbo: "SBO:0000247" - - !!omap - - id: "s_0185" - - name: "2-phenylethanol" - - compartment: "c" - - formula: "C8H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0185" + - name: "2-phenylethanol" + - compartment: "c" + - formula: "C8H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2phetoh" - chebi: "CHEBI:49000" - kegg.compound: "C05853" - metanetx.chemical: "MNXM2476" - sbo: "SBO:0000247" - - !!omap - - id: "s_0186" - - name: "2-phenylethanol" - - compartment: "e" - - formula: "C8H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0186" + - name: "2-phenylethanol" + - compartment: "e" + - formula: "C8H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2phetoh" - chebi: "CHEBI:49000" - kegg.compound: "C05853" - metanetx.chemical: "MNXM2476" - sbo: "SBO:0000247" - - !!omap - - id: "s_0187" - - name: "2-phenylethanol" - - compartment: "m" - - formula: "C8H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0187" + - name: "2-phenylethanol" + - compartment: "m" + - formula: "C8H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2phetoh" - chebi: "CHEBI:49000" - kegg.compound: "C05853" - metanetx.chemical: "MNXM2476" - sbo: "SBO:0000247" - - !!omap - - id: "s_0188" - - name: "2-phospho-D-glyceric acid" - - compartment: "c" - - formula: "C3H4O7P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0188" + - name: "2-phospho-D-glyceric acid" + - compartment: "c" + - formula: "C3H4O7P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "2pg" - chebi: "CHEBI:58289" - kegg.compound: "C00631" - metanetx.chemical: "MNXM275" - sbo: "SBO:0000247" - - !!omap - - id: "s_0189" - - name: "geranylgeranyl diphosphate" - - compartment: "c" - - formula: "C20H33O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0189" + - name: "geranylgeranyl diphosphate" + - compartment: "c" + - formula: "C20H33O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ggdp" - chebi: "CHEBI:58756" - kegg.compound: "C00353" - metanetx.chemical: "MNXM139" - sbo: "SBO:0000247" - - !!omap - - id: "s_0190" - - name: "farnesyl diphosphate" - - compartment: "c" - - formula: "C15H25O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0190" + - name: "farnesyl diphosphate" + - compartment: "c" + - formula: "C15H25O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "frdp" - chebi: "CHEBI:175763" - kegg.compound: "C00448" - metanetx.chemical: "MNXM34" - sbo: "SBO:0000247" - - !!omap - - id: "s_0191" - - name: "farnesyl diphosphate" - - compartment: "m" - - formula: "C15H25O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0191" + - name: "farnesyl diphosphate" + - compartment: "m" + - formula: "C15H25O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "frdp" - chebi: "CHEBI:175763" - kegg.compound: "C00448" - metanetx.chemical: "MNXM34" - sbo: "SBO:0000247" - - !!omap - - id: "s_0192" - - name: "3',5'-cyclic AMP" - - compartment: "c" - - formula: "C10H11N5O6P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0192" + - name: "3',5'-cyclic AMP" + - compartment: "c" + - formula: "C10H11N5O6P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "camp" - chebi: "CHEBI:58165" - kegg.compound: "C00575" - metanetx.chemical: "MNXM243" - sbo: "SBO:0000247" - - !!omap - - id: "s_0193" - - name: "3',5'-cyclic CMP" - - compartment: "c" - - formula: "C9H11N3O7P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0193" + - name: "3',5'-cyclic CMP" + - compartment: "c" + - formula: "C9H11N3O7P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "35ccmp" - chebi: "CHEBI:58003" - kegg.compound: "C00941" - metanetx.chemical: "MNXM3162" - sbo: "SBO:0000247" - - !!omap - - id: "s_0194" - - name: "3',5'-cyclic dAMP" - - compartment: "c" - - formula: "C10H11N5O5P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0194" + - name: "3',5'-cyclic dAMP" + - compartment: "c" + - formula: "C10H11N5O5P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "35cdamp" - chebi: "CHEBI:28074" - kegg.compound: "C00968" - metanetx.chemical: "MNXM9931" - sbo: "SBO:0000247" - - !!omap - - id: "s_0195" - - name: "3',5'-cyclic GMP" - - compartment: "c" - - formula: "C10H11N5O7P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0195" + - name: "3',5'-cyclic GMP" + - compartment: "c" + - formula: "C10H11N5O7P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "35cgmp" - chebi: "CHEBI:57746" - kegg.compound: "C00942" - metanetx.chemical: "MNXM665" - sbo: "SBO:0000247" - - !!omap - - id: "s_0196" - - name: "3',5'-cyclic IMP" - - compartment: "c" - - formula: "C10H10N4O7P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0196" + - name: "3',5'-cyclic IMP" + - compartment: "c" + - formula: "C10H10N4O7P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "35cimp" - chebi: "CHEBI:27541" - kegg.compound: "C00943" - metanetx.chemical: "MNXM9932" - sbo: "SBO:0000247" - - !!omap - - id: "s_0197" - - name: "3'-dephospho-CoA" - - compartment: "c" - - formula: "C21H33N7O13P2S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0197" + - name: "3'-dephospho-CoA" + - compartment: "c" + - formula: "C21H33N7O13P2S" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dpcoa" - chebi: "CHEBI:57328" - kegg.compound: "C00882" - metanetx.chemical: "MNXM481" - sbo: "SBO:0000247" - - !!omap - - id: "s_0200" - - name: "3'-dephospho-CoA" - - compartment: "m" - - formula: "C21H33N7O13P2S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0200" + - name: "3'-dephospho-CoA" + - compartment: "m" + - formula: "C21H33N7O13P2S" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dpcoa" - chebi: "CHEBI:57328" - kegg.compound: "C00882" - metanetx.chemical: "MNXM481" - sbo: "SBO:0000247" - - !!omap - - id: "s_0201" - - name: "3'-phospho-5'-adenylyl sulfate" - - compartment: "c" - - formula: "C10H11N5O13P2S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0201" + - name: "3'-phospho-5'-adenylyl sulfate" + - compartment: "c" + - formula: "C10H11N5O13P2S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "paps" - chebi: "CHEBI:58339" - kegg.compound: "C00053" - metanetx.chemical: "MNXM49" - sbo: "SBO:0000247" - - !!omap - - id: "s_0204" - - name: "3-(4-hydroxyphenyl)pyruvate" - - compartment: "c" - - formula: "C9H7O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0204" + - name: "3-(4-hydroxyphenyl)pyruvate" + - compartment: "c" + - formula: "C9H7O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "34hpp" - chebi: "CHEBI:36242" - kegg.compound: "C01179" - metanetx.chemical: "MNXM153" - sbo: "SBO:0000247" - - !!omap - - id: "s_0206" - - name: "3-(4-hydroxyphenyl)pyruvate" - - compartment: "p" - - formula: "C9H7O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0206" + - name: "3-(4-hydroxyphenyl)pyruvate" + - compartment: "p" + - formula: "C9H7O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "34hpp" - chebi: "CHEBI:36242" - kegg.compound: "C01179" - metanetx.chemical: "MNXM153" - sbo: "SBO:0000247" - - !!omap - - id: "s_0207" - - name: "3-(imidazol-4-yl)-2-oxopropyl dihydrogen phosphate" - - compartment: "c" - - formula: "C6H7N2O5P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0207" + - name: "3-(imidazol-4-yl)-2-oxopropyl dihydrogen phosphate" + - compartment: "c" + - formula: "C6H7N2O5P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "imacp" - chebi: "CHEBI:57766" - kegg.compound: "C01267" - metanetx.chemical: "MNXM1456" - sbo: "SBO:0000247" - - !!omap - - id: "s_0208" - - name: "3-aminopropanal" - - compartment: "c" - - formula: "C3H8NO" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0208" + - name: "3-aminopropanal" + - compartment: "c" + - formula: "C3H8NO" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "aproa" - chebi: "CHEBI:58374" - kegg.compound: "C02229" - metanetx.chemical: "MNXM493" - sbo: "SBO:0000247" - - !!omap - - id: "s_0209" - - name: "3-dehydro-4-methylzymosterol" - - compartment: "c" - - formula: "C28H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0209" + - name: "3-dehydro-4-methylzymosterol" + - compartment: "c" + - formula: "C28H44O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:50593" - kegg.compound: "C15816" - metanetx.chemical: "MNXM36392" - sbo: "SBO:0000247" - - !!omap - - id: "s_0210" - - name: "3-dehydroquinate" - - compartment: "c" - - formula: "C7H9O6" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0210" + - name: "3-dehydroquinate" + - compartment: "c" + - formula: "C7H9O6" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3dhq" - chebi: "CHEBI:32364" - kegg.compound: "C00944" - metanetx.chemical: "MNXM478" - sbo: "SBO:0000247" - - !!omap - - id: "s_0211" - - name: "3-dehydroshikimate" - - compartment: "c" - - formula: "C7H7O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0211" + - name: "3-dehydroshikimate" + - compartment: "c" + - formula: "C7H7O5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3dhsk" - chebi: "CHEBI:16630" - kegg.compound: "C02637" - metanetx.chemical: "MNXM611" - sbo: "SBO:0000247" - - !!omap - - id: "s_0212" - - name: "3-hexaprenyl-4,5-dihydroxybenzoic acid" - - compartment: "c" - - formula: "C37H53O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0212" + - name: "3-hexaprenyl-4,5-dihydroxybenzoic acid" + - compartment: "c" + - formula: "C37H53O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3dh5hpb" - chebi: "CHEBI:58373" - kegg.compound: "C05200" - metanetx.chemical: "MNXM2783" - sbo: "SBO:0000247" - - !!omap - - id: "s_0213" - - name: "3-hexaprenyl-4,5-dihydroxybenzoic acid" - - compartment: "m" - - formula: "C37H53O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0213" + - name: "3-hexaprenyl-4,5-dihydroxybenzoic acid" + - compartment: "m" + - formula: "C37H53O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3dh5hpb" - chebi: "CHEBI:58373" - kegg.compound: "C05200" - metanetx.chemical: "MNXM2783" - sbo: "SBO:0000247" - - !!omap - - id: "s_0214" - - name: "3-hexaprenyl-4-hydroxy-5-methoxybenzoic acid" - - compartment: "m" - - formula: "C38H55O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0214" + - name: "3-hexaprenyl-4-hydroxy-5-methoxybenzoic acid" + - compartment: "m" + - formula: "C38H55O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3hph5mb" - chebi: "CHEBI:57916" - kegg.compound: "C05313" - metanetx.chemical: "MNXM3166" - sbo: "SBO:0000247" - - !!omap - - id: "s_0215" - - name: "3-hexaprenyl-4-hydroxybenzoic acid" - - compartment: "c" - - formula: "C37H53O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0215" + - name: "3-hexaprenyl-4-hydroxybenzoic acid" + - compartment: "c" + - formula: "C37H53O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3ophb_5" - chebi: "CHEBI:31116" - kegg.compound: "C13425" - metanetx.chemical: "MNXM3167" - sbo: "SBO:0000247" - - !!omap - - id: "s_0216" - - name: "3-hexaprenyl-4-hydroxybenzoic acid" - - compartment: "m" - - formula: "C37H53O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0216" + - name: "3-hexaprenyl-4-hydroxybenzoic acid" + - compartment: "m" + - formula: "C37H53O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3ophb_5" - chebi: "CHEBI:31116" - kegg.compound: "C13425" - metanetx.chemical: "MNXM3167" - sbo: "SBO:0000247" - - !!omap - - id: "s_0217" - - name: "3-hydroxy-2-isopropyl-4-methoxy-4-oxobutanoate" - - compartment: "c" - - formula: "C8H13O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0217" + - name: "3-hydroxy-2-isopropyl-4-methoxy-4-oxobutanoate" + - compartment: "c" + - formula: "C8H13O5" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:52960" - metanetx.chemical: "MNXM36486" - sbo: "SBO:0000247" - - !!omap - - id: "s_0218" - - name: "3-hydroxy-3-methylglutaryl-CoA" - - compartment: "c" - - formula: "C27H39N7O20P3S" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_0218" + - name: "3-hydroxy-3-methylglutaryl-CoA" + - compartment: "c" + - formula: "C27H39N7O20P3S" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "hmgcoa" - chebi: "CHEBI:11814" - kegg.compound: "C00356" - metanetx.chemical: "MNXM197" - sbo: "SBO:0000247" - - !!omap - - id: "s_0221" - - name: "3-hydroxy-3-methylglutaryl-CoA" - - compartment: "m" - - formula: "C27H39N7O20P3S" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_0221" + - name: "3-hydroxy-3-methylglutaryl-CoA" + - compartment: "m" + - formula: "C27H39N7O20P3S" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "hmgcoa" - chebi: "CHEBI:11814" - kegg.compound: "C00356" - metanetx.chemical: "MNXM197" - sbo: "SBO:0000247" - - !!omap - - id: "s_0222" - - name: "3-hydroxy-L-kynurenine" - - compartment: "c" - - formula: "C10H12N2O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0222" + - name: "3-hydroxy-L-kynurenine" + - compartment: "c" + - formula: "C10H12N2O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "hLkynr" - chebi: "CHEBI:17380" - kegg.compound: "C03227" - metanetx.chemical: "MNXM576" - sbo: "SBO:0000247" - - !!omap - - id: "s_0224" - - name: "3-hydroxyanthranilate" - - compartment: "c" - - formula: "C7H6NO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0224" + - name: "3-hydroxyanthranilate" + - compartment: "c" + - formula: "C7H6NO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3hanthrn" - chebi: "CHEBI:36559" - kegg.compound: "C00632" - metanetx.chemical: "MNXM359" - sbo: "SBO:0000247" - - !!omap - - id: "s_0229" - - name: "3-hydroxyoctadecanoyl-CoA" - - compartment: "p" - - formula: "C39H66N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0229" + - name: "3-hydroxyoctadecanoyl-CoA" + - compartment: "p" + - formula: "C39H66N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2248" - chebi: "CHEBI:50583" - kegg.compound: "C16217" - metanetx.chemical: "MNXM1309" - sbo: "SBO:0000247" - - !!omap - - id: "s_0231" - - name: "3-ketosphinganine" - - compartment: "er" - - formula: "C18H38NO2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0231" + - name: "3-ketosphinganine" + - compartment: "er" + - formula: "C18H38NO2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "3dsphgn" - chebi: "CHEBI:58299" - kegg.compound: "C02934" - metanetx.chemical: "MNXM559" - sbo: "SBO:0000247" - - !!omap - - id: "s_0232" - - name: "3-methyl-2-oxobutanoate" - - compartment: "c" - - formula: "C5H7O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0232" + - name: "3-methyl-2-oxobutanoate" + - compartment: "c" + - formula: "C5H7O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3mob" - chebi: "CHEBI:11851" - kegg.compound: "C00141" - metanetx.chemical: "MNXM238" - sbo: "SBO:0000247" - - !!omap - - id: "s_0233" - - name: "3-methyl-2-oxobutanoate" - - compartment: "m" - - formula: "C5H7O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0233" + - name: "3-methyl-2-oxobutanoate" + - compartment: "m" + - formula: "C5H7O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3mob" - chebi: "CHEBI:11851" - kegg.compound: "C00141" - metanetx.chemical: "MNXM238" - sbo: "SBO:0000247" - - !!omap - - id: "s_0234" - - name: "3-methylbutanal" - - compartment: "c" - - formula: "C5H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0234" + - name: "3-methylbutanal" + - compartment: "c" + - formula: "C5H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "3mbald" - chebi: "CHEBI:16638" - kegg.compound: "C07329" - metanetx.chemical: "MNXM5280" - sbo: "SBO:0000247" - - !!omap - - id: "s_0235" - - name: "3-methylbutanal" - - compartment: "e" - - formula: "C5H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0235" + - name: "3-methylbutanal" + - compartment: "e" + - formula: "C5H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "3mbald" - chebi: "CHEBI:16638" - kegg.compound: "C07329" - metanetx.chemical: "MNXM5280" - sbo: "SBO:0000247" - - !!omap - - id: "s_0236" - - name: "3-methylbutanal" - - compartment: "m" - - formula: "C5H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0236" + - name: "3-methylbutanal" + - compartment: "m" + - formula: "C5H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "3mbald" - chebi: "CHEBI:16638" - kegg.compound: "C07329" - metanetx.chemical: "MNXM5280" - sbo: "SBO:0000247" - - !!omap - - id: "s_0239" - - name: "3-oxodecanoyl-CoA" - - compartment: "p" - - formula: "C31H48N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0239" + - name: "3-oxodecanoyl-CoA" + - compartment: "p" + - formula: "C31H48N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3odcoa" - chebi: "CHEBI:28528" - kegg.compound: "C05265" - metanetx.chemical: "MNXM677" - sbo: "SBO:0000247" - - !!omap - - id: "s_0243" - - name: "3-oxohexacosanoyl-CoA" - - compartment: "p" - - formula: "C47H80N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0243" + - name: "3-oxohexacosanoyl-CoA" + - compartment: "p" + - formula: "C47H80N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3ohxccoa" - chebi: "CHEBI:52977" - metanetx.chemical: "MNXM36758" - sbo: "SBO:0000247" - - !!omap - - id: "s_0247" - - name: "3-oxolauroyl-CoA" - - compartment: "p" - - formula: "C33H52N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0247" + - name: "3-oxolauroyl-CoA" + - compartment: "p" + - formula: "C33H52N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3oddcoa" - chebi: "CHEBI:27868" - kegg.compound: "C05263" - metanetx.chemical: "MNXM705" - sbo: "SBO:0000247" - - !!omap - - id: "s_0250" - - name: "3-oxooctadecanoyl-CoA" - - compartment: "p" - - formula: "C39H64N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0250" + - name: "3-oxooctadecanoyl-CoA" + - compartment: "p" + - formula: "C39H64N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3ohodcoa" - chebi: "CHEBI:50571" - kegg.compound: "C16216" - metanetx.chemical: "MNXM513" - sbo: "SBO:0000247" - - !!omap - - id: "s_0253" - - name: "3-oxopalmitoyl-CoA" - - compartment: "p" - - formula: "C37H60N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0253" + - name: "3-oxopalmitoyl-CoA" + - compartment: "p" + - formula: "C37H60N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3ohdcoa" - chebi: "CHEBI:57349" - kegg.compound: "C05259" - metanetx.chemical: "MNXM738" - sbo: "SBO:0000247" - - !!omap - - id: "s_0257" - - name: "3-oxotetradecanoyl-CoA" - - compartment: "p" - - formula: "C35H56N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0257" + - name: "3-oxotetradecanoyl-CoA" + - compartment: "p" + - formula: "C35H56N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3otdcoa" - chebi: "CHEBI:28726" - kegg.compound: "C05261" - metanetx.chemical: "MNXM707" - sbo: "SBO:0000247" - - !!omap - - id: "s_0258" - - name: "3-phospho-hydroxypyruvate" - - compartment: "c" - - formula: "C3H2O7P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0258" + - name: "3-phospho-hydroxypyruvate" + - compartment: "c" + - formula: "C3H2O7P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "3php" - chebi: "CHEBI:18110" - kegg.compound: "C03232" - metanetx.chemical: "MNXM541" - sbo: "SBO:0000247" - - !!omap - - id: "s_0259" - - name: "3-phospho-serine" - - compartment: "c" - - formula: "C3H6NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0259" + - name: "3-phospho-serine" + - compartment: "c" + - formula: "C3H6NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pser__L" - chebi: "CHEBI:57524" - kegg.compound: "C01005" - metanetx.chemical: "MNXM379" - sbo: "SBO:0000247" - - !!omap - - id: "s_0260" - - name: "3-phosphonato-D-glycerate(3-)" - - compartment: "c" - - formula: "C3H4O7P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0260" + - name: "3-phosphonato-D-glycerate(3-)" + - compartment: "c" + - formula: "C3H4O7P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "3pg" - chebi: "CHEBI:58272" - kegg.compound: "C00197" - metanetx.chemical: "MNXM126" - sbo: "SBO:0000247" - - !!omap - - id: "s_0261" - - name: "3-phosphoshikimic acid" - - compartment: "c" - - formula: "C7H8O8P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0261" + - name: "3-phosphoshikimic acid" + - compartment: "c" + - formula: "C7H8O8P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "skm5p" - chebi: "CHEBI:145989" - kegg.compound: "C03175" - metanetx.chemical: "MNXM1265" - sbo: "SBO:0000247" - - !!omap - - id: "s_0262" - - name: "4,4-dimethyl-5alpha-cholesta-8,14,24-trien-3beta-ol" - - compartment: "c" - - formula: "C29H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0262" + - name: "4,4-dimethyl-5alpha-cholesta-8,14,24-trien-3beta-ol" + - compartment: "c" + - formula: "C29H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "44mctr" - chebi: "CHEBI:17813" - kegg.compound: "C11455" - metanetx.chemical: "MNXM1036" - sbo: "SBO:0000247" - - !!omap - - id: "s_0263" - - name: "4,5-bis(diphospho)-1D-myo-inositol tetrakisphosphate" - - compartment: "c" - - formula: "C6H7O30P8" - - charge: -13 - - annotation: !!omap + - !!omap + - id: "s_0263" + - name: "4,5-bis(diphospho)-1D-myo-inositol tetrakisphosphate" + - compartment: "c" + - formula: "C6H7O30P8" + - charge: -13 + - annotation: !!omap - chebi: "CHEBI:53066" - metanetx.chemical: "MNXM484827" - sbo: "SBO:0000247" - - !!omap - - id: "s_0264" - - name: "4-(phosphonooxy)-L-threonine" - - compartment: "c" - - formula: "C4H8NO7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0264" + - name: "4-(phosphonooxy)-L-threonine" + - compartment: "c" + - formula: "C4H8NO7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "phthr" - chebi: "CHEBI:58452" - kegg.compound: "C06055" - metanetx.chemical: "MNXM759" - sbo: "SBO:0000247" - - !!omap - - id: "s_0267" - - name: "4-amino-2-methyl-5-diphosphomethylpyrimidine" - - compartment: "c" - - formula: "C6H8N3O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0267" + - name: "4-amino-2-methyl-5-diphosphomethylpyrimidine" + - compartment: "c" + - formula: "C6H8N3O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "2mahmp" - chebi: "CHEBI:57841" - kegg.compound: "C04752" - metanetx.chemical: "MNXM1135" - sbo: "SBO:0000247" - - !!omap - - id: "s_0268" - - name: "4-amino-2-methyl-5-phosphomethylpyrimidine" - - compartment: "c" - - formula: "C6H8N3O4P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0268" + - name: "4-amino-2-methyl-5-phosphomethylpyrimidine" + - compartment: "c" + - formula: "C6H8N3O4P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "4ampm" - chebi: "CHEBI:58354" - kegg.compound: "C04556" - metanetx.chemical: "MNXM790" - sbo: "SBO:0000247" - - !!omap - - id: "s_0269" - - name: "4-amino-4-deoxychorismate" - - compartment: "c" - - formula: "C10H10NO5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0269" + - name: "4-amino-4-deoxychorismate" + - compartment: "c" + - formula: "C10H10NO5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "4adcho" - chebi: "CHEBI:35181" - kegg.compound: "C11355" - metanetx.chemical: "MNXM1458" - sbo: "SBO:0000247" - - !!omap - - id: "s_0270" - - name: "4-amino-5-hydroxymethyl-2-methylpyrimidine" - - compartment: "c" - - formula: "C6H9N3O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0270" + - name: "4-amino-5-hydroxymethyl-2-methylpyrimidine" + - compartment: "c" + - formula: "C6H9N3O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4ahmmp" - chebi: "CHEBI:16892" - kegg.compound: "C01279" - metanetx.chemical: "MNXM874" - sbo: "SBO:0000247" - - !!omap - - id: "s_0271" - - name: "4-aminobenzoate" - - compartment: "c" - - formula: "C7H6NO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0271" + - name: "4-aminobenzoate" + - compartment: "c" + - formula: "C7H6NO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "4abz" - chebi: "CHEBI:17836" - kegg.compound: "C00568" - metanetx.chemical: "MNXM421" - sbo: "SBO:0000247" - - !!omap - - id: "s_0272" - - name: "4-aminobenzoate" - - compartment: "e" - - formula: "C7H6NO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0272" + - name: "4-aminobenzoate" + - compartment: "e" + - formula: "C7H6NO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "4abz" - chebi: "CHEBI:17836" - kegg.compound: "C00568" - metanetx.chemical: "MNXM421" - sbo: "SBO:0000247" - - !!omap - - id: "s_0273" - - name: "4-aminobenzoate" - - compartment: "m" - - formula: "C7H6NO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0273" + - name: "4-aminobenzoate" + - compartment: "m" + - formula: "C7H6NO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "4abz" - chebi: "CHEBI:17836" - kegg.compound: "C00568" - metanetx.chemical: "MNXM421" - sbo: "SBO:0000247" - - !!omap - - id: "s_0274" - - name: "4-aminobutanal" - - compartment: "c" - - formula: "C4H10NO" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0274" + - name: "4-aminobutanal" + - compartment: "c" + - formula: "C4H10NO" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "4abutn" - chebi: "CHEBI:58264" - kegg.compound: "C00555" - metanetx.chemical: "MNXM422" - sbo: "SBO:0000247" - - !!omap - - id: "s_0275" - - name: "4-aminobutanal" - - compartment: "m" - - formula: "C4H10NO" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0275" + - name: "4-aminobutanal" + - compartment: "m" + - formula: "C4H10NO" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "4abutn" - chebi: "CHEBI:58264" - kegg.compound: "C00555" - metanetx.chemical: "MNXM422" - sbo: "SBO:0000247" - - !!omap - - id: "s_0279" - - name: "4-diphospho-1D-myo-inositol pentakisphosphate" - - compartment: "c" - - formula: "C6H6O27P7" - - charge: -13 - - annotation: !!omap + - !!omap + - id: "s_0279" + - name: "4-diphospho-1D-myo-inositol pentakisphosphate" + - compartment: "c" + - formula: "C6H6O27P7" + - charge: -13 + - annotation: !!omap - chebi: "CHEBI:53064" - kegg.compound: "C11526" - metanetx.chemical: "MNXM1715" - sbo: "SBO:0000247" - - !!omap - - id: "s_0280" - - name: "4-guanidinobutanamide" - - compartment: "c" - - formula: "C5H13N4O" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0280" + - name: "4-guanidinobutanamide" + - compartment: "c" + - formula: "C5H13N4O" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "4gudbd" - chebi: "CHEBI:58365" - kegg.compound: "C03078" - metanetx.chemical: "MNXM2617" - sbo: "SBO:0000247" - - !!omap - - id: "s_0281" - - name: "4-guanidinobutanoic acid" - - compartment: "c" - - formula: "C5H11N3O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0281" + - name: "4-guanidinobutanoic acid" + - compartment: "c" + - formula: "C5H11N3O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4gudbutn" - chebi: "CHEBI:15728" - kegg.compound: "C01035" - metanetx.chemical: "MNXM1312" - sbo: "SBO:0000247" - - !!omap - - id: "s_0282" - - name: "4-hydroxy-2-oxoglutarate" - - compartment: "c" - - formula: "C5H4O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0282" + - name: "4-hydroxy-2-oxoglutarate" + - compartment: "c" + - formula: "C5H4O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "4h2oglt" - chebi: "CHEBI:17742" - kegg.compound: "C01127" - metanetx.chemical: "MNXM894" - sbo: "SBO:0000247" - - !!omap - - id: "s_0283" - - name: "4-hydroxy-2-oxoglutarate" - - compartment: "m" - - formula: "C5H4O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0283" + - name: "4-hydroxy-2-oxoglutarate" + - compartment: "m" + - formula: "C5H4O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "4h2oglt" - chebi: "CHEBI:17742" - kegg.compound: "C01127" - metanetx.chemical: "MNXM894" - sbo: "SBO:0000247" - - !!omap - - id: "s_0284" - - name: "4-hydroxy-2-oxoglutarate" - - compartment: "p" - - formula: "C5H4O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0284" + - name: "4-hydroxy-2-oxoglutarate" + - compartment: "p" + - formula: "C5H4O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "4h2oglt" - chebi: "CHEBI:17742" - kegg.compound: "C01127" - metanetx.chemical: "MNXM894" - sbo: "SBO:0000247" - - !!omap - - id: "s_0285" - - name: "4-hydroxy-L-threonine" - - compartment: "c" - - formula: "C4H9NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0285" + - name: "4-hydroxy-L-threonine" + - compartment: "c" + - formula: "C4H9NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4hthr" - chebi: "CHEBI:28330" - kegg.compound: "C06056" - metanetx.chemical: "MNXM1802" - sbo: "SBO:0000247" - - !!omap - - id: "s_0286" - - name: "4-hydroxybenzoate" - - compartment: "c" - - formula: "C7H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0286" + - name: "4-hydroxybenzoate" + - compartment: "c" + - formula: "C7H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "4hbz" - chebi: "CHEBI:17879" - kegg.compound: "C00156" - metanetx.chemical: "MNXM164" - sbo: "SBO:0000247" - - !!omap - - id: "s_0287" - - name: "4-hydroxybenzoate" - - compartment: "m" - - formula: "C7H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0287" + - name: "4-hydroxybenzoate" + - compartment: "m" + - formula: "C7H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "4hbz" - chebi: "CHEBI:17879" - kegg.compound: "C00156" - metanetx.chemical: "MNXM164" - sbo: "SBO:0000247" - - !!omap - - id: "s_0290" - - name: "4-hydroxybenzoyl-CoA" - - compartment: "m" - - formula: "C28H36N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0290" + - name: "4-hydroxybenzoyl-CoA" + - compartment: "m" + - formula: "C28H36N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "4hbzcoa" - chebi: "CHEBI:57356" - kegg.compound: "C02949" - metanetx.chemical: "MNXM739" - sbo: "SBO:0000247" - - !!omap - - id: "s_0291" - - name: "4-methyl-2-oxopentanoate" - - compartment: "c" - - formula: "C6H9O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0291" + - name: "4-methyl-2-oxopentanoate" + - compartment: "c" + - formula: "C6H9O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "4mop" - chebi: "CHEBI:17865" - kegg.compound: "C00233" - metanetx.chemical: "MNXM404" - sbo: "SBO:0000247" - - !!omap - - id: "s_0292" - - name: "4-methyl-2-oxopentanoate" - - compartment: "m" - - formula: "C6H9O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0292" + - name: "4-methyl-2-oxopentanoate" + - compartment: "m" + - formula: "C6H9O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "4mop" - chebi: "CHEBI:17865" - kegg.compound: "C00233" - metanetx.chemical: "MNXM404" - sbo: "SBO:0000247" - - !!omap - - id: "s_0293" - - name: "4-methyl-5-(2-phosphonooxyethyl)thiazole" - - compartment: "c" - - formula: "C6H8NO4PS" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0293" + - name: "4-methyl-5-(2-phosphonooxyethyl)thiazole" + - compartment: "c" + - formula: "C6H8NO4PS" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "4mpetz" - chebi: "CHEBI:58296" - kegg.compound: "C04327" - metanetx.chemical: "MNXM960" - sbo: "SBO:0000247" - - !!omap - - id: "s_0294" - - name: "4-methylthio-2-oxobutanoate" - - compartment: "c" - - formula: "C5H7O3S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0294" + - name: "4-methylthio-2-oxobutanoate" + - compartment: "c" + - formula: "C5H7O3S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "4met2obut" - chebi: "CHEBI:16723" - kegg.compound: "C01180" - metanetx.chemical: "MNXM276" - sbo: "SBO:0000247" - - !!omap - - id: "s_0295" - - name: "4-phospho-L-aspartate" - - compartment: "c" - - formula: "C4H6NO7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0295" + - name: "4-phospho-L-aspartate" + - compartment: "c" + - formula: "C4H6NO7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "4pasp" - chebi: "CHEBI:30407" - kegg.compound: "C03082" - metanetx.chemical: "MNXM1177" - sbo: "SBO:0000247" - - !!omap - - id: "s_0296" - - name: "4alpha-methylzymosterol" - - compartment: "c" - - formula: "C28H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0296" + - name: "4alpha-methylzymosterol" + - compartment: "c" + - formula: "C28H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4mzym" - chebi: "CHEBI:1949" - kegg.compound: "C05103" - metanetx.chemical: "MNXM1804" - sbo: "SBO:0000247" - - !!omap - - id: "s_0297" - - name: "4beta-methylzymosterol-4alpha-carboxylic acid" - - compartment: "c" - - formula: "C29H45O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0297" + - name: "4beta-methylzymosterol-4alpha-carboxylic acid" + - compartment: "c" + - formula: "C29H45O3" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:50591" - kegg.compound: "C15808" - metanetx.chemical: "MNXM37762" - sbo: "SBO:0000247" - - !!omap - - id: "s_0298" - - name: "5'-adenylyl sulfate" - - compartment: "c" - - formula: "C10H12N5O10PS" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0298" + - name: "5'-adenylyl sulfate" + - compartment: "c" + - formula: "C10H12N5O10PS" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "aps" - chebi: "CHEBI:58243" - kegg.compound: "C00224" - metanetx.chemical: "MNXM287" - sbo: "SBO:0000247" - - !!omap - - id: "s_0299" - - name: "5'-phosphoribosyl-4-(N-succinocarboxamide)-5-aminoimidazole" - - compartment: "c" - - formula: "C13H15N4O12P" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0299" + - name: "5'-phosphoribosyl-4-(N-succinocarboxamide)-5-aminoimidazole" + - compartment: "c" + - formula: "C13H15N4O12P" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "25aics" - chebi: "CHEBI:58443" - kegg.compound: "C04823" - metanetx.chemical: "MNXM607" - sbo: "SBO:0000247" - - !!omap - - id: "s_0300" - - name: "5'-phosphoribosyl-5-aminoimidazole" - - compartment: "c" - - formula: "C8H13N3O7P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0300" + - name: "5'-phosphoribosyl-5-aminoimidazole" + - compartment: "c" + - formula: "C8H13N3O7P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "air" - chebi: "CHEBI:58592" - kegg.compound: "C03373" - metanetx.chemical: "MNXM388" - sbo: "SBO:0000247" - - !!omap - - id: "s_0301" - - name: "5'-phosphoribosyl-N-formylglycineamide" - - compartment: "c" - - formula: "C8H13N2O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0301" + - name: "5'-phosphoribosyl-N-formylglycineamide" + - compartment: "c" + - formula: "C8H13N2O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "fgam" - chebi: "CHEBI:58426" - kegg.compound: "C04376" - metanetx.chemical: "MNXM453" - sbo: "SBO:0000247" - - !!omap - - id: "s_0302" - - name: "5'-phosphoribosyl-N-formylglycineamidine" - - compartment: "c" - - formula: "C8H15N3O8P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0302" + - name: "5'-phosphoribosyl-N-formylglycineamidine" + - compartment: "c" + - formula: "C8H15N3O8P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "fpram" - chebi: "CHEBI:58478" - kegg.compound: "C04640" - metanetx.chemical: "MNXM568" - sbo: "SBO:0000247" - - !!omap - - id: "s_0303" - - name: "5'-S-methyl-5'-thioadenosine" - - compartment: "c" - - formula: "C11H15N5O3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0303" + - name: "5'-S-methyl-5'-thioadenosine" + - compartment: "c" + - formula: "C11H15N5O3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "5mta" - chebi: "CHEBI:17509" - kegg.compound: "C00170" - metanetx.chemical: "MNXM150" - sbo: "SBO:0000247" - - !!omap - - id: "s_0304" - - name: "5,10-methenyl-THF" - - compartment: "c" - - formula: "C20H20N7O6" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0304" + - name: "5,10-methenyl-THF" + - compartment: "c" + - formula: "C20H20N7O6" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "methf" - chebi: "CHEBI:57455" - kegg.compound: "C00445" - metanetx.chemical: "MNXM511" - sbo: "SBO:0000247" - - !!omap - - id: "s_0305" - - name: "5,10-methenyl-THF" - - compartment: "m" - - formula: "C20H20N7O6" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0305" + - name: "5,10-methenyl-THF" + - compartment: "m" + - formula: "C20H20N7O6" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "methf" - chebi: "CHEBI:57455" - kegg.compound: "C00445" - metanetx.chemical: "MNXM511" - sbo: "SBO:0000247" - - !!omap - - id: "s_0306" - - name: "5,10-methylenetetrahydrofolate" - - compartment: "c" - - formula: "C20H21N7O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0306" + - name: "5,10-methylenetetrahydrofolate" + - compartment: "c" + - formula: "C20H21N7O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "mlthf" - chebi: "CHEBI:12071" - kegg.compound: "C00143" - metanetx.chemical: "MNXM183" - sbo: "SBO:0000247" - - !!omap - - id: "s_0307" - - name: "5,10-methylenetetrahydrofolate" - - compartment: "m" - - formula: "C20H21N7O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0307" + - name: "5,10-methylenetetrahydrofolate" + - compartment: "m" + - formula: "C20H21N7O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "mlthf" - chebi: "CHEBI:12071" - kegg.compound: "C00143" - metanetx.chemical: "MNXM183" - sbo: "SBO:0000247" - - !!omap - - id: "s_0308" - - name: "5,6,7,8-tetrahydrofolyl-L-glutamic acid" - - compartment: "c" - - formula: "C24H27N8O9" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0308" + - name: "5,6,7,8-tetrahydrofolyl-L-glutamic acid" + - compartment: "c" + - formula: "C24H27N8O9" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "thfglu" - chebi: "CHEBI:27650" - kegg.compound: "C09332" - metanetx.chemical: "MNXM723480" - sbo: "SBO:0000247" - - !!omap - - id: "s_0309" - - name: "5,6-bis(diphospho)-1D-myo-inositol tetrakisphosphate" - - compartment: "c" - - formula: "C6H7O30P8" - - charge: -13 - - annotation: !!omap + - !!omap + - id: "s_0309" + - name: "5,6-bis(diphospho)-1D-myo-inositol tetrakisphosphate" + - compartment: "c" + - formula: "C6H7O30P8" + - charge: -13 + - annotation: !!omap - chebi: "CHEBI:52965" - metanetx.chemical: "MNXM487477" - sbo: "SBO:0000247" - - !!omap - - id: "s_0310" - - name: "5-(2-hydroxyethyl)-4-methylthiazole" - - compartment: "c" - - formula: "C6H9NOS" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0310" + - name: "5-(2-hydroxyethyl)-4-methylthiazole" + - compartment: "c" + - formula: "C6H9NOS" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4mhetz" - chebi: "CHEBI:17957" - kegg.compound: "C04294" - metanetx.chemical: "MNXM962" - sbo: "SBO:0000247" - - !!omap - - id: "s_0311" - - name: "5-(methylsulfanyl)-2,3-dioxopentyl phosphate" - - compartment: "c" - - formula: "C6H9O6PS" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0311" + - name: "5-(methylsulfanyl)-2,3-dioxopentyl phosphate" + - compartment: "c" + - formula: "C6H9O6PS" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dkmpp" - chebi: "CHEBI:58828" - kegg.compound: "C15650" - metanetx.chemical: "MNXM162358" - sbo: "SBO:0000247" - - !!omap - - id: "s_0312" - - name: "5-[(5-phospho-1-deoxy-D-ribulos-1-ylamino)methylideneamino]-1-(5-phospho-D-ribosyl)imidazole-4-carboxamide" - - compartment: "c" - - formula: "C15H21N5O15P2" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0312" + - name: "5-[(5-phospho-1-deoxy-D-ribulos-1-ylamino)methylideneamino]-1-(5-phospho-D-ribosyl)imidazole-4-carboxamide" + - compartment: "c" + - formula: "C15H21N5O15P2" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "prlp" - chebi: "CHEBI:58525" - kegg.compound: "C04916" - metanetx.chemical: "MNXM1408" - sbo: "SBO:0000247" - - !!omap - - id: "s_0313" - - name: "5-amino-6-(5-phosphoribitylamino)uracil" - - compartment: "c" - - formula: "C9H15N4O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0313" + - name: "5-amino-6-(5-phosphoribitylamino)uracil" + - compartment: "c" + - formula: "C9H15N4O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "5aprbu" - chebi: "CHEBI:58421" - kegg.compound: "C04454" - metanetx.chemical: "MNXM1178" - sbo: "SBO:0000247" - - !!omap - - id: "s_0314" - - name: "5-amino-6-(D-ribitylamino)uracil" - - compartment: "c" - - formula: "C9H16N4O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0314" + - name: "5-amino-6-(D-ribitylamino)uracil" + - compartment: "c" + - formula: "C9H16N4O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4r5au" - chebi: "CHEBI:15934" - kegg.compound: "C04732" - metanetx.chemical: "MNXM791" - sbo: "SBO:0000247" - - !!omap - - id: "s_0315" - - name: "5-aminolevulinate" - - compartment: "c" - - formula: "C5H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0315" + - name: "5-aminolevulinate" + - compartment: "c" + - formula: "C5H9NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "5aop" - chebi: "CHEBI:17549" - kegg.compound: "C00430" - metanetx.chemical: "MNXM405" - sbo: "SBO:0000247" - - !!omap - - id: "s_0316" - - name: "5-aminolevulinate" - - compartment: "e" - - formula: "C5H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0316" + - name: "5-aminolevulinate" + - compartment: "e" + - formula: "C5H9NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "5aop" - chebi: "CHEBI:17549" - kegg.compound: "C00430" - metanetx.chemical: "MNXM405" - sbo: "SBO:0000247" - - !!omap - - id: "s_0317" - - name: "5-aminolevulinate" - - compartment: "m" - - formula: "C5H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0317" + - name: "5-aminolevulinate" + - compartment: "m" + - formula: "C5H9NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "5aop" - chebi: "CHEBI:17549" - kegg.compound: "C00430" - metanetx.chemical: "MNXM405" - sbo: "SBO:0000247" - - !!omap - - id: "s_0318" - - name: "5-diphospho-1D-myo-inositol pentakisphosphate" - - compartment: "c" - - formula: "C6H6O27P7" - - charge: -13 - - annotation: !!omap + - !!omap + - id: "s_0318" + - name: "5-diphospho-1D-myo-inositol pentakisphosphate" + - compartment: "c" + - formula: "C6H6O27P7" + - charge: -13 + - annotation: !!omap - bigg.metabolite: "ppmi12346p" - chebi: "CHEBI:58628" - kegg.compound: "C11526" - metanetx.chemical: "MNXM1715" - sbo: "SBO:0000247" - - !!omap - - id: "s_0319" - - name: "5-formyltetrahydrofolic acid" - - compartment: "c" - - formula: "C20H21N7O7" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0319" + - name: "5-formyltetrahydrofolic acid" + - compartment: "c" + - formula: "C20H21N7O7" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "5fthf" - chebi: "CHEBI:57457" - kegg.compound: "C03479" - metanetx.chemical: "MNXM1392" - sbo: "SBO:0000247" - - !!omap - - id: "s_0320" - - name: "5-formyltetrahydrofolic acid" - - compartment: "e" - - formula: "C20H21N7O7" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0320" + - name: "5-formyltetrahydrofolic acid" + - compartment: "e" + - formula: "C20H21N7O7" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "5fthf" - chebi: "CHEBI:57457" - kegg.compound: "C03479" - metanetx.chemical: "MNXM1392" - sbo: "SBO:0000247" - - !!omap - - id: "s_0321" - - name: "5-formyltetrahydrofolic acid" - - compartment: "m" - - formula: "C20H21N7O7" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0321" + - name: "5-formyltetrahydrofolic acid" + - compartment: "m" + - formula: "C20H21N7O7" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "5fthf" - chebi: "CHEBI:57457" - kegg.compound: "C03479" - metanetx.chemical: "MNXM1392" - sbo: "SBO:0000247" - - !!omap - - id: "s_0322" - - name: "5-methyltetrahydrofolate" - - compartment: "c" - - formula: "C20H23N7O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0322" + - name: "5-methyltetrahydrofolate" + - compartment: "c" + - formula: "C20H23N7O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "5mthf" - chebi: "CHEBI:18608" - kegg.compound: "C00440" - metanetx.chemical: "MNXM318" - sbo: "SBO:0000247" - - !!omap - - id: "s_0323" - - name: "5-methyltetrahydropteroyltri-L-glutamic acid" - - compartment: "c" - - formula: "C30H35N9O12" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0323" + - name: "5-methyltetrahydropteroyltri-L-glutamic acid" + - compartment: "c" + - formula: "C30H35N9O12" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "mhpglu" - chebi: "CHEBI:58207" - kegg.compound: "C04489" - metanetx.chemical: "MNXM2623" - sbo: "SBO:0000247" - - !!omap - - id: "s_0324" - - name: "5-O-(1-carboxyvinyl)-3-phosphoshikimic acid" - - compartment: "c" - - formula: "C10H9O10P" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0324" + - name: "5-O-(1-carboxyvinyl)-3-phosphoshikimic acid" + - compartment: "c" + - formula: "C10H9O10P" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3psme" - chebi: "CHEBI:57701" - kegg.compound: "C01269" - metanetx.chemical: "MNXM1365" - sbo: "SBO:0000247" - - !!omap - - id: "s_0325" - - name: "5-phospho-ribosyl-glycineamide" - - compartment: "c" - - formula: "C7H14N2O8P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0325" + - name: "5-phospho-ribosyl-glycineamide" + - compartment: "c" + - formula: "C7H14N2O8P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gar" - chebi: "CHEBI:58457" - kegg.compound: "C03838" - metanetx.chemical: "MNXM463" - sbo: "SBO:0000247" - - !!omap - - id: "s_0326" - - name: "5-phosphoribosyl-ATP" - - compartment: "c" - - formula: "C15H19N5O20P4" - - charge: -6 - - annotation: !!omap + - !!omap + - id: "s_0326" + - name: "5-phosphoribosyl-ATP" + - compartment: "c" + - formula: "C15H19N5O20P4" + - charge: -6 + - annotation: !!omap - bigg.metabolite: "prbatp" - chebi: "CHEBI:58424" - kegg.compound: "C02739" - metanetx.chemical: "MNXM1351" - sbo: "SBO:0000247" - - !!omap - - id: "s_0327" - - name: "5-phosphoribosylamine" - - compartment: "c" - - formula: "C5H11NO7P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0327" + - name: "5-phosphoribosylamine" + - compartment: "c" + - formula: "C5H11NO7P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "pram" - chebi: "CHEBI:58681" - kegg.compound: "C03090" - metanetx.chemical: "MNXM90003" - sbo: "SBO:0000247" - - !!omap - - id: "s_0328" - - name: "6,7-dimethyl-8-(1-D-ribityl)lumazine" - - compartment: "c" - - formula: "C13H17N4O6" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0328" + - name: "6,7-dimethyl-8-(1-D-ribityl)lumazine" + - compartment: "c" + - formula: "C13H17N4O6" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "dmlz" - chebi: "CHEBI:58201" - kegg.compound: "C04332" - metanetx.chemical: "MNXM1313" - sbo: "SBO:0000247" - - !!omap - - id: "s_0329" - - name: "6-(alpha-D-glucosaminyl)-1-phosphatidyl-1D-myo-inositol" - - compartment: "er" - - formula: "C17H28NO17PR2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0329" + - name: "6-(alpha-D-glucosaminyl)-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "C17H28NO17PR2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gpail_hs" - chebi: "CHEBI:17049" - kegg.compound: "C04248" - metanetx.chemical: "MNXM1411" - sbo: "SBO:0000247" - - !!omap - - id: "s_0330" - - name: "6-(alpha-D-glucosaminyl)-O-acyl-1-phosphatidyl-1D-myo-inositol" - - compartment: "er" - - formula: "" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0330" + - name: "6-(alpha-D-glucosaminyl)-O-acyl-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53055" - metanetx.chemical: "MNXM38512" - sbo: "SBO:0000247" - - !!omap - - id: "s_0331" - - name: "6-(N-acetyl-alpha-D-glucosaminyl)-1-phosphatidyl-1D-myo-inositol" - - compartment: "er" - - formula: "C19H30NO18PR2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0331" + - name: "6-(N-acetyl-alpha-D-glucosaminyl)-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "C19H30NO18PR2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "acgpail_hs" - chebi: "CHEBI:57265" - kegg.compound: "C01288" - metanetx.chemical: "MNXM999" - sbo: "SBO:0000247" - - !!omap - - id: "s_0332" - - name: "6-[6-(2-aminoethylphosphoryl)-alpha-mannosyl-(1->6)-2-(2-aminoethylphosphoryl)-alpha-mannosyl-(1->6)-alpha-2-(2-aminoethylphosphoryl)mannosyl-(1->4)-alpha-glucosaminyl]-O-acyl-1-phosphatidyl-1D-myo-inositol" - - compartment: "er" - - formula: "C43H44N9O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0332" + - name: "6-[6-(2-aminoethylphosphoryl)-alpha-mannosyl-(1->6)-2-(2-aminoethylphosphoryl)-alpha-mannosyl-(1->6)-alpha-2-(2-aminoethylphosphoryl)mannosyl-(1->4)-alpha-glucosaminyl]-O-acyl-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "C43H44N9O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53060" - metanetx.chemical: "MNXM38542" - sbo: "SBO:0000247" - - !!omap - - id: "s_0333" - - name: "6-diphospho-1D-myo-inositol pentakisphosphate" - - compartment: "c" - - formula: "C6H6O27P7" - - charge: -13 - - annotation: !!omap + - !!omap + - id: "s_0333" + - name: "6-diphospho-1D-myo-inositol pentakisphosphate" + - compartment: "c" + - formula: "C6H6O27P7" + - charge: -13 + - annotation: !!omap - chebi: "CHEBI:53065" - kegg.compound: "C11526" - metanetx.chemical: "MNXM1715" - sbo: "SBO:0000247" - - !!omap - - id: "s_0334" - - name: "6-O-[alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl]-O-acyl-1-phosphatidyl-1D-myo-inositol" - - compartment: "er" - - formula: "" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0334" + - name: "6-O-[alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl]-O-acyl-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53056" - metanetx.chemical: "MNXM1644" - sbo: "SBO:0000247" - - !!omap - - id: "s_0335" - - name: "6-O-phosphono-D-glucono-1,5-lactone" - - compartment: "c" - - formula: "C6H9O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0335" + - name: "6-O-phosphono-D-glucono-1,5-lactone" + - compartment: "c" + - formula: "C6H9O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "6pgl" - chebi: "CHEBI:57955" - kegg.compound: "C01236" - metanetx.chemical: "MNXM429" - sbo: "SBO:0000247" - - !!omap - - id: "s_0337" - - name: "6-O-{2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" - - compartment: "er" - - formula: "" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0337" + - name: "6-O-{2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53057" - metanetx.chemical: "MNXM38904" - sbo: "SBO:0000247" - - !!omap - - id: "s_0338" - - name: "6-O-{alpha-D-mannosyl-(1->2)-alpha-D-mannosyl-(1->6)-2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" - - compartment: "er" - - formula: "" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0338" + - name: "6-O-{alpha-D-mannosyl-(1->2)-alpha-D-mannosyl-(1->6)-2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53059" - metanetx.chemical: "MNXM1179" - sbo: "SBO:0000247" - - !!omap - - id: "s_0339" - - name: "6-O-{alpha-D-mannosyl-(1->6)-2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" - - compartment: "er" - - formula: "" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0339" + - name: "6-O-{alpha-D-mannosyl-(1->6)-2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53058" - metanetx.chemical: "MNXM1139" - sbo: "SBO:0000247" - - !!omap - - id: "s_0340" - - name: "6-phospho-D-gluconate" - - compartment: "c" - - formula: "C6H10O10P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0340" + - name: "6-phospho-D-gluconate" + - compartment: "c" + - formula: "C6H10O10P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "6pgc" - chebi: "CHEBI:58759" - kegg.compound: "C00345" - metanetx.chemical: "MNXM325" - sbo: "SBO:0000247" - - !!omap - - id: "s_0341" - - name: "7,8-diaminononanoate" - - compartment: "c" - - formula: "C9H21N2O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0341" + - name: "7,8-diaminononanoate" + - compartment: "c" + - formula: "C9H21N2O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "dann" - chebi: "CHEBI:17830" - kegg.compound: "C01037" - metanetx.chemical: "MNXM1140" - sbo: "SBO:0000247" - - !!omap - - id: "s_0342" - - name: "7,8-diaminononanoate" - - compartment: "e" - - formula: "C9H21N2O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0342" + - name: "7,8-diaminononanoate" + - compartment: "e" + - formula: "C9H21N2O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "dann" - chebi: "CHEBI:17830" - kegg.compound: "C01037" - metanetx.chemical: "MNXM1140" - sbo: "SBO:0000247" - - !!omap - - id: "s_0343" - - name: "7,8-dihydroneopterin" - - compartment: "c" - - formula: "C9H13N5O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0343" + - name: "7,8-dihydroneopterin" + - compartment: "c" + - formula: "C9H13N5O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dhnpt" - chebi: "CHEBI:17001" - kegg.compound: "C04874" - metanetx.chemical: "MNXM162359" - sbo: "SBO:0000247" - - !!omap - - id: "s_0344" - - name: "7,8-dihydroneopterin" - - compartment: "m" - - formula: "C9H13N5O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0344" + - name: "7,8-dihydroneopterin" + - compartment: "m" + - formula: "C9H13N5O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dhnpt" - chebi: "CHEBI:17001" - kegg.compound: "C04874" - metanetx.chemical: "MNXM162359" - sbo: "SBO:0000247" - - !!omap - - id: "s_0345" - - name: "7,8-dihydroneopterin 3'-phosphate" - - compartment: "c" - - formula: "C9H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0345" + - name: "7,8-dihydroneopterin 3'-phosphate" + - compartment: "c" + - formula: "C9H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dhpmp" - chebi: "CHEBI:58762" - kegg.compound: "C05925" - metanetx.chemical: "MNXM1645" - sbo: "SBO:0000247" - - !!omap - - id: "s_0346" - - name: "7,8-dihydroneopterin 3'-triphosphate" - - compartment: "c" - - formula: "C9H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0346" + - name: "7,8-dihydroneopterin 3'-triphosphate" + - compartment: "c" + - formula: "C9H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ahdt" - chebi: "CHEBI:58462" - kegg.compound: "C04895" - metanetx.chemical: "MNXM397" - sbo: "SBO:0000247" - - !!omap - - id: "s_0347" - - name: "7,8-dihydropteroate" - - compartment: "c" - - formula: "C14H13N6O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0347" + - name: "7,8-dihydropteroate" + - compartment: "c" + - formula: "C14H13N6O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "dhpt" - chebi: "CHEBI:17839" - kegg.compound: "C00921" - metanetx.chemical: "MNXM722728" - sbo: "SBO:0000247" - - !!omap - - id: "s_0348" - - name: "7,8-dihydropteroate" - - compartment: "m" - - formula: "C14H13N6O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0348" + - name: "7,8-dihydropteroate" + - compartment: "m" + - formula: "C14H13N6O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "dhpt" - chebi: "CHEBI:17839" - kegg.compound: "C00921" - metanetx.chemical: "MNXM722728" - sbo: "SBO:0000247" - - !!omap - - id: "s_0349" - - name: "7-phospho-2-dehydro-3-deoxy-D-arabino-heptonic acid" - - compartment: "c" - - formula: "C7H10O10P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0349" + - name: "7-phospho-2-dehydro-3-deoxy-D-arabino-heptonic acid" + - compartment: "c" + - formula: "C7H10O10P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "2dda7p" - chebi: "CHEBI:58394" - kegg.compound: "C04691" - metanetx.chemical: "MNXM1219" - sbo: "SBO:0000247" - - !!omap - - id: "s_0350" - - name: "7-phospho-2-dehydro-3-deoxy-D-arabino-heptonic acid" - - compartment: "m" - - formula: "C7H10O10P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0350" + - name: "7-phospho-2-dehydro-3-deoxy-D-arabino-heptonic acid" + - compartment: "m" + - formula: "C7H10O10P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "2dda7p" - chebi: "CHEBI:58394" - kegg.compound: "C04691" - metanetx.chemical: "MNXM1219" - sbo: "SBO:0000247" - - !!omap - - id: "s_0352" - - name: "8-amino-7-oxononanoate" - - compartment: "c" - - formula: "C9H17NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0352" + - name: "8-amino-7-oxononanoate" + - compartment: "c" + - formula: "C9H17NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "8aonn" - chebi: "CHEBI:15830" - kegg.compound: "C01092" - metanetx.chemical: "MNXM1141" - sbo: "SBO:0000247" - - !!omap - - id: "s_0354" - - name: "8-amino-7-oxononanoate" - - compartment: "e" - - formula: "C9H17NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0354" + - name: "8-amino-7-oxononanoate" + - compartment: "e" + - formula: "C9H17NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "8aonn" - chebi: "CHEBI:15830" - kegg.compound: "C01092" - metanetx.chemical: "MNXM1141" - sbo: "SBO:0000247" - - !!omap - - id: "s_0357" - - name: "9H-xanthine" - - compartment: "c" - - formula: "C5H4N4O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0357" + - name: "9H-xanthine" + - compartment: "c" + - formula: "C5H4N4O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "xan" - chebi: "CHEBI:17712" - kegg.compound: "C00385" - metanetx.chemical: "MNXM174" - sbo: "SBO:0000247" - - !!omap - - id: "s_0358" - - name: "9H-xanthine" - - compartment: "e" - - formula: "C5H4N4O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0358" + - name: "9H-xanthine" + - compartment: "e" + - formula: "C5H4N4O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "xan" - chebi: "CHEBI:17712" - kegg.compound: "C00385" - metanetx.chemical: "MNXM174" - sbo: "SBO:0000247" - - !!omap - - id: "s_0359" - - name: "acetaldehyde" - - compartment: "c" - - formula: "C2H4O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0359" + - name: "acetaldehyde" + - compartment: "c" + - formula: "C2H4O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "acald" - chebi: "CHEBI:15343" - kegg.compound: "C00084" - metanetx.chemical: "MNXM75" - sbo: "SBO:0000247" - - !!omap - - id: "s_0360" - - name: "acetaldehyde" - - compartment: "e" - - formula: "C2H4O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0360" + - name: "acetaldehyde" + - compartment: "e" + - formula: "C2H4O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "acald" - chebi: "CHEBI:15343" - kegg.compound: "C00084" - metanetx.chemical: "MNXM75" - sbo: "SBO:0000247" - - !!omap - - id: "s_0361" - - name: "acetaldehyde" - - compartment: "m" - - formula: "C2H4O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0361" + - name: "acetaldehyde" + - compartment: "m" + - formula: "C2H4O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "acald" - chebi: "CHEBI:15343" - kegg.compound: "C00084" - metanetx.chemical: "MNXM75" - sbo: "SBO:0000247" - - !!omap - - id: "s_0362" - - name: "acetate" - - compartment: "c" - - formula: "C2H3O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0362" + - name: "acetate" + - compartment: "c" + - formula: "C2H3O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ac" - chebi: "CHEBI:30089" - kegg.compound: "C00033" - metanetx.chemical: "MNXM26" - sbo: "SBO:0000247" - - !!omap - - id: "s_0363" - - name: "acetate" - - compartment: "er" - - formula: "C2H3O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0363" + - name: "acetate" + - compartment: "er" + - formula: "C2H3O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ac" - chebi: "CHEBI:30089" - kegg.compound: "C00033" - metanetx.chemical: "MNXM26" - sbo: "SBO:0000247" - - !!omap - - id: "s_0364" - - name: "acetate" - - compartment: "e" - - formula: "C2H3O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0364" + - name: "acetate" + - compartment: "e" + - formula: "C2H3O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ac" - chebi: "CHEBI:30089" - kegg.compound: "C00033" - metanetx.chemical: "MNXM26" - sbo: "SBO:0000247" - - !!omap - - id: "s_0365" - - name: "acetate" - - compartment: "m" - - formula: "C2H3O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0365" + - name: "acetate" + - compartment: "m" + - formula: "C2H3O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ac" - chebi: "CHEBI:30089" - kegg.compound: "C00033" - metanetx.chemical: "MNXM26" - sbo: "SBO:0000247" - - !!omap - - id: "s_0366" - - name: "acetate" - - compartment: "n" - - formula: "C2H3O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0366" + - name: "acetate" + - compartment: "n" + - formula: "C2H3O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ac" - chebi: "CHEBI:30089" - kegg.compound: "C00033" - metanetx.chemical: "MNXM26" - sbo: "SBO:0000247" - - !!omap - - id: "s_0367" - - name: "acetoacetyl-CoA" - - compartment: "c" - - formula: "C25H36N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0367" + - name: "acetoacetyl-CoA" + - compartment: "c" + - formula: "C25H36N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "aacoa" - chebi: "CHEBI:57286" - kegg.compound: "C00332" - metanetx.chemical: "MNXM133" - sbo: "SBO:0000247" - - !!omap - - id: "s_0370" - - name: "acetoacetyl-CoA" - - compartment: "m" - - formula: "C25H36N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0370" + - name: "acetoacetyl-CoA" + - compartment: "m" + - formula: "C25H36N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "aacoa" - chebi: "CHEBI:57286" - kegg.compound: "C00332" - metanetx.chemical: "MNXM133" - sbo: "SBO:0000247" - - !!omap - - id: "s_0372" - - name: "acetyl-ACP" - - compartment: "m" - - formula: "C2H3OSR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0372" + - name: "acetyl-ACP" + - compartment: "m" + - formula: "C2H3OSR" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "acACP" - chebi: "CHEBI:17093" - kegg.compound: "C03939" - metanetx.chemical: "MNXM1269" - sbo: "SBO:0000247" - - !!omap - - id: "s_0373" - - name: "acetyl-CoA" - - compartment: "c" - - formula: "C23H34N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0373" + - name: "acetyl-CoA" + - compartment: "c" + - formula: "C23H34N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "accoa" - chebi: "CHEBI:57288" - kegg.compound: "C00024" - metanetx.chemical: "MNXM21" - sbo: "SBO:0000247" - - !!omap - - id: "s_0376" - - name: "acetyl-CoA" - - compartment: "m" - - formula: "C23H34N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0376" + - name: "acetyl-CoA" + - compartment: "m" + - formula: "C23H34N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "accoa" - chebi: "CHEBI:57288" - kegg.compound: "C00024" - metanetx.chemical: "MNXM21" - sbo: "SBO:0000247" - - !!omap - - id: "s_0377" - - name: "acetyl-CoA" - - compartment: "n" - - formula: "C23H34N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0377" + - name: "acetyl-CoA" + - compartment: "n" + - formula: "C23H34N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "accoa" - chebi: "CHEBI:57288" - kegg.compound: "C00024" - metanetx.chemical: "MNXM21" - sbo: "SBO:0000247" - - !!omap - - id: "s_0378" - - name: "acetyl-CoA" - - compartment: "p" - - formula: "C23H34N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0378" + - name: "acetyl-CoA" + - compartment: "p" + - formula: "C23H34N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "accoa" - chebi: "CHEBI:57288" - kegg.compound: "C00024" - metanetx.chemical: "MNXM21" - sbo: "SBO:0000247" - - !!omap - - id: "s_0383" - - name: "adenine" - - compartment: "c" - - formula: "C5H5N5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0383" + - name: "adenine" + - compartment: "c" + - formula: "C5H5N5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ade" - chebi: "CHEBI:16708" - kegg.compound: "C00147" - metanetx.chemical: "MNXM168" - sbo: "SBO:0000247" - - !!omap - - id: "s_0384" - - name: "adenine" - - compartment: "e" - - formula: "C5H5N5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0384" + - name: "adenine" + - compartment: "e" + - formula: "C5H5N5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ade" - chebi: "CHEBI:16708" - kegg.compound: "C00147" - metanetx.chemical: "MNXM168" - sbo: "SBO:0000247" - - !!omap - - id: "s_0385" - - name: "adenine" - - compartment: "m" - - formula: "C5H5N5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0385" + - name: "adenine" + - compartment: "m" + - formula: "C5H5N5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ade" - chebi: "CHEBI:16708" - kegg.compound: "C00147" - metanetx.chemical: "MNXM168" - sbo: "SBO:0000247" - - !!omap - - id: "s_0386" - - name: "adenosine" - - compartment: "c" - - formula: "C10H13N5O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0386" + - name: "adenosine" + - compartment: "c" + - formula: "C10H13N5O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "adn" - chebi: "CHEBI:16335" - kegg.compound: "C00212" - metanetx.chemical: "MNXM212" - sbo: "SBO:0000247" - - !!omap - - id: "s_0387" - - name: "adenosine" - - compartment: "e" - - formula: "C10H13N5O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0387" + - name: "adenosine" + - compartment: "e" + - formula: "C10H13N5O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "adn" - chebi: "CHEBI:16335" - kegg.compound: "C00212" - metanetx.chemical: "MNXM212" - sbo: "SBO:0000247" - - !!omap - - id: "s_0389" - - name: "adenosine 2'-phosphate" - - compartment: "c" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0389" + - name: "adenosine 2'-phosphate" + - compartment: "c" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "amp2p" - chebi: "CHEBI:28223" - kegg.compound: "C00946" - metanetx.chemical: "MNXM7028" - sbo: "SBO:0000247" - - !!omap - - id: "s_0390" - - name: "adenosine 3',5'-bismonophosphate" - - compartment: "c" - - formula: "C10H11N5O10P2" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0390" + - name: "adenosine 3',5'-bismonophosphate" + - compartment: "c" + - formula: "C10H11N5O10P2" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "pap" - chebi: "CHEBI:58343" - kegg.compound: "C00054" - metanetx.chemical: "MNXM45" - sbo: "SBO:0000247" - - !!omap - - id: "s_0391" - - name: "adenosine 3',5'-bismonophosphate" - - compartment: "e" - - formula: "C10H11N5O10P2" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0391" + - name: "adenosine 3',5'-bismonophosphate" + - compartment: "e" + - formula: "C10H11N5O10P2" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "pap" - chebi: "CHEBI:58343" - kegg.compound: "C00054" - metanetx.chemical: "MNXM45" - sbo: "SBO:0000247" - - !!omap - - id: "s_0392" - - name: "adenosine 3',5'-bismonophosphate" - - compartment: "m" - - formula: "C10H11N5O10P2" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0392" + - name: "adenosine 3',5'-bismonophosphate" + - compartment: "m" + - formula: "C10H11N5O10P2" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "pap" - chebi: "CHEBI:58343" - kegg.compound: "C00054" - metanetx.chemical: "MNXM45" - sbo: "SBO:0000247" - - !!omap - - id: "s_0393" - - name: "adenylo-succinate" - - compartment: "c" - - formula: "C14H14N5O11P" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0393" + - name: "adenylo-succinate" + - compartment: "c" + - formula: "C14H14N5O11P" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "dcamp" - chebi: "CHEBI:57567" - kegg.compound: "C03794" - metanetx.chemical: "MNXM565" - sbo: "SBO:0000247" - - !!omap - - id: "s_0394" - - name: "ADP" - - compartment: "c" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0394" + - name: "ADP" + - compartment: "c" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "adp" - chebi: "CHEBI:456216" - kegg.compound: "C00008" - metanetx.chemical: "MNXM7" - sbo: "SBO:0000247" - - !!omap - - id: "s_0395" - - name: "ADP" - - compartment: "er" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0395" + - name: "ADP" + - compartment: "er" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "adp" - chebi: "CHEBI:456216" - kegg.compound: "C00008" - metanetx.chemical: "MNXM7" - sbo: "SBO:0000247" - - !!omap - - id: "s_0397" - - name: "ADP" - - compartment: "m" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0397" + - name: "ADP" + - compartment: "m" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "adp" - chebi: "CHEBI:456216" - kegg.compound: "C00008" - metanetx.chemical: "MNXM7" - sbo: "SBO:0000247" - - !!omap - - id: "s_0398" - - name: "ADP" - - compartment: "n" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0398" + - name: "ADP" + - compartment: "n" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "adp" - chebi: "CHEBI:456216" - kegg.compound: "C00008" - metanetx.chemical: "MNXM7" - sbo: "SBO:0000247" - - !!omap - - id: "s_0399" - - name: "ADP" - - compartment: "p" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0399" + - name: "ADP" + - compartment: "p" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "adp" - chebi: "CHEBI:456216" - kegg.compound: "C00008" - metanetx.chemical: "MNXM7" - sbo: "SBO:0000247" - - !!omap - - id: "s_0402" - - name: "ADP-ribose" - - compartment: "n" - - formula: "C15H21N5O14P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0402" + - name: "ADP-ribose" + - compartment: "n" + - formula: "C15H21N5O14P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "adprib" - chebi: "CHEBI:57967" - kegg.compound: "C00301" - metanetx.chemical: "MNXM48596" - sbo: "SBO:0000247" - - !!omap - - id: "s_0403" - - name: "AICAR" - - compartment: "c" - - formula: "C9H13N4O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0403" + - name: "AICAR" + - compartment: "c" + - formula: "C9H13N4O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "aicar" - chebi: "CHEBI:58475" - kegg.compound: "C04677" - metanetx.chemical: "MNXM365" - sbo: "SBO:0000247" - - !!omap - - id: "s_0404" - - name: "Ala-tRNA(Ala)" - - compartment: "c" - - formula: "C3H7NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0404" + - name: "Ala-tRNA(Ala)" + - compartment: "c" + - formula: "C3H7NOR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "alatrna" - chebi: "CHEBI:17732" - kegg.compound: "C00886" - metanetx.chemical: "MNXM89815" - sbo: "SBO:0000247" - - !!omap - - id: "s_0405" - - name: "allantoate" - - compartment: "c" - - formula: "C4H7N4O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0405" + - name: "allantoate" + - compartment: "c" + - formula: "C4H7N4O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "alltt" - chebi: "CHEBI:17536" - kegg.compound: "C00499" - metanetx.chemical: "MNXM584" - sbo: "SBO:0000247" - - !!omap - - id: "s_0406" - - name: "allantoate" - - compartment: "e" - - formula: "C4H7N4O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0406" + - name: "allantoate" + - compartment: "e" + - formula: "C4H7N4O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "alltt" - chebi: "CHEBI:17536" - kegg.compound: "C00499" - metanetx.chemical: "MNXM584" - sbo: "SBO:0000247" - - !!omap - - id: "s_0407" - - name: "allantoin" - - compartment: "c" - - formula: "C4H6N4O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0407" + - name: "allantoin" + - compartment: "c" + - formula: "C4H6N4O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "alltn" - chebi: "CHEBI:15676" - kegg.compound: "C01551" - metanetx.chemical: "MNXM612" - sbo: "SBO:0000247" - - !!omap - - id: "s_0408" - - name: "allantoin" - - compartment: "e" - - formula: "C4H6N4O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0408" + - name: "allantoin" + - compartment: "e" + - formula: "C4H6N4O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "alltn" - chebi: "CHEBI:15676" - kegg.compound: "C01551" - metanetx.chemical: "MNXM612" - sbo: "SBO:0000247" - - !!omap - - id: "s_0409" - - name: "alpha,alpha-trehalose 6-phosphate" - - compartment: "c" - - formula: "C12H21O14P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0409" + - name: "alpha,alpha-trehalose 6-phosphate" + - compartment: "c" + - formula: "C12H21O14P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "tre6p" - chebi: "CHEBI:58429" - kegg.compound: "C00689" - metanetx.chemical: "MNXM448" - sbo: "SBO:0000247" - - !!omap - - id: "s_0410" - - name: "alpha-D-galactose 1-phosphate" - - compartment: "c" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0410" + - name: "alpha-D-galactose 1-phosphate" + - compartment: "c" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "gal1p" - chebi: "CHEBI:58336" - kegg.compound: "C00446" - metanetx.chemical: "MNXM336" - sbo: "SBO:0000247" - - !!omap - - id: "s_0411" - - name: "alpha-D-glucosamine 1-phosphate" - - compartment: "c" - - formula: "C6H13NO8P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0411" + - name: "alpha-D-glucosamine 1-phosphate" + - compartment: "c" + - formula: "C6H13NO8P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gam1p" - chebi: "CHEBI:58516" - kegg.compound: "C06156" - metanetx.chemical: "MNXM969" - sbo: "SBO:0000247" - - !!omap - - id: "s_0412" - - name: "alpha-D-glucosamine 6-phosphate" - - compartment: "c" - - formula: "C6H13NO8P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0412" + - name: "alpha-D-glucosamine 6-phosphate" + - compartment: "c" + - formula: "C6H13NO8P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gam6p" - chebi: "CHEBI:15873" - kegg.compound: "C00352" - metanetx.chemical: "MNXM370" - sbo: "SBO:0000247" - - !!omap - - id: "s_0413" - - name: "alpha-D-glucosamine 6-phosphate" - - compartment: "e" - - formula: "C6H13NO8P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0413" + - name: "alpha-D-glucosamine 6-phosphate" + - compartment: "e" + - formula: "C6H13NO8P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gam6p" - chebi: "CHEBI:15873" - kegg.compound: "C00352" - metanetx.chemical: "MNXM370" - sbo: "SBO:0000247" - - !!omap - - id: "s_0414" - - name: "alpha-D-mannosyl-beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" - - compartment: "g" - - formula: "C48H84N2O27P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0414" + - name: "alpha-D-mannosyl-beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" + - compartment: "g" + - formula: "C48H84N2O27P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:28067" - kegg.compound: "C05861" - metanetx.chemical: "MNXM41231" - sbo: "SBO:0000247" - - !!omap - - id: "s_0415" - - name: "alpha-D-ribose 1-phosphate(2-)" - - compartment: "c" - - formula: "C5H9O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0415" + - name: "alpha-D-ribose 1-phosphate(2-)" + - compartment: "c" + - formula: "C5H9O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "r1p" - chebi: "CHEBI:57720" - kegg.compound: "C00620" - metanetx.chemical: "MNXM295" - sbo: "SBO:0000247" - - !!omap - - id: "s_0416" - - name: "alpha-D-ribose 1-phosphate(2-)" - - compartment: "m" - - formula: "C5H9O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0416" + - name: "alpha-D-ribose 1-phosphate(2-)" + - compartment: "m" + - formula: "C5H9O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "r1p" - chebi: "CHEBI:57720" - kegg.compound: "C00620" - metanetx.chemical: "MNXM295" - sbo: "SBO:0000247" - - !!omap - - id: "s_0417" - - name: "aminoacetaldehyde" - - compartment: "c" - - formula: "C2H6NO" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0417" + - name: "aminoacetaldehyde" + - compartment: "c" + - formula: "C2H6NO" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "aacald" - chebi: "CHEBI:58213" - kegg.compound: "C06735" - metanetx.chemical: "MNXM2212" - sbo: "SBO:0000247" - - !!omap - - id: "s_0418" - - name: "aminoacetone" - - compartment: "c" - - formula: "C3H8NO" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0418" + - name: "aminoacetone" + - compartment: "c" + - formula: "C3H8NO" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "aact" - chebi: "CHEBI:58320" - kegg.compound: "C01888" - metanetx.chemical: "MNXM1106" - sbo: "SBO:0000247" - - !!omap - - id: "s_0419" - - name: "ammonium" - - compartment: "c" - - formula: "H4N" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0419" + - name: "ammonium" + - compartment: "c" + - formula: "H4N" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "nh4" - chebi: "CHEBI:28938" - kegg.compound: "C01342" - metanetx.chemical: "MNXM15" - sbo: "SBO:0000247" - - !!omap - - id: "s_0420" - - name: "ammonium" - - compartment: "e" - - formula: "H4N" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0420" + - name: "ammonium" + - compartment: "e" + - formula: "H4N" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "nh4" - chebi: "CHEBI:28938" - kegg.compound: "C01342" - metanetx.chemical: "MNXM15" - sbo: "SBO:0000247" - - !!omap - - id: "s_0421" - - name: "ammonium" - - compartment: "m" - - formula: "H4N" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0421" + - name: "ammonium" + - compartment: "m" + - formula: "H4N" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "nh4" - chebi: "CHEBI:28938" - kegg.compound: "C01342" - metanetx.chemical: "MNXM15" - sbo: "SBO:0000247" - - !!omap - - id: "s_0423" - - name: "AMP" - - compartment: "c" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0423" + - name: "AMP" + - compartment: "c" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "amp" - chebi: "CHEBI:456215" - kegg.compound: "C00020" - metanetx.chemical: "MNXM14" - sbo: "SBO:0000247" - - !!omap - - id: "s_0424" - - name: "AMP" - - compartment: "m" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0424" + - name: "AMP" + - compartment: "m" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "amp" - chebi: "CHEBI:456215" - kegg.compound: "C00020" - metanetx.chemical: "MNXM14" - sbo: "SBO:0000247" - - !!omap - - id: "s_0425" - - name: "AMP" - - compartment: "n" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0425" + - name: "AMP" + - compartment: "n" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "amp" - chebi: "CHEBI:456215" - kegg.compound: "C00020" - metanetx.chemical: "MNXM14" - sbo: "SBO:0000247" - - !!omap - - id: "s_0426" - - name: "AMP" - - compartment: "p" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0426" + - name: "AMP" + - compartment: "p" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "amp" - chebi: "CHEBI:456215" - kegg.compound: "C00020" - metanetx.chemical: "MNXM14" - sbo: "SBO:0000247" - - !!omap - - id: "s_0427" - - name: "anthranilate" - - compartment: "c" - - formula: "C7H6NO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0427" + - name: "anthranilate" + - compartment: "c" + - formula: "C7H6NO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "anth" - chebi: "CHEBI:16567" - kegg.compound: "C00108" - metanetx.chemical: "MNXM188" - sbo: "SBO:0000247" - - !!omap - - id: "s_0428" - - name: "Arg-tRNA(Arg)" - - compartment: "c" - - formula: "C6H15N4OR" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_0428" + - name: "Arg-tRNA(Arg)" + - compartment: "c" + - formula: "C6H15N4OR" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "argtrna" - chebi: "CHEBI:18366" - kegg.compound: "C02163" - metanetx.chemical: "MNXM89870" - sbo: "SBO:0000247" - - !!omap - - id: "s_0429" - - name: "Arg-tRNA(Arg)" - - compartment: "m" - - formula: "C6H15N4OR" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_0429" + - name: "Arg-tRNA(Arg)" + - compartment: "m" + - formula: "C6H15N4OR" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "argtrna" - chebi: "CHEBI:18366" - kegg.compound: "C02163" - metanetx.chemical: "MNXM89870" - sbo: "SBO:0000247" - - !!omap - - id: "s_0430" - - name: "Asn-tRNA(Asn)" - - compartment: "c" - - formula: "C4H8N2O2R" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0430" + - name: "Asn-tRNA(Asn)" + - compartment: "c" + - formula: "C4H8N2O2R" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "asntrna" - chebi: "CHEBI:29265" - kegg.compound: "C03402" - metanetx.chemical: "MNXM89761" - sbo: "SBO:0000247" - - !!omap - - id: "s_0431" - - name: "Asn-tRNA(Asn)" - - compartment: "m" - - formula: "C4H8N2O2R" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0431" + - name: "Asn-tRNA(Asn)" + - compartment: "m" + - formula: "C4H8N2O2R" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "asntrna" - chebi: "CHEBI:29265" - kegg.compound: "C03402" - metanetx.chemical: "MNXM89761" - sbo: "SBO:0000247" - - !!omap - - id: "s_0432" - - name: "Asp-tRNA(Asp)" - - compartment: "c" - - formula: "C4H6NO3R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0432" + - name: "Asp-tRNA(Asp)" + - compartment: "c" + - formula: "C4H6NO3R" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "asptrna" - chebi: "CHEBI:29158" - kegg.compound: "C02984" - metanetx.chemical: "MNXM164570" - sbo: "SBO:0000247" - - !!omap - - id: "s_0433" - - name: "Asp-tRNA(Asp)" - - compartment: "m" - - formula: "C4H6NO3R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0433" + - name: "Asp-tRNA(Asp)" + - compartment: "m" + - formula: "C4H6NO3R" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "asptrna" - chebi: "CHEBI:29158" - kegg.compound: "C02984" - metanetx.chemical: "MNXM164570" - sbo: "SBO:0000247" - - !!omap - - id: "s_0434" - - name: "ATP" - - compartment: "c" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0434" + - name: "ATP" + - compartment: "c" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "atp" - chebi: "CHEBI:30616" - kegg.compound: "C00002" - metanetx.chemical: "MNXM3" - sbo: "SBO:0000247" - - !!omap - - id: "s_0435" - - name: "ATP" - - compartment: "er" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0435" + - name: "ATP" + - compartment: "er" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "atp" - chebi: "CHEBI:30616" - kegg.compound: "C00002" - metanetx.chemical: "MNXM3" - sbo: "SBO:0000247" - - !!omap - - id: "s_0437" - - name: "ATP" - - compartment: "m" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0437" + - name: "ATP" + - compartment: "m" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "atp" - chebi: "CHEBI:30616" - kegg.compound: "C00002" - metanetx.chemical: "MNXM3" - sbo: "SBO:0000247" - - !!omap - - id: "s_0438" - - name: "ATP" - - compartment: "n" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0438" + - name: "ATP" + - compartment: "n" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "atp" - chebi: "CHEBI:30616" - kegg.compound: "C00002" - metanetx.chemical: "MNXM3" - sbo: "SBO:0000247" - - !!omap - - id: "s_0439" - - name: "ATP" - - compartment: "p" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0439" + - name: "ATP" + - compartment: "p" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "atp" - chebi: "CHEBI:30616" - kegg.compound: "C00002" - metanetx.chemical: "MNXM3" - sbo: "SBO:0000247" - - !!omap - - id: "s_0441" - - name: "beta-alanine" - - compartment: "c" - - formula: "C3H7NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0441" + - name: "beta-alanine" + - compartment: "c" + - formula: "C3H7NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_B" - chebi: "CHEBI:16958" - kegg.compound: "C00099" - metanetx.chemical: "MNXM144" - sbo: "SBO:0000247" - - !!omap - - id: "s_0442" - - name: "beta-D-fructose 2,6-bisphosphate" - - compartment: "c" - - formula: "C6H10O12P2" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0442" + - name: "beta-D-fructose 2,6-bisphosphate" + - compartment: "c" + - formula: "C6H10O12P2" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "f26bp" - chebi: "CHEBI:58579" - kegg.compound: "C00665" - metanetx.chemical: "MNXM651" - sbo: "SBO:0000247" - - !!omap - - id: "s_0443" - - name: "beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" - - compartment: "c" - - formula: "C42H72N2O22P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0443" + - name: "beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" + - compartment: "c" + - formula: "C42H72N2O22P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "mpdol" - chebi: "CHEBI:18396" - kegg.compound: "C05860" - metanetx.chemical: "MNXM1078" - sbo: "SBO:0000247" - - !!omap - - id: "s_0444" - - name: "beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" - - compartment: "g" - - formula: "C42H72N2O22P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0444" + - name: "beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" + - compartment: "g" + - formula: "C42H72N2O22P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "mpdol" - chebi: "CHEBI:18396" - kegg.compound: "C05860" - metanetx.chemical: "MNXM1078" - sbo: "SBO:0000247" - - !!omap - - id: "s_0445" - - name: "bicarbonate" - - compartment: "c" - - formula: "CHO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0445" + - name: "bicarbonate" + - compartment: "c" + - formula: "CHO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hco3" - chebi: "CHEBI:17544" - kegg.compound: "C00288" - metanetx.chemical: "MNXM60" - sbo: "SBO:0000247" - - !!omap - - id: "s_0446" - - name: "bicarbonate" - - compartment: "e" - - formula: "CHO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0446" + - name: "bicarbonate" + - compartment: "e" + - formula: "CHO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hco3" - chebi: "CHEBI:17544" - kegg.compound: "C00288" - metanetx.chemical: "MNXM60" - sbo: "SBO:0000247" - - !!omap - - id: "s_0447" - - name: "bicarbonate" - - compartment: "m" - - formula: "CHO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0447" + - name: "bicarbonate" + - compartment: "m" + - formula: "CHO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hco3" - chebi: "CHEBI:17544" - kegg.compound: "C00288" - metanetx.chemical: "MNXM60" - sbo: "SBO:0000247" - - !!omap - - id: "s_0448" - - name: "bicarbonate" - - compartment: "n" - - formula: "CHO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0448" + - name: "bicarbonate" + - compartment: "n" + - formula: "CHO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hco3" - chebi: "CHEBI:17544" - kegg.compound: "C00288" - metanetx.chemical: "MNXM60" - sbo: "SBO:0000247" - - !!omap - - id: "s_0450" - - name: "biomass" - - compartment: "c" - - formula: "" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0450" + - name: "biomass" + - compartment: "c" + - formula: "" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "biomass" - sbo: "SBO:0000649" - - !!omap - - id: "s_0451" - - name: "biotin" - - compartment: "c" - - formula: "C10H15N2O3S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0451" + - name: "biotin" + - compartment: "c" + - formula: "C10H15N2O3S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "btn" - chebi: "CHEBI:57586" - kegg.compound: "C00120" - metanetx.chemical: "MNXM304" - sbo: "SBO:0000247" - - !!omap - - id: "s_0452" - - name: "biotin" - - compartment: "e" - - formula: "C10H15N2O3S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0452" + - name: "biotin" + - compartment: "e" + - formula: "C10H15N2O3S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "btn" - chebi: "CHEBI:57586" - kegg.compound: "C00120" - metanetx.chemical: "MNXM304" - sbo: "SBO:0000247" - - !!omap - - id: "s_0453" - - name: "biotinyl-5'-AMP" - - compartment: "c" - - formula: "C20H27N7O9PS" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0453" + - name: "biotinyl-5'-AMP" + - compartment: "c" + - formula: "C20H27N7O9PS" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "btamp" - chebi: "CHEBI:62414" - kegg.compound: "C05921" - metanetx.chemical: "MNXM2351" - sbo: "SBO:0000247" - - !!omap - - id: "s_0454" - - name: "but-1-ene-1,2,4-tricarboxylic acid" - - compartment: "m" - - formula: "C7H5O6" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0454" + - name: "but-1-ene-1,2,4-tricarboxylic acid" + - compartment: "m" + - formula: "C7H5O6" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "b124tc" - chebi: "CHEBI:58174" - kegg.compound: "C04002" - metanetx.chemical: "MNXM920" - sbo: "SBO:0000247" - - !!omap - - id: "s_0455" - - name: "carbamoyl phosphate" - - compartment: "c" - - formula: "CH2NO5P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0455" + - name: "carbamoyl phosphate" + - compartment: "c" + - formula: "CH2NO5P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "cbp" - chebi: "CHEBI:58228" - kegg.compound: "C00169" - metanetx.chemical: "MNXM138" - sbo: "SBO:0000247" - - !!omap - - id: "s_0456" - - name: "carbon dioxide" - - compartment: "c" - - formula: "CO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0456" + - name: "carbon dioxide" + - compartment: "c" + - formula: "CO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "co2" - chebi: "CHEBI:16526" - kegg.compound: "C00011" - metanetx.chemical: "MNXM13" - sbo: "SBO:0000247" - - !!omap - - id: "s_0457" - - name: "carbon dioxide" - - compartment: "er" - - formula: "CO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0457" + - name: "carbon dioxide" + - compartment: "er" + - formula: "CO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "co2" - chebi: "CHEBI:16526" - kegg.compound: "C00011" - metanetx.chemical: "MNXM13" - sbo: "SBO:0000247" - - !!omap - - id: "s_0458" - - name: "carbon dioxide" - - compartment: "e" - - formula: "CO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0458" + - name: "carbon dioxide" + - compartment: "e" + - formula: "CO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "co2" - chebi: "CHEBI:16526" - kegg.compound: "C00011" - metanetx.chemical: "MNXM13" - sbo: "SBO:0000247" - - !!omap - - id: "s_0460" - - name: "carbon dioxide" - - compartment: "m" - - formula: "CO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0460" + - name: "carbon dioxide" + - compartment: "m" + - formula: "CO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "co2" - chebi: "CHEBI:16526" - kegg.compound: "C00011" - metanetx.chemical: "MNXM13" - sbo: "SBO:0000247" - - !!omap - - id: "s_0461" - - name: "carbon dioxide" - - compartment: "n" - - formula: "CO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0461" + - name: "carbon dioxide" + - compartment: "n" + - formula: "CO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "co2" - chebi: "CHEBI:16526" - kegg.compound: "C00011" - metanetx.chemical: "MNXM13" - sbo: "SBO:0000247" - - !!omap - - id: "s_0462" - - name: "carbon dioxide" - - compartment: "p" - - formula: "CO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0462" + - name: "carbon dioxide" + - compartment: "p" + - formula: "CO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "co2" - chebi: "CHEBI:16526" - kegg.compound: "C00011" - metanetx.chemical: "MNXM13" - sbo: "SBO:0000247" - - !!omap - - id: "s_0465" - - name: "carboxyacetyl-ACP" - - compartment: "m" - - formula: "C3H3O3SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0465" + - name: "carboxyacetyl-ACP" + - compartment: "m" + - formula: "C3H3O3SR" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "malACP" - chebi: "CHEBI:17330" - kegg.compound: "C01209" - metanetx.chemical: "MNXM184" - sbo: "SBO:0000247" - - !!omap - - id: "s_0467" - - name: "CDP" - - compartment: "c" - - formula: "C9H12N3O11P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0467" + - name: "CDP" + - compartment: "c" + - formula: "C9H12N3O11P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "cdp" - chebi: "CHEBI:58069" - kegg.compound: "C00112" - metanetx.chemical: "MNXM220" - sbo: "SBO:0000247" - - !!omap - - id: "s_0468" - - name: "CDP" - - compartment: "n" - - formula: "C9H12N3O11P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0468" + - name: "CDP" + - compartment: "n" + - formula: "C9H12N3O11P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "cdp" - chebi: "CHEBI:58069" - kegg.compound: "C00112" - metanetx.chemical: "MNXM220" - sbo: "SBO:0000247" - - !!omap - - id: "s_0469" - - name: "CDP-choline" - - compartment: "c" - - formula: "C14H25N4O11P2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0469" + - name: "CDP-choline" + - compartment: "c" + - formula: "C14H25N4O11P2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "cdpchol" - chebi: "CHEBI:16436" - kegg.compound: "C00307" - metanetx.chemical: "MNXM283" - sbo: "SBO:0000247" - - !!omap - - id: "s_0474" - - name: "CDP-ethanolamine" - - compartment: "c" - - formula: "C11H19N4O11P2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0474" + - name: "CDP-ethanolamine" + - compartment: "c" + - formula: "C11H19N4O11P2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "cdpea" - chebi: "CHEBI:57876" - kegg.compound: "C00570" - metanetx.chemical: "MNXM449" - sbo: "SBO:0000247" - - !!omap - - id: "s_0475" - - name: "ceramide-1 (C24)" - - compartment: "er" - - formula: "C42H85NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0475" + - name: "ceramide-1 (C24)" + - compartment: "er" + - formula: "C42H85NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer1_24" - chebi: "CHEBI:52961" - metanetx.chemical: "MNXM64020" - sbo: "SBO:0000247" - - !!omap - - id: "s_0476" - - name: "ceramide-1 (C24)" - - compartment: "g" - - formula: "C42H85NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0476" + - name: "ceramide-1 (C24)" + - compartment: "g" + - formula: "C42H85NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer1_24" - chebi: "CHEBI:52961" - metanetx.chemical: "MNXM64020" - sbo: "SBO:0000247" - - !!omap - - id: "s_0477" - - name: "ceramide-1 (C24)" - - compartment: "m" - - formula: "C42H85NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0477" + - name: "ceramide-1 (C24)" + - compartment: "m" + - formula: "C42H85NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer1_24" - chebi: "CHEBI:52961" - metanetx.chemical: "MNXM64020" - sbo: "SBO:0000247" - - !!omap - - id: "s_0478" - - name: "ceramide-1 (C26)" - - compartment: "er" - - formula: "C44H89NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0478" + - name: "ceramide-1 (C26)" + - compartment: "er" + - formula: "C44H89NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer1_26" - chebi: "CHEBI:52962" - metanetx.chemical: "MNXM63798" - sbo: "SBO:0000247" - - !!omap - - id: "s_0479" - - name: "ceramide-1 (C26)" - - compartment: "g" - - formula: "C44H89NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0479" + - name: "ceramide-1 (C26)" + - compartment: "g" + - formula: "C44H89NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer1_26" - chebi: "CHEBI:52962" - metanetx.chemical: "MNXM63798" - sbo: "SBO:0000247" - - !!omap - - id: "s_0480" - - name: "ceramide-1 (C26)" - - compartment: "m" - - formula: "C44H89NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0480" + - name: "ceramide-1 (C26)" + - compartment: "m" + - formula: "C44H89NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer1_26" - chebi: "CHEBI:52962" - metanetx.chemical: "MNXM63798" - sbo: "SBO:0000247" - - !!omap - - id: "s_0481" - - name: "ceramide-2 (C24)" - - compartment: "er" - - formula: "C42H85NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0481" + - name: "ceramide-2 (C24)" + - compartment: "er" + - formula: "C42H85NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer2_24" - chebi: "CHEBI:52979" - metanetx.chemical: "MNXM64019" - sbo: "SBO:0000247" - - !!omap - - id: "s_0482" - - name: "ceramide-2 (C24)" - - compartment: "g" - - formula: "C42H85NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0482" + - name: "ceramide-2 (C24)" + - compartment: "g" + - formula: "C42H85NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer2_24" - chebi: "CHEBI:52979" - metanetx.chemical: "MNXM64019" - sbo: "SBO:0000247" - - !!omap - - id: "s_0483" - - name: "ceramide-2 (C24)" - - compartment: "m" - - formula: "C42H85NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0483" + - name: "ceramide-2 (C24)" + - compartment: "m" + - formula: "C42H85NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer2_24" - chebi: "CHEBI:52979" - metanetx.chemical: "MNXM64019" - sbo: "SBO:0000247" - - !!omap - - id: "s_0484" - - name: "ceramide-2 (C26)" - - compartment: "er" - - formula: "C44H89NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0484" + - name: "ceramide-2 (C26)" + - compartment: "er" + - formula: "C44H89NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer2_26" - chebi: "CHEBI:52980" - metanetx.chemical: "MNXM63797" - sbo: "SBO:0000247" - - !!omap - - id: "s_0485" - - name: "ceramide-2 (C26)" - - compartment: "g" - - formula: "C44H89NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0485" + - name: "ceramide-2 (C26)" + - compartment: "g" + - formula: "C44H89NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer2_26" - chebi: "CHEBI:52980" - metanetx.chemical: "MNXM63797" - sbo: "SBO:0000247" - - !!omap - - id: "s_0486" - - name: "ceramide-2 (C26)" - - compartment: "m" - - formula: "C44H89NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0486" + - name: "ceramide-2 (C26)" + - compartment: "m" + - formula: "C44H89NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer2_26" - chebi: "CHEBI:52980" - metanetx.chemical: "MNXM63797" - sbo: "SBO:0000247" - - !!omap - - id: "s_0487" - - name: "ceramide-2' (C24)" - - compartment: "er" - - formula: "C42H85NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0487" + - name: "ceramide-2' (C24)" + - compartment: "er" + - formula: "C42H85NO4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52371" - metanetx.chemical: "MNXM63175" - sbo: "SBO:0000247" - - !!omap - - id: "s_0488" - - name: "ceramide-2' (C24)" - - compartment: "g" - - formula: "C42H85NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0488" + - name: "ceramide-2' (C24)" + - compartment: "g" + - formula: "C42H85NO4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52371" - metanetx.chemical: "MNXM63175" - sbo: "SBO:0000247" - - !!omap - - id: "s_0489" - - name: "ceramide-2' (C24)" - - compartment: "m" - - formula: "C42H85NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0489" + - name: "ceramide-2' (C24)" + - compartment: "m" + - formula: "C42H85NO4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52371" - metanetx.chemical: "MNXM63175" - sbo: "SBO:0000247" - - !!omap - - id: "s_0490" - - name: "ceramide-2' (C26)" - - compartment: "er" - - formula: "C44H89NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0490" + - name: "ceramide-2' (C26)" + - compartment: "er" + - formula: "C44H89NO4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52372" - metanetx.chemical: "MNXM63156" - sbo: "SBO:0000247" - - !!omap - - id: "s_0491" - - name: "ceramide-2' (C26)" - - compartment: "g" - - formula: "C44H89NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0491" + - name: "ceramide-2' (C26)" + - compartment: "g" + - formula: "C44H89NO4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52372" - metanetx.chemical: "MNXM63156" - sbo: "SBO:0000247" - - !!omap - - id: "s_0492" - - name: "ceramide-2' (C26)" - - compartment: "m" - - formula: "C44H89NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0492" + - name: "ceramide-2' (C26)" + - compartment: "m" + - formula: "C44H89NO4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52372" - metanetx.chemical: "MNXM63156" - sbo: "SBO:0000247" - - !!omap - - id: "s_0493" - - name: "ceramide-3 (C24)" - - compartment: "er" - - formula: "C42H85NO5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0493" + - name: "ceramide-3 (C24)" + - compartment: "er" + - formula: "C42H85NO5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer3_24" - chebi: "CHEBI:52373" - metanetx.chemical: "MNXM63174" - sbo: "SBO:0000247" - - !!omap - - id: "s_0494" - - name: "ceramide-3 (C24)" - - compartment: "g" - - formula: "C42H85NO5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0494" + - name: "ceramide-3 (C24)" + - compartment: "g" + - formula: "C42H85NO5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer3_24" - chebi: "CHEBI:52373" - metanetx.chemical: "MNXM63174" - sbo: "SBO:0000247" - - !!omap - - id: "s_0495" - - name: "ceramide-3 (C24)" - - compartment: "m" - - formula: "C42H85NO5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0495" + - name: "ceramide-3 (C24)" + - compartment: "m" + - formula: "C42H85NO5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer3_24" - chebi: "CHEBI:52373" - metanetx.chemical: "MNXM63174" - sbo: "SBO:0000247" - - !!omap - - id: "s_0496" - - name: "ceramide-3 (C26)" - - compartment: "er" - - formula: "C44H89NO5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0496" + - name: "ceramide-3 (C26)" + - compartment: "er" + - formula: "C44H89NO5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer3_26" - chebi: "CHEBI:52374" - metanetx.chemical: "MNXM63157" - sbo: "SBO:0000247" - - !!omap - - id: "s_0497" - - name: "ceramide-3 (C26)" - - compartment: "g" - - formula: "C44H89NO5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0497" + - name: "ceramide-3 (C26)" + - compartment: "g" + - formula: "C44H89NO5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer3_26" - chebi: "CHEBI:52374" - metanetx.chemical: "MNXM63157" - sbo: "SBO:0000247" - - !!omap - - id: "s_0498" - - name: "ceramide-3 (C26)" - - compartment: "m" - - formula: "C44H89NO5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0498" + - name: "ceramide-3 (C26)" + - compartment: "m" + - formula: "C44H89NO5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cer3_26" - chebi: "CHEBI:52374" - metanetx.chemical: "MNXM63157" - sbo: "SBO:0000247" - - !!omap - - id: "s_0499" - - name: "ceramide-4 (C24)" - - compartment: "er" - - formula: "C42H85NO6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0499" + - name: "ceramide-4 (C24)" + - compartment: "er" + - formula: "C42H85NO6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60256" - metanetx.chemical: "MNXM31230" - sbo: "SBO:0000247" - - !!omap - - id: "s_0500" - - name: "ceramide-4 (C24)" - - compartment: "g" - - formula: "C42H85NO6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0500" + - name: "ceramide-4 (C24)" + - compartment: "g" + - formula: "C42H85NO6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60256" - metanetx.chemical: "MNXM31230" - sbo: "SBO:0000247" - - !!omap - - id: "s_0501" - - name: "ceramide-4 (C24)" - - compartment: "m" - - formula: "C42H85NO6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0501" + - name: "ceramide-4 (C24)" + - compartment: "m" + - formula: "C42H85NO6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60256" - metanetx.chemical: "MNXM31230" - sbo: "SBO:0000247" - - !!omap - - id: "s_0502" - - name: "ceramide-4 (C26)" - - compartment: "er" - - formula: "C44H89NO6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0502" + - name: "ceramide-4 (C26)" + - compartment: "er" + - formula: "C44H89NO6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60384" - metanetx.chemical: "MNXM63127" - sbo: "SBO:0000247" - - !!omap - - id: "s_0503" - - name: "ceramide-4 (C26)" - - compartment: "g" - - formula: "C44H89NO6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0503" + - name: "ceramide-4 (C26)" + - compartment: "g" + - formula: "C44H89NO6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60384" - metanetx.chemical: "MNXM63127" - sbo: "SBO:0000247" - - !!omap - - id: "s_0504" - - name: "ceramide-4 (C26)" - - compartment: "m" - - formula: "C44H89NO6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0504" + - name: "ceramide-4 (C26)" + - compartment: "m" + - formula: "C44H89NO6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60384" - metanetx.chemical: "MNXM63127" - sbo: "SBO:0000247" - - !!omap - - id: "s_0507" - - name: "cerotic acid" - - compartment: "er" - - formula: "C26H51O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0507" + - name: "cerotic acid" + - compartment: "er" + - formula: "C26H51O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hexc" - chebi: "CHEBI:31013" - metanetx.chemical: "MNXM46158" - sbo: "SBO:0000247" - - !!omap - - id: "s_0509" - - name: "chitin" - - compartment: "c" - - formula: "C8H13NO5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0509" + - name: "chitin" + - compartment: "c" + - formula: "C8H13NO5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "chtn" - chebi: "CHEBI:17029" - kegg.compound: "C00461" - metanetx.chemical: "MNXM1271" - sbo: "SBO:0000247" - - !!omap - - id: "s_0510" - - name: "chitosan" - - compartment: "ce" - - formula: "C6H11NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0510" + - name: "chitosan" + - compartment: "ce" + - formula: "C6H11NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "chitos" - chebi: "CHEBI:16261" - kegg.compound: "C00734" - metanetx.chemical: "MNXM2106" - sbo: "SBO:0000247" - - !!omap - - id: "s_0511" - - name: "choline" - - compartment: "ce" - - formula: "C5H14NO" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0511" + - name: "choline" + - compartment: "ce" + - formula: "C5H14NO" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "chol" - chebi: "CHEBI:15354" - kegg.compound: "C00114" - metanetx.chemical: "MNXM90" - sbo: "SBO:0000247" - - !!omap - - id: "s_0512" - - name: "choline" - - compartment: "c" - - formula: "C5H14NO" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0512" + - name: "choline" + - compartment: "c" + - formula: "C5H14NO" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "chol" - chebi: "CHEBI:15354" - kegg.compound: "C00114" - metanetx.chemical: "MNXM90" - sbo: "SBO:0000247" - - !!omap - - id: "s_0513" - - name: "choline" - - compartment: "e" - - formula: "C5H14NO" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0513" + - name: "choline" + - compartment: "e" + - formula: "C5H14NO" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "chol" - chebi: "CHEBI:15354" - kegg.compound: "C00114" - metanetx.chemical: "MNXM90" - sbo: "SBO:0000247" - - !!omap - - id: "s_0514" - - name: "choline phosphate" - - compartment: "c" - - formula: "C5H13NO4P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0514" + - name: "choline phosphate" + - compartment: "c" + - formula: "C5H13NO4P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "cholp" - chebi: "CHEBI:295975" - kegg.compound: "C00588" - metanetx.chemical: "MNXM229" - sbo: "SBO:0000247" - - !!omap - - id: "s_0515" - - name: "chorismate" - - compartment: "c" - - formula: "C10H8O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0515" + - name: "chorismate" + - compartment: "c" + - formula: "C10H8O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "chor" - chebi: "CHEBI:29748" - kegg.compound: "C00251" - metanetx.chemical: "MNXM337" - sbo: "SBO:0000247" - - !!omap - - id: "s_0516" - - name: "cis-aconitate" - - compartment: "c" - - formula: "C6H3O6" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0516" + - name: "cis-aconitate" + - compartment: "c" + - formula: "C6H3O6" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "acon_C" - chebi: "CHEBI:16383" - kegg.compound: "C00417" - metanetx.chemical: "MNXM813" - sbo: "SBO:0000247" - - !!omap - - id: "s_0517" - - name: "cis-aconitate" - - compartment: "m" - - formula: "C6H3O6" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0517" + - name: "cis-aconitate" + - compartment: "m" + - formula: "C6H3O6" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "acon_C" - chebi: "CHEBI:16383" - kegg.compound: "C00417" - metanetx.chemical: "MNXM813" - sbo: "SBO:0000247" - - !!omap - - id: "s_0522" - - name: "citrate" - - compartment: "c" - - formula: "C6H5O7" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0522" + - name: "citrate" + - compartment: "c" + - formula: "C6H5O7" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "cit" - chebi: "CHEBI:16947" - kegg.compound: "C00158" - metanetx.chemical: "MNXM131" - sbo: "SBO:0000247" - - !!omap - - id: "s_0523" - - name: "citrate" - - compartment: "e" - - formula: "C6H5O7" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0523" + - name: "citrate" + - compartment: "e" + - formula: "C6H5O7" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "cit" - chebi: "CHEBI:16947" - kegg.compound: "C00158" - metanetx.chemical: "MNXM131" - sbo: "SBO:0000247" - - !!omap - - id: "s_0524" - - name: "citrate" - - compartment: "m" - - formula: "C6H5O7" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0524" + - name: "citrate" + - compartment: "m" + - formula: "C6H5O7" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "cit" - chebi: "CHEBI:16947" - kegg.compound: "C00158" - metanetx.chemical: "MNXM131" - sbo: "SBO:0000247" - - !!omap - - id: "s_0525" - - name: "citrate" - - compartment: "p" - - formula: "C6H5O7" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0525" + - name: "citrate" + - compartment: "p" + - formula: "C6H5O7" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "cit" - chebi: "CHEBI:16947" - kegg.compound: "C00158" - metanetx.chemical: "MNXM131" - sbo: "SBO:0000247" - - !!omap - - id: "s_0526" - - name: "CMP" - - compartment: "c" - - formula: "C9H12N3O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0526" + - name: "CMP" + - compartment: "c" + - formula: "C9H12N3O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "cmp" - chebi: "CHEBI:60377" - kegg.compound: "C00055" - metanetx.chemical: "MNXM31" - sbo: "SBO:0000247" - - !!omap - - id: "s_0528" - - name: "CMP" - - compartment: "m" - - formula: "C9H12N3O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0528" + - name: "CMP" + - compartment: "m" + - formula: "C9H12N3O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "cmp" - chebi: "CHEBI:60377" - kegg.compound: "C00055" - metanetx.chemical: "MNXM31" - sbo: "SBO:0000247" - - !!omap - - id: "s_0529" - - name: "coenzyme A" - - compartment: "c" - - formula: "C21H32N7O16P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0529" + - name: "coenzyme A" + - compartment: "c" + - formula: "C21H32N7O16P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "coa" - chebi: "CHEBI:57287" - kegg.compound: "C00010" - metanetx.chemical: "MNXM12" - sbo: "SBO:0000247" - - !!omap - - id: "s_0530" - - name: "coenzyme A" - - compartment: "er" - - formula: "C21H32N7O16P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0530" + - name: "coenzyme A" + - compartment: "er" + - formula: "C21H32N7O16P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "coa" - chebi: "CHEBI:57287" - kegg.compound: "C00010" - metanetx.chemical: "MNXM12" - sbo: "SBO:0000247" - - !!omap - - id: "s_0531" - - name: "coenzyme A" - - compartment: "lp" - - formula: "C21H32N7O16P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0531" + - name: "coenzyme A" + - compartment: "lp" + - formula: "C21H32N7O16P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "coa" - chebi: "CHEBI:57287" - kegg.compound: "C00010" - metanetx.chemical: "MNXM12" - sbo: "SBO:0000247" - - !!omap - - id: "s_0532" - - name: "coenzyme A" - - compartment: "m" - - formula: "C21H32N7O16P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0532" + - name: "coenzyme A" + - compartment: "m" + - formula: "C21H32N7O16P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "coa" - chebi: "CHEBI:57287" - kegg.compound: "C00010" - metanetx.chemical: "MNXM12" - sbo: "SBO:0000247" - - !!omap - - id: "s_0533" - - name: "coenzyme A" - - compartment: "n" - - formula: "C21H32N7O16P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0533" + - name: "coenzyme A" + - compartment: "n" + - formula: "C21H32N7O16P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "coa" - chebi: "CHEBI:57287" - kegg.compound: "C00010" - metanetx.chemical: "MNXM12" - sbo: "SBO:0000247" - - !!omap - - id: "s_0534" - - name: "coenzyme A" - - compartment: "p" - - formula: "C21H32N7O16P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0534" + - name: "coenzyme A" + - compartment: "p" + - formula: "C21H32N7O16P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "coa" - chebi: "CHEBI:57287" - kegg.compound: "C00010" - metanetx.chemical: "MNXM12" - sbo: "SBO:0000247" - - !!omap - - id: "s_0538" - - name: "coproporphyrinogen III" - - compartment: "c" - - formula: "C36H40N4O8" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0538" + - name: "coproporphyrinogen III" + - compartment: "c" + - formula: "C36H40N4O8" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "cpppg3" - chebi: "CHEBI:57309" - kegg.compound: "C03263" - metanetx.chemical: "MNXM410" - sbo: "SBO:0000247" - - !!omap - - id: "s_0539" - - name: "CTP" - - compartment: "c" - - formula: "C9H12N3O14P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0539" + - name: "CTP" + - compartment: "c" + - formula: "C9H12N3O14P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ctp" - chebi: "CHEBI:37563" - kegg.compound: "C00063" - metanetx.chemical: "MNXM63" - sbo: "SBO:0000247" - - !!omap - - id: "s_0541" - - name: "CTP" - - compartment: "m" - - formula: "C9H12N3O14P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0541" + - name: "CTP" + - compartment: "m" + - formula: "C9H12N3O14P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ctp" - chebi: "CHEBI:37563" - kegg.compound: "C00063" - metanetx.chemical: "MNXM63" - sbo: "SBO:0000247" - - !!omap - - id: "s_0542" - - name: "Cys-tRNA(Cys)" - - compartment: "c" - - formula: "C3H7NOSR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0542" + - name: "Cys-tRNA(Cys)" + - compartment: "c" + - formula: "C3H7NOSR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "cystrna" - chebi: "CHEBI:29152" - kegg.compound: "C03125" - metanetx.chemical: "MNXM155005" - sbo: "SBO:0000247" - - !!omap - - id: "s_0543" - - name: "cytidine" - - compartment: "c" - - formula: "C9H13N3O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0543" + - name: "cytidine" + - compartment: "c" + - formula: "C9H13N3O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cytd" - chebi: "CHEBI:17562" - kegg.compound: "C00475" - metanetx.chemical: "MNXM338" - sbo: "SBO:0000247" - - !!omap - - id: "s_0544" - - name: "cytidine" - - compartment: "e" - - formula: "C9H13N3O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0544" + - name: "cytidine" + - compartment: "e" + - formula: "C9H13N3O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cytd" - chebi: "CHEBI:17562" - kegg.compound: "C00475" - metanetx.chemical: "MNXM338" - sbo: "SBO:0000247" - - !!omap - - id: "s_0545" - - name: "cytosine" - - compartment: "c" - - formula: "C4H5N3O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0545" + - name: "cytosine" + - compartment: "c" + - formula: "C4H5N3O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "csn" - chebi: "CHEBI:16040" - kegg.compound: "C00380" - metanetx.chemical: "MNXM761" - sbo: "SBO:0000247" - - !!omap - - id: "s_0546" - - name: "cytosine" - - compartment: "e" - - formula: "C4H5N3O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0546" + - name: "cytosine" + - compartment: "e" + - formula: "C4H5N3O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "csn" - chebi: "CHEBI:16040" - kegg.compound: "C00380" - metanetx.chemical: "MNXM761" - sbo: "SBO:0000247" - - !!omap - - id: "s_0547" - - name: "D-arabinono-1,4-lactone" - - compartment: "c" - - formula: "C5H8O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0547" + - name: "D-arabinono-1,4-lactone" + - compartment: "c" + - formula: "C5H8O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "Dara14lac" - chebi: "CHEBI:16292" - kegg.compound: "C00652" - metanetx.chemical: "MNXM778" - sbo: "SBO:0000247" - - !!omap - - id: "s_0548" - - name: "D-arabinose" - - compartment: "c" - - formula: "C5H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0548" + - name: "D-arabinose" + - compartment: "c" + - formula: "C5H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "arab__D" - chebi: "CHEBI:17108" - kegg.compound: "C00216" - metanetx.chemical: "MNXM40571" - sbo: "SBO:0000247" - - !!omap - - id: "s_0549" - - name: "D-arabinose" - - compartment: "e" - - formula: "C5H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0549" + - name: "D-arabinose" + - compartment: "e" + - formula: "C5H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "arab__D" - chebi: "CHEBI:17108" - kegg.compound: "C00216" - metanetx.chemical: "MNXM40571" - sbo: "SBO:0000247" - - !!omap - - id: "s_0550" - - name: "D-erythro-1-(imidazol-4-yl)glycerol 3-phosphate" - - compartment: "c" - - formula: "C6H9N2O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0550" + - name: "D-erythro-1-(imidazol-4-yl)glycerol 3-phosphate" + - compartment: "c" + - formula: "C6H9N2O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "eig3p" - chebi: "CHEBI:58278" - kegg.compound: "C04666" - metanetx.chemical: "MNXM1422" - sbo: "SBO:0000247" - - !!omap - - id: "s_0551" - - name: "D-erythrose 4-phosphate" - - compartment: "c" - - formula: "C4H7O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0551" + - name: "D-erythrose 4-phosphate" + - compartment: "c" + - formula: "C4H7O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "e4p" - chebi: "CHEBI:16897" - kegg.compound: "C00279" - metanetx.chemical: "MNXM258" - sbo: "SBO:0000247" - - !!omap - - id: "s_0552" - - name: "D-erythrose 4-phosphate" - - compartment: "m" - - formula: "C4H7O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0552" + - name: "D-erythrose 4-phosphate" + - compartment: "m" + - formula: "C4H7O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "e4p" - chebi: "CHEBI:16897" - kegg.compound: "C00279" - metanetx.chemical: "MNXM258" - sbo: "SBO:0000247" - - !!omap - - id: "s_0553" - - name: "D-fructose" - - compartment: "c" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0553" + - name: "D-fructose" + - compartment: "c" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "fru" - chebi: "CHEBI:15824" - kegg.compound: "C00095" - metanetx.chemical: "MNXM175" - sbo: "SBO:0000247" - - !!omap - - id: "s_0554" - - name: "D-fructose" - - compartment: "e" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0554" + - name: "D-fructose" + - compartment: "e" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "fru" - chebi: "CHEBI:15824" - kegg.compound: "C00095" - metanetx.chemical: "MNXM175" - sbo: "SBO:0000247" - - !!omap - - id: "s_0555" - - name: "D-fructose 1,6-bisphosphate" - - compartment: "c" - - formula: "C6H10O12P2" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0555" + - name: "D-fructose 1,6-bisphosphate" + - compartment: "c" + - formula: "C6H10O12P2" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "fdp" - chebi: "CHEBI:16905" - kegg.compound: "C00354" - metanetx.chemical: "MNXM417" - sbo: "SBO:0000247" - - !!omap - - id: "s_0556" - - name: "D-fructose 1-phosphate" - - compartment: "c" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0556" + - name: "D-fructose 1-phosphate" + - compartment: "c" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "f1p" - chebi: "CHEBI:18105" - kegg.compound: "C01094" - metanetx.chemical: "MNXM145568" - sbo: "SBO:0000247" - - !!omap - - id: "s_0557" - - name: "D-fructose 6-phosphate" - - compartment: "c" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0557" + - name: "D-fructose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "f6p" - chebi: "CHEBI:57579" - kegg.compound: "C00085" - metanetx.chemical: "MNXM162235" - sbo: "SBO:0000247" - - !!omap - - id: "s_0558" - - name: "D-galactose" - - compartment: "c" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0558" + - name: "D-galactose" + - compartment: "c" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gal" - chebi: "CHEBI:12936" - kegg.compound: "C00124" - metanetx.chemical: "MNXM390" - sbo: "SBO:0000247" - - !!omap - - id: "s_0559" - - name: "D-galactose" - - compartment: "e" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0559" + - name: "D-galactose" + - compartment: "e" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gal" - chebi: "CHEBI:12936" - kegg.compound: "C00124" - metanetx.chemical: "MNXM390" - sbo: "SBO:0000247" - - !!omap - - id: "s_0560" - - name: "D-galacturonate" - - compartment: "e" - - formula: "C6H9O7" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0560" + - name: "D-galacturonate" + - compartment: "e" + - formula: "C6H9O7" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "galur" - chebi: "CHEBI:12952" - kegg.compound: "C00333" - metanetx.chemical: "MNXM693" - sbo: "SBO:0000247" - - !!omap - - id: "s_0561" - - name: "D-glucitol" - - compartment: "c" - - formula: "C6H14O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0561" + - name: "D-glucitol" + - compartment: "c" + - formula: "C6H14O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "sbt__D" - chebi: "CHEBI:17924" - kegg.compound: "C00794" - metanetx.chemical: "MNXM469" - sbo: "SBO:0000247" - - !!omap - - id: "s_0562" - - name: "D-glucitol" - - compartment: "e" - - formula: "C6H14O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0562" + - name: "D-glucitol" + - compartment: "e" + - formula: "C6H14O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "sbt__D" - chebi: "CHEBI:17924" - kegg.compound: "C00794" - metanetx.chemical: "MNXM469" - sbo: "SBO:0000247" - - !!omap - - id: "s_0563" - - name: "D-glucose" - - compartment: "c" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0563" + - name: "D-glucose" + - compartment: "c" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glc__D" - chebi: "CHEBI:4167" - kegg.compound: "C00031" - metanetx.chemical: "MNXM41" - sbo: "SBO:0000247" - - !!omap - - id: "s_0565" - - name: "D-glucose" - - compartment: "e" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0565" + - name: "D-glucose" + - compartment: "e" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glc__D" - chebi: "CHEBI:4167" - kegg.compound: "C00031" - metanetx.chemical: "MNXM41" - sbo: "SBO:0000247" - - !!omap - - id: "s_0566" - - name: "D-glucose" - - compartment: "v" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0566" + - name: "D-glucose" + - compartment: "v" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glc__D" - chebi: "CHEBI:4167" - kegg.compound: "C00031" - metanetx.chemical: "MNXM41" - sbo: "SBO:0000247" - - !!omap - - id: "s_0567" - - name: "D-glucose 1-phosphate" - - compartment: "c" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0567" + - name: "D-glucose 1-phosphate" + - compartment: "c" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "g1p" - chebi: "CHEBI:57629" - kegg.compound: "C00103" - metanetx.chemical: "MNXM89588" - sbo: "SBO:0000247" - - !!omap - - id: "s_0568" - - name: "D-glucose 6-phosphate" - - compartment: "c" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0568" + - name: "D-glucose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "g6p" - chebi: "CHEBI:14314" - kegg.compound: "C00092" - metanetx.chemical: "MNXM160" - sbo: "SBO:0000247" - - !!omap - - id: "s_0570" - - name: "D-glyceraldehyde" - - compartment: "c" - - formula: "C3H6O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0570" + - name: "D-glyceraldehyde" + - compartment: "c" + - formula: "C3H6O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glyald" - chebi: "CHEBI:17378" - kegg.compound: "C00577" - metanetx.chemical: "MNXM435" - sbo: "SBO:0000247" - - !!omap - - id: "s_0571" - - name: "D-mannose" - - compartment: "c" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0571" + - name: "D-mannose" + - compartment: "c" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "man" - chebi: "CHEBI:16024" - kegg.compound: "C00159" - metanetx.chemical: "MNXM182" - sbo: "SBO:0000247" - - !!omap - - id: "s_0572" - - name: "D-mannose" - - compartment: "e" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0572" + - name: "D-mannose" + - compartment: "e" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "man" - chebi: "CHEBI:16024" - kegg.compound: "C00159" - metanetx.chemical: "MNXM182" - sbo: "SBO:0000247" - - !!omap - - id: "s_0573" - - name: "D-mannose 1-phosphate" - - compartment: "c" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0573" + - name: "D-mannose 1-phosphate" + - compartment: "c" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "man1p" - chebi: "CHEBI:35374" - kegg.compound: "C00636" - metanetx.chemical: "MNXM721" - sbo: "SBO:0000247" - - !!omap - - id: "s_0574" - - name: "D-mannose 6-phosphate" - - compartment: "c" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0574" + - name: "D-mannose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "man6p" - chebi: "CHEBI:17369" - kegg.compound: "C00275" - metanetx.chemical: "MNXM427" - sbo: "SBO:0000247" - - !!omap - - id: "s_0575" - - name: "D-ribose" - - compartment: "c" - - formula: "C5H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0575" + - name: "D-ribose" + - compartment: "c" + - formula: "C5H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "rib__D" - chebi: "CHEBI:16988" - kegg.compound: "C00121" - metanetx.chemical: "MNXM242" - sbo: "SBO:0000247" - - !!omap - - id: "s_0576" - - name: "D-ribose" - - compartment: "e" - - formula: "C5H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0576" + - name: "D-ribose" + - compartment: "e" + - formula: "C5H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "rib__D" - chebi: "CHEBI:16988" - kegg.compound: "C00121" - metanetx.chemical: "MNXM242" - sbo: "SBO:0000247" - - !!omap - - id: "s_0577" - - name: "D-ribulose 5-phosphate" - - compartment: "c" - - formula: "C5H9O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0577" + - name: "D-ribulose 5-phosphate" + - compartment: "c" + - formula: "C5H9O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "ru5p__D" - chebi: "CHEBI:58121" - kegg.compound: "C00199" - metanetx.chemical: "MNXM145" - sbo: "SBO:0000247" - - !!omap - - id: "s_0578" - - name: "D-xylose" - - compartment: "c" - - formula: "C5H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0578" + - name: "D-xylose" + - compartment: "c" + - formula: "C5H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "xyl__D" - chebi: "CHEBI:15936" - kegg.compound: "C00181" - metanetx.chemical: "MNXM90941" - sbo: "SBO:0000247" - - !!omap - - id: "s_0579" - - name: "D-xylose" - - compartment: "e" - - formula: "C5H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0579" + - name: "D-xylose" + - compartment: "e" + - formula: "C5H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "xyl__D" - chebi: "CHEBI:15936" - kegg.compound: "C00181" - metanetx.chemical: "MNXM90941" - sbo: "SBO:0000247" - - !!omap - - id: "s_0580" - - name: "D-xylulose" - - compartment: "c" - - formula: "C5H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0580" + - name: "D-xylulose" + - compartment: "c" + - formula: "C5H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "xylu__D" - chebi: "CHEBI:17140" - kegg.compound: "C00310" - metanetx.chemical: "MNXM597" - sbo: "SBO:0000247" - - !!omap - - id: "s_0581" - - name: "D-xylulose 5-phosphate" - - compartment: "c" - - formula: "C5H9O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0581" + - name: "D-xylulose 5-phosphate" + - compartment: "c" + - formula: "C5H9O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "xu5p__D" - chebi: "CHEBI:57737" - kegg.compound: "C00231" - metanetx.chemical: "MNXM186" - sbo: "SBO:0000247" - - !!omap - - id: "s_0582" - - name: "dADP" - - compartment: "c" - - formula: "C10H12N5O9P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0582" + - name: "dADP" + - compartment: "c" + - formula: "C10H12N5O9P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "dadp" - chebi: "CHEBI:57667" - kegg.compound: "C00206" - metanetx.chemical: "MNXM374" - sbo: "SBO:0000247" - - !!omap - - id: "s_0583" - - name: "dADP" - - compartment: "n" - - formula: "C10H12N5O9P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0583" + - name: "dADP" + - compartment: "n" + - formula: "C10H12N5O9P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "dadp" - chebi: "CHEBI:57667" - kegg.compound: "C00206" - metanetx.chemical: "MNXM374" - sbo: "SBO:0000247" - - !!omap - - id: "s_0584" - - name: "dAMP" - - compartment: "c" - - formula: "C10H12N5O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0584" + - name: "dAMP" + - compartment: "c" + - formula: "C10H12N5O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "damp" - chebi: "CHEBI:58245" - kegg.compound: "C00360" - metanetx.chemical: "MNXM432" - sbo: "SBO:0000247" - - !!omap - - id: "s_0585" - - name: "dAMP" - - compartment: "m" - - formula: "C10H12N5O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0585" + - name: "dAMP" + - compartment: "m" + - formula: "C10H12N5O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "damp" - chebi: "CHEBI:58245" - kegg.compound: "C00360" - metanetx.chemical: "MNXM432" - sbo: "SBO:0000247" - - !!omap - - id: "s_0586" - - name: "dATP" - - compartment: "c" - - formula: "C10H12N5O12P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0586" + - name: "dATP" + - compartment: "c" + - formula: "C10H12N5O12P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "datp" - chebi: "CHEBI:61404" - kegg.compound: "C00131" - metanetx.chemical: "MNXM286" - sbo: "SBO:0000247" - - !!omap - - id: "s_0587" - - name: "dCDP" - - compartment: "c" - - formula: "C9H12N3O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0587" + - name: "dCDP" + - compartment: "c" + - formula: "C9H12N3O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "dcdp" - chebi: "CHEBI:58593" - kegg.compound: "C00705" - metanetx.chemical: "MNXM411" - sbo: "SBO:0000247" - - !!omap - - id: "s_0588" - - name: "dCDP" - - compartment: "n" - - formula: "C9H12N3O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0588" + - name: "dCDP" + - compartment: "n" + - formula: "C9H12N3O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "dcdp" - chebi: "CHEBI:58593" - kegg.compound: "C00705" - metanetx.chemical: "MNXM411" - sbo: "SBO:0000247" - - !!omap - - id: "s_0589" - - name: "dCMP" - - compartment: "c" - - formula: "C9H12N3O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0589" + - name: "dCMP" + - compartment: "c" + - formula: "C9H12N3O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dcmp" - chebi: "CHEBI:57566" - kegg.compound: "C00239" - metanetx.chemical: "MNXM266" - sbo: "SBO:0000247" - - !!omap - - id: "s_0590" - - name: "dCTP" - - compartment: "c" - - formula: "C9H12N3O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0590" + - name: "dCTP" + - compartment: "c" + - formula: "C9H12N3O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "dctp" - chebi: "CHEBI:57724" - kegg.compound: "C00458" - metanetx.chemical: "MNXM360" - sbo: "SBO:0000247" - - !!omap - - id: "s_0591" - - name: "deamido-NAD(+)" - - compartment: "c" - - formula: "C21H24N6O15P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0591" + - name: "deamido-NAD(+)" + - compartment: "c" + - formula: "C21H24N6O15P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dnad" - chebi: "CHEBI:18304" - kegg.compound: "C00857" - metanetx.chemical: "MNXM309" - sbo: "SBO:0000247" - - !!omap - - id: "s_0593" - - name: "deamido-NAD(+)" - - compartment: "n" - - formula: "C21H24N6O15P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0593" + - name: "deamido-NAD(+)" + - compartment: "n" + - formula: "C21H24N6O15P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dnad" - chebi: "CHEBI:18304" - kegg.compound: "C00857" - metanetx.chemical: "MNXM309" - sbo: "SBO:0000247" - - !!omap - - id: "s_0595" - - name: "decanoate" - - compartment: "c" - - formula: "C10H19O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0595" + - name: "decanoate" + - compartment: "c" + - formula: "C10H19O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "dca" - chebi: "CHEBI:27689" - kegg.compound: "C01571" - metanetx.chemical: "MNXM1043" - sbo: "SBO:0000247" - - !!omap - - id: "s_0597" - - name: "decanoate" - - compartment: "e" - - formula: "C10H19O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0597" + - name: "decanoate" + - compartment: "e" + - formula: "C10H19O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "dca" - chebi: "CHEBI:27689" - kegg.compound: "C01571" - metanetx.chemical: "MNXM1043" - sbo: "SBO:0000247" - - !!omap - - id: "s_0600" - - name: "decanoate" - - compartment: "p" - - formula: "C10H19O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0600" + - name: "decanoate" + - compartment: "p" + - formula: "C10H19O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "dca" - chebi: "CHEBI:27689" - kegg.compound: "C01571" - metanetx.chemical: "MNXM1043" - sbo: "SBO:0000247" - - !!omap - - id: "s_0605" - - name: "decanoyl-CoA" - - compartment: "p" - - formula: "C31H50N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0605" + - name: "decanoyl-CoA" + - compartment: "p" + - formula: "C31H50N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "dccoa" - chebi: "CHEBI:61430" - kegg.compound: "C05274" - metanetx.chemical: "MNXM486" - sbo: "SBO:0000247" - - !!omap - - id: "s_0606" - - name: "decaprenyl diphosphate" - - compartment: "lp" - - formula: "C50H81O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0606" + - name: "decaprenyl diphosphate" + - compartment: "lp" + - formula: "C50H81O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "decdp" - chebi: "CHEBI:53043" - kegg.compound: "C17432" - metanetx.chemical: "MNXM1721" - sbo: "SBO:0000247" - - !!omap - - id: "s_0607" - - name: "dehydro-D-arabinono-1,4-lactone" - - compartment: "c" - - formula: "C5H5O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0607" + - name: "dehydro-D-arabinono-1,4-lactone" + - compartment: "c" + - formula: "C5H5O5" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:58277" - kegg.compound: "C06316" - metanetx.chemical: "MNXM3254" - sbo: "SBO:0000247" - - !!omap - - id: "s_0608" - - name: "Delta(6)-trans,Delta(8)-cis-leukotriene B4" - - compartment: "c" - - formula: "C20H31O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0608" + - name: "Delta(6)-trans,Delta(8)-cis-leukotriene B4" + - compartment: "c" + - formula: "C20H31O4" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:53027" - metanetx.chemical: "MNXM507621" - sbo: "SBO:0000247" - - !!omap - - id: "s_0609" - - name: "Delta(6)-trans,Delta(8)-cis-leukotriene B4" - - compartment: "n" - - formula: "C20H31O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0609" + - name: "Delta(6)-trans,Delta(8)-cis-leukotriene B4" + - compartment: "n" + - formula: "C20H31O4" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:53027" - metanetx.chemical: "MNXM507621" - sbo: "SBO:0000247" - - !!omap - - id: "s_0610" - - name: "deoxycytidine" - - compartment: "c" - - formula: "C9H13N3O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0610" + - name: "deoxycytidine" + - compartment: "c" + - formula: "C9H13N3O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dcyt" - chebi: "CHEBI:15698" - kegg.compound: "C00881" - metanetx.chemical: "MNXM704" - sbo: "SBO:0000247" - - !!omap - - id: "s_0611" - - name: "deoxycytidine" - - compartment: "e" - - formula: "C9H13N3O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0611" + - name: "deoxycytidine" + - compartment: "e" + - formula: "C9H13N3O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dcyt" - chebi: "CHEBI:15698" - kegg.compound: "C00881" - metanetx.chemical: "MNXM704" - sbo: "SBO:0000247" - - !!omap - - id: "s_0612" - - name: "dethiobiotin" - - compartment: "c" - - formula: "C10H17N2O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0612" + - name: "dethiobiotin" + - compartment: "c" + - formula: "C10H17N2O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "dtbt" - chebi: "CHEBI:57861" - kegg.compound: "C01909" - metanetx.chemical: "MNXM1020" - sbo: "SBO:0000247" - - !!omap - - id: "s_0613" - - name: "dGDP" - - compartment: "c" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0613" + - name: "dGDP" + - compartment: "c" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "dgdp" - chebi: "CHEBI:58595" - kegg.compound: "C00361" - metanetx.chemical: "MNXM436" - sbo: "SBO:0000247" - - !!omap - - id: "s_0614" - - name: "dGDP" - - compartment: "n" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0614" + - name: "dGDP" + - compartment: "n" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "dgdp" - chebi: "CHEBI:58595" - kegg.compound: "C00361" - metanetx.chemical: "MNXM436" - sbo: "SBO:0000247" - - !!omap - - id: "s_0615" - - name: "dGMP" - - compartment: "c" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0615" + - name: "dGMP" + - compartment: "c" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dgmp" - chebi: "CHEBI:57673" - kegg.compound: "C00362" - metanetx.chemical: "MNXM546" - sbo: "SBO:0000247" - - !!omap - - id: "s_0616" - - name: "dGMP" - - compartment: "m" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0616" + - name: "dGMP" + - compartment: "m" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dgmp" - chebi: "CHEBI:57673" - kegg.compound: "C00362" - metanetx.chemical: "MNXM546" - sbo: "SBO:0000247" - - !!omap - - id: "s_0617" - - name: "dGTP" - - compartment: "c" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0617" + - name: "dGTP" + - compartment: "c" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "dgtp" - chebi: "CHEBI:57794" - kegg.compound: "C00286" - metanetx.chemical: "MNXM344" - sbo: "SBO:0000247" - - !!omap - - id: "s_0618" - - name: "dIDP" - - compartment: "c" - - formula: "C10H11N4O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0618" + - name: "dIDP" + - compartment: "c" + - formula: "C10H11N4O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "didp" - chebi: "CHEBI:28823" - kegg.compound: "C01344" - metanetx.chemical: "MNXM2174" - sbo: "SBO:0000247" - - !!omap - - id: "s_0620" - - name: "diglyceride backbone" - - compartment: "er" - - formula: "C3H4O" - - annotation: !!omap + - !!omap + - id: "s_0620" + - name: "diglyceride backbone" + - compartment: "er" + - formula: "C3H4O" + - annotation: !!omap - bigg.metabolite: "dag_hs" - chebi: "CHEBI:18035" - kegg.compound: "C00165" - metanetx.chemical: "MNXM59" - sbo: "SBO:0000649" - - !!omap - - id: "s_0625" - - name: "dihydrofolic acid" - - compartment: "c" - - formula: "C19H19N7O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0625" + - name: "dihydrofolic acid" + - compartment: "c" + - formula: "C19H19N7O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dhf" - chebi: "CHEBI:57451" - kegg.compound: "C00415" - metanetx.chemical: "MNXM281" - sbo: "SBO:0000247" - - !!omap - - id: "s_0626" - - name: "dihydrofolic acid" - - compartment: "m" - - formula: "C19H19N7O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0626" + - name: "dihydrofolic acid" + - compartment: "m" + - formula: "C19H19N7O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dhf" - chebi: "CHEBI:57451" - kegg.compound: "C00415" - metanetx.chemical: "MNXM281" - sbo: "SBO:0000247" - - !!omap - - id: "s_0627" - - name: "dihydrolipoamide" - - compartment: "m" - - formula: "C8H17NOS2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0627" + - name: "dihydrolipoamide" + - compartment: "m" + - formula: "C8H17NOS2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dhlam" - chebi: "CHEBI:17694" - kegg.compound: "C00579" - metanetx.chemical: "MNXM1277" - sbo: "SBO:0000247" - - !!omap - - id: "s_0628" - - name: "dihydrolipoylprotein" - - compartment: "m" - - formula: "C8H16NOS2R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0628" + - name: "dihydrolipoylprotein" + - compartment: "m" + - formula: "C8H16NOS2R" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dhlpro" - chebi: "CHEBI:16194" - kegg.compound: "C02972" - metanetx.chemical: "MNXM1663" - sbo: "SBO:0000247" - - !!omap - - id: "s_0629" - - name: "dihydroxyacetone phosphate" - - compartment: "c" - - formula: "C3H5O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0629" + - name: "dihydroxyacetone phosphate" + - compartment: "c" + - formula: "C3H5O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dhap" - chebi: "CHEBI:57642" - kegg.compound: "C00111" - metanetx.chemical: "MNXM77" - sbo: "SBO:0000247" - - !!omap - - id: "s_0631" - - name: "dihydroxyacetone phosphate" - - compartment: "lp" - - formula: "C3H5O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0631" + - name: "dihydroxyacetone phosphate" + - compartment: "lp" + - formula: "C3H5O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dhap" - chebi: "CHEBI:57642" - kegg.compound: "C00111" - metanetx.chemical: "MNXM77" - sbo: "SBO:0000247" - - !!omap - - id: "s_0632" - - name: "dihydroxyacetone phosphate" - - compartment: "m" - - formula: "C3H5O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0632" + - name: "dihydroxyacetone phosphate" + - compartment: "m" + - formula: "C3H5O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dhap" - chebi: "CHEBI:57642" - kegg.compound: "C00111" - metanetx.chemical: "MNXM77" - sbo: "SBO:0000247" - - !!omap - - id: "s_0633" - - name: "diphosphate" - - compartment: "c" - - formula: "HO7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0633" + - name: "diphosphate" + - compartment: "c" + - formula: "HO7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ppi" - chebi: "CHEBI:33019" - kegg.compound: "C00013" - metanetx.chemical: "MNXM11" - sbo: "SBO:0000247" - - !!omap - - id: "s_0635" - - name: "diphosphate" - - compartment: "lp" - - formula: "HO7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0635" + - name: "diphosphate" + - compartment: "lp" + - formula: "HO7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ppi" - chebi: "CHEBI:33019" - kegg.compound: "C00013" - metanetx.chemical: "MNXM11" - sbo: "SBO:0000247" - - !!omap - - id: "s_0636" - - name: "diphosphate" - - compartment: "m" - - formula: "HO7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0636" + - name: "diphosphate" + - compartment: "m" + - formula: "HO7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ppi" - chebi: "CHEBI:33019" - kegg.compound: "C00013" - metanetx.chemical: "MNXM11" - sbo: "SBO:0000247" - - !!omap - - id: "s_0637" - - name: "diphosphate" - - compartment: "n" - - formula: "HO7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0637" + - name: "diphosphate" + - compartment: "n" + - formula: "HO7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ppi" - chebi: "CHEBI:33019" - kegg.compound: "C00013" - metanetx.chemical: "MNXM11" - sbo: "SBO:0000247" - - !!omap - - id: "s_0638" - - name: "diphosphate" - - compartment: "p" - - formula: "HO7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0638" + - name: "diphosphate" + - compartment: "p" + - formula: "HO7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ppi" - chebi: "CHEBI:33019" - kegg.compound: "C00013" - metanetx.chemical: "MNXM11" - sbo: "SBO:0000247" - - !!omap - - id: "s_0639" - - name: "dITP" - - compartment: "c" - - formula: "C10H11N4O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0639" + - name: "dITP" + - compartment: "c" + - formula: "C10H11N4O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ditp" - chebi: "CHEBI:61382" - kegg.compound: "C01345" - metanetx.chemical: "MNXM1325" - sbo: "SBO:0000247" - - !!omap - - id: "s_0640" - - name: "docosaprenyl diphosphate" - - compartment: "lp" - - formula: "C110H177O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0640" + - name: "docosaprenyl diphosphate" + - compartment: "lp" + - formula: "C110H177O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53031" - metanetx.chemical: "MNXM51449" - sbo: "SBO:0000247" - - !!omap - - id: "s_0641" - - name: "dodecaprenyl diphosphate" - - compartment: "lp" - - formula: "C60H97O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0641" + - name: "dodecaprenyl diphosphate" + - compartment: "lp" + - formula: "C60H97O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53041" - kegg.compound: "C05847" - metanetx.chemical: "MNXM11433" - sbo: "SBO:0000247" - - !!omap - - id: "s_0642" - - name: "dolichol" - - compartment: "c" - - formula: "C20H36O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0642" + - name: "dolichol" + - compartment: "c" + - formula: "C20H36O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dolichol" - chebi: "CHEBI:16091" - kegg.compound: "C00381" - metanetx.chemical: "MNXM797" - sbo: "SBO:0000247" - - !!omap - - id: "s_0644" - - name: "dolichyl D-mannosyl phosphate" - - compartment: "er" - - formula: "C26H47O9P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0644" + - name: "dolichyl D-mannosyl phosphate" + - compartment: "er" + - formula: "C26H47O9P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dolmanp" - chebi: "CHEBI:15809" - kegg.compound: "C03862" - metanetx.chemical: "MNXM296" - sbo: "SBO:0000247" - - !!omap - - id: "s_0645" - - name: "dolichyl phosphate" - - compartment: "c" - - formula: "C20H37O4P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0645" + - name: "dolichyl phosphate" + - compartment: "c" + - formula: "C20H37O4P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dolp" - chebi: "CHEBI:16214" - kegg.compound: "C00110" - metanetx.chemical: "MNXM278" - sbo: "SBO:0000247" - - !!omap - - id: "s_0646" - - name: "dolichyl phosphate" - - compartment: "er" - - formula: "C20H37O4P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0646" + - name: "dolichyl phosphate" + - compartment: "er" + - formula: "C20H37O4P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dolp" - chebi: "CHEBI:16214" - kegg.compound: "C00110" - metanetx.chemical: "MNXM278" - sbo: "SBO:0000247" - - !!omap - - id: "s_0647" - - name: "dTDP" - - compartment: "c" - - formula: "C10H13N2O11P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0647" + - name: "dTDP" + - compartment: "c" + - formula: "C10H13N2O11P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "dtdp" - chebi: "CHEBI:58369" - kegg.compound: "C00363" - metanetx.chemical: "MNXM152" - sbo: "SBO:0000247" - - !!omap - - id: "s_0649" - - name: "dTMP" - - compartment: "c" - - formula: "C10H13N2O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0649" + - name: "dTMP" + - compartment: "c" + - formula: "C10H13N2O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dtmp" - chebi: "CHEBI:17013" - kegg.compound: "C00364" - metanetx.chemical: "MNXM257" - sbo: "SBO:0000247" - - !!omap - - id: "s_0650" - - name: "dTTP" - - compartment: "c" - - formula: "C10H13N2O14P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0650" + - name: "dTTP" + - compartment: "c" + - formula: "C10H13N2O14P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "dttp" - chebi: "CHEBI:58370" - kegg.compound: "C00459" - metanetx.chemical: "MNXM394" - sbo: "SBO:0000247" - - !!omap - - id: "s_0651" - - name: "dTTP" - - compartment: "e" - - formula: "C10H13N2O14P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0651" + - name: "dTTP" + - compartment: "e" + - formula: "C10H13N2O14P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "dttp" - chebi: "CHEBI:58370" - kegg.compound: "C00459" - metanetx.chemical: "MNXM394" - sbo: "SBO:0000247" - - !!omap - - id: "s_0652" - - name: "dUDP" - - compartment: "c" - - formula: "C9H11N2O11P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0652" + - name: "dUDP" + - compartment: "c" + - formula: "C9H11N2O11P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "dudp" - chebi: "CHEBI:60471" - kegg.compound: "C01346" - metanetx.chemical: "MNXM572" - sbo: "SBO:0000247" - - !!omap - - id: "s_0653" - - name: "dUDP" - - compartment: "n" - - formula: "C9H11N2O11P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0653" + - name: "dUDP" + - compartment: "n" + - formula: "C9H11N2O11P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "dudp" - chebi: "CHEBI:60471" - kegg.compound: "C01346" - metanetx.chemical: "MNXM572" - sbo: "SBO:0000247" - - !!omap - - id: "s_0654" - - name: "dUMP" - - compartment: "c" - - formula: "C9H11N2O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0654" + - name: "dUMP" + - compartment: "c" + - formula: "C9H11N2O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dump" - chebi: "CHEBI:246422" - kegg.compound: "C00365" - metanetx.chemical: "MNXM234" - sbo: "SBO:0000247" - - !!omap - - id: "s_0655" - - name: "dUMP" - - compartment: "n" - - formula: "C9H11N2O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0655" + - name: "dUMP" + - compartment: "n" + - formula: "C9H11N2O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dump" - chebi: "CHEBI:246422" - kegg.compound: "C00365" - metanetx.chemical: "MNXM234" - sbo: "SBO:0000247" - - !!omap - - id: "s_0656" - - name: "dUTP" - - compartment: "c" - - formula: "C9H11N2O14P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0656" + - name: "dUTP" + - compartment: "c" + - formula: "C9H11N2O14P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "dutp" - chebi: "CHEBI:58212" - kegg.compound: "C00460" - metanetx.chemical: "MNXM452" - sbo: "SBO:0000247" - - !!omap - - id: "s_0657" - - name: "episterol" - - compartment: "c" - - formula: "C28H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0657" + - name: "episterol" + - compartment: "c" + - formula: "C28H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "epist" - chebi: "CHEBI:23929" - kegg.compound: "C15777" - metanetx.chemical: "MNXM52365" - sbo: "SBO:0000247" - - !!omap - - id: "s_0659" - - name: "episterol" - - compartment: "e" - - formula: "C28H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0659" + - name: "episterol" + - compartment: "e" + - formula: "C28H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "epist" - chebi: "CHEBI:23929" - kegg.compound: "C15777" - metanetx.chemical: "MNXM52365" - sbo: "SBO:0000247" - - !!omap - - id: "s_0662" - - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol" - - compartment: "c" - - formula: "C28H42O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0662" + - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol" + - compartment: "c" + - formula: "C28H42O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ergtetrol" - chebi: "CHEBI:18249" - kegg.compound: "C05440" - metanetx.chemical: "MNXM1109" - sbo: "SBO:0000247" - - !!omap - - id: "s_0663" - - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol" - - compartment: "er" - - formula: "C28H42O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0663" + - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol" + - compartment: "er" + - formula: "C28H42O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ergtetrol" - chebi: "CHEBI:18249" - kegg.compound: "C05440" - metanetx.chemical: "MNXM1109" - sbo: "SBO:0000247" - - !!omap - - id: "s_0664" - - name: "ergosta-5,7,24(28)-trien-3beta-ol" - - compartment: "c" - - formula: "C28H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0664" + - name: "ergosta-5,7,24(28)-trien-3beta-ol" + - compartment: "c" + - formula: "C28H44O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ergtrol" - chebi: "CHEBI:52972" - kegg.compound: "C15780" - metanetx.chemical: "MNXM5738" - sbo: "SBO:0000247" - - !!omap - - id: "s_0665" - - name: "ergosterol" - - compartment: "ce" - - formula: "C28H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0665" + - name: "ergosterol" + - compartment: "ce" + - formula: "C28H44O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ergst" - chebi: "CHEBI:16933" - kegg.compound: "C01694" - metanetx.chemical: "MNXM922" - sbo: "SBO:0000247" - - !!omap - - id: "s_0666" - - name: "ergosterol" - - compartment: "c" - - formula: "C28H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0666" + - name: "ergosterol" + - compartment: "c" + - formula: "C28H44O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ergst" - chebi: "CHEBI:16933" - kegg.compound: "C01694" - metanetx.chemical: "MNXM922" - sbo: "SBO:0000247" - - !!omap - - id: "s_0667" - - name: "ergosterol" - - compartment: "er" - - formula: "C28H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0667" + - name: "ergosterol" + - compartment: "er" + - formula: "C28H44O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ergst" - chebi: "CHEBI:16933" - kegg.compound: "C01694" - metanetx.chemical: "MNXM922" - sbo: "SBO:0000247" - - !!omap - - id: "s_0668" - - name: "ergosterol" - - compartment: "e" - - formula: "C28H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0668" + - name: "ergosterol" + - compartment: "e" + - formula: "C28H44O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ergst" - chebi: "CHEBI:16933" - kegg.compound: "C01694" - metanetx.chemical: "MNXM922" - sbo: "SBO:0000247" - - !!omap - - id: "s_0669" - - name: "ergosterol" - - compartment: "lp" - - formula: "C28H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0669" + - name: "ergosterol" + - compartment: "lp" + - formula: "C28H44O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ergst" - chebi: "CHEBI:16933" - kegg.compound: "C01694" - metanetx.chemical: "MNXM922" - sbo: "SBO:0000247" - - !!omap - - id: "s_0670" - - name: "ergosterol 3-beta-D-glucoside" - - compartment: "c" - - formula: "C34H54O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0670" + - name: "ergosterol 3-beta-D-glucoside" + - compartment: "c" + - formula: "C34H54O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ergst3glc" - chebi: "CHEBI:52973" - metanetx.chemical: "MNXM52465" - sbo: "SBO:0000247" - - !!omap - - id: "s_0672" - - name: "ergosterol ester backbone" - - compartment: "c" - - formula: "C28H42" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0672" + - name: "ergosterol ester backbone" + - compartment: "c" + - formula: "C28H42" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52320" - metanetx.chemical: "MNXM5739" - sbo: "SBO:0000649" - - !!omap - - id: "s_0677" - - name: "erythro-4-hydroxy-L-glutamic acid" - - compartment: "c" - - formula: "C5H8NO5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0677" + - name: "erythro-4-hydroxy-L-glutamic acid" + - compartment: "c" + - formula: "C5H8NO5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "e4hglu" - chebi: "CHEBI:21285" - kegg.compound: "C05947" - metanetx.chemical: "MNXM923" - sbo: "SBO:0000247" - - !!omap - - id: "s_0678" - - name: "erythro-4-hydroxy-L-glutamic acid" - - compartment: "m" - - formula: "C5H8NO5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0678" + - name: "erythro-4-hydroxy-L-glutamic acid" + - compartment: "m" + - formula: "C5H8NO5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "e4hglu" - chebi: "CHEBI:21285" - kegg.compound: "C05947" - metanetx.chemical: "MNXM923" - sbo: "SBO:0000247" - - !!omap - - id: "s_0679" - - name: "erythro-4-hydroxy-L-glutamic acid" - - compartment: "p" - - formula: "C5H8NO5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0679" + - name: "erythro-4-hydroxy-L-glutamic acid" + - compartment: "p" + - formula: "C5H8NO5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "e4hglu" - chebi: "CHEBI:21285" - kegg.compound: "C05947" - metanetx.chemical: "MNXM923" - sbo: "SBO:0000247" - - !!omap - - id: "s_0680" - - name: "ethanol" - - compartment: "c" - - formula: "C2H6O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0680" + - name: "ethanol" + - compartment: "c" + - formula: "C2H6O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "etoh" - chebi: "CHEBI:16236" - kegg.compound: "C00469" - metanetx.chemical: "MNXM303" - sbo: "SBO:0000247" - - !!omap - - id: "s_0681" - - name: "ethanol" - - compartment: "e" - - formula: "C2H6O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0681" + - name: "ethanol" + - compartment: "e" + - formula: "C2H6O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "etoh" - chebi: "CHEBI:16236" - kegg.compound: "C00469" - metanetx.chemical: "MNXM303" - sbo: "SBO:0000247" - - !!omap - - id: "s_0682" - - name: "ethanol" - - compartment: "m" - - formula: "C2H6O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0682" + - name: "ethanol" + - compartment: "m" + - formula: "C2H6O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "etoh" - chebi: "CHEBI:16236" - kegg.compound: "C00469" - metanetx.chemical: "MNXM303" - sbo: "SBO:0000247" - - !!omap - - id: "s_0683" - - name: "ethanolamine" - - compartment: "c" - - formula: "C2H8NO" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0683" + - name: "ethanolamine" + - compartment: "c" + - formula: "C2H8NO" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "etha" - chebi: "CHEBI:57603" - kegg.compound: "C00189" - metanetx.chemical: "MNXM218" - sbo: "SBO:0000247" - - !!omap - - id: "s_0684" - - name: "ethanolamine" - - compartment: "e" - - formula: "C2H8NO" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0684" + - name: "ethanolamine" + - compartment: "e" + - formula: "C2H8NO" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "etha" - chebi: "CHEBI:57603" - kegg.compound: "C00189" - metanetx.chemical: "MNXM218" - sbo: "SBO:0000247" - - !!omap - - id: "s_0685" - - name: "ethyl acetate" - - compartment: "c" - - formula: "C4H8O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0685" + - name: "ethyl acetate" + - compartment: "c" + - formula: "C4H8O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:27750" - kegg.compound: "C00849" - metanetx.chemical: "MNXM8595" - sbo: "SBO:0000247" - - !!omap - - id: "s_0686" - - name: "ethyl acetate" - - compartment: "e" - - formula: "C4H8O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0686" + - name: "ethyl acetate" + - compartment: "e" + - formula: "C4H8O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:27750" - kegg.compound: "C00849" - metanetx.chemical: "MNXM8595" - sbo: "SBO:0000247" - - !!omap - - id: "s_0687" - - name: "FAD" - - compartment: "c" - - formula: "C27H30N9O15P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0687" + - name: "FAD" + - compartment: "c" + - formula: "C27H30N9O15P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "fad" - chebi: "CHEBI:57692" - kegg.compound: "C00016" - metanetx.chemical: "MNXM33" - sbo: "SBO:0000247" - - !!omap - - id: "s_0688" - - name: "FAD" - - compartment: "m" - - formula: "C27H30N9O15P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0688" + - name: "FAD" + - compartment: "m" + - formula: "C27H30N9O15P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "fad" - chebi: "CHEBI:57692" - kegg.compound: "C00016" - metanetx.chemical: "MNXM33" - sbo: "SBO:0000247" - - !!omap - - id: "s_0689" - - name: "FADH2" - - compartment: "c" - - formula: "C27H33N9O15P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0689" + - name: "FADH2" + - compartment: "c" + - formula: "C27H33N9O15P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "fadh2" - chebi: "CHEBI:58307" - kegg.compound: "C01352" - metanetx.chemical: "MNXM38" - sbo: "SBO:0000247" - - !!omap - - id: "s_0690" - - name: "FADH2" - - compartment: "m" - - formula: "C27H33N9O15P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0690" + - name: "FADH2" + - compartment: "m" + - formula: "C27H33N9O15P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "fadh2" - chebi: "CHEBI:58307" - kegg.compound: "C01352" - metanetx.chemical: "MNXM38" - sbo: "SBO:0000247" - - !!omap - - id: "s_0692" - - name: "farnesyl diphosphate" - - compartment: "lp" - - formula: "C15H25O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0692" + - name: "farnesyl diphosphate" + - compartment: "lp" + - formula: "C15H25O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "frdp" - chebi: "CHEBI:175763" - kegg.compound: "C00448" - metanetx.chemical: "MNXM34" - sbo: "SBO:0000247" - - !!omap - - id: "s_0694" - - name: "fatty acid backbone" - - compartment: "c" - - formula: "" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0694" + - name: "fatty acid backbone" + - compartment: "c" + - formula: "" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:35366" - kegg.compound: "C00162" - metanetx.chemical: "MNXM72" - sbo: "SBO:0000649" - - !!omap - - id: "s_0699" - - name: "fecosterol" - - compartment: "ce" - - formula: "C28H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0699" + - name: "fecosterol" + - compartment: "ce" + - formula: "C28H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "fecost" - chebi: "CHEBI:17038" - kegg.compound: "C04525" - metanetx.chemical: "MNXM1741" - sbo: "SBO:0000247" - - !!omap - - id: "s_0700" - - name: "fecosterol" - - compartment: "c" - - formula: "C28H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0700" + - name: "fecosterol" + - compartment: "c" + - formula: "C28H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "fecost" - chebi: "CHEBI:17038" - kegg.compound: "C04525" - metanetx.chemical: "MNXM1741" - sbo: "SBO:0000247" - - !!omap - - id: "s_0702" - - name: "fecosterol" - - compartment: "e" - - formula: "C28H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0702" + - name: "fecosterol" + - compartment: "e" + - formula: "C28H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "fecost" - chebi: "CHEBI:17038" - kegg.compound: "C04525" - metanetx.chemical: "MNXM1741" - sbo: "SBO:0000247" - - !!omap - - id: "s_0703" - - name: "fecosterol" - - compartment: "lp" - - formula: "C28H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0703" + - name: "fecosterol" + - compartment: "lp" + - formula: "C28H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "fecost" - chebi: "CHEBI:17038" - kegg.compound: "C04525" - metanetx.chemical: "MNXM1741" - sbo: "SBO:0000247" - - !!omap - - id: "s_0709" - - name: "ferricytochrome c" - - compartment: "m" - - formula: "C42H44FeN8O8S2R4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0709" + - name: "ferricytochrome c" + - compartment: "m" + - formula: "C42H44FeN8O8S2R4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ficytc" - chebi: "CHEBI:15991" - kegg.compound: "C00125" - metanetx.chemical: "MNXM5749" - sbo: "SBO:0000247" - - !!omap - - id: "s_0710" - - name: "ferrocytochrome c" - - compartment: "m" - - formula: "C42H45FeN8O8S2R4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0710" + - name: "ferrocytochrome c" + - compartment: "m" + - formula: "C42H45FeN8O8S2R4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "focytc" - chebi: "CHEBI:16928" - kegg.compound: "C00126" - metanetx.chemical: "MNXM746" - sbo: "SBO:0000247" - - !!omap - - id: "s_0712" - - name: "ferroheme b" - - compartment: "m" - - formula: "C34H30FeN4O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0712" + - name: "ferroheme b" + - compartment: "m" + - formula: "C34H30FeN4O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pheme" - chebi: "CHEBI:60344" - kegg.compound: "C00032" - metanetx.chemical: "MNXM249" - sbo: "SBO:0000247" - - !!omap - - id: "s_0713" - - name: "fMet-tRNA(fMet)" - - compartment: "m" - - formula: "C6H10NO2SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0713" + - name: "fMet-tRNA(fMet)" + - compartment: "m" + - formula: "C6H10NO2SR" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "fmettrna" - chebi: "CHEBI:17119" - kegg.compound: "C03294" - metanetx.chemical: "MNXM95381" - sbo: "SBO:0000247" - - !!omap - - id: "s_0714" - - name: "FMN" - - compartment: "c" - - formula: "C17H18N4O9P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0714" + - name: "FMN" + - compartment: "c" + - formula: "C17H18N4O9P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "fmn" - chebi: "CHEBI:58210" - kegg.compound: "C00061" - metanetx.chemical: "MNXM119" - sbo: "SBO:0000247" - - !!omap - - id: "s_0715" - - name: "FMN" - - compartment: "e" - - formula: "C17H18N4O9P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0715" + - name: "FMN" + - compartment: "e" + - formula: "C17H18N4O9P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "fmn" - chebi: "CHEBI:58210" - kegg.compound: "C00061" - metanetx.chemical: "MNXM119" - sbo: "SBO:0000247" - - !!omap - - id: "s_0716" - - name: "FMN" - - compartment: "m" - - formula: "C17H18N4O9P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0716" + - name: "FMN" + - compartment: "m" + - formula: "C17H18N4O9P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "fmn" - chebi: "CHEBI:58210" - kegg.compound: "C00061" - metanetx.chemical: "MNXM119" - sbo: "SBO:0000247" - - !!omap - - id: "s_0717" - - name: "FMNH2" - - compartment: "c" - - formula: "C17H21N4O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0717" + - name: "FMNH2" + - compartment: "c" + - formula: "C17H21N4O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "fmnh2" - chebi: "CHEBI:57618" - kegg.compound: "C01847" - metanetx.chemical: "MNXM208" - sbo: "SBO:0000247" - - !!omap - - id: "s_0719" - - name: "folate" - - compartment: "c" - - formula: "C19H17N7O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0719" + - name: "folate" + - compartment: "c" + - formula: "C19H17N7O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "fol" - chebi: "CHEBI:62501" - kegg.compound: "C00504" - metanetx.chemical: "MNXM617" - sbo: "SBO:0000247" - - !!omap - - id: "s_0720" - - name: "folate" - - compartment: "e" - - formula: "C19H17N7O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0720" + - name: "folate" + - compartment: "e" + - formula: "C19H17N7O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "fol" - chebi: "CHEBI:62501" - kegg.compound: "C00504" - metanetx.chemical: "MNXM617" - sbo: "SBO:0000247" - - !!omap - - id: "s_0721" - - name: "formaldehyde" - - compartment: "c" - - formula: "CH2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0721" + - name: "formaldehyde" + - compartment: "c" + - formula: "CH2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "fald" - chebi: "CHEBI:16842" - kegg.compound: "C00067" - metanetx.chemical: "MNXM56" - sbo: "SBO:0000247" - - !!omap - - id: "s_0722" - - name: "formate" - - compartment: "c" - - formula: "CHO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0722" + - name: "formate" + - compartment: "c" + - formula: "CHO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "for" - chebi: "CHEBI:15740" - kegg.compound: "C00058" - metanetx.chemical: "MNXM39" - sbo: "SBO:0000247" - - !!omap - - id: "s_0723" - - name: "formate" - - compartment: "e" - - formula: "CHO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0723" + - name: "formate" + - compartment: "e" + - formula: "CHO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "for" - chebi: "CHEBI:15740" - kegg.compound: "C00058" - metanetx.chemical: "MNXM39" - sbo: "SBO:0000247" - - !!omap - - id: "s_0724" - - name: "formate" - - compartment: "m" - - formula: "CHO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0724" + - name: "formate" + - compartment: "m" + - formula: "CHO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "for" - chebi: "CHEBI:15740" - kegg.compound: "C00058" - metanetx.chemical: "MNXM39" - sbo: "SBO:0000247" - - !!omap - - id: "s_0725" - - name: "fumarate" - - compartment: "c" - - formula: "C4H2O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0725" + - name: "fumarate" + - compartment: "c" + - formula: "C4H2O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "fum" - chebi: "CHEBI:29806" - kegg.compound: "C00122" - metanetx.chemical: "MNXM93" - sbo: "SBO:0000247" - - !!omap - - id: "s_0726" - - name: "fumarate" - - compartment: "e" - - formula: "C4H2O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0726" + - name: "fumarate" + - compartment: "e" + - formula: "C4H2O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "fum" - chebi: "CHEBI:29806" - kegg.compound: "C00122" - metanetx.chemical: "MNXM93" - sbo: "SBO:0000247" - - !!omap - - id: "s_0727" - - name: "fumarate" - - compartment: "m" - - formula: "C4H2O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0727" + - name: "fumarate" + - compartment: "m" + - formula: "C4H2O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "fum" - chebi: "CHEBI:29806" - kegg.compound: "C00122" - metanetx.chemical: "MNXM93" - sbo: "SBO:0000247" - - !!omap - - id: "s_0734" - - name: "gamma-aminobutyrate" - - compartment: "c" - - formula: "C4H9NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0734" + - name: "gamma-aminobutyrate" + - compartment: "c" + - formula: "C4H9NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4abut" - chebi: "CHEBI:16865" - kegg.compound: "C00334" - metanetx.chemical: "MNXM192" - sbo: "SBO:0000247" - - !!omap - - id: "s_0736" - - name: "gamma-aminobutyrate" - - compartment: "e" - - formula: "C4H9NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0736" + - name: "gamma-aminobutyrate" + - compartment: "e" + - formula: "C4H9NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4abut" - chebi: "CHEBI:16865" - kegg.compound: "C00334" - metanetx.chemical: "MNXM192" - sbo: "SBO:0000247" - - !!omap - - id: "s_0738" - - name: "gamma-aminobutyrate" - - compartment: "m" - - formula: "C4H9NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0738" + - name: "gamma-aminobutyrate" + - compartment: "m" + - formula: "C4H9NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4abut" - chebi: "CHEBI:16865" - kegg.compound: "C00334" - metanetx.chemical: "MNXM192" - sbo: "SBO:0000247" - - !!omap - - id: "s_0739" - - name: "GDP" - - compartment: "c" - - formula: "C10H12N5O11P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0739" + - name: "GDP" + - compartment: "c" + - formula: "C10H12N5O11P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "gdp" - chebi: "CHEBI:58189" - kegg.compound: "C00035" - metanetx.chemical: "MNXM30" - sbo: "SBO:0000247" - - !!omap - - id: "s_0740" - - name: "GDP" - - compartment: "g" - - formula: "C10H12N5O11P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0740" + - name: "GDP" + - compartment: "g" + - formula: "C10H12N5O11P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "gdp" - chebi: "CHEBI:58189" - kegg.compound: "C00035" - metanetx.chemical: "MNXM30" - sbo: "SBO:0000247" - - !!omap - - id: "s_0741" - - name: "GDP" - - compartment: "m" - - formula: "C10H12N5O11P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0741" + - name: "GDP" + - compartment: "m" + - formula: "C10H12N5O11P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "gdp" - chebi: "CHEBI:58189" - kegg.compound: "C00035" - metanetx.chemical: "MNXM30" - sbo: "SBO:0000247" - - !!omap - - id: "s_0742" - - name: "GDP" - - compartment: "n" - - formula: "C10H12N5O11P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0742" + - name: "GDP" + - compartment: "n" + - formula: "C10H12N5O11P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "gdp" - chebi: "CHEBI:58189" - kegg.compound: "C00035" - metanetx.chemical: "MNXM30" - sbo: "SBO:0000247" - - !!omap - - id: "s_0743" - - name: "GDP-alpha-D-mannose" - - compartment: "c" - - formula: "C16H23N5O16P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0743" + - name: "GDP-alpha-D-mannose" + - compartment: "c" + - formula: "C16H23N5O16P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "gdpmann" - chebi: "CHEBI:57527" - kegg.compound: "C00096" - metanetx.chemical: "MNXM82" - sbo: "SBO:0000247" - - !!omap - - id: "s_0744" - - name: "GDP-alpha-D-mannose" - - compartment: "g" - - formula: "C16H23N5O16P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0744" + - name: "GDP-alpha-D-mannose" + - compartment: "g" + - formula: "C16H23N5O16P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "gdpmann" - chebi: "CHEBI:57527" - kegg.compound: "C00096" - metanetx.chemical: "MNXM82" - sbo: "SBO:0000247" - - !!omap - - id: "s_0745" - - name: "geranyl diphosphate" - - compartment: "c" - - formula: "C10H17O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0745" + - name: "geranyl diphosphate" + - compartment: "c" + - formula: "C10H17O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "grdp" - chebi: "CHEBI:58057" - kegg.compound: "C00341" - metanetx.chemical: "MNXM100" - sbo: "SBO:0000247" - - !!omap - - id: "s_0746" - - name: "geranylgeranyl diphosphate" - - compartment: "lp" - - formula: "C20H33O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0746" + - name: "geranylgeranyl diphosphate" + - compartment: "lp" + - formula: "C20H33O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ggdp" - chebi: "CHEBI:58756" - kegg.compound: "C00353" - metanetx.chemical: "MNXM139" - sbo: "SBO:0000247" - - !!omap - - id: "s_0747" - - name: "Gln-tRNA(Gln)" - - compartment: "c" - - formula: "C5H10N2O2R" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0747" + - name: "Gln-tRNA(Gln)" + - compartment: "c" + - formula: "C5H10N2O2R" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "glntrna" - chebi: "CHEBI:29166" - kegg.compound: "C02282" - metanetx.chemical: "MNXM89810" - sbo: "SBO:0000247" - - !!omap - - id: "s_0748" - - name: "Glu-tRNA(Glu)" - - compartment: "c" - - formula: "C5H8NO3R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0748" + - name: "Glu-tRNA(Glu)" + - compartment: "c" + - formula: "C5H8NO3R" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glutrna" - chebi: "CHEBI:29157" - kegg.compound: "C02987" - metanetx.chemical: "MNXM89752" - sbo: "SBO:0000247" - - !!omap - - id: "s_0749" - - name: "Glu-tRNA(Glu)" - - compartment: "m" - - formula: "C5H8NO3R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0749" + - name: "Glu-tRNA(Glu)" + - compartment: "m" + - formula: "C5H8NO3R" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glutrna" - chebi: "CHEBI:29157" - kegg.compound: "C02987" - metanetx.chemical: "MNXM89752" - sbo: "SBO:0000247" - - !!omap - - id: "s_0750" - - name: "glutathione" - - compartment: "c" - - formula: "C10H16N3O6S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0750" + - name: "glutathione" + - compartment: "c" + - formula: "C10H16N3O6S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gthrd" - chebi: "CHEBI:57925" - kegg.compound: "C00051" - metanetx.chemical: "MNXM57" - sbo: "SBO:0000247" - - !!omap - - id: "s_0751" - - name: "glutathione" - - compartment: "e" - - formula: "C10H16N3O6S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0751" + - name: "glutathione" + - compartment: "e" + - formula: "C10H16N3O6S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gthrd" - chebi: "CHEBI:57925" - kegg.compound: "C00051" - metanetx.chemical: "MNXM57" - sbo: "SBO:0000247" - - !!omap - - id: "s_0752" - - name: "glutathione" - - compartment: "m" - - formula: "C10H16N3O6S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0752" + - name: "glutathione" + - compartment: "m" + - formula: "C10H16N3O6S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gthrd" - chebi: "CHEBI:57925" - kegg.compound: "C00051" - metanetx.chemical: "MNXM57" - sbo: "SBO:0000247" - - !!omap - - id: "s_0753" - - name: "glutathione" - - compartment: "v" - - formula: "C10H16N3O6S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0753" + - name: "glutathione" + - compartment: "v" + - formula: "C10H16N3O6S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gthrd" - chebi: "CHEBI:57925" - kegg.compound: "C00051" - metanetx.chemical: "MNXM57" - sbo: "SBO:0000247" - - !!omap - - id: "s_0754" - - name: "glutathione disulfide" - - compartment: "c" - - formula: "C20H30N6O12S2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0754" + - name: "glutathione disulfide" + - compartment: "c" + - formula: "C20H30N6O12S2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "gthox" - chebi: "CHEBI:58297" - kegg.compound: "C00127" - metanetx.chemical: "MNXM151" - sbo: "SBO:0000247" - - !!omap - - id: "s_0755" - - name: "glutathione disulfide" - - compartment: "e" - - formula: "C20H30N6O12S2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0755" + - name: "glutathione disulfide" + - compartment: "e" + - formula: "C20H30N6O12S2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "gthox" - chebi: "CHEBI:58297" - kegg.compound: "C00127" - metanetx.chemical: "MNXM151" - sbo: "SBO:0000247" - - !!omap - - id: "s_0756" - - name: "glutathione disulfide" - - compartment: "m" - - formula: "C20H30N6O12S2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0756" + - name: "glutathione disulfide" + - compartment: "m" + - formula: "C20H30N6O12S2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "gthox" - chebi: "CHEBI:58297" - kegg.compound: "C00127" - metanetx.chemical: "MNXM151" - sbo: "SBO:0000247" - - !!omap - - id: "s_0757" - - name: "Gly-tRNA(Gly)" - - compartment: "c" - - formula: "C2H5NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0757" + - name: "Gly-tRNA(Gly)" + - compartment: "c" + - formula: "C2H5NOR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "glytrna" - chebi: "CHEBI:29156" - kegg.compound: "C02412" - metanetx.chemical: "MNXM89763" - sbo: "SBO:0000247" - - !!omap - - id: "s_0764" - - name: "glyceraldehyde 3-phosphate" - - compartment: "c" - - formula: "C3H5O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0764" + - name: "glyceraldehyde 3-phosphate" + - compartment: "c" + - formula: "C3H5O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "g3p" - chebi: "CHEBI:58027" - kegg.compound: "C00661" - metanetx.chemical: "MNXM74" - sbo: "SBO:0000247" - - !!omap - - id: "s_0765" - - name: "glycerol" - - compartment: "c" - - formula: "C3H8O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0765" + - name: "glycerol" + - compartment: "c" + - formula: "C3H8O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glyc" - chebi: "CHEBI:17754" - kegg.compound: "C00116" - metanetx.chemical: "MNXM89612" - sbo: "SBO:0000247" - - !!omap - - id: "s_0766" - - name: "glycerol" - - compartment: "e" - - formula: "C3H8O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0766" + - name: "glycerol" + - compartment: "e" + - formula: "C3H8O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glyc" - chebi: "CHEBI:17754" - kegg.compound: "C00116" - metanetx.chemical: "MNXM89612" - sbo: "SBO:0000247" - - !!omap - - id: "s_0767" - - name: "glycerol 3-phosphate" - - compartment: "c" - - formula: "C3H7O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0767" + - name: "glycerol 3-phosphate" + - compartment: "c" + - formula: "C3H7O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "glyc3p" - chebi: "CHEBI:57597" - kegg.compound: "C00093" - metanetx.chemical: "MNXM66" - sbo: "SBO:0000247" - - !!omap - - id: "s_0769" - - name: "glycerol 3-phosphate" - - compartment: "lp" - - formula: "C3H7O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0769" + - name: "glycerol 3-phosphate" + - compartment: "lp" + - formula: "C3H7O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "glyc3p" - chebi: "CHEBI:57597" - kegg.compound: "C00093" - metanetx.chemical: "MNXM66" - sbo: "SBO:0000247" - - !!omap - - id: "s_0770" - - name: "glycerol 3-phosphate" - - compartment: "m" - - formula: "C3H7O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0770" + - name: "glycerol 3-phosphate" + - compartment: "m" + - formula: "C3H7O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "glyc3p" - chebi: "CHEBI:57597" - kegg.compound: "C00093" - metanetx.chemical: "MNXM66" - sbo: "SBO:0000247" - - !!omap - - id: "s_0771" - - name: "glycerone" - - compartment: "c" - - formula: "C3H6O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0771" + - name: "glycerone" + - compartment: "c" + - formula: "C3H6O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dha" - chebi: "CHEBI:16016" - kegg.compound: "C00184" - metanetx.chemical: "MNXM460" - sbo: "SBO:0000247" - - !!omap - - id: "s_0773" - - name: "glycogen" - - compartment: "c" - - formula: "C6H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0773" + - name: "glycogen" + - compartment: "c" + - formula: "C6H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glycogen" - chebi: "CHEBI:28087" - kegg.compound: "C00182" - metanetx.chemical: "MNXM55375" - sbo: "SBO:0000247" - - !!omap - - id: "s_0774" - - name: "glycogen" - - compartment: "v" - - formula: "C6H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0774" + - name: "glycogen" + - compartment: "v" + - formula: "C6H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glycogen" - chebi: "CHEBI:28087" - kegg.compound: "C00182" - metanetx.chemical: "MNXM55375" - sbo: "SBO:0000247" - - !!omap - - id: "s_0775" - - name: "glycolaldehyde" - - compartment: "c" - - formula: "C2H4O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0775" + - name: "glycolaldehyde" + - compartment: "c" + - formula: "C2H4O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gcald" - chebi: "CHEBI:17071" - kegg.compound: "C00266" - metanetx.chemical: "MNXM349" - sbo: "SBO:0000247" - - !!omap - - id: "s_0776" - - name: "glycolaldehyde" - - compartment: "e" - - formula: "C2H4O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0776" + - name: "glycolaldehyde" + - compartment: "e" + - formula: "C2H4O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gcald" - chebi: "CHEBI:17071" - kegg.compound: "C00266" - metanetx.chemical: "MNXM349" - sbo: "SBO:0000247" - - !!omap - - id: "s_0777" - - name: "glycolaldehyde" - - compartment: "m" - - formula: "C2H4O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0777" + - name: "glycolaldehyde" + - compartment: "m" + - formula: "C2H4O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gcald" - chebi: "CHEBI:17071" - kegg.compound: "C00266" - metanetx.chemical: "MNXM349" - sbo: "SBO:0000247" - - !!omap - - id: "s_0779" - - name: "glyoxylate" - - compartment: "c" - - formula: "C2HO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0779" + - name: "glyoxylate" + - compartment: "c" + - formula: "C2HO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glx" - chebi: "CHEBI:36655" - kegg.compound: "C00048" - metanetx.chemical: "MNXM69" - sbo: "SBO:0000247" - - !!omap - - id: "s_0780" - - name: "glyoxylate" - - compartment: "e" - - formula: "C2HO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0780" + - name: "glyoxylate" + - compartment: "e" + - formula: "C2HO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glx" - chebi: "CHEBI:36655" - kegg.compound: "C00048" - metanetx.chemical: "MNXM69" - sbo: "SBO:0000247" - - !!omap - - id: "s_0781" - - name: "glyoxylate" - - compartment: "p" - - formula: "C2HO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0781" + - name: "glyoxylate" + - compartment: "p" + - formula: "C2HO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glx" - chebi: "CHEBI:36655" - kegg.compound: "C00048" - metanetx.chemical: "MNXM69" - sbo: "SBO:0000247" - - !!omap - - id: "s_0782" - - name: "GMP" - - compartment: "c" - - formula: "C10H12N5O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0782" + - name: "GMP" + - compartment: "c" + - formula: "C10H12N5O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "gmp" - chebi: "CHEBI:58115" - kegg.compound: "C00144" - metanetx.chemical: "MNXM113" - sbo: "SBO:0000247" - - !!omap - - id: "s_0783" - - name: "GMP" - - compartment: "g" - - formula: "C10H12N5O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0783" + - name: "GMP" + - compartment: "g" + - formula: "C10H12N5O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "gmp" - chebi: "CHEBI:58115" - kegg.compound: "C00144" - metanetx.chemical: "MNXM113" - sbo: "SBO:0000247" - - !!omap - - id: "s_0785" - - name: "GTP" - - compartment: "c" - - formula: "C10H12N5O14P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0785" + - name: "GTP" + - compartment: "c" + - formula: "C10H12N5O14P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "gtp" - chebi: "CHEBI:57600" - kegg.compound: "C00044" - metanetx.chemical: "MNXM51" - sbo: "SBO:0000247" - - !!omap - - id: "s_0786" - - name: "GTP" - - compartment: "m" - - formula: "C10H12N5O14P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0786" + - name: "GTP" + - compartment: "m" + - formula: "C10H12N5O14P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "gtp" - chebi: "CHEBI:57600" - kegg.compound: "C00044" - metanetx.chemical: "MNXM51" - sbo: "SBO:0000247" - - !!omap - - id: "s_0787" - - name: "guanine" - - compartment: "c" - - formula: "C5H5N5O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0787" + - name: "guanine" + - compartment: "c" + - formula: "C5H5N5O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gua" - chebi: "CHEBI:16235" - kegg.compound: "C00242" - metanetx.chemical: "MNXM259" - sbo: "SBO:0000247" - - !!omap - - id: "s_0788" - - name: "guanine" - - compartment: "e" - - formula: "C5H5N5O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0788" + - name: "guanine" + - compartment: "e" + - formula: "C5H5N5O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gua" - chebi: "CHEBI:16235" - kegg.compound: "C00242" - metanetx.chemical: "MNXM259" - sbo: "SBO:0000247" - - !!omap - - id: "s_0789" - - name: "guanine" - - compartment: "m" - - formula: "C5H5N5O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0789" + - name: "guanine" + - compartment: "m" + - formula: "C5H5N5O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gua" - chebi: "CHEBI:16235" - kegg.compound: "C00242" - metanetx.chemical: "MNXM259" - sbo: "SBO:0000247" - - !!omap - - id: "s_0790" - - name: "guanosine" - - compartment: "c" - - formula: "C10H13N5O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0790" + - name: "guanosine" + - compartment: "c" + - formula: "C10H13N5O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gsn" - chebi: "CHEBI:16750" - kegg.compound: "C00387" - metanetx.chemical: "MNXM401" - sbo: "SBO:0000247" - - !!omap - - id: "s_0791" - - name: "guanosine" - - compartment: "e" - - formula: "C10H13N5O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0791" + - name: "guanosine" + - compartment: "e" + - formula: "C10H13N5O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gsn" - chebi: "CHEBI:16750" - kegg.compound: "C00387" - metanetx.chemical: "MNXM401" - sbo: "SBO:0000247" - - !!omap - - id: "s_0792" - - name: "guanosine" - - compartment: "m" - - formula: "C10H13N5O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0792" + - name: "guanosine" + - compartment: "m" + - formula: "C10H13N5O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gsn" - chebi: "CHEBI:16750" - kegg.compound: "C00387" - metanetx.chemical: "MNXM401" - sbo: "SBO:0000247" - - !!omap - - id: "s_0793" - - name: "H+" - - compartment: "ce" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0793" + - name: "H+" + - compartment: "ce" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_0794" - - name: "H+" - - compartment: "c" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0794" + - name: "H+" + - compartment: "c" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_0795" - - name: "H+" - - compartment: "er" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0795" + - name: "H+" + - compartment: "er" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_0796" - - name: "H+" - - compartment: "e" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0796" + - name: "H+" + - compartment: "e" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_0797" - - name: "H+" - - compartment: "g" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0797" + - name: "H+" + - compartment: "g" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_0798" - - name: "H+" - - compartment: "lp" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0798" + - name: "H+" + - compartment: "lp" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_0799" - - name: "H+" - - compartment: "m" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0799" + - name: "H+" + - compartment: "m" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_0800" - - name: "H+" - - compartment: "n" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0800" + - name: "H+" + - compartment: "n" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_0801" - - name: "H+" - - compartment: "p" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0801" + - name: "H+" + - compartment: "p" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_0802" - - name: "H+" - - compartment: "v" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0802" + - name: "H+" + - compartment: "v" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_0803" - - name: "H2O" - - compartment: "c" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0803" + - name: "H2O" + - compartment: "c" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_0804" - - name: "H2O" - - compartment: "er" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0804" + - name: "H2O" + - compartment: "er" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_0805" - - name: "H2O" - - compartment: "e" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0805" + - name: "H2O" + - compartment: "e" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_0806" - - name: "H2O" - - compartment: "g" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0806" + - name: "H2O" + - compartment: "g" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_0807" - - name: "H2O" - - compartment: "m" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0807" + - name: "H2O" + - compartment: "m" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_0808" - - name: "H2O" - - compartment: "n" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0808" + - name: "H2O" + - compartment: "n" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_0809" - - name: "H2O" - - compartment: "p" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0809" + - name: "H2O" + - compartment: "p" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_0810" - - name: "H2O" - - compartment: "v" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0810" + - name: "H2O" + - compartment: "v" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_0811" - - name: "heme a" - - compartment: "m" - - formula: "C49H55FeN4O6" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0811" + - name: "heme a" + - compartment: "m" + - formula: "C49H55FeN4O6" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "hemeA" - chebi: "CHEBI:24479" - kegg.compound: "C15670" - metanetx.chemical: "MNXM53309" - sbo: "SBO:0000247" - - !!omap - - id: "s_0812" - - name: "heme o" - - compartment: "m" - - formula: "C49H56FeN4O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0812" + - name: "heme o" + - compartment: "m" + - formula: "C49H56FeN4O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "hemeO" - chebi: "CHEBI:24480" - kegg.compound: "C15672" - metanetx.chemical: "MNXM1278" - sbo: "SBO:0000247" - - !!omap - - id: "s_0813" - - name: "henicosaprenyl diphosphate" - - compartment: "lp" - - formula: "C105H169O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0813" + - name: "henicosaprenyl diphosphate" + - compartment: "lp" + - formula: "C105H169O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53032" - metanetx.chemical: "MNXM56060" - sbo: "SBO:0000247" - - !!omap - - id: "s_0814" - - name: "heptadecaprenyl diphosphate" - - compartment: "lp" - - formula: "C85H137O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0814" + - name: "heptadecaprenyl diphosphate" + - compartment: "lp" + - formula: "C85H137O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53036" - metanetx.chemical: "MNXM56121" - sbo: "SBO:0000247" - - !!omap - - id: "s_0815" - - name: "heptaprenyl diphosphate" - - compartment: "lp" - - formula: "C35H57O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0815" + - name: "heptaprenyl diphosphate" + - compartment: "lp" + - formula: "C35H57O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "hepdp" - chebi: "CHEBI:53046" - kegg.compound: "C04216" - metanetx.chemical: "MNXM1722" - sbo: "SBO:0000247" - - !!omap - - id: "s_0816" - - name: "hexacosanoyl-CoA" - - compartment: "c" - - formula: "C47H82N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0816" + - name: "hexacosanoyl-CoA" + - compartment: "c" + - formula: "C47H82N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hexccoa" - chebi: "CHEBI:52966" - metanetx.chemical: "MNXM1190" - sbo: "SBO:0000247" - - !!omap - - id: "s_0817" - - name: "hexacosanoyl-CoA" - - compartment: "er" - - formula: "C47H82N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0817" + - name: "hexacosanoyl-CoA" + - compartment: "er" + - formula: "C47H82N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hexccoa" - chebi: "CHEBI:52966" - metanetx.chemical: "MNXM1190" - sbo: "SBO:0000247" - - !!omap - - id: "s_0819" - - name: "hexacosanoyl-CoA" - - compartment: "p" - - formula: "C47H82N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0819" + - name: "hexacosanoyl-CoA" + - compartment: "p" + - formula: "C47H82N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hexccoa" - chebi: "CHEBI:52966" - metanetx.chemical: "MNXM1190" - sbo: "SBO:0000247" - - !!omap - - id: "s_0823" - - name: "hexadec-2-enoyl-CoA" - - compartment: "p" - - formula: "C37H60N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0823" + - name: "hexadec-2-enoyl-CoA" + - compartment: "p" + - formula: "C37H60N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hdd2coa" - kegg.compound: "C05272" - metanetx.chemical: "MNXM581" - sbo: "SBO:0000247" - - !!omap - - id: "s_0825" - - name: "hexadecanal" - - compartment: "er" - - formula: "C16H32O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0825" + - name: "hexadecanal" + - compartment: "er" + - formula: "C16H32O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "hxdcal" - chebi: "CHEBI:17600" - kegg.compound: "C00517" - metanetx.chemical: "MNXM528" - sbo: "SBO:0000247" - - !!omap - - id: "s_0826" - - name: "hexadecanal" - - compartment: "e" - - formula: "C16H32O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0826" + - name: "hexadecanal" + - compartment: "e" + - formula: "C16H32O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "hxdcal" - chebi: "CHEBI:17600" - kegg.compound: "C00517" - metanetx.chemical: "MNXM528" - sbo: "SBO:0000247" - - !!omap - - id: "s_0829" - - name: "hexadecaprenyl diphosphate" - - compartment: "lp" - - formula: "C80H129O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0829" + - name: "hexadecaprenyl diphosphate" + - compartment: "lp" + - formula: "C80H129O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53037" - metanetx.chemical: "MNXM56347" - sbo: "SBO:0000247" - - !!omap - - id: "s_0830" - - name: "hexaprenyl diphosphate" - - compartment: "lp" - - formula: "C30H49O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0830" + - name: "hexaprenyl diphosphate" + - compartment: "lp" + - formula: "C30H49O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "hexdp" - chebi: "CHEBI:53047" - kegg.compound: "C01230" - metanetx.chemical: "MNXM1067" - sbo: "SBO:0000247" - - !!omap - - id: "s_0831" - - name: "hexaprenyl diphosphate" - - compartment: "m" - - formula: "C30H49O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0831" + - name: "hexaprenyl diphosphate" + - compartment: "m" + - formula: "C30H49O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "hexdp" - chebi: "CHEBI:53047" - kegg.compound: "C01230" - metanetx.chemical: "MNXM1067" - sbo: "SBO:0000247" - - !!omap - - id: "s_0832" - - name: "His-tRNA(His)" - - compartment: "c" - - formula: "C6H9N3OR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0832" + - name: "His-tRNA(His)" + - compartment: "c" + - formula: "C6H9N3OR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "histrna" - chebi: "CHEBI:29155" - kegg.compound: "C02988" - metanetx.chemical: "MNXM89831" - sbo: "SBO:0000247" - - !!omap - - id: "s_0833" - - name: "His-tRNA(His)" - - compartment: "m" - - formula: "C6H9N3OR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0833" + - name: "His-tRNA(His)" + - compartment: "m" + - formula: "C6H9N3OR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "histrna" - chebi: "CHEBI:29155" - kegg.compound: "C02988" - metanetx.chemical: "MNXM89831" - sbo: "SBO:0000247" - - !!omap - - id: "s_0834" - - name: "homocitrate" - - compartment: "m" - - formula: "C7H7O7" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0834" + - name: "homocitrate" + - compartment: "m" + - formula: "C7H7O7" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:36457" - kegg.compound: "C01251" - metanetx.chemical: "MNXM722779" - sbo: "SBO:0000247" - - !!omap - - id: "s_0835" - - name: "homocitrate" - - compartment: "n" - - formula: "C7H7O7" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0835" + - name: "homocitrate" + - compartment: "n" + - formula: "C7H7O7" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:36457" - kegg.compound: "C01251" - metanetx.chemical: "MNXM722779" - sbo: "SBO:0000247" - - !!omap - - id: "s_0836" - - name: "homoisocitrate" - - compartment: "m" - - formula: "C7H7O7" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0836" + - name: "homoisocitrate" + - compartment: "m" + - formula: "C7H7O7" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "hicit" - chebi: "CHEBI:30904" - kegg.compound: "C05662" - metanetx.chemical: "MNXM984" - sbo: "SBO:0000247" - - !!omap - - id: "s_0837" - - name: "hydrogen peroxide" - - compartment: "c" - - formula: "H2O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0837" + - name: "hydrogen peroxide" + - compartment: "c" + - formula: "H2O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o2" - chebi: "CHEBI:16240" - kegg.compound: "C00027" - metanetx.chemical: "MNXM22" - sbo: "SBO:0000247" - - !!omap - - id: "s_0838" - - name: "hydrogen peroxide" - - compartment: "m" - - formula: "H2O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0838" + - name: "hydrogen peroxide" + - compartment: "m" + - formula: "H2O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o2" - chebi: "CHEBI:16240" - kegg.compound: "C00027" - metanetx.chemical: "MNXM22" - sbo: "SBO:0000247" - - !!omap - - id: "s_0839" - - name: "hydrogen peroxide" - - compartment: "n" - - formula: "H2O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0839" + - name: "hydrogen peroxide" + - compartment: "n" + - formula: "H2O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o2" - chebi: "CHEBI:16240" - kegg.compound: "C00027" - metanetx.chemical: "MNXM22" - sbo: "SBO:0000247" - - !!omap - - id: "s_0840" - - name: "hydrogen peroxide" - - compartment: "p" - - formula: "H2O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0840" + - name: "hydrogen peroxide" + - compartment: "p" + - formula: "H2O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o2" - chebi: "CHEBI:16240" - kegg.compound: "C00027" - metanetx.chemical: "MNXM22" - sbo: "SBO:0000247" - - !!omap - - id: "s_0841" - - name: "hydrogen sulfide" - - compartment: "c" - - formula: "HS" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0841" + - name: "hydrogen sulfide" + - compartment: "c" + - formula: "HS" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "h2s" - chebi: "CHEBI:29919" - kegg.compound: "C00283" - metanetx.chemical: "MNXM89582" - sbo: "SBO:0000247" - - !!omap - - id: "s_0843" - - name: "hypoxanthine" - - compartment: "c" - - formula: "C5H4N4O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0843" + - name: "hypoxanthine" + - compartment: "c" + - formula: "C5H4N4O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "hxan" - chebi: "CHEBI:17368" - kegg.compound: "C00262" - metanetx.chemical: "MNXM213" - sbo: "SBO:0000247" - - !!omap - - id: "s_0844" - - name: "hypoxanthine" - - compartment: "e" - - formula: "C5H4N4O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0844" + - name: "hypoxanthine" + - compartment: "e" + - formula: "C5H4N4O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "hxan" - chebi: "CHEBI:17368" - kegg.compound: "C00262" - metanetx.chemical: "MNXM213" - sbo: "SBO:0000247" - - !!omap - - id: "s_0845" - - name: "icosaprenyl diphosphate" - - compartment: "lp" - - formula: "C100H161O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0845" + - name: "icosaprenyl diphosphate" + - compartment: "lp" + - formula: "C100H161O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53033" - metanetx.chemical: "MNXM57076" - sbo: "SBO:0000247" - - !!omap - - id: "s_0846" - - name: "IDP" - - compartment: "c" - - formula: "C10H11N4O11P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0846" + - name: "IDP" + - compartment: "c" + - formula: "C10H11N4O11P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "idp" - chebi: "CHEBI:58280" - kegg.compound: "C00104" - metanetx.chemical: "MNXM495" - sbo: "SBO:0000247" - - !!omap - - id: "s_0847" - - name: "Ile-tRNA(Ile)" - - compartment: "c" - - formula: "C6H13NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0847" + - name: "Ile-tRNA(Ile)" + - compartment: "c" + - formula: "C6H13NOR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "iletrna" - chebi: "CHEBI:29160" - kegg.compound: "C03127" - metanetx.chemical: "MNXM89832" - sbo: "SBO:0000247" - - !!omap - - id: "s_0848" - - name: "Ile-tRNA(Ile)" - - compartment: "m" - - formula: "C6H13NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0848" + - name: "Ile-tRNA(Ile)" + - compartment: "m" + - formula: "C6H13NOR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "iletrna" - chebi: "CHEBI:29160" - kegg.compound: "C03127" - metanetx.chemical: "MNXM89832" - sbo: "SBO:0000247" - - !!omap - - id: "s_0849" - - name: "IMP" - - compartment: "c" - - formula: "C10H11N4O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0849" + - name: "IMP" + - compartment: "c" + - formula: "C10H11N4O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "imp" - chebi: "CHEBI:58053" - kegg.compound: "C00130" - metanetx.chemical: "MNXM125" - sbo: "SBO:0000247" - - !!omap - - id: "s_0850" - - name: "indol-3-ylacetaldehyde" - - compartment: "c" - - formula: "C10H9NO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0850" + - name: "indol-3-ylacetaldehyde" + - compartment: "c" + - formula: "C10H9NO" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "id3acald" - chebi: "CHEBI:18086" - kegg.compound: "C00637" - metanetx.chemical: "MNXM518" - sbo: "SBO:0000247" - - !!omap - - id: "s_0851" - - name: "indol-3-ylacetaldehyde" - - compartment: "e" - - formula: "C10H9NO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0851" + - name: "indol-3-ylacetaldehyde" + - compartment: "e" + - formula: "C10H9NO" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "id3acald" - chebi: "CHEBI:18086" - kegg.compound: "C00637" - metanetx.chemical: "MNXM518" - sbo: "SBO:0000247" - - !!omap - - id: "s_0852" - - name: "indol-3-ylacetaldehyde" - - compartment: "m" - - formula: "C10H9NO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0852" + - name: "indol-3-ylacetaldehyde" + - compartment: "m" + - formula: "C10H9NO" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "id3acald" - chebi: "CHEBI:18086" - kegg.compound: "C00637" - metanetx.chemical: "MNXM518" - sbo: "SBO:0000247" - - !!omap - - id: "s_0853" - - name: "indole-3-acetate" - - compartment: "c" - - formula: "C10H8NO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0853" + - name: "indole-3-acetate" + - compartment: "c" + - formula: "C10H8NO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ind3ac" - chebi: "CHEBI:30854" - kegg.compound: "C00954" - metanetx.chemical: "MNXM383" - sbo: "SBO:0000247" - - !!omap - - id: "s_0854" - - name: "indole-3-acetate" - - compartment: "m" - - formula: "C10H8NO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0854" + - name: "indole-3-acetate" + - compartment: "m" + - formula: "C10H8NO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ind3ac" - chebi: "CHEBI:30854" - kegg.compound: "C00954" - metanetx.chemical: "MNXM383" - sbo: "SBO:0000247" - - !!omap - - id: "s_0855" - - name: "indole-3-pyruvate" - - compartment: "c" - - formula: "C11H8NO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0855" + - name: "indole-3-pyruvate" + - compartment: "c" + - formula: "C11H8NO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "indpyr" - chebi: "CHEBI:17640" - kegg.compound: "C00331" - metanetx.chemical: "MNXM315" - sbo: "SBO:0000247" - - !!omap - - id: "s_0856" - - name: "inosine" - - compartment: "c" - - formula: "C10H12N4O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0856" + - name: "inosine" + - compartment: "c" + - formula: "C10H12N4O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ins" - chebi: "CHEBI:17596" - kegg.compound: "C00294" - metanetx.chemical: "MNXM334" - sbo: "SBO:0000247" - - !!omap - - id: "s_0857" - - name: "inosine" - - compartment: "e" - - formula: "C10H12N4O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0857" + - name: "inosine" + - compartment: "e" + - formula: "C10H12N4O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ins" - chebi: "CHEBI:17596" - kegg.compound: "C00294" - metanetx.chemical: "MNXM334" - sbo: "SBO:0000247" - - !!omap - - id: "s_0859" - - name: "inositol phosphomannosylinositol phosphoceramide backbone" - - compartment: "g" - - formula: "C18H33NO23P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0859" + - name: "inositol phosphomannosylinositol phosphoceramide backbone" + - compartment: "g" + - formula: "C18H33NO23P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62682" - metanetx.chemical: "MNXM57447" - sbo: "SBO:0000649" - - !!omap - - id: "s_0861" - - name: "inositol phosphomannosylinositol phosphoceramide A (C24)" - - compartment: "er" - - formula: "C60H117NO24P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0861" + - name: "inositol phosphomannosylinositol phosphoceramide A (C24)" + - compartment: "er" + - formula: "C60H117NO24P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60439" - metanetx.chemical: "MNXM57464" - sbo: "SBO:0000247" - - !!omap - - id: "s_0862" - - name: "inositol phosphomannosylinositol phosphoceramide A (C24)" - - compartment: "g" - - formula: "C60H117NO24P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0862" + - name: "inositol phosphomannosylinositol phosphoceramide A (C24)" + - compartment: "g" + - formula: "C60H117NO24P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60439" - metanetx.chemical: "MNXM57464" - sbo: "SBO:0000247" - - !!omap - - id: "s_0863" - - name: "inositol phosphomannosylinositol phosphoceramide A (C24)" - - compartment: "m" - - formula: "C60H117NO24P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0863" + - name: "inositol phosphomannosylinositol phosphoceramide A (C24)" + - compartment: "m" + - formula: "C60H117NO24P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60439" - metanetx.chemical: "MNXM57464" - sbo: "SBO:0000247" - - !!omap - - id: "s_0864" - - name: "inositol phosphomannosylinositol phosphoceramide A (C26)" - - compartment: "er" - - formula: "C62H121NO24P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0864" + - name: "inositol phosphomannosylinositol phosphoceramide A (C26)" + - compartment: "er" + - formula: "C62H121NO24P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62715" - metanetx.chemical: "MNXM527419" - sbo: "SBO:0000247" - - !!omap - - id: "s_0865" - - name: "inositol phosphomannosylinositol phosphoceramide A (C26)" - - compartment: "g" - - formula: "C62H121NO24P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0865" + - name: "inositol phosphomannosylinositol phosphoceramide A (C26)" + - compartment: "g" + - formula: "C62H121NO24P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62715" - metanetx.chemical: "MNXM527419" - sbo: "SBO:0000247" - - !!omap - - id: "s_0866" - - name: "inositol phosphomannosylinositol phosphoceramide A (C26)" - - compartment: "m" - - formula: "C62H121NO24P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0866" + - name: "inositol phosphomannosylinositol phosphoceramide A (C26)" + - compartment: "m" + - formula: "C62H121NO24P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62715" - metanetx.chemical: "MNXM527419" - sbo: "SBO:0000247" - - !!omap - - id: "s_0867" - - name: "inositol phosphomannosylinositol phosphoceramide B (C24)" - - compartment: "er" - - formula: "C60H117NO25P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0867" + - name: "inositol phosphomannosylinositol phosphoceramide B (C24)" + - compartment: "er" + - formula: "C60H117NO25P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60443" - metanetx.chemical: "MNXM527425" - sbo: "SBO:0000247" - - !!omap - - id: "s_0868" - - name: "inositol phosphomannosylinositol phosphoceramide B (C24)" - - compartment: "g" - - formula: "C60H117NO25P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0868" + - name: "inositol phosphomannosylinositol phosphoceramide B (C24)" + - compartment: "g" + - formula: "C60H117NO25P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60443" - metanetx.chemical: "MNXM527425" - sbo: "SBO:0000247" - - !!omap - - id: "s_0869" - - name: "inositol phosphomannosylinositol phosphoceramide B (C24)" - - compartment: "m" - - formula: "C60H117NO25P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0869" + - name: "inositol phosphomannosylinositol phosphoceramide B (C24)" + - compartment: "m" + - formula: "C60H117NO25P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60443" - metanetx.chemical: "MNXM527425" - sbo: "SBO:0000247" - - !!omap - - id: "s_0870" - - name: "inositol phosphomannosylinositol phosphoceramide B (C26)" - - compartment: "er" - - formula: "C62H121NO25P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0870" + - name: "inositol phosphomannosylinositol phosphoceramide B (C26)" + - compartment: "er" + - formula: "C62H121NO25P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62719" - metanetx.chemical: "MNXM527421" - sbo: "SBO:0000247" - - !!omap - - id: "s_0871" - - name: "inositol phosphomannosylinositol phosphoceramide B (C26)" - - compartment: "g" - - formula: "C62H121NO25P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0871" + - name: "inositol phosphomannosylinositol phosphoceramide B (C26)" + - compartment: "g" + - formula: "C62H121NO25P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62719" - metanetx.chemical: "MNXM527421" - sbo: "SBO:0000247" - - !!omap - - id: "s_0872" - - name: "inositol phosphomannosylinositol phosphoceramide B (C26)" - - compartment: "m" - - formula: "C62H121NO25P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0872" + - name: "inositol phosphomannosylinositol phosphoceramide B (C26)" + - compartment: "m" + - formula: "C62H121NO25P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62719" - metanetx.chemical: "MNXM527421" - sbo: "SBO:0000247" - - !!omap - - id: "s_0873" - - name: "inositol phosphomannosylinositol phosphoceramide B' (C24)" - - compartment: "er" - - formula: "C60H117NO25P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0873" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C24)" + - compartment: "er" + - formula: "C60H117NO25P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60441" - metanetx.chemical: "MNXM527422" - sbo: "SBO:0000247" - - !!omap - - id: "s_0874" - - name: "inositol phosphomannosylinositol phosphoceramide B' (C24)" - - compartment: "g" - - formula: "C60H117NO25P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0874" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C24)" + - compartment: "g" + - formula: "C60H117NO25P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60441" - metanetx.chemical: "MNXM527422" - sbo: "SBO:0000247" - - !!omap - - id: "s_0875" - - name: "inositol phosphomannosylinositol phosphoceramide B' (C24)" - - compartment: "m" - - formula: "C60H117NO25P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0875" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C24)" + - compartment: "m" + - formula: "C60H117NO25P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60441" - metanetx.chemical: "MNXM527422" - sbo: "SBO:0000247" - - !!omap - - id: "s_0876" - - name: "inositol phosphomannosylinositol phosphoceramide B' (C26)" - - compartment: "er" - - formula: "C62H121NO25P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0876" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C26)" + - compartment: "er" + - formula: "C62H121NO25P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62717" - metanetx.chemical: "MNXM527418" - sbo: "SBO:0000247" - - !!omap - - id: "s_0877" - - name: "inositol phosphomannosylinositol phosphoceramide B' (C26)" - - compartment: "g" - - formula: "C62H121NO25P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0877" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C26)" + - compartment: "g" + - formula: "C62H121NO25P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62717" - metanetx.chemical: "MNXM527418" - sbo: "SBO:0000247" - - !!omap - - id: "s_0878" - - name: "inositol phosphomannosylinositol phosphoceramide B' (C26)" - - compartment: "m" - - formula: "C62H121NO25P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0878" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C26)" + - compartment: "m" + - formula: "C62H121NO25P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62717" - metanetx.chemical: "MNXM527418" - sbo: "SBO:0000247" - - !!omap - - id: "s_0879" - - name: "inositol phosphomannosylinositol phosphoceramide C (C24)" - - compartment: "er" - - formula: "C60H117NO26P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0879" + - name: "inositol phosphomannosylinositol phosphoceramide C (C24)" + - compartment: "er" + - formula: "C60H117NO26P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60445" - metanetx.chemical: "MNXM527424" - sbo: "SBO:0000247" - - !!omap - - id: "s_0880" - - name: "inositol phosphomannosylinositol phosphoceramide C (C24)" - - compartment: "g" - - formula: "C60H117NO26P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0880" + - name: "inositol phosphomannosylinositol phosphoceramide C (C24)" + - compartment: "g" + - formula: "C60H117NO26P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60445" - metanetx.chemical: "MNXM527424" - sbo: "SBO:0000247" - - !!omap - - id: "s_0881" - - name: "inositol phosphomannosylinositol phosphoceramide C (C24)" - - compartment: "m" - - formula: "C60H117NO26P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0881" + - name: "inositol phosphomannosylinositol phosphoceramide C (C24)" + - compartment: "m" + - formula: "C60H117NO26P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60445" - metanetx.chemical: "MNXM527424" - sbo: "SBO:0000247" - - !!omap - - id: "s_0882" - - name: "inositol phosphomannosylinositol phosphoceramide C (C26)" - - compartment: "er" - - formula: "C62H121NO26P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0882" + - name: "inositol phosphomannosylinositol phosphoceramide C (C26)" + - compartment: "er" + - formula: "C62H121NO26P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53005" - metanetx.chemical: "MNXM57469" - sbo: "SBO:0000247" - - !!omap - - id: "s_0883" - - name: "inositol phosphomannosylinositol phosphoceramide C (C26)" - - compartment: "g" - - formula: "C62H121NO26P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0883" + - name: "inositol phosphomannosylinositol phosphoceramide C (C26)" + - compartment: "g" + - formula: "C62H121NO26P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53005" - metanetx.chemical: "MNXM57469" - sbo: "SBO:0000247" - - !!omap - - id: "s_0884" - - name: "inositol phosphomannosylinositol phosphoceramide C (C26)" - - compartment: "m" - - formula: "C62H121NO26P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0884" + - name: "inositol phosphomannosylinositol phosphoceramide C (C26)" + - compartment: "m" + - formula: "C62H121NO26P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53005" - metanetx.chemical: "MNXM57469" - sbo: "SBO:0000247" - - !!omap - - id: "s_0885" - - name: "inositol phosphomannosylinositol phosphoceramide D (C24)" - - compartment: "er" - - formula: "C60H117NO27P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0885" + - name: "inositol phosphomannosylinositol phosphoceramide D (C24)" + - compartment: "er" + - formula: "C60H117NO27P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60446" - metanetx.chemical: "MNXM527423" - sbo: "SBO:0000247" - - !!omap - - id: "s_0886" - - name: "inositol phosphomannosylinositol phosphoceramide D (C24)" - - compartment: "g" - - formula: "C60H117NO27P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0886" + - name: "inositol phosphomannosylinositol phosphoceramide D (C24)" + - compartment: "g" + - formula: "C60H117NO27P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60446" - metanetx.chemical: "MNXM527423" - sbo: "SBO:0000247" - - !!omap - - id: "s_0887" - - name: "inositol phosphomannosylinositol phosphoceramide D (C24)" - - compartment: "m" - - formula: "C60H117NO27P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0887" + - name: "inositol phosphomannosylinositol phosphoceramide D (C24)" + - compartment: "m" + - formula: "C60H117NO27P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60446" - metanetx.chemical: "MNXM527423" - sbo: "SBO:0000247" - - !!omap - - id: "s_0888" - - name: "inositol phosphomannosylinositol phosphoceramide D (C26)" - - compartment: "er" - - formula: "C62H121NO27P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0888" + - name: "inositol phosphomannosylinositol phosphoceramide D (C26)" + - compartment: "er" + - formula: "C62H121NO27P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62684" - metanetx.chemical: "MNXM527420" - sbo: "SBO:0000247" - - !!omap - - id: "s_0889" - - name: "inositol phosphomannosylinositol phosphoceramide D (C26)" - - compartment: "g" - - formula: "C62H121NO27P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0889" + - name: "inositol phosphomannosylinositol phosphoceramide D (C26)" + - compartment: "g" + - formula: "C62H121NO27P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62684" - metanetx.chemical: "MNXM527420" - sbo: "SBO:0000247" - - !!omap - - id: "s_0890" - - name: "inositol phosphomannosylinositol phosphoceramide D (C26)" - - compartment: "m" - - formula: "C62H121NO27P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0890" + - name: "inositol phosphomannosylinositol phosphoceramide D (C26)" + - compartment: "m" + - formula: "C62H121NO27P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62684" - metanetx.chemical: "MNXM527420" - sbo: "SBO:0000247" - - !!omap - - id: "s_0892" - - name: "inositol-P-ceramide backbone" - - compartment: "g" - - formula: "C6H12NO10P" - - annotation: !!omap + - !!omap + - id: "s_0892" + - name: "inositol-P-ceramide backbone" + - compartment: "g" + - formula: "C6H12NO10P" + - annotation: !!omap - chebi: "CHEBI:60245" - metanetx.chemical: "MNXM57446" - sbo: "SBO:0000649" - - !!omap - - id: "s_0894" - - name: "inositol-P-ceramide A (C24)" - - compartment: "er" - - formula: "C48H96NO11P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0894" + - name: "inositol-P-ceramide A (C24)" + - compartment: "er" + - formula: "C48H96NO11P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60402" - metanetx.chemical: "MNXM57476" - sbo: "SBO:0000247" - - !!omap - - id: "s_0895" - - name: "inositol-P-ceramide A (C24)" - - compartment: "g" - - formula: "C48H96NO11P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0895" + - name: "inositol-P-ceramide A (C24)" + - compartment: "g" + - formula: "C48H96NO11P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60402" - metanetx.chemical: "MNXM57476" - sbo: "SBO:0000247" - - !!omap - - id: "s_0896" - - name: "inositol-P-ceramide A (C24)" - - compartment: "m" - - formula: "C48H96NO11P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0896" + - name: "inositol-P-ceramide A (C24)" + - compartment: "m" + - formula: "C48H96NO11P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60402" - metanetx.chemical: "MNXM57476" - sbo: "SBO:0000247" - - !!omap - - id: "s_0897" - - name: "inositol-P-ceramide A (C26)" - - compartment: "er" - - formula: "C50H100NO11P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0897" + - name: "inositol-P-ceramide A (C26)" + - compartment: "er" + - formula: "C50H100NO11P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60405" - metanetx.chemical: "MNXM57477" - sbo: "SBO:0000247" - - !!omap - - id: "s_0898" - - name: "inositol-P-ceramide A (C26)" - - compartment: "g" - - formula: "C50H100NO11P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0898" + - name: "inositol-P-ceramide A (C26)" + - compartment: "g" + - formula: "C50H100NO11P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60405" - metanetx.chemical: "MNXM57477" - sbo: "SBO:0000247" - - !!omap - - id: "s_0899" - - name: "inositol-P-ceramide A (C26)" - - compartment: "m" - - formula: "C50H100NO11P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0899" + - name: "inositol-P-ceramide A (C26)" + - compartment: "m" + - formula: "C50H100NO11P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60405" - metanetx.chemical: "MNXM57477" - sbo: "SBO:0000247" - - !!omap - - id: "s_0900" - - name: "inositol-P-ceramide B (C24)" - - compartment: "er" - - formula: "C48H96NO12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0900" + - name: "inositol-P-ceramide B (C24)" + - compartment: "er" + - formula: "C48H96NO12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60410" - metanetx.chemical: "MNXM527429" - sbo: "SBO:0000247" - - !!omap - - id: "s_0901" - - name: "inositol-P-ceramide B (C24)" - - compartment: "g" - - formula: "C48H96NO12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0901" + - name: "inositol-P-ceramide B (C24)" + - compartment: "g" + - formula: "C48H96NO12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60410" - metanetx.chemical: "MNXM527429" - sbo: "SBO:0000247" - - !!omap - - id: "s_0902" - - name: "inositol-P-ceramide B (C24)" - - compartment: "m" - - formula: "C48H96NO12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0902" + - name: "inositol-P-ceramide B (C24)" + - compartment: "m" + - formula: "C48H96NO12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60410" - metanetx.chemical: "MNXM527429" - sbo: "SBO:0000247" - - !!omap - - id: "s_0903" - - name: "inositol-P-ceramide B (C26)" - - compartment: "er" - - formula: "C50H100NO12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0903" + - name: "inositol-P-ceramide B (C26)" + - compartment: "er" + - formula: "C50H100NO12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60412" - metanetx.chemical: "MNXM527430" - sbo: "SBO:0000247" - - !!omap - - id: "s_0904" - - name: "inositol-P-ceramide B (C26)" - - compartment: "g" - - formula: "C50H100NO12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0904" + - name: "inositol-P-ceramide B (C26)" + - compartment: "g" + - formula: "C50H100NO12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60412" - metanetx.chemical: "MNXM527430" - sbo: "SBO:0000247" - - !!omap - - id: "s_0905" - - name: "inositol-P-ceramide B (C26)" - - compartment: "m" - - formula: "C50H100NO12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0905" + - name: "inositol-P-ceramide B (C26)" + - compartment: "m" + - formula: "C50H100NO12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60412" - metanetx.chemical: "MNXM527430" - sbo: "SBO:0000247" - - !!omap - - id: "s_0906" - - name: "inositol-P-ceramide B' (C24)" - - compartment: "er" - - formula: "C48H96NO12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0906" + - name: "inositol-P-ceramide B' (C24)" + - compartment: "er" + - formula: "C48H96NO12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60406" - metanetx.chemical: "MNXM57474" - sbo: "SBO:0000247" - - !!omap - - id: "s_0907" - - name: "inositol-P-ceramide B' (C24)" - - compartment: "g" - - formula: "C48H96NO12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0907" + - name: "inositol-P-ceramide B' (C24)" + - compartment: "g" + - formula: "C48H96NO12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60406" - metanetx.chemical: "MNXM57474" - sbo: "SBO:0000247" - - !!omap - - id: "s_0908" - - name: "inositol-P-ceramide B' (C24)" - - compartment: "m" - - formula: "C48H96NO12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0908" + - name: "inositol-P-ceramide B' (C24)" + - compartment: "m" + - formula: "C48H96NO12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60406" - metanetx.chemical: "MNXM57474" - sbo: "SBO:0000247" - - !!omap - - id: "s_0909" - - name: "inositol-P-ceramide B' (C26)" - - compartment: "er" - - formula: "C50H100NO12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0909" + - name: "inositol-P-ceramide B' (C26)" + - compartment: "er" + - formula: "C50H100NO12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60409" - metanetx.chemical: "MNXM57475" - sbo: "SBO:0000247" - - !!omap - - id: "s_0910" - - name: "inositol-P-ceramide B' (C26)" - - compartment: "g" - - formula: "C50H100NO12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0910" + - name: "inositol-P-ceramide B' (C26)" + - compartment: "g" + - formula: "C50H100NO12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60409" - metanetx.chemical: "MNXM57475" - sbo: "SBO:0000247" - - !!omap - - id: "s_0911" - - name: "inositol-P-ceramide B' (C26)" - - compartment: "m" - - formula: "C50H100NO12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0911" + - name: "inositol-P-ceramide B' (C26)" + - compartment: "m" + - formula: "C50H100NO12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60409" - metanetx.chemical: "MNXM57475" - sbo: "SBO:0000247" - - !!omap - - id: "s_0912" - - name: "inositol-P-ceramide C (C24)" - - compartment: "er" - - formula: "C48H96NO13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0912" + - name: "inositol-P-ceramide C (C24)" + - compartment: "er" + - formula: "C48H96NO13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60413" - metanetx.chemical: "MNXM527428" - sbo: "SBO:0000247" - - !!omap - - id: "s_0913" - - name: "inositol-P-ceramide C (C24)" - - compartment: "g" - - formula: "C48H96NO13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0913" + - name: "inositol-P-ceramide C (C24)" + - compartment: "g" + - formula: "C48H96NO13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60413" - metanetx.chemical: "MNXM527428" - sbo: "SBO:0000247" - - !!omap - - id: "s_0914" - - name: "inositol-P-ceramide C (C24)" - - compartment: "m" - - formula: "C48H96NO13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0914" + - name: "inositol-P-ceramide C (C24)" + - compartment: "m" + - formula: "C48H96NO13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60413" - metanetx.chemical: "MNXM527428" - sbo: "SBO:0000247" - - !!omap - - id: "s_0915" - - name: "inositol-P-ceramide C (C26)" - - compartment: "er" - - formula: "C50H100NO13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0915" + - name: "inositol-P-ceramide C (C26)" + - compartment: "er" + - formula: "C50H100NO13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53004" - metanetx.chemical: "MNXM57486" - sbo: "SBO:0000247" - - !!omap - - id: "s_0916" - - name: "inositol-P-ceramide C (C26)" - - compartment: "g" - - formula: "C50H100NO13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0916" + - name: "inositol-P-ceramide C (C26)" + - compartment: "g" + - formula: "C50H100NO13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53004" - metanetx.chemical: "MNXM57486" - sbo: "SBO:0000247" - - !!omap - - id: "s_0917" - - name: "inositol-P-ceramide C (C26)" - - compartment: "m" - - formula: "C50H100NO13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0917" + - name: "inositol-P-ceramide C (C26)" + - compartment: "m" + - formula: "C50H100NO13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53004" - metanetx.chemical: "MNXM57486" - sbo: "SBO:0000247" - - !!omap - - id: "s_0918" - - name: "inositol-P-ceramide D (C24)" - - compartment: "er" - - formula: "C48H96NO14P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0918" + - name: "inositol-P-ceramide D (C24)" + - compartment: "er" + - formula: "C48H96NO14P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60414" - metanetx.chemical: "MNXM527426" - sbo: "SBO:0000247" - - !!omap - - id: "s_0919" - - name: "inositol-P-ceramide D (C24)" - - compartment: "g" - - formula: "C48H96NO14P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0919" + - name: "inositol-P-ceramide D (C24)" + - compartment: "g" + - formula: "C48H96NO14P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60414" - metanetx.chemical: "MNXM527426" - sbo: "SBO:0000247" - - !!omap - - id: "s_0920" - - name: "inositol-P-ceramide D (C24)" - - compartment: "m" - - formula: "C48H96NO14P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0920" + - name: "inositol-P-ceramide D (C24)" + - compartment: "m" + - formula: "C48H96NO14P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60414" - metanetx.chemical: "MNXM527426" - sbo: "SBO:0000247" - - !!omap - - id: "s_0921" - - name: "inositol-P-ceramide D (C26)" - - compartment: "er" - - formula: "C50H100NO14P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0921" + - name: "inositol-P-ceramide D (C26)" + - compartment: "er" + - formula: "C50H100NO14P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60415" - metanetx.chemical: "MNXM527427" - sbo: "SBO:0000247" - - !!omap - - id: "s_0922" - - name: "inositol-P-ceramide D (C26)" - - compartment: "g" - - formula: "C50H100NO14P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0922" + - name: "inositol-P-ceramide D (C26)" + - compartment: "g" + - formula: "C50H100NO14P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60415" - metanetx.chemical: "MNXM527427" - sbo: "SBO:0000247" - - !!omap - - id: "s_0923" - - name: "inositol-P-ceramide D (C26)" - - compartment: "m" - - formula: "C50H100NO14P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0923" + - name: "inositol-P-ceramide D (C26)" + - compartment: "m" + - formula: "C50H100NO14P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60415" - metanetx.chemical: "MNXM527427" - sbo: "SBO:0000247" - - !!omap - - id: "s_0924" - - name: "iron(2+)" - - compartment: "c" - - formula: "Fe" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_0924" + - name: "iron(2+)" + - compartment: "c" + - formula: "Fe" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "fe2" - chebi: "CHEBI:29033" - kegg.compound: "C14818" - metanetx.chemical: "MNXM111" - sbo: "SBO:0000247" - - !!omap - - id: "s_0925" - - name: "iron(2+)" - - compartment: "e" - - formula: "Fe" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_0925" + - name: "iron(2+)" + - compartment: "e" + - formula: "Fe" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "fe2" - chebi: "CHEBI:29033" - kegg.compound: "C14818" - metanetx.chemical: "MNXM111" - sbo: "SBO:0000247" - - !!omap - - id: "s_0926" - - name: "iron(2+)" - - compartment: "m" - - formula: "Fe" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_0926" + - name: "iron(2+)" + - compartment: "m" + - formula: "Fe" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "fe2" - chebi: "CHEBI:29033" - kegg.compound: "C14818" - metanetx.chemical: "MNXM111" - sbo: "SBO:0000247" - - !!omap - - id: "s_0927" - - name: "isoamyl acetate" - - compartment: "c" - - formula: "C7H14O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0927" + - name: "isoamyl acetate" + - compartment: "c" + - formula: "C7H14O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "iamac" - chebi: "CHEBI:31725" - kegg.compound: "C12296" - metanetx.chemical: "MNXM7451" - sbo: "SBO:0000247" - - !!omap - - id: "s_0928" - - name: "isoamyl acetate" - - compartment: "e" - - formula: "C7H14O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0928" + - name: "isoamyl acetate" + - compartment: "e" + - formula: "C7H14O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "iamac" - chebi: "CHEBI:31725" - kegg.compound: "C12296" - metanetx.chemical: "MNXM7451" - sbo: "SBO:0000247" - - !!omap - - id: "s_0929" - - name: "isoamylol" - - compartment: "c" - - formula: "C5H12O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0929" + - name: "isoamylol" + - compartment: "c" + - formula: "C5H12O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "iamoh" - chebi: "CHEBI:15837" - kegg.compound: "C07328" - metanetx.chemical: "MNXM1670" - sbo: "SBO:0000247" - - !!omap - - id: "s_0930" - - name: "isoamylol" - - compartment: "e" - - formula: "C5H12O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0930" + - name: "isoamylol" + - compartment: "e" + - formula: "C5H12O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "iamoh" - chebi: "CHEBI:15837" - kegg.compound: "C07328" - metanetx.chemical: "MNXM1670" - sbo: "SBO:0000247" - - !!omap - - id: "s_0931" - - name: "isoamylol" - - compartment: "m" - - formula: "C5H12O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0931" + - name: "isoamylol" + - compartment: "m" + - formula: "C5H12O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "iamoh" - chebi: "CHEBI:15837" - kegg.compound: "C07328" - metanetx.chemical: "MNXM1670" - sbo: "SBO:0000247" - - !!omap - - id: "s_0932" - - name: "isobutanol" - - compartment: "c" - - formula: "C4H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0932" + - name: "isobutanol" + - compartment: "c" + - formula: "C4H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ibutoh" - chebi: "CHEBI:46645" - kegg.compound: "C14710" - metanetx.chemical: "MNXM5188" - sbo: "SBO:0000247" - - !!omap - - id: "s_0933" - - name: "isobutanol" - - compartment: "e" - - formula: "C4H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0933" + - name: "isobutanol" + - compartment: "e" + - formula: "C4H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ibutoh" - chebi: "CHEBI:46645" - kegg.compound: "C14710" - metanetx.chemical: "MNXM5188" - sbo: "SBO:0000247" - - !!omap - - id: "s_0934" - - name: "isobutanol" - - compartment: "m" - - formula: "C4H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0934" + - name: "isobutanol" + - compartment: "m" + - formula: "C4H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ibutoh" - chebi: "CHEBI:46645" - kegg.compound: "C14710" - metanetx.chemical: "MNXM5188" - sbo: "SBO:0000247" - - !!omap - - id: "s_0935" - - name: "isobutyl acetate" - - compartment: "c" - - formula: "C6H12O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0935" + - name: "isobutyl acetate" + - compartment: "c" + - formula: "C6H12O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ibutac" - chebi: "CHEBI:50569" - metanetx.chemical: "MNXM57835" - sbo: "SBO:0000247" - - !!omap - - id: "s_0936" - - name: "isobutyl acetate" - - compartment: "e" - - formula: "C6H12O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0936" + - name: "isobutyl acetate" + - compartment: "e" + - formula: "C6H12O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ibutac" - chebi: "CHEBI:50569" - metanetx.chemical: "MNXM57835" - sbo: "SBO:0000247" - - !!omap - - id: "s_0937" - - name: "isobutyraldehyde" - - compartment: "c" - - formula: "C4H8O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0937" + - name: "isobutyraldehyde" + - compartment: "c" + - formula: "C4H8O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2mppal" - chebi: "CHEBI:48943" - metanetx.chemical: "MNXM5189" - sbo: "SBO:0000247" - - !!omap - - id: "s_0938" - - name: "isobutyraldehyde" - - compartment: "e" - - formula: "C4H8O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0938" + - name: "isobutyraldehyde" + - compartment: "e" + - formula: "C4H8O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2mppal" - chebi: "CHEBI:48943" - metanetx.chemical: "MNXM5189" - sbo: "SBO:0000247" - - !!omap - - id: "s_0939" - - name: "isobutyraldehyde" - - compartment: "m" - - formula: "C4H8O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0939" + - name: "isobutyraldehyde" + - compartment: "m" + - formula: "C4H8O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2mppal" - chebi: "CHEBI:48943" - metanetx.chemical: "MNXM5189" - sbo: "SBO:0000247" - - !!omap - - id: "s_0940" - - name: "isocitrate" - - compartment: "c" - - formula: "C6H5O7" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0940" + - name: "isocitrate" + - compartment: "c" + - formula: "C6H5O7" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "icit" - chebi: "CHEBI:16087" - kegg.compound: "C00311" - metanetx.chemical: "MNXM89661" - sbo: "SBO:0000247" - - !!omap - - id: "s_0941" - - name: "isocitrate" - - compartment: "m" - - formula: "C6H5O7" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0941" + - name: "isocitrate" + - compartment: "m" + - formula: "C6H5O7" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "icit" - chebi: "CHEBI:16087" - kegg.compound: "C00311" - metanetx.chemical: "MNXM89661" - sbo: "SBO:0000247" - - !!omap - - id: "s_0942" - - name: "isocitrate" - - compartment: "p" - - formula: "C6H5O7" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0942" + - name: "isocitrate" + - compartment: "p" + - formula: "C6H5O7" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "icit" - chebi: "CHEBI:16087" - kegg.compound: "C00311" - metanetx.chemical: "MNXM89661" - sbo: "SBO:0000247" - - !!omap - - id: "s_0943" - - name: "isopentenyl diphosphate" - - compartment: "c" - - formula: "C5H9O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0943" + - name: "isopentenyl diphosphate" + - compartment: "c" + - formula: "C5H9O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ipdp" - chebi: "CHEBI:128769" - kegg.compound: "C00129" - metanetx.chemical: "MNXM83" - sbo: "SBO:0000247" - - !!omap - - id: "s_0944" - - name: "isopentenyl diphosphate" - - compartment: "lp" - - formula: "C5H9O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0944" + - name: "isopentenyl diphosphate" + - compartment: "lp" + - formula: "C5H9O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ipdp" - chebi: "CHEBI:128769" - kegg.compound: "C00129" - metanetx.chemical: "MNXM83" - sbo: "SBO:0000247" - - !!omap - - id: "s_0945" - - name: "isopentenyl diphosphate" - - compartment: "m" - - formula: "C5H9O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_0945" + - name: "isopentenyl diphosphate" + - compartment: "m" + - formula: "C5H9O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ipdp" - chebi: "CHEBI:128769" - kegg.compound: "C00129" - metanetx.chemical: "MNXM83" - sbo: "SBO:0000247" - - !!omap - - id: "s_0946" - - name: "itaconate" - - compartment: "m" - - formula: "C5H4O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0946" + - name: "itaconate" + - compartment: "m" + - formula: "C5H4O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "itacon" - chebi: "CHEBI:17240" - kegg.compound: "C00490" - metanetx.chemical: "MNXM1747" - sbo: "SBO:0000247" - - !!omap - - id: "s_0949" - - name: "itaconyl-CoA" - - compartment: "m" - - formula: "C26H35N7O19P3S" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_0949" + - name: "itaconyl-CoA" + - compartment: "m" + - formula: "C26H35N7O19P3S" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "itaccoa" - chebi: "CHEBI:57381" - kegg.compound: "C00531" - metanetx.chemical: "MNXM1671" - sbo: "SBO:0000247" - - !!omap - - id: "s_0950" - - name: "ITP" - - compartment: "c" - - formula: "C10H11N4O14P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_0950" + - name: "ITP" + - compartment: "c" + - formula: "C10H11N4O14P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "itp" - chebi: "CHEBI:61402" - kegg.compound: "C00081" - metanetx.chemical: "MNXM423" - sbo: "SBO:0000247" - - !!omap - - id: "s_0951" - - name: "keto-phenylpyruvate" - - compartment: "c" - - formula: "C9H7O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0951" + - name: "keto-phenylpyruvate" + - compartment: "c" + - formula: "C9H7O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "phpyr" - chebi: "CHEBI:18005" - kegg.compound: "C00166" - metanetx.chemical: "MNXM162242" - sbo: "SBO:0000247" - - !!omap - - id: "s_0952" - - name: "L-2-amino-3-oxobutanoate" - - compartment: "c" - - formula: "C4H7NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0952" + - name: "L-2-amino-3-oxobutanoate" + - compartment: "c" + - formula: "C4H7NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2aobut" - chebi: "CHEBI:40673" - kegg.compound: "C03508" - metanetx.chemical: "MNXM114087" - sbo: "SBO:0000247" - - !!omap - - id: "s_0953" - - name: "L-2-aminoadipate" - - compartment: "c" - - formula: "C6H10NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0953" + - name: "L-2-aminoadipate" + - compartment: "c" + - formula: "C6H10NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "L2aadp" - chebi: "CHEBI:58672" - kegg.compound: "C00956" - metanetx.chemical: "MNXM268" - sbo: "SBO:0000247" - - !!omap - - id: "s_0954" - - name: "L-4-hydroxyglutamic semialdehyde" - - compartment: "m" - - formula: "C5H9NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0954" + - name: "L-4-hydroxyglutamic semialdehyde" + - compartment: "m" + - formula: "C5H9NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4hglusa" - chebi: "CHEBI:27809" - kegg.compound: "C05938" - metanetx.chemical: "MNXM2687" - sbo: "SBO:0000247" - - !!omap - - id: "s_0955" - - name: "L-alanine" - - compartment: "c" - - formula: "C3H7NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0955" + - name: "L-alanine" + - compartment: "c" + - formula: "C3H7NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala__L" - chebi: "CHEBI:16977" - kegg.compound: "C00041" - metanetx.chemical: "MNXM32" - sbo: "SBO:0000247" - - !!omap - - id: "s_0956" - - name: "L-alanine" - - compartment: "e" - - formula: "C3H7NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0956" + - name: "L-alanine" + - compartment: "e" + - formula: "C3H7NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala__L" - chebi: "CHEBI:16977" - kegg.compound: "C00041" - metanetx.chemical: "MNXM32" - sbo: "SBO:0000247" - - !!omap - - id: "s_0957" - - name: "L-alanine" - - compartment: "m" - - formula: "C3H7NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0957" + - name: "L-alanine" + - compartment: "m" + - formula: "C3H7NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala__L" - chebi: "CHEBI:16977" - kegg.compound: "C00041" - metanetx.chemical: "MNXM32" - sbo: "SBO:0000247" - - !!omap - - id: "s_0958" - - name: "L-allothreonine" - - compartment: "c" - - formula: "C4H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0958" + - name: "L-allothreonine" + - compartment: "c" + - formula: "C4H9NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "athr__L" - chebi: "CHEBI:28718" - kegg.compound: "C05519" - metanetx.chemical: "MNXM2125" - sbo: "SBO:0000247" - - !!omap - - id: "s_0959" - - name: "L-allysine" - - compartment: "c" - - formula: "C6H11NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0959" + - name: "L-allysine" + - compartment: "c" + - formula: "C6H11NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "L2aadp6sa" - chebi: "CHEBI:17917" - kegg.compound: "C04076" - metanetx.chemical: "MNXM89905" - sbo: "SBO:0000247" - - !!omap - - id: "s_0960" - - name: "L-alpha-formylglycine" - - compartment: "c" - - formula: "C3H5NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0960" + - name: "L-alpha-formylglycine" + - compartment: "c" + - formula: "C3H5NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2amsa" - chebi: "CHEBI:58671" - kegg.compound: "C11822" - metanetx.chemical: "MNXM2124" - sbo: "SBO:0000247" - - !!omap - - id: "s_0961" - - name: "L-arabinitol" - - compartment: "c" - - formula: "C5H12O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0961" + - name: "L-arabinitol" + - compartment: "c" + - formula: "C5H12O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "abt" - chebi: "CHEBI:18403" - kegg.compound: "C00532" - metanetx.chemical: "MNXM801" - sbo: "SBO:0000247" - - !!omap - - id: "s_0962" - - name: "L-arabinitol" - - compartment: "e" - - formula: "C5H12O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0962" + - name: "L-arabinitol" + - compartment: "e" + - formula: "C5H12O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "abt" - chebi: "CHEBI:18403" - kegg.compound: "C00532" - metanetx.chemical: "MNXM801" - sbo: "SBO:0000247" - - !!omap - - id: "s_0963" - - name: "L-arabinose" - - compartment: "c" - - formula: "C5H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0963" + - name: "L-arabinose" + - compartment: "c" + - formula: "C5H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "arab__L" - chebi: "CHEBI:30849" - kegg.compound: "C00259" - metanetx.chemical: "MNXM461" - sbo: "SBO:0000247" - - !!omap - - id: "s_0964" - - name: "L-arabinose" - - compartment: "e" - - formula: "C5H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0964" + - name: "L-arabinose" + - compartment: "e" + - formula: "C5H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "arab__L" - chebi: "CHEBI:30849" - kegg.compound: "C00259" - metanetx.chemical: "MNXM461" - sbo: "SBO:0000247" - - !!omap - - id: "s_0965" - - name: "L-arginine" - - compartment: "c" - - formula: "C6H15N4O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0965" + - name: "L-arginine" + - compartment: "c" + - formula: "C6H15N4O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "arg__L" - chebi: "CHEBI:32682" - kegg.compound: "C00062" - metanetx.chemical: "MNXM70" - sbo: "SBO:0000247" - - !!omap - - id: "s_0966" - - name: "L-arginine" - - compartment: "e" - - formula: "C6H15N4O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0966" + - name: "L-arginine" + - compartment: "e" + - formula: "C6H15N4O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "arg__L" - chebi: "CHEBI:32682" - kegg.compound: "C00062" - metanetx.chemical: "MNXM70" - sbo: "SBO:0000247" - - !!omap - - id: "s_0967" - - name: "L-arginine" - - compartment: "m" - - formula: "C6H15N4O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0967" + - name: "L-arginine" + - compartment: "m" + - formula: "C6H15N4O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "arg__L" - chebi: "CHEBI:32682" - kegg.compound: "C00062" - metanetx.chemical: "MNXM70" - sbo: "SBO:0000247" - - !!omap - - id: "s_0968" - - name: "L-arginine" - - compartment: "v" - - formula: "C6H15N4O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_0968" + - name: "L-arginine" + - compartment: "v" + - formula: "C6H15N4O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "arg__L" - chebi: "CHEBI:32682" - kegg.compound: "C00062" - metanetx.chemical: "MNXM70" - sbo: "SBO:0000247" - - !!omap - - id: "s_0969" - - name: "L-asparagine" - - compartment: "c" - - formula: "C4H8N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0969" + - name: "L-asparagine" + - compartment: "c" + - formula: "C4H8N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "asn__L" - chebi: "CHEBI:17196" - kegg.compound: "C00152" - metanetx.chemical: "MNXM147" - sbo: "SBO:0000247" - - !!omap - - id: "s_0970" - - name: "L-asparagine" - - compartment: "e" - - formula: "C4H8N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0970" + - name: "L-asparagine" + - compartment: "e" + - formula: "C4H8N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "asn__L" - chebi: "CHEBI:17196" - kegg.compound: "C00152" - metanetx.chemical: "MNXM147" - sbo: "SBO:0000247" - - !!omap - - id: "s_0971" - - name: "L-asparagine" - - compartment: "m" - - formula: "C4H8N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0971" + - name: "L-asparagine" + - compartment: "m" + - formula: "C4H8N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "asn__L" - chebi: "CHEBI:17196" - kegg.compound: "C00152" - metanetx.chemical: "MNXM147" - sbo: "SBO:0000247" - - !!omap - - id: "s_0972" - - name: "L-asparagine" - - compartment: "v" - - formula: "C4H8N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0972" + - name: "L-asparagine" + - compartment: "v" + - formula: "C4H8N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "asn__L" - chebi: "CHEBI:17196" - kegg.compound: "C00152" - metanetx.chemical: "MNXM147" - sbo: "SBO:0000247" - - !!omap - - id: "s_0973" - - name: "L-aspartate" - - compartment: "c" - - formula: "C4H6NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0973" + - name: "L-aspartate" + - compartment: "c" + - formula: "C4H6NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "asp__L" - chebi: "CHEBI:29991" - kegg.compound: "C00049" - metanetx.chemical: "MNXM42" - sbo: "SBO:0000247" - - !!omap - - id: "s_0974" - - name: "L-aspartate" - - compartment: "e" - - formula: "C4H6NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0974" + - name: "L-aspartate" + - compartment: "e" + - formula: "C4H6NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "asp__L" - chebi: "CHEBI:29991" - kegg.compound: "C00049" - metanetx.chemical: "MNXM42" - sbo: "SBO:0000247" - - !!omap - - id: "s_0975" - - name: "L-aspartate" - - compartment: "m" - - formula: "C4H6NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0975" + - name: "L-aspartate" + - compartment: "m" + - formula: "C4H6NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "asp__L" - chebi: "CHEBI:29991" - kegg.compound: "C00049" - metanetx.chemical: "MNXM42" - sbo: "SBO:0000247" - - !!omap - - id: "s_0976" - - name: "L-aspartate" - - compartment: "p" - - formula: "C4H6NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0976" + - name: "L-aspartate" + - compartment: "p" + - formula: "C4H6NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "asp__L" - chebi: "CHEBI:29991" - kegg.compound: "C00049" - metanetx.chemical: "MNXM42" - sbo: "SBO:0000247" - - !!omap - - id: "s_0977" - - name: "L-aspartate" - - compartment: "v" - - formula: "C4H6NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0977" + - name: "L-aspartate" + - compartment: "v" + - formula: "C4H6NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "asp__L" - chebi: "CHEBI:29991" - kegg.compound: "C00049" - metanetx.chemical: "MNXM42" - sbo: "SBO:0000247" - - !!omap - - id: "s_0978" - - name: "L-aspartate 4-semialdehyde" - - compartment: "c" - - formula: "C4H7NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0978" + - name: "L-aspartate 4-semialdehyde" + - compartment: "c" + - formula: "C4H7NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "aspsa" - chebi: "CHEBI:18051" - kegg.compound: "C00441" - metanetx.chemical: "MNXM361" - sbo: "SBO:0000247" - - !!omap - - id: "s_0979" - - name: "L-citrulline" - - compartment: "c" - - formula: "C6H13N3O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0979" + - name: "L-citrulline" + - compartment: "c" + - formula: "C6H13N3O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "citr__L" - chebi: "CHEBI:16349" - kegg.compound: "C00327" - metanetx.chemical: "MNXM211" - sbo: "SBO:0000247" - - !!omap - - id: "s_0980" - - name: "L-cystathionine" - - compartment: "c" - - formula: "C7H14N2O4S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0980" + - name: "L-cystathionine" + - compartment: "c" + - formula: "C7H14N2O4S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cyst__L" - chebi: "CHEBI:17482" - kegg.compound: "C02291" - metanetx.chemical: "MNXM319" - sbo: "SBO:0000247" - - !!omap - - id: "s_0981" - - name: "L-cysteine" - - compartment: "c" - - formula: "C3H7NO2S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0981" + - name: "L-cysteine" + - compartment: "c" + - formula: "C3H7NO2S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cys__L" - chebi: "CHEBI:17561" - kegg.compound: "C00097" - metanetx.chemical: "MNXM55" - sbo: "SBO:0000247" - - !!omap - - id: "s_0982" - - name: "L-cysteine" - - compartment: "e" - - formula: "C3H7NO2S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0982" + - name: "L-cysteine" + - compartment: "e" + - formula: "C3H7NO2S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cys__L" - chebi: "CHEBI:17561" - kegg.compound: "C00097" - metanetx.chemical: "MNXM55" - sbo: "SBO:0000247" - - !!omap - - id: "s_0983" - - name: "L-cysteinylglycine" - - compartment: "c" - - formula: "C5H10N2O3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0983" + - name: "L-cysteinylglycine" + - compartment: "c" + - formula: "C5H10N2O3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cgly" - chebi: "CHEBI:4047" - kegg.compound: "C01419" - metanetx.chemical: "MNXM683" - sbo: "SBO:0000247" - - !!omap - - id: "s_0984" - - name: "L-cystine" - - compartment: "c" - - formula: "C6H12N2O4S2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0984" + - name: "L-cystine" + - compartment: "c" + - formula: "C6H12N2O4S2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cysi__L" - chebi: "CHEBI:16283" - kegg.compound: "C00491" - metanetx.chemical: "MNXM927" - sbo: "SBO:0000247" - - !!omap - - id: "s_0985" - - name: "L-cystine" - - compartment: "v" - - formula: "C6H12N2O4S2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0985" + - name: "L-cystine" + - compartment: "v" + - formula: "C6H12N2O4S2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cysi__L" - chebi: "CHEBI:16283" - kegg.compound: "C00491" - metanetx.chemical: "MNXM927" - sbo: "SBO:0000247" - - !!omap - - id: "s_0986" - - name: "L-gamma-glutamyl phosphate" - - compartment: "c" - - formula: "C5H8NO7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_0986" + - name: "L-gamma-glutamyl phosphate" + - compartment: "c" + - formula: "C5H8NO7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "glu5p" - chebi: "CHEBI:58274" - kegg.compound: "C03287" - metanetx.chemical: "MNXM1280" - sbo: "SBO:0000247" - - !!omap - - id: "s_0987" - - name: "L-gamma-glutamyl-L-alanine" - - compartment: "c" - - formula: "C8H13N2O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0987" + - name: "L-gamma-glutamyl-L-alanine" + - compartment: "c" + - formula: "C8H13N2O5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gluala" - chebi: "CHEBI:50619" - kegg.compound: "C03738" - metanetx.chemical: "MNXM59390" - sbo: "SBO:0000247" - - !!omap - - id: "s_0988" - - name: "L-gamma-glutamyl-L-cysteine" - - compartment: "c" - - formula: "C8H13N2O5S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0988" + - name: "L-gamma-glutamyl-L-cysteine" + - compartment: "c" + - formula: "C8H13N2O5S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glucys" - chebi: "CHEBI:58173" - kegg.compound: "C00669" - metanetx.chemical: "MNXM412" - sbo: "SBO:0000247" - - !!omap - - id: "s_0989" - - name: "L-glucitol" - - compartment: "c" - - formula: "C6H14O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0989" + - name: "L-glucitol" + - compartment: "c" + - formula: "C6H14O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "sbt__L" - chebi: "CHEBI:28789" - kegg.compound: "C01722" - metanetx.chemical: "MNXM4638" - sbo: "SBO:0000247" - - !!omap - - id: "s_0990" - - name: "L-glucitol" - - compartment: "e" - - formula: "C6H14O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0990" + - name: "L-glucitol" + - compartment: "e" + - formula: "C6H14O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "sbt__L" - chebi: "CHEBI:28789" - kegg.compound: "C01722" - metanetx.chemical: "MNXM4638" - sbo: "SBO:0000247" - - !!omap - - id: "s_0991" - - name: "L-glutamate" - - compartment: "c" - - formula: "C5H8NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0991" + - name: "L-glutamate" + - compartment: "c" + - formula: "C5H8NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glu__L" - chebi: "CHEBI:29985" - kegg.compound: "C00025" - metanetx.chemical: "MNXM89557" - sbo: "SBO:0000247" - - !!omap - - id: "s_0992" - - name: "L-glutamate" - - compartment: "e" - - formula: "C5H8NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0992" + - name: "L-glutamate" + - compartment: "e" + - formula: "C5H8NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glu__L" - chebi: "CHEBI:29985" - kegg.compound: "C00025" - metanetx.chemical: "MNXM89557" - sbo: "SBO:0000247" - - !!omap - - id: "s_0993" - - name: "L-glutamate" - - compartment: "m" - - formula: "C5H8NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0993" + - name: "L-glutamate" + - compartment: "m" + - formula: "C5H8NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glu__L" - chebi: "CHEBI:29985" - kegg.compound: "C00025" - metanetx.chemical: "MNXM89557" - sbo: "SBO:0000247" - - !!omap - - id: "s_0994" - - name: "L-glutamate" - - compartment: "n" - - formula: "C5H8NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0994" + - name: "L-glutamate" + - compartment: "n" + - formula: "C5H8NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glu__L" - chebi: "CHEBI:29985" - kegg.compound: "C00025" - metanetx.chemical: "MNXM89557" - sbo: "SBO:0000247" - - !!omap - - id: "s_0995" - - name: "L-glutamate" - - compartment: "p" - - formula: "C5H8NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0995" + - name: "L-glutamate" + - compartment: "p" + - formula: "C5H8NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glu__L" - chebi: "CHEBI:29985" - kegg.compound: "C00025" - metanetx.chemical: "MNXM89557" - sbo: "SBO:0000247" - - !!omap - - id: "s_0996" - - name: "L-glutamate" - - compartment: "v" - - formula: "C5H8NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_0996" + - name: "L-glutamate" + - compartment: "v" + - formula: "C5H8NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glu__L" - chebi: "CHEBI:29985" - kegg.compound: "C00025" - metanetx.chemical: "MNXM89557" - sbo: "SBO:0000247" - - !!omap - - id: "s_0997" - - name: "L-glutamic 5-semialdehyde" - - compartment: "c" - - formula: "C5H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0997" + - name: "L-glutamic 5-semialdehyde" + - compartment: "c" + - formula: "C5H9NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glu5sa" - chebi: "CHEBI:17232" - kegg.compound: "C01165" - metanetx.chemical: "MNXM245" - sbo: "SBO:0000247" - - !!omap - - id: "s_0999" - - name: "L-glutamine" - - compartment: "c" - - formula: "C5H10N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_0999" + - name: "L-glutamine" + - compartment: "c" + - formula: "C5H10N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gln__L" - chebi: "CHEBI:18050" - kegg.compound: "C00064" - metanetx.chemical: "MNXM37" - sbo: "SBO:0000247" - - !!omap - - id: "s_1000" - - name: "L-glutamine" - - compartment: "e" - - formula: "C5H10N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1000" + - name: "L-glutamine" + - compartment: "e" + - formula: "C5H10N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gln__L" - chebi: "CHEBI:18050" - kegg.compound: "C00064" - metanetx.chemical: "MNXM37" - sbo: "SBO:0000247" - - !!omap - - id: "s_1001" - - name: "L-glutamine" - - compartment: "n" - - formula: "C5H10N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1001" + - name: "L-glutamine" + - compartment: "n" + - formula: "C5H10N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gln__L" - chebi: "CHEBI:18050" - kegg.compound: "C00064" - metanetx.chemical: "MNXM37" - sbo: "SBO:0000247" - - !!omap - - id: "s_1002" - - name: "L-glutamine" - - compartment: "v" - - formula: "C5H10N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1002" + - name: "L-glutamine" + - compartment: "v" + - formula: "C5H10N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gln__L" - chebi: "CHEBI:18050" - kegg.compound: "C00064" - metanetx.chemical: "MNXM37" - sbo: "SBO:0000247" - - !!omap - - id: "s_1003" - - name: "L-glycine" - - compartment: "c" - - formula: "C2H5NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1003" + - name: "L-glycine" + - compartment: "c" + - formula: "C2H5NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly" - chebi: "CHEBI:15428" - kegg.compound: "C00037" - metanetx.chemical: "MNXM29" - sbo: "SBO:0000247" - - !!omap - - id: "s_1004" - - name: "L-glycine" - - compartment: "e" - - formula: "C2H5NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1004" + - name: "L-glycine" + - compartment: "e" + - formula: "C2H5NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly" - chebi: "CHEBI:15428" - kegg.compound: "C00037" - metanetx.chemical: "MNXM29" - sbo: "SBO:0000247" - - !!omap - - id: "s_1005" - - name: "L-glycine" - - compartment: "m" - - formula: "C2H5NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1005" + - name: "L-glycine" + - compartment: "m" + - formula: "C2H5NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly" - chebi: "CHEBI:15428" - kegg.compound: "C00037" - metanetx.chemical: "MNXM29" - sbo: "SBO:0000247" - - !!omap - - id: "s_1006" - - name: "L-histidine" - - compartment: "c" - - formula: "C6H9N3O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1006" + - name: "L-histidine" + - compartment: "c" + - formula: "C6H9N3O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "his__L" - chebi: "CHEBI:15971" - kegg.compound: "C00135" - metanetx.chemical: "MNXM134" - sbo: "SBO:0000247" - - !!omap - - id: "s_1007" - - name: "L-histidine" - - compartment: "e" - - formula: "C6H9N3O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1007" + - name: "L-histidine" + - compartment: "e" + - formula: "C6H9N3O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "his__L" - chebi: "CHEBI:15971" - kegg.compound: "C00135" - metanetx.chemical: "MNXM134" - sbo: "SBO:0000247" - - !!omap - - id: "s_1008" - - name: "L-histidine" - - compartment: "m" - - formula: "C6H9N3O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1008" + - name: "L-histidine" + - compartment: "m" + - formula: "C6H9N3O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "his__L" - chebi: "CHEBI:15971" - kegg.compound: "C00135" - metanetx.chemical: "MNXM134" - sbo: "SBO:0000247" - - !!omap - - id: "s_1009" - - name: "L-histidine" - - compartment: "v" - - formula: "C6H9N3O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1009" + - name: "L-histidine" + - compartment: "v" + - formula: "C6H9N3O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "his__L" - chebi: "CHEBI:15971" - kegg.compound: "C00135" - metanetx.chemical: "MNXM134" - sbo: "SBO:0000247" - - !!omap - - id: "s_1010" - - name: "L-histidinol" - - compartment: "c" - - formula: "C6H12N3O" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1010" + - name: "L-histidinol" + - compartment: "c" + - formula: "C6H12N3O" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "histd" - chebi: "CHEBI:57699" - kegg.compound: "C00860" - metanetx.chemical: "MNXM1281" - sbo: "SBO:0000247" - - !!omap - - id: "s_1011" - - name: "L-histidinol phosphate" - - compartment: "c" - - formula: "C6H11N3O4P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1011" + - name: "L-histidinol phosphate" + - compartment: "c" + - formula: "C6H11N3O4P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hisp" - chebi: "CHEBI:57980" - kegg.compound: "C01100" - metanetx.chemical: "MNXM1482" - sbo: "SBO:0000247" - - !!omap - - id: "s_1012" - - name: "L-homocysteine" - - compartment: "c" - - formula: "C4H9NO2S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1012" + - name: "L-homocysteine" + - compartment: "c" + - formula: "C4H9NO2S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "hcys__L" - chebi: "CHEBI:17588" - kegg.compound: "C00155" - metanetx.chemical: "MNXM123" - sbo: "SBO:0000247" - - !!omap - - id: "s_1014" - - name: "L-homoserine" - - compartment: "c" - - formula: "C4H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1014" + - name: "L-homoserine" + - compartment: "c" + - formula: "C4H9NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "hom__L" - chebi: "CHEBI:15699" - kegg.compound: "C00263" - metanetx.chemical: "MNXM353" - sbo: "SBO:0000247" - - !!omap - - id: "s_1015" - - name: "L-homoserine" - - compartment: "e" - - formula: "C4H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1015" + - name: "L-homoserine" + - compartment: "e" + - formula: "C4H9NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "hom__L" - chebi: "CHEBI:15699" - kegg.compound: "C00263" - metanetx.chemical: "MNXM353" - sbo: "SBO:0000247" - - !!omap - - id: "s_1016" - - name: "L-isoleucine" - - compartment: "c" - - formula: "C6H13NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1016" + - name: "L-isoleucine" + - compartment: "c" + - formula: "C6H13NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ile__L" - chebi: "CHEBI:17191" - kegg.compound: "C00407" - metanetx.chemical: "MNXM231" - sbo: "SBO:0000247" - - !!omap - - id: "s_1017" - - name: "L-isoleucine" - - compartment: "e" - - formula: "C6H13NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1017" + - name: "L-isoleucine" + - compartment: "e" + - formula: "C6H13NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ile__L" - chebi: "CHEBI:17191" - kegg.compound: "C00407" - metanetx.chemical: "MNXM231" - sbo: "SBO:0000247" - - !!omap - - id: "s_1018" - - name: "L-isoleucine" - - compartment: "m" - - formula: "C6H13NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1018" + - name: "L-isoleucine" + - compartment: "m" + - formula: "C6H13NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ile__L" - chebi: "CHEBI:17191" - kegg.compound: "C00407" - metanetx.chemical: "MNXM231" - sbo: "SBO:0000247" - - !!omap - - id: "s_1019" - - name: "L-isoleucine" - - compartment: "v" - - formula: "C6H13NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1019" + - name: "L-isoleucine" + - compartment: "v" + - formula: "C6H13NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ile__L" - chebi: "CHEBI:17191" - kegg.compound: "C00407" - metanetx.chemical: "MNXM231" - sbo: "SBO:0000247" - - !!omap - - id: "s_1020" - - name: "L-kynurenine" - - compartment: "c" - - formula: "C10H12N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1020" + - name: "L-kynurenine" + - compartment: "c" + - formula: "C10H12N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "Lkynr" - chebi: "CHEBI:16946" - kegg.compound: "C00328" - metanetx.chemical: "MNXM260" - sbo: "SBO:0000247" - - !!omap - - id: "s_1021" - - name: "L-leucine" - - compartment: "c" - - formula: "C6H13NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1021" + - name: "L-leucine" + - compartment: "c" + - formula: "C6H13NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "leu__L" - chebi: "CHEBI:15603" - kegg.compound: "C00123" - metanetx.chemical: "MNXM140" - sbo: "SBO:0000247" - - !!omap - - id: "s_1022" - - name: "L-leucine" - - compartment: "e" - - formula: "C6H13NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1022" + - name: "L-leucine" + - compartment: "e" + - formula: "C6H13NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "leu__L" - chebi: "CHEBI:15603" - kegg.compound: "C00123" - metanetx.chemical: "MNXM140" - sbo: "SBO:0000247" - - !!omap - - id: "s_1023" - - name: "L-leucine" - - compartment: "m" - - formula: "C6H13NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1023" + - name: "L-leucine" + - compartment: "m" + - formula: "C6H13NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "leu__L" - chebi: "CHEBI:15603" - kegg.compound: "C00123" - metanetx.chemical: "MNXM140" - sbo: "SBO:0000247" - - !!omap - - id: "s_1024" - - name: "L-leucine" - - compartment: "v" - - formula: "C6H13NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1024" + - name: "L-leucine" + - compartment: "v" + - formula: "C6H13NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "leu__L" - chebi: "CHEBI:15603" - kegg.compound: "C00123" - metanetx.chemical: "MNXM140" - sbo: "SBO:0000247" - - !!omap - - id: "s_1025" - - name: "L-lysine" - - compartment: "c" - - formula: "C6H15N2O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1025" + - name: "L-lysine" + - compartment: "c" + - formula: "C6H15N2O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "lys__L" - chebi: "CHEBI:32551" - kegg.compound: "C00047" - metanetx.chemical: "MNXM78" - sbo: "SBO:0000247" - - !!omap - - id: "s_1026" - - name: "L-lysine" - - compartment: "e" - - formula: "C6H15N2O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1026" + - name: "L-lysine" + - compartment: "e" + - formula: "C6H15N2O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "lys__L" - chebi: "CHEBI:32551" - kegg.compound: "C00047" - metanetx.chemical: "MNXM78" - sbo: "SBO:0000247" - - !!omap - - id: "s_1027" - - name: "L-lysine" - - compartment: "m" - - formula: "C6H15N2O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1027" + - name: "L-lysine" + - compartment: "m" + - formula: "C6H15N2O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "lys__L" - chebi: "CHEBI:32551" - kegg.compound: "C00047" - metanetx.chemical: "MNXM78" - sbo: "SBO:0000247" - - !!omap - - id: "s_1028" - - name: "L-lysine" - - compartment: "v" - - formula: "C6H15N2O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1028" + - name: "L-lysine" + - compartment: "v" + - formula: "C6H15N2O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "lys__L" - chebi: "CHEBI:32551" - kegg.compound: "C00047" - metanetx.chemical: "MNXM78" - sbo: "SBO:0000247" - - !!omap - - id: "s_1029" - - name: "L-methionine" - - compartment: "c" - - formula: "C5H11NO2S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1029" + - name: "L-methionine" + - compartment: "c" + - formula: "C5H11NO2S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "met__L" - chebi: "CHEBI:16643" - kegg.compound: "C00073" - metanetx.chemical: "MNXM61" - sbo: "SBO:0000247" - - !!omap - - id: "s_1030" - - name: "L-methionine" - - compartment: "e" - - formula: "C5H11NO2S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1030" + - name: "L-methionine" + - compartment: "e" + - formula: "C5H11NO2S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "met__L" - chebi: "CHEBI:16643" - kegg.compound: "C00073" - metanetx.chemical: "MNXM61" - sbo: "SBO:0000247" - - !!omap - - id: "s_1031" - - name: "L-methionine" - - compartment: "m" - - formula: "C5H11NO2S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1031" + - name: "L-methionine" + - compartment: "m" + - formula: "C5H11NO2S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "met__L" - chebi: "CHEBI:16643" - kegg.compound: "C00073" - metanetx.chemical: "MNXM61" - sbo: "SBO:0000247" - - !!omap - - id: "s_1032" - - name: "L-phenylalanine" - - compartment: "c" - - formula: "C9H11NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1032" + - name: "L-phenylalanine" + - compartment: "c" + - formula: "C9H11NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "phe__L" - chebi: "CHEBI:17295" - kegg.compound: "C00079" - metanetx.chemical: "MNXM97" - sbo: "SBO:0000247" - - !!omap - - id: "s_1033" - - name: "L-phenylalanine" - - compartment: "e" - - formula: "C9H11NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1033" + - name: "L-phenylalanine" + - compartment: "e" + - formula: "C9H11NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "phe__L" - chebi: "CHEBI:17295" - kegg.compound: "C00079" - metanetx.chemical: "MNXM97" - sbo: "SBO:0000247" - - !!omap - - id: "s_1034" - - name: "L-phenylalanine" - - compartment: "m" - - formula: "C9H11NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1034" + - name: "L-phenylalanine" + - compartment: "m" + - formula: "C9H11NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "phe__L" - chebi: "CHEBI:17295" - kegg.compound: "C00079" - metanetx.chemical: "MNXM97" - sbo: "SBO:0000247" - - !!omap - - id: "s_1035" - - name: "L-proline" - - compartment: "c" - - formula: "C5H9NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1035" + - name: "L-proline" + - compartment: "c" + - formula: "C5H9NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pro__L" - chebi: "CHEBI:17203" - kegg.compound: "C00148" - metanetx.chemical: "MNXM114" - sbo: "SBO:0000247" - - !!omap - - id: "s_1036" - - name: "L-proline" - - compartment: "e" - - formula: "C5H9NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1036" + - name: "L-proline" + - compartment: "e" + - formula: "C5H9NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pro__L" - chebi: "CHEBI:17203" - kegg.compound: "C00148" - metanetx.chemical: "MNXM114" - sbo: "SBO:0000247" - - !!omap - - id: "s_1037" - - name: "L-proline" - - compartment: "m" - - formula: "C5H9NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1037" + - name: "L-proline" + - compartment: "m" + - formula: "C5H9NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pro__L" - chebi: "CHEBI:17203" - kegg.compound: "C00148" - metanetx.chemical: "MNXM114" - sbo: "SBO:0000247" - - !!omap - - id: "s_1038" - - name: "L-saccharopine" - - compartment: "c" - - formula: "C11H19N2O6" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1038" + - name: "L-saccharopine" + - compartment: "c" + - formula: "C11H19N2O6" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "saccrp__L" - chebi: "CHEBI:57951" - kegg.compound: "C00449" - metanetx.chemical: "MNXM384" - sbo: "SBO:0000247" - - !!omap - - id: "s_1039" - - name: "L-serine" - - compartment: "c" - - formula: "C3H7NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1039" + - name: "L-serine" + - compartment: "c" + - formula: "C3H7NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ser__L" - chebi: "CHEBI:17115" - kegg.compound: "C00065" - metanetx.chemical: "MNXM53" - sbo: "SBO:0000247" - - !!omap - - id: "s_1040" - - name: "L-serine" - - compartment: "er" - - formula: "C3H7NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1040" + - name: "L-serine" + - compartment: "er" + - formula: "C3H7NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ser__L" - chebi: "CHEBI:17115" - kegg.compound: "C00065" - metanetx.chemical: "MNXM53" - sbo: "SBO:0000247" - - !!omap - - id: "s_1041" - - name: "L-serine" - - compartment: "e" - - formula: "C3H7NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1041" + - name: "L-serine" + - compartment: "e" + - formula: "C3H7NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ser__L" - chebi: "CHEBI:17115" - kegg.compound: "C00065" - metanetx.chemical: "MNXM53" - sbo: "SBO:0000247" - - !!omap - - id: "s_1042" - - name: "L-serine" - - compartment: "m" - - formula: "C3H7NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1042" + - name: "L-serine" + - compartment: "m" + - formula: "C3H7NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ser__L" - chebi: "CHEBI:17115" - kegg.compound: "C00065" - metanetx.chemical: "MNXM53" - sbo: "SBO:0000247" - - !!omap - - id: "s_1043" - - name: "L-sorbose" - - compartment: "c" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1043" + - name: "L-sorbose" + - compartment: "c" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "srb__L" - chebi: "CHEBI:17266" - kegg.compound: "C00247" - metanetx.chemical: "MNXM588" - sbo: "SBO:0000247" - - !!omap - - id: "s_1044" - - name: "L-sorbose" - - compartment: "e" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1044" + - name: "L-sorbose" + - compartment: "e" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "srb__L" - chebi: "CHEBI:17266" - kegg.compound: "C00247" - metanetx.chemical: "MNXM588" - sbo: "SBO:0000247" - - !!omap - - id: "s_1045" - - name: "L-threonine" - - compartment: "c" - - formula: "C4H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1045" + - name: "L-threonine" + - compartment: "c" + - formula: "C4H9NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "thr__L" - chebi: "CHEBI:16857" - kegg.compound: "C00188" - metanetx.chemical: "MNXM142" - sbo: "SBO:0000247" - - !!omap - - id: "s_1046" - - name: "L-threonine" - - compartment: "e" - - formula: "C4H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1046" + - name: "L-threonine" + - compartment: "e" + - formula: "C4H9NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "thr__L" - chebi: "CHEBI:16857" - kegg.compound: "C00188" - metanetx.chemical: "MNXM142" - sbo: "SBO:0000247" - - !!omap - - id: "s_1047" - - name: "L-threonine" - - compartment: "m" - - formula: "C4H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1047" + - name: "L-threonine" + - compartment: "m" + - formula: "C4H9NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "thr__L" - chebi: "CHEBI:16857" - kegg.compound: "C00188" - metanetx.chemical: "MNXM142" - sbo: "SBO:0000247" - - !!omap - - id: "s_1048" - - name: "L-tryptophan" - - compartment: "c" - - formula: "C11H12N2O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1048" + - name: "L-tryptophan" + - compartment: "c" + - formula: "C11H12N2O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trp__L" - chebi: "CHEBI:16828" - kegg.compound: "C00078" - metanetx.chemical: "MNXM94" - sbo: "SBO:0000247" - - !!omap - - id: "s_1049" - - name: "L-tryptophan" - - compartment: "e" - - formula: "C11H12N2O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1049" + - name: "L-tryptophan" + - compartment: "e" + - formula: "C11H12N2O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trp__L" - chebi: "CHEBI:16828" - kegg.compound: "C00078" - metanetx.chemical: "MNXM94" - sbo: "SBO:0000247" - - !!omap - - id: "s_1050" - - name: "L-tryptophan" - - compartment: "m" - - formula: "C11H12N2O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1050" + - name: "L-tryptophan" + - compartment: "m" + - formula: "C11H12N2O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trp__L" - chebi: "CHEBI:16828" - kegg.compound: "C00078" - metanetx.chemical: "MNXM94" - sbo: "SBO:0000247" - - !!omap - - id: "s_1051" - - name: "L-tyrosine" - - compartment: "c" - - formula: "C9H11NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1051" + - name: "L-tyrosine" + - compartment: "c" + - formula: "C9H11NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tyr__L" - chebi: "CHEBI:17895" - kegg.compound: "C00082" - metanetx.chemical: "MNXM76" - sbo: "SBO:0000247" - - !!omap - - id: "s_1052" - - name: "L-tyrosine" - - compartment: "e" - - formula: "C9H11NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1052" + - name: "L-tyrosine" + - compartment: "e" + - formula: "C9H11NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tyr__L" - chebi: "CHEBI:17895" - kegg.compound: "C00082" - metanetx.chemical: "MNXM76" - sbo: "SBO:0000247" - - !!omap - - id: "s_1053" - - name: "L-tyrosine" - - compartment: "m" - - formula: "C9H11NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1053" + - name: "L-tyrosine" + - compartment: "m" + - formula: "C9H11NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tyr__L" - chebi: "CHEBI:17895" - kegg.compound: "C00082" - metanetx.chemical: "MNXM76" - sbo: "SBO:0000247" - - !!omap - - id: "s_1054" - - name: "L-tyrosine" - - compartment: "p" - - formula: "C9H11NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1054" + - name: "L-tyrosine" + - compartment: "p" + - formula: "C9H11NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tyr__L" - chebi: "CHEBI:17895" - kegg.compound: "C00082" - metanetx.chemical: "MNXM76" - sbo: "SBO:0000247" - - !!omap - - id: "s_1055" - - name: "L-tyrosine" - - compartment: "v" - - formula: "C9H11NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1055" + - name: "L-tyrosine" + - compartment: "v" + - formula: "C9H11NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tyr__L" - chebi: "CHEBI:17895" - kegg.compound: "C00082" - metanetx.chemical: "MNXM76" - sbo: "SBO:0000247" - - !!omap - - id: "s_1056" - - name: "L-valine" - - compartment: "c" - - formula: "C5H11NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1056" + - name: "L-valine" + - compartment: "c" + - formula: "C5H11NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "val__L" - chebi: "CHEBI:16414" - kegg.compound: "C00183" - metanetx.chemical: "MNXM199" - sbo: "SBO:0000247" - - !!omap - - id: "s_1057" - - name: "L-valine" - - compartment: "e" - - formula: "C5H11NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1057" + - name: "L-valine" + - compartment: "e" + - formula: "C5H11NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "val__L" - chebi: "CHEBI:16414" - kegg.compound: "C00183" - metanetx.chemical: "MNXM199" - sbo: "SBO:0000247" - - !!omap - - id: "s_1058" - - name: "L-valine" - - compartment: "m" - - formula: "C5H11NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1058" + - name: "L-valine" + - compartment: "m" + - formula: "C5H11NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "val__L" - chebi: "CHEBI:16414" - kegg.compound: "C00183" - metanetx.chemical: "MNXM199" - sbo: "SBO:0000247" - - !!omap - - id: "s_1059" - - name: "lanosterol" - - compartment: "c" - - formula: "C30H50O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1059" + - name: "lanosterol" + - compartment: "c" + - formula: "C30H50O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "lanost" - chebi: "CHEBI:16521" - kegg.compound: "C01724" - metanetx.chemical: "MNXM482" - sbo: "SBO:0000247" - - !!omap - - id: "s_1061" - - name: "lanosterol" - - compartment: "e" - - formula: "C30H50O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1061" + - name: "lanosterol" + - compartment: "e" + - formula: "C30H50O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "lanost" - chebi: "CHEBI:16521" - kegg.compound: "C01724" - metanetx.chemical: "MNXM482" - sbo: "SBO:0000247" - - !!omap - - id: "s_1065" - - name: "laurate" - - compartment: "c" - - formula: "C12H23O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1065" + - name: "laurate" + - compartment: "c" + - formula: "C12H23O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ddca" - chebi: "CHEBI:18262" - kegg.compound: "C02679" - metanetx.chemical: "MNXM402" - sbo: "SBO:0000247" - - !!omap - - id: "s_1067" - - name: "laurate" - - compartment: "e" - - formula: "C12H23O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1067" + - name: "laurate" + - compartment: "e" + - formula: "C12H23O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ddca" - chebi: "CHEBI:18262" - kegg.compound: "C02679" - metanetx.chemical: "MNXM402" - sbo: "SBO:0000247" - - !!omap - - id: "s_1070" - - name: "laurate" - - compartment: "p" - - formula: "C12H23O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1070" + - name: "laurate" + - compartment: "p" + - formula: "C12H23O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ddca" - chebi: "CHEBI:18262" - kegg.compound: "C02679" - metanetx.chemical: "MNXM402" - sbo: "SBO:0000247" - - !!omap - - id: "s_1073" - - name: "lauroyl-CoA" - - compartment: "c" - - formula: "C33H54N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1073" + - name: "lauroyl-CoA" + - compartment: "c" + - formula: "C33H54N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ddcacoa" - chebi: "CHEBI:57375" - kegg.compound: "C01832" - metanetx.chemical: "MNXM363" - sbo: "SBO:0000247" - - !!omap - - id: "s_1076" - - name: "lauroyl-CoA" - - compartment: "p" - - formula: "C33H54N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1076" + - name: "lauroyl-CoA" + - compartment: "p" + - formula: "C33H54N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ddcacoa" - chebi: "CHEBI:57375" - kegg.compound: "C01832" - metanetx.chemical: "MNXM363" - sbo: "SBO:0000247" - - !!omap - - id: "s_1077" - - name: "Leu-tRNA(Leu)" - - compartment: "c" - - formula: "C6H13NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1077" + - name: "Leu-tRNA(Leu)" + - compartment: "c" + - formula: "C6H13NOR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "leutrna" - chebi: "CHEBI:16624" - kegg.compound: "C02047" - metanetx.chemical: "MNXM697" - sbo: "SBO:0000247" - - !!omap - - id: "s_1078" - - name: "Leu-tRNA(Leu)" - - compartment: "m" - - formula: "C6H13NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1078" + - name: "Leu-tRNA(Leu)" + - compartment: "m" + - formula: "C6H13NOR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "leutrna" - chebi: "CHEBI:16624" - kegg.compound: "C02047" - metanetx.chemical: "MNXM697" - sbo: "SBO:0000247" - - !!omap - - id: "s_1079" - - name: "leukotriene A4" - - compartment: "c" - - formula: "C20H29O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1079" + - name: "leukotriene A4" + - compartment: "c" + - formula: "C20H29O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "leuktrA4" - chebi: "CHEBI:57463" - kegg.compound: "C00909" - metanetx.chemical: "MNXM462" - sbo: "SBO:0000247" - - !!omap - - id: "s_1080" - - name: "leukotriene A4" - - compartment: "n" - - formula: "C20H29O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1080" + - name: "leukotriene A4" + - compartment: "n" + - formula: "C20H29O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "leuktrA4" - chebi: "CHEBI:57463" - kegg.compound: "C00909" - metanetx.chemical: "MNXM462" - sbo: "SBO:0000247" - - !!omap - - id: "s_1081" - - name: "leukotriene B4" - - compartment: "c" - - formula: "C20H31O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1081" + - name: "leukotriene B4" + - compartment: "c" + - formula: "C20H31O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "leuktrB4" - chebi: "CHEBI:57461" - kegg.compound: "C02165" - metanetx.chemical: "MNXM637" - sbo: "SBO:0000247" - - !!omap - - id: "s_1082" - - name: "leukotriene B4" - - compartment: "n" - - formula: "C20H31O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1082" + - name: "leukotriene B4" + - compartment: "n" + - formula: "C20H31O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "leuktrB4" - chebi: "CHEBI:57461" - kegg.compound: "C02165" - metanetx.chemical: "MNXM637" - sbo: "SBO:0000247" - - !!omap - - id: "s_1085" - - name: "lignoceric acid" - - compartment: "er" - - formula: "C24H47O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1085" + - name: "lignoceric acid" + - compartment: "er" + - formula: "C24H47O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lgnc" - chebi: "CHEBI:31014" - kegg.compound: "C08320" - metanetx.chemical: "MNXM3297" - sbo: "SBO:0000247" - - !!omap - - id: "s_1096" - - name: "lipid" - - compartment: "c" - - formula: "" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1096" + - name: "lipid" + - compartment: "c" + - formula: "" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:18059" - kegg.compound: "C01356" - metanetx.chemical: "MNXM12117" - sbo: "SBO:0000649" - - !!omap - - id: "s_1097" - - name: "lipoamide" - - compartment: "m" - - formula: "C8H15NOS2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1097" + - name: "lipoamide" + - compartment: "m" + - formula: "C8H15NOS2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "lpam" - chebi: "CHEBI:17460" - kegg.compound: "C00248" - metanetx.chemical: "MNXM1024" - sbo: "SBO:0000247" - - !!omap - - id: "s_1098" - - name: "lipoylprotein" - - compartment: "m" - - formula: "C8H14NOS2R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1098" + - name: "lipoylprotein" + - compartment: "m" + - formula: "C8H14NOS2R" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "lpro" - chebi: "CHEBI:15804" - kegg.compound: "C02051" - metanetx.chemical: "MNXM998" - sbo: "SBO:0000247" - - !!omap - - id: "s_1099" - - name: "Lys-tRNA(Lys)" - - compartment: "c" - - formula: "C6H15N2OR" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_1099" + - name: "Lys-tRNA(Lys)" + - compartment: "c" + - formula: "C6H15N2OR" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "lystrna" - chebi: "CHEBI:16047" - kegg.compound: "C01931" - metanetx.chemical: "MNXM89922" - sbo: "SBO:0000247" - - !!omap - - id: "s_1100" - - name: "Lys-tRNA(Lys)" - - compartment: "m" - - formula: "C6H15N2OR" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_1100" + - name: "Lys-tRNA(Lys)" + - compartment: "m" + - formula: "C6H15N2OR" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "lystrna" - chebi: "CHEBI:16047" - kegg.compound: "C01931" - metanetx.chemical: "MNXM89922" - sbo: "SBO:0000247" - - !!omap - - id: "s_1101" - - name: "malonyl-CoA" - - compartment: "c" - - formula: "C24H33N7O19P3S" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_1101" + - name: "malonyl-CoA" + - compartment: "c" + - formula: "C24H33N7O19P3S" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "malcoa" - chebi: "CHEBI:57384" - kegg.compound: "C00083" - metanetx.chemical: "MNXM40" - sbo: "SBO:0000247" - - !!omap - - id: "s_1104" - - name: "malonyl-CoA" - - compartment: "m" - - formula: "C24H33N7O19P3S" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_1104" + - name: "malonyl-CoA" + - compartment: "m" + - formula: "C24H33N7O19P3S" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "malcoa" - chebi: "CHEBI:57384" - kegg.compound: "C00083" - metanetx.chemical: "MNXM40" - sbo: "SBO:0000247" - - !!omap - - id: "s_1105" - - name: "maltose" - - compartment: "c" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1105" + - name: "maltose" + - compartment: "c" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "malt" - chebi: "CHEBI:17306" - kegg.compound: "C00208" - metanetx.chemical: "MNXM165" - sbo: "SBO:0000247" - - !!omap - - id: "s_1106" - - name: "maltose" - - compartment: "e" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1106" + - name: "maltose" + - compartment: "e" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "malt" - chebi: "CHEBI:17306" - kegg.compound: "C00208" - metanetx.chemical: "MNXM165" - sbo: "SBO:0000247" - - !!omap - - id: "s_1107" - - name: "mannan" - - compartment: "c" - - formula: "C6H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1107" + - name: "mannan" + - compartment: "c" + - formula: "C6H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mannan" - chebi: "CHEBI:28808" - kegg.compound: "C00464" - metanetx.chemical: "MNXM2020" - sbo: "SBO:0000247" - - !!omap - - id: "s_1108" - - name: "mannan" - - compartment: "er" - - formula: "C6H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1108" + - name: "mannan" + - compartment: "er" + - formula: "C6H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mannan" - chebi: "CHEBI:28808" - kegg.compound: "C00464" - metanetx.chemical: "MNXM2020" - sbo: "SBO:0000247" - - !!omap - - id: "s_1109" - - name: "mannose-(1D-myo-inositol 1-phosphate)2" - - compartment: "er" - - formula: "C18H34O22P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1109" + - name: "mannose-(1D-myo-inositol 1-phosphate)2" + - compartment: "er" + - formula: "C18H34O22P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "man2mi1p__D" - chebi: "CHEBI:60449" - metanetx.chemical: "MNXM61128" - sbo: "SBO:0000247" - - !!omap - - id: "s_1110" - - name: "mannose-(1D-myo-inositol 1-phosphate)2" - - compartment: "m" - - formula: "C18H34O22P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1110" + - name: "mannose-(1D-myo-inositol 1-phosphate)2" + - compartment: "m" + - formula: "C18H34O22P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "man2mi1p__D" - chebi: "CHEBI:60449" - metanetx.chemical: "MNXM61128" - sbo: "SBO:0000247" - - !!omap - - id: "s_1111" - - name: "mannose-1D-myo-inositol 1-phosphate" - - compartment: "er" - - formula: "C12H23O14P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1111" + - name: "mannose-1D-myo-inositol 1-phosphate" + - compartment: "er" + - formula: "C12H23O14P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "manmi1p__D" - chebi: "CHEBI:60448" - metanetx.chemical: "MNXM61129" - sbo: "SBO:0000247" - - !!omap - - id: "s_1112" - - name: "mannose-1D-myo-inositol 1-phosphate" - - compartment: "m" - - formula: "C12H23O14P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1112" + - name: "mannose-1D-myo-inositol 1-phosphate" + - compartment: "m" + - formula: "C12H23O14P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "manmi1p__D" - chebi: "CHEBI:60448" - metanetx.chemical: "MNXM61129" - sbo: "SBO:0000247" - - !!omap - - id: "s_1114" - - name: "mannosylinositol phosphorylceramide backbone" - - compartment: "g" - - formula: "C12H22NO15P" - - annotation: !!omap + - !!omap + - id: "s_1114" + - name: "mannosylinositol phosphorylceramide backbone" + - compartment: "g" + - formula: "C12H22NO15P" + - annotation: !!omap - chebi: "CHEBI:25168" - metanetx.chemical: "MNXM12216" - sbo: "SBO:0000649" - - !!omap - - id: "s_1116" - - name: "mannosylinositol phosphorylceramide A (C24)" - - compartment: "er" - - formula: "C54H106NO16P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1116" + - name: "mannosylinositol phosphorylceramide A (C24)" + - compartment: "er" + - formula: "C54H106NO16P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60416" - metanetx.chemical: "MNXM61061" - sbo: "SBO:0000247" - - !!omap - - id: "s_1117" - - name: "mannosylinositol phosphorylceramide A (C24)" - - compartment: "g" - - formula: "C54H106NO16P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1117" + - name: "mannosylinositol phosphorylceramide A (C24)" + - compartment: "g" + - formula: "C54H106NO16P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60416" - metanetx.chemical: "MNXM61061" - sbo: "SBO:0000247" - - !!omap - - id: "s_1118" - - name: "mannosylinositol phosphorylceramide A (C24)" - - compartment: "m" - - formula: "C54H106NO16P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1118" + - name: "mannosylinositol phosphorylceramide A (C24)" + - compartment: "m" + - formula: "C54H106NO16P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60416" - metanetx.chemical: "MNXM61061" - sbo: "SBO:0000247" - - !!omap - - id: "s_1119" - - name: "mannosylinositol phosphorylceramide A (C26)" - - compartment: "er" - - formula: "C56H110NO16P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1119" + - name: "mannosylinositol phosphorylceramide A (C26)" + - compartment: "er" + - formula: "C56H110NO16P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62706" - metanetx.chemical: "MNXM106432" - sbo: "SBO:0000247" - - !!omap - - id: "s_1120" - - name: "mannosylinositol phosphorylceramide A (C26)" - - compartment: "g" - - formula: "C56H110NO16P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1120" + - name: "mannosylinositol phosphorylceramide A (C26)" + - compartment: "g" + - formula: "C56H110NO16P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62706" - metanetx.chemical: "MNXM106432" - sbo: "SBO:0000247" - - !!omap - - id: "s_1121" - - name: "mannosylinositol phosphorylceramide A (C26)" - - compartment: "m" - - formula: "C56H110NO16P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1121" + - name: "mannosylinositol phosphorylceramide A (C26)" + - compartment: "m" + - formula: "C56H110NO16P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62706" - metanetx.chemical: "MNXM106432" - sbo: "SBO:0000247" - - !!omap - - id: "s_1122" - - name: "mannosylinositol phosphorylceramide B (C24)" - - compartment: "er" - - formula: "C54H106NO17P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1122" + - name: "mannosylinositol phosphorylceramide B (C24)" + - compartment: "er" + - formula: "C54H106NO17P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60420" - metanetx.chemical: "MNXM61066" - sbo: "SBO:0000247" - - !!omap - - id: "s_1123" - - name: "mannosylinositol phosphorylceramide B (C24)" - - compartment: "g" - - formula: "C54H106NO17P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1123" + - name: "mannosylinositol phosphorylceramide B (C24)" + - compartment: "g" + - formula: "C54H106NO17P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60420" - metanetx.chemical: "MNXM61066" - sbo: "SBO:0000247" - - !!omap - - id: "s_1124" - - name: "mannosylinositol phosphorylceramide B (C24)" - - compartment: "m" - - formula: "C54H106NO17P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1124" + - name: "mannosylinositol phosphorylceramide B (C24)" + - compartment: "m" + - formula: "C54H106NO17P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60420" - metanetx.chemical: "MNXM61066" - sbo: "SBO:0000247" - - !!omap - - id: "s_1125" - - name: "mannosylinositol phosphorylceramide B (C26)" - - compartment: "er" - - formula: "C56H110NO17P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1125" + - name: "mannosylinositol phosphorylceramide B (C26)" + - compartment: "er" + - formula: "C56H110NO17P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62710" - metanetx.chemical: "MNXM61056" - sbo: "SBO:0000247" - - !!omap - - id: "s_1126" - - name: "mannosylinositol phosphorylceramide B (C26)" - - compartment: "g" - - formula: "C56H110NO17P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1126" + - name: "mannosylinositol phosphorylceramide B (C26)" + - compartment: "g" + - formula: "C56H110NO17P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62710" - metanetx.chemical: "MNXM61056" - sbo: "SBO:0000247" - - !!omap - - id: "s_1127" - - name: "mannosylinositol phosphorylceramide B (C26)" - - compartment: "m" - - formula: "C56H110NO17P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1127" + - name: "mannosylinositol phosphorylceramide B (C26)" + - compartment: "m" + - formula: "C56H110NO17P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62710" - metanetx.chemical: "MNXM61056" - sbo: "SBO:0000247" - - !!omap - - id: "s_1128" - - name: "mannosylinositol phosphorylceramide B' (C24)" - - compartment: "er" - - formula: "C54H106NO17P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1128" + - name: "mannosylinositol phosphorylceramide B' (C24)" + - compartment: "er" + - formula: "C54H106NO17P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60418" - metanetx.chemical: "MNXM61060" - sbo: "SBO:0000247" - - !!omap - - id: "s_1129" - - name: "mannosylinositol phosphorylceramide B' (C24)" - - compartment: "g" - - formula: "C54H106NO17P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1129" + - name: "mannosylinositol phosphorylceramide B' (C24)" + - compartment: "g" + - formula: "C54H106NO17P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60418" - metanetx.chemical: "MNXM61060" - sbo: "SBO:0000247" - - !!omap - - id: "s_1130" - - name: "mannosylinositol phosphorylceramide B' (C24)" - - compartment: "m" - - formula: "C54H106NO17P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1130" + - name: "mannosylinositol phosphorylceramide B' (C24)" + - compartment: "m" + - formula: "C54H106NO17P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60418" - metanetx.chemical: "MNXM61060" - sbo: "SBO:0000247" - - !!omap - - id: "s_1131" - - name: "mannosylinositol phosphorylceramide B' (C26)" - - compartment: "er" - - formula: "C56H110NO17P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1131" + - name: "mannosylinositol phosphorylceramide B' (C26)" + - compartment: "er" + - formula: "C56H110NO17P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62708" - metanetx.chemical: "MNXM61051" - sbo: "SBO:0000247" - - !!omap - - id: "s_1132" - - name: "mannosylinositol phosphorylceramide B' (C26)" - - compartment: "g" - - formula: "C56H110NO17P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1132" + - name: "mannosylinositol phosphorylceramide B' (C26)" + - compartment: "g" + - formula: "C56H110NO17P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62708" - metanetx.chemical: "MNXM61051" - sbo: "SBO:0000247" - - !!omap - - id: "s_1133" - - name: "mannosylinositol phosphorylceramide B' (C26)" - - compartment: "m" - - formula: "C56H110NO17P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1133" + - name: "mannosylinositol phosphorylceramide B' (C26)" + - compartment: "m" + - formula: "C56H110NO17P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62708" - metanetx.chemical: "MNXM61051" - sbo: "SBO:0000247" - - !!omap - - id: "s_1134" - - name: "mannosylinositol phosphorylceramide C (C24)" - - compartment: "er" - - formula: "C54H106NO18P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1134" + - name: "mannosylinositol phosphorylceramide C (C24)" + - compartment: "er" + - formula: "C54H106NO18P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60422" - metanetx.chemical: "MNXM61065" - sbo: "SBO:0000247" - - !!omap - - id: "s_1135" - - name: "mannosylinositol phosphorylceramide C (C24)" - - compartment: "g" - - formula: "C54H106NO18P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1135" + - name: "mannosylinositol phosphorylceramide C (C24)" + - compartment: "g" + - formula: "C54H106NO18P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60422" - metanetx.chemical: "MNXM61065" - sbo: "SBO:0000247" - - !!omap - - id: "s_1136" - - name: "mannosylinositol phosphorylceramide C (C24)" - - compartment: "m" - - formula: "C54H106NO18P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1136" + - name: "mannosylinositol phosphorylceramide C (C24)" + - compartment: "m" + - formula: "C54H106NO18P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60422" - metanetx.chemical: "MNXM61065" - sbo: "SBO:0000247" - - !!omap - - id: "s_1137" - - name: "mannosylinositol phosphorylceramide C (C26)" - - compartment: "er" - - formula: "C56H110NO18P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1137" + - name: "mannosylinositol phosphorylceramide C (C26)" + - compartment: "er" + - formula: "C56H110NO18P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62712" - metanetx.chemical: "MNXM61055" - sbo: "SBO:0000247" - - !!omap - - id: "s_1138" - - name: "mannosylinositol phosphorylceramide C (C26)" - - compartment: "g" - - formula: "C56H110NO18P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1138" + - name: "mannosylinositol phosphorylceramide C (C26)" + - compartment: "g" + - formula: "C56H110NO18P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62712" - metanetx.chemical: "MNXM61055" - sbo: "SBO:0000247" - - !!omap - - id: "s_1139" - - name: "mannosylinositol phosphorylceramide C (C26)" - - compartment: "m" - - formula: "C56H110NO18P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1139" + - name: "mannosylinositol phosphorylceramide C (C26)" + - compartment: "m" + - formula: "C56H110NO18P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62712" - metanetx.chemical: "MNXM61055" - sbo: "SBO:0000247" - - !!omap - - id: "s_1140" - - name: "mannosylinositol phosphorylceramide D (C24)" - - compartment: "er" - - formula: "C54H106NO19P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1140" + - name: "mannosylinositol phosphorylceramide D (C24)" + - compartment: "er" + - formula: "C54H106NO19P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60435" - metanetx.chemical: "MNXM61064" - sbo: "SBO:0000247" - - !!omap - - id: "s_1141" - - name: "mannosylinositol phosphorylceramide D (C24)" - - compartment: "g" - - formula: "C54H106NO19P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1141" + - name: "mannosylinositol phosphorylceramide D (C24)" + - compartment: "g" + - formula: "C54H106NO19P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60435" - metanetx.chemical: "MNXM61064" - sbo: "SBO:0000247" - - !!omap - - id: "s_1142" - - name: "mannosylinositol phosphorylceramide D (C24)" - - compartment: "m" - - formula: "C54H106NO19P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1142" + - name: "mannosylinositol phosphorylceramide D (C24)" + - compartment: "m" + - formula: "C54H106NO19P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60435" - metanetx.chemical: "MNXM61064" - sbo: "SBO:0000247" - - !!omap - - id: "s_1143" - - name: "mannosylinositol phosphorylceramide D (C26)" - - compartment: "er" - - formula: "C56H110NO19P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1143" + - name: "mannosylinositol phosphorylceramide D (C26)" + - compartment: "er" + - formula: "C56H110NO19P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62683" - metanetx.chemical: "MNXM61054" - sbo: "SBO:0000247" - - !!omap - - id: "s_1144" - - name: "mannosylinositol phosphorylceramide D (C26)" - - compartment: "g" - - formula: "C56H110NO19P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1144" + - name: "mannosylinositol phosphorylceramide D (C26)" + - compartment: "g" + - formula: "C56H110NO19P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62683" - metanetx.chemical: "MNXM61054" - sbo: "SBO:0000247" - - !!omap - - id: "s_1145" - - name: "mannosylinositol phosphorylceramide D (C26)" - - compartment: "m" - - formula: "C56H110NO19P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1145" + - name: "mannosylinositol phosphorylceramide D (C26)" + - compartment: "m" + - formula: "C56H110NO19P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62683" - metanetx.chemical: "MNXM61054" - sbo: "SBO:0000247" - - !!omap - - id: "s_1148" - - name: "Met-tRNA(Met)" - - compartment: "c" - - formula: "C5H11NOSR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1148" + - name: "Met-tRNA(Met)" + - compartment: "c" + - formula: "C5H11NOSR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "mettrna" - chebi: "CHEBI:16635" - kegg.compound: "C02430" - metanetx.chemical: "MNXM90636" - sbo: "SBO:0000247" - - !!omap - - id: "s_1149" - - name: "Met-tRNA(Met)" - - compartment: "m" - - formula: "C5H11NOSR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1149" + - name: "Met-tRNA(Met)" + - compartment: "m" + - formula: "C5H11NOSR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "mettrna" - chebi: "CHEBI:16635" - kegg.compound: "C02430" - metanetx.chemical: "MNXM90636" - sbo: "SBO:0000247" - - !!omap - - id: "s_1150" - - name: "methanethiol" - - compartment: "c" - - formula: "CH4S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1150" + - name: "methanethiol" + - compartment: "c" + - formula: "CH4S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ch4s" - chebi: "CHEBI:16007" - kegg.compound: "C00409" - metanetx.chemical: "MNXM652" - sbo: "SBO:0000247" - - !!omap - - id: "s_1151" - - name: "methylglyoxal" - - compartment: "c" - - formula: "C3H4O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1151" + - name: "methylglyoxal" + - compartment: "c" + - formula: "C3H4O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mthgxl" - chebi: "CHEBI:17158" - kegg.compound: "C00546" - metanetx.chemical: "MNXM310" - sbo: "SBO:0000247" - - !!omap - - id: "s_1153" - - name: "myo-inositol" - - compartment: "c" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1153" + - name: "myo-inositol" + - compartment: "c" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "inost" - chebi: "CHEBI:17268" - kegg.compound: "C00137" - metanetx.chemical: "MNXM127" - sbo: "SBO:0000247" - - !!omap - - id: "s_1154" - - name: "myo-inositol" - - compartment: "e" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1154" + - name: "myo-inositol" + - compartment: "e" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "inost" - chebi: "CHEBI:17268" - kegg.compound: "C00137" - metanetx.chemical: "MNXM127" - sbo: "SBO:0000247" - - !!omap - - id: "s_1156" - - name: "myo-inositol 1,3,4,5,6-pentakisphosphate" - - compartment: "c" - - formula: "C6H7O21P5" - - charge: -10 - - annotation: !!omap + - !!omap + - id: "s_1156" + - name: "myo-inositol 1,3,4,5,6-pentakisphosphate" + - compartment: "c" + - formula: "C6H7O21P5" + - charge: -10 + - annotation: !!omap - bigg.metabolite: "inospp1" - chebi: "CHEBI:57733" - kegg.compound: "C01284" - metanetx.chemical: "MNXM89719" - sbo: "SBO:0000247" - - !!omap - - id: "s_1157" - - name: "myo-inositol 1,3,4,5,6-pentakisphosphate" - - compartment: "n" - - formula: "C6H7O21P5" - - charge: -10 - - annotation: !!omap + - !!omap + - id: "s_1157" + - name: "myo-inositol 1,3,4,5,6-pentakisphosphate" + - compartment: "n" + - formula: "C6H7O21P5" + - charge: -10 + - annotation: !!omap - bigg.metabolite: "inospp1" - chebi: "CHEBI:57733" - kegg.compound: "C01284" - metanetx.chemical: "MNXM89719" - sbo: "SBO:0000247" - - !!omap - - id: "s_1158" - - name: "myo-inositol hexakisphosphate" - - compartment: "c" - - formula: "C6H6O24P6" - - charge: -12 - - annotation: !!omap + - !!omap + - id: "s_1158" + - name: "myo-inositol hexakisphosphate" + - compartment: "c" + - formula: "C6H6O24P6" + - charge: -12 + - annotation: !!omap - bigg.metabolite: "minohp" - chebi: "CHEBI:58130" - kegg.compound: "C01204" - metanetx.chemical: "MNXM491" - sbo: "SBO:0000247" - - !!omap - - id: "s_1159" - - name: "myo-inositol hexakisphosphate" - - compartment: "n" - - formula: "C6H6O24P6" - - charge: -12 - - annotation: !!omap + - !!omap + - id: "s_1159" + - name: "myo-inositol hexakisphosphate" + - compartment: "n" + - formula: "C6H6O24P6" + - charge: -12 + - annotation: !!omap - bigg.metabolite: "minohp" - chebi: "CHEBI:58130" - kegg.compound: "C01204" - metanetx.chemical: "MNXM491" - sbo: "SBO:0000247" - - !!omap - - id: "s_1161" - - name: "myristate" - - compartment: "c" - - formula: "C14H27O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1161" + - name: "myristate" + - compartment: "c" + - formula: "C14H27O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ttdca" - chebi: "CHEBI:30807" - kegg.compound: "C06424" - metanetx.chemical: "MNXM314" - sbo: "SBO:0000247" - - !!omap - - id: "s_1163" - - name: "myristate" - - compartment: "e" - - formula: "C14H27O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1163" + - name: "myristate" + - compartment: "e" + - formula: "C14H27O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ttdca" - chebi: "CHEBI:30807" - kegg.compound: "C06424" - metanetx.chemical: "MNXM314" - sbo: "SBO:0000247" - - !!omap - - id: "s_1166" - - name: "myristate" - - compartment: "p" - - formula: "C14H27O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1166" + - name: "myristate" + - compartment: "p" + - formula: "C14H27O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ttdca" - chebi: "CHEBI:30807" - kegg.compound: "C06424" - metanetx.chemical: "MNXM314" - sbo: "SBO:0000247" - - !!omap - - id: "s_1176" - - name: "myristoyl-CoA" - - compartment: "c" - - formula: "C35H58N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1176" + - name: "myristoyl-CoA" + - compartment: "c" + - formula: "C35H58N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "tdcoa" - chebi: "CHEBI:57385" - kegg.compound: "C02593" - metanetx.chemical: "MNXM224" - sbo: "SBO:0000247" - - !!omap - - id: "s_1179" - - name: "myristoyl-CoA" - - compartment: "p" - - formula: "C35H58N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1179" + - name: "myristoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "tdcoa" - chebi: "CHEBI:57385" - kegg.compound: "C02593" - metanetx.chemical: "MNXM224" - sbo: "SBO:0000247" - - !!omap - - id: "s_1180" - - name: "N(1)-acetylspermidine" - - compartment: "c" - - formula: "C9H23N3O" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_1180" + - name: "N(1)-acetylspermidine" + - compartment: "c" + - formula: "C9H23N3O" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "N1aspmd" - chebi: "CHEBI:58324" - kegg.compound: "C00612" - metanetx.chemical: "MNXM501" - sbo: "SBO:0000247" - - !!omap - - id: "s_1181" - - name: "N(1)-acetylspermine" - - compartment: "c" - - formula: "C12H31N4O" - - charge: 3 - - annotation: !!omap + - !!omap + - id: "s_1181" + - name: "N(1)-acetylspermine" + - compartment: "c" + - formula: "C12H31N4O" + - charge: 3 + - annotation: !!omap - bigg.metabolite: "N1sprm" - chebi: "CHEBI:58101" - kegg.compound: "C02567" - metanetx.chemical: "MNXM600" - sbo: "SBO:0000247" - - !!omap - - id: "s_1182" - - name: "N(2)-acetyl-L-ornithine" - - compartment: "m" - - formula: "C7H14N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1182" + - name: "N(2)-acetyl-L-ornithine" + - compartment: "m" + - formula: "C7H14N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "acorn" - chebi: "CHEBI:16543" - kegg.compound: "C00437" - metanetx.chemical: "MNXM817" - sbo: "SBO:0000247" - - !!omap - - id: "s_1183" - - name: "N(pros)-methyl-L-histidine" - - compartment: "c" - - formula: "C7H11N3O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1183" + - name: "N(pros)-methyl-L-histidine" + - compartment: "c" + - formula: "C7H11N3O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "NPmehis" - chebi: "CHEBI:27596" - kegg.compound: "C01152" - metanetx.chemical: "MNXM722872" - sbo: "SBO:0000247" - - !!omap - - id: "s_1184" - - name: "N,N'-diacetylchitobiosyldiphosphodolichol" - - compartment: "c" - - formula: "C36H62N2O17P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1184" + - name: "N,N'-diacetylchitobiosyldiphosphodolichol" + - compartment: "c" + - formula: "C36H62N2O17P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "chito2pdol" - chebi: "CHEBI:12427" - kegg.compound: "C04537" - metanetx.chemical: "MNXM63078" - sbo: "SBO:0000247" - - !!omap - - id: "s_1185" - - name: "N,N'-diformyldityrosine" - - compartment: "c" - - formula: "C20H22N2O8" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1185" + - name: "N,N'-diformyldityrosine" + - compartment: "c" + - formula: "C20H22N2O8" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:50611" - metanetx.chemical: "MNXM147516" - sbo: "SBO:0000247" - - !!omap - - id: "s_1186" - - name: "N,N'-diformyldityrosine" - - compartment: "e" - - formula: "C20H22N2O8" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1186" + - name: "N,N'-diformyldityrosine" + - compartment: "e" + - formula: "C20H22N2O8" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:50611" - metanetx.chemical: "MNXM147516" - sbo: "SBO:0000247" - - !!omap - - id: "s_1187" - - name: "N-(5-phospho-beta-D-ribosyl)anthranilate" - - compartment: "c" - - formula: "C12H13NO9P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1187" + - name: "N-(5-phospho-beta-D-ribosyl)anthranilate" + - compartment: "c" + - formula: "C12H13NO9P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "pran" - chebi: "CHEBI:18277" - kegg.compound: "C04302" - metanetx.chemical: "MNXM1489" - sbo: "SBO:0000247" - - !!omap - - id: "s_1188" - - name: "N-[(R)-4-phosphonopantothenoyl]-L-cysteine" - - compartment: "c" - - formula: "C12H20N2O9PS" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1188" + - name: "N-[(R)-4-phosphonopantothenoyl]-L-cysteine" + - compartment: "c" + - formula: "C12H20N2O9PS" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "4ppcys" - chebi: "CHEBI:59458" - kegg.compound: "C04352" - metanetx.chemical: "MNXM483" - sbo: "SBO:0000247" - - !!omap - - id: "s_1189" - - name: "N-acetyl-alpha-D-glucosamine 1-phosphate" - - compartment: "c" - - formula: "C8H14NO9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1189" + - name: "N-acetyl-alpha-D-glucosamine 1-phosphate" + - compartment: "c" + - formula: "C8H14NO9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "acgal1p" - chebi: "CHEBI:16446" - kegg.compound: "C04501" - metanetx.chemical: "MNXM340" - sbo: "SBO:0000247" - - !!omap - - id: "s_1190" - - name: "N-acetyl-D-glucosamine 6-phosphate" - - compartment: "c" - - formula: "C8H14NO9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1190" + - name: "N-acetyl-D-glucosamine 6-phosphate" + - compartment: "c" + - formula: "C8H14NO9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "acgam6p" - chebi: "CHEBI:57513" - kegg.compound: "C00357" - metanetx.chemical: "MNXM63556" - sbo: "SBO:0000247" - - !!omap - - id: "s_1191" - - name: "N-acetyl-L-gamma-glutamyl phosphate" - - compartment: "m" - - formula: "C7H9NO8P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1191" + - name: "N-acetyl-L-gamma-glutamyl phosphate" + - compartment: "m" + - formula: "C7H9NO8P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "acg5p" - chebi: "CHEBI:57936" - kegg.compound: "C04133" - metanetx.chemical: "MNXM1384" - sbo: "SBO:0000247" - - !!omap - - id: "s_1192" - - name: "N-acetyl-L-glutamate" - - compartment: "m" - - formula: "C7H9NO5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1192" + - name: "N-acetyl-L-glutamate" + - compartment: "m" + - formula: "C7H9NO5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "acglu" - chebi: "CHEBI:44337" - kegg.compound: "C00624" - metanetx.chemical: "MNXM730" - sbo: "SBO:0000247" - - !!omap - - id: "s_1193" - - name: "N-acetylputrescine" - - compartment: "c" - - formula: "C6H15N2O" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1193" + - name: "N-acetylputrescine" + - compartment: "c" + - formula: "C6H15N2O" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "aprut" - chebi: "CHEBI:58263" - kegg.compound: "C02714" - metanetx.chemical: "MNXM1153" - sbo: "SBO:0000247" - - !!omap - - id: "s_1194" - - name: "N-carbamoyl-L-aspartate" - - compartment: "c" - - formula: "C5H6N2O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1194" + - name: "N-carbamoyl-L-aspartate" + - compartment: "c" + - formula: "C5H6N2O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "cbasp" - chebi: "CHEBI:32814" - kegg.compound: "C00438" - metanetx.chemical: "MNXM465" - sbo: "SBO:0000247" - - !!omap - - id: "s_1195" - - name: "N-formyl-L-kynurenine" - - compartment: "c" - - formula: "C11H12N2O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1195" + - name: "N-formyl-L-kynurenine" + - compartment: "c" + - formula: "C11H12N2O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "Lfmkynr" - chebi: "CHEBI:30249" - kegg.compound: "C02700" - metanetx.chemical: "MNXM1288" - sbo: "SBO:0000247" - - !!omap - - id: "s_1196" - - name: "N-formyl-L-tyrosine" - - compartment: "c" - - formula: "C10H10NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1196" + - name: "N-formyl-L-tyrosine" + - compartment: "c" + - formula: "C10H10NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "Nfortyr" - chebi: "CHEBI:50603" - metanetx.chemical: "MNXM63755" - sbo: "SBO:0000247" - - !!omap - - id: "s_1198" - - name: "NAD" - - compartment: "c" - - formula: "C21H26N7O14P2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1198" + - name: "NAD" + - compartment: "c" + - formula: "C21H26N7O14P2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nad" - chebi: "CHEBI:57540" - kegg.compound: "C00003" - metanetx.chemical: "MNXM8" - sbo: "SBO:0000247" - - !!omap - - id: "s_1199" - - name: "NAD" - - compartment: "er" - - formula: "C21H26N7O14P2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1199" + - name: "NAD" + - compartment: "er" + - formula: "C21H26N7O14P2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nad" - chebi: "CHEBI:57540" - kegg.compound: "C00003" - metanetx.chemical: "MNXM8" - sbo: "SBO:0000247" - - !!omap - - id: "s_1200" - - name: "NAD" - - compartment: "m" - - formula: "C21H26N7O14P2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1200" + - name: "NAD" + - compartment: "m" + - formula: "C21H26N7O14P2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nad" - chebi: "CHEBI:57540" - kegg.compound: "C00003" - metanetx.chemical: "MNXM8" - sbo: "SBO:0000247" - - !!omap - - id: "s_1201" - - name: "NAD" - - compartment: "n" - - formula: "C21H26N7O14P2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1201" + - name: "NAD" + - compartment: "n" + - formula: "C21H26N7O14P2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nad" - chebi: "CHEBI:57540" - kegg.compound: "C00003" - metanetx.chemical: "MNXM8" - sbo: "SBO:0000247" - - !!omap - - id: "s_1202" - - name: "NAD" - - compartment: "p" - - formula: "C21H26N7O14P2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1202" + - name: "NAD" + - compartment: "p" + - formula: "C21H26N7O14P2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nad" - chebi: "CHEBI:57540" - kegg.compound: "C00003" - metanetx.chemical: "MNXM8" - sbo: "SBO:0000247" - - !!omap - - id: "s_1203" - - name: "NADH" - - compartment: "c" - - formula: "C21H27N7O14P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1203" + - name: "NADH" + - compartment: "c" + - formula: "C21H27N7O14P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "nadh" - chebi: "CHEBI:57945" - kegg.compound: "C00004" - metanetx.chemical: "MNXM10" - sbo: "SBO:0000247" - - !!omap - - id: "s_1204" - - name: "NADH" - - compartment: "er" - - formula: "C21H27N7O14P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1204" + - name: "NADH" + - compartment: "er" + - formula: "C21H27N7O14P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "nadh" - chebi: "CHEBI:57945" - kegg.compound: "C00004" - metanetx.chemical: "MNXM10" - sbo: "SBO:0000247" - - !!omap - - id: "s_1205" - - name: "NADH" - - compartment: "m" - - formula: "C21H27N7O14P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1205" + - name: "NADH" + - compartment: "m" + - formula: "C21H27N7O14P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "nadh" - chebi: "CHEBI:57945" - kegg.compound: "C00004" - metanetx.chemical: "MNXM10" - sbo: "SBO:0000247" - - !!omap - - id: "s_1206" - - name: "NADH" - - compartment: "p" - - formula: "C21H27N7O14P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1206" + - name: "NADH" + - compartment: "p" + - formula: "C21H27N7O14P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "nadh" - chebi: "CHEBI:57945" - kegg.compound: "C00004" - metanetx.chemical: "MNXM10" - sbo: "SBO:0000247" - - !!omap - - id: "s_1207" - - name: "NADP(+)" - - compartment: "c" - - formula: "C21H25N7O17P3" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1207" + - name: "NADP(+)" + - compartment: "c" + - formula: "C21H25N7O17P3" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "nadp" - chebi: "CHEBI:58349" - kegg.compound: "C00006" - metanetx.chemical: "MNXM5" - sbo: "SBO:0000247" - - !!omap - - id: "s_1208" - - name: "NADP(+)" - - compartment: "er" - - formula: "C21H25N7O17P3" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1208" + - name: "NADP(+)" + - compartment: "er" + - formula: "C21H25N7O17P3" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "nadp" - chebi: "CHEBI:58349" - kegg.compound: "C00006" - metanetx.chemical: "MNXM5" - sbo: "SBO:0000247" - - !!omap - - id: "s_1210" - - name: "NADP(+)" - - compartment: "m" - - formula: "C21H25N7O17P3" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1210" + - name: "NADP(+)" + - compartment: "m" + - formula: "C21H25N7O17P3" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "nadp" - chebi: "CHEBI:58349" - kegg.compound: "C00006" - metanetx.chemical: "MNXM5" - sbo: "SBO:0000247" - - !!omap - - id: "s_1211" - - name: "NADP(+)" - - compartment: "p" - - formula: "C21H25N7O17P3" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1211" + - name: "NADP(+)" + - compartment: "p" + - formula: "C21H25N7O17P3" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "nadp" - chebi: "CHEBI:58349" - kegg.compound: "C00006" - metanetx.chemical: "MNXM5" - sbo: "SBO:0000247" - - !!omap - - id: "s_1212" - - name: "NADPH" - - compartment: "c" - - formula: "C21H26N7O17P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1212" + - name: "NADPH" + - compartment: "c" + - formula: "C21H26N7O17P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "nadph" - chebi: "CHEBI:57783" - kegg.compound: "C00005" - metanetx.chemical: "MNXM6" - sbo: "SBO:0000247" - - !!omap - - id: "s_1213" - - name: "NADPH" - - compartment: "er" - - formula: "C21H26N7O17P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1213" + - name: "NADPH" + - compartment: "er" + - formula: "C21H26N7O17P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "nadph" - chebi: "CHEBI:57783" - kegg.compound: "C00005" - metanetx.chemical: "MNXM6" - sbo: "SBO:0000247" - - !!omap - - id: "s_1214" - - name: "NADPH" - - compartment: "m" - - formula: "C21H26N7O17P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1214" + - name: "NADPH" + - compartment: "m" + - formula: "C21H26N7O17P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "nadph" - chebi: "CHEBI:57783" - kegg.compound: "C00005" - metanetx.chemical: "MNXM6" - sbo: "SBO:0000247" - - !!omap - - id: "s_1215" - - name: "NADPH" - - compartment: "p" - - formula: "C21H26N7O17P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1215" + - name: "NADPH" + - compartment: "p" + - formula: "C21H26N7O17P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "nadph" - chebi: "CHEBI:57783" - kegg.compound: "C00005" - metanetx.chemical: "MNXM6" - sbo: "SBO:0000247" - - !!omap - - id: "s_1216" - - name: "nicotinamide" - - compartment: "c" - - formula: "C6H6N2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1216" + - name: "nicotinamide" + - compartment: "c" + - formula: "C6H6N2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ncam" - chebi: "CHEBI:17154" - kegg.compound: "C00153" - metanetx.chemical: "MNXM216" - sbo: "SBO:0000247" - - !!omap - - id: "s_1217" - - name: "nicotinamide" - - compartment: "n" - - formula: "C6H6N2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1217" + - name: "nicotinamide" + - compartment: "n" + - formula: "C6H6N2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ncam" - chebi: "CHEBI:17154" - kegg.compound: "C00153" - metanetx.chemical: "MNXM216" - sbo: "SBO:0000247" - - !!omap - - id: "s_1218" - - name: "nicotinamide riboside" - - compartment: "c" - - formula: "C11H15N2O5" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1218" + - name: "nicotinamide riboside" + - compartment: "c" + - formula: "C11H15N2O5" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "rnam" - chebi: "CHEBI:15927" - kegg.compound: "C03150" - metanetx.chemical: "MNXM1115" - sbo: "SBO:0000247" - - !!omap - - id: "s_1219" - - name: "nicotinate" - - compartment: "c" - - formula: "C6H4NO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1219" + - name: "nicotinate" + - compartment: "c" + - formula: "C6H4NO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nac" - chebi: "CHEBI:32544" - kegg.compound: "C00253" - metanetx.chemical: "MNXM274" - sbo: "SBO:0000247" - - !!omap - - id: "s_1220" - - name: "nicotinate" - - compartment: "e" - - formula: "C6H4NO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1220" + - name: "nicotinate" + - compartment: "e" + - formula: "C6H4NO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nac" - chebi: "CHEBI:32544" - kegg.compound: "C00253" - metanetx.chemical: "MNXM274" - sbo: "SBO:0000247" - - !!omap - - id: "s_1221" - - name: "nicotinate" - - compartment: "m" - - formula: "C6H4NO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1221" + - name: "nicotinate" + - compartment: "m" + - formula: "C6H4NO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nac" - chebi: "CHEBI:32544" - kegg.compound: "C00253" - metanetx.chemical: "MNXM274" - sbo: "SBO:0000247" - - !!omap - - id: "s_1222" - - name: "nicotinic acid D-ribonucleotide" - - compartment: "c" - - formula: "C11H12NO9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1222" + - name: "nicotinic acid D-ribonucleotide" + - compartment: "c" + - formula: "C11H12NO9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "nicrnt" - chebi: "CHEBI:57502" - kegg.compound: "C01185" - metanetx.chemical: "MNXM194" - sbo: "SBO:0000247" - - !!omap - - id: "s_1223" - - name: "nicotinic acid D-ribonucleotide" - - compartment: "m" - - formula: "C11H12NO9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1223" + - name: "nicotinic acid D-ribonucleotide" + - compartment: "m" + - formula: "C11H12NO9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "nicrnt" - chebi: "CHEBI:57502" - kegg.compound: "C01185" - metanetx.chemical: "MNXM194" - sbo: "SBO:0000247" - - !!omap - - id: "s_1224" - - name: "NMN" - - compartment: "c" - - formula: "C11H14N2O8P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1224" + - name: "NMN" + - compartment: "c" + - formula: "C11H14N2O8P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nmn" - chebi: "CHEBI:14649" - kegg.compound: "C00455" - metanetx.chemical: "MNXM355" - sbo: "SBO:0000247" - - !!omap - - id: "s_1225" - - name: "NMN" - - compartment: "e" - - formula: "C11H14N2O8P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1225" + - name: "NMN" + - compartment: "e" + - formula: "C11H14N2O8P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nmn" - chebi: "CHEBI:14649" - kegg.compound: "C00455" - metanetx.chemical: "MNXM355" - sbo: "SBO:0000247" - - !!omap - - id: "s_1227" - - name: "NMN" - - compartment: "n" - - formula: "C11H14N2O8P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1227" + - name: "NMN" + - compartment: "n" + - formula: "C11H14N2O8P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nmn" - chebi: "CHEBI:14649" - kegg.compound: "C00455" - metanetx.chemical: "MNXM355" - sbo: "SBO:0000247" - - !!omap - - id: "s_1228" - - name: "NMN" - - compartment: "p" - - formula: "C11H14N2O8P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1228" + - name: "NMN" + - compartment: "p" + - formula: "C11H14N2O8P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nmn" - chebi: "CHEBI:14649" - kegg.compound: "C00455" - metanetx.chemical: "MNXM355" - sbo: "SBO:0000247" - - !!omap - - id: "s_1229" - - name: "nonadecaprenyl diphosphate" - - compartment: "lp" - - formula: "C95H153O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1229" + - name: "nonadecaprenyl diphosphate" + - compartment: "lp" + - formula: "C95H153O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53034" - metanetx.chemical: "MNXM64863" - sbo: "SBO:0000247" - - !!omap - - id: "s_1230" - - name: "nonaprenyl 4-hydroxybenzoate" - - compartment: "c" - - formula: "C52H77O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1230" + - name: "nonaprenyl 4-hydroxybenzoate" + - compartment: "c" + - formula: "C52H77O3" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:18162" - kegg.compound: "C03885" - metanetx.chemical: "MNXM2847" - sbo: "SBO:0000247" - - !!omap - - id: "s_1231" - - name: "nonaprenyl diphosphate" - - compartment: "c" - - formula: "C45H73O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1231" + - name: "nonaprenyl diphosphate" + - compartment: "c" + - formula: "C45H73O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53044" - kegg.compound: "C04145" - metanetx.chemical: "MNXM968" - sbo: "SBO:0000247" - - !!omap - - id: "s_1232" - - name: "nonaprenyl diphosphate" - - compartment: "lp" - - formula: "C45H73O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1232" + - name: "nonaprenyl diphosphate" + - compartment: "lp" + - formula: "C45H73O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53044" - kegg.compound: "C04145" - metanetx.chemical: "MNXM968" - sbo: "SBO:0000247" - - !!omap - - id: "s_1233" - - name: "O-acetyl-L-homoserine" - - compartment: "c" - - formula: "C6H11NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1233" + - name: "O-acetyl-L-homoserine" + - compartment: "c" + - formula: "C6H11NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "achms" - chebi: "CHEBI:16288" - kegg.compound: "C01077" - metanetx.chemical: "MNXM699" - sbo: "SBO:0000247" - - !!omap - - id: "s_1234" - - name: "O-acetyl-L-serine" - - compartment: "c" - - formula: "C5H9NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1234" + - name: "O-acetyl-L-serine" + - compartment: "c" + - formula: "C5H9NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "acser" - chebi: "CHEBI:17981" - kegg.compound: "C00979" - metanetx.chemical: "MNXM418" - sbo: "SBO:0000247" - - !!omap - - id: "s_1235" - - name: "O-acetylcarnitine" - - compartment: "c" - - formula: "C9H17NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1235" + - name: "O-acetylcarnitine" + - compartment: "c" + - formula: "C9H17NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "acrn" - chebi: "CHEBI:57589" - kegg.compound: "C02571" - metanetx.chemical: "MNXM1028" - sbo: "SBO:0000247" - - !!omap - - id: "s_1236" - - name: "O-acetylcarnitine" - - compartment: "m" - - formula: "C9H17NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1236" + - name: "O-acetylcarnitine" + - compartment: "m" + - formula: "C9H17NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "acrn" - chebi: "CHEBI:57589" - kegg.compound: "C02571" - metanetx.chemical: "MNXM1028" - sbo: "SBO:0000247" - - !!omap - - id: "s_1237" - - name: "O-acetylcarnitine" - - compartment: "p" - - formula: "C9H17NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1237" + - name: "O-acetylcarnitine" + - compartment: "p" + - formula: "C9H17NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "acrn" - chebi: "CHEBI:57589" - kegg.compound: "C02571" - metanetx.chemical: "MNXM1028" - sbo: "SBO:0000247" - - !!omap - - id: "s_1238" - - name: "O-phospho-L-homoserine" - - compartment: "c" - - formula: "C4H8NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1238" + - name: "O-phospho-L-homoserine" + - compartment: "c" + - formula: "C4H8NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "phom" - chebi: "CHEBI:57590" - kegg.compound: "C01102" - metanetx.chemical: "MNXM1334" - sbo: "SBO:0000247" - - !!omap - - id: "s_1239" - - name: "O-phosphoethanolamine" - - compartment: "c" - - formula: "C2H7NO4P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1239" + - name: "O-phosphoethanolamine" + - compartment: "c" + - formula: "C2H7NO4P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ethamp" - chebi: "CHEBI:58190" - kegg.compound: "C00346" - metanetx.chemical: "MNXM187" - sbo: "SBO:0000247" - - !!omap - - id: "s_1240" - - name: "O-phosphoethanolamine" - - compartment: "er" - - formula: "C2H7NO4P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1240" + - name: "O-phosphoethanolamine" + - compartment: "er" + - formula: "C2H7NO4P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ethamp" - chebi: "CHEBI:58190" - kegg.compound: "C00346" - metanetx.chemical: "MNXM187" - sbo: "SBO:0000247" - - !!omap - - id: "s_1241" - - name: "O-succinyl-L-homoserine" - - compartment: "c" - - formula: "C8H12NO6" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1241" + - name: "O-succinyl-L-homoserine" + - compartment: "c" + - formula: "C8H12NO6" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "suchms" - chebi: "CHEBI:57661" - kegg.compound: "C01118" - metanetx.chemical: "MNXM820" - sbo: "SBO:0000247" - - !!omap - - id: "s_1246" - - name: "octadecaprenyl diphosphate" - - compartment: "lp" - - formula: "C90H145O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1246" + - name: "octadecaprenyl diphosphate" + - compartment: "lp" + - formula: "C90H145O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53035" - metanetx.chemical: "MNXM65303" - sbo: "SBO:0000247" - - !!omap - - id: "s_1248" - - name: "octanoate" - - compartment: "c" - - formula: "C8H15O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1248" + - name: "octanoate" + - compartment: "c" + - formula: "C8H15O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "octa" - chebi: "CHEBI:25646" - kegg.compound: "C06423" - metanetx.chemical: "MNXM750" - sbo: "SBO:0000247" - - !!omap - - id: "s_1250" - - name: "octanoate" - - compartment: "e" - - formula: "C8H15O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1250" + - name: "octanoate" + - compartment: "e" + - formula: "C8H15O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "octa" - chebi: "CHEBI:25646" - kegg.compound: "C06423" - metanetx.chemical: "MNXM750" - sbo: "SBO:0000247" - - !!omap - - id: "s_1253" - - name: "octanoate" - - compartment: "p" - - formula: "C8H15O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1253" + - name: "octanoate" + - compartment: "p" + - formula: "C8H15O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "octa" - chebi: "CHEBI:25646" - kegg.compound: "C06423" - metanetx.chemical: "MNXM750" - sbo: "SBO:0000247" - - !!omap - - id: "s_1254" - - name: "octanoyl-ACP" - - compartment: "m" - - formula: "C8H15OSR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1254" + - name: "octanoyl-ACP" + - compartment: "m" + - formula: "C8H15OSR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:7725" - kegg.compound: "C05752" - metanetx.chemical: "MNXM979" - sbo: "SBO:0000247" - - !!omap - - id: "s_1258" - - name: "octanoyl-CoA" - - compartment: "p" - - formula: "C29H46N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1258" + - name: "octanoyl-CoA" + - compartment: "p" + - formula: "C29H46N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "occoa" - chebi: "CHEBI:15533" - kegg.compound: "C01944" - metanetx.chemical: "MNXM342" - sbo: "SBO:0000247" - - !!omap - - id: "s_1259" - - name: "octaprenyl diphosphate" - - compartment: "lp" - - formula: "C40H65O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1259" + - name: "octaprenyl diphosphate" + - compartment: "lp" + - formula: "C40H65O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "octdp" - chebi: "CHEBI:53045" - kegg.compound: "C04146" - metanetx.chemical: "MNXM811" - sbo: "SBO:0000247" - - !!omap - - id: "s_1260" - - name: "oleate" - - compartment: "c" - - formula: "C18H33O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1260" + - name: "oleate" + - compartment: "c" + - formula: "C18H33O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdcea" - chebi: "CHEBI:30823" - kegg.compound: "C00712" - metanetx.chemical: "MNXM306" - sbo: "SBO:0000247" - - !!omap - - id: "s_1262" - - name: "oleoyl-CoA" - - compartment: "c" - - formula: "C39H64N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1262" + - name: "oleoyl-CoA" + - compartment: "c" + - formula: "C39H64N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ocdce9coa" - chebi: "CHEBI:57387" - kegg.compound: "C00510" - metanetx.chemical: "MNXM686" - sbo: "SBO:0000247" - - !!omap - - id: "s_1265" - - name: "oleoyl-CoA" - - compartment: "p" - - formula: "C39H64N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1265" + - name: "oleoyl-CoA" + - compartment: "p" + - formula: "C39H64N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ocdce9coa" - chebi: "CHEBI:57387" - kegg.compound: "C00510" - metanetx.chemical: "MNXM686" - sbo: "SBO:0000247" - - !!omap - - id: "s_1266" - - name: "ornithine" - - compartment: "c" - - formula: "C5H13N2O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1266" + - name: "ornithine" + - compartment: "c" + - formula: "C5H13N2O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "orn" - chebi: "CHEBI:46912" - kegg.compound: "C01602" - metanetx.chemical: "MNXM89689" - sbo: "SBO:0000247" - - !!omap - - id: "s_1267" - - name: "ornithine" - - compartment: "e" - - formula: "C5H13N2O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1267" + - name: "ornithine" + - compartment: "e" + - formula: "C5H13N2O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "orn" - chebi: "CHEBI:46912" - kegg.compound: "C01602" - metanetx.chemical: "MNXM89689" - sbo: "SBO:0000247" - - !!omap - - id: "s_1268" - - name: "ornithine" - - compartment: "m" - - formula: "C5H13N2O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1268" + - name: "ornithine" + - compartment: "m" + - formula: "C5H13N2O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "orn" - chebi: "CHEBI:46912" - kegg.compound: "C01602" - metanetx.chemical: "MNXM89689" - sbo: "SBO:0000247" - - !!omap - - id: "s_1269" - - name: "orotate" - - compartment: "c" - - formula: "C5H3N2O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1269" + - name: "orotate" + - compartment: "c" + - formula: "C5H3N2O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "orot" - chebi: "CHEBI:30839" - kegg.compound: "C00295" - metanetx.chemical: "MNXM235" - sbo: "SBO:0000247" - - !!omap - - id: "s_1270" - - name: "orotidine 5'-(dihydrogen phosphate)" - - compartment: "c" - - formula: "C10H10N2O11P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1270" + - name: "orotidine 5'-(dihydrogen phosphate)" + - compartment: "c" + - formula: "C10H10N2O11P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "orot5p" - chebi: "CHEBI:57538" - kegg.compound: "C01103" - metanetx.chemical: "MNXM519" - sbo: "SBO:0000247" - - !!omap - - id: "s_1271" - - name: "oxaloacetate" - - compartment: "c" - - formula: "C4H2O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1271" + - name: "oxaloacetate" + - compartment: "c" + - formula: "C4H2O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "oaa" - chebi: "CHEBI:16452" - kegg.compound: "C00036" - metanetx.chemical: "MNXM46" - sbo: "SBO:0000247" - - !!omap - - id: "s_1272" - - name: "oxaloacetate" - - compartment: "e" - - formula: "C4H2O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1272" + - name: "oxaloacetate" + - compartment: "e" + - formula: "C4H2O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "oaa" - chebi: "CHEBI:16452" - kegg.compound: "C00036" - metanetx.chemical: "MNXM46" - sbo: "SBO:0000247" - - !!omap - - id: "s_1273" - - name: "oxaloacetate" - - compartment: "m" - - formula: "C4H2O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1273" + - name: "oxaloacetate" + - compartment: "m" + - formula: "C4H2O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "oaa" - chebi: "CHEBI:16452" - kegg.compound: "C00036" - metanetx.chemical: "MNXM46" - sbo: "SBO:0000247" - - !!omap - - id: "s_1274" - - name: "oxaloacetate" - - compartment: "p" - - formula: "C4H2O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1274" + - name: "oxaloacetate" + - compartment: "p" + - formula: "C4H2O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "oaa" - chebi: "CHEBI:16452" - kegg.compound: "C00036" - metanetx.chemical: "MNXM46" - sbo: "SBO:0000247" - - !!omap - - id: "s_1275" - - name: "oxygen" - - compartment: "c" - - formula: "O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1275" + - name: "oxygen" + - compartment: "c" + - formula: "O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "o2" - chebi: "CHEBI:15379" - kegg.compound: "C00007" - metanetx.chemical: "MNXM4" - sbo: "SBO:0000247" - - !!omap - - id: "s_1276" - - name: "oxygen" - - compartment: "er" - - formula: "O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1276" + - name: "oxygen" + - compartment: "er" + - formula: "O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "o2" - chebi: "CHEBI:15379" - kegg.compound: "C00007" - metanetx.chemical: "MNXM4" - sbo: "SBO:0000247" - - !!omap - - id: "s_1277" - - name: "oxygen" - - compartment: "e" - - formula: "O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1277" + - name: "oxygen" + - compartment: "e" + - formula: "O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "o2" - chebi: "CHEBI:15379" - kegg.compound: "C00007" - metanetx.chemical: "MNXM4" - sbo: "SBO:0000247" - - !!omap - - id: "s_1278" - - name: "oxygen" - - compartment: "m" - - formula: "O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1278" + - name: "oxygen" + - compartment: "m" + - formula: "O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "o2" - chebi: "CHEBI:15379" - kegg.compound: "C00007" - metanetx.chemical: "MNXM4" - sbo: "SBO:0000247" - - !!omap - - id: "s_1279" - - name: "oxygen" - - compartment: "p" - - formula: "O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1279" + - name: "oxygen" + - compartment: "p" + - formula: "O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "o2" - chebi: "CHEBI:15379" - kegg.compound: "C00007" - metanetx.chemical: "MNXM4" - sbo: "SBO:0000247" - - !!omap - - id: "s_1282" - - name: "P(1),P(4)-bis(5'-adenosyl) tetraphosphate" - - compartment: "c" - - formula: "C20H24N10O19P4" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1282" + - name: "P(1),P(4)-bis(5'-adenosyl) tetraphosphate" + - compartment: "c" + - formula: "C20H24N10O19P4" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ap4a" - chebi: "CHEBI:58141" - kegg.compound: "C01260" - metanetx.chemical: "MNXM1089" - sbo: "SBO:0000247" - - !!omap - - id: "s_1283" - - name: "P(1),P(4)-bis(5'-guanosyl) tetraphosphate" - - compartment: "c" - - formula: "C20H24N10O21P4" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1283" + - name: "P(1),P(4)-bis(5'-guanosyl) tetraphosphate" + - compartment: "c" + - formula: "C20H24N10O21P4" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "gp4g" - chebi: "CHEBI:57553" - kegg.compound: "C01261" - metanetx.chemical: "MNXM1582" - sbo: "SBO:0000247" - - !!omap - - id: "s_1284" - - name: "P1-(5'-adenosyl),P4-(5'-guanosyl) tetraphosphate" - - compartment: "c" - - formula: "C20H24N10O20P4" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1284" + - name: "P1-(5'-adenosyl),P4-(5'-guanosyl) tetraphosphate" + - compartment: "c" + - formula: "C20H24N10O20P4" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ap4g" - chebi: "CHEBI:52968" - metanetx.chemical: "MNXM66180" - sbo: "SBO:0000247" - - !!omap - - id: "s_1286" - - name: "palmitate" - - compartment: "c" - - formula: "C16H31O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1286" + - name: "palmitate" + - compartment: "c" + - formula: "C16H31O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdca" - chebi: "CHEBI:7896" - kegg.compound: "C00249" - metanetx.chemical: "MNXM108" - sbo: "SBO:0000247" - - !!omap - - id: "s_1288" - - name: "palmitate" - - compartment: "e" - - formula: "C16H31O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1288" + - name: "palmitate" + - compartment: "e" + - formula: "C16H31O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdca" - chebi: "CHEBI:7896" - kegg.compound: "C00249" - metanetx.chemical: "MNXM108" - sbo: "SBO:0000247" - - !!omap - - id: "s_1291" - - name: "palmitate" - - compartment: "p" - - formula: "C16H31O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1291" + - name: "palmitate" + - compartment: "p" + - formula: "C16H31O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdca" - chebi: "CHEBI:7896" - kegg.compound: "C00249" - metanetx.chemical: "MNXM108" - sbo: "SBO:0000247" - - !!omap - - id: "s_1293" - - name: "palmitoleate" - - compartment: "c" - - formula: "C16H29O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1293" + - name: "palmitoleate" + - compartment: "c" + - formula: "C16H29O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdcea" - chebi: "CHEBI:32372" - kegg.compound: "C08362" - metanetx.chemical: "MNXM162245" - sbo: "SBO:0000247" - - !!omap - - id: "s_1295" - - name: "palmitoleate" - - compartment: "e" - - formula: "C16H29O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1295" + - name: "palmitoleate" + - compartment: "e" + - formula: "C16H29O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdcea" - chebi: "CHEBI:32372" - kegg.compound: "C08362" - metanetx.chemical: "MNXM162245" - sbo: "SBO:0000247" - - !!omap - - id: "s_1298" - - name: "palmitoleate" - - compartment: "p" - - formula: "C16H29O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1298" + - name: "palmitoleate" + - compartment: "p" + - formula: "C16H29O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdcea" - chebi: "CHEBI:32372" - kegg.compound: "C08362" - metanetx.chemical: "MNXM162245" - sbo: "SBO:0000247" - - !!omap - - id: "s_1302" - - name: "palmitoyl-CoA" - - compartment: "c" - - formula: "C37H62N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1302" + - name: "palmitoyl-CoA" + - compartment: "c" + - formula: "C37H62N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "pmtcoa" - chebi: "CHEBI:57379" - kegg.compound: "C00154" - metanetx.chemical: "MNXM88" - sbo: "SBO:0000247" - - !!omap - - id: "s_1303" - - name: "palmitoyl-CoA" - - compartment: "er" - - formula: "C37H62N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1303" + - name: "palmitoyl-CoA" + - compartment: "er" + - formula: "C37H62N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "pmtcoa" - chebi: "CHEBI:57379" - kegg.compound: "C00154" - metanetx.chemical: "MNXM88" - sbo: "SBO:0000247" - - !!omap - - id: "s_1305" - - name: "palmitoyl-CoA" - - compartment: "p" - - formula: "C37H62N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1305" + - name: "palmitoyl-CoA" + - compartment: "p" + - formula: "C37H62N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "pmtcoa" - chebi: "CHEBI:57379" - kegg.compound: "C00154" - metanetx.chemical: "MNXM88" - sbo: "SBO:0000247" - - !!omap - - id: "s_1307" - - name: "pantetheine 4'-phosphate" - - compartment: "c" - - formula: "C11H21N2O7PS" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1307" + - name: "pantetheine 4'-phosphate" + - compartment: "c" + - formula: "C11H21N2O7PS" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pan4p" - chebi: "CHEBI:47942" - kegg.compound: "C01134" - metanetx.chemical: "MNXM373" - sbo: "SBO:0000247" - - !!omap - - id: "s_1308" - - name: "pantetheine 4'-phosphate" - - compartment: "m" - - formula: "C11H21N2O7PS" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1308" + - name: "pantetheine 4'-phosphate" + - compartment: "m" + - formula: "C11H21N2O7PS" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pan4p" - chebi: "CHEBI:47942" - kegg.compound: "C01134" - metanetx.chemical: "MNXM373" - sbo: "SBO:0000247" - - !!omap - - id: "s_1309" - - name: "pectin" - - compartment: "e" - - formula: "C6H7O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1309" + - name: "pectin" + - compartment: "e" + - formula: "C6H7O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pectin" - chebi: "CHEBI:17309" - kegg.compound: "C00714" - metanetx.chemical: "MNXM107600" - sbo: "SBO:0000247" - - !!omap - - id: "s_1310" - - name: "pentadecaprenyl diphosphate" - - compartment: "lp" - - formula: "C75H121O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1310" + - name: "pentadecaprenyl diphosphate" + - compartment: "lp" + - formula: "C75H121O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53038" - metanetx.chemical: "MNXM73155" - sbo: "SBO:0000247" - - !!omap - - id: "s_1311" - - name: "pentaprenyl diphosphate" - - compartment: "c" - - formula: "C25H41O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1311" + - name: "pentaprenyl diphosphate" + - compartment: "c" + - formula: "C25H41O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "pendp" - chebi: "CHEBI:53048" - kegg.compound: "C04217" - metanetx.chemical: "MNXM2210" - sbo: "SBO:0000247" - - !!omap - - id: "s_1312" - - name: "pentaprenyl diphosphate" - - compartment: "lp" - - formula: "C25H41O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1312" + - name: "pentaprenyl diphosphate" + - compartment: "lp" + - formula: "C25H41O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "pendp" - chebi: "CHEBI:53048" - kegg.compound: "C04217" - metanetx.chemical: "MNXM2210" - sbo: "SBO:0000247" - - !!omap - - id: "s_1313" - - name: "pentaprenyl diphosphate" - - compartment: "m" - - formula: "C25H41O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1313" + - name: "pentaprenyl diphosphate" + - compartment: "m" + - formula: "C25H41O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "pendp" - chebi: "CHEBI:53048" - kegg.compound: "C04217" - metanetx.chemical: "MNXM2210" - sbo: "SBO:0000247" - - !!omap - - id: "s_1314" - - name: "Phe-tRNA(Phe)" - - compartment: "c" - - formula: "C9H11NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1314" + - name: "Phe-tRNA(Phe)" + - compartment: "c" + - formula: "C9H11NOR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "phetrna" - chebi: "CHEBI:29153" - kegg.compound: "C03511" - metanetx.chemical: "MNXM89802" - sbo: "SBO:0000247" - - !!omap - - id: "s_1315" - - name: "Phe-tRNA(Phe)" - - compartment: "m" - - formula: "C9H11NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1315" + - name: "Phe-tRNA(Phe)" + - compartment: "m" + - formula: "C9H11NOR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "phetrna" - chebi: "CHEBI:29153" - kegg.compound: "C03511" - metanetx.chemical: "MNXM89802" - sbo: "SBO:0000247" - - !!omap - - id: "s_1316" - - name: "phenethyl acetate" - - compartment: "c" - - formula: "C10H12O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1316" + - name: "phenethyl acetate" + - compartment: "c" + - formula: "C10H12O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pheac" - chebi: "CHEBI:31988" - kegg.compound: "C12303" - metanetx.chemical: "MNXM12629" - sbo: "SBO:0000247" - - !!omap - - id: "s_1317" - - name: "phenethyl acetate" - - compartment: "e" - - formula: "C10H12O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1317" + - name: "phenethyl acetate" + - compartment: "e" + - formula: "C10H12O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pheac" - chebi: "CHEBI:31988" - kegg.compound: "C12303" - metanetx.chemical: "MNXM12629" - sbo: "SBO:0000247" - - !!omap - - id: "s_1318" - - name: "phenylacetaldehyde" - - compartment: "c" - - formula: "C8H8O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1318" + - name: "phenylacetaldehyde" + - compartment: "c" + - formula: "C8H8O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pacald" - chebi: "CHEBI:16424" - kegg.compound: "C00601" - metanetx.chemical: "MNXM473" - sbo: "SBO:0000247" - - !!omap - - id: "s_1319" - - name: "phenylacetaldehyde" - - compartment: "e" - - formula: "C8H8O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1319" + - name: "phenylacetaldehyde" + - compartment: "e" + - formula: "C8H8O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pacald" - chebi: "CHEBI:16424" - kegg.compound: "C00601" - metanetx.chemical: "MNXM473" - sbo: "SBO:0000247" - - !!omap - - id: "s_1320" - - name: "phenylacetaldehyde" - - compartment: "m" - - formula: "C8H8O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1320" + - name: "phenylacetaldehyde" + - compartment: "m" + - formula: "C8H8O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pacald" - chebi: "CHEBI:16424" - kegg.compound: "C00601" - metanetx.chemical: "MNXM473" - sbo: "SBO:0000247" - - !!omap - - id: "s_1321" - - name: "phenylacetic acid" - - compartment: "c" - - formula: "C8H7O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1321" + - name: "phenylacetic acid" + - compartment: "c" + - formula: "C8H7O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "pac" - chebi: "CHEBI:18401" - kegg.compound: "C07086" - metanetx.chemical: "MNXM497" - sbo: "SBO:0000247" - - !!omap - - id: "s_1322" - - name: "phosphate" - - compartment: "c" - - formula: "HO4P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1322" + - name: "phosphate" + - compartment: "c" + - formula: "HO4P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pi" - chebi: "CHEBI:43474" - kegg.compound: "C00009" - metanetx.chemical: "MNXM9" - sbo: "SBO:0000247" - - !!omap - - id: "s_1323" - - name: "phosphate" - - compartment: "er" - - formula: "HO4P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1323" + - name: "phosphate" + - compartment: "er" + - formula: "HO4P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pi" - chebi: "CHEBI:43474" - kegg.compound: "C00009" - metanetx.chemical: "MNXM9" - sbo: "SBO:0000247" - - !!omap - - id: "s_1324" - - name: "phosphate" - - compartment: "e" - - formula: "HO4P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1324" + - name: "phosphate" + - compartment: "e" + - formula: "HO4P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pi" - chebi: "CHEBI:43474" - kegg.compound: "C00009" - metanetx.chemical: "MNXM9" - sbo: "SBO:0000247" - - !!omap - - id: "s_1325" - - name: "phosphate" - - compartment: "g" - - formula: "HO4P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1325" + - name: "phosphate" + - compartment: "g" + - formula: "HO4P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pi" - chebi: "CHEBI:43474" - kegg.compound: "C00009" - metanetx.chemical: "MNXM9" - sbo: "SBO:0000247" - - !!omap - - id: "s_1326" - - name: "phosphate" - - compartment: "m" - - formula: "HO4P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1326" + - name: "phosphate" + - compartment: "m" + - formula: "HO4P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pi" - chebi: "CHEBI:43474" - kegg.compound: "C00009" - metanetx.chemical: "MNXM9" - sbo: "SBO:0000247" - - !!omap - - id: "s_1329" - - name: "phosphate" - - compartment: "v" - - formula: "HO4P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1329" + - name: "phosphate" + - compartment: "v" + - formula: "HO4P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pi" - chebi: "CHEBI:43474" - kegg.compound: "C00009" - metanetx.chemical: "MNXM9" - sbo: "SBO:0000247" - - !!omap - - id: "s_1337" - - name: "phosphatidyl-L-serine backbone" - - compartment: "c" - - formula: "C6H10NO6P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1337" + - name: "phosphatidyl-L-serine backbone" + - compartment: "c" + - formula: "C6H10NO6P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ps_cho" - chebi: "CHEBI:18303" - kegg.compound: "C02737" - metanetx.chemical: "MNXM221" - sbo: "SBO:0000649" - - !!omap - - id: "s_1346" - - name: "phosphatidylcholine backbone" - - compartment: "c" - - formula: "C8H16NO3P" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1346" + - name: "phosphatidylcholine backbone" + - compartment: "c" + - formula: "C8H16NO3P" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "pchol_cho" - chebi: "CHEBI:49183" - kegg.compound: "C00157" - metanetx.chemical: "MNXM96952" - sbo: "SBO:0000649" - - !!omap - - id: "s_1351" - - name: "phosphatidylethanolamine backbone" - - compartment: "c" - - formula: "C5H10NO4P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1351" + - name: "phosphatidylethanolamine backbone" + - compartment: "c" + - formula: "C5H10NO4P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pe_hs" - chebi: "CHEBI:16038" - kegg.compound: "C00350" - metanetx.chemical: "MNXM115" - sbo: "SBO:0000649" - - !!omap - - id: "s_1352" - - name: "phosphatidylethanolamine backbone" - - compartment: "er" - - formula: "C5H10NO4P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1352" + - name: "phosphatidylethanolamine backbone" + - compartment: "er" + - formula: "C5H10NO4P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pe_hs" - chebi: "CHEBI:16038" - kegg.compound: "C00350" - metanetx.chemical: "MNXM115" - sbo: "SBO:0000649" - - !!omap - - id: "s_1360" - - name: "phosphoenolpyruvate" - - compartment: "c" - - formula: "C3H2O6P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1360" + - name: "phosphoenolpyruvate" + - compartment: "c" + - formula: "C3H2O6P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "pep" - chebi: "CHEBI:58702" - kegg.compound: "C00074" - metanetx.chemical: "MNXM73" - sbo: "SBO:0000247" - - !!omap - - id: "s_1361" - - name: "phosphoenolpyruvate" - - compartment: "m" - - formula: "C3H2O6P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1361" + - name: "phosphoenolpyruvate" + - compartment: "m" + - formula: "C3H2O6P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "pep" - chebi: "CHEBI:58702" - kegg.compound: "C00074" - metanetx.chemical: "MNXM73" - sbo: "SBO:0000247" - - !!omap - - id: "s_1364" - - name: "phosphoribosyl-carboxy-aminoimidazole" - - compartment: "c" - - formula: "C9H12N3O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1364" + - name: "phosphoribosyl-carboxy-aminoimidazole" + - compartment: "c" + - formula: "C9H12N3O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "5aizc" - chebi: "CHEBI:58564" - kegg.compound: "C04751" - metanetx.chemical: "MNXM507" - sbo: "SBO:0000247" - - !!omap - - id: "s_1365" - - name: "phosphoribosyl-formamido-carboxamide" - - compartment: "c" - - formula: "C10H13N4O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1365" + - name: "phosphoribosyl-formamido-carboxamide" + - compartment: "c" + - formula: "C10H13N4O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "fprica" - chebi: "CHEBI:58467" - kegg.compound: "C04734" - metanetx.chemical: "MNXM456" - sbo: "SBO:0000247" - - !!omap - - id: "s_1366" - - name: "phytosphingosine" - - compartment: "er" - - formula: "C18H40NO3" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1366" + - name: "phytosphingosine" + - compartment: "er" + - formula: "C18H40NO3" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "psphings" - chebi: "CHEBI:46961" - kegg.compound: "C12144" - metanetx.chemical: "MNXM914" - sbo: "SBO:0000247" - - !!omap - - id: "s_1367" - - name: "phytosphingosine 1-phosphate" - - compartment: "er" - - formula: "C18H39NO6P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1367" + - name: "phytosphingosine 1-phosphate" + - compartment: "er" + - formula: "C18H39NO6P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "psph1p" - chebi: "CHEBI:46970" - metanetx.chemical: "MNXM3337" - sbo: "SBO:0000247" - - !!omap - - id: "s_1368" - - name: "pimeloyl-CoA" - - compartment: "c" - - formula: "C28H41N7O19P3S" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_1368" + - name: "pimeloyl-CoA" + - compartment: "c" + - formula: "C28H41N7O19P3S" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "pmcoa" - chebi: "CHEBI:57360" - kegg.compound: "C01063" - metanetx.chemical: "MNXM951" - sbo: "SBO:0000247" - - !!omap - - id: "s_1371" - - name: "polysulphur" - - compartment: "c" - - formula: "S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1371" + - name: "polysulphur" + - compartment: "c" + - formula: "S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17909" - kegg.compound: "C00087" - metanetx.chemical: "MNXM77783" - sbo: "SBO:0000247" - - !!omap - - id: "s_1372" - - name: "porphobilinogen" - - compartment: "c" - - formula: "C10H13N2O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1372" + - name: "porphobilinogen" + - compartment: "c" + - formula: "C10H13N2O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ppbng" - chebi: "CHEBI:58126" - kegg.compound: "C00931" - metanetx.chemical: "MNXM554" - sbo: "SBO:0000247" - - !!omap - - id: "s_1373" - - name: "potassium" - - compartment: "c" - - formula: "K" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1373" + - name: "potassium" + - compartment: "c" + - formula: "K" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "k" - chebi: "CHEBI:26216" - kegg.compound: "C00238" - metanetx.chemical: "MNXM77881" - sbo: "SBO:0000247" - - !!omap - - id: "s_1374" - - name: "potassium" - - compartment: "e" - - formula: "K" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1374" + - name: "potassium" + - compartment: "e" + - formula: "K" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "k" - chebi: "CHEBI:26216" - kegg.compound: "C00238" - metanetx.chemical: "MNXM77881" - sbo: "SBO:0000247" - - !!omap - - id: "s_1375" - - name: "precorrin-2" - - compartment: "c" - - formula: "C42H41N4O16" - - charge: -7 - - annotation: !!omap + - !!omap + - id: "s_1375" + - name: "precorrin-2" + - compartment: "c" + - formula: "C42H41N4O16" + - charge: -7 + - annotation: !!omap - bigg.metabolite: "dscl" - chebi: "CHEBI:58827" - kegg.compound: "C02463" - metanetx.chemical: "MNXM672" - sbo: "SBO:0000247" - - !!omap - - id: "s_1376" - - name: "prenyl diphosphate(3-)" - - compartment: "c" - - formula: "C5H9O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1376" + - name: "prenyl diphosphate(3-)" + - compartment: "c" + - formula: "C5H9O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "dmpp" - chebi: "CHEBI:57623" - kegg.compound: "C00235" - metanetx.chemical: "MNXM132" - sbo: "SBO:0000247" - - !!omap - - id: "s_1377" - - name: "prephenate" - - compartment: "c" - - formula: "C10H8O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1377" + - name: "prephenate" + - compartment: "c" + - formula: "C10H8O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pphn" - chebi: "CHEBI:29934" - kegg.compound: "C00254" - metanetx.chemical: "MNXM503" - sbo: "SBO:0000247" - - !!omap - - id: "s_1378" - - name: "preuroporphyrinogen" - - compartment: "c" - - formula: "C40H38N4O17" - - charge: -8 - - annotation: !!omap + - !!omap + - id: "s_1378" + - name: "preuroporphyrinogen" + - compartment: "c" + - formula: "C40H38N4O17" + - charge: -8 + - annotation: !!omap - bigg.metabolite: "hmbil" - chebi: "CHEBI:57845" - kegg.compound: "C01024" - metanetx.chemical: "MNXM547" - sbo: "SBO:0000247" - - !!omap - - id: "s_1379" - - name: "Pro-tRNA(Pro)" - - compartment: "c" - - formula: "C5H9NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1379" + - name: "Pro-tRNA(Pro)" + - compartment: "c" + - formula: "C5H9NOR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "protrna" - chebi: "CHEBI:29154" - kegg.compound: "C02702" - metanetx.chemical: "MNXM247" - sbo: "SBO:0000247" - - !!omap - - id: "s_1382" - - name: "propionyl-CoA" - - compartment: "m" - - formula: "C24H36N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1382" + - name: "propionyl-CoA" + - compartment: "m" + - formula: "C24H36N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ppcoa" - chebi: "CHEBI:57386" - kegg.compound: "C00100" - metanetx.chemical: "MNXM86" - sbo: "SBO:0000247" - - !!omap - - id: "s_1383" - - name: "protoporphyrin" - - compartment: "m" - - formula: "C34H32N4O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1383" + - name: "protoporphyrin" + - compartment: "m" + - formula: "C34H32N4O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "ppp9" - chebi: "CHEBI:36159" - kegg.compound: "C02191" - metanetx.chemical: "MNXM346" - sbo: "SBO:0000247" - - !!omap - - id: "s_1384" - - name: "protoporphyrinogen" - - compartment: "c" - - formula: "C34H38N4O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1384" + - name: "protoporphyrinogen" + - compartment: "c" + - formula: "C34H38N4O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pppg9" - chebi: "CHEBI:57307" - kegg.compound: "C01079" - metanetx.chemical: "MNXM351" - sbo: "SBO:0000247" - - !!omap - - id: "s_1385" - - name: "protoporphyrinogen" - - compartment: "m" - - formula: "C34H38N4O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1385" + - name: "protoporphyrinogen" + - compartment: "m" + - formula: "C34H38N4O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pppg9" - chebi: "CHEBI:57307" - kegg.compound: "C01079" - metanetx.chemical: "MNXM351" - sbo: "SBO:0000247" - - !!omap - - id: "s_1386" - - name: "PRPP" - - compartment: "c" - - formula: "C5H8O14P3" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_1386" + - name: "PRPP" + - compartment: "c" + - formula: "C5H8O14P3" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "prpp" - chebi: "CHEBI:58017" - kegg.compound: "C00119" - metanetx.chemical: "MNXM91" - sbo: "SBO:0000247" - - !!omap - - id: "s_1387" - - name: "PRPP" - - compartment: "m" - - formula: "C5H8O14P3" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_1387" + - name: "PRPP" + - compartment: "m" + - formula: "C5H8O14P3" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "prpp" - chebi: "CHEBI:58017" - kegg.compound: "C00119" - metanetx.chemical: "MNXM91" - sbo: "SBO:0000247" - - !!omap - - id: "s_1388" - - name: "pseudouridine 5'-phosphate" - - compartment: "c" - - formula: "C9H11N2O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1388" + - name: "pseudouridine 5'-phosphate" + - compartment: "c" + - formula: "C9H11N2O9P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:58380" - kegg.compound: "C01168" - metanetx.chemical: "MNXM2276" - sbo: "SBO:0000247" - - !!omap - - id: "s_1389" - - name: "putrescine" - - compartment: "c" - - formula: "C4H14N2" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_1389" + - name: "putrescine" + - compartment: "c" + - formula: "C4H14N2" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "ptrc" - chebi: "CHEBI:326268" - kegg.compound: "C00134" - metanetx.chemical: "MNXM118" - sbo: "SBO:0000247" - - !!omap - - id: "s_1390" - - name: "putrescine" - - compartment: "e" - - formula: "C4H14N2" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_1390" + - name: "putrescine" + - compartment: "e" + - formula: "C4H14N2" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "ptrc" - chebi: "CHEBI:326268" - kegg.compound: "C00134" - metanetx.chemical: "MNXM118" - sbo: "SBO:0000247" - - !!omap - - id: "s_1391" - - name: "putrescine" - - compartment: "v" - - formula: "C4H14N2" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_1391" + - name: "putrescine" + - compartment: "v" + - formula: "C4H14N2" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "ptrc" - chebi: "CHEBI:326268" - kegg.compound: "C00134" - metanetx.chemical: "MNXM118" - sbo: "SBO:0000247" - - !!omap - - id: "s_1392" - - name: "pyridoxal" - - compartment: "c" - - formula: "C8H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1392" + - name: "pyridoxal" + - compartment: "c" + - formula: "C8H9NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pydx" - chebi: "CHEBI:17310" - kegg.compound: "C00250" - metanetx.chemical: "MNXM311" - sbo: "SBO:0000247" - - !!omap - - id: "s_1393" - - name: "pyridoxal 5'-phosphate" - - compartment: "c" - - formula: "C8H8NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1393" + - name: "pyridoxal 5'-phosphate" + - compartment: "c" + - formula: "C8H8NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pydx5p" - chebi: "CHEBI:597326" - kegg.compound: "C00018" - metanetx.chemical: "MNXM161" - sbo: "SBO:0000247" - - !!omap - - id: "s_1394" - - name: "pyridoxamine" - - compartment: "c" - - formula: "C8H13N2O2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1394" + - name: "pyridoxamine" + - compartment: "c" + - formula: "C8H13N2O2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "pydam" - chebi: "CHEBI:57761" - kegg.compound: "C00534" - metanetx.chemical: "MNXM548" - sbo: "SBO:0000247" - - !!omap - - id: "s_1395" - - name: "pyridoxamine 5'-phosphate" - - compartment: "c" - - formula: "C8H12N2O5P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1395" + - name: "pyridoxamine 5'-phosphate" + - compartment: "c" + - formula: "C8H12N2O5P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "pyam5p" - chebi: "CHEBI:58451" - kegg.compound: "C00647" - metanetx.chemical: "MNXM366" - sbo: "SBO:0000247" - - !!omap - - id: "s_1396" - - name: "pyridoxine" - - compartment: "c" - - formula: "C8H11NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1396" + - name: "pyridoxine" + - compartment: "c" + - formula: "C8H11NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pydxn" - chebi: "CHEBI:16709" - kegg.compound: "C00314" - metanetx.chemical: "MNXM419" - sbo: "SBO:0000247" - - !!omap - - id: "s_1397" - - name: "pyridoxine" - - compartment: "e" - - formula: "C8H11NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1397" + - name: "pyridoxine" + - compartment: "e" + - formula: "C8H11NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pydxn" - chebi: "CHEBI:16709" - kegg.compound: "C00314" - metanetx.chemical: "MNXM419" - sbo: "SBO:0000247" - - !!omap - - id: "s_1398" - - name: "pyridoxine 5'-phosphate" - - compartment: "c" - - formula: "C8H10NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1398" + - name: "pyridoxine 5'-phosphate" + - compartment: "c" + - formula: "C8H10NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pdx5p" - chebi: "CHEBI:58589" - kegg.compound: "C00627" - metanetx.chemical: "MNXM454" - sbo: "SBO:0000247" - - !!omap - - id: "s_1399" - - name: "pyruvate" - - compartment: "c" - - formula: "C3H3O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1399" + - name: "pyruvate" + - compartment: "c" + - formula: "C3H3O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "pyr" - chebi: "CHEBI:15361" - kegg.compound: "C00022" - metanetx.chemical: "MNXM23" - sbo: "SBO:0000247" - - !!omap - - id: "s_1400" - - name: "pyruvate" - - compartment: "e" - - formula: "C3H3O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1400" + - name: "pyruvate" + - compartment: "e" + - formula: "C3H3O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "pyr" - chebi: "CHEBI:15361" - kegg.compound: "C00022" - metanetx.chemical: "MNXM23" - sbo: "SBO:0000247" - - !!omap - - id: "s_1401" - - name: "pyruvate" - - compartment: "m" - - formula: "C3H3O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1401" + - name: "pyruvate" + - compartment: "m" + - formula: "C3H3O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "pyr" - chebi: "CHEBI:15361" - kegg.compound: "C00022" - metanetx.chemical: "MNXM23" - sbo: "SBO:0000247" - - !!omap - - id: "s_1403" - - name: "quinolinate" - - compartment: "c" - - formula: "C7H3NO4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1403" + - name: "quinolinate" + - compartment: "c" + - formula: "C7H3NO4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "quln" - chebi: "CHEBI:29959" - kegg.compound: "C03722" - metanetx.chemical: "MNXM555" - sbo: "SBO:0000247" - - !!omap - - id: "s_1404" - - name: "quinolinate" - - compartment: "m" - - formula: "C7H3NO4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1404" + - name: "quinolinate" + - compartment: "m" + - formula: "C7H3NO4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "quln" - chebi: "CHEBI:29959" - kegg.compound: "C03722" - metanetx.chemical: "MNXM555" - sbo: "SBO:0000247" - - !!omap - - id: "s_1405" - - name: "riboflavin" - - compartment: "c" - - formula: "C17H19N4O6" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1405" + - name: "riboflavin" + - compartment: "c" + - formula: "C17H19N4O6" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ribflv" - chebi: "CHEBI:57986" - kegg.compound: "C00255" - metanetx.chemical: "MNXM270" - sbo: "SBO:0000247" - - !!omap - - id: "s_1406" - - name: "riboflavin" - - compartment: "e" - - formula: "C17H19N4O6" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1406" + - name: "riboflavin" + - compartment: "e" + - formula: "C17H19N4O6" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ribflv" - chebi: "CHEBI:57986" - kegg.compound: "C00255" - metanetx.chemical: "MNXM270" - sbo: "SBO:0000247" - - !!omap - - id: "s_1407" - - name: "riboflavin" - - compartment: "m" - - formula: "C17H19N4O6" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1407" + - name: "riboflavin" + - compartment: "m" + - formula: "C17H19N4O6" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ribflv" - chebi: "CHEBI:57986" - kegg.compound: "C00255" - metanetx.chemical: "MNXM270" - sbo: "SBO:0000247" - - !!omap - - id: "s_1408" - - name: "ribose-5-phosphate" - - compartment: "c" - - formula: "C5H9O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1408" + - name: "ribose-5-phosphate" + - compartment: "c" + - formula: "C5H9O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "r5p" - chebi: "CHEBI:18189" - kegg.compound: "C03736" - metanetx.chemical: "MNXM15900" - sbo: "SBO:0000247" - - !!omap - - id: "s_1409" - - name: "S(8)-aminomethyldihydrolipoamide" - - compartment: "m" - - formula: "C9H21N2OS2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1409" + - name: "S(8)-aminomethyldihydrolipoamide" + - compartment: "m" + - formula: "C9H21N2OS2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "alpam" - chebi: "CHEBI:50622" - metanetx.chemical: "MNXM81220" - sbo: "SBO:0000247" - - !!omap - - id: "s_1410" - - name: "S(8)-aminomethyldihydrolipoylprotein" - - compartment: "m" - - formula: "C9H19N2OS2R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1410" + - name: "S(8)-aminomethyldihydrolipoylprotein" + - compartment: "m" + - formula: "C9H19N2OS2R" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "alpro" - chebi: "CHEBI:16882" - kegg.compound: "C01242" - metanetx.chemical: "MNXM81221" - sbo: "SBO:0000247" - - !!omap - - id: "s_1411" - - name: "S(8)-succinyldihydrolipoamide" - - compartment: "m" - - formula: "C12H20NO4S2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1411" + - name: "S(8)-succinyldihydrolipoamide" + - compartment: "m" + - formula: "C12H20NO4S2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "sdhlam" - chebi: "CHEBI:17432" - kegg.compound: "C01169" - metanetx.chemical: "MNXM3710" - sbo: "SBO:0000247" - - !!omap - - id: "s_1412" - - name: "S-adenosyl-4-methylthio-2-oxobutanoate" - - compartment: "c" - - formula: "C15H19N5O6S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1412" + - name: "S-adenosyl-4-methylthio-2-oxobutanoate" + - compartment: "c" + - formula: "C15H19N5O6S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "amob" - chebi: "CHEBI:16490" - kegg.compound: "C04425" - metanetx.chemical: "MNXM3090" - sbo: "SBO:0000247" - - !!omap - - id: "s_1413" - - name: "S-adenosyl-L-homocysteine" - - compartment: "c" - - formula: "C14H20N6O5S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1413" + - name: "S-adenosyl-L-homocysteine" + - compartment: "c" + - formula: "C14H20N6O5S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ahcys" - chebi: "CHEBI:16680" - kegg.compound: "C00021" - metanetx.chemical: "MNXM19" - sbo: "SBO:0000247" - - !!omap - - id: "s_1415" - - name: "S-adenosyl-L-homocysteine" - - compartment: "m" - - formula: "C14H20N6O5S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1415" + - name: "S-adenosyl-L-homocysteine" + - compartment: "m" + - formula: "C14H20N6O5S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ahcys" - chebi: "CHEBI:16680" - kegg.compound: "C00021" - metanetx.chemical: "MNXM19" - sbo: "SBO:0000247" - - !!omap - - id: "s_1416" - - name: "S-adenosyl-L-methionine" - - compartment: "c" - - formula: "C15H23N6O5S" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1416" + - name: "S-adenosyl-L-methionine" + - compartment: "c" + - formula: "C15H23N6O5S" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "amet" - chebi: "CHEBI:15414" - kegg.compound: "C00019" - metanetx.chemical: "MNXM16" - sbo: "SBO:0000247" - - !!omap - - id: "s_1418" - - name: "S-adenosyl-L-methionine" - - compartment: "e" - - formula: "C15H23N6O5S" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1418" + - name: "S-adenosyl-L-methionine" + - compartment: "e" + - formula: "C15H23N6O5S" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "amet" - chebi: "CHEBI:15414" - kegg.compound: "C00019" - metanetx.chemical: "MNXM16" - sbo: "SBO:0000247" - - !!omap - - id: "s_1419" - - name: "S-adenosyl-L-methionine" - - compartment: "m" - - formula: "C15H23N6O5S" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1419" + - name: "S-adenosyl-L-methionine" + - compartment: "m" + - formula: "C15H23N6O5S" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "amet" - chebi: "CHEBI:15414" - kegg.compound: "C00019" - metanetx.chemical: "MNXM16" - sbo: "SBO:0000247" - - !!omap - - id: "s_1420" - - name: "S-adenosylmethioninamine" - - compartment: "c" - - formula: "C14H24N6O3S" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_1420" + - name: "S-adenosylmethioninamine" + - compartment: "c" + - formula: "C14H24N6O3S" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "ametam" - chebi: "CHEBI:57443" - kegg.compound: "C01137" - metanetx.chemical: "MNXM321" - sbo: "SBO:0000247" - - !!omap - - id: "s_1421" - - name: "S-formylglutathione" - - compartment: "c" - - formula: "C11H16N3O7S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1421" + - name: "S-formylglutathione" + - compartment: "c" + - formula: "C11H16N3O7S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "Sfglutth" - chebi: "CHEBI:57688" - kegg.compound: "C01031" - metanetx.chemical: "MNXM952" - sbo: "SBO:0000247" - - !!omap - - id: "s_1422" - - name: "S-methyl-5-thio-alpha-D-ribose 1-phosphate" - - compartment: "c" - - formula: "C6H11O7PS" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1422" + - name: "S-methyl-5-thio-alpha-D-ribose 1-phosphate" + - compartment: "c" + - formula: "C6H11O7PS" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "5mdr1p" - chebi: "CHEBI:58533" - kegg.compound: "C04188" - metanetx.chemical: "MNXM407" - sbo: "SBO:0000247" - - !!omap - - id: "s_1423" - - name: "S-methyl-5-thio-D-ribulose 1-phosphate" - - compartment: "c" - - formula: "C6H11O7PS" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1423" + - name: "S-methyl-5-thio-D-ribulose 1-phosphate" + - compartment: "c" + - formula: "C6H11O7PS" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "5mdru1p" - chebi: "CHEBI:58548" - kegg.compound: "C04582" - metanetx.chemical: "MNXM522" - sbo: "SBO:0000247" - - !!omap - - id: "s_1424" - - name: "S-methyl-L-methionine" - - compartment: "c" - - formula: "C6H14NO2S" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1424" + - name: "S-methyl-L-methionine" + - compartment: "c" + - formula: "C6H14NO2S" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "mmet" - chebi: "CHEBI:17728" - kegg.compound: "C03172" - metanetx.chemical: "MNXM1119" - sbo: "SBO:0000247" - - !!omap - - id: "s_1425" - - name: "S-methyl-L-methionine" - - compartment: "e" - - formula: "C6H14NO2S" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1425" + - name: "S-methyl-L-methionine" + - compartment: "e" + - formula: "C6H14NO2S" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "mmet" - chebi: "CHEBI:17728" - kegg.compound: "C03172" - metanetx.chemical: "MNXM1119" - sbo: "SBO:0000247" - - !!omap - - id: "s_1426" - - name: "sedoheptulose 1,7-bisphosphate" - - compartment: "c" - - formula: "C7H12O13P2" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1426" + - name: "sedoheptulose 1,7-bisphosphate" + - compartment: "c" + - formula: "C7H12O13P2" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "s17bp" - chebi: "CHEBI:58335" - kegg.compound: "C00447" - metanetx.chemical: "MNXM1294" - sbo: "SBO:0000247" - - !!omap - - id: "s_1427" - - name: "sedoheptulose 7-phosphate" - - compartment: "c" - - formula: "C7H13O10P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1427" + - name: "sedoheptulose 7-phosphate" + - compartment: "c" + - formula: "C7H13O10P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "s7p" - chebi: "CHEBI:57483" - kegg.compound: "C05382" - metanetx.chemical: "MNXM271" - sbo: "SBO:0000247" - - !!omap - - id: "s_1428" - - name: "Ser-tRNA(Ser)" - - compartment: "c" - - formula: "C3H7NO2R" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1428" + - name: "Ser-tRNA(Ser)" + - compartment: "c" + - formula: "C3H7NO2R" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "sertrna" - chebi: "CHEBI:29162" - kegg.compound: "C02553" - metanetx.chemical: "MNXM165150" - sbo: "SBO:0000247" - - !!omap - - id: "s_1429" - - name: "shikimate" - - compartment: "c" - - formula: "C7H9O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1429" + - name: "shikimate" + - compartment: "c" + - formula: "C7H9O5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "skm" - chebi: "CHEBI:36208" - kegg.compound: "C00493" - metanetx.chemical: "MNXM602" - sbo: "SBO:0000247" - - !!omap - - id: "s_1430" - - name: "siroheme" - - compartment: "c" - - formula: "C42H36FeN4O16" - - charge: -8 - - annotation: !!omap + - !!omap + - id: "s_1430" + - name: "siroheme" + - compartment: "c" + - formula: "C42H36FeN4O16" + - charge: -8 + - annotation: !!omap - bigg.metabolite: "sheme" - chebi: "CHEBI:60052" - kegg.compound: "C00748" - metanetx.chemical: "MNXM82173" - sbo: "SBO:0000247" - - !!omap - - id: "s_1431" - - name: "sirohydrochlorin" - - compartment: "c" - - formula: "C42H38N4O16" - - charge: -8 - - annotation: !!omap + - !!omap + - id: "s_1431" + - name: "sirohydrochlorin" + - compartment: "c" + - formula: "C42H38N4O16" + - charge: -8 + - annotation: !!omap - bigg.metabolite: "scl" - chebi: "CHEBI:58351" - kegg.compound: "C05778" - metanetx.chemical: "MNXM863" - sbo: "SBO:0000247" - - !!omap - - id: "s_1432" - - name: "sn-glycero-3-phosphocholine" - - compartment: "ce" - - formula: "C8H20NO6P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1432" + - name: "sn-glycero-3-phosphocholine" + - compartment: "ce" + - formula: "C8H20NO6P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "g3pc" - chebi: "CHEBI:16870" - kegg.compound: "C00670" - metanetx.chemical: "MNXM367" - sbo: "SBO:0000247" - - !!omap - - id: "s_1433" - - name: "sn-glycero-3-phosphocholine" - - compartment: "c" - - formula: "C8H20NO6P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1433" + - name: "sn-glycero-3-phosphocholine" + - compartment: "c" + - formula: "C8H20NO6P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "g3pc" - chebi: "CHEBI:16870" - kegg.compound: "C00670" - metanetx.chemical: "MNXM367" - sbo: "SBO:0000247" - - !!omap - - id: "s_1435" - - name: "sn-glycero-3-phosphocholine" - - compartment: "e" - - formula: "C8H20NO6P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1435" + - name: "sn-glycero-3-phosphocholine" + - compartment: "e" + - formula: "C8H20NO6P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "g3pc" - chebi: "CHEBI:16870" - kegg.compound: "C00670" - metanetx.chemical: "MNXM367" - sbo: "SBO:0000247" - - !!omap - - id: "s_1437" - - name: "sodium" - - compartment: "c" - - formula: "Na" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1437" + - name: "sodium" + - compartment: "c" + - formula: "Na" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "na1" - chebi: "CHEBI:26708" - kegg.compound: "C01330" - metanetx.chemical: "MNXM82334" - sbo: "SBO:0000247" - - !!omap - - id: "s_1438" - - name: "sodium" - - compartment: "e" - - formula: "Na" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1438" + - name: "sodium" + - compartment: "e" + - formula: "Na" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "na1" - chebi: "CHEBI:26708" - kegg.compound: "C01330" - metanetx.chemical: "MNXM82334" - sbo: "SBO:0000247" - - !!omap - - id: "s_1439" - - name: "spermidine" - - compartment: "c" - - formula: "C7H22N3" - - charge: 3 - - annotation: !!omap + - !!omap + - id: "s_1439" + - name: "spermidine" + - compartment: "c" + - formula: "C7H22N3" + - charge: 3 + - annotation: !!omap - bigg.metabolite: "spmd" - chebi: "CHEBI:57834" - kegg.compound: "C00315" - metanetx.chemical: "MNXM124" - sbo: "SBO:0000247" - - !!omap - - id: "s_1440" - - name: "spermidine" - - compartment: "e" - - formula: "C7H22N3" - - charge: 3 - - annotation: !!omap + - !!omap + - id: "s_1440" + - name: "spermidine" + - compartment: "e" + - formula: "C7H22N3" + - charge: 3 + - annotation: !!omap - bigg.metabolite: "spmd" - chebi: "CHEBI:57834" - kegg.compound: "C00315" - metanetx.chemical: "MNXM124" - sbo: "SBO:0000247" - - !!omap - - id: "s_1441" - - name: "spermidine" - - compartment: "v" - - formula: "C7H22N3" - - charge: 3 - - annotation: !!omap + - !!omap + - id: "s_1441" + - name: "spermidine" + - compartment: "v" + - formula: "C7H22N3" + - charge: 3 + - annotation: !!omap - bigg.metabolite: "spmd" - chebi: "CHEBI:57834" - kegg.compound: "C00315" - metanetx.chemical: "MNXM124" - sbo: "SBO:0000247" - - !!omap - - id: "s_1442" - - name: "spermine" - - compartment: "c" - - formula: "C10H30N4" - - charge: 4 - - annotation: !!omap + - !!omap + - id: "s_1442" + - name: "spermine" + - compartment: "c" + - formula: "C10H30N4" + - charge: 4 + - annotation: !!omap - bigg.metabolite: "sprm" - chebi: "CHEBI:45725" - kegg.compound: "C00750" - metanetx.chemical: "MNXM408" - sbo: "SBO:0000247" - - !!omap - - id: "s_1443" - - name: "spermine" - - compartment: "e" - - formula: "C10H30N4" - - charge: 4 - - annotation: !!omap + - !!omap + - id: "s_1443" + - name: "spermine" + - compartment: "e" + - formula: "C10H30N4" + - charge: 4 + - annotation: !!omap - bigg.metabolite: "sprm" - chebi: "CHEBI:45725" - kegg.compound: "C00750" - metanetx.chemical: "MNXM408" - sbo: "SBO:0000247" - - !!omap - - id: "s_1444" - - name: "spermine" - - compartment: "v" - - formula: "C10H30N4" - - charge: 4 - - annotation: !!omap + - !!omap + - id: "s_1444" + - name: "spermine" + - compartment: "v" + - formula: "C10H30N4" + - charge: 4 + - annotation: !!omap - bigg.metabolite: "sprm" - chebi: "CHEBI:45725" - kegg.compound: "C00750" - metanetx.chemical: "MNXM408" - sbo: "SBO:0000247" - - !!omap - - id: "s_1445" - - name: "sphinganine" - - compartment: "er" - - formula: "C18H40NO2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1445" + - name: "sphinganine" + - compartment: "er" + - formula: "C18H40NO2" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "sphgn" - chebi: "CHEBI:57817" - kegg.compound: "C00836" - metanetx.chemical: "MNXM302" - sbo: "SBO:0000247" - - !!omap - - id: "s_1446" - - name: "sphinganine 1-phosphate" - - compartment: "er" - - formula: "C18H39NO5P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1446" + - name: "sphinganine 1-phosphate" + - compartment: "er" + - formula: "C18H39NO5P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "sph1p" - chebi: "CHEBI:57939" - kegg.compound: "C01120" - metanetx.chemical: "MNXM487" - sbo: "SBO:0000247" - - !!omap - - id: "s_1447" - - name: "squalene" - - compartment: "c" - - formula: "C30H50" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1447" + - name: "squalene" + - compartment: "c" + - formula: "C30H50" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "sql" - chebi: "CHEBI:15440" - kegg.compound: "C00751" - metanetx.chemical: "MNXM292" - sbo: "SBO:0000247" - - !!omap - - id: "s_1448" - - name: "squalene" - - compartment: "er" - - formula: "C30H50" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1448" + - name: "squalene" + - compartment: "er" + - formula: "C30H50" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "sql" - chebi: "CHEBI:15440" - kegg.compound: "C00751" - metanetx.chemical: "MNXM292" - sbo: "SBO:0000247" - - !!omap - - id: "s_1449" - - name: "stearate" - - compartment: "c" - - formula: "C18H35O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1449" + - name: "stearate" + - compartment: "c" + - formula: "C18H35O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdca" - chebi: "CHEBI:25629" - kegg.compound: "C01530" - metanetx.chemical: "MNXM236" - sbo: "SBO:0000247" - - !!omap - - id: "s_1450" - - name: "stearate" - - compartment: "e" - - formula: "C18H35O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1450" + - name: "stearate" + - compartment: "e" + - formula: "C18H35O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdca" - chebi: "CHEBI:25629" - kegg.compound: "C01530" - metanetx.chemical: "MNXM236" - sbo: "SBO:0000247" - - !!omap - - id: "s_1451" - - name: "stearate" - - compartment: "p" - - formula: "C18H35O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1451" + - name: "stearate" + - compartment: "p" + - formula: "C18H35O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdca" - chebi: "CHEBI:25629" - kegg.compound: "C01530" - metanetx.chemical: "MNXM236" - sbo: "SBO:0000247" - - !!omap - - id: "s_1454" - - name: "stearoyl-CoA" - - compartment: "c" - - formula: "C39H66N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1454" + - name: "stearoyl-CoA" + - compartment: "c" + - formula: "C39H66N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "stcoa" - chebi: "CHEBI:57394" - kegg.compound: "C00412" - metanetx.chemical: "MNXM272" - sbo: "SBO:0000247" - - !!omap - - id: "s_1457" - - name: "stearoyl-CoA" - - compartment: "p" - - formula: "C39H66N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1457" + - name: "stearoyl-CoA" + - compartment: "p" + - formula: "C39H66N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "stcoa" - chebi: "CHEBI:57394" - kegg.compound: "C00412" - metanetx.chemical: "MNXM272" - sbo: "SBO:0000247" - - !!omap - - id: "s_1458" - - name: "succinate" - - compartment: "c" - - formula: "C4H4O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1458" + - name: "succinate" + - compartment: "c" + - formula: "C4H4O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "succ" - chebi: "CHEBI:30031" - kegg.compound: "C00042" - metanetx.chemical: "MNXM25" - sbo: "SBO:0000247" - - !!omap - - id: "s_1459" - - name: "succinate" - - compartment: "e" - - formula: "C4H4O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1459" + - name: "succinate" + - compartment: "e" + - formula: "C4H4O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "succ" - chebi: "CHEBI:30031" - kegg.compound: "C00042" - metanetx.chemical: "MNXM25" - sbo: "SBO:0000247" - - !!omap - - id: "s_1460" - - name: "succinate" - - compartment: "m" - - formula: "C4H4O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1460" + - name: "succinate" + - compartment: "m" + - formula: "C4H4O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "succ" - chebi: "CHEBI:30031" - kegg.compound: "C00042" - metanetx.chemical: "MNXM25" - sbo: "SBO:0000247" - - !!omap - - id: "s_1461" - - name: "succinic semialdehyde" - - compartment: "c" - - formula: "C4H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1461" + - name: "succinic semialdehyde" + - compartment: "c" + - formula: "C4H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "sucsal" - chebi: "CHEBI:57706" - kegg.compound: "C00232" - metanetx.chemical: "MNXM172" - sbo: "SBO:0000247" - - !!omap - - id: "s_1464" - - name: "succinyl-CoA" - - compartment: "m" - - formula: "C25H35N7O19P3S" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_1464" + - name: "succinyl-CoA" + - compartment: "m" + - formula: "C25H35N7O19P3S" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "succoa" - chebi: "CHEBI:57292" - kegg.compound: "C00091" - metanetx.chemical: "MNXM92" - sbo: "SBO:0000247" - - !!omap - - id: "s_1466" - - name: "sucrose" - - compartment: "e" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1466" + - name: "sucrose" + - compartment: "e" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "sucr" - chebi: "CHEBI:17992" - kegg.compound: "C00089" - metanetx.chemical: "MNXM167" - sbo: "SBO:0000247" - - !!omap - - id: "s_1467" - - name: "sulphate" - - compartment: "c" - - formula: "O4S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1467" + - name: "sulphate" + - compartment: "c" + - formula: "O4S" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "so4" - chebi: "CHEBI:16189" - kegg.compound: "C00059" - metanetx.chemical: "MNXM58" - sbo: "SBO:0000247" - - !!omap - - id: "s_1468" - - name: "sulphate" - - compartment: "e" - - formula: "O4S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1468" + - name: "sulphate" + - compartment: "e" + - formula: "O4S" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "so4" - chebi: "CHEBI:16189" - kegg.compound: "C00059" - metanetx.chemical: "MNXM58" - sbo: "SBO:0000247" - - !!omap - - id: "s_1469" - - name: "sulphite" - - compartment: "c" - - formula: "O3S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1469" + - name: "sulphite" + - compartment: "c" + - formula: "O3S" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "so3" - chebi: "CHEBI:17137" - kegg.compound: "C11481" - metanetx.chemical: "MNXM105630" - sbo: "SBO:0000247" - - !!omap - - id: "s_1470" - - name: "sulphite" - - compartment: "e" - - formula: "O3S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1470" + - name: "sulphite" + - compartment: "e" + - formula: "O3S" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "so3" - chebi: "CHEBI:17137" - kegg.compound: "C11481" - metanetx.chemical: "MNXM105630" - sbo: "SBO:0000247" - - !!omap - - id: "s_1471" - - name: "taurine" - - compartment: "c" - - formula: "C2H7NO3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1471" + - name: "taurine" + - compartment: "c" + - formula: "C2H7NO3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "taur" - chebi: "CHEBI:15891" - kegg.compound: "C00245" - metanetx.chemical: "MNXM282" - sbo: "SBO:0000247" - - !!omap - - id: "s_1472" - - name: "taurine" - - compartment: "e" - - formula: "C2H7NO3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1472" + - name: "taurine" + - compartment: "e" + - formula: "C2H7NO3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "taur" - chebi: "CHEBI:15891" - kegg.compound: "C00245" - metanetx.chemical: "MNXM282" - sbo: "SBO:0000247" - - !!omap - - id: "s_1473" - - name: "taurocholic acid" - - compartment: "c" - - formula: "C26H44NO7S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1473" + - name: "taurocholic acid" + - compartment: "c" + - formula: "C26H44NO7S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "tchola" - chebi: "CHEBI:36257" - kegg.compound: "C05122" - metanetx.chemical: "MNXM2288" - sbo: "SBO:0000247" - - !!omap - - id: "s_1474" - - name: "taurocholic acid" - - compartment: "v" - - formula: "C26H44NO7S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1474" + - name: "taurocholic acid" + - compartment: "v" + - formula: "C26H44NO7S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "tchola" - chebi: "CHEBI:36257" - kegg.compound: "C05122" - metanetx.chemical: "MNXM2288" - sbo: "SBO:0000247" - - !!omap - - id: "s_1475" - - name: "TDP" - - compartment: "c" - - formula: "C12H16N4O7P2S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1475" + - name: "TDP" + - compartment: "c" + - formula: "C12H16N4O7P2S" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "thmpp" - chebi: "CHEBI:45931" - kegg.compound: "C00068" - metanetx.chemical: "MNXM256" - sbo: "SBO:0000247" - - !!omap - - id: "s_1476" - - name: "TDP" - - compartment: "e" - - formula: "C12H16N4O7P2S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1476" + - name: "TDP" + - compartment: "e" + - formula: "C12H16N4O7P2S" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "thmpp" - chebi: "CHEBI:45931" - kegg.compound: "C00068" - metanetx.chemical: "MNXM256" - sbo: "SBO:0000247" - - !!omap - - id: "s_1477" - - name: "TDP" - - compartment: "m" - - formula: "C12H16N4O7P2S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1477" + - name: "TDP" + - compartment: "m" + - formula: "C12H16N4O7P2S" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "thmpp" - chebi: "CHEBI:45931" - kegg.compound: "C00068" - metanetx.chemical: "MNXM256" - sbo: "SBO:0000247" - - !!omap - - id: "s_1479" - - name: "tetracosanoyl-CoA" - - compartment: "c" - - formula: "C45H78N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1479" + - name: "tetracosanoyl-CoA" + - compartment: "c" + - formula: "C45H78N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ttccoa" - chebi: "CHEBI:52974" - kegg.compound: "C16529" - metanetx.chemical: "MNXM1504" - sbo: "SBO:0000247" - - !!omap - - id: "s_1480" - - name: "tetracosanoyl-CoA" - - compartment: "er" - - formula: "C45H78N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1480" + - name: "tetracosanoyl-CoA" + - compartment: "er" + - formula: "C45H78N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ttccoa" - chebi: "CHEBI:52974" - kegg.compound: "C16529" - metanetx.chemical: "MNXM1504" - sbo: "SBO:0000247" - - !!omap - - id: "s_1482" - - name: "tetracosanoyl-CoA" - - compartment: "p" - - formula: "C45H78N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1482" + - name: "tetracosanoyl-CoA" + - compartment: "p" + - formula: "C45H78N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ttccoa" - chebi: "CHEBI:52974" - kegg.compound: "C16529" - metanetx.chemical: "MNXM1504" - sbo: "SBO:0000247" - - !!omap - - id: "s_1483" - - name: "tetradecaprenyl diphosphate" - - compartment: "lp" - - formula: "C70H113O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1483" + - name: "tetradecaprenyl diphosphate" + - compartment: "lp" + - formula: "C70H113O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53039" - metanetx.chemical: "MNXM83846" - sbo: "SBO:0000247" - - !!omap - - id: "s_1486" - - name: "tetrahydropteroyltri-L-glutamic acid" - - compartment: "c" - - formula: "C29H33N9O12" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1486" + - name: "tetrahydropteroyltri-L-glutamic acid" + - compartment: "c" + - formula: "C29H33N9O12" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hpglu" - chebi: "CHEBI:58140" - kegg.compound: "C04144" - metanetx.chemical: "MNXM2563" - sbo: "SBO:0000247" - - !!omap - - id: "s_1487" - - name: "THF" - - compartment: "c" - - formula: "C19H21N7O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1487" + - name: "THF" + - compartment: "c" + - formula: "C19H21N7O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "thf" - chebi: "CHEBI:20506" - kegg.compound: "C00101" - metanetx.chemical: "MNXM79" - sbo: "SBO:0000247" - - !!omap - - id: "s_1488" - - name: "THF" - - compartment: "m" - - formula: "C19H21N7O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1488" + - name: "THF" + - compartment: "m" + - formula: "C19H21N7O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "thf" - chebi: "CHEBI:20506" - kegg.compound: "C00101" - metanetx.chemical: "MNXM79" - sbo: "SBO:0000247" - - !!omap - - id: "s_1489" - - name: "thiamine" - - compartment: "c" - - formula: "C12H17N4OS" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1489" + - name: "thiamine" + - compartment: "c" + - formula: "C12H17N4OS" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "thm" - chebi: "CHEBI:18385" - kegg.compound: "C00378" - metanetx.chemical: "MNXM322" - sbo: "SBO:0000247" - - !!omap - - id: "s_1490" - - name: "thiamine" - - compartment: "e" - - formula: "C12H17N4OS" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1490" + - name: "thiamine" + - compartment: "e" + - formula: "C12H17N4OS" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "thm" - chebi: "CHEBI:18385" - kegg.compound: "C00378" - metanetx.chemical: "MNXM322" - sbo: "SBO:0000247" - - !!omap - - id: "s_1491" - - name: "Thr-tRNA(Thr)" - - compartment: "c" - - formula: "C4H9NO2R" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1491" + - name: "Thr-tRNA(Thr)" + - compartment: "c" + - formula: "C4H9NO2R" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "thrtrna" - chebi: "CHEBI:29163" - kegg.compound: "C02992" - metanetx.chemical: "MNXM89895" - sbo: "SBO:0000247" - - !!omap - - id: "s_1492" - - name: "Thr-tRNA(Thr)" - - compartment: "m" - - formula: "C4H9NO2R" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1492" + - name: "Thr-tRNA(Thr)" + - compartment: "m" + - formula: "C4H9NO2R" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "thrtrna" - chebi: "CHEBI:29163" - kegg.compound: "C02992" - metanetx.chemical: "MNXM89895" - sbo: "SBO:0000247" - - !!omap - - id: "s_1493" - - name: "thymidine" - - compartment: "c" - - formula: "C10H14N2O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1493" + - name: "thymidine" + - compartment: "c" + - formula: "C10H14N2O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "thymd" - chebi: "CHEBI:17748" - kegg.compound: "C00214" - metanetx.chemical: "MNXM420" - sbo: "SBO:0000247" - - !!omap - - id: "s_1494" - - name: "thymidine" - - compartment: "e" - - formula: "C10H14N2O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1494" + - name: "thymidine" + - compartment: "e" + - formula: "C10H14N2O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "thymd" - chebi: "CHEBI:17748" - kegg.compound: "C00214" - metanetx.chemical: "MNXM420" - sbo: "SBO:0000247" - - !!omap - - id: "s_1497" - - name: "TMP" - - compartment: "c" - - formula: "C12H16N4O4PS" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1497" + - name: "TMP" + - compartment: "c" + - formula: "C12H16N4O4PS" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "thmmp" - chebi: "CHEBI:9533" - kegg.compound: "C01081" - metanetx.chemical: "MNXM662" - sbo: "SBO:0000247" - - !!omap - - id: "s_1498" - - name: "TMP" - - compartment: "e" - - formula: "C12H16N4O4PS" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1498" + - name: "TMP" + - compartment: "e" + - formula: "C12H16N4O4PS" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "thmmp" - chebi: "CHEBI:9533" - kegg.compound: "C01081" - metanetx.chemical: "MNXM662" - sbo: "SBO:0000247" - - !!omap - - id: "s_1503" - - name: "trans-aconitate" - - compartment: "c" - - formula: "C6H3O6" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1503" + - name: "trans-aconitate" + - compartment: "c" + - formula: "C6H3O6" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "acon_T" - chebi: "CHEBI:15708" - kegg.compound: "C02341" - metanetx.chemical: "MNXM1388" - sbo: "SBO:0000247" - - !!omap - - id: "s_1504" - - name: "trans-aconitate" - - compartment: "m" - - formula: "C6H3O6" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1504" + - name: "trans-aconitate" + - compartment: "m" + - formula: "C6H3O6" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "acon_T" - chebi: "CHEBI:15708" - kegg.compound: "C02341" - metanetx.chemical: "MNXM1388" - sbo: "SBO:0000247" - - !!omap - - id: "s_1507" - - name: "trans-dec-2-enoyl-CoA" - - compartment: "p" - - formula: "C31H48N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1507" + - name: "trans-dec-2-enoyl-CoA" + - compartment: "p" + - formula: "C31H48N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "dc2coa" - chebi: "CHEBI:61406" - kegg.compound: "C05275" - metanetx.chemical: "MNXM580" - sbo: "SBO:0000247" - - !!omap - - id: "s_1510" - - name: "trans-dodec-2-enoyl-CoA" - - compartment: "p" - - formula: "C33H52N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1510" + - name: "trans-dodec-2-enoyl-CoA" + - compartment: "p" + - formula: "C33H52N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "dd2coa" - chebi: "CHEBI:57330" - kegg.compound: "C03221" - metanetx.chemical: "MNXM642" - sbo: "SBO:0000247" - - !!omap - - id: "s_1513" - - name: "trans-hexacos-2-enoyl-CoA" - - compartment: "p" - - formula: "C47H80N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1513" + - name: "trans-hexacos-2-enoyl-CoA" + - compartment: "p" + - formula: "C47H80N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hxc2coa" - chebi: "CHEBI:52975" - metanetx.chemical: "MNXM114303" - sbo: "SBO:0000247" - - !!omap - - id: "s_1516" - - name: "trans-octadec-2-enoyl-CoA" - - compartment: "p" - - formula: "C39H64N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1516" + - name: "trans-octadec-2-enoyl-CoA" + - compartment: "p" + - formula: "C39H64N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "od2coa" - chebi: "CHEBI:50570" - kegg.compound: "C16218" - metanetx.chemical: "MNXM954" - sbo: "SBO:0000247" - - !!omap - - id: "s_1519" - - name: "trans-tetradec-2-enoyl-CoA" - - compartment: "p" - - formula: "C35H56N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1519" + - name: "trans-tetradec-2-enoyl-CoA" + - compartment: "p" + - formula: "C35H56N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "td2coa" - chebi: "CHEBI:61405" - kegg.compound: "C05273" - metanetx.chemical: "MNXM654" - sbo: "SBO:0000247" - - !!omap - - id: "s_1520" - - name: "trehalose" - - compartment: "c" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1520" + - name: "trehalose" + - compartment: "c" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tre" - chebi: "CHEBI:16551" - kegg.compound: "C01083" - metanetx.chemical: "MNXM198" - sbo: "SBO:0000247" - - !!omap - - id: "s_1521" - - name: "trehalose" - - compartment: "e" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1521" + - name: "trehalose" + - compartment: "e" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tre" - chebi: "CHEBI:16551" - kegg.compound: "C01083" - metanetx.chemical: "MNXM198" - sbo: "SBO:0000247" - - !!omap - - id: "s_1522" - - name: "trehalose" - - compartment: "v" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1522" + - name: "trehalose" + - compartment: "v" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tre" - chebi: "CHEBI:16551" - kegg.compound: "C01083" - metanetx.chemical: "MNXM198" - sbo: "SBO:0000247" - - !!omap - - id: "s_1523" - - name: "tridecaprenyl diphosphate" - - compartment: "lp" - - formula: "C65H105O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1523" + - name: "tridecaprenyl diphosphate" + - compartment: "lp" + - formula: "C65H105O7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:53040" - metanetx.chemical: "MNXM5721" - sbo: "SBO:0000247" - - !!omap - - id: "s_1524" - - name: "triglyceride backbone" - - compartment: "c" - - formula: "C3H2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1524" + - name: "triglyceride backbone" + - compartment: "c" + - formula: "C3H2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag_cho" - chebi: "CHEBI:17855" - kegg.compound: "C00422" - metanetx.chemical: "MNXM248" - sbo: "SBO:0000649" - - !!omap - - id: "s_1526" - - name: "trimethylenediamine" - - compartment: "c" - - formula: "C3H12N2" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_1526" + - name: "trimethylenediamine" + - compartment: "c" + - formula: "C3H12N2" + - charge: 2 + - annotation: !!omap - chebi: "CHEBI:57484" - kegg.compound: "C00986" - metanetx.chemical: "MNXM350" - sbo: "SBO:0000247" - - !!omap - - id: "s_1527" - - name: "Trp-tRNA(Trp)" - - compartment: "c" - - formula: "C11H12N2OR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1527" + - name: "Trp-tRNA(Trp)" + - compartment: "c" + - formula: "C11H12N2OR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "trptrna" - chebi: "CHEBI:29159" - kegg.compound: "C03512" - metanetx.chemical: "MNXM89804" - sbo: "SBO:0000247" - - !!omap - - id: "s_1528" - - name: "Trp-tRNA(Trp)" - - compartment: "m" - - formula: "C11H12N2OR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1528" + - name: "Trp-tRNA(Trp)" + - compartment: "m" + - formula: "C11H12N2OR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "trptrna" - chebi: "CHEBI:29159" - kegg.compound: "C03512" - metanetx.chemical: "MNXM89804" - sbo: "SBO:0000247" - - !!omap - - id: "s_1529" - - name: "tryptophol" - - compartment: "c" - - formula: "C10H11NO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1529" + - name: "tryptophol" + - compartment: "c" + - formula: "C10H11NO" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ind3eth" - chebi: "CHEBI:17890" - kegg.compound: "C00955" - metanetx.chemical: "MNXM1686" - sbo: "SBO:0000247" - - !!omap - - id: "s_1530" - - name: "tryptophol" - - compartment: "e" - - formula: "C10H11NO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1530" + - name: "tryptophol" + - compartment: "e" + - formula: "C10H11NO" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ind3eth" - chebi: "CHEBI:17890" - kegg.compound: "C00955" - metanetx.chemical: "MNXM1686" - sbo: "SBO:0000247" - - !!omap - - id: "s_1531" - - name: "tryptophol" - - compartment: "m" - - formula: "C10H11NO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1531" + - name: "tryptophol" + - compartment: "m" + - formula: "C10H11NO" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ind3eth" - chebi: "CHEBI:17890" - kegg.compound: "C00955" - metanetx.chemical: "MNXM1686" - sbo: "SBO:0000247" - - !!omap - - id: "s_1532" - - name: "thiamine(1+) triphosphate(4-)" - - compartment: "c" - - formula: "C12H16N4O10P3S" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1532" + - name: "thiamine(1+) triphosphate(4-)" + - compartment: "c" + - formula: "C12H16N4O10P3S" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "thmtp" - chebi: "CHEBI:58938" - kegg.compound: "C03028" - metanetx.chemical: "MNXM1341" - sbo: "SBO:0000247" - - !!omap - - id: "s_1533" - - name: "Tyr-tRNA(Tyr)" - - compartment: "c" - - formula: "C9H11NO2R" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1533" + - name: "Tyr-tRNA(Tyr)" + - compartment: "c" + - formula: "C9H11NO2R" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "tyrtrna" - chebi: "CHEBI:29161" - kegg.compound: "C02839" - metanetx.chemical: "MNXM89822" - sbo: "SBO:0000247" - - !!omap - - id: "s_1534" - - name: "Tyr-tRNA(Tyr)" - - compartment: "m" - - formula: "C9H11NO2R" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1534" + - name: "Tyr-tRNA(Tyr)" + - compartment: "m" + - formula: "C9H11NO2R" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "tyrtrna" - chebi: "CHEBI:29161" - kegg.compound: "C02839" - metanetx.chemical: "MNXM89822" - sbo: "SBO:0000247" - - !!omap - - id: "s_1535" - - name: "ubiquinol-6" - - compartment: "m" - - formula: "C39H60O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1535" + - name: "ubiquinol-6" + - compartment: "m" + - formula: "C39H60O4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52970" - kegg.compound: "C00390" - metanetx.chemical: "MNXM5319" - sbo: "SBO:0000247" - - !!omap - - id: "s_1537" - - name: "ubiquinone-6" - - compartment: "m" - - formula: "C39H58O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1537" + - name: "ubiquinone-6" + - compartment: "m" + - formula: "C39H58O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "q6" - chebi: "CHEBI:52971" - kegg.compound: "C17568" - metanetx.chemical: "MNXM1783" - sbo: "SBO:0000247" - - !!omap - - id: "s_1538" - - name: "UDP" - - compartment: "c" - - formula: "C9H11N2O12P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1538" + - name: "UDP" + - compartment: "c" + - formula: "C9H11N2O12P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "udp" - chebi: "CHEBI:58223" - kegg.compound: "C00015" - metanetx.chemical: "MNXM17" - sbo: "SBO:0000247" - - !!omap - - id: "s_1539" - - name: "UDP" - - compartment: "g" - - formula: "C9H11N2O12P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1539" + - name: "UDP" + - compartment: "g" + - formula: "C9H11N2O12P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "udp" - chebi: "CHEBI:58223" - kegg.compound: "C00015" - metanetx.chemical: "MNXM17" - sbo: "SBO:0000247" - - !!omap - - id: "s_1540" - - name: "UDP" - - compartment: "n" - - formula: "C9H11N2O12P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1540" + - name: "UDP" + - compartment: "n" + - formula: "C9H11N2O12P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "udp" - chebi: "CHEBI:58223" - kegg.compound: "C00015" - metanetx.chemical: "MNXM17" - sbo: "SBO:0000247" - - !!omap - - id: "s_1541" - - name: "UDP-D-galactose" - - compartment: "c" - - formula: "C15H22N2O17P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1541" + - name: "UDP-D-galactose" + - compartment: "c" + - formula: "C15H22N2O17P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "udpgal" - chebi: "CHEBI:58439" - kegg.compound: "C00052" - metanetx.chemical: "MNXM89795" - sbo: "SBO:0000247" - - !!omap - - id: "s_1542" - - name: "UDP-D-galactose" - - compartment: "g" - - formula: "C15H22N2O17P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1542" + - name: "UDP-D-galactose" + - compartment: "g" + - formula: "C15H22N2O17P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "udpgal" - chebi: "CHEBI:58439" - kegg.compound: "C00052" - metanetx.chemical: "MNXM89795" - sbo: "SBO:0000247" - - !!omap - - id: "s_1543" - - name: "UDP-D-glucose" - - compartment: "c" - - formula: "C15H22N2O17P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1543" + - name: "UDP-D-glucose" + - compartment: "c" + - formula: "C15H22N2O17P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "udpg" - chebi: "CHEBI:58367" - kegg.compound: "C00029" - metanetx.chemical: "MNXM722710" - sbo: "SBO:0000247" - - !!omap - - id: "s_1544" - - name: "UDP-N-acetyl-alpha-D-glucosamine" - - compartment: "c" - - formula: "C17H25N3O17P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1544" + - name: "UDP-N-acetyl-alpha-D-glucosamine" + - compartment: "c" + - formula: "C17H25N3O17P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "uacgam" - chebi: "CHEBI:57705" - kegg.compound: "C00043" - metanetx.chemical: "MNXM47" - sbo: "SBO:0000247" - - !!omap - - id: "s_1545" - - name: "UMP" - - compartment: "c" - - formula: "C9H11N2O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1545" + - name: "UMP" + - compartment: "c" + - formula: "C9H11N2O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "ump" - chebi: "CHEBI:57865" - kegg.compound: "C00105" - metanetx.chemical: "MNXM80" - sbo: "SBO:0000247" - - !!omap - - id: "s_1546" - - name: "UMP" - - compartment: "g" - - formula: "C9H11N2O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1546" + - name: "UMP" + - compartment: "g" + - formula: "C9H11N2O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "ump" - chebi: "CHEBI:57865" - kegg.compound: "C00105" - metanetx.chemical: "MNXM80" - sbo: "SBO:0000247" - - !!omap - - id: "s_1547" - - name: "UMP" - - compartment: "m" - - formula: "C9H11N2O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1547" + - name: "UMP" + - compartment: "m" + - formula: "C9H11N2O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "ump" - chebi: "CHEBI:57865" - kegg.compound: "C00105" - metanetx.chemical: "MNXM80" - sbo: "SBO:0000247" - - !!omap - - id: "s_1548" - - name: "UMP" - - compartment: "n" - - formula: "C9H11N2O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1548" + - name: "UMP" + - compartment: "n" + - formula: "C9H11N2O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "ump" - chebi: "CHEBI:57865" - kegg.compound: "C00105" - metanetx.chemical: "MNXM80" - sbo: "SBO:0000247" - - !!omap - - id: "s_1549" - - name: "undecaprenyl diphosphate" - - compartment: "lp" - - formula: "C55H89O7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_1549" + - name: "undecaprenyl diphosphate" + - compartment: "lp" + - formula: "C55H89O7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "udcpdp" - chebi: "CHEBI:53042" - kegg.compound: "C03543" - metanetx.chemical: "MNXM5043" - sbo: "SBO:0000247" - - !!omap - - id: "s_1550" - - name: "uracil" - - compartment: "c" - - formula: "C4H4N2O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1550" + - name: "uracil" + - compartment: "c" + - formula: "C4H4N2O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ura" - chebi: "CHEBI:17568" - kegg.compound: "C00106" - metanetx.chemical: "MNXM158" - sbo: "SBO:0000247" - - !!omap - - id: "s_1551" - - name: "uracil" - - compartment: "e" - - formula: "C4H4N2O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1551" + - name: "uracil" + - compartment: "e" + - formula: "C4H4N2O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ura" - chebi: "CHEBI:17568" - kegg.compound: "C00106" - metanetx.chemical: "MNXM158" - sbo: "SBO:0000247" - - !!omap - - id: "s_1552" - - name: "urea" - - compartment: "c" - - formula: "CH4N2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1552" + - name: "urea" + - compartment: "c" + - formula: "CH4N2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "urea" - chebi: "CHEBI:16199" - kegg.compound: "C00086" - metanetx.chemical: "MNXM117" - sbo: "SBO:0000247" - - !!omap - - id: "s_1553" - - name: "urea" - - compartment: "e" - - formula: "CH4N2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1553" + - name: "urea" + - compartment: "e" + - formula: "CH4N2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "urea" - chebi: "CHEBI:16199" - kegg.compound: "C00086" - metanetx.chemical: "MNXM117" - sbo: "SBO:0000247" - - !!omap - - id: "s_1554" - - name: "urea-1-carboxylic acid" - - compartment: "c" - - formula: "C2H3N2O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1554" + - name: "urea-1-carboxylic acid" + - compartment: "c" + - formula: "C2H3N2O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "allphn" - chebi: "CHEBI:15832" - kegg.compound: "C01010" - metanetx.chemical: "MNXM1122" - sbo: "SBO:0000247" - - !!omap - - id: "s_1555" - - name: "ureidoglycolic acid" - - compartment: "c" - - formula: "C3H5N2O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1555" + - name: "ureidoglycolic acid" + - compartment: "c" + - formula: "C3H5N2O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "urdglyc" - chebi: "CHEBI:49050" - kegg.compound: "C05241" - metanetx.chemical: "MNXM490" - sbo: "SBO:0000247" - - !!omap - - id: "s_1556" - - name: "uridine" - - compartment: "c" - - formula: "C9H12N2O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1556" + - name: "uridine" + - compartment: "c" + - formula: "C9H12N2O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "uri" - chebi: "CHEBI:16704" - kegg.compound: "C00299" - metanetx.chemical: "MNXM288" - sbo: "SBO:0000247" - - !!omap - - id: "s_1557" - - name: "uridine" - - compartment: "e" - - formula: "C9H12N2O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1557" + - name: "uridine" + - compartment: "e" + - formula: "C9H12N2O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "uri" - chebi: "CHEBI:16704" - kegg.compound: "C00299" - metanetx.chemical: "MNXM288" - sbo: "SBO:0000247" - - !!omap - - id: "s_1558" - - name: "uroporphyrinogen III" - - compartment: "c" - - formula: "C40H36N4O16" - - charge: -8 - - annotation: !!omap + - !!omap + - id: "s_1558" + - name: "uroporphyrinogen III" + - compartment: "c" + - formula: "C40H36N4O16" + - charge: -8 + - annotation: !!omap - bigg.metabolite: "uppg3" - chebi: "CHEBI:57308" - kegg.compound: "C01051" - metanetx.chemical: "MNXM414" - sbo: "SBO:0000247" - - !!omap - - id: "s_1559" - - name: "UTP" - - compartment: "c" - - formula: "C9H11N2O15P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1559" + - name: "UTP" + - compartment: "c" + - formula: "C9H11N2O15P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "utp" - chebi: "CHEBI:46398" - kegg.compound: "C00075" - metanetx.chemical: "MNXM121" - sbo: "SBO:0000247" - - !!omap - - id: "s_1560" - - name: "UTP" - - compartment: "m" - - formula: "C9H11N2O15P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_1560" + - name: "UTP" + - compartment: "m" + - formula: "C9H11N2O15P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "utp" - chebi: "CHEBI:46398" - kegg.compound: "C00075" - metanetx.chemical: "MNXM121" - sbo: "SBO:0000247" - - !!omap - - id: "s_1561" - - name: "Val-tRNA(Val)" - - compartment: "c" - - formula: "C5H11NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1561" + - name: "Val-tRNA(Val)" + - compartment: "c" + - formula: "C5H11NOR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "valtrna" - chebi: "CHEBI:29164" - kegg.compound: "C02554" - metanetx.chemical: "MNXM90110" - sbo: "SBO:0000247" - - !!omap - - id: "s_1562" - - name: "Val-tRNA(Val)" - - compartment: "m" - - formula: "C5H11NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1562" + - name: "Val-tRNA(Val)" + - compartment: "m" + - formula: "C5H11NOR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "valtrna" - chebi: "CHEBI:29164" - kegg.compound: "C02554" - metanetx.chemical: "MNXM90110" - sbo: "SBO:0000247" - - !!omap - - id: "s_1563" - - name: "xanthosine" - - compartment: "c" - - formula: "C10H12N4O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1563" + - name: "xanthosine" + - compartment: "c" + - formula: "C10H12N4O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "xtsn" - chebi: "CHEBI:18107" - kegg.compound: "C01762" - metanetx.chemical: "MNXM687" - sbo: "SBO:0000247" - - !!omap - - id: "s_1564" - - name: "xanthosine" - - compartment: "e" - - formula: "C10H12N4O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1564" + - name: "xanthosine" + - compartment: "e" + - formula: "C10H12N4O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "xtsn" - chebi: "CHEBI:18107" - kegg.compound: "C01762" - metanetx.chemical: "MNXM687" - sbo: "SBO:0000247" - - !!omap - - id: "s_1565" - - name: "xanthosine-5-phosphate" - - compartment: "c" - - formula: "C10H11N4O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_1565" + - name: "xanthosine-5-phosphate" + - compartment: "c" + - formula: "C10H11N4O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "xmp" - chebi: "CHEBI:57464" - kegg.compound: "C00655" - metanetx.chemical: "MNXM298" - sbo: "SBO:0000247" - - !!omap - - id: "s_1566" - - name: "xylitol" - - compartment: "c" - - formula: "C5H12O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1566" + - name: "xylitol" + - compartment: "c" + - formula: "C5H12O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "xylt" - chebi: "CHEBI:17151" - kegg.compound: "C00379" - metanetx.chemical: "MNXM510" - sbo: "SBO:0000247" - - !!omap - - id: "s_1567" - - name: "xylitol" - - compartment: "e" - - formula: "C5H12O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1567" + - name: "xylitol" + - compartment: "e" + - formula: "C5H12O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "xylt" - chebi: "CHEBI:17151" - kegg.compound: "C00379" - metanetx.chemical: "MNXM510" - sbo: "SBO:0000247" - - !!omap - - id: "s_1568" - - name: "zymosterol" - - compartment: "ce" - - formula: "C27H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1568" + - name: "zymosterol" + - compartment: "ce" + - formula: "C27H44O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "zymst" - chebi: "CHEBI:18252" - kegg.compound: "C05437" - metanetx.chemical: "MNXM574" - sbo: "SBO:0000247" - - !!omap - - id: "s_1569" - - name: "zymosterol" - - compartment: "c" - - formula: "C27H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1569" + - name: "zymosterol" + - compartment: "c" + - formula: "C27H44O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "zymst" - chebi: "CHEBI:18252" - kegg.compound: "C05437" - metanetx.chemical: "MNXM574" - sbo: "SBO:0000247" - - !!omap - - id: "s_1571" - - name: "zymosterol" - - compartment: "e" - - formula: "C27H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1571" + - name: "zymosterol" + - compartment: "e" + - formula: "C27H44O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "zymst" - chebi: "CHEBI:18252" - kegg.compound: "C05437" - metanetx.chemical: "MNXM574" - sbo: "SBO:0000247" - - !!omap - - id: "s_1572" - - name: "zymosterol" - - compartment: "lp" - - formula: "C27H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1572" + - name: "zymosterol" + - compartment: "lp" + - formula: "C27H44O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "zymst" - chebi: "CHEBI:18252" - kegg.compound: "C05437" - metanetx.chemical: "MNXM574" - sbo: "SBO:0000247" - - !!omap - - id: "s_1576" - - name: "zymosterol intermediate 1a" - - compartment: "c" - - formula: "C28H46O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1576" + - name: "zymosterol intermediate 1a" + - compartment: "c" + - formula: "C28H46O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "M00963" - chebi: "CHEBI:52388" - metanetx.chemical: "MNXM89469" - sbo: "SBO:0000247" - - !!omap - - id: "s_1577" - - name: "zymosterol intermediate 1b" - - compartment: "c" - - formula: "C28H44O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1577" + - name: "zymosterol intermediate 1b" + - compartment: "c" + - formula: "C28H44O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "M00959" - chebi: "CHEBI:52615" - metanetx.chemical: "MNXM89470" - sbo: "SBO:0000247" - - !!omap - - id: "s_1578" - - name: "zymosterol intermediate 1c" - - compartment: "c" - - formula: "C28H43O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_1578" + - name: "zymosterol intermediate 1c" + - compartment: "c" + - formula: "C28H43O3" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:52389" - metanetx.chemical: "MNXM89471" - sbo: "SBO:0000247" - - !!omap - - id: "s_1579" - - name: "zymosterol intermediate 2" - - compartment: "c" - - formula: "C27H42O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1579" + - name: "zymosterol intermediate 2" + - compartment: "c" + - formula: "C27H42O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "M01067" - chebi: "CHEBI:52386" - metanetx.chemical: "MNXM2876" - sbo: "SBO:0000247" - - !!omap - - id: "s_1582" - - name: "tRNA(Ala)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1582" + - name: "tRNA(Ala)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaala" - chebi: "CHEBI:29170" - kegg.compound: "C01635" - metanetx.chemical: "MNXM89576" - sbo: "SBO:0000247" - - !!omap - - id: "s_1583" - - name: "tRNA(Arg)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1583" + - name: "tRNA(Arg)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaarg" - chebi: "CHEBI:29171" - kegg.compound: "C01636" - metanetx.chemical: "MNXM90751" - sbo: "SBO:0000247" - - !!omap - - id: "s_1584" - - name: "tRNA(Arg)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1584" + - name: "tRNA(Arg)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaarg" - chebi: "CHEBI:29171" - kegg.compound: "C01636" - metanetx.chemical: "MNXM90751" - sbo: "SBO:0000247" - - !!omap - - id: "s_1585" - - name: "tRNA(Asn)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1585" + - name: "tRNA(Asn)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaasn" - chebi: "CHEBI:29172" - kegg.compound: "C01637" - metanetx.chemical: "MNXM90665" - sbo: "SBO:0000247" - - !!omap - - id: "s_1586" - - name: "tRNA(Asn)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1586" + - name: "tRNA(Asn)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaasn" - chebi: "CHEBI:29172" - kegg.compound: "C01637" - metanetx.chemical: "MNXM90665" - sbo: "SBO:0000247" - - !!omap - - id: "s_1587" - - name: "tRNA(Asp)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1587" + - name: "tRNA(Asp)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaasp" - chebi: "CHEBI:29186" - kegg.compound: "C01638" - metanetx.chemical: "MNXM90752" - sbo: "SBO:0000247" - - !!omap - - id: "s_1588" - - name: "tRNA(Asp)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1588" + - name: "tRNA(Asp)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaasp" - chebi: "CHEBI:29186" - kegg.compound: "C01638" - metanetx.chemical: "MNXM90752" - sbo: "SBO:0000247" - - !!omap - - id: "s_1589" - - name: "tRNA(Cys)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1589" + - name: "tRNA(Cys)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnacys" - chebi: "CHEBI:29167" - kegg.compound: "C01639" - metanetx.chemical: "MNXM162355" - sbo: "SBO:0000247" - - !!omap - - id: "s_1590" - - name: "tRNA(Gln)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1590" + - name: "tRNA(Gln)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnagln" - chebi: "CHEBI:29168" - kegg.compound: "C01640" - metanetx.chemical: "MNXM71" - sbo: "SBO:0000247" - - !!omap - - id: "s_1591" - - name: "tRNA(Glu)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1591" + - name: "tRNA(Glu)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaglu" - chebi: "CHEBI:29175" - kegg.compound: "C01641" - metanetx.chemical: "MNXM90886" - sbo: "SBO:0000247" - - !!omap - - id: "s_1592" - - name: "tRNA(Glu)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1592" + - name: "tRNA(Glu)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaglu" - chebi: "CHEBI:29175" - kegg.compound: "C01641" - metanetx.chemical: "MNXM90886" - sbo: "SBO:0000247" - - !!omap - - id: "s_1593" - - name: "tRNA(Gly)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1593" + - name: "tRNA(Gly)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnagly" - chebi: "CHEBI:29176" - kegg.compound: "C01642" - metanetx.chemical: "MNXM90340" - sbo: "SBO:0000247" - - !!omap - - id: "s_1594" - - name: "tRNA(His)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1594" + - name: "tRNA(His)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnahis" - chebi: "CHEBI:29178" - kegg.compound: "C01643" - metanetx.chemical: "MNXM90878" - sbo: "SBO:0000247" - - !!omap - - id: "s_1595" - - name: "tRNA(His)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1595" + - name: "tRNA(His)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnahis" - chebi: "CHEBI:29178" - kegg.compound: "C01643" - metanetx.chemical: "MNXM90878" - sbo: "SBO:0000247" - - !!omap - - id: "s_1596" - - name: "tRNA(Ile)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1596" + - name: "tRNA(Ile)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaile" - chebi: "CHEBI:29174" - kegg.compound: "C01644" - metanetx.chemical: "MNXM90879" - sbo: "SBO:0000247" - - !!omap - - id: "s_1597" - - name: "tRNA(Ile)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1597" + - name: "tRNA(Ile)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaile" - chebi: "CHEBI:29174" - kegg.compound: "C01644" - metanetx.chemical: "MNXM90879" - sbo: "SBO:0000247" - - !!omap - - id: "s_1598" - - name: "tRNA(Leu)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1598" + - name: "tRNA(Leu)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaleu" - chebi: "CHEBI:29169" - kegg.compound: "C01645" - metanetx.chemical: "MNXM90880" - sbo: "SBO:0000247" - - !!omap - - id: "s_1599" - - name: "tRNA(Leu)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1599" + - name: "tRNA(Leu)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaleu" - chebi: "CHEBI:29169" - kegg.compound: "C01645" - metanetx.chemical: "MNXM90880" - sbo: "SBO:0000247" - - !!omap - - id: "s_1600" - - name: "tRNA(Lys)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1600" + - name: "tRNA(Lys)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnalys" - chebi: "CHEBI:29185" - kegg.compound: "C01646" - metanetx.chemical: "MNXM90881" - sbo: "SBO:0000247" - - !!omap - - id: "s_1601" - - name: "tRNA(Lys)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1601" + - name: "tRNA(Lys)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnalys" - chebi: "CHEBI:29185" - kegg.compound: "C01646" - metanetx.chemical: "MNXM90881" - sbo: "SBO:0000247" - - !!omap - - id: "s_1602" - - name: "tRNA(Met)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1602" + - name: "tRNA(Met)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnamet" - chebi: "CHEBI:29173" - kegg.compound: "C01647" - metanetx.chemical: "MNXM90882" - sbo: "SBO:0000247" - - !!omap - - id: "s_1603" - - name: "tRNA(Met)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1603" + - name: "tRNA(Met)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnamet" - chebi: "CHEBI:29173" - kegg.compound: "C01647" - metanetx.chemical: "MNXM90882" - sbo: "SBO:0000247" - - !!omap - - id: "s_1604" - - name: "tRNA(Phe)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1604" + - name: "tRNA(Phe)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaphe" - chebi: "CHEBI:29184" - kegg.compound: "C01648" - metanetx.chemical: "MNXM90753" - sbo: "SBO:0000247" - - !!omap - - id: "s_1605" - - name: "tRNA(Phe)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1605" + - name: "tRNA(Phe)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaphe" - chebi: "CHEBI:29184" - kegg.compound: "C01648" - metanetx.chemical: "MNXM90753" - sbo: "SBO:0000247" - - !!omap - - id: "s_1606" - - name: "tRNA(Pro)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1606" + - name: "tRNA(Pro)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnapro" - chebi: "CHEBI:29177" - kegg.compound: "C01649" - metanetx.chemical: "MNXM90667" - sbo: "SBO:0000247" - - !!omap - - id: "s_1607" - - name: "tRNA(Ser)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1607" + - name: "tRNA(Ser)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaser" - chebi: "CHEBI:29179" - kegg.compound: "C01650" - metanetx.chemical: "MNXM91028" - sbo: "SBO:0000247" - - !!omap - - id: "s_1608" - - name: "tRNA(Thr)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1608" + - name: "tRNA(Thr)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnathr" - chebi: "CHEBI:29180" - kegg.compound: "C01651" - metanetx.chemical: "MNXM90883" - sbo: "SBO:0000247" - - !!omap - - id: "s_1609" - - name: "tRNA(Thr)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1609" + - name: "tRNA(Thr)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnathr" - chebi: "CHEBI:29180" - kegg.compound: "C01651" - metanetx.chemical: "MNXM90883" - sbo: "SBO:0000247" - - !!omap - - id: "s_1610" - - name: "tRNA(Trp)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1610" + - name: "tRNA(Trp)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnatrp" - chebi: "CHEBI:29181" - kegg.compound: "C01652" - metanetx.chemical: "MNXM90755" - sbo: "SBO:0000247" - - !!omap - - id: "s_1611" - - name: "tRNA(Trp)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1611" + - name: "tRNA(Trp)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnatrp" - chebi: "CHEBI:29181" - kegg.compound: "C01652" - metanetx.chemical: "MNXM90755" - sbo: "SBO:0000247" - - !!omap - - id: "s_1612" - - name: "tRNA(Tyr)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1612" + - name: "tRNA(Tyr)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnatyr" - chebi: "CHEBI:29182" - kegg.compound: "C00787" - metanetx.chemical: "MNXM90668" - sbo: "SBO:0000247" - - !!omap - - id: "s_1613" - - name: "tRNA(Tyr)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1613" + - name: "tRNA(Tyr)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnatyr" - chebi: "CHEBI:29182" - kegg.compound: "C00787" - metanetx.chemical: "MNXM90668" - sbo: "SBO:0000247" - - !!omap - - id: "s_1614" - - name: "tRNA(Val)" - - compartment: "c" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1614" + - name: "tRNA(Val)" + - compartment: "c" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaval" - chebi: "CHEBI:29183" - kegg.compound: "C01653" - metanetx.chemical: "MNXM90885" - sbo: "SBO:0000247" - - !!omap - - id: "s_1615" - - name: "tRNA(Val)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1615" + - name: "tRNA(Val)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnaval" - chebi: "CHEBI:29183" - kegg.compound: "C01653" - metanetx.chemical: "MNXM90885" - sbo: "SBO:0000247" - - !!omap - - id: "s_1616" - - name: "TRX1" - - compartment: "c" - - formula: "C6H10N2O2S2R4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1616" + - name: "TRX1" + - compartment: "c" + - formula: "C6H10N2O2S2R4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trdrd" - chebi: "CHEBI:15033" - kegg.compound: "C00342" - metanetx.chemical: "MNXM96993" - sbo: "SBO:0000247" - - !!omap - - id: "s_1617" - - name: "TRX1" - - compartment: "m" - - formula: "C6H10N2O2S2R4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1617" + - name: "TRX1" + - compartment: "m" + - formula: "C6H10N2O2S2R4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trdrd" - chebi: "CHEBI:15033" - kegg.compound: "C00342" - metanetx.chemical: "MNXM96993" - sbo: "SBO:0000247" - - !!omap - - id: "s_1618" - - name: "TRX1" - - compartment: "n" - - formula: "C6H10N2O2S2R4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1618" + - name: "TRX1" + - compartment: "n" + - formula: "C6H10N2O2S2R4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trdrd" - chebi: "CHEBI:15033" - kegg.compound: "C00342" - metanetx.chemical: "MNXM96993" - sbo: "SBO:0000247" - - !!omap - - id: "s_1619" - - name: "TRX1" - - compartment: "p" - - formula: "C6H10N2O2S2R4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1619" + - name: "TRX1" + - compartment: "p" + - formula: "C6H10N2O2S2R4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trdrd" - chebi: "CHEBI:15033" - kegg.compound: "C00342" - metanetx.chemical: "MNXM96993" - sbo: "SBO:0000247" - - !!omap - - id: "s_1620" - - name: "TRX1 disulphide" - - compartment: "c" - - formula: "C6H9N2O2S2R4" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1620" + - name: "TRX1 disulphide" + - compartment: "c" + - formula: "C6H9N2O2S2R4" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "trdox" - chebi: "CHEBI:18191" - kegg.compound: "C00343" - metanetx.chemical: "MNXM148" - sbo: "SBO:0000247" - - !!omap - - id: "s_1621" - - name: "TRX1 disulphide" - - compartment: "m" - - formula: "C6H9N2O2S2R4" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1621" + - name: "TRX1 disulphide" + - compartment: "m" + - formula: "C6H9N2O2S2R4" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "trdox" - chebi: "CHEBI:18191" - kegg.compound: "C00343" - metanetx.chemical: "MNXM148" - sbo: "SBO:0000247" - - !!omap - - id: "s_1622" - - name: "TRX1 disulphide" - - compartment: "n" - - formula: "C6H9N2O2S2R4" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1622" + - name: "TRX1 disulphide" + - compartment: "n" + - formula: "C6H9N2O2S2R4" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "trdox" - chebi: "CHEBI:18191" - kegg.compound: "C00343" - metanetx.chemical: "MNXM148" - sbo: "SBO:0000247" - - !!omap - - id: "s_1623" - - name: "TRX1 disulphide" - - compartment: "p" - - formula: "C6H9N2O2S2R4" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_1623" + - name: "TRX1 disulphide" + - compartment: "p" + - formula: "C6H9N2O2S2R4" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "trdox" - chebi: "CHEBI:18191" - kegg.compound: "C00343" - metanetx.chemical: "MNXM148" - sbo: "SBO:0000247" - - !!omap - - id: "s_1845" - - name: "ACP1" - - compartment: "m" - - formula: "" - - charge: 0 - - annotation: !!omap - - bigg.metabolite: "ACP" - - chebi: "CHEBI:18359" - - kegg.compound: "C00229" - - metanetx.chemical: "MNXM925" - - sbo: "SBO:0000247" - - !!omap - - id: "s_2763" - - name: "kynurenic acid" - - compartment: "c" - - formula: "C10H6NO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2763" + - name: "kynurenic acid" + - compartment: "c" + - formula: "C10H6NO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "kynate" - chebi: "CHEBI:18344" - kegg.compound: "C01717" - metanetx.chemical: "MNXM1113" - sbo: "SBO:0000247" - - !!omap - - id: "s_2764" - - name: "quinaldic acid" - - compartment: "c" - - formula: "C10H7NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2764" + - name: "quinaldic acid" + - compartment: "c" + - formula: "C10H7NO2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:18386" - kegg.compound: "C06325" - metanetx.chemical: "MNXM4797" - sbo: "SBO:0000247" - - !!omap - - id: "s_2766" - - name: "14-demethyllanosterol" - - compartment: "e" - - formula: "C29H48O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_1845" + - name: "ACP1" + - compartment: "m" + - formula: "" + - charge: 0 + - annotation: !!omap + - bigg.metabolite: "ACP" + - chebi: "CHEBI:18359" + - kegg.compound: "C00229" + - metanetx.chemical: "MNXM925" + - sbo: "SBO:0000247" + - !!omap + - id: "s_2766" + - name: "14-demethyllanosterol" + - compartment: "e" + - formula: "C29H48O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "44mzym" - chebi: "CHEBI:18364" - kegg.compound: "C05108" - metanetx.chemical: "MNXM913" - sbo: "SBO:0000247" - - !!omap - - id: "s_2768" - - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol" - - compartment: "e" - - formula: "C28H42O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2768" + - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol" + - compartment: "e" + - formula: "C28H42O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ergtetrol" - chebi: "CHEBI:18249" - kegg.compound: "C05440" - metanetx.chemical: "MNXM1109" - sbo: "SBO:0000247" - - !!omap - - id: "s_2770" - - name: "acetoacetyl-ACP" - - compartment: "m" - - formula: "C4H5O2SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2770" + - name: "acetoacetyl-ACP" + - compartment: "m" + - formula: "C4H5O2SR" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "actACP" - chebi: "CHEBI:2393" - kegg.compound: "C05744" - metanetx.chemical: "MNXM1223" - sbo: "SBO:0000247" - - !!omap - - id: "s_2771" - - name: "butanoyl-ACP" - - compartment: "m" - - formula: "C4H7OSR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2771" + - name: "butanoyl-ACP" + - compartment: "m" + - formula: "C4H7OSR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:3247" - kegg.compound: "C05745" - metanetx.chemical: "MNXM2645" - sbo: "SBO:0000247" - - !!omap - - id: "s_2772" - - name: "3-oxo-hexanoyl-ACP" - - compartment: "m" - - formula: "C6H9O2SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2772" + - name: "3-oxo-hexanoyl-ACP" + - compartment: "m" + - formula: "C6H9O2SR" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "3ohexACP" - chebi: "CHEBI:1642" - kegg.compound: "C05746" - metanetx.chemical: "MNXM25602" - sbo: "SBO:0000247" - - !!omap - - id: "s_2773" - - name: "hexanoyl-ACP" - - compartment: "m" - - formula: "C6H11OSR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2773" + - name: "hexanoyl-ACP" + - compartment: "m" + - formula: "C6H11OSR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:5704" - kegg.compound: "C05749" - metanetx.chemical: "MNXM23683" - sbo: "SBO:0000247" - - !!omap - - id: "s_2774" - - name: "3-oxo-octanoyl-ACP" - - compartment: "m" - - formula: "C8H13O2SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2774" + - name: "3-oxo-octanoyl-ACP" + - compartment: "m" + - formula: "C8H13O2SR" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "3ooctACP" - chebi: "CHEBI:1646" - kegg.compound: "C05750" - metanetx.chemical: "MNXM28031" - sbo: "SBO:0000247" - - !!omap - - id: "s_2775" - - name: "3-hydroxybutanoyl-ACP" - - compartment: "m" - - formula: "C4H7O2SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2775" + - name: "3-hydroxybutanoyl-ACP" + - compartment: "m" + - formula: "C4H7O2SR" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "3hbutACP" - kegg.compound: "C04618" - sbo: "SBO:0000247" - - !!omap - - id: "s_2776" - - name: "3-hydroxyhexanoyl-ACP" - - compartment: "m" - - formula: "C6H11O2SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2776" + - name: "3-hydroxyhexanoyl-ACP" + - compartment: "m" + - formula: "C6H11O2SR" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "3hhexACP" - chebi: "CHEBI:326" - kegg.compound: "C05747" - metanetx.chemical: "MNXM25370" - sbo: "SBO:0000247" - - !!omap - - id: "s_2777" - - name: "3-hydroxyoctanoyl-ACP" - - compartment: "m" - - formula: "C8H15O2SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2777" + - name: "3-hydroxyoctanoyl-ACP" + - compartment: "m" + - formula: "C8H15O2SR" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "3hoctaACP" - chebi: "CHEBI:80387" - kegg.compound: "C16220" - metanetx.chemical: "MNXM10033" - sbo: "SBO:0000247" - - !!omap - - id: "s_2778" - - name: "trans-but-2-enoyl-ACP" - - compartment: "m" - - formula: "C4H5OSR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2778" + - name: "trans-but-2-enoyl-ACP" + - compartment: "m" + - formula: "C4H5OSR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:132146" - sbo: "SBO:0000247" - - !!omap - - id: "s_2779" - - name: "trans-hex-2-enoyl-ACP" - - compartment: "m" - - formula: "C6H9OSR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2779" + - name: "trans-hex-2-enoyl-ACP" + - compartment: "m" + - formula: "C6H9OSR" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "thex2eACP" - chebi: "CHEBI:10727" - kegg.compound: "C05748" - metanetx.chemical: "MNXM24502" - sbo: "SBO:0000247" - - !!omap - - id: "s_2780" - - name: "trans-oct-2-enoyl-ACP" - - compartment: "m" - - formula: "C8H13OSR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2780" + - name: "trans-oct-2-enoyl-ACP" + - compartment: "m" + - formula: "C8H13OSR" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "toct2eACP" - kegg.compound: "C05751" - metanetx.chemical: "MNXM23766" - sbo: "SBO:0000247" - - !!omap - - id: "s_2781" - - name: "lauroyl-CoA" - - compartment: "erm" - - formula: "C33H54N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2781" + - name: "lauroyl-CoA" + - compartment: "erm" + - formula: "C33H54N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ddcacoa" - chebi: "CHEBI:57375" - kegg.compound: "C01832" - metanetx.chemical: "MNXM363" - sbo: "SBO:0000247" - - !!omap - - id: "s_2782" - - name: "malonyl-CoA" - - compartment: "erm" - - formula: "C24H33N7O19P3S" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_2782" + - name: "malonyl-CoA" + - compartment: "erm" + - formula: "C24H33N7O19P3S" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "malcoa" - chebi: "CHEBI:57384" - kegg.compound: "C00083" - metanetx.chemical: "MNXM40" - sbo: "SBO:0000247" - - !!omap - - id: "s_2783" - - name: "H+" - - compartment: "erm" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_2783" + - name: "H+" + - compartment: "erm" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_2784" - - name: "carbon dioxide" - - compartment: "erm" - - formula: "CO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2784" + - name: "carbon dioxide" + - compartment: "erm" + - formula: "CO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "co2" - chebi: "CHEBI:16526" - kegg.compound: "C00011" - metanetx.chemical: "MNXM13" - sbo: "SBO:0000247" - - !!omap - - id: "s_2785" - - name: "coenzyme A" - - compartment: "erm" - - formula: "C21H32N7O16P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2785" + - name: "coenzyme A" + - compartment: "erm" + - formula: "C21H32N7O16P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "coa" - chebi: "CHEBI:57287" - kegg.compound: "C00010" - metanetx.chemical: "MNXM12" - sbo: "SBO:0000247" - - !!omap - - id: "s_2786" - - name: "3-oxotetradecanoyl-CoA" - - compartment: "erm" - - formula: "C35H56N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2786" + - name: "3-oxotetradecanoyl-CoA" + - compartment: "erm" + - formula: "C35H56N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3otdcoa" - chebi: "CHEBI:28726" - kegg.compound: "C05261" - metanetx.chemical: "MNXM707" - sbo: "SBO:0000247" - - !!omap - - id: "s_2787" - - name: "myristoyl-CoA" - - compartment: "erm" - - formula: "C35H58N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2787" + - name: "myristoyl-CoA" + - compartment: "erm" + - formula: "C35H58N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "tdcoa" - chebi: "CHEBI:57385" - kegg.compound: "C02593" - metanetx.chemical: "MNXM224" - sbo: "SBO:0000247" - - !!omap - - id: "s_2788" - - name: "3-oxopalmitoyl-CoA" - - compartment: "erm" - - formula: "C37H60N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2788" + - name: "3-oxopalmitoyl-CoA" + - compartment: "erm" + - formula: "C37H60N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3ohdcoa" - chebi: "CHEBI:57349" - kegg.compound: "C05259" - metanetx.chemical: "MNXM738" - sbo: "SBO:0000247" - - !!omap - - id: "s_2789" - - name: "palmitoyl-CoA" - - compartment: "erm" - - formula: "C37H62N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2789" + - name: "palmitoyl-CoA" + - compartment: "erm" + - formula: "C37H62N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "pmtcoa" - chebi: "CHEBI:57379" - kegg.compound: "C00154" - metanetx.chemical: "MNXM88" - sbo: "SBO:0000247" - - !!omap - - id: "s_2790" - - name: "3-oxooctadecanoyl-CoA" - - compartment: "erm" - - formula: "C39H64N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2790" + - name: "3-oxooctadecanoyl-CoA" + - compartment: "erm" + - formula: "C39H64N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3ohodcoa" - chebi: "CHEBI:50571" - kegg.compound: "C16216" - metanetx.chemical: "MNXM513" - sbo: "SBO:0000247" - - !!omap - - id: "s_2791" - - name: "stearoyl-CoA" - - compartment: "erm" - - formula: "C39H66N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2791" + - name: "stearoyl-CoA" + - compartment: "erm" + - formula: "C39H66N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "stcoa" - chebi: "CHEBI:57394" - kegg.compound: "C00412" - metanetx.chemical: "MNXM272" - sbo: "SBO:0000247" - - !!omap - - id: "s_2792" - - name: "3-oxoicosanoyl-CoA" - - compartment: "erm" - - formula: "C41H68N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2792" + - name: "3-oxoicosanoyl-CoA" + - compartment: "erm" + - formula: "C41H68N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2251" - chebi: "CHEBI:52327" - metanetx.chemical: "MNXM36762" - sbo: "SBO:0000247" - - !!omap - - id: "s_2793" - - name: "icosanoyl-CoA" - - compartment: "erm" - - formula: "C41H70N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2793" + - name: "icosanoyl-CoA" + - compartment: "erm" + - formula: "C41H70N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "arachcoa" - chebi: "CHEBI:15527" - kegg.compound: "C02041" - metanetx.chemical: "MNXM1429" - sbo: "SBO:0000247" - - !!omap - - id: "s_2794" - - name: "3-oxodocosanoyl-CoA" - - compartment: "erm" - - formula: "C43H72N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2794" + - name: "3-oxodocosanoyl-CoA" + - compartment: "erm" + - formula: "C43H72N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2250" - chebi: "CHEBI:52328" - metanetx.chemical: "MNXM36756" - sbo: "SBO:0000247" - - !!omap - - id: "s_2795" - - name: "docosanoyl-CoA" - - compartment: "erm" - - formula: "C43H74N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2795" + - name: "docosanoyl-CoA" + - compartment: "erm" + - formula: "C43H74N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "docoscoa" - chebi: "CHEBI:65088" - kegg.compound: "C16528" - metanetx.chemical: "MNXM10780" - sbo: "SBO:0000247" - - !!omap - - id: "s_2796" - - name: "3-oxotetracosanoyl-CoA" - - compartment: "erm" - - formula: "C45H76N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2796" + - name: "3-oxotetracosanoyl-CoA" + - compartment: "erm" + - formula: "C45H76N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2253" - chebi: "CHEBI:52329" - metanetx.chemical: "MNXM36773" - sbo: "SBO:0000247" - - !!omap - - id: "s_2797" - - name: "tetracosanoyl-CoA" - - compartment: "erm" - - formula: "C45H78N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2797" + - name: "tetracosanoyl-CoA" + - compartment: "erm" + - formula: "C45H78N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ttccoa" - chebi: "CHEBI:52974" - kegg.compound: "C16529" - metanetx.chemical: "MNXM1504" - sbo: "SBO:0000247" - - !!omap - - id: "s_2798" - - name: "3-oxohexacosanoyl-CoA" - - compartment: "erm" - - formula: "C47H80N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2798" + - name: "3-oxohexacosanoyl-CoA" + - compartment: "erm" + - formula: "C47H80N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3ohxccoa" - chebi: "CHEBI:52977" - metanetx.chemical: "MNXM36758" - sbo: "SBO:0000247" - - !!omap - - id: "s_2799" - - name: "NADPH" - - compartment: "erm" - - formula: "C21H26N7O17P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2799" + - name: "NADPH" + - compartment: "erm" + - formula: "C21H26N7O17P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "nadph" - chebi: "CHEBI:57783" - kegg.compound: "C00005" - metanetx.chemical: "MNXM6" - sbo: "SBO:0000247" - - !!omap - - id: "s_2800" - - name: "NADP(+)" - - compartment: "erm" - - formula: "C21H25N7O17P3" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_2800" + - name: "NADP(+)" + - compartment: "erm" + - formula: "C21H25N7O17P3" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "nadp" - chebi: "CHEBI:58349" - kegg.compound: "C00006" - metanetx.chemical: "MNXM5" - sbo: "SBO:0000247" - - !!omap - - id: "s_2801" - - name: "(S)-3-hydroxytetradecanoyl-CoA" - - compartment: "erm" - - formula: "C35H58N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2801" + - name: "(S)-3-hydroxytetradecanoyl-CoA" + - compartment: "erm" + - formula: "C35H58N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3htdcoa" - chebi: "CHEBI:27466" - kegg.compound: "C05260" - metanetx.chemical: "MNXM767" - sbo: "SBO:0000247" - - !!omap - - id: "s_2802" - - name: "(S)-3-hydroxypalmitoyl-CoA" - - compartment: "erm" - - formula: "C37H62N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2802" + - name: "(S)-3-hydroxypalmitoyl-CoA" + - compartment: "erm" + - formula: "C37H62N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "3hhdcoa" - chebi: "CHEBI:27402" - kegg.compound: "C05258" - metanetx.chemical: "MNXM825" - sbo: "SBO:0000247" - - !!omap - - id: "s_2803" - - name: "3-hydroxyoctadecanoyl-CoA" - - compartment: "erm" - - formula: "C39H66N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2803" + - name: "3-hydroxyoctadecanoyl-CoA" + - compartment: "erm" + - formula: "C39H66N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2248" - chebi: "CHEBI:50583" - kegg.compound: "C16217" - metanetx.chemical: "MNXM1309" - sbo: "SBO:0000247" - - !!omap - - id: "s_2804" - - name: "3-hydroxyicosanoyl-CoA" - - compartment: "erm" - - formula: "C41H70N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2804" + - name: "3-hydroxyicosanoyl-CoA" + - compartment: "erm" + - formula: "C41H70N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2247" - chebi: "CHEBI:52324" - metanetx.chemical: "MNXM146349" - sbo: "SBO:0000247" - - !!omap - - id: "s_2805" - - name: "3-hydroxydocosanoyl-CoA" - - compartment: "erm" - - formula: "C43H74N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2805" + - name: "3-hydroxydocosanoyl-CoA" + - compartment: "erm" + - formula: "C43H74N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2246" - chebi: "CHEBI:52325" - metanetx.chemical: "MNXM162568" - sbo: "SBO:0000247" - - !!omap - - id: "s_2806" - - name: "3-hydroxytetracosanoyl-CoA" - - compartment: "erm" - - formula: "C45H78N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2806" + - name: "3-hydroxytetracosanoyl-CoA" + - compartment: "erm" + - formula: "C45H78N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2249" - chebi: "CHEBI:52326" - metanetx.chemical: "MNXM36558" - sbo: "SBO:0000247" - - !!omap - - id: "s_2807" - - name: "(S)-3-hydroxyhexacosanoyl-CoA" - - compartment: "erm" - - formula: "C47H82N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2807" + - name: "(S)-3-hydroxyhexacosanoyl-CoA" + - compartment: "erm" + - formula: "C47H82N7O18P3S" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:52976" - metanetx.chemical: "MNXM31741" - sbo: "SBO:0000247" - - !!omap - - id: "s_2808" - - name: "H2O" - - compartment: "erm" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2808" + - name: "H2O" + - compartment: "erm" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_2809" - - name: "trans-tetradec-2-enoyl-CoA" - - compartment: "erm" - - formula: "C35H56N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2809" + - name: "trans-tetradec-2-enoyl-CoA" + - compartment: "erm" + - formula: "C35H56N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "td2coa" - chebi: "CHEBI:61405" - kegg.compound: "C05273" - metanetx.chemical: "MNXM654" - sbo: "SBO:0000247" - - !!omap - - id: "s_2810" - - name: "trans-hexadec-2-enoyl-CoA" - - compartment: "erm" - - formula: "C37H60N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2810" + - name: "trans-hexadec-2-enoyl-CoA" + - compartment: "erm" + - formula: "C37H60N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hdd2coa" - kegg.compound: "C05272" - metanetx.chemical: "MNXM581" - sbo: "SBO:0000247" - - !!omap - - id: "s_2811" - - name: "trans-octadec-2-enoyl-CoA" - - compartment: "erm" - - formula: "C39H64N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2811" + - name: "trans-octadec-2-enoyl-CoA" + - compartment: "erm" + - formula: "C39H64N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "od2coa" - chebi: "CHEBI:50570" - kegg.compound: "C16218" - metanetx.chemical: "MNXM954" - sbo: "SBO:0000247" - - !!omap - - id: "s_2812" - - name: "trans-icos-2-enoyl-CoA" - - compartment: "erm" - - formula: "C41H68N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2812" + - name: "trans-icos-2-enoyl-CoA" + - compartment: "erm" + - formula: "C41H68N7O17P3S" + - charge: -4 + - annotation: !!omap - metanetx.chemical: "MNXM22115" - sbo: "SBO:0000247" - - !!omap - - id: "s_2813" - - name: "trans-docos-2-enoyl-CoA" - - compartment: "erm" - - formula: "C43H72N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2813" + - name: "trans-docos-2-enoyl-CoA" + - compartment: "erm" + - formula: "C43H72N7O17P3S" + - charge: -4 + - annotation: !!omap - metanetx.chemical: "MNXM97615" - sbo: "SBO:0000247" - - !!omap - - id: "s_2814" - - name: "trans-tetracos-2-enoyl-CoA" - - compartment: "erm" - - formula: "C45H76N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2814" + - name: "trans-tetracos-2-enoyl-CoA" + - compartment: "erm" + - formula: "C45H76N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2245" - chebi: "CHEBI:75068" - metanetx.chemical: "MNXM97616" - sbo: "SBO:0000247" - - !!omap - - id: "s_2815" - - name: "trans-hexacos-2-enoyl-CoA" - - compartment: "erm" - - formula: "C47H80N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2815" + - name: "trans-hexacos-2-enoyl-CoA" + - compartment: "erm" + - formula: "C47H80N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hxc2coa" - chebi: "CHEBI:52975" - metanetx.chemical: "MNXM114303" - sbo: "SBO:0000247" - - !!omap - - id: "s_2816" - - name: "hexacosanoyl-CoA" - - compartment: "erm" - - formula: "C47H82N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2816" + - name: "hexacosanoyl-CoA" + - compartment: "erm" + - formula: "C47H82N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hexccoa" - chebi: "CHEBI:52966" - metanetx.chemical: "MNXM1190" - sbo: "SBO:0000247" - - !!omap - - id: "s_2817" - - name: "oxygen" - - compartment: "erm" - - formula: "O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2817" + - name: "oxygen" + - compartment: "erm" + - formula: "O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "o2" - chebi: "CHEBI:15379" - kegg.compound: "C00007" - metanetx.chemical: "MNXM4" - sbo: "SBO:0000247" - - !!omap - - id: "s_2818" - - name: "NADH" - - compartment: "erm" - - formula: "C21H27N7O14P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_2818" + - name: "NADH" + - compartment: "erm" + - formula: "C21H27N7O14P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "nadh" - chebi: "CHEBI:57945" - kegg.compound: "C00004" - metanetx.chemical: "MNXM10" - sbo: "SBO:0000247" - - !!omap - - id: "s_2819" - - name: "palmitoleoyl-CoA(4-)" - - compartment: "erm" - - formula: "C37H60N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2819" + - name: "palmitoleoyl-CoA(4-)" + - compartment: "erm" + - formula: "C37H60N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hdcoa" - chebi: "CHEBI:61540" - kegg.compound: "C21072" - metanetx.chemical: "MNXM781" - sbo: "SBO:0000247" - - !!omap - - id: "s_2820" - - name: "NAD" - - compartment: "erm" - - formula: "C21H26N7O14P2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2820" + - name: "NAD" + - compartment: "erm" + - formula: "C21H26N7O14P2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "nad" - chebi: "CHEBI:57540" - kegg.compound: "C00003" - metanetx.chemical: "MNXM8" - sbo: "SBO:0000247" - - !!omap - - id: "s_2821" - - name: "oleoyl-CoA" - - compartment: "erm" - - formula: "C39H64N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2821" + - name: "oleoyl-CoA" + - compartment: "erm" + - formula: "C39H64N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ocdce9coa" - chebi: "CHEBI:57387" - kegg.compound: "C00510" - metanetx.chemical: "MNXM686" - sbo: "SBO:0000247" - - !!omap - - id: "s_2822" - - name: "butyrate" - - compartment: "e" - - formula: "C4H7O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2822" + - name: "butyrate" + - compartment: "e" + - formula: "C4H7O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "but" - chebi: "CHEBI:17968" - kegg.compound: "C00246" - metanetx.chemical: "MNXM458" - sbo: "SBO:0000247" - - !!omap - - id: "s_2824" - - name: "hexanoate" - - compartment: "e" - - formula: "C6H11O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2824" + - name: "hexanoate" + - compartment: "e" + - formula: "C6H11O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hxa" - chebi: "CHEBI:17120" - kegg.compound: "C01585" - metanetx.chemical: "MNXM1653" - sbo: "SBO:0000247" - - !!omap - - id: "s_2826" - - name: "oleate" - - compartment: "e" - - formula: "C18H33O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2826" + - name: "oleate" + - compartment: "e" + - formula: "C18H33O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdcea" - chebi: "CHEBI:30823" - kegg.compound: "C00712" - metanetx.chemical: "MNXM306" - sbo: "SBO:0000247" - - !!omap - - id: "s_2828" - - name: "butyrate" - - compartment: "c" - - formula: "C4H7O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2828" + - name: "butyrate" + - compartment: "c" + - formula: "C4H7O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "but" - chebi: "CHEBI:17968" - kegg.compound: "C00246" - metanetx.chemical: "MNXM458" - sbo: "SBO:0000247" - - !!omap - - id: "s_2829" - - name: "hexanoate" - - compartment: "c" - - formula: "C6H11O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2829" + - name: "hexanoate" + - compartment: "c" + - formula: "C6H11O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hxa" - chebi: "CHEBI:17120" - kegg.compound: "C01585" - metanetx.chemical: "MNXM1653" - sbo: "SBO:0000247" - - !!omap - - id: "s_2831" - - name: "ATP" - - compartment: "erm" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2831" + - name: "ATP" + - compartment: "erm" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "atp" - chebi: "CHEBI:30616" - kegg.compound: "C00002" - metanetx.chemical: "MNXM3" - sbo: "SBO:0000247" - - !!omap - - id: "s_2832" - - name: "laurate" - - compartment: "erm" - - formula: "C12H23O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2832" + - name: "laurate" + - compartment: "erm" + - formula: "C12H23O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ddca" - chebi: "CHEBI:18262" - kegg.compound: "C02679" - metanetx.chemical: "MNXM402" - sbo: "SBO:0000247" - - !!omap - - id: "s_2833" - - name: "AMP" - - compartment: "erm" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_2833" + - name: "AMP" + - compartment: "erm" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "amp" - chebi: "CHEBI:456215" - kegg.compound: "C00020" - metanetx.chemical: "MNXM14" - sbo: "SBO:0000247" - - !!omap - - id: "s_2834" - - name: "diphosphate" - - compartment: "erm" - - formula: "HO7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_2834" + - name: "diphosphate" + - compartment: "erm" + - formula: "HO7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ppi" - chebi: "CHEBI:33019" - kegg.compound: "C00013" - metanetx.chemical: "MNXM11" - sbo: "SBO:0000247" - - !!omap - - id: "s_2835" - - name: "myristate" - - compartment: "erm" - - formula: "C14H27O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2835" + - name: "myristate" + - compartment: "erm" + - formula: "C14H27O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ttdca" - chebi: "CHEBI:30807" - kegg.compound: "C06424" - metanetx.chemical: "MNXM314" - sbo: "SBO:0000247" - - !!omap - - id: "s_2836" - - name: "palmitate" - - compartment: "erm" - - formula: "C16H31O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2836" + - name: "palmitate" + - compartment: "erm" + - formula: "C16H31O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdca" - chebi: "CHEBI:7896" - kegg.compound: "C00249" - metanetx.chemical: "MNXM108" - sbo: "SBO:0000247" - - !!omap - - id: "s_2837" - - name: "palmitoleate" - - compartment: "erm" - - formula: "C16H29O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2837" + - name: "palmitoleate" + - compartment: "erm" + - formula: "C16H29O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdcea" - chebi: "CHEBI:32372" - kegg.compound: "C08362" - metanetx.chemical: "MNXM162245" - sbo: "SBO:0000247" - - !!omap - - id: "s_2838" - - name: "stearate" - - compartment: "erm" - - formula: "C18H35O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2838" + - name: "stearate" + - compartment: "erm" + - formula: "C18H35O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdca" - chebi: "CHEBI:25629" - kegg.compound: "C01530" - metanetx.chemical: "MNXM236" - sbo: "SBO:0000247" - - !!omap - - id: "s_2839" - - name: "oleate" - - compartment: "erm" - - formula: "C18H33O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2839" + - name: "oleate" + - compartment: "erm" + - formula: "C18H33O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdcea" - chebi: "CHEBI:30823" - kegg.compound: "C00712" - metanetx.chemical: "MNXM306" - sbo: "SBO:0000247" - - !!omap - - id: "s_2840" - - name: "ATP" - - compartment: "lp" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2840" + - name: "ATP" + - compartment: "lp" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "atp" - chebi: "CHEBI:30616" - kegg.compound: "C00002" - metanetx.chemical: "MNXM3" - sbo: "SBO:0000247" - - !!omap - - id: "s_2841" - - name: "laurate" - - compartment: "lp" - - formula: "C12H23O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2841" + - name: "laurate" + - compartment: "lp" + - formula: "C12H23O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ddca" - chebi: "CHEBI:18262" - kegg.compound: "C02679" - metanetx.chemical: "MNXM402" - sbo: "SBO:0000247" - - !!omap - - id: "s_2842" - - name: "AMP" - - compartment: "lp" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_2842" + - name: "AMP" + - compartment: "lp" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "amp" - chebi: "CHEBI:456215" - kegg.compound: "C00020" - metanetx.chemical: "MNXM14" - sbo: "SBO:0000247" - - !!omap - - id: "s_2843" - - name: "lauroyl-CoA" - - compartment: "lp" - - formula: "C33H54N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2843" + - name: "lauroyl-CoA" + - compartment: "lp" + - formula: "C33H54N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ddcacoa" - chebi: "CHEBI:57375" - kegg.compound: "C01832" - metanetx.chemical: "MNXM363" - sbo: "SBO:0000247" - - !!omap - - id: "s_2844" - - name: "myristate" - - compartment: "lp" - - formula: "C14H27O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2844" + - name: "myristate" + - compartment: "lp" + - formula: "C14H27O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ttdca" - chebi: "CHEBI:30807" - kegg.compound: "C06424" - metanetx.chemical: "MNXM314" - sbo: "SBO:0000247" - - !!omap - - id: "s_2845" - - name: "myristoyl-CoA" - - compartment: "lp" - - formula: "C35H58N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2845" + - name: "myristoyl-CoA" + - compartment: "lp" + - formula: "C35H58N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "tdcoa" - chebi: "CHEBI:57385" - kegg.compound: "C02593" - metanetx.chemical: "MNXM224" - sbo: "SBO:0000247" - - !!omap - - id: "s_2846" - - name: "palmitate" - - compartment: "lp" - - formula: "C16H31O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2846" + - name: "palmitate" + - compartment: "lp" + - formula: "C16H31O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdca" - chebi: "CHEBI:7896" - kegg.compound: "C00249" - metanetx.chemical: "MNXM108" - sbo: "SBO:0000247" - - !!omap - - id: "s_2847" - - name: "palmitoyl-CoA" - - compartment: "lp" - - formula: "C37H62N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2847" + - name: "palmitoyl-CoA" + - compartment: "lp" + - formula: "C37H62N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "pmtcoa" - chebi: "CHEBI:57379" - kegg.compound: "C00154" - metanetx.chemical: "MNXM88" - sbo: "SBO:0000247" - - !!omap - - id: "s_2848" - - name: "palmitoleate" - - compartment: "lp" - - formula: "C16H29O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2848" + - name: "palmitoleate" + - compartment: "lp" + - formula: "C16H29O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdcea" - chebi: "CHEBI:32372" - kegg.compound: "C08362" - metanetx.chemical: "MNXM162245" - sbo: "SBO:0000247" - - !!omap - - id: "s_2849" - - name: "palmitoleoyl-CoA(4-)" - - compartment: "lp" - - formula: "C37H60N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2849" + - name: "palmitoleoyl-CoA(4-)" + - compartment: "lp" + - formula: "C37H60N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hdcoa" - chebi: "CHEBI:61540" - kegg.compound: "C21072" - metanetx.chemical: "MNXM781" - sbo: "SBO:0000247" - - !!omap - - id: "s_2850" - - name: "stearate" - - compartment: "lp" - - formula: "C18H35O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2850" + - name: "stearate" + - compartment: "lp" + - formula: "C18H35O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdca" - chebi: "CHEBI:25629" - kegg.compound: "C01530" - metanetx.chemical: "MNXM236" - sbo: "SBO:0000247" - - !!omap - - id: "s_2851" - - name: "stearoyl-CoA" - - compartment: "lp" - - formula: "C39H66N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2851" + - name: "stearoyl-CoA" + - compartment: "lp" + - formula: "C39H66N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "stcoa" - chebi: "CHEBI:57394" - kegg.compound: "C00412" - metanetx.chemical: "MNXM272" - sbo: "SBO:0000247" - - !!omap - - id: "s_2852" - - name: "oleate" - - compartment: "lp" - - formula: "C18H33O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2852" + - name: "oleate" + - compartment: "lp" + - formula: "C18H33O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdcea" - chebi: "CHEBI:30823" - kegg.compound: "C00712" - metanetx.chemical: "MNXM306" - sbo: "SBO:0000247" - - !!omap - - id: "s_2853" - - name: "oleoyl-CoA" - - compartment: "lp" - - formula: "C39H64N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2853" + - name: "oleoyl-CoA" + - compartment: "lp" + - formula: "C39H64N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ocdce9coa" - chebi: "CHEBI:57387" - kegg.compound: "C00510" - metanetx.chemical: "MNXM686" - sbo: "SBO:0000247" - - !!omap - - id: "s_2854" - - name: "palmitoleoyl-CoA(4-)" - - compartment: "p" - - formula: "C37H60N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2854" + - name: "palmitoleoyl-CoA(4-)" + - compartment: "p" + - formula: "C37H60N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hdcoa" - chebi: "CHEBI:61540" - kegg.compound: "C21072" - metanetx.chemical: "MNXM781" - sbo: "SBO:0000247" - - !!omap - - id: "s_2855" - - name: "oleate" - - compartment: "p" - - formula: "C18H33O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2855" + - name: "oleate" + - compartment: "p" + - formula: "C18H33O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdcea" - chebi: "CHEBI:30823" - kegg.compound: "C00712" - metanetx.chemical: "MNXM306" - sbo: "SBO:0000247" - - !!omap - - id: "s_2856" - - name: "ATP" - - compartment: "ce" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2856" + - name: "ATP" + - compartment: "ce" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "atp" - chebi: "CHEBI:30616" - kegg.compound: "C00002" - metanetx.chemical: "MNXM3" - sbo: "SBO:0000247" - - !!omap - - id: "s_2857" - - name: "coenzyme A" - - compartment: "ce" - - formula: "C21H32N7O16P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2857" + - name: "coenzyme A" + - compartment: "ce" + - formula: "C21H32N7O16P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "coa" - chebi: "CHEBI:57287" - kegg.compound: "C00010" - metanetx.chemical: "MNXM12" - sbo: "SBO:0000247" - - !!omap - - id: "s_2858" - - name: "arachidate" - - compartment: "ce" - - formula: "C20H39O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2858" + - name: "arachidate" + - compartment: "ce" + - formula: "C20H39O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "arach" - chebi: "CHEBI:32360" - kegg.compound: "C06425" - metanetx.chemical: "MNXM2976" - sbo: "SBO:0000247" - - !!omap - - id: "s_2859" - - name: "AMP" - - compartment: "ce" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_2859" + - name: "AMP" + - compartment: "ce" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "amp" - chebi: "CHEBI:456215" - kegg.compound: "C00020" - metanetx.chemical: "MNXM14" - sbo: "SBO:0000247" - - !!omap - - id: "s_2860" - - name: "diphosphate" - - compartment: "ce" - - formula: "HO7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_2860" + - name: "diphosphate" + - compartment: "ce" + - formula: "HO7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ppi" - chebi: "CHEBI:33019" - kegg.compound: "C00013" - metanetx.chemical: "MNXM11" - sbo: "SBO:0000247" - - !!omap - - id: "s_2861" - - name: "icosanoyl-CoA" - - compartment: "ce" - - formula: "C41H70N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2861" + - name: "icosanoyl-CoA" + - compartment: "ce" + - formula: "C41H70N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "arachcoa" - chebi: "CHEBI:15527" - kegg.compound: "C02041" - metanetx.chemical: "MNXM1429" - sbo: "SBO:0000247" - - !!omap - - id: "s_2862" - - name: "behenate" - - compartment: "ce" - - formula: "C22H43O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2862" + - name: "behenate" + - compartment: "ce" + - formula: "C22H43O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "docosac" - chebi: "CHEBI:23858" - kegg.compound: "C08281" - metanetx.chemical: "MNXM7102" - sbo: "SBO:0000247" - - !!omap - - id: "s_2863" - - name: "docosanoyl-CoA" - - compartment: "ce" - - formula: "C43H74N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2863" + - name: "docosanoyl-CoA" + - compartment: "ce" + - formula: "C43H74N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "docoscoa" - chebi: "CHEBI:65088" - kegg.compound: "C16528" - metanetx.chemical: "MNXM10780" - sbo: "SBO:0000247" - - !!omap - - id: "s_2864" - - name: "lignoceric acid" - - compartment: "ce" - - formula: "C24H47O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2864" + - name: "lignoceric acid" + - compartment: "ce" + - formula: "C24H47O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lgnc" - chebi: "CHEBI:31014" - kegg.compound: "C08320" - metanetx.chemical: "MNXM3297" - sbo: "SBO:0000247" - - !!omap - - id: "s_2865" - - name: "tetracosanoyl-CoA" - - compartment: "ce" - - formula: "C45H78N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2865" + - name: "tetracosanoyl-CoA" + - compartment: "ce" + - formula: "C45H78N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ttccoa" - chebi: "CHEBI:52974" - kegg.compound: "C16529" - metanetx.chemical: "MNXM1504" - sbo: "SBO:0000247" - - !!omap - - id: "s_2866" - - name: "cerotic acid" - - compartment: "ce" - - formula: "C26H51O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2866" + - name: "cerotic acid" + - compartment: "ce" + - formula: "C26H51O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hexc" - chebi: "CHEBI:31013" - metanetx.chemical: "MNXM46158" - sbo: "SBO:0000247" - - !!omap - - id: "s_2867" - - name: "hexacosanoyl-CoA" - - compartment: "ce" - - formula: "C47H82N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2867" + - name: "hexacosanoyl-CoA" + - compartment: "ce" + - formula: "C47H82N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hexccoa" - chebi: "CHEBI:52966" - metanetx.chemical: "MNXM1190" - sbo: "SBO:0000247" - - !!omap - - id: "s_2868" - - name: "behenate" - - compartment: "erm" - - formula: "C22H43O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2868" + - name: "behenate" + - compartment: "erm" + - formula: "C22H43O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "docosac" - chebi: "CHEBI:23858" - kegg.compound: "C08281" - metanetx.chemical: "MNXM7102" - sbo: "SBO:0000247" - - !!omap - - id: "s_2869" - - name: "lignoceric acid" - - compartment: "erm" - - formula: "C24H47O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2869" + - name: "lignoceric acid" + - compartment: "erm" + - formula: "C24H47O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lgnc" - chebi: "CHEBI:31014" - kegg.compound: "C08320" - metanetx.chemical: "MNXM3297" - sbo: "SBO:0000247" - - !!omap - - id: "s_2870" - - name: "cerotic acid" - - compartment: "erm" - - formula: "C26H51O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2870" + - name: "cerotic acid" + - compartment: "erm" + - formula: "C26H51O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hexc" - chebi: "CHEBI:31013" - metanetx.chemical: "MNXM46158" - sbo: "SBO:0000247" - - !!omap - - id: "s_2871" - - name: "behenate" - - compartment: "lp" - - formula: "C22H43O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2871" + - name: "behenate" + - compartment: "lp" + - formula: "C22H43O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "docosac" - chebi: "CHEBI:23858" - kegg.compound: "C08281" - metanetx.chemical: "MNXM7102" - sbo: "SBO:0000247" - - !!omap - - id: "s_2872" - - name: "docosanoyl-CoA" - - compartment: "lp" - - formula: "C43H74N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2872" + - name: "docosanoyl-CoA" + - compartment: "lp" + - formula: "C43H74N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "docoscoa" - chebi: "CHEBI:65088" - kegg.compound: "C16528" - metanetx.chemical: "MNXM10780" - sbo: "SBO:0000247" - - !!omap - - id: "s_2873" - - name: "lignoceric acid" - - compartment: "lp" - - formula: "C24H47O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2873" + - name: "lignoceric acid" + - compartment: "lp" + - formula: "C24H47O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lgnc" - chebi: "CHEBI:31014" - kegg.compound: "C08320" - metanetx.chemical: "MNXM3297" - sbo: "SBO:0000247" - - !!omap - - id: "s_2874" - - name: "tetracosanoyl-CoA" - - compartment: "lp" - - formula: "C45H78N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2874" + - name: "tetracosanoyl-CoA" + - compartment: "lp" + - formula: "C45H78N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ttccoa" - chebi: "CHEBI:52974" - kegg.compound: "C16529" - metanetx.chemical: "MNXM1504" - sbo: "SBO:0000247" - - !!omap - - id: "s_2875" - - name: "cerotic acid" - - compartment: "lp" - - formula: "C26H51O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2875" + - name: "cerotic acid" + - compartment: "lp" + - formula: "C26H51O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hexc" - chebi: "CHEBI:31013" - metanetx.chemical: "MNXM46158" - sbo: "SBO:0000247" - - !!omap - - id: "s_2876" - - name: "hexacosanoyl-CoA" - - compartment: "lp" - - formula: "C47H82N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2876" + - name: "hexacosanoyl-CoA" + - compartment: "lp" + - formula: "C47H82N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hexccoa" - chebi: "CHEBI:52966" - metanetx.chemical: "MNXM1190" - sbo: "SBO:0000247" - - !!omap - - id: "s_2877" - - name: "palmitoleoyl-CoA(4-)" - - compartment: "c" - - formula: "C37H60N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2877" + - name: "palmitoleoyl-CoA(4-)" + - compartment: "c" + - formula: "C37H60N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hdcoa" - chebi: "CHEBI:61540" - kegg.compound: "C21072" - metanetx.chemical: "MNXM781" - sbo: "SBO:0000247" - - !!omap - - id: "s_2878" - - name: "icosanoyl-CoA" - - compartment: "c" - - formula: "C41H70N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2878" + - name: "icosanoyl-CoA" + - compartment: "c" + - formula: "C41H70N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "arachcoa" - chebi: "CHEBI:15527" - kegg.compound: "C02041" - metanetx.chemical: "MNXM1429" - sbo: "SBO:0000247" - - !!omap - - id: "s_2879" - - name: "icosanoyl-CoA" - - compartment: "p" - - formula: "C41H70N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2879" + - name: "icosanoyl-CoA" + - compartment: "p" + - formula: "C41H70N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "arachcoa" - chebi: "CHEBI:15527" - kegg.compound: "C02041" - metanetx.chemical: "MNXM1429" - sbo: "SBO:0000247" - - !!omap - - id: "s_2880" - - name: "docosanoyl-CoA" - - compartment: "c" - - formula: "C43H74N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2880" + - name: "docosanoyl-CoA" + - compartment: "c" + - formula: "C43H74N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "docoscoa" - chebi: "CHEBI:65088" - kegg.compound: "C16528" - metanetx.chemical: "MNXM10780" - sbo: "SBO:0000247" - - !!omap - - id: "s_2881" - - name: "docosanoyl-CoA" - - compartment: "p" - - formula: "C43H74N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2881" + - name: "docosanoyl-CoA" + - compartment: "p" + - formula: "C43H74N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "docoscoa" - chebi: "CHEBI:65088" - kegg.compound: "C16528" - metanetx.chemical: "MNXM10780" - sbo: "SBO:0000247" - - !!omap - - id: "s_2882" - - name: "butyrate" - - compartment: "p" - - formula: "C4H7O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2882" + - name: "butyrate" + - compartment: "p" + - formula: "C4H7O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "but" - chebi: "CHEBI:17968" - kegg.compound: "C00246" - metanetx.chemical: "MNXM458" - sbo: "SBO:0000247" - - !!omap - - id: "s_2883" - - name: "hexanoate" - - compartment: "p" - - formula: "C6H11O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_2883" + - name: "hexanoate" + - compartment: "p" + - formula: "C6H11O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hxa" - chebi: "CHEBI:17120" - kegg.compound: "C01585" - metanetx.chemical: "MNXM1653" - sbo: "SBO:0000247" - - !!omap - - id: "s_2884" - - name: "butanoyl-CoA" - - compartment: "p" - - formula: "C25H38N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2884" + - name: "butanoyl-CoA" + - compartment: "p" + - formula: "C25H38N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "btcoa" - chebi: "CHEBI:57371" - kegg.compound: "C00136" - metanetx.chemical: "MNXM233" - sbo: "SBO:0000247" - - !!omap - - id: "s_2885" - - name: "hexanoyl-CoA" - - compartment: "p" - - formula: "C27H46N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2885" + - name: "hexanoyl-CoA" + - compartment: "p" + - formula: "C27H46N7O17P3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "hxcoa" - chebi: "CHEBI:27540" - kegg.compound: "C05270" - metanetx.chemical: "MNXM553" - sbo: "SBO:0000247" - - !!omap - - id: "s_2886" - - name: "but-2-enoyl-CoA" - - compartment: "p" - - formula: "C25H40N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2886" + - name: "but-2-enoyl-CoA" + - compartment: "p" + - formula: "C25H40N7O17P3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "b2coa" - chebi: "CHEBI:36926" - kegg.compound: "C00877" - metanetx.chemical: "MNXM214" - sbo: "SBO:0000247" - - !!omap - - id: "s_2887" - - name: "trans-hex-2-enoyl-CoA" - - compartment: "p" - - formula: "C27H44N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2887" + - name: "trans-hex-2-enoyl-CoA" + - compartment: "p" + - formula: "C27H44N7O17P3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "hx2coa" - chebi: "CHEBI:28706" - kegg.compound: "C05271" - metanetx.chemical: "MNXM753" - sbo: "SBO:0000247" - - !!omap - - id: "s_2888" - - name: "trans-oct-2-enoyl-CoA" - - compartment: "p" - - formula: "C29H44N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2888" + - name: "trans-oct-2-enoyl-CoA" + - compartment: "p" + - formula: "C29H44N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "oc2coa" - chebi: "CHEBI:27537" - kegg.compound: "C05276" - metanetx.chemical: "MNXM784" - sbo: "SBO:0000247" - - !!omap - - id: "s_2889" - - name: "trans-icos-2-enoyl-CoA" - - compartment: "p" - - formula: "C41H68N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2889" + - name: "trans-icos-2-enoyl-CoA" + - compartment: "p" + - formula: "C41H68N7O17P3S" + - charge: -4 + - annotation: !!omap - metanetx.chemical: "MNXM22115" - sbo: "SBO:0000247" - - !!omap - - id: "s_2890" - - name: "trans-docos-2-enoyl-CoA" - - compartment: "p" - - formula: "C43H72N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2890" + - name: "trans-docos-2-enoyl-CoA" + - compartment: "p" + - formula: "C43H72N7O17P3S" + - charge: -4 + - annotation: !!omap - metanetx.chemical: "MNXM97615" - sbo: "SBO:0000247" - - !!omap - - id: "s_2891" - - name: "trans-tetracos-2-enoyl-CoA" - - compartment: "p" - - formula: "C45H76N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2891" + - name: "trans-tetracos-2-enoyl-CoA" + - compartment: "p" + - formula: "C45H76N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2245" - chebi: "CHEBI:75068" - metanetx.chemical: "MNXM97616" - sbo: "SBO:0000247" - - !!omap - - id: "s_2892" - - name: "trans-2,cis-9-hexadecadienoyl-CoA" - - compartment: "p" - - formula: "C37H62N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2892" + - name: "trans-2,cis-9-hexadecadienoyl-CoA" + - compartment: "p" + - formula: "C37H62N7O17P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:78178" - metanetx.chemical: "MNXM146680" - sbo: "SBO:0000247" - - !!omap - - id: "s_2893" - - name: "cis-tetradec-7-enoyl-CoA" - - compartment: "p" - - formula: "C35H60N7O17P3S" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_2894" - - name: "trans-2,cis-7-tetradecadienoyl-CoA" - - compartment: "p" - - formula: "C35H58N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2893" + - name: "cis-tetradec-7-enoyl-CoA" + - compartment: "p" + - formula: "C35H60N7O17P3S" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_2894" + - name: "trans-2,cis-7-tetradecadienoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O17P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88067" - sbo: "SBO:0000247" - - !!omap - - id: "s_2895" - - name: "cis-dodec-5-enoyl-CoA" - - compartment: "p" - - formula: "C33H56N7O17P3S" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_2896" - - name: "trans-2,cis-5-dodecadienoyl-CoA" - - compartment: "p" - - formula: "C33H54N7O17P3S" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_2897" - - name: "trans-2,cis-9-octadecadienoyl-CoA" - - compartment: "p" - - formula: "C39H62N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2895" + - name: "cis-dodec-5-enoyl-CoA" + - compartment: "p" + - formula: "C33H56N7O17P3S" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_2896" + - name: "trans-2,cis-5-dodecadienoyl-CoA" + - compartment: "p" + - formula: "C33H54N7O17P3S" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_2897" + - name: "trans-2,cis-9-octadecadienoyl-CoA" + - compartment: "p" + - formula: "C39H62N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "lnlccoa" - chebi: "CHEBI:15530" - kegg.compound: "C02050" - metanetx.chemical: "MNXM638" - sbo: "SBO:0000247" - - !!omap - - id: "s_2898" - - name: "cis-hexadec-7-enoyl-CoA" - - compartment: "p" - - formula: "C37H64N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2898" + - name: "cis-hexadec-7-enoyl-CoA" + - compartment: "p" + - formula: "C37H64N7O17P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88008" - metanetx.chemical: "MNXM149511" - sbo: "SBO:0000247" - - !!omap - - id: "s_2899" - - name: "trans-2,cis-7-hexadecadienoyl-CoA" - - compartment: "p" - - formula: "C37H62N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2899" + - name: "trans-2,cis-7-hexadecadienoyl-CoA" + - compartment: "p" + - formula: "C37H62N7O17P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88086" - sbo: "SBO:0000247" - - !!omap - - id: "s_2900" - - name: "cis-tetradec-5-enoyl-CoA" - - compartment: "p" - - formula: "C35H60N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2900" + - name: "cis-tetradec-5-enoyl-CoA" + - compartment: "p" + - formula: "C35H60N7O17P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:70712" - metanetx.chemical: "MNXM103862" - sbo: "SBO:0000247" - - !!omap - - id: "s_2901" - - name: "trans-2,cis-5-tetradecadienoyl-CoA" - - compartment: "p" - - formula: "C35H58N7O17P3S" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_2902" - - name: "(R)-3-hydroxybutanoyl-CoA" - - compartment: "p" - - formula: "C25H38N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2901" + - name: "trans-2,cis-5-tetradecadienoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O17P3S" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_2902" + - name: "(R)-3-hydroxybutanoyl-CoA" + - compartment: "p" + - formula: "C25H38N7O18P3S" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:15452" - kegg.compound: "C03561" - metanetx.chemical: "MNXM1058" - sbo: "SBO:0000247" - - !!omap - - id: "s_2903" - - name: "(R)-3-hydroxyhexanoyl-CoA" - - compartment: "p" - - formula: "C27H46N7O18P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2903" + - name: "(R)-3-hydroxyhexanoyl-CoA" + - compartment: "p" + - formula: "C27H46N7O18P3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "R_3hhcoa" - chebi: "CHEBI:74474" - sbo: "SBO:0000247" - - !!omap - - id: "s_2904" - - name: "(R)-3-hydroxyoctanoyl-CoA" - - compartment: "p" - - formula: "C29H50N7O18P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2904" + - name: "(R)-3-hydroxyoctanoyl-CoA" + - compartment: "p" + - formula: "C29H50N7O18P3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "R_3hocoa" - chebi: "CHEBI:28573" - kegg.compound: "C05278" - metanetx.chemical: "MNXM31570" - sbo: "SBO:0000247" - - !!omap - - id: "s_2905" - - name: "(R)-3-hydroxyicosanoyl-CoA" - - compartment: "p" - - formula: "C41H70N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2905" + - name: "(R)-3-hydroxyicosanoyl-CoA" + - compartment: "p" + - formula: "C41H70N7O18P3S" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:76453" - metanetx.chemical: "MNXM36530" - sbo: "SBO:0000247" - - !!omap - - id: "s_2906" - - name: "(R)-3-hydroxydocosanoyl-CoA" - - compartment: "p" - - formula: "C43H74N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2906" + - name: "(R)-3-hydroxydocosanoyl-CoA" + - compartment: "p" + - formula: "C43H74N7O18P3S" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:76375" - metanetx.chemical: "MNXM162568" - sbo: "SBO:0000247" - - !!omap - - id: "s_2907" - - name: "(R)-3-hydroxytetracosanoyl-CoA" - - compartment: "p" - - formula: "C45H78N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2907" + - name: "(R)-3-hydroxytetracosanoyl-CoA" + - compartment: "p" + - formula: "C45H78N7O18P3S" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:76463" - metanetx.chemical: "MNXM36558" - sbo: "SBO:0000247" - - !!omap - - id: "s_2908" - - name: "(R)-3-hydroxy-cis-hexadec-9-enoyl-CoA" - - compartment: "p" - - formula: "C37H64N7O18P3S" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_2909" - - name: "(R)-3-hydroxy-cis-tetradec-7-enoyl-CoA" - - compartment: "p" - - formula: "C35H60N7O18P3S" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_2910" - - name: "(R)-3-hydroxy-cis-dodec-5-enoyl-CoA" - - compartment: "p" - - formula: "C33H56N7O18P3S" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_2911" - - name: "(R)-3-hydroxy-cis-octadec-9-enoyl-CoA" - - compartment: "p" - - formula: "C39H68N7O18P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2908" + - name: "(R)-3-hydroxy-cis-hexadec-9-enoyl-CoA" + - compartment: "p" + - formula: "C37H64N7O18P3S" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_2909" + - name: "(R)-3-hydroxy-cis-tetradec-7-enoyl-CoA" + - compartment: "p" + - formula: "C35H60N7O18P3S" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_2910" + - name: "(R)-3-hydroxy-cis-dodec-5-enoyl-CoA" + - compartment: "p" + - formula: "C33H56N7O18P3S" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_2911" + - name: "(R)-3-hydroxy-cis-octadec-9-enoyl-CoA" + - compartment: "p" + - formula: "C39H68N7O18P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:87781" - metanetx.chemical: "MNXM149457" - sbo: "SBO:0000247" - - !!omap - - id: "s_2912" - - name: "(R)-3-hydroxy-cis-hexadec-7-enoyl-CoA" - - compartment: "p" - - formula: "C37H64N7O18P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2912" + - name: "(R)-3-hydroxy-cis-hexadec-7-enoyl-CoA" + - compartment: "p" + - formula: "C37H64N7O18P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88087" - sbo: "SBO:0000247" - - !!omap - - id: "s_2913" - - name: "(R)-3-hydroxy-cis-tetradec-5-enoyl-CoA" - - compartment: "p" - - formula: "C35H60N7O18P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2913" + - name: "(R)-3-hydroxy-cis-tetradec-5-enoyl-CoA" + - compartment: "p" + - formula: "C35H60N7O18P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88072" - sbo: "SBO:0000247" - - !!omap - - id: "s_2914" - - name: "acetoacetyl-CoA" - - compartment: "p" - - formula: "C25H36N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2914" + - name: "acetoacetyl-CoA" + - compartment: "p" + - formula: "C25H36N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "aacoa" - chebi: "CHEBI:57286" - kegg.compound: "C00332" - metanetx.chemical: "MNXM133" - sbo: "SBO:0000247" - - !!omap - - id: "s_2915" - - name: "3-oxohexanoyl-CoA" - - compartment: "p" - - formula: "C27H44N7O18P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2915" + - name: "3-oxohexanoyl-CoA" + - compartment: "p" + - formula: "C27H44N7O18P3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "3ohcoa" - chebi: "CHEBI:27648" - kegg.compound: "C05269" - metanetx.chemical: "MNXM717" - sbo: "SBO:0000247" - - !!omap - - id: "s_2916" - - name: "3-oxooctanoyl-CoA" - - compartment: "p" - - formula: "C29H48N7O18P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2916" + - name: "3-oxooctanoyl-CoA" + - compartment: "p" + - formula: "C29H48N7O18P3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "3oocoa" - chebi: "CHEBI:28264" - kegg.compound: "C05267" - metanetx.chemical: "MNXM706" - sbo: "SBO:0000247" - - !!omap - - id: "s_2917" - - name: "3-oxoicosanoyl-CoA" - - compartment: "p" - - formula: "C41H68N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2917" + - name: "3-oxoicosanoyl-CoA" + - compartment: "p" + - formula: "C41H68N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2251" - chebi: "CHEBI:52327" - metanetx.chemical: "MNXM36762" - sbo: "SBO:0000247" - - !!omap - - id: "s_2918" - - name: "3-oxodocosanoyl-CoA" - - compartment: "p" - - formula: "C43H72N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2918" + - name: "3-oxodocosanoyl-CoA" + - compartment: "p" + - formula: "C43H72N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2250" - chebi: "CHEBI:52328" - metanetx.chemical: "MNXM36756" - sbo: "SBO:0000247" - - !!omap - - id: "s_2919" - - name: "3-oxotetracosanoyl-CoA" - - compartment: "p" - - formula: "C45H76N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2919" + - name: "3-oxotetracosanoyl-CoA" + - compartment: "p" + - formula: "C45H76N7O18P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "CE2253" - chebi: "CHEBI:52329" - metanetx.chemical: "MNXM36773" - sbo: "SBO:0000247" - - !!omap - - id: "s_2920" - - name: "3-oxo-cis-hexadec-9-enoyl-CoA" - - compartment: "p" - - formula: "C37H62N7O18P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2920" + - name: "3-oxo-cis-hexadec-9-enoyl-CoA" + - compartment: "p" + - formula: "C37H62N7O18P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:53152" - sbo: "SBO:0000247" - - !!omap - - id: "s_2921" - - name: "3-oxo-cis-tetradec-7-enoyl-CoA" - - compartment: "p" - - formula: "C35H58N7O18P3S" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_2922" - - name: "3-oxo-cis-dodec-5-enoyl-CoA" - - compartment: "p" - - formula: "C33H54N7O18P3S" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_2923" - - name: "3-oxo-cis-octadec-9-enoyl-CoA" - - compartment: "p" - - formula: "C39H66N7O18P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2921" + - name: "3-oxo-cis-tetradec-7-enoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O18P3S" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_2922" + - name: "3-oxo-cis-dodec-5-enoyl-CoA" + - compartment: "p" + - formula: "C33H54N7O18P3S" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_2923" + - name: "3-oxo-cis-octadec-9-enoyl-CoA" + - compartment: "p" + - formula: "C39H66N7O18P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:78146" - sbo: "SBO:0000247" - - !!omap - - id: "s_2924" - - name: "3-oxo-cis-hexadec-7-enoyl-CoA" - - compartment: "p" - - formula: "C37H62N7O18P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2924" + - name: "3-oxo-cis-hexadec-7-enoyl-CoA" + - compartment: "p" + - formula: "C37H62N7O18P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88090" - metanetx.chemical: "MNXM150996" - sbo: "SBO:0000247" - - !!omap - - id: "s_2925" - - name: "3-oxo-cis-tetradec-5-enoyl-CoA" - - compartment: "p" - - formula: "C35H58N7O18P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2925" + - name: "3-oxo-cis-tetradec-5-enoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O18P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88080" - metanetx.chemical: "MNXM147795" - sbo: "SBO:0000247" - - !!omap - - id: "s_2926" - - name: "cis-dec-3-enoyl-CoA" - - compartment: "p" - - formula: "C31H52N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2926" + - name: "cis-dec-3-enoyl-CoA" + - compartment: "p" + - formula: "C31H52N7O17P3S" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM164218" - sbo: "SBO:0000247" - - !!omap - - id: "s_2927" - - name: "cis-dodec-3-enoyl-CoA" - - compartment: "p" - - formula: "C33H56N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2927" + - name: "cis-dodec-3-enoyl-CoA" + - compartment: "p" + - formula: "C33H56N7O17P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:27989" - kegg.compound: "C02944" - metanetx.chemical: "MNXM3949" - sbo: "SBO:0000247" - - !!omap - - id: "s_2928" - - name: "trans-3,cis-5-dodecadienoyl-CoA" - - compartment: "p" - - formula: "C33H54N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2928" + - name: "trans-3,cis-5-dodecadienoyl-CoA" + - compartment: "p" + - formula: "C33H54N7O17P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:139121" - sbo: "SBO:0000247" - - !!omap - - id: "s_2929" - - name: "trans-dodec-3-enoyl-CoA" - - compartment: "p" - - formula: "C33H56N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2929" + - name: "trans-dodec-3-enoyl-CoA" + - compartment: "p" + - formula: "C33H56N7O17P3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dd3coa" - sbo: "SBO:0000247" - - !!omap - - id: "s_2930" - - name: "trans-3,cis-5-tetradecadienoyl-CoA" - - compartment: "p" - - formula: "C35H58N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2930" + - name: "trans-3,cis-5-tetradecadienoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O17P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:72001" - metanetx.chemical: "MNXM9966" - sbo: "SBO:0000247" - - !!omap - - id: "s_2931" - - name: "trans-tetradec-3-enoyl-CoA" - - compartment: "p" - - formula: "C35H60N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2931" + - name: "trans-tetradec-3-enoyl-CoA" + - compartment: "p" + - formula: "C35H60N7O17P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88083" - metanetx.chemical: "MNXM7189" - sbo: "SBO:0000247" - - !!omap - - id: "s_2932" - - name: "trans-2,trans-4-dodecadienoyl-CoA" - - compartment: "p" - - formula: "C33H54N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2932" + - name: "trans-2,trans-4-dodecadienoyl-CoA" + - compartment: "p" + - formula: "C33H54N7O17P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:28002" - kegg.compound: "C05280" - metanetx.chemical: "MNXM2008" - sbo: "SBO:0000247" - - !!omap - - id: "s_2933" - - name: "trans-2,trans-4-tetradecadienoyl-CoA" - - compartment: "p" - - formula: "C35H58N7O17P3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2933" + - name: "trans-2,trans-4-tetradecadienoyl-CoA" + - compartment: "p" + - formula: "C35H58N7O17P3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88084" - metanetx.chemical: "MNXM147629" - sbo: "SBO:0000247" - - !!omap - - id: "s_2934" - - name: "glycerol 3-phosphate" - - compartment: "erm" - - formula: "C3H7O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_2934" + - name: "glycerol 3-phosphate" + - compartment: "erm" + - formula: "C3H7O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "glyc3p" - chebi: "CHEBI:57597" - kegg.compound: "C00093" - metanetx.chemical: "MNXM66" - sbo: "SBO:0000247" - - !!omap - - id: "s_2935" - - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" - - compartment: "erm" - - formula: "C19H39O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2935" + - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" + - compartment: "erm" + - formula: "C19H39O7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1hdecg3p" - chebi: "CHEBI:15799" - kegg.compound: "C04036" - metanetx.chemical: "MNXM2455" - sbo: "SBO:0000247" - - !!omap - - id: "s_2936" - - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" - - compartment: "erm" - - formula: "C19H37O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2936" + - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" + - compartment: "erm" + - formula: "C19H37O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75070" - metanetx.chemical: "MNXM66496" - sbo: "SBO:0000247" - - !!omap - - id: "s_2937" - - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" - - compartment: "erm" - - formula: "C21H43O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2937" + - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" + - compartment: "erm" + - formula: "C21H43O7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1odecg3p" - chebi: "CHEBI:74850" - metanetx.chemical: "MNXM32950" - sbo: "SBO:0000247" - - !!omap - - id: "s_2938" - - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" - - compartment: "erm" - - formula: "C21H41O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2938" + - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" + - compartment: "erm" + - formula: "C21H41O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62837" - metanetx.chemical: "MNXM32960" - sbo: "SBO:0000247" - - !!omap - - id: "s_2939" - - name: "dihydroxyacetone phosphate" - - compartment: "erm" - - formula: "C3H5O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_2939" + - name: "dihydroxyacetone phosphate" + - compartment: "erm" + - formula: "C3H5O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "dhap" - chebi: "CHEBI:57642" - kegg.compound: "C00111" - metanetx.chemical: "MNXM77" - sbo: "SBO:0000247" - - !!omap - - id: "s_2940" - - name: "acylglycerone phosphate (16:0)" - - compartment: "erm" - - formula: "C19H37O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2940" + - name: "acylglycerone phosphate (16:0)" + - compartment: "erm" + - formula: "C19H37O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17868" - kegg.compound: "C01192" - metanetx.chemical: "MNXM1061" - sbo: "SBO:0000247" - - !!omap - - id: "s_2941" - - name: "acylglycerone phosphate (16:1)" - - compartment: "erm" - - formula: "C19H35O7P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_2942" - - name: "acylglycerone phosphate (18:0)" - - compartment: "erm" - - formula: "C21H41O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2941" + - name: "acylglycerone phosphate (16:1)" + - compartment: "erm" + - formula: "C19H35O7P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_2942" + - name: "acylglycerone phosphate (18:0)" + - compartment: "erm" + - formula: "C21H41O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:36476" - kegg.compound: "C03805" - metanetx.chemical: "MNXM33006" - sbo: "SBO:0000247" - - !!omap - - id: "s_2943" - - name: "acylglycerone phosphate (18:1)" - - compartment: "erm" - - formula: "C21H39O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2943" + - name: "acylglycerone phosphate (18:1)" + - compartment: "erm" + - formula: "C21H39O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:36475" - kegg.compound: "C03630" - metanetx.chemical: "MNXM32961" - sbo: "SBO:0000247" - - !!omap - - id: "s_2944" - - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" - - compartment: "lp" - - formula: "C19H39O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2944" + - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" + - compartment: "lp" + - formula: "C19H39O7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1hdecg3p" - chebi: "CHEBI:15799" - kegg.compound: "C04036" - metanetx.chemical: "MNXM2455" - sbo: "SBO:0000247" - - !!omap - - id: "s_2945" - - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" - - compartment: "lp" - - formula: "C19H37O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2945" + - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" + - compartment: "lp" + - formula: "C19H37O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75070" - metanetx.chemical: "MNXM66496" - sbo: "SBO:0000247" - - !!omap - - id: "s_2946" - - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" - - compartment: "lp" - - formula: "C21H43O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2946" + - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" + - compartment: "lp" + - formula: "C21H43O7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1odecg3p" - chebi: "CHEBI:74850" - metanetx.chemical: "MNXM32950" - sbo: "SBO:0000247" - - !!omap - - id: "s_2947" - - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" - - compartment: "lp" - - formula: "C21H41O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2947" + - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" + - compartment: "lp" + - formula: "C21H41O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62837" - metanetx.chemical: "MNXM32960" - sbo: "SBO:0000247" - - !!omap - - id: "s_2948" - - name: "acylglycerone phosphate (16:0)" - - compartment: "lp" - - formula: "C19H37O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2948" + - name: "acylglycerone phosphate (16:0)" + - compartment: "lp" + - formula: "C19H37O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17868" - kegg.compound: "C01192" - metanetx.chemical: "MNXM1061" - sbo: "SBO:0000247" - - !!omap - - id: "s_2949" - - name: "acylglycerone phosphate (16:1)" - - compartment: "lp" - - formula: "C19H35O7P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_2950" - - name: "acylglycerone phosphate (18:0)" - - compartment: "lp" - - formula: "C21H41O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2949" + - name: "acylglycerone phosphate (16:1)" + - compartment: "lp" + - formula: "C19H35O7P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_2950" + - name: "acylglycerone phosphate (18:0)" + - compartment: "lp" + - formula: "C21H41O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:36476" - kegg.compound: "C03805" - metanetx.chemical: "MNXM33006" - sbo: "SBO:0000247" - - !!omap - - id: "s_2951" - - name: "acylglycerone phosphate (18:1)" - - compartment: "lp" - - formula: "C21H39O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2951" + - name: "acylglycerone phosphate (18:1)" + - compartment: "lp" + - formula: "C21H39O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:36475" - kegg.compound: "C03630" - metanetx.chemical: "MNXM32961" - sbo: "SBO:0000247" - - !!omap - - id: "s_2952" - - name: "NADPH" - - compartment: "lp" - - formula: "C21H26N7O17P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_2952" + - name: "NADPH" + - compartment: "lp" + - formula: "C21H26N7O17P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "nadph" - chebi: "CHEBI:57783" - kegg.compound: "C00005" - metanetx.chemical: "MNXM6" - sbo: "SBO:0000247" - - !!omap - - id: "s_2953" - - name: "NADP(+)" - - compartment: "lp" - - formula: "C21H25N7O17P3" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_2953" + - name: "NADP(+)" + - compartment: "lp" + - formula: "C21H25N7O17P3" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "nadp" - chebi: "CHEBI:58349" - kegg.compound: "C00006" - metanetx.chemical: "MNXM5" - sbo: "SBO:0000247" - - !!omap - - id: "s_2954" - - name: "phosphatidate (1-16:0, 2-16:1)" - - compartment: "erm" - - formula: "C35H67O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2954" + - name: "phosphatidate (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C35H67O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:73998" - metanetx.chemical: "MNXM66470" - sbo: "SBO:0000247" - - !!omap - - id: "s_2955" - - name: "phosphatidate (1-16:0, 2-18:1)" - - compartment: "erm" - - formula: "C37H71O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2955" + - name: "phosphatidate (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C37H71O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:64844" - kegg.compound: "C13889" - metanetx.chemical: "MNXM66476" - sbo: "SBO:0000247" - - !!omap - - id: "s_2956" - - name: "phosphatidate (1-16:1, 2-16:1)" - - compartment: "erm" - - formula: "C35H65O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2956" + - name: "phosphatidate (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C35H65O8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pa161" - chebi: "CHEBI:75071" - metanetx.chemical: "MNXM66504" - sbo: "SBO:0000247" - - !!omap - - id: "s_2957" - - name: "phosphatidate (1-16:1, 2-18:1)" - - compartment: "erm" - - formula: "C37H69O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2957" + - name: "phosphatidate (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C37H69O8P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM66509" - sbo: "SBO:0000247" - - !!omap - - id: "s_2958" - - name: "phosphatidate (1-18:0, 2-16:1)" - - compartment: "erm" - - formula: "C37H71O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2958" + - name: "phosphatidate (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C37H71O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75073" - metanetx.chemical: "MNXM66631" - sbo: "SBO:0000247" - - !!omap - - id: "s_2959" - - name: "phosphatidate (1-18:0, 2-18:1)" - - compartment: "erm" - - formula: "C39H75O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2959" + - name: "phosphatidate (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C39H75O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:74847" - metanetx.chemical: "MNXM66635" - sbo: "SBO:0000247" - - !!omap - - id: "s_2960" - - name: "phosphatidate (1-18:1, 2-16:1)" - - compartment: "erm" - - formula: "C37H69O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2960" + - name: "phosphatidate (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C37H69O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75074" - metanetx.chemical: "MNXM66663" - sbo: "SBO:0000247" - - !!omap - - id: "s_2961" - - name: "phosphatidate (1-18:1, 2-18:1)" - - compartment: "erm" - - formula: "C39H73O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2961" + - name: "phosphatidate (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C39H73O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:83775" - metanetx.chemical: "MNXM51075" - sbo: "SBO:0000247" - - !!omap - - id: "s_2962" - - name: "phosphatidate (1-16:0, 2-18:1)" - - compartment: "lp" - - formula: "C37H71O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2962" + - name: "phosphatidate (1-16:0, 2-18:1)" + - compartment: "lp" + - formula: "C37H71O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:64844" - kegg.compound: "C13889" - metanetx.chemical: "MNXM66476" - sbo: "SBO:0000247" - - !!omap - - id: "s_2963" - - name: "phosphatidate (1-16:1, 2-18:1)" - - compartment: "lp" - - formula: "C37H69O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2963" + - name: "phosphatidate (1-16:1, 2-18:1)" + - compartment: "lp" + - formula: "C37H69O8P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM66509" - sbo: "SBO:0000247" - - !!omap - - id: "s_2964" - - name: "phosphatidate (1-18:0, 2-18:1)" - - compartment: "lp" - - formula: "C39H75O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2964" + - name: "phosphatidate (1-18:0, 2-18:1)" + - compartment: "lp" + - formula: "C39H75O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:74847" - metanetx.chemical: "MNXM66635" - sbo: "SBO:0000247" - - !!omap - - id: "s_2965" - - name: "phosphatidate (1-18:1, 2-18:1)" - - compartment: "lp" - - formula: "C39H73O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2965" + - name: "phosphatidate (1-18:1, 2-18:1)" + - compartment: "lp" + - formula: "C39H73O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:83775" - metanetx.chemical: "MNXM51075" - sbo: "SBO:0000247" - - !!omap - - id: "s_2966" - - name: "phosphate" - - compartment: "erm" - - formula: "HO4P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_2966" + - name: "phosphate" + - compartment: "erm" + - formula: "HO4P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pi" - chebi: "CHEBI:43474" - kegg.compound: "C00009" - metanetx.chemical: "MNXM9" - sbo: "SBO:0000247" - - !!omap - - id: "s_2967" - - name: "diglyceride (1-16:0, 2-16:1)" - - compartment: "erm" - - formula: "C35H66O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2967" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C35H66O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:84394" - metanetx.chemical: "MNXM49375" - sbo: "SBO:0000247" - - !!omap - - id: "s_2968" - - name: "diglyceride (1-16:0, 2-18:1)" - - compartment: "erm" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2968" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88454" - metanetx.chemical: "MNXM49380" - sbo: "SBO:0000247" - - !!omap - - id: "s_2969" - - name: "diglyceride (1-16:1, 2-16:1)" - - compartment: "erm" - - formula: "C35H64O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2969" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C35H64O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr161" - chebi: "CHEBI:84417" - metanetx.chemical: "MNXM176611" - sbo: "SBO:0000247" - - !!omap - - id: "s_2970" - - name: "diglyceride (1-16:1, 2-18:1)" - - compartment: "erm" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2970" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88500" - metanetx.chemical: "MNXM49417" - sbo: "SBO:0000247" - - !!omap - - id: "s_2971" - - name: "diglyceride (1-18:0, 2-16:1)" - - compartment: "erm" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2971" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88527" - metanetx.chemical: "MNXM49511" - sbo: "SBO:0000247" - - !!omap - - id: "s_2972" - - name: "diglyceride (1-18:0, 2-18:1)" - - compartment: "erm" - - formula: "C39H74O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2972" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C39H74O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75468" - metanetx.chemical: "MNXM49514" - sbo: "SBO:0000247" - - !!omap - - id: "s_2973" - - name: "diglyceride (1-18:1, 2-16:1)" - - compartment: "erm" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2973" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89229" - metanetx.chemical: "MNXM49575" - sbo: "SBO:0000247" - - !!omap - - id: "s_2974" - - name: "diglyceride (1-18:1, 2-18:1)" - - compartment: "erm" - - formula: "C39H72O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2974" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C39H72O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr181" - chebi: "CHEBI:52333" - metanetx.chemical: "MNXM9533" - sbo: "SBO:0000247" - - !!omap - - id: "s_2975" - - name: "phosphatidate (1-16:0, 2-16:1)" - - compartment: "vm" - - formula: "C35H67O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2975" + - name: "phosphatidate (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C35H67O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:73998" - metanetx.chemical: "MNXM66470" - sbo: "SBO:0000247" - - !!omap - - id: "s_2976" - - name: "H2O" - - compartment: "vm" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2976" + - name: "H2O" + - compartment: "vm" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_2977" - - name: "phosphate" - - compartment: "vm" - - formula: "HO4P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_2977" + - name: "phosphate" + - compartment: "vm" + - formula: "HO4P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pi" - chebi: "CHEBI:43474" - kegg.compound: "C00009" - metanetx.chemical: "MNXM9" - sbo: "SBO:0000247" - - !!omap - - id: "s_2978" - - name: "diglyceride (1-16:0, 2-16:1)" - - compartment: "vm" - - formula: "C35H66O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2978" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C35H66O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:84394" - metanetx.chemical: "MNXM49375" - sbo: "SBO:0000247" - - !!omap - - id: "s_2979" - - name: "phosphatidate (1-16:0, 2-18:1)" - - compartment: "vm" - - formula: "C37H71O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2979" + - name: "phosphatidate (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C37H71O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:64844" - kegg.compound: "C13889" - metanetx.chemical: "MNXM66476" - sbo: "SBO:0000247" - - !!omap - - id: "s_2980" - - name: "diglyceride (1-16:0, 2-18:1)" - - compartment: "vm" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2980" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88454" - metanetx.chemical: "MNXM49380" - sbo: "SBO:0000247" - - !!omap - - id: "s_2981" - - name: "phosphatidate (1-16:1, 2-16:1)" - - compartment: "vm" - - formula: "C35H65O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2981" + - name: "phosphatidate (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C35H65O8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pa161" - chebi: "CHEBI:75071" - metanetx.chemical: "MNXM66504" - sbo: "SBO:0000247" - - !!omap - - id: "s_2982" - - name: "diglyceride (1-16:1, 2-16:1)" - - compartment: "vm" - - formula: "C35H64O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2982" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C35H64O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr161" - chebi: "CHEBI:84417" - metanetx.chemical: "MNXM176611" - sbo: "SBO:0000247" - - !!omap - - id: "s_2983" - - name: "phosphatidate (1-16:1, 2-18:1)" - - compartment: "vm" - - formula: "C37H69O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2983" + - name: "phosphatidate (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C37H69O8P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM66509" - sbo: "SBO:0000247" - - !!omap - - id: "s_2984" - - name: "diglyceride (1-16:1, 2-18:1)" - - compartment: "vm" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2984" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88500" - metanetx.chemical: "MNXM49417" - sbo: "SBO:0000247" - - !!omap - - id: "s_2985" - - name: "phosphatidate (1-18:0, 2-16:1)" - - compartment: "vm" - - formula: "C37H71O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2985" + - name: "phosphatidate (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C37H71O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75073" - metanetx.chemical: "MNXM66631" - sbo: "SBO:0000247" - - !!omap - - id: "s_2986" - - name: "diglyceride (1-18:0, 2-16:1)" - - compartment: "vm" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2986" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88527" - metanetx.chemical: "MNXM49511" - sbo: "SBO:0000247" - - !!omap - - id: "s_2987" - - name: "phosphatidate (1-18:0, 2-18:1)" - - compartment: "vm" - - formula: "C39H75O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2987" + - name: "phosphatidate (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C39H75O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:74847" - metanetx.chemical: "MNXM66635" - sbo: "SBO:0000247" - - !!omap - - id: "s_2988" - - name: "diglyceride (1-18:0, 2-18:1)" - - compartment: "vm" - - formula: "C39H74O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2988" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C39H74O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75468" - metanetx.chemical: "MNXM49514" - sbo: "SBO:0000247" - - !!omap - - id: "s_2989" - - name: "phosphatidate (1-18:1, 2-16:1)" - - compartment: "vm" - - formula: "C37H69O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2989" + - name: "phosphatidate (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C37H69O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75074" - metanetx.chemical: "MNXM66663" - sbo: "SBO:0000247" - - !!omap - - id: "s_2990" - - name: "diglyceride (1-18:1, 2-16:1)" - - compartment: "vm" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2990" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89229" - metanetx.chemical: "MNXM49575" - sbo: "SBO:0000247" - - !!omap - - id: "s_2991" - - name: "phosphatidate (1-18:1, 2-18:1)" - - compartment: "vm" - - formula: "C39H73O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2991" + - name: "phosphatidate (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C39H73O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:83775" - metanetx.chemical: "MNXM51075" - sbo: "SBO:0000247" - - !!omap - - id: "s_2992" - - name: "diglyceride (1-18:1, 2-18:1)" - - compartment: "vm" - - formula: "C39H72O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2992" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C39H72O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr181" - chebi: "CHEBI:52333" - metanetx.chemical: "MNXM9533" - sbo: "SBO:0000247" - - !!omap - - id: "s_2993" - - name: "phosphatidate (1-16:0, 2-16:1)" - - compartment: "gm" - - formula: "C35H67O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2993" + - name: "phosphatidate (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C35H67O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:73998" - metanetx.chemical: "MNXM66470" - sbo: "SBO:0000247" - - !!omap - - id: "s_2994" - - name: "H2O" - - compartment: "gm" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2994" + - name: "H2O" + - compartment: "gm" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_2995" - - name: "phosphate" - - compartment: "gm" - - formula: "HO4P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_2995" + - name: "phosphate" + - compartment: "gm" + - formula: "HO4P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pi" - chebi: "CHEBI:43474" - kegg.compound: "C00009" - metanetx.chemical: "MNXM9" - sbo: "SBO:0000247" - - !!omap - - id: "s_2996" - - name: "diglyceride (1-16:0, 2-16:1)" - - compartment: "gm" - - formula: "C35H66O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2996" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C35H66O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:84394" - metanetx.chemical: "MNXM49375" - sbo: "SBO:0000247" - - !!omap - - id: "s_2997" - - name: "phosphatidate (1-16:0, 2-18:1)" - - compartment: "gm" - - formula: "C37H71O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2997" + - name: "phosphatidate (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C37H71O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:64844" - kegg.compound: "C13889" - metanetx.chemical: "MNXM66476" - sbo: "SBO:0000247" - - !!omap - - id: "s_2998" - - name: "diglyceride (1-16:0, 2-18:1)" - - compartment: "gm" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2998" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88454" - metanetx.chemical: "MNXM49380" - sbo: "SBO:0000247" - - !!omap - - id: "s_2999" - - name: "phosphatidate (1-16:1, 2-16:1)" - - compartment: "gm" - - formula: "C35H65O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_2999" + - name: "phosphatidate (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C35H65O8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pa161" - chebi: "CHEBI:75071" - metanetx.chemical: "MNXM66504" - sbo: "SBO:0000247" - - !!omap - - id: "s_3000" - - name: "diglyceride (1-16:1, 2-16:1)" - - compartment: "gm" - - formula: "C35H64O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3000" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C35H64O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr161" - chebi: "CHEBI:84417" - metanetx.chemical: "MNXM176611" - sbo: "SBO:0000247" - - !!omap - - id: "s_3001" - - name: "phosphatidate (1-16:1, 2-18:1)" - - compartment: "gm" - - formula: "C37H69O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3001" + - name: "phosphatidate (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C37H69O8P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM66509" - sbo: "SBO:0000247" - - !!omap - - id: "s_3002" - - name: "diglyceride (1-16:1, 2-18:1)" - - compartment: "gm" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3002" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88500" - metanetx.chemical: "MNXM49417" - sbo: "SBO:0000247" - - !!omap - - id: "s_3003" - - name: "phosphatidate (1-18:0, 2-16:1)" - - compartment: "gm" - - formula: "C37H71O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3003" + - name: "phosphatidate (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C37H71O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75073" - metanetx.chemical: "MNXM66631" - sbo: "SBO:0000247" - - !!omap - - id: "s_3004" - - name: "diglyceride (1-18:0, 2-16:1)" - - compartment: "gm" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3004" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88527" - metanetx.chemical: "MNXM49511" - sbo: "SBO:0000247" - - !!omap - - id: "s_3005" - - name: "phosphatidate (1-18:0, 2-18:1)" - - compartment: "gm" - - formula: "C39H75O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3005" + - name: "phosphatidate (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C39H75O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:74847" - metanetx.chemical: "MNXM66635" - sbo: "SBO:0000247" - - !!omap - - id: "s_3006" - - name: "diglyceride (1-18:0, 2-18:1)" - - compartment: "gm" - - formula: "C39H74O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3006" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C39H74O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75468" - metanetx.chemical: "MNXM49514" - sbo: "SBO:0000247" - - !!omap - - id: "s_3007" - - name: "phosphatidate (1-18:1, 2-16:1)" - - compartment: "gm" - - formula: "C37H69O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3007" + - name: "phosphatidate (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C37H69O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75074" - metanetx.chemical: "MNXM66663" - sbo: "SBO:0000247" - - !!omap - - id: "s_3008" - - name: "diglyceride (1-18:1, 2-16:1)" - - compartment: "gm" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3008" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89229" - metanetx.chemical: "MNXM49575" - sbo: "SBO:0000247" - - !!omap - - id: "s_3009" - - name: "phosphatidate (1-18:1, 2-18:1)" - - compartment: "gm" - - formula: "C39H73O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3009" + - name: "phosphatidate (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C39H73O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:83775" - metanetx.chemical: "MNXM51075" - sbo: "SBO:0000247" - - !!omap - - id: "s_3010" - - name: "diglyceride (1-18:1, 2-18:1)" - - compartment: "gm" - - formula: "C39H72O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3010" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C39H72O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr181" - chebi: "CHEBI:52333" - metanetx.chemical: "MNXM9533" - sbo: "SBO:0000247" - - !!omap - - id: "s_3011" - - name: "triglyceride (1-16:0, 2-16:1, 3-16:0)" - - compartment: "erm" - - formula: "C51H96O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3011" + - name: "triglyceride (1-16:0, 2-16:1, 3-16:0)" + - compartment: "erm" + - formula: "C51H96O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:85427" - metanetx.chemical: "MNXM84113" - sbo: "SBO:0000247" - - !!omap - - id: "s_3012" - - name: "triglyceride (1-16:0, 2-18:1, 3-16:0)" - - compartment: "erm" - - formula: "C53H100O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3012" + - name: "triglyceride (1-16:0, 2-18:1, 3-16:0)" + - compartment: "erm" + - formula: "C53H100O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89759" - metanetx.chemical: "MNXM84120" - sbo: "SBO:0000247" - - !!omap - - id: "s_3013" - - name: "triglyceride (1-16:1, 2-16:1, 3-16:0)" - - compartment: "erm" - - formula: "C51H94O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3013" + - name: "triglyceride (1-16:1, 2-16:1, 3-16:0)" + - compartment: "erm" + - formula: "C51H94O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag1619Z1619Z160" - sbo: "SBO:0000247" - - !!omap - - id: "s_3014" - - name: "triglyceride (1-16:1, 2-18:1, 3-16:0)" - - compartment: "erm" - - formula: "C53H98O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3015" - - name: "triglyceride (1-18:0, 2-16:1, 3-16:0)" - - compartment: "erm" - - formula: "C53H100O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3016" - - name: "triglyceride (1-18:0, 2-18:1, 3-16:0)" - - compartment: "erm" - - formula: "C55H104O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3014" + - name: "triglyceride (1-16:1, 2-18:1, 3-16:0)" + - compartment: "erm" + - formula: "C53H98O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3015" + - name: "triglyceride (1-18:0, 2-16:1, 3-16:0)" + - compartment: "erm" + - formula: "C53H100O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3016" + - name: "triglyceride (1-18:0, 2-18:1, 3-16:0)" + - compartment: "erm" + - formula: "C55H104O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89755" - metanetx.chemical: "MNXM84227" - sbo: "SBO:0000247" - - !!omap - - id: "s_3017" - - name: "triglyceride (1-18:1, 2-16:1, 3-16:0)" - - compartment: "erm" - - formula: "C53H98O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3018" - - name: "triglyceride (1-18:1, 2-18:1, 3-16:0)" - - compartment: "erm" - - formula: "C55H102O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3017" + - name: "triglyceride (1-18:1, 2-16:1, 3-16:0)" + - compartment: "erm" + - formula: "C53H98O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3018" + - name: "triglyceride (1-18:1, 2-18:1, 3-16:0)" + - compartment: "erm" + - formula: "C55H102O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88999" - metanetx.chemical: "MNXM85598" - sbo: "SBO:0000247" - - !!omap - - id: "s_3019" - - name: "triglyceride (1-16:0, 2-16:1, 3-16:1)" - - compartment: "erm" - - formula: "C51H94O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3019" + - name: "triglyceride (1-16:0, 2-16:1, 3-16:1)" + - compartment: "erm" + - formula: "C51H94O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89765" - metanetx.chemical: "MNXM84138" - sbo: "SBO:0000247" - - !!omap - - id: "s_3020" - - name: "triglyceride (1-16:0, 2-18:1, 3-16:1)" - - compartment: "erm" - - formula: "C53H98O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3021" - - name: "triglyceride (1-16:1, 2-16:1, 3-16:1)" - - compartment: "erm" - - formula: "C51H92O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3020" + - name: "triglyceride (1-16:0, 2-18:1, 3-16:1)" + - compartment: "erm" + - formula: "C53H98O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3021" + - name: "triglyceride (1-16:1, 2-16:1, 3-16:1)" + - compartment: "erm" + - formula: "C51H92O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag1619Z1619Z1619Z" - chebi: "CHEBI:75841" - metanetx.chemical: "MNXM84424" - sbo: "SBO:0000247" - - !!omap - - id: "s_3022" - - name: "triglyceride (1-16:1, 2-18:1, 3-16:1)" - - compartment: "erm" - - formula: "C53H96O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3023" - - name: "triglyceride (1-18:0, 2-16:1, 3-16:1)" - - compartment: "erm" - - formula: "C53H98O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3022" + - name: "triglyceride (1-16:1, 2-18:1, 3-16:1)" + - compartment: "erm" + - formula: "C53H96O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3023" + - name: "triglyceride (1-18:0, 2-16:1, 3-16:1)" + - compartment: "erm" + - formula: "C53H98O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90053" - metanetx.chemical: "MNXM84428" - sbo: "SBO:0000247" - - !!omap - - id: "s_3024" - - name: "triglyceride (1-18:0, 2-18:1, 3-16:1)" - - compartment: "erm" - - formula: "C55H102O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3025" - - name: "triglyceride (1-18:1, 2-16:1, 3-16:1)" - - compartment: "erm" - - formula: "C53H96O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3024" + - name: "triglyceride (1-18:0, 2-18:1, 3-16:1)" + - compartment: "erm" + - formula: "C55H102O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3025" + - name: "triglyceride (1-18:1, 2-16:1, 3-16:1)" + - compartment: "erm" + - formula: "C53H96O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag1819Z1619Z1619Z" - sbo: "SBO:0000247" - - !!omap - - id: "s_3026" - - name: "triglyceride (1-18:1, 2-18:1, 3-16:1)" - - compartment: "erm" - - formula: "C55H100O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3027" - - name: "triglyceride (1-16:0, 2-16:1, 3-18:0)" - - compartment: "erm" - - formula: "C53H100O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3026" + - name: "triglyceride (1-18:1, 2-18:1, 3-16:1)" + - compartment: "erm" + - formula: "C55H100O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3027" + - name: "triglyceride (1-16:0, 2-16:1, 3-18:0)" + - compartment: "erm" + - formula: "C53H100O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89763" - metanetx.chemical: "MNXM84142" - sbo: "SBO:0000247" - - !!omap - - id: "s_3028" - - name: "triglyceride (1-16:0, 2-18:1, 3-18:0)" - - compartment: "erm" - - formula: "C55H104O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3028" + - name: "triglyceride (1-16:0, 2-18:1, 3-18:0)" + - compartment: "erm" + - formula: "C55H104O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88998" - metanetx.chemical: "MNXM85401" - sbo: "SBO:0000247" - - !!omap - - id: "s_3029" - - name: "triglyceride (1-16:1, 2-16:1, 3-18:0)" - - compartment: "erm" - - formula: "C53H98O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3030" - - name: "triglyceride (1-16:1, 2-18:1, 3-18:0)" - - compartment: "erm" - - formula: "C55H102O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3031" - - name: "triglyceride (1-18:0, 2-16:1, 3-18:0)" - - compartment: "erm" - - formula: "C55H104O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3029" + - name: "triglyceride (1-16:1, 2-16:1, 3-18:0)" + - compartment: "erm" + - formula: "C53H98O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3030" + - name: "triglyceride (1-16:1, 2-18:1, 3-18:0)" + - compartment: "erm" + - formula: "C55H102O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3031" + - name: "triglyceride (1-18:0, 2-16:1, 3-18:0)" + - compartment: "erm" + - formula: "C55H104O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89958" - metanetx.chemical: "MNXM84510" - sbo: "SBO:0000247" - - !!omap - - id: "s_3032" - - name: "triglyceride (1-18:0, 2-18:1, 3-18:0)" - - compartment: "erm" - - formula: "C57H108O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3032" + - name: "triglyceride (1-18:0, 2-18:1, 3-18:0)" + - compartment: "erm" + - formula: "C57H108O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90305" - sbo: "SBO:0000247" - - !!omap - - id: "s_3033" - - name: "triglyceride (1-18:1, 2-16:1, 3-18:0)" - - compartment: "erm" - - formula: "C55H102O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3034" - - name: "triglyceride (1-18:1, 2-18:1, 3-18:0)" - - compartment: "erm" - - formula: "C57H106O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3035" - - name: "triglyceride (1-16:0, 2-16:1, 3-18:1)" - - compartment: "erm" - - formula: "C53H98O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3036" - - name: "triglyceride (1-16:0, 2-18:1, 3-18:1)" - - compartment: "erm" - - formula: "C55H102O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3037" - - name: "triglyceride (1-16:1, 2-16:1, 3-18:1)" - - compartment: "erm" - - formula: "C53H96O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3033" + - name: "triglyceride (1-18:1, 2-16:1, 3-18:0)" + - compartment: "erm" + - formula: "C55H102O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3034" + - name: "triglyceride (1-18:1, 2-18:1, 3-18:0)" + - compartment: "erm" + - formula: "C57H106O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3035" + - name: "triglyceride (1-16:0, 2-16:1, 3-18:1)" + - compartment: "erm" + - formula: "C53H98O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3036" + - name: "triglyceride (1-16:0, 2-18:1, 3-18:1)" + - compartment: "erm" + - formula: "C55H102O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3037" + - name: "triglyceride (1-16:1, 2-16:1, 3-18:1)" + - compartment: "erm" + - formula: "C53H96O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag1619Z1619Z1819Z" - chebi: "CHEBI:90051" - metanetx.chemical: "MNXM84429" - sbo: "SBO:0000247" - - !!omap - - id: "s_3038" - - name: "triglyceride (1-16:1, 2-18:1, 3-18:1)" - - compartment: "erm" - - formula: "C55H100O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3038" + - name: "triglyceride (1-16:1, 2-18:1, 3-18:1)" + - compartment: "erm" + - formula: "C55H100O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90048" - metanetx.chemical: "MNXM84530" - sbo: "SBO:0000247" - - !!omap - - id: "s_3039" - - name: "triglyceride (1-18:0, 2-16:1, 3-18:1)" - - compartment: "erm" - - formula: "C55H102O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3040" - - name: "triglyceride (1-18:0, 2-18:1, 3-18:1)" - - compartment: "erm" - - formula: "C57H106O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3041" - - name: "triglyceride (1-18:1, 2-16:1, 3-18:1)" - - compartment: "erm" - - formula: "C55H100O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3039" + - name: "triglyceride (1-18:0, 2-16:1, 3-18:1)" + - compartment: "erm" + - formula: "C55H102O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3040" + - name: "triglyceride (1-18:0, 2-18:1, 3-18:1)" + - compartment: "erm" + - formula: "C57H106O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3041" + - name: "triglyceride (1-18:1, 2-16:1, 3-18:1)" + - compartment: "erm" + - formula: "C55H100O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag1819Z1619Z1819Z" - chebi: "CHEBI:88984" - metanetx.chemical: "MNXM85603" - sbo: "SBO:0000247" - - !!omap - - id: "s_3042" - - name: "triglyceride (1-18:1, 2-18:1, 3-18:1)" - - compartment: "erm" - - formula: "C57H104O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3042" + - name: "triglyceride (1-18:1, 2-18:1, 3-18:1)" + - compartment: "erm" + - formula: "C57H104O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88970" - metanetx.chemical: "MNXM85618" - sbo: "SBO:0000247" - - !!omap - - id: "s_3043" - - name: "diglyceride (1-16:0, 2-16:1)" - - compartment: "lp" - - formula: "C35H66O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3043" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "lp" + - formula: "C35H66O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:84394" - metanetx.chemical: "MNXM49375" - sbo: "SBO:0000247" - - !!omap - - id: "s_3044" - - name: "triglyceride (1-16:0, 2-16:1, 3-16:0)" - - compartment: "lp" - - formula: "C51H96O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3044" + - name: "triglyceride (1-16:0, 2-16:1, 3-16:0)" + - compartment: "lp" + - formula: "C51H96O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:85427" - metanetx.chemical: "MNXM84113" - sbo: "SBO:0000247" - - !!omap - - id: "s_3045" - - name: "diglyceride (1-16:0, 2-18:1)" - - compartment: "lp" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3045" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "lp" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88454" - metanetx.chemical: "MNXM49380" - sbo: "SBO:0000247" - - !!omap - - id: "s_3046" - - name: "triglyceride (1-16:0, 2-18:1, 3-16:0)" - - compartment: "lp" - - formula: "C53H100O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3046" + - name: "triglyceride (1-16:0, 2-18:1, 3-16:0)" + - compartment: "lp" + - formula: "C53H100O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89759" - metanetx.chemical: "MNXM84120" - sbo: "SBO:0000247" - - !!omap - - id: "s_3047" - - name: "diglyceride (1-16:1, 2-16:1)" - - compartment: "lp" - - formula: "C35H64O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3047" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "lp" + - formula: "C35H64O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr161" - chebi: "CHEBI:84417" - metanetx.chemical: "MNXM176611" - sbo: "SBO:0000247" - - !!omap - - id: "s_3048" - - name: "triglyceride (1-16:1, 2-16:1, 3-16:0)" - - compartment: "lp" - - formula: "C51H94O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3048" + - name: "triglyceride (1-16:1, 2-16:1, 3-16:0)" + - compartment: "lp" + - formula: "C51H94O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag1619Z1619Z160" - sbo: "SBO:0000247" - - !!omap - - id: "s_3049" - - name: "diglyceride (1-16:1, 2-18:1)" - - compartment: "lp" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3049" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "lp" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88500" - metanetx.chemical: "MNXM49417" - sbo: "SBO:0000247" - - !!omap - - id: "s_3050" - - name: "triglyceride (1-16:1, 2-18:1, 3-16:0)" - - compartment: "lp" - - formula: "C53H98O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3051" - - name: "diglyceride (1-18:0, 2-16:1)" - - compartment: "lp" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3050" + - name: "triglyceride (1-16:1, 2-18:1, 3-16:0)" + - compartment: "lp" + - formula: "C53H98O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3051" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "lp" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88527" - metanetx.chemical: "MNXM49511" - sbo: "SBO:0000247" - - !!omap - - id: "s_3052" - - name: "triglyceride (1-18:0, 2-16:1, 3-16:0)" - - compartment: "lp" - - formula: "C53H100O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3053" - - name: "diglyceride (1-18:0, 2-18:1)" - - compartment: "lp" - - formula: "C39H74O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3052" + - name: "triglyceride (1-18:0, 2-16:1, 3-16:0)" + - compartment: "lp" + - formula: "C53H100O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3053" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "lp" + - formula: "C39H74O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75468" - metanetx.chemical: "MNXM49514" - sbo: "SBO:0000247" - - !!omap - - id: "s_3054" - - name: "triglyceride (1-18:0, 2-18:1, 3-16:0)" - - compartment: "lp" - - formula: "C55H104O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3054" + - name: "triglyceride (1-18:0, 2-18:1, 3-16:0)" + - compartment: "lp" + - formula: "C55H104O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89755" - metanetx.chemical: "MNXM84227" - sbo: "SBO:0000247" - - !!omap - - id: "s_3055" - - name: "diglyceride (1-18:1, 2-16:1)" - - compartment: "lp" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3055" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "lp" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89229" - metanetx.chemical: "MNXM49575" - sbo: "SBO:0000247" - - !!omap - - id: "s_3056" - - name: "triglyceride (1-18:1, 2-16:1, 3-16:0)" - - compartment: "lp" - - formula: "C53H98O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3057" - - name: "diglyceride (1-18:1, 2-18:1)" - - compartment: "lp" - - formula: "C39H72O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3056" + - name: "triglyceride (1-18:1, 2-16:1, 3-16:0)" + - compartment: "lp" + - formula: "C53H98O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3057" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "lp" + - formula: "C39H72O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr181" - chebi: "CHEBI:52333" - metanetx.chemical: "MNXM9533" - sbo: "SBO:0000247" - - !!omap - - id: "s_3058" - - name: "triglyceride (1-18:1, 2-18:1, 3-16:0)" - - compartment: "lp" - - formula: "C55H102O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3058" + - name: "triglyceride (1-18:1, 2-18:1, 3-16:0)" + - compartment: "lp" + - formula: "C55H102O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88999" - metanetx.chemical: "MNXM85598" - sbo: "SBO:0000247" - - !!omap - - id: "s_3059" - - name: "triglyceride (1-16:0, 2-16:1, 3-16:1)" - - compartment: "lp" - - formula: "C51H94O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3059" + - name: "triglyceride (1-16:0, 2-16:1, 3-16:1)" + - compartment: "lp" + - formula: "C51H94O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89765" - metanetx.chemical: "MNXM84138" - sbo: "SBO:0000247" - - !!omap - - id: "s_3060" - - name: "triglyceride (1-16:0, 2-18:1, 3-16:1)" - - compartment: "lp" - - formula: "C53H98O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3061" - - name: "triglyceride (1-16:1, 2-16:1, 3-16:1)" - - compartment: "lp" - - formula: "C51H92O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3060" + - name: "triglyceride (1-16:0, 2-18:1, 3-16:1)" + - compartment: "lp" + - formula: "C53H98O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3061" + - name: "triglyceride (1-16:1, 2-16:1, 3-16:1)" + - compartment: "lp" + - formula: "C51H92O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag1619Z1619Z1619Z" - chebi: "CHEBI:75841" - metanetx.chemical: "MNXM84424" - sbo: "SBO:0000247" - - !!omap - - id: "s_3062" - - name: "triglyceride (1-16:1, 2-18:1, 3-16:1)" - - compartment: "lp" - - formula: "C53H96O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3063" - - name: "triglyceride (1-18:0, 2-16:1, 3-16:1)" - - compartment: "lp" - - formula: "C53H98O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3062" + - name: "triglyceride (1-16:1, 2-18:1, 3-16:1)" + - compartment: "lp" + - formula: "C53H96O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3063" + - name: "triglyceride (1-18:0, 2-16:1, 3-16:1)" + - compartment: "lp" + - formula: "C53H98O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90053" - metanetx.chemical: "MNXM84428" - sbo: "SBO:0000247" - - !!omap - - id: "s_3064" - - name: "triglyceride (1-18:0, 2-18:1, 3-16:1)" - - compartment: "lp" - - formula: "C55H102O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3065" - - name: "triglyceride (1-18:1, 2-16:1, 3-16:1)" - - compartment: "lp" - - formula: "C53H96O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3064" + - name: "triglyceride (1-18:0, 2-18:1, 3-16:1)" + - compartment: "lp" + - formula: "C55H102O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3065" + - name: "triglyceride (1-18:1, 2-16:1, 3-16:1)" + - compartment: "lp" + - formula: "C53H96O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag1819Z1619Z1619Z" - sbo: "SBO:0000247" - - !!omap - - id: "s_3066" - - name: "triglyceride (1-18:1, 2-18:1, 3-16:1)" - - compartment: "lp" - - formula: "C55H100O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3067" - - name: "triglyceride (1-16:0, 2-16:1, 3-18:0)" - - compartment: "lp" - - formula: "C53H100O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3066" + - name: "triglyceride (1-18:1, 2-18:1, 3-16:1)" + - compartment: "lp" + - formula: "C55H100O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3067" + - name: "triglyceride (1-16:0, 2-16:1, 3-18:0)" + - compartment: "lp" + - formula: "C53H100O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89763" - metanetx.chemical: "MNXM84142" - sbo: "SBO:0000247" - - !!omap - - id: "s_3068" - - name: "triglyceride (1-16:0, 2-18:1, 3-18:0)" - - compartment: "lp" - - formula: "C55H104O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3068" + - name: "triglyceride (1-16:0, 2-18:1, 3-18:0)" + - compartment: "lp" + - formula: "C55H104O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88998" - metanetx.chemical: "MNXM85401" - sbo: "SBO:0000247" - - !!omap - - id: "s_3069" - - name: "triglyceride (1-16:1, 2-16:1, 3-18:0)" - - compartment: "lp" - - formula: "C53H98O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3070" - - name: "triglyceride (1-16:1, 2-18:1, 3-18:0)" - - compartment: "lp" - - formula: "C55H102O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3071" - - name: "triglyceride (1-18:0, 2-16:1, 3-18:0)" - - compartment: "lp" - - formula: "C55H104O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3069" + - name: "triglyceride (1-16:1, 2-16:1, 3-18:0)" + - compartment: "lp" + - formula: "C53H98O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3070" + - name: "triglyceride (1-16:1, 2-18:1, 3-18:0)" + - compartment: "lp" + - formula: "C55H102O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3071" + - name: "triglyceride (1-18:0, 2-16:1, 3-18:0)" + - compartment: "lp" + - formula: "C55H104O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89958" - metanetx.chemical: "MNXM84510" - sbo: "SBO:0000247" - - !!omap - - id: "s_3072" - - name: "triglyceride (1-18:0, 2-18:1, 3-18:0)" - - compartment: "lp" - - formula: "C57H108O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3072" + - name: "triglyceride (1-18:0, 2-18:1, 3-18:0)" + - compartment: "lp" + - formula: "C57H108O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90305" - sbo: "SBO:0000247" - - !!omap - - id: "s_3073" - - name: "triglyceride (1-18:1, 2-16:1, 3-18:0)" - - compartment: "lp" - - formula: "C55H102O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3074" - - name: "triglyceride (1-18:1, 2-18:1, 3-18:0)" - - compartment: "lp" - - formula: "C57H106O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3075" - - name: "triglyceride (1-16:0, 2-16:1, 3-18:1)" - - compartment: "lp" - - formula: "C53H98O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3076" - - name: "triglyceride (1-16:0, 2-18:1, 3-18:1)" - - compartment: "lp" - - formula: "C55H102O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3077" - - name: "triglyceride (1-16:1, 2-16:1, 3-18:1)" - - compartment: "lp" - - formula: "C53H96O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3073" + - name: "triglyceride (1-18:1, 2-16:1, 3-18:0)" + - compartment: "lp" + - formula: "C55H102O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3074" + - name: "triglyceride (1-18:1, 2-18:1, 3-18:0)" + - compartment: "lp" + - formula: "C57H106O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3075" + - name: "triglyceride (1-16:0, 2-16:1, 3-18:1)" + - compartment: "lp" + - formula: "C53H98O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3076" + - name: "triglyceride (1-16:0, 2-18:1, 3-18:1)" + - compartment: "lp" + - formula: "C55H102O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3077" + - name: "triglyceride (1-16:1, 2-16:1, 3-18:1)" + - compartment: "lp" + - formula: "C53H96O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag1619Z1619Z1819Z" - chebi: "CHEBI:90051" - metanetx.chemical: "MNXM84429" - sbo: "SBO:0000247" - - !!omap - - id: "s_3078" - - name: "triglyceride (1-16:1, 2-18:1, 3-18:1)" - - compartment: "lp" - - formula: "C55H100O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3078" + - name: "triglyceride (1-16:1, 2-18:1, 3-18:1)" + - compartment: "lp" + - formula: "C55H100O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90048" - metanetx.chemical: "MNXM84530" - sbo: "SBO:0000247" - - !!omap - - id: "s_3079" - - name: "triglyceride (1-18:0, 2-16:1, 3-18:1)" - - compartment: "lp" - - formula: "C55H102O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3080" - - name: "triglyceride (1-18:0, 2-18:1, 3-18:1)" - - compartment: "lp" - - formula: "C57H106O6" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3081" - - name: "triglyceride (1-18:1, 2-16:1, 3-18:1)" - - compartment: "lp" - - formula: "C55H100O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3079" + - name: "triglyceride (1-18:0, 2-16:1, 3-18:1)" + - compartment: "lp" + - formula: "C55H102O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3080" + - name: "triglyceride (1-18:0, 2-18:1, 3-18:1)" + - compartment: "lp" + - formula: "C57H106O6" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3081" + - name: "triglyceride (1-18:1, 2-16:1, 3-18:1)" + - compartment: "lp" + - formula: "C55H100O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag1819Z1619Z1819Z" - chebi: "CHEBI:88984" - metanetx.chemical: "MNXM85603" - sbo: "SBO:0000247" - - !!omap - - id: "s_3082" - - name: "triglyceride (1-18:1, 2-18:1, 3-18:1)" - - compartment: "lp" - - formula: "C57H104O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3082" + - name: "triglyceride (1-18:1, 2-18:1, 3-18:1)" + - compartment: "lp" + - formula: "C57H104O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88970" - metanetx.chemical: "MNXM85618" - sbo: "SBO:0000247" - - !!omap - - id: "s_3083" - - name: "CTP" - - compartment: "erm" - - formula: "C9H12N3O14P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3083" + - name: "CTP" + - compartment: "erm" + - formula: "C9H12N3O14P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ctp" - chebi: "CHEBI:37563" - kegg.compound: "C00063" - metanetx.chemical: "MNXM63" - sbo: "SBO:0000247" - - !!omap - - id: "s_3084" - - name: "CDP-diacylglycerol (1-16:0, 2-16:1)" - - compartment: "erm" - - formula: "C44H79N3O15P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3085" - - name: "CDP-diacylglycerol (1-16:1, 2-16:1)" - - compartment: "erm" - - formula: "C44H77N3O15P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3084" + - name: "CDP-diacylglycerol (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C44H79N3O15P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3085" + - name: "CDP-diacylglycerol (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C44H77N3O15P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:104012" - metanetx.chemical: "MNXM4508" - sbo: "SBO:0000247" - - !!omap - - id: "s_3086" - - name: "CDP-diacylglycerol (1-18:0, 2-16:1)" - - compartment: "erm" - - formula: "C46H83N3O15P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3087" - - name: "CDP-diacylglycerol (1-18:1, 2-16:1)" - - compartment: "erm" - - formula: "C46H81N3O15P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3088" - - name: "CDP-diacylglycerol (1-16:0, 2-18:1)" - - compartment: "erm" - - formula: "C46H83N3O15P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3086" + - name: "CDP-diacylglycerol (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C46H83N3O15P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3087" + - name: "CDP-diacylglycerol (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C46H81N3O15P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3088" + - name: "CDP-diacylglycerol (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C46H83N3O15P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:34077" - kegg.compound: "C13892" - metanetx.chemical: "MNXM32787" - sbo: "SBO:0000247" - - !!omap - - id: "s_3089" - - name: "CDP-diacylglycerol (1-16:1, 2-18:1)" - - compartment: "erm" - - formula: "C46H81N3O15P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3090" - - name: "CDP-diacylglycerol (1-18:0, 2-18:1)" - - compartment: "erm" - - formula: "C48H87N3O15P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3091" - - name: "CDP-diacylglycerol (1-18:1, 2-18:1)" - - compartment: "erm" - - formula: "C48H85N3O15P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3089" + - name: "CDP-diacylglycerol (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C46H81N3O15P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3090" + - name: "CDP-diacylglycerol (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C48H87N3O15P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3091" + - name: "CDP-diacylglycerol (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C48H85N3O15P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:104362" - sbo: "SBO:0000247" - - !!omap - - id: "s_3092" - - name: "phosphatidate (1-16:0, 2-16:1)" - - compartment: "mm" - - formula: "C35H67O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3092" + - name: "phosphatidate (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C35H67O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:73998" - metanetx.chemical: "MNXM66470" - sbo: "SBO:0000247" - - !!omap - - id: "s_3093" - - name: "CTP" - - compartment: "mm" - - formula: "C9H12N3O14P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3093" + - name: "CTP" + - compartment: "mm" + - formula: "C9H12N3O14P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ctp" - chebi: "CHEBI:37563" - kegg.compound: "C00063" - metanetx.chemical: "MNXM63" - sbo: "SBO:0000247" - - !!omap - - id: "s_3094" - - name: "H+" - - compartment: "mm" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3094" + - name: "H+" + - compartment: "mm" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_3095" - - name: "diphosphate" - - compartment: "mm" - - formula: "HO7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3095" + - name: "diphosphate" + - compartment: "mm" + - formula: "HO7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ppi" - chebi: "CHEBI:33019" - kegg.compound: "C00013" - metanetx.chemical: "MNXM11" - sbo: "SBO:0000247" - - !!omap - - id: "s_3096" - - name: "CDP-diacylglycerol (1-16:0, 2-16:1)" - - compartment: "mm" - - formula: "C44H79N3O15P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3097" - - name: "phosphatidate (1-16:1, 2-16:1)" - - compartment: "mm" - - formula: "C35H65O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3096" + - name: "CDP-diacylglycerol (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C44H79N3O15P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3097" + - name: "phosphatidate (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C35H65O8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pa161" - chebi: "CHEBI:75071" - metanetx.chemical: "MNXM66504" - sbo: "SBO:0000247" - - !!omap - - id: "s_3098" - - name: "CDP-diacylglycerol (1-16:1, 2-16:1)" - - compartment: "mm" - - formula: "C44H77N3O15P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3098" + - name: "CDP-diacylglycerol (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C44H77N3O15P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:104012" - metanetx.chemical: "MNXM4508" - sbo: "SBO:0000247" - - !!omap - - id: "s_3099" - - name: "phosphatidate (1-18:0, 2-16:1)" - - compartment: "mm" - - formula: "C37H71O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3099" + - name: "phosphatidate (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C37H71O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75073" - metanetx.chemical: "MNXM66631" - sbo: "SBO:0000247" - - !!omap - - id: "s_3100" - - name: "CDP-diacylglycerol (1-18:0, 2-16:1)" - - compartment: "mm" - - formula: "C46H83N3O15P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3101" - - name: "phosphatidate (1-18:1, 2-16:1)" - - compartment: "mm" - - formula: "C37H69O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3100" + - name: "CDP-diacylglycerol (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C46H83N3O15P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3101" + - name: "phosphatidate (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C37H69O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75074" - metanetx.chemical: "MNXM66663" - sbo: "SBO:0000247" - - !!omap - - id: "s_3102" - - name: "CDP-diacylglycerol (1-18:1, 2-16:1)" - - compartment: "mm" - - formula: "C46H81N3O15P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3103" - - name: "phosphatidate (1-16:0, 2-18:1)" - - compartment: "mm" - - formula: "C37H71O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3102" + - name: "CDP-diacylglycerol (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C46H81N3O15P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3103" + - name: "phosphatidate (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C37H71O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:64844" - kegg.compound: "C13889" - metanetx.chemical: "MNXM66476" - sbo: "SBO:0000247" - - !!omap - - id: "s_3104" - - name: "CDP-diacylglycerol (1-16:0, 2-18:1)" - - compartment: "mm" - - formula: "C46H83N3O15P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3104" + - name: "CDP-diacylglycerol (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C46H83N3O15P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:34077" - kegg.compound: "C13892" - metanetx.chemical: "MNXM32787" - sbo: "SBO:0000247" - - !!omap - - id: "s_3105" - - name: "phosphatidate (1-16:1, 2-18:1)" - - compartment: "mm" - - formula: "C37H69O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3105" + - name: "phosphatidate (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C37H69O8P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM66509" - sbo: "SBO:0000247" - - !!omap - - id: "s_3106" - - name: "CDP-diacylglycerol (1-16:1, 2-18:1)" - - compartment: "mm" - - formula: "C46H81N3O15P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3107" - - name: "L-serine" - - compartment: "erm" - - formula: "C3H7NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3106" + - name: "CDP-diacylglycerol (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C46H81N3O15P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3107" + - name: "L-serine" + - compartment: "erm" + - formula: "C3H7NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ser__L" - chebi: "CHEBI:17115" - kegg.compound: "C00065" - metanetx.chemical: "MNXM53" - sbo: "SBO:0000247" - - !!omap - - id: "s_3108" - - name: "CMP" - - compartment: "erm" - - formula: "C9H12N3O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3108" + - name: "CMP" + - compartment: "erm" + - formula: "C9H12N3O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "cmp" - chebi: "CHEBI:60377" - kegg.compound: "C00055" - metanetx.chemical: "MNXM31" - sbo: "SBO:0000247" - - !!omap - - id: "s_3109" - - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" - - compartment: "erm" - - formula: "C38H72NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3109" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C38H72NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89824" - metanetx.chemical: "MNXM78605" - sbo: "SBO:0000247" - - !!omap - - id: "s_3110" - - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" - - compartment: "erm" - - formula: "C38H70NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3110" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C38H70NO10P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM78637" - sbo: "SBO:0000247" - - !!omap - - id: "s_3111" - - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" - - compartment: "erm" - - formula: "C40H76NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3111" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C40H76NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90036" - metanetx.chemical: "MNXM78765" - sbo: "SBO:0000247" - - !!omap - - id: "s_3112" - - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" - - compartment: "erm" - - formula: "C40H74NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3112" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C40H74NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75101" - metanetx.chemical: "MNXM78797" - sbo: "SBO:0000247" - - !!omap - - id: "s_3113" - - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" - - compartment: "erm" - - formula: "C40H76NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3113" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C40H76NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:34086" - kegg.compound: "C13880" - metanetx.chemical: "MNXM32501" - sbo: "SBO:0000247" - - !!omap - - id: "s_3114" - - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" - - compartment: "erm" - - formula: "C40H74NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3114" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C40H74NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90032" - metanetx.chemical: "MNXM78642" - sbo: "SBO:0000247" - - !!omap - - id: "s_3115" - - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" - - compartment: "erm" - - formula: "C42H80NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3115" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C42H80NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:79096" - metanetx.chemical: "MNXM32529" - sbo: "SBO:0000247" - - !!omap - - id: "s_3116" - - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" - - compartment: "erm" - - formula: "C42H78NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3116" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C42H78NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60568" - metanetx.chemical: "MNXM32173" - sbo: "SBO:0000247" - - !!omap - - id: "s_3117" - - name: "myo-inositol" - - compartment: "erm" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3117" + - name: "myo-inositol" + - compartment: "erm" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "inost" - chebi: "CHEBI:17268" - kegg.compound: "C00137" - metanetx.chemical: "MNXM127" - sbo: "SBO:0000247" - - !!omap - - id: "s_3118" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" - - compartment: "erm" - - formula: "C41H77O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3118" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C41H77O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88396" - metanetx.chemical: "MNXM75492" - sbo: "SBO:0000247" - - !!omap - - id: "s_3119" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" - - compartment: "erm" - - formula: "C41H75O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3119" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C41H75O13P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3120" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" - - compartment: "erm" - - formula: "C43H81O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3120" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C43H81O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88557" - metanetx.chemical: "MNXM75665" - sbo: "SBO:0000247" - - !!omap - - id: "s_3121" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" - - compartment: "erm" - - formula: "C43H79O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3121" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C43H79O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88626" - sbo: "SBO:0000247" - - !!omap - - id: "s_3122" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" - - compartment: "erm" - - formula: "C43H81O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3122" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C43H81O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:73215" - kegg.compound: "C13888" - metanetx.chemical: "MNXM75499" - sbo: "SBO:0000247" - - !!omap - - id: "s_3123" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" - - compartment: "erm" - - formula: "C43H79O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3123" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C43H79O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88562" - sbo: "SBO:0000247" - - !!omap - - id: "s_3124" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" - - compartment: "erm" - - formula: "C45H85O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3124" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C45H85O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77346" - metanetx.chemical: "MNXM75671" - sbo: "SBO:0000247" - - !!omap - - id: "s_3125" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" - - compartment: "erm" - - formula: "C45H83O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3125" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C45H83O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88612" - sbo: "SBO:0000247" - - !!omap - - id: "s_3126" - - name: "sn-2-acyl-1-lysophosphatidylinositol (16:1)" - - compartment: "erm" - - formula: "C25H47O12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3126" + - name: "sn-2-acyl-1-lysophosphatidylinositol (16:1)" + - compartment: "erm" + - formula: "C25H47O12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:138108" - sbo: "SBO:0000247" - - !!omap - - id: "s_3127" - - name: "sn-2-acyl-1-lysophosphatidylinositol (18:1)" - - compartment: "erm" - - formula: "C27H51O12P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3128" - - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" - - compartment: "mm" - - formula: "C38H72NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3127" + - name: "sn-2-acyl-1-lysophosphatidylinositol (18:1)" + - compartment: "erm" + - formula: "C27H51O12P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3128" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C38H72NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89824" - metanetx.chemical: "MNXM78605" - sbo: "SBO:0000247" - - !!omap - - id: "s_3129" - - name: "carbon dioxide" - - compartment: "mm" - - formula: "CO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3129" + - name: "carbon dioxide" + - compartment: "mm" + - formula: "CO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "co2" - chebi: "CHEBI:16526" - kegg.compound: "C00011" - metanetx.chemical: "MNXM13" - sbo: "SBO:0000247" - - !!omap - - id: "s_3130" - - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" - - compartment: "mm" - - formula: "C37H72NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3130" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C37H72NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136147" - sbo: "SBO:0000247" - - !!omap - - id: "s_3131" - - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" - - compartment: "mm" - - formula: "C38H70NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3131" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C38H70NO10P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM78637" - sbo: "SBO:0000247" - - !!omap - - id: "s_3132" - - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" - - compartment: "mm" - - formula: "C37H70NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3132" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C37H70NO8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pe161" - chebi: "CHEBI:138792" - sbo: "SBO:0000247" - - !!omap - - id: "s_3133" - - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" - - compartment: "mm" - - formula: "C40H76NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3133" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C40H76NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90036" - metanetx.chemical: "MNXM78765" - sbo: "SBO:0000247" - - !!omap - - id: "s_3134" - - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" - - compartment: "mm" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3134" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136155" - sbo: "SBO:0000247" - - !!omap - - id: "s_3135" - - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" - - compartment: "mm" - - formula: "C40H74NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3135" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C40H74NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75101" - metanetx.chemical: "MNXM78797" - sbo: "SBO:0000247" - - !!omap - - id: "s_3136" - - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" - - compartment: "mm" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3136" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:82837" - metanetx.chemical: "MNXM71684" - sbo: "SBO:0000247" - - !!omap - - id: "s_3137" - - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" - - compartment: "mm" - - formula: "C40H76NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3137" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C40H76NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:34086" - kegg.compound: "C13880" - metanetx.chemical: "MNXM32501" - sbo: "SBO:0000247" - - !!omap - - id: "s_3138" - - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" - - compartment: "mm" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3138" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136148" - sbo: "SBO:0000247" - - !!omap - - id: "s_3139" - - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" - - compartment: "mm" - - formula: "C40H74NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3139" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C40H74NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90032" - metanetx.chemical: "MNXM78642" - sbo: "SBO:0000247" - - !!omap - - id: "s_3140" - - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" - - compartment: "mm" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3140" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90464" - sbo: "SBO:0000247" - - !!omap - - id: "s_3141" - - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" - - compartment: "mm" - - formula: "C42H80NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3141" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" + - compartment: "mm" + - formula: "C42H80NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:79096" - metanetx.chemical: "MNXM32529" - sbo: "SBO:0000247" - - !!omap - - id: "s_3142" - - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" - - compartment: "mm" - - formula: "C41H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3142" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" + - compartment: "mm" + - formula: "C41H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136162" - sbo: "SBO:0000247" - - !!omap - - id: "s_3143" - - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" - - compartment: "mm" - - formula: "C42H78NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3143" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" + - compartment: "mm" + - formula: "C42H78NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60568" - metanetx.chemical: "MNXM32173" - sbo: "SBO:0000247" - - !!omap - - id: "s_3144" - - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" - - compartment: "mm" - - formula: "C41H78NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3144" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" + - compartment: "mm" + - formula: "C41H78NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136170" - sbo: "SBO:0000247" - - !!omap - - id: "s_3145" - - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" - - compartment: "gm" - - formula: "C38H72NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3145" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C38H72NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89824" - metanetx.chemical: "MNXM78605" - sbo: "SBO:0000247" - - !!omap - - id: "s_3146" - - name: "H+" - - compartment: "gm" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3146" + - name: "H+" + - compartment: "gm" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_3147" - - name: "carbon dioxide" - - compartment: "gm" - - formula: "CO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3147" + - name: "carbon dioxide" + - compartment: "gm" + - formula: "CO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "co2" - chebi: "CHEBI:16526" - kegg.compound: "C00011" - metanetx.chemical: "MNXM13" - sbo: "SBO:0000247" - - !!omap - - id: "s_3148" - - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" - - compartment: "gm" - - formula: "C37H72NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3148" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C37H72NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136147" - sbo: "SBO:0000247" - - !!omap - - id: "s_3149" - - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" - - compartment: "gm" - - formula: "C38H70NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3149" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C38H70NO10P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM78637" - sbo: "SBO:0000247" - - !!omap - - id: "s_3150" - - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" - - compartment: "gm" - - formula: "C37H70NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3150" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C37H70NO8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pe161" - chebi: "CHEBI:138792" - sbo: "SBO:0000247" - - !!omap - - id: "s_3151" - - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" - - compartment: "gm" - - formula: "C40H76NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3151" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C40H76NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90036" - metanetx.chemical: "MNXM78765" - sbo: "SBO:0000247" - - !!omap - - id: "s_3152" - - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" - - compartment: "gm" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3152" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136155" - sbo: "SBO:0000247" - - !!omap - - id: "s_3153" - - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" - - compartment: "gm" - - formula: "C40H74NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3153" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C40H74NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75101" - metanetx.chemical: "MNXM78797" - sbo: "SBO:0000247" - - !!omap - - id: "s_3154" - - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" - - compartment: "gm" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3154" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:82837" - metanetx.chemical: "MNXM71684" - sbo: "SBO:0000247" - - !!omap - - id: "s_3155" - - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" - - compartment: "gm" - - formula: "C40H76NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3155" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C40H76NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:34086" - kegg.compound: "C13880" - metanetx.chemical: "MNXM32501" - sbo: "SBO:0000247" - - !!omap - - id: "s_3156" - - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" - - compartment: "gm" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3156" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136148" - sbo: "SBO:0000247" - - !!omap - - id: "s_3157" - - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" - - compartment: "gm" - - formula: "C40H74NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3157" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C40H74NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90032" - metanetx.chemical: "MNXM78642" - sbo: "SBO:0000247" - - !!omap - - id: "s_3158" - - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" - - compartment: "gm" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3158" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90464" - sbo: "SBO:0000247" - - !!omap - - id: "s_3159" - - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" - - compartment: "gm" - - formula: "C42H80NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3159" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C42H80NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:79096" - metanetx.chemical: "MNXM32529" - sbo: "SBO:0000247" - - !!omap - - id: "s_3160" - - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" - - compartment: "gm" - - formula: "C41H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3160" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C41H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136162" - sbo: "SBO:0000247" - - !!omap - - id: "s_3161" - - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" - - compartment: "gm" - - formula: "C42H78NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3161" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C42H78NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60568" - metanetx.chemical: "MNXM32173" - sbo: "SBO:0000247" - - !!omap - - id: "s_3162" - - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" - - compartment: "gm" - - formula: "C41H78NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3162" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C41H78NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136170" - sbo: "SBO:0000247" - - !!omap - - id: "s_3163" - - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" - - compartment: "vm" - - formula: "C38H72NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3163" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C38H72NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89824" - metanetx.chemical: "MNXM78605" - sbo: "SBO:0000247" - - !!omap - - id: "s_3164" - - name: "H+" - - compartment: "vm" - - formula: "H" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3164" + - name: "H+" + - compartment: "vm" + - formula: "H" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "h" - chebi: "CHEBI:24636" - kegg.compound: "C00080" - metanetx.chemical: "MNXM1" - sbo: "SBO:0000247" - - !!omap - - id: "s_3165" - - name: "carbon dioxide" - - compartment: "vm" - - formula: "CO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3165" + - name: "carbon dioxide" + - compartment: "vm" + - formula: "CO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "co2" - chebi: "CHEBI:16526" - kegg.compound: "C00011" - metanetx.chemical: "MNXM13" - sbo: "SBO:0000247" - - !!omap - - id: "s_3166" - - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" - - compartment: "vm" - - formula: "C37H72NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3166" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C37H72NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136147" - sbo: "SBO:0000247" - - !!omap - - id: "s_3167" - - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" - - compartment: "vm" - - formula: "C38H70NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3167" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C38H70NO10P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM78637" - sbo: "SBO:0000247" - - !!omap - - id: "s_3168" - - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" - - compartment: "vm" - - formula: "C37H70NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3168" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C37H70NO8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pe161" - chebi: "CHEBI:138792" - sbo: "SBO:0000247" - - !!omap - - id: "s_3169" - - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" - - compartment: "vm" - - formula: "C40H76NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3169" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C40H76NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90036" - metanetx.chemical: "MNXM78765" - sbo: "SBO:0000247" - - !!omap - - id: "s_3170" - - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" - - compartment: "vm" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3170" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136155" - sbo: "SBO:0000247" - - !!omap - - id: "s_3171" - - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" - - compartment: "vm" - - formula: "C40H74NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3171" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C40H74NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75101" - metanetx.chemical: "MNXM78797" - sbo: "SBO:0000247" - - !!omap - - id: "s_3172" - - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" - - compartment: "vm" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3172" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:82837" - metanetx.chemical: "MNXM71684" - sbo: "SBO:0000247" - - !!omap - - id: "s_3173" - - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" - - compartment: "vm" - - formula: "C40H76NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3173" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C40H76NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:34086" - kegg.compound: "C13880" - metanetx.chemical: "MNXM32501" - sbo: "SBO:0000247" - - !!omap - - id: "s_3174" - - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" - - compartment: "vm" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3174" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136148" - sbo: "SBO:0000247" - - !!omap - - id: "s_3175" - - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" - - compartment: "vm" - - formula: "C40H74NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3175" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C40H74NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90032" - metanetx.chemical: "MNXM78642" - sbo: "SBO:0000247" - - !!omap - - id: "s_3176" - - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" - - compartment: "vm" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3176" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90464" - sbo: "SBO:0000247" - - !!omap - - id: "s_3177" - - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" - - compartment: "vm" - - formula: "C42H80NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3177" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C42H80NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:79096" - metanetx.chemical: "MNXM32529" - sbo: "SBO:0000247" - - !!omap - - id: "s_3178" - - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" - - compartment: "vm" - - formula: "C41H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3178" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C41H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136162" - sbo: "SBO:0000247" - - !!omap - - id: "s_3179" - - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" - - compartment: "vm" - - formula: "C42H78NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3179" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C42H78NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60568" - metanetx.chemical: "MNXM32173" - sbo: "SBO:0000247" - - !!omap - - id: "s_3180" - - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" - - compartment: "vm" - - formula: "C41H78NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3180" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C41H78NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136170" - sbo: "SBO:0000247" - - !!omap - - id: "s_3181" - - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" - - compartment: "erm" - - formula: "C37H72NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3181" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C37H72NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136147" - sbo: "SBO:0000247" - - !!omap - - id: "s_3182" - - name: "S-adenosyl-L-methionine" - - compartment: "erm" - - formula: "C15H23N6O5S" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3182" + - name: "S-adenosyl-L-methionine" + - compartment: "erm" + - formula: "C15H23N6O5S" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "amet" - chebi: "CHEBI:15414" - kegg.compound: "C00019" - metanetx.chemical: "MNXM16" - sbo: "SBO:0000247" - - !!omap - - id: "s_3183" - - name: "S-adenosyl-L-homocysteine" - - compartment: "erm" - - formula: "C14H20N6O5S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3183" + - name: "S-adenosyl-L-homocysteine" + - compartment: "erm" + - formula: "C14H20N6O5S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ahcys" - chebi: "CHEBI:16680" - kegg.compound: "C00021" - metanetx.chemical: "MNXM19" - sbo: "SBO:0000247" - - !!omap - - id: "s_3184" - - name: "phosphatidyl-N-methylethanolamine (1-16:0, 2-16:1)" - - compartment: "erm" - - formula: "C38H74NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3185" - - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" - - compartment: "erm" - - formula: "C37H70NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3184" + - name: "phosphatidyl-N-methylethanolamine (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C38H74NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3185" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C37H70NO8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pe161" - chebi: "CHEBI:138792" - sbo: "SBO:0000247" - - !!omap - - id: "s_3186" - - name: "phosphatidyl-N-methylethanolamine (1-16:1, 2-16:1)" - - compartment: "erm" - - formula: "C38H72NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3187" - - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" - - compartment: "erm" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3186" + - name: "phosphatidyl-N-methylethanolamine (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C38H72NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3187" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136155" - sbo: "SBO:0000247" - - !!omap - - id: "s_3188" - - name: "phosphatidyl-N-methylethanolamine (1-18:0, 2-16:1)" - - compartment: "erm" - - formula: "C40H78NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3189" - - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" - - compartment: "erm" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3188" + - name: "phosphatidyl-N-methylethanolamine (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C40H78NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3189" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:82837" - metanetx.chemical: "MNXM71684" - sbo: "SBO:0000247" - - !!omap - - id: "s_3190" - - name: "phosphatidyl-N-methylethanolamine (1-18:1, 2-16:1)" - - compartment: "erm" - - formula: "C40H76NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3191" - - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" - - compartment: "erm" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3190" + - name: "phosphatidyl-N-methylethanolamine (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C40H76NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3191" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136148" - sbo: "SBO:0000247" - - !!omap - - id: "s_3192" - - name: "phosphatidyl-N-methylethanolamine (1-16:0, 2-18:1)" - - compartment: "erm" - - formula: "C40H78NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3193" - - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" - - compartment: "erm" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3192" + - name: "phosphatidyl-N-methylethanolamine (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C40H78NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3193" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90464" - sbo: "SBO:0000247" - - !!omap - - id: "s_3194" - - name: "phosphatidyl-N-methylethanolamine (1-16:1, 2-18:1)" - - compartment: "erm" - - formula: "C40H76NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3195" - - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" - - compartment: "erm" - - formula: "C41H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3194" + - name: "phosphatidyl-N-methylethanolamine (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C40H76NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3195" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C41H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136162" - sbo: "SBO:0000247" - - !!omap - - id: "s_3196" - - name: "phosphatidyl-N-methylethanolamine (1-18:0, 2-18:1)" - - compartment: "erm" - - formula: "C42H82NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3197" - - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" - - compartment: "erm" - - formula: "C41H78NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3196" + - name: "phosphatidyl-N-methylethanolamine (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C42H82NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3197" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C41H78NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136170" - sbo: "SBO:0000247" - - !!omap - - id: "s_3198" - - name: "phosphatidyl-N-methylethanolamine (1-18:1, 2-18:1)" - - compartment: "erm" - - formula: "C42H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3198" + - name: "phosphatidyl-N-methylethanolamine (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C42H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:85962" - metanetx.chemical: "MNXM72986" - sbo: "SBO:0000247" - - !!omap - - id: "s_3199" - - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:0, 2-16:1)" - - compartment: "erm" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3200" - - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:1, 2-16:1)" - - compartment: "erm" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3201" - - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:0, 2-16:1)" - - compartment: "erm" - - formula: "C41H80NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3202" - - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:1, 2-16:1)" - - compartment: "erm" - - formula: "C41H78NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3203" - - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:0, 2-18:1)" - - compartment: "erm" - - formula: "C41H80NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3204" - - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:1, 2-18:1)" - - compartment: "erm" - - formula: "C41H78NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3205" - - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:0, 2-18:1)" - - compartment: "erm" - - formula: "C43H84NO8P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3206" - - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:1, 2-18:1)" - - compartment: "erm" - - formula: "C43H82NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3199" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3200" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3201" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C41H80NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3202" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C41H78NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3203" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C41H80NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3204" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C41H78NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3205" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C43H84NO8P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3206" + - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C43H82NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:85963" - metanetx.chemical: "MNXM72998" - sbo: "SBO:0000247" - - !!omap - - id: "s_3207" - - name: "phosphatidylcholine (1-16:0, 2-16:1)" - - compartment: "erm" - - formula: "C40H78NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3207" + - name: "phosphatidylcholine (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C40H78NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134592" - sbo: "SBO:0000247" - - !!omap - - id: "s_3208" - - name: "phosphatidylcholine (1-16:1, 2-16:1)" - - compartment: "erm" - - formula: "C40H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3208" + - name: "phosphatidylcholine (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C40H76NO8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pc161" - chebi: "CHEBI:83717" - metanetx.chemical: "MNXM69377" - sbo: "SBO:0000247" - - !!omap - - id: "s_3209" - - name: "phosphatidylcholine (1-18:0, 2-16:1)" - - compartment: "erm" - - formula: "C42H82NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3209" + - name: "phosphatidylcholine (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C42H82NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:86097" - metanetx.chemical: "MNXM69528" - sbo: "SBO:0000247" - - !!omap - - id: "s_3210" - - name: "phosphatidylcholine (1-18:1, 2-16:1)" - - compartment: "erm" - - formula: "C42H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3210" + - name: "phosphatidylcholine (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C42H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:86100" - metanetx.chemical: "MNXM69658" - sbo: "SBO:0000247" - - !!omap - - id: "s_3211" - - name: "phosphatidylcholine (1-16:0, 2-18:1)" - - compartment: "erm" - - formula: "C42H82NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3211" + - name: "phosphatidylcholine (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C42H82NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134594" - sbo: "SBO:0000247" - - !!omap - - id: "s_3212" - - name: "phosphatidylcholine (1-16:1, 2-18:1)" - - compartment: "erm" - - formula: "C42H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3212" + - name: "phosphatidylcholine (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C42H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:84811" - metanetx.chemical: "MNXM69383" - sbo: "SBO:0000247" - - !!omap - - id: "s_3213" - - name: "phosphatidylcholine (1-18:0, 2-18:1)" - - compartment: "erm" - - formula: "C44H86NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3213" + - name: "phosphatidylcholine (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C44H86NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75034" - metanetx.chemical: "MNXM32526" - sbo: "SBO:0000247" - - !!omap - - id: "s_3214" - - name: "phosphatidylcholine (1-18:1, 2-18:1)" - - compartment: "erm" - - formula: "C44H84NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3214" + - name: "phosphatidylcholine (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C44H84NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:74669" - metanetx.chemical: "MNXM8549" - sbo: "SBO:0000247" - - !!omap - - id: "s_3215" - - name: "CDP" - - compartment: "erm" - - formula: "C9H12N3O11P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3215" + - name: "CDP" + - compartment: "erm" + - formula: "C9H12N3O11P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "cdp" - chebi: "CHEBI:58069" - kegg.compound: "C00112" - metanetx.chemical: "MNXM220" - sbo: "SBO:0000247" - - !!omap - - id: "s_3216" - - name: "CDP-ethanolamine" - - compartment: "erm" - - formula: "C11H19N4O11P2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3216" + - name: "CDP-ethanolamine" + - compartment: "erm" + - formula: "C11H19N4O11P2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "cdpea" - chebi: "CHEBI:57876" - kegg.compound: "C00570" - metanetx.chemical: "MNXM449" - sbo: "SBO:0000247" - - !!omap - - id: "s_3217" - - name: "CDP-choline" - - compartment: "erm" - - formula: "C14H25N4O11P2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3217" + - name: "CDP-choline" + - compartment: "erm" + - formula: "C14H25N4O11P2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "cdpchol" - chebi: "CHEBI:16436" - kegg.compound: "C00307" - metanetx.chemical: "MNXM283" - sbo: "SBO:0000247" - - !!omap - - id: "s_3218" - - name: "glycerol 3-phosphate" - - compartment: "mm" - - formula: "C3H7O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3218" + - name: "glycerol 3-phosphate" + - compartment: "mm" + - formula: "C3H7O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "glyc3p" - chebi: "CHEBI:57597" - kegg.compound: "C00093" - metanetx.chemical: "MNXM66" - sbo: "SBO:0000247" - - !!omap - - id: "s_3219" - - name: "CMP" - - compartment: "mm" - - formula: "C9H12N3O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3219" + - name: "CMP" + - compartment: "mm" + - formula: "C9H12N3O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "cmp" - chebi: "CHEBI:60377" - kegg.compound: "C00055" - metanetx.chemical: "MNXM31" - sbo: "SBO:0000247" - - !!omap - - id: "s_3220" - - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:0, 2-16:1)" - - compartment: "mm" - - formula: "C38H74O13P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3221" - - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:1, 2-16:1)" - - compartment: "mm" - - formula: "C38H72O13P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3222" - - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-18:0, 2-16:1)" - - compartment: "mm" - - formula: "C40H78O13P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3223" - - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-18:1, 2-16:1)" - - compartment: "mm" - - formula: "C40H76O13P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3224" - - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:0, 2-18:1)" - - compartment: "mm" - - formula: "C40H78O13P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3220" + - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C38H74O13P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3221" + - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C38H72O13P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3222" + - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C40H78O13P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3223" + - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C40H76O13P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3224" + - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C40H78O13P2" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM725269" - sbo: "SBO:0000247" - - !!omap - - id: "s_3225" - - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:1, 2-18:1)" - - compartment: "mm" - - formula: "C40H76O13P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3226" - - name: "H2O" - - compartment: "mm" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3225" + - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C40H76O13P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3226" + - name: "H2O" + - compartment: "mm" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_3227" - - name: "phosphatidylglycerol (1-16:0, 2-16:1)" - - compartment: "mm" - - formula: "C38H73O10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3227" + - name: "phosphatidylglycerol (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C38H73O10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136224" - sbo: "SBO:0000247" - - !!omap - - id: "s_3228" - - name: "phosphate" - - compartment: "mm" - - formula: "HO4P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3228" + - name: "phosphate" + - compartment: "mm" + - formula: "HO4P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pi" - chebi: "CHEBI:43474" - kegg.compound: "C00009" - metanetx.chemical: "MNXM9" - sbo: "SBO:0000247" - - !!omap - - id: "s_3229" - - name: "phosphatidylglycerol (1-16:1, 2-16:1)" - - compartment: "mm" - - formula: "C38H71O10P" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3230" - - name: "phosphatidylglycerol (1-18:0, 2-16:1)" - - compartment: "mm" - - formula: "C40H77O10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3229" + - name: "phosphatidylglycerol (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C38H71O10P" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3230" + - name: "phosphatidylglycerol (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C40H77O10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89270" - sbo: "SBO:0000247" - - !!omap - - id: "s_3231" - - name: "phosphatidylglycerol (1-18:1, 2-16:1)" - - compartment: "mm" - - formula: "C40H75O10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3231" + - name: "phosphatidylglycerol (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C40H75O10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89093" - sbo: "SBO:0000247" - - !!omap - - id: "s_3232" - - name: "phosphatidylglycerol (1-16:0, 2-18:1)" - - compartment: "mm" - - formula: "C40H77O10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3232" + - name: "phosphatidylglycerol (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C40H77O10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:34080" - kegg.compound: "C13833" - sbo: "SBO:0000247" - - !!omap - - id: "s_3233" - - name: "phosphatidylglycerol (1-16:1, 2-18:1)" - - compartment: "mm" - - formula: "C40H75O10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3233" + - name: "phosphatidylglycerol (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C40H75O10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89398" - sbo: "SBO:0000247" - - !!omap - - id: "s_3234" - - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-16:1)" - - compartment: "mm" - - formula: "C73H138O17P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3234" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C73H138O17P2" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM120766" - sbo: "SBO:0000247" - - !!omap - - id: "s_3235" - - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C73H136O17P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3235" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C73H136O17P2" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM120775" - sbo: "SBO:0000247" - - !!omap - - id: "s_3236" - - name: "cardiolipin (1-16:0, 2-16:1, 3-18:0, 4-16:1)" - - compartment: "mm" - - formula: "C75H142O17P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3236" + - name: "cardiolipin (1-16:0, 2-16:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C75H142O17P2" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM120785" - sbo: "SBO:0000247" - - !!omap - - id: "s_3237" - - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-16:1)" - - compartment: "mm" - - formula: "C75H140O17P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3237" + - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C75H140O17P2" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM120792" - sbo: "SBO:0000247" - - !!omap - - id: "s_3238" - - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-18:1)" - - compartment: "mm" - - formula: "C75H142O17P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3238" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C75H142O17P2" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM120768" - sbo: "SBO:0000247" - - !!omap - - id: "s_3239" - - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C75H140O17P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3239" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C75H140O17P2" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM120778" - sbo: "SBO:0000247" - - !!omap - - id: "s_3240" - - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-16:1)" - - compartment: "mm" - - formula: "C73H136O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3241" - - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C73H134O17P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3240" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C73H136O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3241" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C73H134O17P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "clpn161" - chebi: "CHEBI:104873" - metanetx.chemical: "MNXM4501" - sbo: "SBO:0000247" - - !!omap - - id: "s_3242" - - name: "cardiolipin (1-16:1, 2-16:1, 3-18:0, 4-16:1)" - - compartment: "mm" - - formula: "C75H140O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3243" - - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-16:1)" - - compartment: "mm" - - formula: "C75H138O17P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3242" + - name: "cardiolipin (1-16:1, 2-16:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C75H140O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3243" + - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C75H138O17P2" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM121254" - sbo: "SBO:0000247" - - !!omap - - id: "s_3244" - - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-18:1)" - - compartment: "mm" - - formula: "C75H140O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3245" - - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C75H138O17P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3244" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C75H140O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3245" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C75H138O17P2" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM121237" - sbo: "SBO:0000247" - - !!omap - - id: "s_3246" - - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-16:1)" - - compartment: "mm" - - formula: "C75H142O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3247" - - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C75H140O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3248" - - name: "cardiolipin (1-18:0, 2-16:1, 3-18:0, 4-16:1)" - - compartment: "mm" - - formula: "C77H146O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3249" - - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-16:1)" - - compartment: "mm" - - formula: "C77H144O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3250" - - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-18:1)" - - compartment: "mm" - - formula: "C77H146O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3251" - - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C77H144O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3252" - - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-16:1)" - - compartment: "mm" - - formula: "C75H140O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3253" - - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C75H138O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3254" - - name: "cardiolipin (1-18:1, 2-16:1, 3-18:0, 4-16:1)" - - compartment: "mm" - - formula: "C77H144O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3255" - - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-16:1)" - - compartment: "mm" - - formula: "C77H142O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3256" - - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-18:1)" - - compartment: "mm" - - formula: "C77H144O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3257" - - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C77H142O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3258" - - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-16:1)" - - compartment: "mm" - - formula: "C75H142O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3259" - - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C75H140O17P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3246" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C75H142O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3247" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C75H140O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3248" + - name: "cardiolipin (1-18:0, 2-16:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C77H146O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3249" + - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C77H144O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3250" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C77H146O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3251" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C77H144O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3252" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C75H140O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3253" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C75H138O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3254" + - name: "cardiolipin (1-18:1, 2-16:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C77H144O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3255" + - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C77H142O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3256" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C77H144O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3257" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C77H142O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3258" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C75H142O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3259" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C75H140O17P2" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM120922" - sbo: "SBO:0000247" - - !!omap - - id: "s_3260" - - name: "cardiolipin (1-16:0, 2-18:1, 3-18:0, 4-16:1)" - - compartment: "mm" - - formula: "C77H146O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3261" - - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-16:1)" - - compartment: "mm" - - formula: "C77H144O17P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3260" + - name: "cardiolipin (1-16:0, 2-18:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C77H146O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3261" + - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C77H144O17P2" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM120940" - sbo: "SBO:0000247" - - !!omap - - id: "s_3262" - - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-18:1)" - - compartment: "mm" - - formula: "C77H146O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3263" - - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C77H144O17P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3262" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C77H146O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3263" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C77H144O17P2" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM120924" - sbo: "SBO:0000247" - - !!omap - - id: "s_3264" - - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-16:1)" - - compartment: "mm" - - formula: "C75H140O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3265" - - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C75H138O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3266" - - name: "cardiolipin (1-16:1, 2-18:1, 3-18:0, 4-16:1)" - - compartment: "mm" - - formula: "C77H144O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3267" - - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-16:1)" - - compartment: "mm" - - formula: "C77H142O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3268" - - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-18:1)" - - compartment: "mm" - - formula: "C77H144O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3269" - - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C77H142O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3270" - - name: "monolysocardiolipin (2-16:1, 3-16:0, 4-16:1)" - - compartment: "mm" - - formula: "C57H108O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3271" - - name: "palmitate" - - compartment: "mm" - - formula: "C16H31O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3264" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C75H140O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3265" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C75H138O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3266" + - name: "cardiolipin (1-16:1, 2-18:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C77H144O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3267" + - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C77H142O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3268" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C77H144O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3269" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C77H142O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3270" + - name: "monolysocardiolipin (2-16:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C57H108O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3271" + - name: "palmitate" + - compartment: "mm" + - formula: "C16H31O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdca" - chebi: "CHEBI:7896" - kegg.compound: "C00249" - metanetx.chemical: "MNXM108" - sbo: "SBO:0000247" - - !!omap - - id: "s_3272" - - name: "monolysocardiolipin (2-16:1, 3-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C57H106O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3273" - - name: "monolysocardiolipin (2-16:1, 3-18:0, 4-16:1)" - - compartment: "mm" - - formula: "C59H112O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3274" - - name: "monolysocardiolipin (2-16:1, 3-18:1, 4-16:1)" - - compartment: "mm" - - formula: "C59H110O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3275" - - name: "monolysocardiolipin (2-16:1, 3-16:0, 4-18:1)" - - compartment: "mm" - - formula: "C59H112O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3276" - - name: "monolysocardiolipin (2-16:1, 3-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C59H110O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3277" - - name: "stearate" - - compartment: "mm" - - formula: "C18H35O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3272" + - name: "monolysocardiolipin (2-16:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C57H106O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3273" + - name: "monolysocardiolipin (2-16:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C59H112O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3274" + - name: "monolysocardiolipin (2-16:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C59H110O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3275" + - name: "monolysocardiolipin (2-16:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C59H112O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3276" + - name: "monolysocardiolipin (2-16:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C59H110O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3277" + - name: "stearate" + - compartment: "mm" + - formula: "C18H35O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdca" - chebi: "CHEBI:25629" - kegg.compound: "C01530" - metanetx.chemical: "MNXM236" - sbo: "SBO:0000247" - - !!omap - - id: "s_3278" - - name: "monolysocardiolipin (2-18:1, 3-16:0, 4-16:1)" - - compartment: "mm" - - formula: "C59H112O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3279" - - name: "monolysocardiolipin (2-18:1, 3-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C59H110O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3280" - - name: "monolysocardiolipin (2-18:1, 3-18:0, 4-16:1)" - - compartment: "mm" - - formula: "C61H116O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3281" - - name: "monolysocardiolipin (2-18:1, 3-18:1, 4-16:1)" - - compartment: "mm" - - formula: "C61H114O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3282" - - name: "monolysocardiolipin (2-18:1, 3-16:0, 4-18:1)" - - compartment: "mm" - - formula: "C61H116O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3283" - - name: "monolysocardiolipin (2-18:1, 3-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C61H114O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3284" - - name: "monolysocardiolipin (1-16:0, 2-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C57H108O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3285" - - name: "monolysocardiolipin (1-16:0, 2-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C59H112O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3286" - - name: "monolysocardiolipin (1-16:1, 2-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C57H106O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3287" - - name: "monolysocardiolipin (1-16:1, 2-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C59H110O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3288" - - name: "monolysocardiolipin (1-18:0, 2-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C59H112O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3289" - - name: "monolysocardiolipin (1-18:0, 2-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C61H116O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3290" - - name: "monolysocardiolipin (1-18:1, 2-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C59H110O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3291" - - name: "monolysocardiolipin (1-18:1, 2-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C61H114O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3292" - - name: "monolysocardiolipin (1-16:0, 2-18:1, 4-16:1)" - - compartment: "mm" - - formula: "C59H112O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3293" - - name: "monolysocardiolipin (1-16:0, 2-18:1, 4-18:1)" - - compartment: "mm" - - formula: "C61H116O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3294" - - name: "monolysocardiolipin (1-16:1, 2-18:1, 4-16:1)" - - compartment: "mm" - - formula: "C59H110O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3295" - - name: "monolysocardiolipin (1-16:1, 2-18:1, 4-18:1)" - - compartment: "mm" - - formula: "C61H114O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3296" - - name: "phosphatidylcholine (1-16:0, 2-16:1)" - - compartment: "mm" - - formula: "C40H78NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3278" + - name: "monolysocardiolipin (2-18:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C59H112O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3279" + - name: "monolysocardiolipin (2-18:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C59H110O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3280" + - name: "monolysocardiolipin (2-18:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C61H116O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3281" + - name: "monolysocardiolipin (2-18:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C61H114O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3282" + - name: "monolysocardiolipin (2-18:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C61H116O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3283" + - name: "monolysocardiolipin (2-18:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C61H114O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3284" + - name: "monolysocardiolipin (1-16:0, 2-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C57H108O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3285" + - name: "monolysocardiolipin (1-16:0, 2-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C59H112O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3286" + - name: "monolysocardiolipin (1-16:1, 2-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C57H106O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3287" + - name: "monolysocardiolipin (1-16:1, 2-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C59H110O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3288" + - name: "monolysocardiolipin (1-18:0, 2-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C59H112O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3289" + - name: "monolysocardiolipin (1-18:0, 2-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C61H116O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3290" + - name: "monolysocardiolipin (1-18:1, 2-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C59H110O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3291" + - name: "monolysocardiolipin (1-18:1, 2-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C61H114O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3292" + - name: "monolysocardiolipin (1-16:0, 2-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C59H112O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3293" + - name: "monolysocardiolipin (1-16:0, 2-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C61H116O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3294" + - name: "monolysocardiolipin (1-16:1, 2-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C59H110O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3295" + - name: "monolysocardiolipin (1-16:1, 2-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C61H114O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3296" + - name: "phosphatidylcholine (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C40H78NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134592" - sbo: "SBO:0000247" - - !!omap - - id: "s_3297" - - name: "1-acylglycerophosphocholine (16:0)" - - compartment: "mm" - - formula: "C24H50NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3297" + - name: "1-acylglycerophosphocholine (16:0)" + - compartment: "mm" + - formula: "C24H50NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc160" - chebi: "CHEBI:72998" - kegg.compound: "C04102" - metanetx.chemical: "MNXM32510" - sbo: "SBO:0000247" - - !!omap - - id: "s_3298" - - name: "phosphatidylcholine (1-16:1, 2-16:1)" - - compartment: "mm" - - formula: "C40H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3298" + - name: "phosphatidylcholine (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C40H76NO8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pc161" - chebi: "CHEBI:83717" - metanetx.chemical: "MNXM69377" - sbo: "SBO:0000247" - - !!omap - - id: "s_3299" - - name: "1-acylglycerophosphocholine (16:1)" - - compartment: "mm" - - formula: "C24H48NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3299" + - name: "1-acylglycerophosphocholine (16:1)" + - compartment: "mm" + - formula: "C24H48NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc161" - chebi: "CHEBI:73851" - metanetx.chemical: "MNXM32519" - sbo: "SBO:0000247" - - !!omap - - id: "s_3300" - - name: "phosphatidylcholine (1-18:0, 2-16:1)" - - compartment: "mm" - - formula: "C42H82NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3300" + - name: "phosphatidylcholine (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C42H82NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:86097" - metanetx.chemical: "MNXM69528" - sbo: "SBO:0000247" - - !!omap - - id: "s_3301" - - name: "1-acylglycerophosphocholine (18:0)" - - compartment: "mm" - - formula: "C26H54NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3301" + - name: "1-acylglycerophosphocholine (18:0)" + - compartment: "mm" + - formula: "C26H54NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc180" - chebi: "CHEBI:73858" - metanetx.chemical: "MNXM32545" - sbo: "SBO:0000247" - - !!omap - - id: "s_3302" - - name: "phosphatidylcholine (1-18:1, 2-16:1)" - - compartment: "mm" - - formula: "C42H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3302" + - name: "phosphatidylcholine (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C42H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:86100" - metanetx.chemical: "MNXM69658" - sbo: "SBO:0000247" - - !!omap - - id: "s_3303" - - name: "1-acylglycerophosphocholine (18:1)" - - compartment: "mm" - - formula: "C26H52NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3303" + - name: "1-acylglycerophosphocholine (18:1)" + - compartment: "mm" + - formula: "C26H52NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc181" - chebi: "CHEBI:28610" - kegg.compound: "C03916" - metanetx.chemical: "MNXM13872" - sbo: "SBO:0000247" - - !!omap - - id: "s_3304" - - name: "phosphatidylcholine (1-16:0, 2-18:1)" - - compartment: "mm" - - formula: "C42H82NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3304" + - name: "phosphatidylcholine (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C42H82NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134594" - sbo: "SBO:0000247" - - !!omap - - id: "s_3305" - - name: "phosphatidylcholine (1-16:1, 2-18:1)" - - compartment: "mm" - - formula: "C42H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3305" + - name: "phosphatidylcholine (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C42H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:84811" - metanetx.chemical: "MNXM69383" - sbo: "SBO:0000247" - - !!omap - - id: "s_3306" - - name: "phosphatidylcholine (1-18:0, 2-18:1)" - - compartment: "mm" - - formula: "C44H86NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3306" + - name: "phosphatidylcholine (1-18:0, 2-18:1)" + - compartment: "mm" + - formula: "C44H86NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75034" - metanetx.chemical: "MNXM32526" - sbo: "SBO:0000247" - - !!omap - - id: "s_3307" - - name: "phosphatidylcholine (1-18:1, 2-18:1)" - - compartment: "mm" - - formula: "C44H84NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3307" + - name: "phosphatidylcholine (1-18:1, 2-18:1)" + - compartment: "mm" + - formula: "C44H84NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:74669" - metanetx.chemical: "MNXM8549" - sbo: "SBO:0000247" - - !!omap - - id: "s_3308" - - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-16:1)" - - compartment: "mm" - - formula: "C77H144O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3309" - - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-16:1)" - - compartment: "mm" - - formula: "C77H142O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3310" - - name: "cardiolipin (1-18:1, 2-18:1, 3-18:0, 4-16:1)" - - compartment: "mm" - - formula: "C79H148O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3311" - - name: "cardiolipin (1-18:1, 2-18:1, 3-18:1, 4-16:1)" - - compartment: "mm" - - formula: "C79H146O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3312" - - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-18:1)" - - compartment: "mm" - - formula: "C79H148O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3313" - - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-18:1)" - - compartment: "mm" - - formula: "C79H146O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3314" - - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-18:1)" - - compartment: "mm" - - formula: "C77H144O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3315" - - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-18:1)" - - compartment: "mm" - - formula: "C77H142O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3316" - - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-18:1)" - - compartment: "mm" - - formula: "C79H148O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3317" - - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-18:1)" - - compartment: "mm" - - formula: "C79H146O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3318" - - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-18:1)" - - compartment: "mm" - - formula: "C79H148O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3319" - - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-18:1)" - - compartment: "mm" - - formula: "C79H146O17P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3320" - - name: "palmitoleoyl-CoA(4-)" - - compartment: "mm" - - formula: "C37H60N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3308" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-16:1)" + - compartment: "mm" + - formula: "C77H144O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3309" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-16:1)" + - compartment: "mm" + - formula: "C77H142O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3310" + - name: "cardiolipin (1-18:1, 2-18:1, 3-18:0, 4-16:1)" + - compartment: "mm" + - formula: "C79H148O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3311" + - name: "cardiolipin (1-18:1, 2-18:1, 3-18:1, 4-16:1)" + - compartment: "mm" + - formula: "C79H146O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3312" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-18:1)" + - compartment: "mm" + - formula: "C79H148O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3313" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-18:1)" + - compartment: "mm" + - formula: "C79H146O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3314" + - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C77H144O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3315" + - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C77H142O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3316" + - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C79H148O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3317" + - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C79H146O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3318" + - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C79H148O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3319" + - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-18:1)" + - compartment: "mm" + - formula: "C79H146O17P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3320" + - name: "palmitoleoyl-CoA(4-)" + - compartment: "mm" + - formula: "C37H60N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "hdcoa" - chebi: "CHEBI:61540" - kegg.compound: "C21072" - metanetx.chemical: "MNXM781" - sbo: "SBO:0000247" - - !!omap - - id: "s_3321" - - name: "coenzyme A" - - compartment: "mm" - - formula: "C21H32N7O16P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3321" + - name: "coenzyme A" + - compartment: "mm" + - formula: "C21H32N7O16P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "coa" - chebi: "CHEBI:57287" - kegg.compound: "C00010" - metanetx.chemical: "MNXM12" - sbo: "SBO:0000247" - - !!omap - - id: "s_3322" - - name: "oleoyl-CoA" - - compartment: "mm" - - formula: "C39H64N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3322" + - name: "oleoyl-CoA" + - compartment: "mm" + - formula: "C39H64N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ocdce9coa" - chebi: "CHEBI:57387" - kegg.compound: "C00510" - metanetx.chemical: "MNXM686" - sbo: "SBO:0000247" - - !!omap - - id: "s_3323" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" - - compartment: "ce" - - formula: "C41H77O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3323" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C41H77O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88396" - metanetx.chemical: "MNXM75492" - sbo: "SBO:0000247" - - !!omap - - id: "s_3324" - - name: "ADP" - - compartment: "ce" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3324" + - name: "ADP" + - compartment: "ce" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "adp" - chebi: "CHEBI:456216" - kegg.compound: "C00008" - metanetx.chemical: "MNXM7" - sbo: "SBO:0000247" - - !!omap - - id: "s_3325" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" - - compartment: "ce" - - formula: "C41H78O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3326" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" - - compartment: "ce" - - formula: "C41H75O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3325" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C41H78O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3326" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C41H75O13P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3327" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" - - compartment: "ce" - - formula: "C41H76O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3327" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C41H76O16P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail4p161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3328" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" - - compartment: "ce" - - formula: "C43H81O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3328" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C43H81O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88557" - metanetx.chemical: "MNXM75665" - sbo: "SBO:0000247" - - !!omap - - id: "s_3329" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" - - compartment: "ce" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3330" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" - - compartment: "ce" - - formula: "C43H79O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3329" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3330" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C43H79O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88626" - sbo: "SBO:0000247" - - !!omap - - id: "s_3331" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" - - compartment: "ce" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3332" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" - - compartment: "ce" - - formula: "C43H81O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3331" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3332" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C43H81O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:73215" - kegg.compound: "C13888" - metanetx.chemical: "MNXM75499" - sbo: "SBO:0000247" - - !!omap - - id: "s_3333" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" - - compartment: "ce" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3334" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" - - compartment: "ce" - - formula: "C43H79O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3333" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3334" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C43H79O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88562" - sbo: "SBO:0000247" - - !!omap - - id: "s_3335" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" - - compartment: "ce" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3336" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" - - compartment: "ce" - - formula: "C45H85O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3335" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3336" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C45H85O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77346" - metanetx.chemical: "MNXM75671" - sbo: "SBO:0000247" - - !!omap - - id: "s_3337" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" - - compartment: "ce" - - formula: "C45H86O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3337" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C45H86O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77277" - sbo: "SBO:0000247" - - !!omap - - id: "s_3338" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" - - compartment: "ce" - - formula: "C45H83O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3338" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C45H83O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88612" - sbo: "SBO:0000247" - - !!omap - - id: "s_3339" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" - - compartment: "ce" - - formula: "C45H84O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3340" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" - - compartment: "vm" - - formula: "C41H77O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3339" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C45H84O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3340" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C41H77O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88396" - metanetx.chemical: "MNXM75492" - sbo: "SBO:0000247" - - !!omap - - id: "s_3341" - - name: "ATP" - - compartment: "vm" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3341" + - name: "ATP" + - compartment: "vm" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "atp" - chebi: "CHEBI:30616" - kegg.compound: "C00002" - metanetx.chemical: "MNXM3" - sbo: "SBO:0000247" - - !!omap - - id: "s_3342" - - name: "ADP" - - compartment: "vm" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3342" + - name: "ADP" + - compartment: "vm" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "adp" - chebi: "CHEBI:456216" - kegg.compound: "C00008" - metanetx.chemical: "MNXM7" - sbo: "SBO:0000247" - - !!omap - - id: "s_3343" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" - - compartment: "vm" - - formula: "C41H78O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3344" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" - - compartment: "vm" - - formula: "C41H75O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3343" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C41H78O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3344" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C41H75O13P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3345" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" - - compartment: "vm" - - formula: "C41H76O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3345" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C41H76O16P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail4p161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3346" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" - - compartment: "vm" - - formula: "C43H81O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3346" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C43H81O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88557" - metanetx.chemical: "MNXM75665" - sbo: "SBO:0000247" - - !!omap - - id: "s_3347" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" - - compartment: "vm" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3348" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" - - compartment: "vm" - - formula: "C43H79O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3347" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3348" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C43H79O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88626" - sbo: "SBO:0000247" - - !!omap - - id: "s_3349" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" - - compartment: "vm" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3350" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" - - compartment: "vm" - - formula: "C43H81O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3349" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3350" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C43H81O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:73215" - kegg.compound: "C13888" - metanetx.chemical: "MNXM75499" - sbo: "SBO:0000247" - - !!omap - - id: "s_3351" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" - - compartment: "vm" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3352" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" - - compartment: "vm" - - formula: "C43H79O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3351" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3352" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C43H79O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88562" - sbo: "SBO:0000247" - - !!omap - - id: "s_3353" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" - - compartment: "vm" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3354" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" - - compartment: "vm" - - formula: "C45H85O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3353" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3354" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C45H85O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77346" - metanetx.chemical: "MNXM75671" - sbo: "SBO:0000247" - - !!omap - - id: "s_3355" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" - - compartment: "vm" - - formula: "C45H86O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3355" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C45H86O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77277" - sbo: "SBO:0000247" - - !!omap - - id: "s_3356" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" - - compartment: "vm" - - formula: "C45H83O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3356" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C45H83O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88612" - sbo: "SBO:0000247" - - !!omap - - id: "s_3357" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" - - compartment: "vm" - - formula: "C45H84O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3358" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" - - compartment: "gm" - - formula: "C41H77O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3357" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C45H84O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3358" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C41H77O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88396" - metanetx.chemical: "MNXM75492" - sbo: "SBO:0000247" - - !!omap - - id: "s_3359" - - name: "ATP" - - compartment: "gm" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3359" + - name: "ATP" + - compartment: "gm" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "atp" - chebi: "CHEBI:30616" - kegg.compound: "C00002" - metanetx.chemical: "MNXM3" - sbo: "SBO:0000247" - - !!omap - - id: "s_3360" - - name: "ADP" - - compartment: "gm" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3360" + - name: "ADP" + - compartment: "gm" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "adp" - chebi: "CHEBI:456216" - kegg.compound: "C00008" - metanetx.chemical: "MNXM7" - sbo: "SBO:0000247" - - !!omap - - id: "s_3361" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" - - compartment: "gm" - - formula: "C41H78O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3362" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" - - compartment: "gm" - - formula: "C41H75O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3361" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C41H78O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3362" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C41H75O13P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3363" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" - - compartment: "gm" - - formula: "C41H76O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3363" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C41H76O16P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail4p161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3364" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" - - compartment: "gm" - - formula: "C43H81O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3364" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C43H81O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88557" - metanetx.chemical: "MNXM75665" - sbo: "SBO:0000247" - - !!omap - - id: "s_3365" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" - - compartment: "gm" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3366" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" - - compartment: "gm" - - formula: "C43H79O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3365" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3366" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C43H79O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88626" - sbo: "SBO:0000247" - - !!omap - - id: "s_3367" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" - - compartment: "gm" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3368" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" - - compartment: "gm" - - formula: "C43H81O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3367" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3368" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C43H81O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:73215" - kegg.compound: "C13888" - metanetx.chemical: "MNXM75499" - sbo: "SBO:0000247" - - !!omap - - id: "s_3369" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" - - compartment: "gm" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3370" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" - - compartment: "gm" - - formula: "C43H79O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3369" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3370" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C43H79O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88562" - sbo: "SBO:0000247" - - !!omap - - id: "s_3371" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" - - compartment: "gm" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3372" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" - - compartment: "gm" - - formula: "C45H85O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3371" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3372" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C45H85O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77346" - metanetx.chemical: "MNXM75671" - sbo: "SBO:0000247" - - !!omap - - id: "s_3373" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" - - compartment: "gm" - - formula: "C45H86O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3373" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C45H86O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77277" - sbo: "SBO:0000247" - - !!omap - - id: "s_3374" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" - - compartment: "gm" - - formula: "C45H83O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3374" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C45H83O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88612" - sbo: "SBO:0000247" - - !!omap - - id: "s_3375" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" - - compartment: "gm" - - formula: "C45H84O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3376" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" - - compartment: "n" - - formula: "C41H77O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3375" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C45H84O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3376" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" + - compartment: "n" + - formula: "C41H77O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88396" - metanetx.chemical: "MNXM75492" - sbo: "SBO:0000247" - - !!omap - - id: "s_3377" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" - - compartment: "n" - - formula: "C41H78O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3378" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" - - compartment: "n" - - formula: "C41H75O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3377" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" + - compartment: "n" + - formula: "C41H78O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3378" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" + - compartment: "n" + - formula: "C41H75O13P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3379" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" - - compartment: "n" - - formula: "C41H76O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3379" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" + - compartment: "n" + - formula: "C41H76O16P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail4p161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3380" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" - - compartment: "n" - - formula: "C43H81O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3380" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" + - compartment: "n" + - formula: "C43H81O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88557" - metanetx.chemical: "MNXM75665" - sbo: "SBO:0000247" - - !!omap - - id: "s_3381" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" - - compartment: "n" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3382" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" - - compartment: "n" - - formula: "C43H79O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3381" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" + - compartment: "n" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3382" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" + - compartment: "n" + - formula: "C43H79O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88626" - sbo: "SBO:0000247" - - !!omap - - id: "s_3383" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" - - compartment: "n" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3384" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" - - compartment: "n" - - formula: "C43H81O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3383" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" + - compartment: "n" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3384" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" + - compartment: "n" + - formula: "C43H81O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:73215" - kegg.compound: "C13888" - metanetx.chemical: "MNXM75499" - sbo: "SBO:0000247" - - !!omap - - id: "s_3385" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" - - compartment: "n" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3386" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" - - compartment: "n" - - formula: "C43H79O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3385" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" + - compartment: "n" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3386" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" + - compartment: "n" + - formula: "C43H79O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88562" - sbo: "SBO:0000247" - - !!omap - - id: "s_3387" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" - - compartment: "n" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3388" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" - - compartment: "n" - - formula: "C45H85O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3387" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" + - compartment: "n" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3388" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" + - compartment: "n" + - formula: "C45H85O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77346" - metanetx.chemical: "MNXM75671" - sbo: "SBO:0000247" - - !!omap - - id: "s_3389" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" - - compartment: "n" - - formula: "C45H86O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3389" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" + - compartment: "n" + - formula: "C45H86O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77277" - sbo: "SBO:0000247" - - !!omap - - id: "s_3390" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" - - compartment: "n" - - formula: "C45H83O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3390" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" + - compartment: "n" + - formula: "C45H83O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88612" - sbo: "SBO:0000247" - - !!omap - - id: "s_3391" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" - - compartment: "n" - - formula: "C45H84O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3392" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" - - compartment: "vm" - - formula: "C41H78O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3393" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" - - compartment: "vm" - - formula: "C41H76O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3391" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" + - compartment: "n" + - formula: "C45H84O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3392" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C41H78O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3393" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C41H76O16P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail3p161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3394" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" - - compartment: "vm" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3395" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" - - compartment: "vm" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3396" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" - - compartment: "vm" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3397" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" - - compartment: "vm" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3398" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" - - compartment: "vm" - - formula: "C45H86O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3394" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3395" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3396" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3397" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3398" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C45H86O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77347" - sbo: "SBO:0000247" - - !!omap - - id: "s_3399" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" - - compartment: "vm" - - formula: "C45H84O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3399" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C45H84O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77344" - sbo: "SBO:0000247" - - !!omap - - id: "s_3400" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" - - compartment: "n" - - formula: "C41H79O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3401" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" - - compartment: "n" - - formula: "C41H77O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3402" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" - - compartment: "n" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3403" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" - - compartment: "n" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3404" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" - - compartment: "n" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3405" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" - - compartment: "n" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3406" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" - - compartment: "n" - - formula: "C45H87O19P3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3400" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "n" + - formula: "C41H79O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3401" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "n" + - formula: "C41H77O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3402" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "n" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3403" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "n" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3404" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "n" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3405" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "n" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3406" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "n" + - formula: "C45H87O19P3" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77279" - sbo: "SBO:0000247" - - !!omap - - id: "s_3407" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" - - compartment: "n" - - formula: "C45H85O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3408" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" - - compartment: "ce" - - formula: "C41H79O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3409" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" - - compartment: "ce" - - formula: "C41H77O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3410" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" - - compartment: "ce" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3411" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" - - compartment: "ce" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3412" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" - - compartment: "ce" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3413" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" - - compartment: "ce" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3414" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" - - compartment: "ce" - - formula: "C45H87O19P3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3407" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "n" + - formula: "C45H85O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3408" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C41H79O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3409" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C41H77O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3410" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3411" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3412" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3413" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3414" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C45H87O19P3" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77279" - sbo: "SBO:0000247" - - !!omap - - id: "s_3415" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" - - compartment: "ce" - - formula: "C45H85O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3416" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1)" - - compartment: "vm" - - formula: "C41H79O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3417" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1)" - - compartment: "vm" - - formula: "C41H77O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3418" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1)" - - compartment: "vm" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3419" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1)" - - compartment: "vm" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3420" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1)" - - compartment: "vm" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3421" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1)" - - compartment: "vm" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3422" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1)" - - compartment: "vm" - - formula: "C45H87O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3423" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1)" - - compartment: "vm" - - formula: "C45H85O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3424" - - name: "1-acylglycerophosphoethanolamine (16:0)" - - compartment: "erm" - - formula: "C21H44NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3415" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C45H85O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3416" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C41H79O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3417" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C41H77O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3418" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3419" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3420" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3421" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3422" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C45H87O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3423" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C45H85O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3424" + - name: "1-acylglycerophosphoethanolamine (16:0)" + - compartment: "erm" + - formula: "C21H44NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpe160" - chebi: "CHEBI:90452" - sbo: "SBO:0000247" - - !!omap - - id: "s_3425" - - name: "1-acylglycerophosphoethanolamine (16:1)" - - compartment: "erm" - - formula: "C21H42NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3425" + - name: "1-acylglycerophosphoethanolamine (16:1)" + - compartment: "erm" + - formula: "C21H42NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpe161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3426" - - name: "1-acylglycerophosphoethanolamine (18:0)" - - compartment: "erm" - - formula: "C23H48NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3426" + - name: "1-acylglycerophosphoethanolamine (18:0)" + - compartment: "erm" + - formula: "C23H48NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpe180" - chebi: "CHEBI:64576" - sbo: "SBO:0000247" - - !!omap - - id: "s_3427" - - name: "1-acylglycerophosphoethanolamine (18:1)" - - compartment: "erm" - - formula: "C23H46NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3427" + - name: "1-acylglycerophosphoethanolamine (18:1)" + - compartment: "erm" + - formula: "C23H46NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpe181" - chebi: "CHEBI:64575" - sbo: "SBO:0000247" - - !!omap - - id: "s_3428" - - name: "1-acylglycerophosphocholine (16:0)" - - compartment: "erm" - - formula: "C24H50NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3428" + - name: "1-acylglycerophosphocholine (16:0)" + - compartment: "erm" + - formula: "C24H50NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc160" - chebi: "CHEBI:72998" - kegg.compound: "C04102" - metanetx.chemical: "MNXM32510" - sbo: "SBO:0000247" - - !!omap - - id: "s_3429" - - name: "1-acylglycerophosphocholine (16:1)" - - compartment: "erm" - - formula: "C24H48NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3429" + - name: "1-acylglycerophosphocholine (16:1)" + - compartment: "erm" + - formula: "C24H48NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc161" - chebi: "CHEBI:73851" - metanetx.chemical: "MNXM32519" - sbo: "SBO:0000247" - - !!omap - - id: "s_3430" - - name: "1-acylglycerophosphocholine (18:0)" - - compartment: "erm" - - formula: "C26H54NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3430" + - name: "1-acylglycerophosphocholine (18:0)" + - compartment: "erm" + - formula: "C26H54NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc180" - chebi: "CHEBI:73858" - metanetx.chemical: "MNXM32545" - sbo: "SBO:0000247" - - !!omap - - id: "s_3431" - - name: "1-acylglycerophosphocholine (18:1)" - - compartment: "erm" - - formula: "C26H52NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3431" + - name: "1-acylglycerophosphocholine (18:1)" + - compartment: "erm" + - formula: "C26H52NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc181" - chebi: "CHEBI:28610" - kegg.compound: "C03916" - metanetx.chemical: "MNXM13872" - sbo: "SBO:0000247" - - !!omap - - id: "s_3432" - - name: "episterol" - - compartment: "erm" - - formula: "C28H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3432" + - name: "episterol" + - compartment: "erm" + - formula: "C28H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "epist" - chebi: "CHEBI:23929" - kegg.compound: "C15777" - metanetx.chemical: "MNXM52365" - sbo: "SBO:0000247" - - !!omap - - id: "s_3433" - - name: "episteryl oleate" - - compartment: "erm" - - formula: "C46H78O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3433" + - name: "episteryl oleate" + - compartment: "erm" + - formula: "C46H78O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52375" - metanetx.chemical: "MNXM52367" - sbo: "SBO:0000247" - - !!omap - - id: "s_3434" - - name: "episteryl palmitoleate" - - compartment: "erm" - - formula: "C44H74O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3434" + - name: "episteryl palmitoleate" + - compartment: "erm" + - formula: "C44H74O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52376" - metanetx.chemical: "MNXM52369" - sbo: "SBO:0000247" - - !!omap - - id: "s_3435" - - name: "fecosterol" - - compartment: "erm" - - formula: "C28H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3435" + - name: "fecosterol" + - compartment: "erm" + - formula: "C28H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "fecost" - chebi: "CHEBI:17038" - kegg.compound: "C04525" - metanetx.chemical: "MNXM1741" - sbo: "SBO:0000247" - - !!omap - - id: "s_3436" - - name: "fecosteryl oleate" - - compartment: "erm" - - formula: "C46H78O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3436" + - name: "fecosteryl oleate" + - compartment: "erm" + - formula: "C46H78O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52379" - metanetx.chemical: "MNXM53170" - sbo: "SBO:0000247" - - !!omap - - id: "s_3437" - - name: "fecosteryl palmitoleate" - - compartment: "erm" - - formula: "C44H74O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3437" + - name: "fecosteryl palmitoleate" + - compartment: "erm" + - formula: "C44H74O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52380" - metanetx.chemical: "MNXM53171" - sbo: "SBO:0000247" - - !!omap - - id: "s_3438" - - name: "lanosterol" - - compartment: "erm" - - formula: "C30H50O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3438" + - name: "lanosterol" + - compartment: "erm" + - formula: "C30H50O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "lanost" - chebi: "CHEBI:16521" - kegg.compound: "C01724" - metanetx.chemical: "MNXM482" - sbo: "SBO:0000247" - - !!omap - - id: "s_3439" - - name: "lanosteryl oleate" - - compartment: "erm" - - formula: "C48H82O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3439" + - name: "lanosteryl oleate" + - compartment: "erm" + - formula: "C48H82O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52382" - metanetx.chemical: "MNXM59726" - sbo: "SBO:0000247" - - !!omap - - id: "s_3440" - - name: "lanosteryl palmitoleate" - - compartment: "erm" - - formula: "C46H78O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3440" + - name: "lanosteryl palmitoleate" + - compartment: "erm" + - formula: "C46H78O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52383" - metanetx.chemical: "MNXM59727" - sbo: "SBO:0000247" - - !!omap - - id: "s_3441" - - name: "ergosterol" - - compartment: "erm" - - formula: "C28H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3441" + - name: "ergosterol" + - compartment: "erm" + - formula: "C28H44O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ergst" - chebi: "CHEBI:16933" - kegg.compound: "C01694" - metanetx.chemical: "MNXM922" - sbo: "SBO:0000247" - - !!omap - - id: "s_3442" - - name: "ergosteryl oleate" - - compartment: "erm" - - formula: "C46H76O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3442" + - name: "ergosteryl oleate" + - compartment: "erm" + - formula: "C46H76O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52377" - metanetx.chemical: "MNXM52466" - sbo: "SBO:0000247" - - !!omap - - id: "s_3443" - - name: "ergosteryl palmitoleate" - - compartment: "erm" - - formula: "C44H72O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3443" + - name: "ergosteryl palmitoleate" + - compartment: "erm" + - formula: "C44H72O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52378" - metanetx.chemical: "MNXM52467" - sbo: "SBO:0000247" - - !!omap - - id: "s_3444" - - name: "zymosterol" - - compartment: "erm" - - formula: "C27H44O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3444" + - name: "zymosterol" + - compartment: "erm" + - formula: "C27H44O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "zymst" - chebi: "CHEBI:18252" - kegg.compound: "C05437" - metanetx.chemical: "MNXM574" - sbo: "SBO:0000247" - - !!omap - - id: "s_3445" - - name: "zymosteryl oleate" - - compartment: "erm" - - formula: "C45H76O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3445" + - name: "zymosteryl oleate" + - compartment: "erm" + - formula: "C45H76O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52384" - metanetx.chemical: "MNXM89472" - sbo: "SBO:0000247" - - !!omap - - id: "s_3446" - - name: "zymosteryl palmitoleate" - - compartment: "erm" - - formula: "C43H72O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3446" + - name: "zymosteryl palmitoleate" + - compartment: "erm" + - formula: "C43H72O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52385" - metanetx.chemical: "MNXM89473" - sbo: "SBO:0000247" - - !!omap - - id: "s_3447" - - name: "sn-glycero-3-phosphocholine" - - compartment: "erm" - - formula: "C8H20NO6P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3447" + - name: "sn-glycero-3-phosphocholine" + - compartment: "erm" + - formula: "C8H20NO6P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "g3pc" - chebi: "CHEBI:16870" - kegg.compound: "C00670" - metanetx.chemical: "MNXM367" - sbo: "SBO:0000247" - - !!omap - - id: "s_3448" - - name: "phosphatidylcholine (1-16:0, 2-16:1)" - - compartment: "ce" - - formula: "C40H78NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3448" + - name: "phosphatidylcholine (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C40H78NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134592" - sbo: "SBO:0000247" - - !!omap - - id: "s_3449" - - name: "H2O" - - compartment: "ce" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3449" + - name: "H2O" + - compartment: "ce" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_3450" - - name: "1-acylglycerophosphocholine (16:0)" - - compartment: "ce" - - formula: "C24H50NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3450" + - name: "1-acylglycerophosphocholine (16:0)" + - compartment: "ce" + - formula: "C24H50NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc160" - chebi: "CHEBI:72998" - kegg.compound: "C04102" - metanetx.chemical: "MNXM32510" - sbo: "SBO:0000247" - - !!omap - - id: "s_3451" - - name: "palmitoleate" - - compartment: "ce" - - formula: "C16H29O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3451" + - name: "palmitoleate" + - compartment: "ce" + - formula: "C16H29O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdcea" - chebi: "CHEBI:32372" - kegg.compound: "C08362" - metanetx.chemical: "MNXM162245" - sbo: "SBO:0000247" - - !!omap - - id: "s_3452" - - name: "phosphatidylcholine (1-16:1, 2-16:1)" - - compartment: "ce" - - formula: "C40H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3452" + - name: "phosphatidylcholine (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C40H76NO8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pc161" - chebi: "CHEBI:83717" - metanetx.chemical: "MNXM69377" - sbo: "SBO:0000247" - - !!omap - - id: "s_3453" - - name: "1-acylglycerophosphocholine (16:1)" - - compartment: "ce" - - formula: "C24H48NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3453" + - name: "1-acylglycerophosphocholine (16:1)" + - compartment: "ce" + - formula: "C24H48NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc161" - chebi: "CHEBI:73851" - metanetx.chemical: "MNXM32519" - sbo: "SBO:0000247" - - !!omap - - id: "s_3454" - - name: "phosphatidylcholine (1-18:0, 2-16:1)" - - compartment: "ce" - - formula: "C42H82NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3454" + - name: "phosphatidylcholine (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C42H82NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:86097" - metanetx.chemical: "MNXM69528" - sbo: "SBO:0000247" - - !!omap - - id: "s_3455" - - name: "1-acylglycerophosphocholine (18:0)" - - compartment: "ce" - - formula: "C26H54NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3455" + - name: "1-acylglycerophosphocholine (18:0)" + - compartment: "ce" + - formula: "C26H54NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc180" - chebi: "CHEBI:73858" - metanetx.chemical: "MNXM32545" - sbo: "SBO:0000247" - - !!omap - - id: "s_3456" - - name: "phosphatidylcholine (1-18:1, 2-16:1)" - - compartment: "ce" - - formula: "C42H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3456" + - name: "phosphatidylcholine (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C42H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:86100" - metanetx.chemical: "MNXM69658" - sbo: "SBO:0000247" - - !!omap - - id: "s_3457" - - name: "1-acylglycerophosphocholine (18:1)" - - compartment: "ce" - - formula: "C26H52NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3457" + - name: "1-acylglycerophosphocholine (18:1)" + - compartment: "ce" + - formula: "C26H52NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc181" - chebi: "CHEBI:28610" - kegg.compound: "C03916" - metanetx.chemical: "MNXM13872" - sbo: "SBO:0000247" - - !!omap - - id: "s_3458" - - name: "phosphatidylcholine (1-16:0, 2-18:1)" - - compartment: "ce" - - formula: "C42H82NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3458" + - name: "phosphatidylcholine (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C42H82NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134594" - sbo: "SBO:0000247" - - !!omap - - id: "s_3459" - - name: "oleate" - - compartment: "ce" - - formula: "C18H33O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3459" + - name: "oleate" + - compartment: "ce" + - formula: "C18H33O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdcea" - chebi: "CHEBI:30823" - kegg.compound: "C00712" - metanetx.chemical: "MNXM306" - sbo: "SBO:0000247" - - !!omap - - id: "s_3460" - - name: "phosphatidylcholine (1-16:1, 2-18:1)" - - compartment: "ce" - - formula: "C42H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3460" + - name: "phosphatidylcholine (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C42H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:84811" - metanetx.chemical: "MNXM69383" - sbo: "SBO:0000247" - - !!omap - - id: "s_3461" - - name: "phosphatidylcholine (1-18:0, 2-18:1)" - - compartment: "ce" - - formula: "C44H86NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3461" + - name: "phosphatidylcholine (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C44H86NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75034" - metanetx.chemical: "MNXM32526" - sbo: "SBO:0000247" - - !!omap - - id: "s_3462" - - name: "phosphatidylcholine (1-18:1, 2-18:1)" - - compartment: "ce" - - formula: "C44H84NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3462" + - name: "phosphatidylcholine (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C44H84NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:74669" - metanetx.chemical: "MNXM8549" - sbo: "SBO:0000247" - - !!omap - - id: "s_3463" - - name: "palmitate" - - compartment: "ce" - - formula: "C16H31O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3463" + - name: "palmitate" + - compartment: "ce" + - formula: "C16H31O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hdca" - chebi: "CHEBI:7896" - kegg.compound: "C00249" - metanetx.chemical: "MNXM108" - sbo: "SBO:0000247" - - !!omap - - id: "s_3464" - - name: "stearate" - - compartment: "ce" - - formula: "C18H35O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3464" + - name: "stearate" + - compartment: "ce" + - formula: "C18H35O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdca" - chebi: "CHEBI:25629" - kegg.compound: "C01530" - metanetx.chemical: "MNXM236" - sbo: "SBO:0000247" - - !!omap - - id: "s_3465" - - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" - - compartment: "ce" - - formula: "C37H72NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3465" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C37H72NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136147" - sbo: "SBO:0000247" - - !!omap - - id: "s_3466" - - name: "1-acylglycerophosphoethanolamine (16:0)" - - compartment: "ce" - - formula: "C21H44NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3466" + - name: "1-acylglycerophosphoethanolamine (16:0)" + - compartment: "ce" + - formula: "C21H44NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpe160" - chebi: "CHEBI:90452" - sbo: "SBO:0000247" - - !!omap - - id: "s_3467" - - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" - - compartment: "ce" - - formula: "C37H70NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3467" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C37H70NO8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pe161" - chebi: "CHEBI:138792" - sbo: "SBO:0000247" - - !!omap - - id: "s_3468" - - name: "1-acylglycerophosphoethanolamine (16:1)" - - compartment: "ce" - - formula: "C21H42NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3468" + - name: "1-acylglycerophosphoethanolamine (16:1)" + - compartment: "ce" + - formula: "C21H42NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpe161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3469" - - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" - - compartment: "ce" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3469" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136155" - sbo: "SBO:0000247" - - !!omap - - id: "s_3470" - - name: "1-acylglycerophosphoethanolamine (18:0)" - - compartment: "ce" - - formula: "C23H48NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3470" + - name: "1-acylglycerophosphoethanolamine (18:0)" + - compartment: "ce" + - formula: "C23H48NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpe180" - chebi: "CHEBI:64576" - sbo: "SBO:0000247" - - !!omap - - id: "s_3471" - - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" - - compartment: "ce" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3471" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:82837" - metanetx.chemical: "MNXM71684" - sbo: "SBO:0000247" - - !!omap - - id: "s_3472" - - name: "1-acylglycerophosphoethanolamine (18:1)" - - compartment: "ce" - - formula: "C23H46NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3472" + - name: "1-acylglycerophosphoethanolamine (18:1)" + - compartment: "ce" + - formula: "C23H46NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpe181" - chebi: "CHEBI:64575" - sbo: "SBO:0000247" - - !!omap - - id: "s_3473" - - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" - - compartment: "ce" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3473" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136148" - sbo: "SBO:0000247" - - !!omap - - id: "s_3474" - - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" - - compartment: "ce" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3474" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90464" - sbo: "SBO:0000247" - - !!omap - - id: "s_3475" - - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" - - compartment: "ce" - - formula: "C41H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3475" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C41H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136162" - sbo: "SBO:0000247" - - !!omap - - id: "s_3476" - - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" - - compartment: "ce" - - formula: "C41H78NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3476" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C41H78NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136170" - sbo: "SBO:0000247" - - !!omap - - id: "s_3477" - - name: "sn-glycero-3-phosphoethanolamine" - - compartment: "ce" - - formula: "C5H14NO6P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3477" + - name: "sn-glycero-3-phosphoethanolamine" + - compartment: "ce" + - formula: "C5H14NO6P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "g3pe" - chebi: "CHEBI:16929" - kegg.compound: "C01233" - metanetx.chemical: "MNXM368" - sbo: "SBO:0000247" - - !!omap - - id: "s_3478" - - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" - - compartment: "ce" - - formula: "C38H72NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3478" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C38H72NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89824" - metanetx.chemical: "MNXM78605" - sbo: "SBO:0000247" - - !!omap - - id: "s_3479" - - name: "1-acylglycerophosphoserine (16:0)" - - compartment: "ce" - - formula: "C22H44NO9P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3479" + - name: "1-acylglycerophosphoserine (16:0)" + - compartment: "ce" + - formula: "C22H44NO9P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM78597" - sbo: "SBO:0000247" - - !!omap - - id: "s_3480" - - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" - - compartment: "ce" - - formula: "C38H70NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3480" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C38H70NO10P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM78637" - sbo: "SBO:0000247" - - !!omap - - id: "s_3481" - - name: "1-acylglycerophosphoserine (16:1)" - - compartment: "ce" - - formula: "C22H42NO9P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3481" + - name: "1-acylglycerophosphoserine (16:1)" + - compartment: "ce" + - formula: "C22H42NO9P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM78629" - sbo: "SBO:0000247" - - !!omap - - id: "s_3482" - - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" - - compartment: "ce" - - formula: "C40H76NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3482" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C40H76NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90036" - metanetx.chemical: "MNXM78765" - sbo: "SBO:0000247" - - !!omap - - id: "s_3483" - - name: "1-acylglycerophosphoserine (18:0)" - - compartment: "ce" - - formula: "C24H48NO9P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3483" + - name: "1-acylglycerophosphoserine (18:0)" + - compartment: "ce" + - formula: "C24H48NO9P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:85403" - metanetx.chemical: "MNXM78757" - sbo: "SBO:0000247" - - !!omap - - id: "s_3484" - - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" - - compartment: "ce" - - formula: "C40H74NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3484" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C40H74NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75101" - metanetx.chemical: "MNXM78797" - sbo: "SBO:0000247" - - !!omap - - id: "s_3485" - - name: "1-acylglycerophosphoserine (18:1)" - - compartment: "ce" - - formula: "C24H46NO9P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3485" + - name: "1-acylglycerophosphoserine (18:1)" + - compartment: "ce" + - formula: "C24H46NO9P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52649" - metanetx.chemical: "MNXM32944" - sbo: "SBO:0000247" - - !!omap - - id: "s_3486" - - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" - - compartment: "ce" - - formula: "C40H76NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3486" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C40H76NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:34086" - kegg.compound: "C13880" - metanetx.chemical: "MNXM32501" - sbo: "SBO:0000247" - - !!omap - - id: "s_3487" - - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" - - compartment: "ce" - - formula: "C40H74NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3487" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C40H74NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90032" - metanetx.chemical: "MNXM78642" - sbo: "SBO:0000247" - - !!omap - - id: "s_3488" - - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" - - compartment: "ce" - - formula: "C42H80NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3488" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C42H80NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:79096" - metanetx.chemical: "MNXM32529" - sbo: "SBO:0000247" - - !!omap - - id: "s_3489" - - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" - - compartment: "ce" - - formula: "C42H78NO10P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3489" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C42H78NO10P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:60568" - metanetx.chemical: "MNXM32173" - sbo: "SBO:0000247" - - !!omap - - id: "s_3490" - - name: "sn-glycero-3-phosphoserine" - - compartment: "ce" - - formula: "C6H14NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3490" + - name: "sn-glycero-3-phosphoserine" + - compartment: "ce" + - formula: "C6H14NO8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "g3ps" - chebi: "CHEBI:64945" - sbo: "SBO:0000247" - - !!omap - - id: "s_3491" - - name: "1-acylglycerophosphoinositol (16:0)" - - compartment: "ce" - - formula: "C25H49O12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3491" + - name: "1-acylglycerophosphoinositol (16:0)" + - compartment: "ce" + - formula: "C25H49O12P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pailpalm_hs" - chebi: "CHEBI:73218" - sbo: "SBO:0000247" - - !!omap - - id: "s_3492" - - name: "1-acylglycerophosphoinositol (16:1)" - - compartment: "ce" - - formula: "C25H47O12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3492" + - name: "1-acylglycerophosphoinositol (16:1)" + - compartment: "ce" + - formula: "C25H47O12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:138108" - sbo: "SBO:0000247" - - !!omap - - id: "s_3493" - - name: "1-acylglycerophosphoinositol (18:0)" - - compartment: "ce" - - formula: "C27H53O12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3493" + - name: "1-acylglycerophosphoinositol (18:0)" + - compartment: "ce" + - formula: "C27H53O12P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pailste_hs" - chebi: "CHEBI:83054" - sbo: "SBO:0000247" - - !!omap - - id: "s_3494" - - name: "1-acylglycerophosphoinositol (18:1)" - - compartment: "ce" - - formula: "C27H51O12P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3494" + - name: "1-acylglycerophosphoinositol (18:1)" + - compartment: "ce" + - formula: "C27H51O12P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:82753" - sbo: "SBO:0000247" - - !!omap - - id: "s_3495" - - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol" - - compartment: "ce" - - formula: "C9H18O11P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3495" + - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol" + - compartment: "ce" + - formula: "C9H18O11P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "g3pi" - chebi: "CHEBI:58444" - kegg.compound: "C01225" - metanetx.chemical: "MNXM1517" - sbo: "SBO:0000247" - - !!omap - - id: "s_3496" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" - - compartment: "c" - - formula: "C41H79O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3497" - - name: "diglyceride (1-16:0, 2-16:1)" - - compartment: "c" - - formula: "C35H66O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3496" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "c" + - formula: "C41H79O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3497" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "c" + - formula: "C35H66O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:84394" - metanetx.chemical: "MNXM49375" - sbo: "SBO:0000247" - - !!omap - - id: "s_3498" - - name: "1D-myo-inositol 1,4,5-trisphosphate" - - compartment: "c" - - formula: "C6H9O15P3" - - charge: -6 - - annotation: !!omap + - !!omap + - id: "s_3498" + - name: "1D-myo-inositol 1,4,5-trisphosphate" + - compartment: "c" + - formula: "C6H9O15P3" + - charge: -6 + - annotation: !!omap - bigg.metabolite: "mi145p" - chebi: "CHEBI:203600" - kegg.compound: "C01245" - metanetx.chemical: "MNXM200" - sbo: "SBO:0000247" - - !!omap - - id: "s_3499" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" - - compartment: "c" - - formula: "C41H77O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3500" - - name: "diglyceride (1-16:1, 2-16:1)" - - compartment: "c" - - formula: "C35H64O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3499" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "c" + - formula: "C41H77O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3500" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "c" + - formula: "C35H64O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr161" - chebi: "CHEBI:84417" - metanetx.chemical: "MNXM176611" - sbo: "SBO:0000247" - - !!omap - - id: "s_3501" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" - - compartment: "c" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3502" - - name: "diglyceride (1-18:0, 2-16:1)" - - compartment: "c" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3501" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "c" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3502" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "c" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88527" - metanetx.chemical: "MNXM49511" - sbo: "SBO:0000247" - - !!omap - - id: "s_3503" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" - - compartment: "c" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3504" - - name: "diglyceride (1-18:1, 2-16:1)" - - compartment: "c" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3503" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "c" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3504" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "c" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89229" - metanetx.chemical: "MNXM49575" - sbo: "SBO:0000247" - - !!omap - - id: "s_3505" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" - - compartment: "c" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3506" - - name: "diglyceride (1-16:0, 2-18:1)" - - compartment: "c" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3505" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "c" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3506" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "c" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88454" - metanetx.chemical: "MNXM49380" - sbo: "SBO:0000247" - - !!omap - - id: "s_3507" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" - - compartment: "c" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3508" - - name: "diglyceride (1-16:1, 2-18:1)" - - compartment: "c" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3507" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "c" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3508" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "c" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88500" - metanetx.chemical: "MNXM49417" - sbo: "SBO:0000247" - - !!omap - - id: "s_3509" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" - - compartment: "c" - - formula: "C45H87O19P3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3509" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "c" + - formula: "C45H87O19P3" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77279" - sbo: "SBO:0000247" - - !!omap - - id: "s_3510" - - name: "diglyceride (1-18:0, 2-18:1)" - - compartment: "c" - - formula: "C39H74O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3510" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "c" + - formula: "C39H74O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75468" - metanetx.chemical: "MNXM49514" - sbo: "SBO:0000247" - - !!omap - - id: "s_3511" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" - - compartment: "c" - - formula: "C45H85O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3512" - - name: "diglyceride (1-18:1, 2-18:1)" - - compartment: "c" - - formula: "C39H72O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3511" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "c" + - formula: "C45H85O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3512" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "c" + - formula: "C39H72O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr181" - chebi: "CHEBI:52333" - metanetx.chemical: "MNXM9533" - sbo: "SBO:0000247" - - !!omap - - id: "s_3513" - - name: "diglyceride (1-16:0, 2-16:1)" - - compartment: "n" - - formula: "C35H66O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3513" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "n" + - formula: "C35H66O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:84394" - metanetx.chemical: "MNXM49375" - sbo: "SBO:0000247" - - !!omap - - id: "s_3514" - - name: "diglyceride (1-16:1, 2-16:1)" - - compartment: "n" - - formula: "C35H64O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3514" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "n" + - formula: "C35H64O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr161" - chebi: "CHEBI:84417" - metanetx.chemical: "MNXM176611" - sbo: "SBO:0000247" - - !!omap - - id: "s_3515" - - name: "diglyceride (1-18:0, 2-16:1)" - - compartment: "n" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3515" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "n" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88527" - metanetx.chemical: "MNXM49511" - sbo: "SBO:0000247" - - !!omap - - id: "s_3516" - - name: "diglyceride (1-18:1, 2-16:1)" - - compartment: "n" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3516" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "n" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89229" - metanetx.chemical: "MNXM49575" - sbo: "SBO:0000247" - - !!omap - - id: "s_3517" - - name: "diglyceride (1-16:0, 2-18:1)" - - compartment: "n" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3517" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "n" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88454" - metanetx.chemical: "MNXM49380" - sbo: "SBO:0000247" - - !!omap - - id: "s_3518" - - name: "diglyceride (1-16:1, 2-18:1)" - - compartment: "n" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3518" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "n" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88500" - metanetx.chemical: "MNXM49417" - sbo: "SBO:0000247" - - !!omap - - id: "s_3519" - - name: "diglyceride (1-18:0, 2-18:1)" - - compartment: "n" - - formula: "C39H74O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3519" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "n" + - formula: "C39H74O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75468" - metanetx.chemical: "MNXM49514" - sbo: "SBO:0000247" - - !!omap - - id: "s_3520" - - name: "diglyceride (1-18:1, 2-18:1)" - - compartment: "n" - - formula: "C39H72O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3520" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "n" + - formula: "C39H72O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr181" - chebi: "CHEBI:52333" - metanetx.chemical: "MNXM9533" - sbo: "SBO:0000247" - - !!omap - - id: "s_3521" - - name: "diglyceride (1-16:0, 2-16:1)" - - compartment: "mm" - - formula: "C35H66O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3521" + - name: "diglyceride (1-16:0, 2-16:1)" + - compartment: "mm" + - formula: "C35H66O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:84394" - metanetx.chemical: "MNXM49375" - sbo: "SBO:0000247" - - !!omap - - id: "s_3522" - - name: "diglyceride (1-16:1, 2-16:1)" - - compartment: "mm" - - formula: "C35H64O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3522" + - name: "diglyceride (1-16:1, 2-16:1)" + - compartment: "mm" + - formula: "C35H64O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr161" - chebi: "CHEBI:84417" - metanetx.chemical: "MNXM176611" - sbo: "SBO:0000247" - - !!omap - - id: "s_3523" - - name: "diglyceride (1-18:0, 2-16:1)" - - compartment: "mm" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3523" + - name: "diglyceride (1-18:0, 2-16:1)" + - compartment: "mm" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88527" - metanetx.chemical: "MNXM49511" - sbo: "SBO:0000247" - - !!omap - - id: "s_3524" - - name: "diglyceride (1-18:1, 2-16:1)" - - compartment: "mm" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3524" + - name: "diglyceride (1-18:1, 2-16:1)" + - compartment: "mm" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:89229" - metanetx.chemical: "MNXM49575" - sbo: "SBO:0000247" - - !!omap - - id: "s_3525" - - name: "diglyceride (1-16:0, 2-18:1)" - - compartment: "mm" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3525" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "mm" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88454" - metanetx.chemical: "MNXM49380" - sbo: "SBO:0000247" - - !!omap - - id: "s_3526" - - name: "diglyceride (1-16:1, 2-18:1)" - - compartment: "mm" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3526" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "mm" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88500" - metanetx.chemical: "MNXM49417" - sbo: "SBO:0000247" - - !!omap - - id: "s_3527" - - name: "phosphatidate (1-16:0, 2-16:1)" - - compartment: "ce" - - formula: "C35H67O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3527" + - name: "phosphatidate (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C35H67O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:73998" - metanetx.chemical: "MNXM66470" - sbo: "SBO:0000247" - - !!omap - - id: "s_3528" - - name: "phosphatidate (1-16:1, 2-16:1)" - - compartment: "ce" - - formula: "C35H65O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3528" + - name: "phosphatidate (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C35H65O8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pa161" - chebi: "CHEBI:75071" - metanetx.chemical: "MNXM66504" - sbo: "SBO:0000247" - - !!omap - - id: "s_3529" - - name: "phosphatidate (1-18:0, 2-16:1)" - - compartment: "ce" - - formula: "C37H71O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3529" + - name: "phosphatidate (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C37H71O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75073" - metanetx.chemical: "MNXM66631" - sbo: "SBO:0000247" - - !!omap - - id: "s_3530" - - name: "phosphatidate (1-18:1, 2-16:1)" - - compartment: "ce" - - formula: "C37H69O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3530" + - name: "phosphatidate (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C37H69O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75074" - metanetx.chemical: "MNXM66663" - sbo: "SBO:0000247" - - !!omap - - id: "s_3531" - - name: "phosphatidate (1-16:0, 2-18:1)" - - compartment: "ce" - - formula: "C37H71O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3531" + - name: "phosphatidate (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C37H71O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:64844" - kegg.compound: "C13889" - metanetx.chemical: "MNXM66476" - sbo: "SBO:0000247" - - !!omap - - id: "s_3532" - - name: "phosphatidate (1-16:1, 2-18:1)" - - compartment: "ce" - - formula: "C37H69O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3532" + - name: "phosphatidate (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C37H69O8P" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM66509" - sbo: "SBO:0000247" - - !!omap - - id: "s_3533" - - name: "phosphatidate (1-18:0, 2-18:1)" - - compartment: "ce" - - formula: "C39H75O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3533" + - name: "phosphatidate (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C39H75O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:74847" - metanetx.chemical: "MNXM66635" - sbo: "SBO:0000247" - - !!omap - - id: "s_3534" - - name: "phosphatidate (1-18:1, 2-18:1)" - - compartment: "ce" - - formula: "C39H73O8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3534" + - name: "phosphatidate (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C39H73O8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:83775" - metanetx.chemical: "MNXM51075" - sbo: "SBO:0000247" - - !!omap - - id: "s_3535" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" - - compartment: "ce" - - formula: "C41H78O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3536" - - name: "phosphate" - - compartment: "ce" - - formula: "HO4P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3535" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C41H78O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3536" + - name: "phosphate" + - compartment: "ce" + - formula: "HO4P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pi" - chebi: "CHEBI:43474" - kegg.compound: "C00009" - metanetx.chemical: "MNXM9" - sbo: "SBO:0000247" - - !!omap - - id: "s_3537" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" - - compartment: "ce" - - formula: "C41H76O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3537" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C41H76O16P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail3p161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3538" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" - - compartment: "ce" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3539" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" - - compartment: "ce" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3540" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" - - compartment: "ce" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3541" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" - - compartment: "ce" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3542" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" - - compartment: "ce" - - formula: "C45H86O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3538" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3539" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3540" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3541" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3542" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C45H86O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77347" - sbo: "SBO:0000247" - - !!omap - - id: "s_3543" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" - - compartment: "ce" - - formula: "C45H84O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3543" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C45H84O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77344" - sbo: "SBO:0000247" - - !!omap - - id: "s_3544" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" - - compartment: "c" - - formula: "C41H78O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3545" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" - - compartment: "c" - - formula: "C41H77O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3544" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" + - compartment: "c" + - formula: "C41H78O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3545" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" + - compartment: "c" + - formula: "C41H77O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88396" - metanetx.chemical: "MNXM75492" - sbo: "SBO:0000247" - - !!omap - - id: "s_3546" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" - - compartment: "c" - - formula: "C41H76O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3546" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" + - compartment: "c" + - formula: "C41H76O16P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail3p161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3547" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" - - compartment: "c" - - formula: "C41H75O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3547" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" + - compartment: "c" + - formula: "C41H75O13P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3548" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" - - compartment: "c" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3549" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" - - compartment: "c" - - formula: "C43H81O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3548" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" + - compartment: "c" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3549" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" + - compartment: "c" + - formula: "C43H81O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88557" - metanetx.chemical: "MNXM75665" - sbo: "SBO:0000247" - - !!omap - - id: "s_3550" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" - - compartment: "c" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3551" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" - - compartment: "c" - - formula: "C43H79O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3550" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" + - compartment: "c" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3551" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" + - compartment: "c" + - formula: "C43H79O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88626" - sbo: "SBO:0000247" - - !!omap - - id: "s_3552" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" - - compartment: "c" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3553" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" - - compartment: "c" - - formula: "C43H81O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3552" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" + - compartment: "c" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3553" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" + - compartment: "c" + - formula: "C43H81O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:73215" - kegg.compound: "C13888" - metanetx.chemical: "MNXM75499" - sbo: "SBO:0000247" - - !!omap - - id: "s_3554" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" - - compartment: "c" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3555" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" - - compartment: "c" - - formula: "C43H79O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3554" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" + - compartment: "c" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3555" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" + - compartment: "c" + - formula: "C43H79O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88562" - sbo: "SBO:0000247" - - !!omap - - id: "s_3556" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" - - compartment: "c" - - formula: "C45H86O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3556" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" + - compartment: "c" + - formula: "C45H86O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77347" - sbo: "SBO:0000247" - - !!omap - - id: "s_3557" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" - - compartment: "c" - - formula: "C45H85O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3557" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" + - compartment: "c" + - formula: "C45H85O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77346" - metanetx.chemical: "MNXM75671" - sbo: "SBO:0000247" - - !!omap - - id: "s_3558" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" - - compartment: "c" - - formula: "C45H84O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3558" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" + - compartment: "c" + - formula: "C45H84O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77344" - sbo: "SBO:0000247" - - !!omap - - id: "s_3559" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" - - compartment: "c" - - formula: "C45H83O13P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3559" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" + - compartment: "c" + - formula: "C45H83O13P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88612" - sbo: "SBO:0000247" - - !!omap - - id: "s_3560" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" - - compartment: "erm" - - formula: "C41H78O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3561" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" - - compartment: "erm" - - formula: "C41H76O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3560" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C41H78O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3561" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C41H76O16P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail3p161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3562" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" - - compartment: "erm" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3563" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" - - compartment: "erm" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3564" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" - - compartment: "erm" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3565" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" - - compartment: "erm" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3566" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" - - compartment: "erm" - - formula: "C45H86O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3562" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3563" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3564" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3565" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3566" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C45H86O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77347" - sbo: "SBO:0000247" - - !!omap - - id: "s_3567" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" - - compartment: "erm" - - formula: "C45H84O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3567" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C45H84O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77344" - sbo: "SBO:0000247" - - !!omap - - id: "s_3568" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" - - compartment: "gm" - - formula: "C41H78O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3569" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" - - compartment: "gm" - - formula: "C41H76O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3568" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C41H78O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3569" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C41H76O16P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail3p161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3570" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" - - compartment: "gm" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3571" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" - - compartment: "gm" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3572" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" - - compartment: "gm" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3573" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" - - compartment: "gm" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3574" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" - - compartment: "gm" - - formula: "C45H86O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3570" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3571" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3572" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3573" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3574" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C45H86O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77347" - sbo: "SBO:0000247" - - !!omap - - id: "s_3575" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" - - compartment: "gm" - - formula: "C45H84O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3575" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C45H84O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77344" - sbo: "SBO:0000247" - - !!omap - - id: "s_3576" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" - - compartment: "c" - - formula: "C41H78O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3577" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" - - compartment: "c" - - formula: "C41H76O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3576" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" + - compartment: "c" + - formula: "C41H78O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3577" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" + - compartment: "c" + - formula: "C41H76O16P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail4p161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3578" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" - - compartment: "c" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3579" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" - - compartment: "c" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3580" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" - - compartment: "c" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3581" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" - - compartment: "c" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3582" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" - - compartment: "c" - - formula: "C45H86O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3578" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" + - compartment: "c" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3579" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" + - compartment: "c" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3580" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" + - compartment: "c" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3581" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" + - compartment: "c" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3582" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" + - compartment: "c" + - formula: "C45H86O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77277" - sbo: "SBO:0000247" - - !!omap - - id: "s_3583" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" - - compartment: "c" - - formula: "C45H84O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3584" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" - - compartment: "erm" - - formula: "C41H78O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3585" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" - - compartment: "erm" - - formula: "C41H76O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3583" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" + - compartment: "c" + - formula: "C45H84O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3584" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C41H78O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3585" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C41H76O16P2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pail4p161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3586" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" - - compartment: "erm" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3587" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" - - compartment: "erm" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3588" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" - - compartment: "erm" - - formula: "C43H82O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3589" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" - - compartment: "erm" - - formula: "C43H80O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3590" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" - - compartment: "erm" - - formula: "C45H86O16P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3586" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3587" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3588" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C43H82O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3589" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C43H80O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3590" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C45H86O16P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77277" - sbo: "SBO:0000247" - - !!omap - - id: "s_3591" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" - - compartment: "erm" - - formula: "C45H84O16P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3592" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1)" - - compartment: "ce" - - formula: "C41H79O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3593" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1)" - - compartment: "ce" - - formula: "C41H77O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3594" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1)" - - compartment: "ce" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3595" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1)" - - compartment: "ce" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3596" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1)" - - compartment: "ce" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3597" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1)" - - compartment: "ce" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3598" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1)" - - compartment: "ce" - - formula: "C45H87O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3599" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1)" - - compartment: "ce" - - formula: "C45H85O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3600" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1)" - - compartment: "c" - - formula: "C41H79O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3601" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1)" - - compartment: "c" - - formula: "C41H77O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3602" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1)" - - compartment: "c" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3603" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1)" - - compartment: "c" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3604" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1)" - - compartment: "c" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3605" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1)" - - compartment: "c" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3606" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1)" - - compartment: "c" - - formula: "C45H87O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3607" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1)" - - compartment: "c" - - formula: "C45H85O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3608" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" - - compartment: "erm" - - formula: "C41H79O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3609" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" - - compartment: "erm" - - formula: "C41H77O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3610" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" - - compartment: "erm" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3611" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" - - compartment: "erm" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3612" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" - - compartment: "erm" - - formula: "C43H83O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3613" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" - - compartment: "erm" - - formula: "C43H81O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3614" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" - - compartment: "erm" - - formula: "C45H87O19P3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3591" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C45H84O16P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3592" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "ce" + - formula: "C41H79O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3593" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "ce" + - formula: "C41H77O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3594" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "ce" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3595" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "ce" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3596" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "ce" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3597" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "ce" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3598" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "ce" + - formula: "C45H87O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3599" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "ce" + - formula: "C45H85O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3600" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "c" + - formula: "C41H79O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3601" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "c" + - formula: "C41H77O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3602" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "c" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3603" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "c" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3604" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "c" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3605" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "c" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3606" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "c" + - formula: "C45H87O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3607" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "c" + - formula: "C45H85O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3608" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" + - compartment: "erm" + - formula: "C41H79O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3609" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" + - compartment: "erm" + - formula: "C41H77O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3610" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" + - compartment: "erm" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3611" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" + - compartment: "erm" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3612" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" + - compartment: "erm" + - formula: "C43H83O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3613" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" + - compartment: "erm" + - formula: "C43H81O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3614" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" + - compartment: "erm" + - formula: "C45H87O19P3" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:77279" - sbo: "SBO:0000247" - - !!omap - - id: "s_3615" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" - - compartment: "erm" - - formula: "C45H85O19P3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3616" - - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-16:1)" - - compartment: "vm" - - formula: "C35H68O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3617" - - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-16:1)" - - compartment: "vm" - - formula: "C35H66O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3618" - - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-16:1)" - - compartment: "vm" - - formula: "C37H72O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3619" - - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-16:1)" - - compartment: "vm" - - formula: "C37H70O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3620" - - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-18:1)" - - compartment: "vm" - - formula: "C37H72O11P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3615" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" + - compartment: "erm" + - formula: "C45H85O19P3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3616" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-16:1)" + - compartment: "vm" + - formula: "C35H68O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3617" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-16:1)" + - compartment: "vm" + - formula: "C35H66O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3618" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-16:1)" + - compartment: "vm" + - formula: "C37H72O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3619" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-16:1)" + - compartment: "vm" + - formula: "C37H70O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3620" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-18:1)" + - compartment: "vm" + - formula: "C37H72O11P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:34087" - kegg.compound: "C13890" - sbo: "SBO:0000247" - - !!omap - - id: "s_3621" - - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-18:1)" - - compartment: "vm" - - formula: "C37H70O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3622" - - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-18:1)" - - compartment: "vm" - - formula: "C39H76O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3623" - - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-18:1)" - - compartment: "vm" - - formula: "C39H74O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3624" - - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-16:1)" - - compartment: "gm" - - formula: "C35H68O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3625" - - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-16:1)" - - compartment: "gm" - - formula: "C35H66O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3626" - - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-16:1)" - - compartment: "gm" - - formula: "C37H72O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3627" - - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-16:1)" - - compartment: "gm" - - formula: "C37H70O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3628" - - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-18:1)" - - compartment: "gm" - - formula: "C37H72O11P2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3621" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-18:1)" + - compartment: "vm" + - formula: "C37H70O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3622" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-18:1)" + - compartment: "vm" + - formula: "C39H76O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3623" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-18:1)" + - compartment: "vm" + - formula: "C39H74O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3624" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-16:1)" + - compartment: "gm" + - formula: "C35H68O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3625" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-16:1)" + - compartment: "gm" + - formula: "C35H66O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3626" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-16:1)" + - compartment: "gm" + - formula: "C37H72O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3627" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-16:1)" + - compartment: "gm" + - formula: "C37H70O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3628" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-18:1)" + - compartment: "gm" + - formula: "C37H72O11P2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:34087" - kegg.compound: "C13890" - sbo: "SBO:0000247" - - !!omap - - id: "s_3629" - - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-18:1)" - - compartment: "gm" - - formula: "C37H70O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3630" - - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-18:1)" - - compartment: "gm" - - formula: "C39H76O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3631" - - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-18:1)" - - compartment: "gm" - - formula: "C39H74O11P2" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3632" - - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" - - compartment: "c" - - formula: "C19H39O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3629" + - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-18:1)" + - compartment: "gm" + - formula: "C37H70O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3630" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-18:1)" + - compartment: "gm" + - formula: "C39H76O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3631" + - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-18:1)" + - compartment: "gm" + - formula: "C39H74O11P2" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3632" + - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" + - compartment: "c" + - formula: "C19H39O7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1hdecg3p" - chebi: "CHEBI:15799" - kegg.compound: "C04036" - metanetx.chemical: "MNXM2455" - sbo: "SBO:0000247" - - !!omap - - id: "s_3633" - - name: "1-monoglyceride (16:0)" - - compartment: "c" - - formula: "C19H38O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3633" + - name: "1-monoglyceride (16:0)" + - compartment: "c" + - formula: "C19H38O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mag160" - chebi: "CHEBI:134127" - sbo: "SBO:0000247" - - !!omap - - id: "s_3634" - - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" - - compartment: "c" - - formula: "C19H37O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3634" + - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" + - compartment: "c" + - formula: "C19H37O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75070" - metanetx.chemical: "MNXM66496" - sbo: "SBO:0000247" - - !!omap - - id: "s_3635" - - name: "1-monoglyceride (16:1)" - - compartment: "c" - - formula: "C19H36O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3635" + - name: "1-monoglyceride (16:1)" + - compartment: "c" + - formula: "C19H36O4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134128" - sbo: "SBO:0000247" - - !!omap - - id: "s_3636" - - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" - - compartment: "c" - - formula: "C21H43O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3636" + - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" + - compartment: "c" + - formula: "C21H43O7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1odecg3p" - chebi: "CHEBI:74850" - metanetx.chemical: "MNXM32950" - sbo: "SBO:0000247" - - !!omap - - id: "s_3637" - - name: "1-monoglyceride (18:0)" - - compartment: "c" - - formula: "C21H42O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3637" + - name: "1-monoglyceride (18:0)" + - compartment: "c" + - formula: "C21H42O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mag180" - chebi: "CHEBI:134129" - sbo: "SBO:0000247" - - !!omap - - id: "s_3638" - - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" - - compartment: "c" - - formula: "C21H41O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3638" + - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" + - compartment: "c" + - formula: "C21H41O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62837" - metanetx.chemical: "MNXM32960" - sbo: "SBO:0000247" - - !!omap - - id: "s_3639" - - name: "1-monoglyceride (18:1)" - - compartment: "c" - - formula: "C21H40O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3639" + - name: "1-monoglyceride (18:1)" + - compartment: "c" + - formula: "C21H40O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "magole_hs" - chebi: "CHEBI:134130" - sbo: "SBO:0000247" - - !!omap - - id: "s_3640" - - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" - - compartment: "vm" - - formula: "C19H39O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3640" + - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" + - compartment: "vm" + - formula: "C19H39O7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1hdecg3p" - chebi: "CHEBI:15799" - kegg.compound: "C04036" - metanetx.chemical: "MNXM2455" - sbo: "SBO:0000247" - - !!omap - - id: "s_3641" - - name: "1-monoglyceride (16:0)" - - compartment: "vm" - - formula: "C19H38O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3641" + - name: "1-monoglyceride (16:0)" + - compartment: "vm" + - formula: "C19H38O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mag160" - chebi: "CHEBI:134127" - sbo: "SBO:0000247" - - !!omap - - id: "s_3642" - - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" - - compartment: "vm" - - formula: "C19H37O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3642" + - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" + - compartment: "vm" + - formula: "C19H37O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75070" - metanetx.chemical: "MNXM66496" - sbo: "SBO:0000247" - - !!omap - - id: "s_3643" - - name: "1-monoglyceride (16:1)" - - compartment: "vm" - - formula: "C19H36O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3643" + - name: "1-monoglyceride (16:1)" + - compartment: "vm" + - formula: "C19H36O4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134128" - sbo: "SBO:0000247" - - !!omap - - id: "s_3644" - - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" - - compartment: "vm" - - formula: "C21H43O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3644" + - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" + - compartment: "vm" + - formula: "C21H43O7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1odecg3p" - chebi: "CHEBI:74850" - metanetx.chemical: "MNXM32950" - sbo: "SBO:0000247" - - !!omap - - id: "s_3645" - - name: "1-monoglyceride (18:0)" - - compartment: "vm" - - formula: "C21H42O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3645" + - name: "1-monoglyceride (18:0)" + - compartment: "vm" + - formula: "C21H42O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mag180" - chebi: "CHEBI:134129" - sbo: "SBO:0000247" - - !!omap - - id: "s_3646" - - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" - - compartment: "vm" - - formula: "C21H41O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3646" + - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" + - compartment: "vm" + - formula: "C21H41O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62837" - metanetx.chemical: "MNXM32960" - sbo: "SBO:0000247" - - !!omap - - id: "s_3647" - - name: "1-monoglyceride (18:1)" - - compartment: "vm" - - formula: "C21H40O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3647" + - name: "1-monoglyceride (18:1)" + - compartment: "vm" + - formula: "C21H40O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "magole_hs" - chebi: "CHEBI:134130" - sbo: "SBO:0000247" - - !!omap - - id: "s_3648" - - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" - - compartment: "gm" - - formula: "C19H39O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3648" + - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" + - compartment: "gm" + - formula: "C19H39O7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1hdecg3p" - chebi: "CHEBI:15799" - kegg.compound: "C04036" - metanetx.chemical: "MNXM2455" - sbo: "SBO:0000247" - - !!omap - - id: "s_3649" - - name: "1-monoglyceride (16:0)" - - compartment: "gm" - - formula: "C19H38O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3649" + - name: "1-monoglyceride (16:0)" + - compartment: "gm" + - formula: "C19H38O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mag160" - chebi: "CHEBI:134127" - sbo: "SBO:0000247" - - !!omap - - id: "s_3650" - - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" - - compartment: "gm" - - formula: "C19H37O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3650" + - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" + - compartment: "gm" + - formula: "C19H37O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75070" - metanetx.chemical: "MNXM66496" - sbo: "SBO:0000247" - - !!omap - - id: "s_3651" - - name: "1-monoglyceride (16:1)" - - compartment: "gm" - - formula: "C19H36O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3651" + - name: "1-monoglyceride (16:1)" + - compartment: "gm" + - formula: "C19H36O4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134128" - sbo: "SBO:0000247" - - !!omap - - id: "s_3652" - - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" - - compartment: "gm" - - formula: "C21H43O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3652" + - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" + - compartment: "gm" + - formula: "C21H43O7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1odecg3p" - chebi: "CHEBI:74850" - metanetx.chemical: "MNXM32950" - sbo: "SBO:0000247" - - !!omap - - id: "s_3653" - - name: "1-monoglyceride (18:0)" - - compartment: "gm" - - formula: "C21H42O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3653" + - name: "1-monoglyceride (18:0)" + - compartment: "gm" + - formula: "C21H42O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mag180" - chebi: "CHEBI:134129" - sbo: "SBO:0000247" - - !!omap - - id: "s_3654" - - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" - - compartment: "gm" - - formula: "C21H41O7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3654" + - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" + - compartment: "gm" + - formula: "C21H41O7P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:62837" - metanetx.chemical: "MNXM32960" - sbo: "SBO:0000247" - - !!omap - - id: "s_3655" - - name: "1-monoglyceride (18:1)" - - compartment: "gm" - - formula: "C21H40O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3655" + - name: "1-monoglyceride (18:1)" + - compartment: "gm" + - formula: "C21H40O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "magole_hs" - chebi: "CHEBI:134130" - sbo: "SBO:0000247" - - !!omap - - id: "s_3656" - - name: "ergosteryl palmitoleate" - - compartment: "lp" - - formula: "C44H72O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3656" + - name: "ergosteryl palmitoleate" + - compartment: "lp" + - formula: "C44H72O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52378" - metanetx.chemical: "MNXM52467" - sbo: "SBO:0000247" - - !!omap - - id: "s_3657" - - name: "H2O" - - compartment: "lp" - - formula: "H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3657" + - name: "H2O" + - compartment: "lp" + - formula: "H2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "h2o" - chebi: "CHEBI:15377" - kegg.compound: "C00001" - metanetx.chemical: "MNXM2" - sbo: "SBO:0000247" - - !!omap - - id: "s_3658" - - name: "ergosteryl oleate" - - compartment: "lp" - - formula: "C46H76O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3658" + - name: "ergosteryl oleate" + - compartment: "lp" + - formula: "C46H76O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52377" - metanetx.chemical: "MNXM52466" - sbo: "SBO:0000247" - - !!omap - - id: "s_3659" - - name: "episteryl palmitoleate" - - compartment: "lp" - - formula: "C44H74O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3659" + - name: "episteryl palmitoleate" + - compartment: "lp" + - formula: "C44H74O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52376" - metanetx.chemical: "MNXM52369" - sbo: "SBO:0000247" - - !!omap - - id: "s_3660" - - name: "episterol" - - compartment: "lp" - - formula: "C28H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3660" + - name: "episterol" + - compartment: "lp" + - formula: "C28H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "epist" - chebi: "CHEBI:23929" - kegg.compound: "C15777" - metanetx.chemical: "MNXM52365" - sbo: "SBO:0000247" - - !!omap - - id: "s_3661" - - name: "episteryl oleate" - - compartment: "lp" - - formula: "C46H78O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3661" + - name: "episteryl oleate" + - compartment: "lp" + - formula: "C46H78O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52375" - metanetx.chemical: "MNXM52367" - sbo: "SBO:0000247" - - !!omap - - id: "s_3662" - - name: "fecosteryl palmitoleate" - - compartment: "lp" - - formula: "C44H74O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3662" + - name: "fecosteryl palmitoleate" + - compartment: "lp" + - formula: "C44H74O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52380" - metanetx.chemical: "MNXM53171" - sbo: "SBO:0000247" - - !!omap - - id: "s_3663" - - name: "fecosteryl oleate" - - compartment: "lp" - - formula: "C46H78O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3663" + - name: "fecosteryl oleate" + - compartment: "lp" + - formula: "C46H78O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52379" - metanetx.chemical: "MNXM53170" - sbo: "SBO:0000247" - - !!omap - - id: "s_3664" - - name: "lanosteryl palmitoleate" - - compartment: "lp" - - formula: "C46H78O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3664" + - name: "lanosteryl palmitoleate" + - compartment: "lp" + - formula: "C46H78O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52383" - metanetx.chemical: "MNXM59727" - sbo: "SBO:0000247" - - !!omap - - id: "s_3665" - - name: "lanosterol" - - compartment: "lp" - - formula: "C30H50O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3665" + - name: "lanosterol" + - compartment: "lp" + - formula: "C30H50O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "lanost" - chebi: "CHEBI:16521" - kegg.compound: "C01724" - metanetx.chemical: "MNXM482" - sbo: "SBO:0000247" - - !!omap - - id: "s_3666" - - name: "lanosteryl oleate" - - compartment: "lp" - - formula: "C48H82O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3666" + - name: "lanosteryl oleate" + - compartment: "lp" + - formula: "C48H82O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52382" - metanetx.chemical: "MNXM59726" - sbo: "SBO:0000247" - - !!omap - - id: "s_3667" - - name: "zymosteryl palmitoleate" - - compartment: "lp" - - formula: "C43H72O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3667" + - name: "zymosteryl palmitoleate" + - compartment: "lp" + - formula: "C43H72O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52385" - metanetx.chemical: "MNXM89473" - sbo: "SBO:0000247" - - !!omap - - id: "s_3668" - - name: "zymosteryl oleate" - - compartment: "lp" - - formula: "C45H76O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3668" + - name: "zymosteryl oleate" + - compartment: "lp" + - formula: "C45H76O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52384" - metanetx.chemical: "MNXM89472" - sbo: "SBO:0000247" - - !!omap - - id: "s_3669" - - name: "zymosteryl palmitoleate" - - compartment: "ce" - - formula: "C43H72O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3669" + - name: "zymosteryl palmitoleate" + - compartment: "ce" + - formula: "C43H72O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52385" - metanetx.chemical: "MNXM89473" - sbo: "SBO:0000247" - - !!omap - - id: "s_3670" - - name: "zymosteryl oleate" - - compartment: "ce" - - formula: "C45H76O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3670" + - name: "zymosteryl oleate" + - compartment: "ce" + - formula: "C45H76O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:52384" - metanetx.chemical: "MNXM89472" - sbo: "SBO:0000247" - - !!omap - - id: "s_3671" - - name: "1-monoglyceride (16:0)" - - compartment: "lp" - - formula: "C19H38O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3671" + - name: "1-monoglyceride (16:0)" + - compartment: "lp" + - formula: "C19H38O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mag160" - chebi: "CHEBI:134127" - sbo: "SBO:0000247" - - !!omap - - id: "s_3672" - - name: "1-monoglyceride (16:1)" - - compartment: "lp" - - formula: "C19H36O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3672" + - name: "1-monoglyceride (16:1)" + - compartment: "lp" + - formula: "C19H36O4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134128" - sbo: "SBO:0000247" - - !!omap - - id: "s_3673" - - name: "1-monoglyceride (18:0)" - - compartment: "lp" - - formula: "C21H42O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3673" + - name: "1-monoglyceride (18:0)" + - compartment: "lp" + - formula: "C21H42O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mag180" - chebi: "CHEBI:134129" - sbo: "SBO:0000247" - - !!omap - - id: "s_3674" - - name: "1-monoglyceride (18:1)" - - compartment: "lp" - - formula: "C21H40O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3674" + - name: "1-monoglyceride (18:1)" + - compartment: "lp" + - formula: "C21H40O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "magole_hs" - chebi: "CHEBI:134130" - sbo: "SBO:0000247" - - !!omap - - id: "s_3675" - - name: "diglyceride (1-16:0, 2-18:1)" - - compartment: "m" - - formula: "C37H70O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3675" + - name: "diglyceride (1-16:0, 2-18:1)" + - compartment: "m" + - formula: "C37H70O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88454" - metanetx.chemical: "MNXM49380" - sbo: "SBO:0000247" - - !!omap - - id: "s_3676" - - name: "1-monoglyceride (16:0)" - - compartment: "m" - - formula: "C19H38O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3676" + - name: "1-monoglyceride (16:0)" + - compartment: "m" + - formula: "C19H38O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mag160" - chebi: "CHEBI:134127" - sbo: "SBO:0000247" - - !!omap - - id: "s_3677" - - name: "oleate" - - compartment: "m" - - formula: "C18H33O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3677" + - name: "oleate" + - compartment: "m" + - formula: "C18H33O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ocdcea" - chebi: "CHEBI:30823" - kegg.compound: "C00712" - metanetx.chemical: "MNXM306" - sbo: "SBO:0000247" - - !!omap - - id: "s_3678" - - name: "diglyceride (1-16:1, 2-18:1)" - - compartment: "m" - - formula: "C37H68O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3678" + - name: "diglyceride (1-16:1, 2-18:1)" + - compartment: "m" + - formula: "C37H68O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88500" - metanetx.chemical: "MNXM49417" - sbo: "SBO:0000247" - - !!omap - - id: "s_3679" - - name: "1-monoglyceride (16:1)" - - compartment: "m" - - formula: "C19H36O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3679" + - name: "1-monoglyceride (16:1)" + - compartment: "m" + - formula: "C19H36O4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134128" - sbo: "SBO:0000247" - - !!omap - - id: "s_3680" - - name: "diglyceride (1-18:0, 2-18:1)" - - compartment: "m" - - formula: "C39H74O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3680" + - name: "diglyceride (1-18:0, 2-18:1)" + - compartment: "m" + - formula: "C39H74O5" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75468" - metanetx.chemical: "MNXM49514" - sbo: "SBO:0000247" - - !!omap - - id: "s_3681" - - name: "1-monoglyceride (18:0)" - - compartment: "m" - - formula: "C21H42O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3681" + - name: "1-monoglyceride (18:0)" + - compartment: "m" + - formula: "C21H42O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mag180" - chebi: "CHEBI:134129" - sbo: "SBO:0000247" - - !!omap - - id: "s_3682" - - name: "diglyceride (1-18:1, 2-18:1)" - - compartment: "m" - - formula: "C39H72O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3682" + - name: "diglyceride (1-18:1, 2-18:1)" + - compartment: "m" + - formula: "C39H72O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "12dgr181" - chebi: "CHEBI:52333" - metanetx.chemical: "MNXM9533" - sbo: "SBO:0000247" - - !!omap - - id: "s_3683" - - name: "1-monoglyceride (18:1)" - - compartment: "m" - - formula: "C21H40O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3683" + - name: "1-monoglyceride (18:1)" + - compartment: "m" + - formula: "C21H40O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "magole_hs" - chebi: "CHEBI:134130" - sbo: "SBO:0000247" - - !!omap - - id: "s_3684" - - name: "glycerol" - - compartment: "lp" - - formula: "C3H8O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3684" + - name: "glycerol" + - compartment: "lp" + - formula: "C3H8O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glyc" - chebi: "CHEBI:17754" - kegg.compound: "C00116" - metanetx.chemical: "MNXM89612" - sbo: "SBO:0000247" - - !!omap - - id: "s_3685" - - name: "1-acylglycerophosphoethanolamine (16:0)" - - compartment: "lp" - - formula: "C21H44NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3685" + - name: "1-acylglycerophosphoethanolamine (16:0)" + - compartment: "lp" + - formula: "C21H44NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpe160" - chebi: "CHEBI:90452" - sbo: "SBO:0000247" - - !!omap - - id: "s_3686" - - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" - - compartment: "lp" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3686" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" + - compartment: "lp" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136148" - sbo: "SBO:0000247" - - !!omap - - id: "s_3687" - - name: "1-acylglycerophosphoethanolamine (16:1)" - - compartment: "lp" - - formula: "C21H42NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3687" + - name: "1-acylglycerophosphoethanolamine (16:1)" + - compartment: "lp" + - formula: "C21H42NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpe161" - sbo: "SBO:0000247" - - !!omap - - id: "s_3688" - - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" - - compartment: "lp" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3688" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" + - compartment: "lp" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:90464" - sbo: "SBO:0000247" - - !!omap - - id: "s_3689" - - name: "1-acylglycerophosphoethanolamine (18:0)" - - compartment: "lp" - - formula: "C23H48NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3689" + - name: "1-acylglycerophosphoethanolamine (18:0)" + - compartment: "lp" + - formula: "C23H48NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpe180" - chebi: "CHEBI:64576" - sbo: "SBO:0000247" - - !!omap - - id: "s_3690" - - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" - - compartment: "lp" - - formula: "C41H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3690" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" + - compartment: "lp" + - formula: "C41H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136162" - sbo: "SBO:0000247" - - !!omap - - id: "s_3691" - - name: "1-acylglycerophosphoethanolamine (18:1)" - - compartment: "lp" - - formula: "C23H46NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3691" + - name: "1-acylglycerophosphoethanolamine (18:1)" + - compartment: "lp" + - formula: "C23H46NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpe181" - chebi: "CHEBI:64575" - sbo: "SBO:0000247" - - !!omap - - id: "s_3692" - - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" - - compartment: "lp" - - formula: "C41H78NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3692" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" + - compartment: "lp" + - formula: "C41H78NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136170" - sbo: "SBO:0000247" - - !!omap - - id: "s_3693" - - name: "phosphatidylcholine (1-16:0, 2-16:1)" - - compartment: "lp" - - formula: "C40H78NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3693" + - name: "phosphatidylcholine (1-16:0, 2-16:1)" + - compartment: "lp" + - formula: "C40H78NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134592" - sbo: "SBO:0000247" - - !!omap - - id: "s_3694" - - name: "1-acylglycerophosphocholine (16:0)" - - compartment: "lp" - - formula: "C24H50NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3694" + - name: "1-acylglycerophosphocholine (16:0)" + - compartment: "lp" + - formula: "C24H50NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc160" - chebi: "CHEBI:72998" - kegg.compound: "C04102" - metanetx.chemical: "MNXM32510" - sbo: "SBO:0000247" - - !!omap - - id: "s_3695" - - name: "phosphatidylcholine (1-16:1, 2-16:1)" - - compartment: "lp" - - formula: "C40H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3695" + - name: "phosphatidylcholine (1-16:1, 2-16:1)" + - compartment: "lp" + - formula: "C40H76NO8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pc161" - chebi: "CHEBI:83717" - metanetx.chemical: "MNXM69377" - sbo: "SBO:0000247" - - !!omap - - id: "s_3696" - - name: "1-acylglycerophosphocholine (16:1)" - - compartment: "lp" - - formula: "C24H48NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3696" + - name: "1-acylglycerophosphocholine (16:1)" + - compartment: "lp" + - formula: "C24H48NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc161" - chebi: "CHEBI:73851" - metanetx.chemical: "MNXM32519" - sbo: "SBO:0000247" - - !!omap - - id: "s_3697" - - name: "phosphatidylcholine (1-18:0, 2-16:1)" - - compartment: "lp" - - formula: "C42H82NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3697" + - name: "phosphatidylcholine (1-18:0, 2-16:1)" + - compartment: "lp" + - formula: "C42H82NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:86097" - metanetx.chemical: "MNXM69528" - sbo: "SBO:0000247" - - !!omap - - id: "s_3698" - - name: "1-acylglycerophosphocholine (18:0)" - - compartment: "lp" - - formula: "C26H54NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3698" + - name: "1-acylglycerophosphocholine (18:0)" + - compartment: "lp" + - formula: "C26H54NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc180" - chebi: "CHEBI:73858" - metanetx.chemical: "MNXM32545" - sbo: "SBO:0000247" - - !!omap - - id: "s_3699" - - name: "phosphatidylcholine (1-18:1, 2-16:1)" - - compartment: "lp" - - formula: "C42H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3699" + - name: "phosphatidylcholine (1-18:1, 2-16:1)" + - compartment: "lp" + - formula: "C42H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:86100" - metanetx.chemical: "MNXM69658" - sbo: "SBO:0000247" - - !!omap - - id: "s_3700" - - name: "1-acylglycerophosphocholine (18:1)" - - compartment: "lp" - - formula: "C26H52NO7P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3700" + - name: "1-acylglycerophosphocholine (18:1)" + - compartment: "lp" + - formula: "C26H52NO7P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "1agpc181" - chebi: "CHEBI:28610" - kegg.compound: "C03916" - metanetx.chemical: "MNXM13872" - sbo: "SBO:0000247" - - !!omap - - id: "s_3701" - - name: "phosphatidylcholine (1-16:0, 2-18:1)" - - compartment: "lp" - - formula: "C42H82NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3701" + - name: "phosphatidylcholine (1-16:0, 2-18:1)" + - compartment: "lp" + - formula: "C42H82NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:134594" - sbo: "SBO:0000247" - - !!omap - - id: "s_3702" - - name: "phosphatidylcholine (1-16:1, 2-18:1)" - - compartment: "lp" - - formula: "C42H80NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3702" + - name: "phosphatidylcholine (1-16:1, 2-18:1)" + - compartment: "lp" + - formula: "C42H80NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:84811" - metanetx.chemical: "MNXM69383" - sbo: "SBO:0000247" - - !!omap - - id: "s_3703" - - name: "phosphatidylcholine (1-18:0, 2-18:1)" - - compartment: "lp" - - formula: "C44H86NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3703" + - name: "phosphatidylcholine (1-18:0, 2-18:1)" + - compartment: "lp" + - formula: "C44H86NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75034" - metanetx.chemical: "MNXM32526" - sbo: "SBO:0000247" - - !!omap - - id: "s_3704" - - name: "phosphatidylcholine (1-18:1, 2-18:1)" - - compartment: "lp" - - formula: "C44H84NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3704" + - name: "phosphatidylcholine (1-18:1, 2-18:1)" + - compartment: "lp" + - formula: "C44H84NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:74669" - metanetx.chemical: "MNXM8549" - sbo: "SBO:0000247" - - !!omap - - id: "s_3705" - - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" - - compartment: "lp" - - formula: "C37H72NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3705" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" + - compartment: "lp" + - formula: "C37H72NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136147" - sbo: "SBO:0000247" - - !!omap - - id: "s_3706" - - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" - - compartment: "lp" - - formula: "C37H70NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3706" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" + - compartment: "lp" + - formula: "C37H70NO8P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pe161" - chebi: "CHEBI:138792" - sbo: "SBO:0000247" - - !!omap - - id: "s_3707" - - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" - - compartment: "lp" - - formula: "C39H76NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3707" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" + - compartment: "lp" + - formula: "C39H76NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:136155" - sbo: "SBO:0000247" - - !!omap - - id: "s_3708" - - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" - - compartment: "lp" - - formula: "C39H74NO8P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3708" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" + - compartment: "lp" + - formula: "C39H74NO8P" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:82837" - metanetx.chemical: "MNXM71684" - sbo: "SBO:0000247" - - !!omap - - id: "s_3709" - - name: "ergosterol ester backbone" - - compartment: "erm" - - formula: "C28H42" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3709" + - name: "ergosterol ester backbone" + - compartment: "erm" + - formula: "C28H42" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM5739" - sbo: "SBO:0000649" - - !!omap - - id: "s_3710" - - name: "phosphatidyl-L-serine backbone" - - compartment: "erm" - - formula: "C6H10NO6P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3710" + - name: "phosphatidyl-L-serine backbone" + - compartment: "erm" + - formula: "C6H10NO6P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ps_cho" - kegg.compound: "C02737" - metanetx.chemical: "MNXM221" - sbo: "SBO:0000649" - - !!omap - - id: "s_3711" - - name: "phosphatidylcholine backbone" - - compartment: "erm" - - formula: "C8H16NO3P" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3711" + - name: "phosphatidylcholine backbone" + - compartment: "erm" + - formula: "C8H16NO3P" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "pchol_cho" - kegg.compound: "C00157" - metanetx.chemical: "MNXM96952" - sbo: "SBO:0000649" - - !!omap - - id: "s_3712" - - name: "phosphatidylethanolamine backbone" - - compartment: "erm" - - formula: "C5H10NO4P" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3712" + - name: "phosphatidylethanolamine backbone" + - compartment: "erm" + - formula: "C5H10NO4P" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pe_hs" - kegg.compound: "C00350" - metanetx.chemical: "MNXM115" - sbo: "SBO:0000649" - - !!omap - - id: "s_3713" - - name: "triglyceride backbone" - - compartment: "erm" - - formula: "C3H2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3713" + - name: "triglyceride backbone" + - compartment: "erm" + - formula: "C3H2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag_cho" - kegg.compound: "C00422" - metanetx.chemical: "MNXM248" - sbo: "SBO:0000649" - - !!omap - - id: "s_3714" - - name: "heme a" - - compartment: "c" - - formula: "C49H55FeN4O6" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3714" + - name: "heme a" + - compartment: "c" + - formula: "C49H55FeN4O6" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "hemeA" - chebi: "CHEBI:24479" - kegg.compound: "C15670" - metanetx.chemical: "MNXM53309" - sbo: "SBO:0000247" - - !!omap - - id: "s_3715" - - name: "raffinose" - - compartment: "e" - - formula: "C18H32O16" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3715" + - name: "raffinose" + - compartment: "e" + - formula: "C18H32O16" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "raffin" - chebi: "CHEBI:16634" - kegg.compound: "C00492" - metanetx.chemical: "MNXM621" - sbo: "SBO:0000247" - - !!omap - - id: "s_3716" - - name: "melibiose" - - compartment: "e" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3716" + - name: "melibiose" + - compartment: "e" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "melib" - chebi: "CHEBI:28053" - kegg.compound: "C05402" - metanetx.chemical: "MNXM1434" - sbo: "SBO:0000247" - - !!omap - - id: "s_3717" - - name: "protein" - - compartment: "c" - - formula: "" - - annotation: !!omap + - !!omap + - id: "s_3717" + - name: "protein" + - compartment: "c" + - formula: "" + - annotation: !!omap - bigg.metabolite: "protein" - kegg.compound: "C00492" - metanetx.chemical: "MNXM621" - sbo: "SBO:0000649" - - !!omap - - id: "s_3718" - - name: "carbohydrate" - - compartment: "c" - - formula: "" - - annotation: !!omap + - !!omap + - id: "s_3718" + - name: "carbohydrate" + - compartment: "c" + - formula: "" + - annotation: !!omap - kegg.compound: "C05402" - metanetx.chemical: "MNXM1434" - sbo: "SBO:0000649" - - !!omap - - id: "s_3719" - - name: "RNA" - - compartment: "c" - - formula: "" - - annotation: !!omap + - !!omap + - id: "s_3719" + - name: "RNA" + - compartment: "c" + - formula: "" + - annotation: !!omap - bigg.metabolite: "rna" - sbo: "SBO:0000649" - - !!omap - - id: "s_3720" - - name: "DNA" - - compartment: "c" - - formula: "" - - annotation: !!omap + - !!omap + - id: "s_3720" + - name: "DNA" + - compartment: "c" + - formula: "" + - annotation: !!omap - bigg.metabolite: "dna" - sbo: "SBO:0000649" - - !!omap - - id: "s_3721" - - name: "ceramide backbone" - - compartment: "g" - - formula: "HNO2" - - annotation: !!omap + - !!omap + - id: "s_3721" + - name: "ceramide backbone" + - compartment: "g" + - formula: "HNO2" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3722" - - name: "ceramide backbone" - - compartment: "c" - - formula: "HNO2" - - annotation: !!omap + - !!omap + - id: "s_3722" + - name: "ceramide backbone" + - compartment: "c" + - formula: "HNO2" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3723" - - name: "inositol phosphomannosylinositol phosphoceramide backbone" - - compartment: "c" - - formula: "C18H33NO23P2" - - annotation: !!omap + - !!omap + - id: "s_3723" + - name: "inositol phosphomannosylinositol phosphoceramide backbone" + - compartment: "c" + - formula: "C18H33NO23P2" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3724" - - name: "inositol-P-ceramide backbone" - - compartment: "c" - - formula: "C6H12NO10P" - - annotation: !!omap + - !!omap + - id: "s_3724" + - name: "inositol-P-ceramide backbone" + - compartment: "c" + - formula: "C6H12NO10P" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3725" - - name: "mannosylinositol phosphorylceramide backbone" - - compartment: "c" - - formula: "C12H22NO15P" - - annotation: !!omap + - !!omap + - id: "s_3725" + - name: "mannosylinositol phosphorylceramide backbone" + - compartment: "c" + - formula: "C12H22NO15P" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3726" - - name: "long-chain base backbone" - - compartment: "er" - - formula: "H4N" - - annotation: !!omap + - !!omap + - id: "s_3726" + - name: "long-chain base backbone" + - compartment: "er" + - formula: "H4N" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3727" - - name: "long-chain base backbone" - - compartment: "c" - - formula: "H4N" - - annotation: !!omap + - !!omap + - id: "s_3727" + - name: "long-chain base backbone" + - compartment: "c" + - formula: "H4N" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3728" - - name: "long-chain base phosphate backbone" - - compartment: "er" - - formula: "H3NO3P" - - annotation: !!omap + - !!omap + - id: "s_3728" + - name: "long-chain base phosphate backbone" + - compartment: "er" + - formula: "H3NO3P" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3729" - - name: "long-chain base phosphate backbone" - - compartment: "c" - - formula: "H3NO3P" - - annotation: !!omap + - !!omap + - id: "s_3729" + - name: "long-chain base phosphate backbone" + - compartment: "c" + - formula: "H3NO3P" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3730" - - name: "phosphatidate backbone" - - compartment: "erm" - - formula: "C3H5O4P" - - annotation: !!omap + - !!omap + - id: "s_3730" + - name: "phosphatidate backbone" + - compartment: "erm" + - formula: "C3H5O4P" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3731" - - name: "phosphatidate backbone" - - compartment: "c" - - formula: "C3H5O4P" - - annotation: !!omap + - !!omap + - id: "s_3731" + - name: "phosphatidate backbone" + - compartment: "c" + - formula: "C3H5O4P" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3732" - - name: "diglyceride backbone" - - compartment: "erm" - - formula: "C3H4O" - - annotation: !!omap + - !!omap + - id: "s_3732" + - name: "diglyceride backbone" + - compartment: "erm" + - formula: "C3H4O" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3733" - - name: "diglyceride backbone" - - compartment: "c" - - formula: "C3H4O" - - annotation: !!omap + - !!omap + - id: "s_3733" + - name: "diglyceride backbone" + - compartment: "c" + - formula: "C3H4O" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3734" - - name: "sn-2-acyl-1-lysophosphatidylinositol backbone" - - compartment: "erm" - - formula: "C9H11O10P" - - annotation: !!omap + - !!omap + - id: "s_3734" + - name: "sn-2-acyl-1-lysophosphatidylinositol backbone" + - compartment: "erm" + - formula: "C9H11O10P" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3735" - - name: "sn-2-acyl-1-lysophosphatidylinositol backbone" - - compartment: "c" - - formula: "C9H11O10P" - - annotation: !!omap + - !!omap + - id: "s_3735" + - name: "sn-2-acyl-1-lysophosphatidylinositol backbone" + - compartment: "c" + - formula: "C9H11O10P" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3736" - - name: "phosphatidylglycerol backbone" - - compartment: "mm" - - formula: "C6H11O6P" - - annotation: !!omap + - !!omap + - id: "s_3736" + - name: "phosphatidylglycerol backbone" + - compartment: "mm" + - formula: "C6H11O6P" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3737" - - name: "phosphatidylglycerol backbone" - - compartment: "c" - - formula: "C6H11O6P" - - annotation: !!omap + - !!omap + - id: "s_3737" + - name: "phosphatidylglycerol backbone" + - compartment: "c" + - formula: "C6H11O6P" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3738" - - name: "cardiolipin backbone" - - compartment: "mm" - - formula: "C9H14O9P2" - - annotation: !!omap + - !!omap + - id: "s_3738" + - name: "cardiolipin backbone" + - compartment: "mm" + - formula: "C9H14O9P2" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3739" - - name: "cardiolipin backbone" - - compartment: "c" - - formula: "C9H14O9P2" - - annotation: !!omap + - !!omap + - id: "s_3739" + - name: "cardiolipin backbone" + - compartment: "c" + - formula: "C9H14O9P2" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3740" - - name: "C16:0 chain" - - compartment: "c" - - formula: "C16H32O2" - - annotation: !!omap + - !!omap + - id: "s_3740" + - name: "C16:0 chain" + - compartment: "c" + - formula: "C16H32O2" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3741" - - name: "C16:1 chain" - - compartment: "c" - - formula: "C16H30O2" - - annotation: !!omap + - !!omap + - id: "s_3741" + - name: "C16:1 chain" + - compartment: "c" + - formula: "C16H30O2" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3742" - - name: "C18:0 chain" - - compartment: "c" - - formula: "C18H36O2" - - annotation: !!omap + - !!omap + - id: "s_3742" + - name: "C18:0 chain" + - compartment: "c" + - formula: "C18H36O2" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3743" - - name: "C18:1 chain" - - compartment: "c" - - formula: "C18H34O2" - - annotation: !!omap + - !!omap + - id: "s_3743" + - name: "C18:1 chain" + - compartment: "c" + - formula: "C18H34O2" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3744" - - name: "C24:0 chain" - - compartment: "c" - - formula: "C24H48O2" - - annotation: !!omap + - !!omap + - id: "s_3744" + - name: "C24:0 chain" + - compartment: "c" + - formula: "C24H48O2" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3745" - - name: "C26:0 chain" - - compartment: "c" - - formula: "C26H52O2" - - annotation: !!omap + - !!omap + - id: "s_3745" + - name: "C26:0 chain" + - compartment: "c" + - formula: "C26H52O2" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3746" - - name: "lipid backbone" - - compartment: "c" - - formula: "" - - annotation: !!omap + - !!omap + - id: "s_3746" + - name: "lipid backbone" + - compartment: "c" + - formula: "" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3747" - - name: "lipid chain" - - compartment: "c" - - formula: "" - - annotation: !!omap + - !!omap + - id: "s_3747" + - name: "lipid chain" + - compartment: "c" + - formula: "" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_3748" - - name: "Cytochrome c" - - compartment: "m" - - formula: "C40H40FeN6O6S2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3748" + - name: "Cytochrome c" + - compartment: "m" + - formula: "C40H40FeN6O6S2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "cytc" - chebi: "CHEBI:83739" - kegg.compound: "C00524" - sbo: "SBO:0000247" - - !!omap - - id: "s_3749" - - name: "Apocytochrome c" - - compartment: "m" - - formula: "C6H10N2O2S2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3749" + - name: "Apocytochrome c" + - compartment: "m" + - formula: "C6H10N2O2S2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "apocytc" - chebi: "CHEBI:15697" - kegg.compound: "C02248" - metanetx.chemical: "MNXM2100" - sbo: "SBO:0000247" - - !!omap - - id: "s_3750" - - name: "diacetyl" - - compartment: "c" - - formula: "C4H6O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3750" + - name: "diacetyl" + - compartment: "c" + - formula: "C4H6O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "diact" - chebi: "CHEBI:16583" - kegg.compound: "C00741" - metanetx.chemical: "MNXM1467" - sbo: "SBO:0000247" - - !!omap - - id: "s_3751" - - name: "(R)-acetoin" - - compartment: "n" - - formula: "C4H8O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3751" + - name: "(R)-acetoin" + - compartment: "n" + - formula: "C4H8O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "actn__R" - chebi: "CHEBI:15686" - kegg.compound: "C00810" - metanetx.chemical: "MNXM664" - sbo: "SBO:0000247" - - !!omap - - id: "s_3752" - - name: "diacetyl" - - compartment: "n" - - formula: "C4H6O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3752" + - name: "diacetyl" + - compartment: "n" + - formula: "C4H6O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "diact" - chebi: "CHEBI:16583" - kegg.compound: "C00741" - metanetx.chemical: "MNXM1467" - sbo: "SBO:0000247" - - !!omap - - id: "s_3753" - - name: "NADH" - - compartment: "n" - - formula: "C21H27N7O14P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3753" + - name: "NADH" + - compartment: "n" + - formula: "C21H27N7O14P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "nadh" - chebi: "CHEBI:57945" - kegg.compound: "C00004" - metanetx.chemical: "MNXM10" - sbo: "SBO:0000247" - - !!omap - - id: "s_3754" - - name: "L-glutamyl-tRNA(Gln)" - - compartment: "m" - - formula: "C5H8NO3R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3754" + - name: "L-glutamyl-tRNA(Gln)" + - compartment: "m" + - formula: "C5H8NO3R" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glutrna_gln" - chebi: "CHEBI:29165" - kegg.compound: "C06112" - metanetx.chemical: "MNXM91213" - sbo: "SBO:0000247" - - !!omap - - id: "s_3755" - - name: "L-glutamine" - - compartment: "m" - - formula: "C5H10N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3755" + - name: "L-glutamine" + - compartment: "m" + - formula: "C5H10N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gln__L" - chebi: "CHEBI:18050" - kegg.compound: "C00064" - metanetx.chemical: "MNXM37" - sbo: "SBO:0000247" - - !!omap - - id: "s_3756" - - name: "Gln-tRNA(Gln)" - - compartment: "m" - - formula: "C5H10N2O2R" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3756" + - name: "Gln-tRNA(Gln)" + - compartment: "m" + - formula: "C5H10N2O2R" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "glntrna" - chebi: "CHEBI:29166" - kegg.compound: "C02282" - metanetx.chemical: "MNXM89810" - sbo: "SBO:0000247" - - !!omap - - id: "s_3757" - - name: "Met-Ala" - - compartment: "v" - - formula: "C8H16N2O3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3757" + - name: "Met-Ala" + - compartment: "v" + - formula: "C8H16N2O3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "met_L_ala__L" - chebi: "CHEBI:73610" - metanetx.chemical: "MNXM61647" - sbo: "SBO:0000247" - - !!omap - - id: "s_3758" - - name: "L-methionine" - - compartment: "v" - - formula: "C5H11NO2S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3758" + - name: "L-methionine" + - compartment: "v" + - formula: "C5H11NO2S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "met__L" - chebi: "CHEBI:16643" - kegg.compound: "C00073" - metanetx.chemical: "MNXM61" - sbo: "SBO:0000247" - - !!omap - - id: "s_3759" - - name: "L-alanine" - - compartment: "v" - - formula: "C3H7NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3759" + - name: "L-alanine" + - compartment: "v" + - formula: "C3H7NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala__L" - chebi: "CHEBI:16977" - kegg.compound: "C00041" - metanetx.chemical: "MNXM32" - sbo: "SBO:0000247" - - !!omap - - id: "s_3760" - - name: "ADP-D-ribose 1''-phosphate" - - compartment: "c" - - formula: "C15H20N5O17P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3760" + - name: "ADP-D-ribose 1''-phosphate" + - compartment: "c" + - formula: "C15H20N5O17P3" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:58753" - metanetx.chemical: "MNXM5039" - sbo: "SBO:0000247" - - !!omap - - id: "s_3761" - - name: "ADP-ribose" - - compartment: "c" - - formula: "C15H21N5O14P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3761" + - name: "ADP-ribose" + - compartment: "c" + - formula: "C15H21N5O14P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "adprib" - chebi: "CHEBI:57967" - kegg.compound: "C00301" - metanetx.chemical: "MNXM48596" - sbo: "SBO:0000247" - - !!omap - - id: "s_3762" - - name: "quinone" - - compartment: "c" - - formula: "C6H4O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3762" + - name: "quinone" + - compartment: "c" + - formula: "C6H4O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:16509" - kegg.compound: "C00472" - metanetx.chemical: "MNXM769" - sbo: "SBO:0000247" - - !!omap - - id: "s_3763" - - name: "1,4-benzosemiquinone" - - compartment: "c" - - formula: "C6H5O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3763" + - name: "1,4-benzosemiquinone" + - compartment: "c" + - formula: "C6H5O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17977" - kegg.compound: "C02389" - metanetx.chemical: "MNXM7107" - sbo: "SBO:0000247" - - !!omap - - id: "s_3764" - - name: "UDP-N-acetyl-alpha-D-glucosamine" - - compartment: "er" - - formula: "C17H25N3O17P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3764" + - name: "UDP-N-acetyl-alpha-D-glucosamine" + - compartment: "er" + - formula: "C17H25N3O17P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "uacgam" - chebi: "CHEBI:57705" - kegg.compound: "C00043" - metanetx.chemical: "MNXM47" - sbo: "SBO:0000247" - - !!omap - - id: "s_3765" - - name: "N-Acetyl-D-glucosaminyldiphosphodolichol" - - compartment: "er" - - formula: "C28H51NO12P2R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3765" + - name: "N-Acetyl-D-glucosaminyldiphosphodolichol" + - compartment: "er" + - formula: "C28H51NO12P2R" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "naglc2p" - chebi: "CHEBI:18278" - kegg.compound: "C04500" - metanetx.chemical: "MNXM818" - sbo: "SBO:0000247" - - !!omap - - id: "s_3766" - - name: "UDP" - - compartment: "er" - - formula: "C9H11N2O12P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3766" + - name: "UDP" + - compartment: "er" + - formula: "C9H11N2O12P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "udp" - chebi: "CHEBI:58223" - kegg.compound: "C00015" - metanetx.chemical: "MNXM17" - sbo: "SBO:0000247" - - !!omap - - id: "s_3767" - - name: "N,N'-Chitobiosyldiphosphodolichol" - - compartment: "er" - - formula: "C36H64N2O17P2R" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3768" - - name: "D-ribofuranose 5-phosphate" - - compartment: "c" - - formula: "C5H9O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3767" + - name: "N,N'-Chitobiosyldiphosphodolichol" + - compartment: "er" + - formula: "C36H64N2O17P2R" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3768" + - name: "D-ribofuranose 5-phosphate" + - compartment: "c" + - formula: "C5H9O8P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:78346" - kegg.compound: "C00117" - metanetx.chemical: "MNXM722712" - sbo: "SBO:0000247" - - !!omap - - id: "s_3769" - - name: "Oxalate" - - compartment: "p" - - formula: "C2O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3769" + - name: "Oxalate" + - compartment: "p" + - formula: "C2O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "oxa" - chebi: "CHEBI:30623" - kegg.compound: "C00209" - metanetx.chemical: "MNXM291" - sbo: "SBO:0000247" - - !!omap - - id: "s_3770" - - name: "Oxalyl-CoA" - - compartment: "p" - - formula: "C23H31N7O19P3S" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_3770" + - name: "Oxalyl-CoA" + - compartment: "p" + - formula: "C23H31N7O19P3S" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "oxalcoa" - chebi: "CHEBI:57388" - kegg.compound: "C00313" - metanetx.chemical: "MNXM618" - sbo: "SBO:0000247" - - !!omap - - id: "s_3771" - - name: "G00171" - - compartment: "er" - - formula: "C86H142N4O67R" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3772" - - name: "D-glucose" - - compartment: "er" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3771" + - name: "G00171" + - compartment: "er" + - formula: "C86H142N4O67R" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3772" + - name: "D-glucose" + - compartment: "er" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glc__D" - chebi: "CHEBI:4167" - kegg.compound: "C00031" - metanetx.chemical: "MNXM41" - sbo: "SBO:0000247" - - !!omap - - id: "s_3773" - - name: "G00010" - - compartment: "er" - - formula: "C80H132N4O62R" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3774" - - name: "G00011" - - compartment: "er" - - formula: "C74H122N4O57R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3773" + - name: "G00010" + - compartment: "er" + - formula: "C80H132N4O62R" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3774" + - name: "G00011" + - compartment: "er" + - formula: "C74H122N4O57R" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM6479" - sbo: "SBO:0000247" - - !!omap - - id: "s_3775" - - name: "sodium" - - compartment: "v" - - formula: "Na" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3775" + - name: "sodium" + - compartment: "v" + - formula: "Na" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "na1" - chebi: "CHEBI:29101" - kegg.compound: "C01330" - metanetx.chemical: "MNXM27" - sbo: "SBO:0000247" - - !!omap - - id: "s_3776" - - name: "potassium" - - compartment: "v" - - formula: "K" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3776" + - name: "potassium" + - compartment: "v" + - formula: "K" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "k" - chebi: "CHEBI:29103" - kegg.compound: "C00238" - metanetx.chemical: "MNXM95" - sbo: "SBO:0000247" - - !!omap - - id: "s_3777" - - name: "chloride" - - compartment: "v" - - formula: "Cl" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3777" + - name: "chloride" + - compartment: "v" + - formula: "Cl" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "cl" - chebi: "CHEBI:17996" - kegg.compound: "C00698" - metanetx.chemical: "MNXM43" - sbo: "SBO:0000247" - - !!omap - - id: "s_3778" - - name: "chloride" - - compartment: "c" - - formula: "Cl" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3778" + - name: "chloride" + - compartment: "c" + - formula: "Cl" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "cl" - chebi: "CHEBI:17996" - kegg.compound: "C00698" - metanetx.chemical: "MNXM43" - sbo: "SBO:0000247" - - !!omap - - id: "s_3779" - - name: "D-fructose" - - compartment: "v" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3779" + - name: "D-fructose" + - compartment: "v" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "fru" - chebi: "CHEBI:15824" - kegg.compound: "C00095" - metanetx.chemical: "MNXM175" - sbo: "SBO:0000247" - - !!omap - - id: "s_3780" - - name: "D-galactose" - - compartment: "v" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3780" + - name: "D-galactose" + - compartment: "v" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gal" - chebi: "CHEBI:4139" - kegg.compound: "C00124" - metanetx.chemical: "MNXM390" - sbo: "SBO:0000247" - - !!omap - - id: "s_3781" - - name: "UMP" - - compartment: "er" - - formula: "C9H11N2O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3781" + - name: "UMP" + - compartment: "er" + - formula: "C9H11N2O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "ump" - chebi: "CHEBI:57865" - kegg.compound: "C00105" - metanetx.chemical: "MNXM80" - sbo: "SBO:0000247" - - !!omap - - id: "s_3782" - - name: "cadmium(2+)" - - compartment: "c" - - formula: "Cd" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_3782" + - name: "cadmium(2+)" + - compartment: "c" + - formula: "Cd" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "cd2" - chebi: "CHEBI:48775" - kegg.compound: "C01413" - metanetx.chemical: "MNXM4505" - sbo: "SBO:0000247" - - !!omap - - id: "s_3783" - - name: "cadmium(2+)" - - compartment: "e" - - formula: "Cd" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_3783" + - name: "cadmium(2+)" + - compartment: "e" + - formula: "Cd" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "cd2" - chebi: "CHEBI:48775" - kegg.compound: "C01413" - metanetx.chemical: "MNXM4505" - sbo: "SBO:0000247" - - !!omap - - id: "s_3784" - - name: "(sulfur carrier)-H" - - compartment: "m" - - formula: "R" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3785" - - name: "L-cysteine" - - compartment: "m" - - formula: "C3H7NO2S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3784" + - name: "(sulfur carrier)-H" + - compartment: "m" + - formula: "R" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3785" + - name: "L-cysteine" + - compartment: "m" + - formula: "C3H7NO2S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cys__L" - chebi: "CHEBI:17561" - kegg.compound: "C00097" - metanetx.chemical: "MNXM55" - sbo: "SBO:0000247" - - !!omap - - id: "s_3786" - - name: "(sulfur carrier)-SH" - - compartment: "m" - - formula: "SR" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3787" - - name: "cholesterol" - - compartment: "er" - - formula: "C27H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3786" + - name: "(sulfur carrier)-SH" + - compartment: "m" + - formula: "SR" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3787" + - name: "cholesterol" + - compartment: "er" + - formula: "C27H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "chsterol" - chebi: "CHEBI:16113" - kegg.compound: "C00187" - metanetx.chemical: "MNXM103" - sbo: "SBO:0000247" - - !!omap - - id: "s_3788" - - name: "cholesterol" - - compartment: "erm" - - formula: "C27H46O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3788" + - name: "cholesterol" + - compartment: "erm" + - formula: "C27H46O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "chsterol" - chebi: "CHEBI:16113" - kegg.compound: "C00187" - metanetx.chemical: "MNXM103" - sbo: "SBO:0000247" - - !!omap - - id: "s_3789" - - name: "3-chlorobenzyl alcohol" - - compartment: "c" - - formula: "C7H7ClO" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3790" - - name: "3-chlorobenzaldehyde" - - compartment: "c" - - formula: "C7H5ClO" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3791" - - name: "3-hydroxybenzyl alcohol" - - compartment: "c" - - formula: "C7H8O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3789" + - name: "3-chlorobenzyl alcohol" + - compartment: "c" + - formula: "C7H7ClO" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3790" + - name: "3-chlorobenzaldehyde" + - compartment: "c" + - formula: "C7H5ClO" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3791" + - name: "3-hydroxybenzyl alcohol" + - compartment: "c" + - formula: "C7H8O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17069" - kegg.compound: "C03351" - metanetx.chemical: "MNXM2785" - sbo: "SBO:0000247" - - !!omap - - id: "s_3792" - - name: "3-hydroxybenzaldehyde" - - compartment: "c" - - formula: "C7H6O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3792" + - name: "3-hydroxybenzaldehyde" + - compartment: "c" + - formula: "C7H6O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:16207" - kegg.compound: "C03067" - metanetx.chemical: "MNXM2483" - sbo: "SBO:0000247" - - !!omap - - id: "s_3793" - - name: "3-methylbenzyl alcohol" - - compartment: "c" - - formula: "C8H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3793" + - name: "3-methylbenzyl alcohol" + - compartment: "c" + - formula: "C8H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "3mbzalc" - chebi: "CHEBI:27995" - kegg.compound: "C07216" - metanetx.chemical: "MNXM3486" - sbo: "SBO:0000247" - - !!omap - - id: "s_3794" - - name: "3-methylbenzaldehyde" - - compartment: "c" - - formula: "C8H8O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3794" + - name: "3-methylbenzaldehyde" + - compartment: "c" + - formula: "C8H8O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "3mbzald" - chebi: "CHEBI:28476" - kegg.compound: "C07209" - metanetx.chemical: "MNXM4040" - sbo: "SBO:0000247" - - !!omap - - id: "s_3795" - - name: "4-isopropylbenzyl alcohol" - - compartment: "c" - - formula: "C10H14O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3795" + - name: "4-isopropylbenzyl alcohol" + - compartment: "c" + - formula: "C10H14O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:27628" - kegg.compound: "C06576" - metanetx.chemical: "MNXM5878" - sbo: "SBO:0000247" - - !!omap - - id: "s_3796" - - name: "p-cumic aldehyde" - - compartment: "c" - - formula: "C10H12O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3796" + - name: "p-cumic aldehyde" + - compartment: "c" + - formula: "C10H12O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:28671" - kegg.compound: "C06577" - metanetx.chemical: "MNXM5879" - sbo: "SBO:0000247" - - !!omap - - id: "s_3797" - - name: "4-methylbenzyl alcohol" - - compartment: "c" - - formula: "C8H10O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3797" + - name: "4-methylbenzyl alcohol" + - compartment: "c" + - formula: "C8H10O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4mbzalc" - chebi: "CHEBI:1895" - kegg.compound: "C06757" - metanetx.chemical: "MNXM3500" - sbo: "SBO:0000247" - - !!omap - - id: "s_3798" - - name: "4-methylbenzaldehyde" - - compartment: "c" - - formula: "C8H8O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3798" + - name: "4-methylbenzaldehyde" + - compartment: "c" + - formula: "C8H8O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4mbzald" - chebi: "CHEBI:28617" - kegg.compound: "C06758" - metanetx.chemical: "MNXM4077" - sbo: "SBO:0000247" - - !!omap - - id: "s_3799" - - name: "benzyl alcohol" - - compartment: "c" - - formula: "C7H8O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3799" + - name: "benzyl alcohol" + - compartment: "c" + - formula: "C7H8O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "bzalc" - chebi: "CHEBI:17987" - kegg.compound: "C00556" - metanetx.chemical: "MNXM562" - sbo: "SBO:0000247" - - !!omap - - id: "s_3800" - - name: "benzaldehyde" - - compartment: "c" - - formula: "C7H6O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3800" + - name: "benzaldehyde" + - compartment: "c" + - formula: "C7H6O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "bzal" - chebi: "CHEBI:17169" - kegg.compound: "C00261" - metanetx.chemical: "MNXM371" - sbo: "SBO:0000247" - - !!omap - - id: "s_3801" - - name: "Mn(2+)" - - compartment: "c" - - formula: "Mn" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_3801" + - name: "Mn(2+)" + - compartment: "c" + - formula: "Mn" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "mn2" - chebi: "CHEBI:29035" - kegg.compound: "C19610" - metanetx.chemical: "MNXM2255" - sbo: "SBO:0000247" - - !!omap - - id: "s_3802" - - name: "Mn(2+)" - - compartment: "er" - - formula: "Mn" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_3802" + - name: "Mn(2+)" + - compartment: "er" + - formula: "Mn" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "mn2" - chebi: "CHEBI:29035" - kegg.compound: "C19610" - metanetx.chemical: "MNXM2255" - sbo: "SBO:0000247" - - !!omap - - id: "s_3805" - - name: "Mannitol" - - compartment: "c" - - formula: "C6H14O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3805" + - name: "Mannitol" + - compartment: "c" + - formula: "C6H14O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "mnl" - chebi: "CHEBI:16899" - kegg.compound: "C00392" - metanetx.chemical: "MNXM615" - sbo: "SBO:0000247" - - !!omap - - id: "s_3806" - - name: "4-hydroxy-4-methyl-2-oxoglutarate" - - compartment: "c" - - formula: "C6H6O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3806" + - name: "4-hydroxy-4-methyl-2-oxoglutarate" + - compartment: "c" + - formula: "C6H6O6" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:58276" - kegg.compound: "C06033" - metanetx.chemical: "MNXM2196" - sbo: "SBO:0000247" - - !!omap - - id: "s_3807" - - name: "L-methionine (S)-S-oxide" - - compartment: "c" - - formula: "C5H11NO3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3807" + - name: "L-methionine (S)-S-oxide" + - compartment: "c" + - formula: "C5H11NO3S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:49031" - kegg.compound: "C15999" - metanetx.chemical: "MNXM722780" - sbo: "SBO:0000247" - - !!omap - - id: "s_3808" - - name: "tRNA(Pro)" - - compartment: "m" - - formula: "RH" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3808" + - name: "tRNA(Pro)" + - compartment: "m" + - formula: "RH" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "trnapro" - chebi: "CHEBI:29177" - kegg.compound: "C01649" - metanetx.chemical: "MNXM90667" - sbo: "SBO:0000247" - - !!omap - - id: "s_3809" - - name: "Pro-tRNA(Pro)" - - compartment: "m" - - formula: "C5H9NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3809" + - name: "Pro-tRNA(Pro)" + - compartment: "m" + - formula: "C5H9NOR" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "protrna" - chebi: "CHEBI:29154" - kegg.compound: "C02702" - metanetx.chemical: "MNXM247" - sbo: "SBO:0000247" - - !!omap - - id: "s_3810" - - name: "5-oxo-L-proline" - - compartment: "c" - - formula: "C5H6NO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3810" + - name: "5-oxo-L-proline" + - compartment: "c" + - formula: "C5H6NO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "5oxpro" - chebi: "CHEBI:58402" - kegg.compound: "C01879" - metanetx.chemical: "MNXM722719" - sbo: "SBO:0000247" - - !!omap - - id: "s_3811" - - name: "4a-Hydroxytetrahydrobiopterin" - - compartment: "m" - - formula: "C9H15N5O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3811" + - name: "4a-Hydroxytetrahydrobiopterin" + - compartment: "m" + - formula: "C9H15N5O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "hthbp" - chebi: "CHEBI:15642" - kegg.compound: "C15522" - metanetx.chemical: "MNXM31340" - sbo: "SBO:0000247" - - !!omap - - id: "s_3812" - - name: "Dihydrobiopterin" - - compartment: "m" - - formula: "C9H13N5O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3812" + - name: "Dihydrobiopterin" + - compartment: "m" + - formula: "C9H13N5O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "CE2705" - chebi: "CHEBI:20680" - kegg.compound: "C00268" - metanetx.chemical: "MNXM162257" - sbo: "SBO:0000247" - - !!omap - - id: "s_3813" - - name: "superoxide" - - compartment: "m" - - formula: "O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3813" + - name: "superoxide" + - compartment: "m" + - formula: "O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "o2s" - chebi: "CHEBI:18421" - kegg.compound: "C00704" - metanetx.chemical: "MNXM330" - sbo: "SBO:0000247" - - !!omap - - id: "s_3814" - - name: "2-deoxy-D-glucose 6-phosphate" - - compartment: "c" - - formula: "C6H11O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3814" + - name: "2-deoxy-D-glucose 6-phosphate" + - compartment: "c" + - formula: "C6H11O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "2doxg6p" - chebi: "CHEBI:84760" - kegg.compound: "C06369" - metanetx.chemical: "MNXM3809" - sbo: "SBO:0000247" - - !!omap - - id: "s_3815" - - name: "2-deoxy-D-glucose" - - compartment: "c" - - formula: "C6H12O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3815" + - name: "2-deoxy-D-glucose" + - compartment: "c" + - formula: "C6H12O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "2dglc" - chebi: "CHEBI:84755" - kegg.compound: "C00586" - metanetx.chemical: "MNXM2925" - sbo: "SBO:0000247" - - !!omap - - id: "s_3816" - - name: "[cytochrome c]-L-lysine" - - compartment: "c" - - formula: "C6H13N2O" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3816" + - name: "[cytochrome c]-L-lysine" + - compartment: "c" + - formula: "C6H13N2O" + - charge: 1 + - annotation: !!omap - chebi: "CHEBI:29969" - sbo: "SBO:0000247" - - !!omap - - id: "s_3817" - - name: "[cytochrome c]-N6-methyl-L-lysine" - - compartment: "c" - - formula: "C7H15N2O" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3817" + - name: "[cytochrome c]-N6-methyl-L-lysine" + - compartment: "c" + - formula: "C7H15N2O" + - charge: 1 + - annotation: !!omap - chebi: "CHEBI:61929" - sbo: "SBO:0000247" - - !!omap - - id: "s_3818" - - name: "S-adenosyl-L-methionine" - - compartment: "n" - - formula: "C15H23N6O5S" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3818" + - name: "S-adenosyl-L-methionine" + - compartment: "n" + - formula: "C15H23N6O5S" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "amet" - chebi: "CHEBI:67040" - kegg.compound: "C00019" - metanetx.chemical: "MNXM16" - sbo: "SBO:0000247" - - !!omap - - id: "s_3819" - - name: "L-lysine-[histone]" - - compartment: "n" - - formula: "C6H13N2OR2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3819" + - name: "L-lysine-[histone]" + - compartment: "n" + - formula: "C6H13N2OR2" + - charge: 1 + - annotation: !!omap - chebi: "CHEBI:29969" - metanetx.chemical: "MNXM59465" - sbo: "SBO:0000247" - - !!omap - - id: "s_3820" - - name: "S-adenosyl-L-homocysteine" - - compartment: "n" - - formula: "C14H20N6O5S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3820" + - name: "S-adenosyl-L-homocysteine" + - compartment: "n" + - formula: "C14H20N6O5S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ahcys" - chebi: "CHEBI:16680" - kegg.compound: "C00021" - metanetx.chemical: "MNXM19" - sbo: "SBO:0000247" - - !!omap - - id: "s_3821" - - name: "N6-methyl-L-lysine-[histone]" - - compartment: "n" - - formula: "C7H15N2OR2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3821" + - name: "N6-methyl-L-lysine-[histone]" + - compartment: "n" + - formula: "C7H15N2OR2" + - charge: 1 + - annotation: !!omap - chebi: "CHEBI:61929" - metanetx.chemical: "MNXM63025" - sbo: "SBO:0000247" - - !!omap - - id: "s_3822" - - name: "Zn(2+)" - - compartment: "c" - - formula: "Zn" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_3822" + - name: "Zn(2+)" + - compartment: "c" + - formula: "Zn" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "zn2" - chebi: "CHEBI:29105" - kegg.compound: "C00038" - metanetx.chemical: "MNXM149" - sbo: "SBO:0000247" - - !!omap - - id: "s_3823" - - name: "Zn(2+)" - - compartment: "er" - - formula: "Zn" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_3823" + - name: "Zn(2+)" + - compartment: "er" + - formula: "Zn" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "zn2" - chebi: "CHEBI:29105" - kegg.compound: "C00038" - metanetx.chemical: "MNXM149" - sbo: "SBO:0000247" - - !!omap - - id: "s_3826" - - name: "Ferricytochrome b5" - - compartment: "m" - - formula: "Fe" - - charge: 3 - - annotation: !!omap + - !!omap + - id: "s_3826" + - name: "Ferricytochrome b5" + - compartment: "m" + - formula: "Fe" + - charge: 3 + - annotation: !!omap - bigg.metabolite: "ficytb5" - chebi: "CHEBI:18097" - kegg.compound: "C00996" - metanetx.chemical: "MNXM1083" - sbo: "SBO:0000247" - - !!omap - - id: "s_3827" - - name: "Ferrocytochrome b5" - - compartment: "m" - - formula: "Fe" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_3827" + - name: "Ferrocytochrome b5" + - compartment: "m" + - formula: "Fe" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "focytb5" - kegg.compound: "C00999" - sbo: "SBO:0000247" - - !!omap - - id: "s_3828" - - name: "(S)-benzoin" - - compartment: "c" - - formula: "C14H12O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3828" + - name: "(S)-benzoin" + - compartment: "c" + - formula: "C14H12O2" + - charge: 0 + - annotation: !!omap - kegg.compound: "C20227" - metanetx.chemical: "MNXM5393" - sbo: "SBO:0000247" - - !!omap - - id: "s_3829" - - name: "benzil" - - compartment: "c" - - formula: "C14H10O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3829" + - name: "benzil" + - compartment: "c" + - formula: "C14H10O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:51507" - kegg.compound: "C20226" - metanetx.chemical: "MNXM2349" - sbo: "SBO:0000247" - - !!omap - - id: "s_3830" - - name: "RX" - - compartment: "er" - - formula: "RX" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3830" + - name: "RX" + - compartment: "er" + - formula: "RX" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17792" - kegg.compound: "C01322" - metanetx.chemical: "MNXM6428" - sbo: "SBO:0000247" - - !!omap - - id: "s_3831" - - name: "glutathione" - - compartment: "er" - - formula: "C10H16N3O6S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3831" + - name: "glutathione" + - compartment: "er" + - formula: "C10H16N3O6S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gthrd" - chebi: "CHEBI:57925" - kegg.compound: "C00051" - metanetx.chemical: "MNXM57" - sbo: "SBO:0000247" - - !!omap - - id: "s_3832" - - name: "HX" - - compartment: "er" - - formula: "X" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3832" + - name: "HX" + - compartment: "er" + - formula: "X" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:16042" - kegg.compound: "C00462" - metanetx.chemical: "MNXM55844" - sbo: "SBO:0000247" - - !!omap - - id: "s_3833" - - name: "R-S-glutathione" - - compartment: "er" - - formula: "C10H16N3O6SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3833" + - name: "R-S-glutathione" + - compartment: "er" + - formula: "C10H16N3O6SR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17021" - kegg.compound: "C02320" - metanetx.chemical: "MNXM3350" - sbo: "SBO:0000247" - - !!omap - - id: "s_3834" - - name: "RX" - - compartment: "c" - - formula: "RX" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3834" + - name: "RX" + - compartment: "c" + - formula: "RX" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17792" - kegg.compound: "C01322" - metanetx.chemical: "MNXM6428" - sbo: "SBO:0000247" - - !!omap - - id: "s_3835" - - name: "HX" - - compartment: "c" - - formula: "X" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3835" + - name: "HX" + - compartment: "c" + - formula: "X" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:16042" - kegg.compound: "C00462" - metanetx.chemical: "MNXM55844" - sbo: "SBO:0000247" - - !!omap - - id: "s_3836" - - name: "R-S-glutathione" - - compartment: "c" - - formula: "C10H16N3O6SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3836" + - name: "R-S-glutathione" + - compartment: "c" + - formula: "C10H16N3O6SR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17021" - kegg.compound: "C02320" - metanetx.chemical: "MNXM3350" - sbo: "SBO:0000247" - - !!omap - - id: "s_3837" - - name: "L-Methionine S-oxide" - - compartment: "c" - - formula: "C5H11NO3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3837" + - name: "L-Methionine S-oxide" + - compartment: "c" + - formula: "C5H11NO3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "metsox_S__L" - chebi: "CHEBI:17016" - kegg.compound: "C02989" - metanetx.chemical: "MNXM2246" - sbo: "SBO:0000247" - - !!omap - - id: "s_3838" - - name: "Ala-Gly" - - compartment: "v" - - formula: "C5H10N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3838" + - name: "Ala-Gly" + - compartment: "v" + - formula: "C5H10N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "L_alagly" - chebi: "CHEBI:73757" - metanetx.chemical: "MNXM15783" - sbo: "SBO:0000247" - - !!omap - - id: "s_3839" - - name: "L-glycine" - - compartment: "v" - - formula: "C2H5NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3839" + - name: "L-glycine" + - compartment: "v" + - formula: "C2H5NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly" - chebi: "CHEBI:15428" - kegg.compound: "C00037" - metanetx.chemical: "MNXM29" - sbo: "SBO:0000247" - - !!omap - - id: "s_3840" - - name: "Ala-Leu" - - compartment: "v" - - formula: "C9H18N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3840" + - name: "Ala-Leu" + - compartment: "v" + - formula: "C9H18N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_L_ile__L" - chebi: "CHEBI:73770" - metanetx.chemical: "MNXM15786" - sbo: "SBO:0000247" - - !!omap - - id: "s_3841" - - name: "Threo-3-hydroxy-L-aspartate" - - compartment: "c" - - formula: "C4H6NO5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3841" + - name: "Threo-3-hydroxy-L-aspartate" + - compartment: "c" + - formula: "C4H6NO5" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:57251" - kegg.compound: "C11511" - metanetx.chemical: "MNXM4918" - sbo: "SBO:0000247" - - !!omap - - id: "s_3842" - - name: "RX" - - compartment: "p" - - formula: "RX" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3842" + - name: "RX" + - compartment: "p" + - formula: "RX" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17792" - kegg.compound: "C01322" - metanetx.chemical: "MNXM6428" - sbo: "SBO:0000247" - - !!omap - - id: "s_3843" - - name: "glutathione" - - compartment: "p" - - formula: "C10H16N3O6S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3843" + - name: "glutathione" + - compartment: "p" + - formula: "C10H16N3O6S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gthrd" - chebi: "CHEBI:57925" - kegg.compound: "C00051" - metanetx.chemical: "MNXM57" - sbo: "SBO:0000247" - - !!omap - - id: "s_3844" - - name: "HX" - - compartment: "p" - - formula: "X" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3844" + - name: "HX" + - compartment: "p" + - formula: "X" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:16042" - kegg.compound: "C00462" - metanetx.chemical: "MNXM55844" - sbo: "SBO:0000247" - - !!omap - - id: "s_3845" - - name: "R-S-glutathione" - - compartment: "p" - - formula: "C10H16N3O6SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3845" + - name: "R-S-glutathione" + - compartment: "p" + - formula: "C10H16N3O6SR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17021" - kegg.compound: "C02320" - metanetx.chemical: "MNXM3350" - sbo: "SBO:0000247" - - !!omap - - id: "s_3846" - - name: "dehydroascorbate" - - compartment: "c" - - formula: "C6H6O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3846" + - name: "dehydroascorbate" + - compartment: "c" + - formula: "C6H6O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dhdascb" - chebi: "CHEBI:27956" - kegg.compound: "C05422" - metanetx.chemical: "MNXM250" - sbo: "SBO:0000247" - - !!omap - - id: "s_3847" - - name: "ascorbate" - - compartment: "c" - - formula: "C6H8O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3847" + - name: "ascorbate" + - compartment: "c" + - formula: "C6H8O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ascb__L" - chebi: "CHEBI:38290" - kegg.compound: "C00072" - metanetx.chemical: "MNXM129" - sbo: "SBO:0000247" - - !!omap - - id: "s_3848" - - name: "dehydroascorbate" - - compartment: "p" - - formula: "C6H6O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3848" + - name: "dehydroascorbate" + - compartment: "p" + - formula: "C6H6O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dhdascb" - chebi: "CHEBI:27956" - kegg.compound: "C05422" - metanetx.chemical: "MNXM250" - sbo: "SBO:0000247" - - !!omap - - id: "s_3849" - - name: "glutathione disulfide" - - compartment: "p" - - formula: "C20H30N6O12S2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3849" + - name: "glutathione disulfide" + - compartment: "p" + - formula: "C20H30N6O12S2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "gthox" - chebi: "CHEBI:58297" - kegg.compound: "C00127" - metanetx.chemical: "MNXM151" - sbo: "SBO:0000247" - - !!omap - - id: "s_3850" - - name: "ascorbate" - - compartment: "p" - - formula: "C6H8O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3850" + - name: "ascorbate" + - compartment: "p" + - formula: "C6H8O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ascb__L" - chebi: "CHEBI:38290" - kegg.compound: "C00072" - metanetx.chemical: "MNXM129" - sbo: "SBO:0000247" - - !!omap - - id: "s_3851" - - name: "Cyanamide" - - compartment: "c" - - formula: "CH2N2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3851" + - name: "Cyanamide" + - compartment: "c" + - formula: "CH2N2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:16698" - kegg.compound: "C01566" - metanetx.chemical: "MNXM4538" - sbo: "SBO:0000247" - - !!omap - - id: "s_3852" - - name: "aldehydo-D-ribose 5-phosphate" - - compartment: "c" - - formula: "C5H9O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3852" + - name: "aldehydo-D-ribose 5-phosphate" + - compartment: "c" + - formula: "C5H9O8P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:58273" - kegg.compound: "C00117" - metanetx.chemical: "MNXM722712" - sbo: "SBO:0000247" - - !!omap - - id: "s_3853" - - name: "R-S-Cysteinylglycine" - - compartment: "c" - - formula: "C5H9N2O3SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3853" + - name: "R-S-Cysteinylglycine" + - compartment: "c" + - formula: "C5H9N2O3SR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:8744" - kegg.compound: "C05729" - metanetx.chemical: "MNXM7734" - sbo: "SBO:0000247" - - !!omap - - id: "s_3854" - - name: "S-Substituted L-cysteine" - - compartment: "c" - - formula: "C3H6NO2SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3854" + - name: "S-Substituted L-cysteine" + - compartment: "c" + - formula: "C3H6NO2SR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:47910" - kegg.compound: "C05726" - metanetx.chemical: "MNXM96107" - sbo: "SBO:0000247" - - !!omap - - id: "s_3855" - - name: "iron(3+)" - - compartment: "m" - - formula: "Fe" - - charge: 3 - - annotation: !!omap + - !!omap + - id: "s_3855" + - name: "iron(3+)" + - compartment: "m" + - formula: "Fe" + - charge: 3 + - annotation: !!omap - bigg.metabolite: "fe3" - chebi: "CHEBI:29034" - kegg.compound: "C14819" - metanetx.chemical: "MNXM196" - sbo: "SBO:0000247" - - !!omap - - id: "s_3856" - - name: "Glycyl-tRNA(Ala)" - - compartment: "c" - - formula: "C2H5NOR" - - charge: 1 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3857" - - name: "D-tyrosyl-tRNA(Tyr)" - - compartment: "c" - - formula: "C9H11NO2R" - - charge: 1 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3858" - - name: "D-tyrosine" - - compartment: "c" - - formula: "C9H11NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3856" + - name: "Glycyl-tRNA(Ala)" + - compartment: "c" + - formula: "C2H5NOR" + - charge: 1 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3857" + - name: "D-tyrosyl-tRNA(Tyr)" + - compartment: "c" + - formula: "C9H11NO2R" + - charge: 1 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3858" + - name: "D-tyrosine" + - compartment: "c" + - formula: "C9H11NO3" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:28479" - kegg.compound: "C06420" - metanetx.chemical: "MNXM5704" - sbo: "SBO:0000247" - - !!omap - - id: "s_3859" - - name: "4-nitrophenyl phosphate" - - compartment: "c" - - formula: "C6H4NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3859" + - name: "4-nitrophenyl phosphate" + - compartment: "c" + - formula: "C6H4NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "HC01104" - chebi: "CHEBI:61146" - kegg.compound: "C03360" - metanetx.chemical: "MNXM3867" - sbo: "SBO:0000247" - - !!omap - - id: "s_3860" - - name: "4-nitrophenol" - - compartment: "c" - - formula: "C6H4NO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3860" + - name: "4-nitrophenol" + - compartment: "c" + - formula: "C6H4NO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "4nph" - chebi: "CHEBI:57917" - kegg.compound: "C00870" - metanetx.chemical: "MNXM526" - sbo: "SBO:0000247" - - !!omap - - id: "s_3861" - - name: "L-iditol" - - compartment: "c" - - formula: "C6H14O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3861" + - name: "L-iditol" + - compartment: "c" + - formula: "C6H14O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "C01507" - chebi: "CHEBI:18202" - kegg.compound: "C01507" - metanetx.chemical: "MNXM3633" - sbo: "SBO:0000247" - - !!omap - - id: "s_3862" - - name: "alpha-D-Galactose" - - compartment: "c" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3862" + - name: "alpha-D-Galactose" + - compartment: "c" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "a_gal__D" - chebi: "CHEBI:28061" - kegg.compound: "C00984" - metanetx.chemical: "MNXM390" - sbo: "SBO:0000247" - - !!omap - - id: "s_3863" - - name: "3-hydroxy-2-methylpropanoyl-CoA" - - compartment: "m" - - formula: "C25H38N7O18P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3863" + - name: "3-hydroxy-2-methylpropanoyl-CoA" + - compartment: "m" + - formula: "C25H38N7O18P3S" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:57340" - kegg.compound: "C04047" - metanetx.chemical: "MNXM1034" - sbo: "SBO:0000247" - - !!omap - - id: "s_3864" - - name: "3-hydroxy-2-methylpropanoate" - - compartment: "m" - - formula: "C4H7O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3864" + - name: "3-hydroxy-2-methylpropanoate" + - compartment: "m" + - formula: "C4H7O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3hmp" - chebi: "CHEBI:11805" - kegg.compound: "C01188" - metanetx.chemical: "MNXM396" - sbo: "SBO:0000247" - - !!omap - - id: "s_3865" - - name: "sterols" - - compartment: "e" - - formula: "C19H31OR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3865" + - name: "sterols" + - compartment: "e" + - formula: "C19H31OR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:15889" - kegg.compound: "C00370" - metanetx.chemical: "MNXM82761" - sbo: "SBO:0000247" - - !!omap - - id: "s_3866" - - name: "sterols" - - compartment: "c" - - formula: "C19H31OR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3866" + - name: "sterols" + - compartment: "c" + - formula: "C19H31OR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:15889" - kegg.compound: "C00370" - metanetx.chemical: "MNXM82761" - sbo: "SBO:0000247" - - !!omap - - id: "s_3867" - - name: "2-Phenylacetamide" - - compartment: "c" - - formula: "C8H9NO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3867" + - name: "2-Phenylacetamide" + - compartment: "c" + - formula: "C8H9NO" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pad" - chebi: "CHEBI:16562" - kegg.compound: "C02505" - metanetx.chemical: "MNXM2073" - sbo: "SBO:0000247" - - !!omap - - id: "s_3868" - - name: "(Indol-3-yl)acetamide" - - compartment: "c" - - formula: "C10H10N2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3868" + - name: "(Indol-3-yl)acetamide" + - compartment: "c" + - formula: "C10H10N2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "iad" - chebi: "CHEBI:16031" - kegg.compound: "C02693" - metanetx.chemical: "MNXM2239" - sbo: "SBO:0000247" - - !!omap - - id: "s_3871" - - name: "Acrylic acid" - - compartment: "c" - - formula: "C3H3O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3871" + - name: "Acrylic acid" + - compartment: "c" + - formula: "C3H3O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "acryl" - chebi: "CHEBI:37080" - kegg.compound: "C00511" - metanetx.chemical: "MNXM1368" - sbo: "SBO:0000247" - - !!omap - - id: "s_3872" - - name: "Acrylamide" - - compartment: "c" - - formula: "C3H5NO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3872" + - name: "Acrylamide" + - compartment: "c" + - formula: "C3H5NO" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "aa" - chebi: "CHEBI:28619" - kegg.compound: "C01659" - metanetx.chemical: "MNXM3208" - sbo: "SBO:0000247" - - !!omap - - id: "s_3873" - - name: "Benzamide" - - compartment: "c" - - formula: "C7H7NO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3873" + - name: "Benzamide" + - compartment: "c" + - formula: "C7H7NO" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:28179" - kegg.compound: "C09815" - metanetx.chemical: "MNXM5065" - sbo: "SBO:0000247" - - !!omap - - id: "s_3874" - - name: "Benzoate" - - compartment: "c" - - formula: "C7H5O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3874" + - name: "Benzoate" + - compartment: "c" + - formula: "C7H5O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "bz" - chebi: "CHEBI:16150" - kegg.compound: "C00180" - metanetx.chemical: "MNXM217" - sbo: "SBO:0000247" - - !!omap - - id: "s_3875" - - name: "D-gluconate" - - compartment: "c" - - formula: "C6H11O7" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3875" + - name: "D-gluconate" + - compartment: "c" + - formula: "C6H11O7" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glcn" - chebi: "CHEBI:18391" - kegg.compound: "C00257" - metanetx.chemical: "MNXM341" - sbo: "SBO:0000247" - - !!omap - - id: "s_3876" - - name: "Protein C-terminal S-farnesyl-L-cysteine" - - compartment: "c" - - formula: "C20H32N2O3SR" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3876" + - name: "Protein C-terminal S-farnesyl-L-cysteine" + - compartment: "c" + - formula: "C20H32N2O3SR" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:17171" - kegg.compound: "C04506" - metanetx.chemical: "MNXM5285" - sbo: "SBO:0000247" - - !!omap - - id: "s_3877" - - name: "Protein C-terminal S-farnesyl-L-cysteine methyl ester" - - compartment: "c" - - formula: "C21H35N2O3SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3877" + - name: "Protein C-terminal S-farnesyl-L-cysteine methyl ester" + - compartment: "c" + - formula: "C21H35N2O3SR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:15818" - kegg.compound: "C04748" - metanetx.chemical: "MNXM6400" - sbo: "SBO:0000247" - - !!omap - - id: "s_3878" - - name: "1-phosphatidyl-1D-myo-inositol" - - compartment: "er" - - formula: "C11H16O13PR2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3878" + - name: "1-phosphatidyl-1D-myo-inositol" + - compartment: "er" + - formula: "C11H16O13PR2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "pail_cho" - chebi: "CHEBI:57880" - kegg.compound: "C01194" - metanetx.chemical: "MNXM62" - sbo: "SBO:0000247" - - !!omap - - id: "s_3879" - - name: "G00143" - - compartment: "er" - - formula: "C19H29NO18PR2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3879" + - name: "G00143" + - compartment: "er" + - formula: "C19H29NO18PR2" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:57265" - metanetx.chemical: "MNXM92477" - sbo: "SBO:0000247" - - !!omap - - id: "s_3880" - - name: "Ca(2+)" - - compartment: "c" - - formula: "Ca" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_3880" + - name: "Ca(2+)" + - compartment: "c" + - formula: "Ca" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "ca2" - chebi: "CHEBI:29108" - kegg.compound: "C00076" - metanetx.chemical: "MNXM128" - sbo: "SBO:0000247" - - !!omap - - id: "s_3881" - - name: "ATP" - - compartment: "v" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3881" + - name: "ATP" + - compartment: "v" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "atp" - chebi: "CHEBI:30616" - kegg.compound: "C00002" - metanetx.chemical: "MNXM3" - sbo: "SBO:0000247" - - !!omap - - id: "s_3882" - - name: "Ca(2+)" - - compartment: "v" - - formula: "Ca" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_3882" + - name: "Ca(2+)" + - compartment: "v" + - formula: "Ca" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "ca2" - chebi: "CHEBI:29108" - kegg.compound: "C00076" - metanetx.chemical: "MNXM128" - sbo: "SBO:0000247" - - !!omap - - id: "s_3883" - - name: "ADP" - - compartment: "v" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3883" + - name: "ADP" + - compartment: "v" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "adp" - chebi: "CHEBI:456216" - kegg.compound: "C00008" - metanetx.chemical: "MNXM7" - sbo: "SBO:0000247" - - !!omap - - id: "s_3884" - - name: "generic protein" - - compartment: "c" - - formula: "C2H4NOR" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3884" + - name: "generic protein" + - compartment: "c" + - formula: "C2H4NOR" + - charge: 1 + - annotation: !!omap - kegg.compound: "C00017" - sbo: "SBO:0000247" - - !!omap - - id: "s_3885" - - name: "L-Arginyl-protein" - - compartment: "c" - - formula: "C8H17N5O2R" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_3885" + - name: "L-Arginyl-protein" + - compartment: "c" + - formula: "C8H17N5O2R" + - charge: 2 + - annotation: !!omap - chebi: "CHEBI:17518" - kegg.compound: "C16739" - metanetx.chemical: "MNXM73312" - sbo: "SBO:0000247" - - !!omap - - id: "s_3886" - - name: "Protein asparagine" - - compartment: "er" - - formula: "C4H6N2O2R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3886" + - name: "Protein asparagine" + - compartment: "er" + - formula: "C4H6N2O2R" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:50347" - kegg.compound: "C03021" - sbo: "SBO:0000247" - - !!omap - - id: "s_3887" - - name: "G00008" - - compartment: "er" - - formula: "C108H182N2O77P2R" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3887" + - name: "G00008" + - compartment: "er" + - formula: "C108H182N2O77P2R" + - charge: -2 + - annotation: !!omap - metanetx.chemical: "MNXM9308" - sbo: "SBO:0000247" - - !!omap - - id: "s_3888" - - name: "Dolichyl diphosphate" - - compartment: "er" - - formula: "C20H35O7P2R" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3888" + - name: "Dolichyl diphosphate" + - compartment: "er" + - formula: "C20H35O7P2R" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:57497" - kegg.compound: "C00621" - metanetx.chemical: "MNXM2370" - sbo: "SBO:0000247" - - !!omap - - id: "s_3889" - - name: "G00009" - - compartment: "er" - - formula: "C92H152N4O72R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3889" + - name: "G00009" + - compartment: "er" + - formula: "C92H152N4O72R" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:132537" - sbo: "SBO:0000247" - - !!omap - - id: "s_3890" - - name: "GDP-alpha-D-mannose" - - compartment: "er" - - formula: "C16H23N5O16P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3890" + - name: "GDP-alpha-D-mannose" + - compartment: "er" + - formula: "C16H23N5O16P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "gdpmann" - chebi: "CHEBI:57527" - kegg.compound: "C00096" - metanetx.chemical: "MNXM82" - sbo: "SBO:0000247" - - !!omap - - id: "s_3891" - - name: "G10694" - - compartment: "er" - - formula: "C68H112N4O52R" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3892" - - name: "GDP" - - compartment: "er" - - formula: "C10H12N5O11P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3891" + - name: "G10694" + - compartment: "er" + - formula: "C68H112N4O52R" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3892" + - name: "GDP" + - compartment: "er" + - formula: "C10H12N5O11P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "gdp" - chebi: "CHEBI:58189" - kegg.compound: "C00035" - metanetx.chemical: "MNXM30" - sbo: "SBO:0000247" - - !!omap - - id: "s_3893" - - name: "G01813" - - compartment: "er" - - formula: "C74H122N4O57R" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3894" - - name: "G00003" - - compartment: "er" - - formula: "C42H72N2O22P2R" - - charge: -2 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3895" - - name: "G00004" - - compartment: "er" - - formula: "C48H82N2O27P2R" - - charge: -2 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3896" - - name: "G00005" - - compartment: "er" - - formula: "C54H92N2O32P2R" - - charge: -2 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3897" - - name: "2-O-(6-phospho-alpha-D-mannosyl)-D-glycerate" - - compartment: "v" - - formula: "C9H14O12P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3893" + - name: "G01813" + - compartment: "er" + - formula: "C74H122N4O57R" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3894" + - name: "G00003" + - compartment: "er" + - formula: "C42H72N2O22P2R" + - charge: -2 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3895" + - name: "G00004" + - compartment: "er" + - formula: "C48H82N2O27P2R" + - charge: -2 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3896" + - name: "G00005" + - compartment: "er" + - formula: "C54H92N2O32P2R" + - charge: -2 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3897" + - name: "2-O-(6-phospho-alpha-D-mannosyl)-D-glycerate" + - compartment: "v" + - formula: "C9H14O12P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "man6pglyc" - chebi: "CHEBI:60331" - kegg.compound: "C16699" - metanetx.chemical: "MNXM3470" - sbo: "SBO:0000247" - - !!omap - - id: "s_3898" - - name: "D-mannose 6-phosphate" - - compartment: "v" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3898" + - name: "D-mannose 6-phosphate" + - compartment: "v" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "man6p" - chebi: "CHEBI:17369" - kegg.compound: "C00275" - metanetx.chemical: "MNXM427" - sbo: "SBO:0000247" - - !!omap - - id: "s_3899" - - name: "D-Glycerate" - - compartment: "v" - - formula: "C3H5O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3899" + - name: "D-Glycerate" + - compartment: "v" + - formula: "C3H5O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glyc__R" - chebi: "CHEBI:16659" - kegg.compound: "C00258" - metanetx.chemical: "MNXM189" - sbo: "SBO:0000247" - - !!omap - - id: "s_3900" - - name: "alpha-D-mannoside" - - compartment: "v" - - formula: "C6H11O6R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3900" + - name: "alpha-D-mannoside" + - compartment: "v" + - formula: "C6H11O6R" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:27535" - kegg.compound: "C02603" - metanetx.chemical: "MNXM3535" - sbo: "SBO:0000247" - - !!omap - - id: "s_3901" - - name: "alpha-D-mannopyranose" - - compartment: "v" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3901" + - name: "alpha-D-mannopyranose" + - compartment: "v" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:28729" - kegg.compound: "C00936" - metanetx.chemical: "MNXM919" - sbo: "SBO:0000247" - - !!omap - - id: "s_3902" - - name: "non glycosylated sugar acceptor" - - compartment: "v" - - formula: "HOR" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3903" - - name: "L-Threonylcarbamoyladenylate" - - compartment: "c" - - formula: "C15H19N6O11P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3902" + - name: "non glycosylated sugar acceptor" + - compartment: "v" + - formula: "HOR" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3903" + - name: "L-Threonylcarbamoyladenylate" + - compartment: "c" + - formula: "C15H19N6O11P" + - charge: -2 + - annotation: !!omap - kegg.compound: "C20641" - metanetx.chemical: "MNXM145767" - sbo: "SBO:0000247" - - !!omap - - id: "s_3904" - - name: "D-Serine" - - compartment: "c" - - formula: "C3H7NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3904" + - name: "D-Serine" + - compartment: "c" + - formula: "C3H7NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ser__D" - chebi: "CHEBI:16523" - kegg.compound: "C00740" - metanetx.chemical: "MNXM694" - sbo: "SBO:0000247" - - !!omap - - id: "s_3905" - - name: "O-acetyl-L-serine" - - compartment: "m" - - formula: "C5H9NO4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3905" + - name: "O-acetyl-L-serine" + - compartment: "m" + - formula: "C5H9NO4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "acser" - chebi: "CHEBI:17981" - kegg.compound: "C00979" - metanetx.chemical: "MNXM418" - sbo: "SBO:0000247" - - !!omap - - id: "s_3906" - - name: "hydrogen sulfide" - - compartment: "m" - - formula: "HS" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3906" + - name: "hydrogen sulfide" + - compartment: "m" + - formula: "HS" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "h2s" - chebi: "CHEBI:29919" - kegg.compound: "C00283" - metanetx.chemical: "MNXM89582" - sbo: "SBO:0000247" - - !!omap - - id: "s_3907" - - name: "phosphatidate" - - compartment: "m" - - formula: "C5H7O8PR2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3907" + - name: "phosphatidate" + - compartment: "m" + - formula: "C5H7O8PR2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pa_EC" - chebi: "CHEBI:16337" - kegg.compound: "C00416" - metanetx.chemical: "MNXM96054" - sbo: "SBO:0000247" - - !!omap - - id: "s_3908" - - name: "CDP-diacylglycerol" - - compartment: "m" - - formula: "C14H19N3O15P2R2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3908" + - name: "CDP-diacylglycerol" + - compartment: "m" + - formula: "C14H19N3O15P2R2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cdpdag_cho" - chebi: "CHEBI:17962" - kegg.compound: "C00269" - metanetx.chemical: "MNXM201" - sbo: "SBO:0000247" - - !!omap - - id: "s_3909" - - name: "Sulfur donor" - - compartment: "c" - - formula: "" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3909" + - name: "Sulfur donor" + - compartment: "c" + - formula: "" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:80867" - kegg.compound: "C17023" - metanetx.chemical: "MNXM4111" - sbo: "SBO:0000247" - - !!omap - - id: "s_3910" - - name: "ADP-5-ethyl-4-methylthiazole-2-carboxylate" - - compartment: "c" - - formula: "C17H19N6O12P2S" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3910" + - name: "ADP-5-ethyl-4-methylthiazole-2-carboxylate" + - compartment: "c" + - formula: "C17H19N6O12P2S" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:134399" - kegg.compound: "C20784" - metanetx.chemical: "MNXM722955" - sbo: "SBO:0000247" - - !!omap - - id: "s_3911" - - name: "Dolichyl beta-D-glucosyl phosphate" - - compartment: "er" - - formula: "C26H46O9PR" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3911" + - name: "Dolichyl beta-D-glucosyl phosphate" + - compartment: "er" + - formula: "C26H46O9PR" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:57525" - kegg.compound: "C01246" - metanetx.chemical: "MNXM145615" - sbo: "SBO:0000247" - - !!omap - - id: "s_3912" - - name: "G10599" - - compartment: "er" - - formula: "C102H172N2O72P2R" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3912" + - name: "G10599" + - compartment: "er" + - formula: "C102H172N2O72P2R" + - charge: -2 + - annotation: !!omap - metanetx.chemical: "MNXM9258" - sbo: "SBO:0000247" - - !!omap - - id: "s_3913" - - name: "nitric oxide" - - compartment: "c" - - formula: "NO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3913" + - name: "nitric oxide" + - compartment: "c" + - formula: "NO" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "no" - chebi: "CHEBI:16480" - kegg.compound: "C00533" - metanetx.chemical: "MNXM228" - sbo: "SBO:0000247" - - !!omap - - id: "s_3914" - - name: "nitrate" - - compartment: "c" - - formula: "NO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3914" + - name: "nitrate" + - compartment: "c" + - formula: "NO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "no3" - chebi: "CHEBI:17632" - kegg.compound: "C00244" - metanetx.chemical: "MNXM207" - sbo: "SBO:0000247" - - !!omap - - id: "s_3915" - - name: "(R)-Lipoate" - - compartment: "c" - - formula: "C8H13O2S2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3915" + - name: "(R)-Lipoate" + - compartment: "c" + - formula: "C8H13O2S2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lipoate" - chebi: "CHEBI:83088" - kegg.compound: "C16241" - metanetx.chemical: "MNXM1484" - sbo: "SBO:0000247" - - !!omap - - id: "s_3916" - - name: "Lipoyl-AMP" - - compartment: "c" - - formula: "C18H25N5O8PS2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3916" + - name: "Lipoyl-AMP" + - compartment: "c" + - formula: "C18H25N5O8PS2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lipoamp" - chebi: "CHEBI:83091" - kegg.compound: "C16238" - metanetx.chemical: "MNXM2392" - sbo: "SBO:0000247" - - !!omap - - id: "s_3917" - - name: "Apoprotein" - - compartment: "c" - - formula: "NH2R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3917" + - name: "Apoprotein" + - compartment: "c" + - formula: "NH2R" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:13850" - kegg.compound: "C16240" - metanetx.chemical: "MNXM91491" - sbo: "SBO:0000247" - - !!omap - - id: "s_3918" - - name: "Protein N6-(lipoyl)lysine" - - compartment: "c" - - formula: "C8H14NOS2R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3918" + - name: "Protein N6-(lipoyl)lysine" + - compartment: "c" + - formula: "C8H14NOS2R" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:80399" - kegg.compound: "C16237" - metanetx.chemical: "MNXM96070" - sbo: "SBO:0000247" - - !!omap - - id: "s_3923" - - name: "N-(4-oxoglutarate)-L-cysteinylglycine" - - compartment: "c" - - formula: "C10H12N2O7S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3923" + - name: "N-(4-oxoglutarate)-L-cysteinylglycine" + - compartment: "c" + - formula: "C10H12N2O7S" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:138256" - sbo: "SBO:0000247" - - !!omap - - id: "s_3924" - - name: "N-(4-oxoglutarate)-L-cysteinylglycine" - - compartment: "m" - - formula: "C10H12N2O7S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3924" + - name: "N-(4-oxoglutarate)-L-cysteinylglycine" + - compartment: "m" + - formula: "C10H12N2O7S" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:138256" - sbo: "SBO:0000247" - - !!omap - - id: "s_3925" - - name: "L-cysteinylglycine" - - compartment: "m" - - formula: "C5H10N2O3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3925" + - name: "L-cysteinylglycine" + - compartment: "m" + - formula: "C5H10N2O3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cgly" - chebi: "CHEBI:4047" - kegg.compound: "C01419" - metanetx.chemical: "MNXM683" - sbo: "SBO:0000247" - - !!omap - - id: "s_3926" - - name: "chloride" - - compartment: "g" - - formula: "Cl" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3926" + - name: "chloride" + - compartment: "g" + - formula: "Cl" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "cl" - chebi: "CHEBI:17996" - kegg.compound: "C00698" - metanetx.chemical: "MNXM43" - sbo: "SBO:0000247" - - !!omap - - id: "s_3927" - - name: "ribonucleoside 5'-triphosphate" - - compartment: "c" - - formula: "C5H8O13P3R" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3927" + - name: "ribonucleoside 5'-triphosphate" + - compartment: "c" + - formula: "C5H8O13P3R" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:61557" - kegg.compound: "C03802" - metanetx.chemical: "MNXM96380" - sbo: "SBO:0000247" - - !!omap - - id: "s_3928" - - name: "ribonucleoside 5'-phosphate" - - compartment: "c" - - formula: "C5H8O7PR" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3928" + - name: "ribonucleoside 5'-phosphate" + - compartment: "c" + - formula: "C5H8O7PR" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:58043" - kegg.compound: "C00171" - metanetx.chemical: "MNXM80910" - sbo: "SBO:0000247" - - !!omap - - id: "s_3929" - - name: "2'-deoxyribonucleoside 5'-triphosphate" - - compartment: "c" - - formula: "C5H8O12P3R" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3929" + - name: "2'-deoxyribonucleoside 5'-triphosphate" + - compartment: "c" + - formula: "C5H8O12P3R" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:61560" - kegg.compound: "C00677" - metanetx.chemical: "MNXM96330" - sbo: "SBO:0000247" - - !!omap - - id: "s_3930" - - name: "2'-deoxyribonucleoside 5'-phosphate" - - compartment: "c" - - formula: "C5H8O6PR" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3930" + - name: "2'-deoxyribonucleoside 5'-phosphate" + - compartment: "c" + - formula: "C5H8O6PR" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:65317" - kegg.compound: "C00676" - metanetx.chemical: "MNXM6057" - sbo: "SBO:0000247" - - !!omap - - id: "s_3931" - - name: "superoxide" - - compartment: "c" - - formula: "O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3931" + - name: "superoxide" + - compartment: "c" + - formula: "O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "o2s" - chebi: "CHEBI:18421" - kegg.compound: "C00704" - metanetx.chemical: "MNXM330" - sbo: "SBO:0000247" - - !!omap - - id: "s_3932" - - name: "G00012" - - compartment: "er" - - formula: "C50H82N4O37" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3932" + - name: "G00012" + - compartment: "er" + - formula: "C50H82N4O37" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM9328" - sbo: "SBO:0000247" - - !!omap - - id: "s_3933" - - name: "D-mannose" - - compartment: "er" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3933" + - name: "D-mannose" + - compartment: "er" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "man" - chebi: "CHEBI:4208" - kegg.compound: "C00159" - metanetx.chemical: "MNXM182" - sbo: "SBO:0000247" - - !!omap - - id: "s_3934" - - name: "Ethylnitronate" - - compartment: "c" - - formula: "C2H5NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3934" + - name: "Ethylnitronate" + - compartment: "c" + - formula: "C2H5NO2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:16268" - kegg.compound: "C18091" - metanetx.chemical: "MNXM2143" - sbo: "SBO:0000247" - - !!omap - - id: "s_3935" - - name: "Nitrite" - - compartment: "c" - - formula: "NO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3935" + - name: "Nitrite" + - compartment: "c" + - formula: "NO2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "no2" - chebi: "CHEBI:16301" - kegg.compound: "C00088" - metanetx.chemical: "MNXM107" - sbo: "SBO:0000247" - - !!omap - - id: "s_3936" - - name: "iron(3+)" - - compartment: "e" - - formula: "Fe" - - charge: 3 - - annotation: !!omap + - !!omap + - id: "s_3936" + - name: "iron(3+)" + - compartment: "e" + - formula: "Fe" + - charge: 3 + - annotation: !!omap - bigg.metabolite: "fe3" - kegg.compound: "C14819" - metanetx.chemical: "MNXM196" - sbo: "SBO:0000247" - - !!omap - - id: "s_3937" - - name: "Acyl-CoA" - - compartment: "er" - - formula: "C22H31N7O17P3SR" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3937" + - name: "Acyl-CoA" + - compartment: "er" + - formula: "C22H31N7O17P3SR" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "acoa" - chebi: "CHEBI:58342" - kegg.compound: "C00040" - metanetx.chemical: "MNXM44" - sbo: "SBO:0000247" - - !!omap - - id: "s_3938" - - name: "1-acyl-sn-glycerol 3-phosphate" - - compartment: "er" - - formula: "C4H6O7PR" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3938" + - name: "1-acyl-sn-glycerol 3-phosphate" + - compartment: "er" + - formula: "C4H6O7PR" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "1ag3p_SC" - chebi: "CHEBI:57970" - kegg.compound: "C00681" - metanetx.chemical: "MNXM145527" - sbo: "SBO:0000247" - - !!omap - - id: "s_3939" - - name: "1,2-diacyl-sn-glycerol 3-phosphate" - - compartment: "er" - - formula: "C5H5O8PR2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3939" + - name: "1,2-diacyl-sn-glycerol 3-phosphate" + - compartment: "er" + - formula: "C5H5O8PR2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pa_EC" - chebi: "CHEBI:58608" - kegg.compound: "C00416" - metanetx.chemical: "MNXM96054" - sbo: "SBO:0000247" - - !!omap - - id: "s_3940" - - name: "Peptide diphthine" - - compartment: "c" - - formula: "C13H20N4O3R2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3940" + - name: "Peptide diphthine" + - compartment: "c" + - formula: "C13H20N4O3R2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:18054" - kegg.compound: "C01573" - metanetx.chemical: "MNXM3980" - sbo: "SBO:0000247" - - !!omap - - id: "s_3941" - - name: "Peptide diphthamide" - - compartment: "c" - - formula: "C13H22N5O2R2" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3941" + - name: "Peptide diphthamide" + - compartment: "c" + - formula: "C13H22N5O2R2" + - charge: 1 + - annotation: !!omap - chebi: "CHEBI:82696" - kegg.compound: "C02872" - metanetx.chemical: "MNXM51194" - sbo: "SBO:0000247" - - !!omap - - id: "s_3942" - - name: "8-oxo-dGTP" - - compartment: "p" - - formula: "C10H12N5O14P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_3942" + - name: "8-oxo-dGTP" + - compartment: "p" + - formula: "C10H12N5O14P3" + - charge: -4 + - annotation: !!omap - kegg.compound: "C19967" - metanetx.chemical: "MNXM4425" - sbo: "SBO:0000247" - - !!omap - - id: "s_3943" - - name: "8-oxo-dGMP" - - compartment: "p" - - formula: "C10H12N5O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3943" + - name: "8-oxo-dGMP" + - compartment: "p" + - formula: "C10H12N5O8P" + - charge: -2 + - annotation: !!omap - kegg.compound: "C19968" - metanetx.chemical: "MNXM2497" - sbo: "SBO:0000247" - - !!omap - - id: "s_3944" - - name: "Apoprotein" - - compartment: "m" - - formula: "NH2R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3944" + - name: "Apoprotein" + - compartment: "m" + - formula: "NH2R" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:13850" - kegg.compound: "C16240" - metanetx.chemical: "MNXM91491" - sbo: "SBO:0000247" - - !!omap - - id: "s_3945" - - name: "Protein N6-(octanoyl)lysine" - - compartment: "m" - - formula: "C8H16NOR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3945" + - name: "Protein N6-(octanoyl)lysine" + - compartment: "m" + - formula: "C8H16NOR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:80398" - kegg.compound: "C16236" - metanetx.chemical: "MNXM4090" - sbo: "SBO:0000247" - - !!omap - - id: "s_3946" - - name: "Lipoyl-[acp]" - - compartment: "m" - - formula: "C8H13OS3R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3946" + - name: "Lipoyl-[acp]" + - compartment: "m" + - formula: "C8H13OS3R" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "lipACP" - chebi: "CHEBI:80400" - kegg.compound: "C16239" - metanetx.chemical: "MNXM19093" - sbo: "SBO:0000247" - - !!omap - - id: "s_3947" - - name: "Protein N6-(lipoyl)lysine" - - compartment: "m" - - formula: "C8H14NOS2R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3947" + - name: "Protein N6-(lipoyl)lysine" + - compartment: "m" + - formula: "C8H14NOS2R" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:80399" - kegg.compound: "C16237" - metanetx.chemical: "MNXM96070" - sbo: "SBO:0000247" - - !!omap - - id: "s_3948" - - name: "beta-D-Fructose 6-phosphate" - - compartment: "c" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3948" + - name: "beta-D-Fructose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "f6p_B" - chebi: "CHEBI:57634" - kegg.compound: "C05345" - metanetx.chemical: "MNXM89621" - sbo: "SBO:0000247" - - !!omap - - id: "s_3949" - - name: "beta-D-Glucose" - - compartment: "c" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3949" + - name: "beta-D-Glucose" + - compartment: "c" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glc__bD" - chebi: "CHEBI:15903" - kegg.compound: "C00221" - metanetx.chemical: "MNXM105" - sbo: "SBO:0000247" - - !!omap - - id: "s_3950" - - name: "beta-D-Glucose 6-phosphate" - - compartment: "c" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3950" + - name: "beta-D-Glucose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "g6p_B" - chebi: "CHEBI:58247" - kegg.compound: "C01172" - metanetx.chemical: "MNXM508" - sbo: "SBO:0000247" - - !!omap - - id: "s_3951" - - name: "alpha-D-Glucose" - - compartment: "c" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3951" + - name: "alpha-D-Glucose" + - compartment: "c" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17925" - kegg.compound: "C00267" - metanetx.chemical: "MNXM99" - sbo: "SBO:0000247" - - !!omap - - id: "s_3952" - - name: "alpha-D-Glucose 6-phosphate" - - compartment: "c" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3952" + - name: "alpha-D-Glucose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "g6p_A" - chebi: "CHEBI:58225" - kegg.compound: "C00668" - metanetx.chemical: "MNXM215" - sbo: "SBO:0000247" - - !!omap - - id: "s_3953" - - name: "D-Glucosamine" - - compartment: "c" - - formula: "C6H14NO5" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3953" + - name: "D-Glucosamine" + - compartment: "c" + - formula: "C6H14NO5" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "gam" - chebi: "CHEBI:47977" - kegg.compound: "C00329" - metanetx.chemical: "MNXM533" - sbo: "SBO:0000247" - - !!omap - - id: "s_3954" - - name: "beta-D-Fructose" - - compartment: "c" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3954" + - name: "beta-D-Fructose" + - compartment: "c" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "fru_B" - chebi: "CHEBI:28645" - kegg.compound: "C02336" - metanetx.chemical: "MNXM1542" - sbo: "SBO:0000247" - - !!omap - - id: "s_3958" - - name: "D-Glycerate" - - compartment: "c" - - formula: "C3H5O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3958" + - name: "D-Glycerate" + - compartment: "c" + - formula: "C3H5O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glyc__R" - chebi: "CHEBI:16659" - kegg.compound: "C00258" - metanetx.chemical: "MNXM189" - sbo: "SBO:0000247" - - !!omap - - id: "s_3959" - - name: "2-Propynal" - - compartment: "c" - - formula: "C3H2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3959" + - name: "2-Propynal" + - compartment: "c" + - formula: "C3H2O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:27976" - kegg.compound: "C05985" - metanetx.chemical: "MNXM2716" - sbo: "SBO:0000247" - - !!omap - - id: "s_3960" - - name: "Propynoate" - - compartment: "c" - - formula: "C3HO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3960" + - name: "Propynoate" + - compartment: "c" + - formula: "C3HO2" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:15364" - kegg.compound: "C00804" - metanetx.chemical: "MNXM2422" - sbo: "SBO:0000247" - - !!omap - - id: "s_3961" - - name: "D-Glucuronolactone" - - compartment: "c" - - formula: "C6H8O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3961" + - name: "D-Glucuronolactone" + - compartment: "c" + - formula: "C6H8O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "glcurn" - chebi: "CHEBI:18268" - kegg.compound: "C02670" - metanetx.chemical: "MNXM17108" - sbo: "SBO:0000247" - - !!omap - - id: "s_3962" - - name: "D-Glucarate" - - compartment: "c" - - formula: "C6H8O8" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3962" + - name: "D-Glucarate" + - compartment: "c" + - formula: "C6H8O8" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "glcr" - chebi: "CHEBI:30612" - kegg.compound: "C00818" - metanetx.chemical: "MNXM744" - sbo: "SBO:0000247" - - !!omap - - id: "s_3963" - - name: "4-Trimethylammoniobutanal" - - compartment: "c" - - formula: "C7H16NO" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_3963" + - name: "4-Trimethylammoniobutanal" + - compartment: "c" + - formula: "C7H16NO" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "4tmeabut" - chebi: "CHEBI:18020" - kegg.compound: "C01149" - metanetx.chemical: "MNXM940" - sbo: "SBO:0000247" - - !!omap - - id: "s_3964" - - name: "4-Trimethylammoniobutanoate" - - compartment: "c" - - formula: "C7H15NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3964" + - name: "4-Trimethylammoniobutanoate" + - compartment: "c" + - formula: "C7H15NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4tmeabutn" - chebi: "CHEBI:1941" - kegg.compound: "C01181" - metanetx.chemical: "MNXM626" - sbo: "SBO:0000247" - - !!omap - - id: "s_3965" - - name: "(S)-Methylmalonate semialdehyde" - - compartment: "c" - - formula: "C4H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3965" + - name: "(S)-Methylmalonate semialdehyde" + - compartment: "c" + - formula: "C4H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "mmtsa" - chebi: "CHEBI:62413" - kegg.compound: "C06002" - metanetx.chemical: "MNXM933" - sbo: "SBO:0000247" - - !!omap - - id: "s_3966" - - name: "Methylmalonate" - - compartment: "c" - - formula: "C4H4O4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3966" + - name: "Methylmalonate" + - compartment: "c" + - formula: "C4H4O4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "mmal" - chebi: "CHEBI:17453" - kegg.compound: "C02170" - metanetx.chemical: "MNXM1572" - sbo: "SBO:0000247" - - !!omap - - id: "s_3967" - - name: "Imidazole-4-acetaldehyde" - - compartment: "c" - - formula: "C5H6N2O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3967" + - name: "Imidazole-4-acetaldehyde" + - compartment: "c" + - formula: "C5H6N2O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "im4act" - chebi: "CHEBI:27398" - kegg.compound: "C05130" - metanetx.chemical: "MNXM1745" - sbo: "SBO:0000247" - - !!omap - - id: "s_3968" - - name: "Imidazole-4-acetate" - - compartment: "c" - - formula: "C5H5N2O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3968" + - name: "Imidazole-4-acetate" + - compartment: "c" + - formula: "C5H5N2O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "im4ac" - chebi: "CHEBI:16974" - kegg.compound: "C02835" - metanetx.chemical: "MNXM1330" - sbo: "SBO:0000247" - - !!omap - - id: "s_3969" - - name: "3alpha,7alpha-Dihydroxy-5beta-cholestan-26-al" - - compartment: "c" - - formula: "C27H46O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3969" + - name: "3alpha,7alpha-Dihydroxy-5beta-cholestan-26-al" + - compartment: "c" + - formula: "C27H46O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "xol7ah2al" - chebi: "CHEBI:27428" - kegg.compound: "C05445" - metanetx.chemical: "MNXM1174" - sbo: "SBO:0000247" - - !!omap - - id: "s_3970" - - name: "3alpha,7alpha-Dihydroxy-5beta-cholestanate" - - compartment: "c" - - formula: "C27H45O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3970" + - name: "3alpha,7alpha-Dihydroxy-5beta-cholestanate" + - compartment: "c" + - formula: "C27H45O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "dhcholestanate" - chebi: "CHEBI:16577" - kegg.compound: "C04554" - metanetx.chemical: "MNXM484588" - sbo: "SBO:0000247" - - !!omap - - id: "s_3971" - - name: "5-Hydroxyindoleacetaldehyde" - - compartment: "c" - - formula: "C10H9NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3971" + - name: "5-Hydroxyindoleacetaldehyde" + - compartment: "c" + - formula: "C10H9NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "5hoxindact" - chebi: "CHEBI:50157" - kegg.compound: "C05634" - metanetx.chemical: "MNXM1057" - sbo: "SBO:0000247" - - !!omap - - id: "s_3972" - - name: "5-Hydroxyindoleacetate" - - compartment: "c" - - formula: "C10H8NO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3972" + - name: "5-Hydroxyindoleacetate" + - compartment: "c" + - formula: "C10H8NO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "5hoxindoa" - chebi: "CHEBI:27823" - kegg.compound: "C05635" - metanetx.chemical: "MNXM1961" - sbo: "SBO:0000247" - - !!omap - - id: "s_3973" - - name: "N4-Acetylaminobutanal" - - compartment: "c" - - formula: "C6H11NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3973" + - name: "N4-Acetylaminobutanal" + - compartment: "c" + - formula: "C6H11NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "n4abutn" - chebi: "CHEBI:7386" - kegg.compound: "C05936" - metanetx.chemical: "MNXM1527" - sbo: "SBO:0000247" - - !!omap - - id: "s_3974" - - name: "4-Acetamidobutanoate" - - compartment: "c" - - formula: "C6H10NO3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3974" + - name: "4-Acetamidobutanoate" + - compartment: "c" + - formula: "C6H10NO3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "4aabutn" - chebi: "CHEBI:11951" - kegg.compound: "C02946" - metanetx.chemical: "MNXM2083" - sbo: "SBO:0000247" - - !!omap - - id: "s_3975" - - name: "trans-3-Chloroallyl aldehyde" - - compartment: "c" - - formula: "C3H3ClO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3975" + - name: "trans-3-Chloroallyl aldehyde" + - compartment: "c" + - formula: "C3H3ClO" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:28452" - kegg.compound: "C06613" - metanetx.chemical: "MNXM5312" - sbo: "SBO:0000247" - - !!omap - - id: "s_3976" - - name: "trans-3-Chloroacrylic acid" - - compartment: "c" - - formula: "C3H2ClO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3976" + - name: "trans-3-Chloroacrylic acid" + - compartment: "c" + - formula: "C3H2ClO2" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:19982" - kegg.compound: "C06614" - metanetx.chemical: "MNXM6086" - sbo: "SBO:0000247" - - !!omap - - id: "s_3977" - - name: "cis-3-Chloroallyl aldehyde" - - compartment: "c" - - formula: "C3H3ClO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3977" + - name: "cis-3-Chloroallyl aldehyde" + - compartment: "c" + - formula: "C3H3ClO" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:80465" - kegg.compound: "C16348" - metanetx.chemical: "MNXM6216" - sbo: "SBO:0000247" - - !!omap - - id: "s_3978" - - name: "cis-3-Chloroacrylic acid" - - compartment: "c" - - formula: "C3H2ClO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3978" + - name: "cis-3-Chloroacrylic acid" + - compartment: "c" + - formula: "C3H2ClO2" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:27397" - kegg.compound: "C06615" - metanetx.chemical: "MNXM46935" - sbo: "SBO:0000247" - - !!omap - - id: "s_3979" - - name: "Chloroacetaldehyde" - - compartment: "c" - - formula: "C2H3ClO" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3979" + - name: "Chloroacetaldehyde" + - compartment: "c" + - formula: "C2H3ClO" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:27871" - kegg.compound: "C06754" - metanetx.chemical: "MNXM1816" - sbo: "SBO:0000247" - - !!omap - - id: "s_3980" - - name: "Chloroacetic acid" - - compartment: "c" - - formula: "C2H2ClO2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3980" + - name: "Chloroacetic acid" + - compartment: "c" + - formula: "C2H2ClO2" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:27869" - kegg.compound: "C06755" - metanetx.chemical: "MNXM1468" - sbo: "SBO:0000247" - - !!omap - - id: "s_3981" - - name: "Perillyl aldehyde" - - compartment: "c" - - formula: "C10H14O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3981" + - name: "Perillyl aldehyde" + - compartment: "c" + - formula: "C10H14O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pylald" - chebi: "CHEBI:15421" - kegg.compound: "C02576" - metanetx.chemical: "MNXM2149" - sbo: "SBO:0000247" - - !!omap - - id: "s_3982" - - name: "Perillic acid" - - compartment: "c" - - formula: "C10H13O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3982" + - name: "Perillic acid" + - compartment: "c" + - formula: "C10H13O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "peracd" - chebi: "CHEBI:36999" - kegg.compound: "C11924" - metanetx.chemical: "MNXM2414" - sbo: "SBO:0000247" - - !!omap - - id: "s_3983" - - name: "2-trans,6-trans-Farnesal" - - compartment: "c" - - formula: "C15H24O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3983" + - name: "2-trans,6-trans-Farnesal" + - compartment: "c" + - formula: "C15H24O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:15894" - kegg.compound: "C03461" - metanetx.chemical: "MNXM1959" - sbo: "SBO:0000247" - - !!omap - - id: "s_3984" - - name: "Farnesoic acid" - - compartment: "c" - - formula: "C15H23O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3984" + - name: "Farnesoic acid" + - compartment: "c" + - formula: "C15H23O2" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:84162" - kegg.compound: "C16502" - metanetx.chemical: "MNXM3989" - sbo: "SBO:0000247" - - !!omap - - id: "s_3985" - - name: "phospholipid" - - compartment: "erm" - - formula: "C5H6O8PR3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3985" + - name: "phospholipid" + - compartment: "erm" + - formula: "C5H6O8PR3" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:16247" - kegg.compound: "C00865" - sbo: "SBO:0000247" - - !!omap - - id: "s_3986" - - name: "phospholipid" - - compartment: "gm" - - formula: "C5H6O8PR3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3986" + - name: "phospholipid" + - compartment: "gm" + - formula: "C5H6O8PR3" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:16247" - kegg.compound: "C00865" - sbo: "SBO:0000247" - - !!omap - - id: "s_3987" - - name: "ADP" - - compartment: "erm" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_3987" + - name: "ADP" + - compartment: "erm" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "adp" - chebi: "CHEBI:456216" - kegg.compound: "C00008" - metanetx.chemical: "MNXM7" - sbo: "SBO:0000247" - - !!omap - - id: "s_3988" - - name: "1-oleoyl-sn-glycerol" - - compartment: "c" - - formula: "C21H40O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3988" + - name: "1-oleoyl-sn-glycerol" + - compartment: "c" + - formula: "C21H40O4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:75757" - metanetx.chemical: "MNXM62354" - sbo: "SBO:0000247" - - !!omap - - id: "s_3989" - - name: "G10526" - - compartment: "er" - - formula: "C66H112N2O42P2R" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3989" + - name: "G10526" + - compartment: "er" + - formula: "C66H112N2O42P2R" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:132511" - sbo: "SBO:0000247" - - !!omap - - id: "s_3990" - - name: "G00006" - - compartment: "er" - - formula: "C78H132N2O52P2R" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3990" + - name: "G00006" + - compartment: "er" + - formula: "C78H132N2O52P2R" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:132515" - sbo: "SBO:0000247" - - !!omap - - id: "s_3991" - - name: "carnosine" - - compartment: "c" - - formula: "C9H14N4O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3991" + - name: "carnosine" + - compartment: "c" + - formula: "C9H14N4O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "carn" - chebi: "CHEBI:15727" - kegg.compound: "C00386" - metanetx.chemical: "MNXM1419" - sbo: "SBO:0000247" - - !!omap - - id: "s_3992" - - name: "anserine" - - compartment: "c" - - formula: "C10H16N4O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3992" + - name: "anserine" + - compartment: "c" + - formula: "C10H16N4O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ans" - chebi: "CHEBI:18323" - kegg.compound: "C01262" - metanetx.chemical: "MNXM2639" - sbo: "SBO:0000247" - - !!omap - - id: "s_3993" - - name: "G10595" - - compartment: "er" - - formula: "C72H122N2O47P2R" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3993" + - name: "G10595" + - compartment: "er" + - formula: "C72H122N2O47P2R" + - charge: -2 + - annotation: !!omap - metanetx.chemical: "MNXM9262" - sbo: "SBO:0000247" - - !!omap - - id: "s_3994" - - name: "G10596" - - compartment: "er" - - formula: "C78H132N2O52P2R" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3994" + - name: "G10596" + - compartment: "er" + - formula: "C78H132N2O52P2R" + - charge: -2 + - annotation: !!omap - metanetx.chemical: "MNXM9265" - sbo: "SBO:0000247" - - !!omap - - id: "s_3995" - - name: "G10597" - - compartment: "er" - - formula: "C84H142N2O57P2R" - - charge: -2 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_3996" - - name: "G00007" - - compartment: "er" - - formula: "C90H152N2O62P2R" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_3995" + - name: "G10597" + - compartment: "er" + - formula: "C84H142N2O57P2R" + - charge: -2 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_3996" + - name: "G00007" + - compartment: "er" + - formula: "C90H152N2O62P2R" + - charge: -2 + - annotation: !!omap - kegg.compound: "C05868" - metanetx.chemical: "MNXM31425" - sbo: "SBO:0000247" - - !!omap - - id: "s_3997" - - name: "glycolate" - - compartment: "c" - - formula: "C2H3O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_3997" + - name: "glycolate" + - compartment: "c" + - formula: "C2H3O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "glyclt" - chebi: "CHEBI:29805" - kegg.compound: "C00160" - metanetx.chemical: "MNXM222" - sbo: "SBO:0000247" - - !!omap - - id: "s_3998" - - name: "sucrose" - - compartment: "c" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3998" + - name: "sucrose" + - compartment: "c" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "sucr" - chebi: "CHEBI:17992" - kegg.compound: "C00089" - metanetx.chemical: "MNXM167" - sbo: "SBO:0000247" - - !!omap - - id: "s_3999" - - name: "Isomaltose" - - compartment: "c" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_3999" + - name: "Isomaltose" + - compartment: "c" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "isomal" - chebi: "CHEBI:28189" - kegg.compound: "C00252" - metanetx.chemical: "MNXM58018" - sbo: "SBO:0000247" - - !!omap - - id: "s_4000" - - name: "Dextrin" - - compartment: "c" - - formula: "C12H20O10" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4000" + - name: "Dextrin" + - compartment: "c" + - formula: "C12H20O10" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "starch" - chebi: "CHEBI:28675" - kegg.compound: "C00721" - sbo: "SBO:0000247" - - !!omap - - id: "s_4001" - - name: "G10598" - - compartment: "er" - - formula: "C96H162N2O67P2R" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4001" + - name: "G10598" + - compartment: "er" + - formula: "C96H162N2O67P2R" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM9336" - sbo: "SBO:0000247" - - !!omap - - id: "s_4002" - - name: "G00149" - - compartment: "er" - - formula: "" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4002" + - name: "G00149" + - compartment: "er" + - formula: "" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM7903" - sbo: "SBO:0000247" - - !!omap - - id: "s_4003" - - name: "G00140" - - compartment: "er" - - formula: "" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4003" + - name: "G00140" + - compartment: "er" + - formula: "" + - charge: 0 + - annotation: !!omap - metanetx.chemical: "MNXM9266" - sbo: "SBO:0000247" - - !!omap - - id: "s_4004" - - name: "Sulfur donor" - - compartment: "m" - - formula: "" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4004" + - name: "Sulfur donor" + - compartment: "m" + - formula: "" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:80867" - kegg.compound: "C17023" - metanetx.chemical: "MNXM4111" - sbo: "SBO:0000247" - - !!omap - - id: "s_4005" - - name: "5'-Deoxyadenosine" - - compartment: "m" - - formula: "C10H13N5O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4005" + - name: "5'-Deoxyadenosine" + - compartment: "m" + - formula: "C10H13N5O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dad_5" - chebi: "CHEBI:17319" - kegg.compound: "C05198" - metanetx.chemical: "MNXM316" - sbo: "SBO:0000247" - - !!omap - - id: "s_4006" - - name: "S-sulfanyl-[L-cysteine desulfurase]" - - compartment: "m" - - formula: "" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_4007" - - name: "[disordered-form [Fe-S] cluster scaffold protein]" - - compartment: "m" - - formula: "" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_4008" - - name: "S-sulfanyl-[cysteine desulfurase]-[disordered-form scaffold protein] complex" - - compartment: "m" - - formula: "" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_4009" - - name: "hydrogen cyanide" - - compartment: "m" - - formula: "CHN" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4006" + - name: "S-sulfanyl-[L-cysteine desulfurase]" + - compartment: "m" + - formula: "" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_4007" + - name: "[disordered-form [Fe-S] cluster scaffold protein]" + - compartment: "m" + - formula: "" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_4008" + - name: "S-sulfanyl-[cysteine desulfurase]-[disordered-form scaffold protein] complex" + - compartment: "m" + - formula: "" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_4009" + - name: "hydrogen cyanide" + - compartment: "m" + - formula: "CHN" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "cyan" - chebi: "CHEBI:18407" - kegg.compound: "C01326" - metanetx.chemical: "MNXM254" - sbo: "SBO:0000247" - - !!omap - - id: "s_4010" - - name: "thiosulfate" - - compartment: "m" - - formula: "HO3S2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4010" + - name: "thiosulfate" + - compartment: "m" + - formula: "HO3S2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "tsul" - chebi: "CHEBI:33541" - kegg.compound: "C00320" - metanetx.chemical: "MNXM323" - sbo: "SBO:0000247" - - !!omap - - id: "s_4011" - - name: "sulphite" - - compartment: "m" - - formula: "O3S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4011" + - name: "sulphite" + - compartment: "m" + - formula: "O3S" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "so3" - chebi: "CHEBI:17359" - kegg.compound: "C11481" - metanetx.chemical: "MNXM105630" - sbo: "SBO:0000247" - - !!omap - - id: "s_4012" - - name: "thiocyanate" - - compartment: "m" - - formula: "CNS" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4012" + - name: "thiocyanate" + - compartment: "m" + - formula: "CNS" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "tcynt" - chebi: "CHEBI:29200" - kegg.compound: "C01755" - metanetx.chemical: "MNXM762" - sbo: "SBO:0000247" - - !!omap - - id: "s_4013" - - name: "Mg(2+)" - - compartment: "c" - - formula: "Mg" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_4013" + - name: "Mg(2+)" + - compartment: "c" + - formula: "Mg" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "mg2" - chebi: "CHEBI:18420" - kegg.compound: "C00305" - metanetx.chemical: "MNXM653" - sbo: "SBO:0000247" - - !!omap - - id: "s_4014" - - name: "Mg(2+)" - - compartment: "m" - - formula: "Mg" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_4014" + - name: "Mg(2+)" + - compartment: "m" + - formula: "Mg" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "mg2" - chebi: "CHEBI:18420" - kegg.compound: "C00305" - metanetx.chemical: "MNXM653" - sbo: "SBO:0000247" - - !!omap - - id: "s_4015" - - name: "UDP-D-glucose" - - compartment: "er" - - formula: "C15H22N2O17P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4015" + - name: "UDP-D-glucose" + - compartment: "er" + - formula: "C15H22N2O17P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "udpg" - chebi: "CHEBI:58367" - kegg.compound: "C00029" - metanetx.chemical: "MNXM722710" - sbo: "SBO:0000247" - - !!omap - - id: "s_4016" - - name: "sulphate" - - compartment: "er" - - formula: "O4S" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4016" + - name: "sulphate" + - compartment: "er" + - formula: "O4S" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "so4" - chebi: "CHEBI:16189" - kegg.compound: "C00059" - metanetx.chemical: "MNXM58" - sbo: "SBO:0000247" - - !!omap - - id: "s_4017" - - name: "N-Acetyl-D-glucosamine" - - compartment: "c" - - formula: "C8H15NO6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4017" + - name: "N-Acetyl-D-glucosamine" + - compartment: "c" + - formula: "C8H15NO6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "acgam" - chebi: "CHEBI:506227" - kegg.compound: "C00140" - metanetx.chemical: "MNXM143" - sbo: "SBO:0000247" - - !!omap - - id: "s_4018" - - name: "polyphosphate" - - compartment: "c" - - formula: "HO7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_4018" + - name: "polyphosphate" + - compartment: "c" + - formula: "HO7P2" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:16838" - kegg.compound: "C00404" - metanetx.chemical: "MNXM77738" - sbo: "SBO:0000247" - - !!omap - - id: "s_4019" - - name: "Cu2(+)" - - compartment: "c" - - formula: "Cu" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_4019" + - name: "Cu2(+)" + - compartment: "c" + - formula: "Cu" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "cu2" - chebi: "CHEBI:29036" - kegg.compound: "C00070" - metanetx.chemical: "MNXM632" - sbo: "SBO:0000247" - - !!omap - - id: "s_4020" - - name: "Cu2(+)" - - compartment: "g" - - formula: "Cu" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_4020" + - name: "Cu2(+)" + - compartment: "g" + - formula: "Cu" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "cu2" - chebi: "CHEBI:29036" - kegg.compound: "C00070" - metanetx.chemical: "MNXM632" - sbo: "SBO:0000247" - - !!omap - - id: "s_4021" - - name: "2-Oxoglutaramate" - - compartment: "c" - - formula: "C5H6NO4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4021" + - name: "2-Oxoglutaramate" + - compartment: "c" + - formula: "C5H6NO4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "HC00591" - chebi: "CHEBI:16769" - kegg.compound: "C00940" - metanetx.chemical: "MNXM575" - sbo: "SBO:0000247" - - !!omap - - id: "s_4022" - - name: "porphyrin" - - compartment: "m" - - formula: "C20H14N4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4022" + - name: "porphyrin" + - compartment: "m" + - formula: "C20H14N4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:8337" - kegg.compound: "C05113" - metanetx.chemical: "MNXM2714" - sbo: "SBO:0000247" - - !!omap - - id: "s_4023" - - name: "porphyrin" - - compartment: "c" - - formula: "C20H14N4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4023" + - name: "porphyrin" + - compartment: "c" + - formula: "C20H14N4" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:8337" - kegg.compound: "C05113" - metanetx.chemical: "MNXM2714" - sbo: "SBO:0000247" - - !!omap - - id: "s_4024" - - name: "Starch" - - compartment: "c" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_4025" - - name: "UDP-N-acetyl-alpha-D-glucosamine" - - compartment: "g" - - formula: "C17H25N3O17P2" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4024" + - name: "Starch" + - compartment: "c" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_4025" + - name: "UDP-N-acetyl-alpha-D-glucosamine" + - compartment: "g" + - formula: "C17H25N3O17P2" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "uacgam" - chebi: "CHEBI:57705" - kegg.compound: "C00043" - metanetx.chemical: "MNXM47" - sbo: "SBO:0000247" - - !!omap - - id: "s_4026" - - name: "Zn(2+)" - - compartment: "m" - - formula: "Zn" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_4026" + - name: "Zn(2+)" + - compartment: "m" + - formula: "Zn" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "zn2" - chebi: "CHEBI:29105" - kegg.compound: "C00038" - metanetx.chemical: "MNXM149" - sbo: "SBO:0000247" - - !!omap - - id: "s_4027" - - name: "Zn(2+)" - - compartment: "v" - - formula: "Zn" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_4027" + - name: "Zn(2+)" + - compartment: "v" + - formula: "Zn" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "zn2" - chebi: "CHEBI:29105" - kegg.compound: "C00038" - metanetx.chemical: "MNXM149" - sbo: "SBO:0000247" - - !!omap - - id: "s_4028" - - name: "RX" - - compartment: "m" - - formula: "RX" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4028" + - name: "RX" + - compartment: "m" + - formula: "RX" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17792" - kegg.compound: "C01322" - metanetx.chemical: "MNXM6428" - sbo: "SBO:0000247" - - !!omap - - id: "s_4029" - - name: "HX" - - compartment: "m" - - formula: "X" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4029" + - name: "HX" + - compartment: "m" + - formula: "X" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:16042" - kegg.compound: "C00462" - metanetx.chemical: "MNXM55844" - sbo: "SBO:0000247" - - !!omap - - id: "s_4030" - - name: "R-S-glutathione" - - compartment: "m" - - formula: "C10H16N3O6SR" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4030" + - name: "R-S-glutathione" + - compartment: "m" + - formula: "C10H16N3O6SR" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17021" - kegg.compound: "C02320" - metanetx.chemical: "MNXM3350" - sbo: "SBO:0000247" - - !!omap - - id: "s_4031" - - name: "iron(3+)" - - compartment: "v" - - formula: "Fe" - - charge: 3 - - annotation: !!omap + - !!omap + - id: "s_4031" + - name: "iron(3+)" + - compartment: "v" + - formula: "Fe" + - charge: 3 + - annotation: !!omap - bigg.metabolite: "fe3" - chebi: "CHEBI:29034" - kegg.compound: "C14819" - metanetx.chemical: "MNXM196" - sbo: "SBO:0000247" - - !!omap - - id: "s_4032" - - name: "[protein]-L-lysine" - - compartment: "c" - - formula: "C6H13N2O" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_4032" + - name: "[protein]-L-lysine" + - compartment: "c" + - formula: "C6H13N2O" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "pcollglys" - chebi: "CHEBI:29969" - kegg.compound: "C02188" - sbo: "SBO:0000247" - - !!omap - - id: "s_4033" - - name: "[protein]-N(6)-acetyl-L-lysine" - - compartment: "c" - - formula: "C8H14N2O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4033" + - name: "[protein]-N(6)-acetyl-L-lysine" + - compartment: "c" + - formula: "C8H14N2O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:61930" - sbo: "SBO:0000247" - - !!omap - - id: "s_4034" - - name: "Ala-Gln" - - compartment: "e" - - formula: "C8H15N3O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4034" + - name: "Ala-Gln" + - compartment: "e" + - formula: "C8H15N3O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_L_gln__L" - chebi: "CHEBI:73788" - metanetx.chemical: "MNXM40495" - sbo: "SBO:0000247" - - !!omap - - id: "s_4035" - - name: "Ala-Gln" - - compartment: "c" - - formula: "C8H15N3O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4035" + - name: "Ala-Gln" + - compartment: "c" + - formula: "C8H15N3O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_L_gln__L" - chebi: "CHEBI:73788" - metanetx.chemical: "MNXM40495" - sbo: "SBO:0000247" - - !!omap - - id: "s_4036" - - name: "Ala-Gln" - - compartment: "v" - - formula: "C8H15N3O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4036" + - name: "Ala-Gln" + - compartment: "v" + - formula: "C8H15N3O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_L_gln__L" - chebi: "CHEBI:73788" - metanetx.chemical: "MNXM40495" - sbo: "SBO:0000247" - - !!omap - - id: "s_4037" - - name: "Ala-Glu" - - compartment: "e" - - formula: "C8H13N2O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4037" + - name: "Ala-Glu" + - compartment: "e" + - formula: "C8H13N2O5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "LalaLglu" - chebi: "CHEBI:61396" - kegg.compound: "C20958" - metanetx.chemical: "MNXM4026" - sbo: "SBO:0000247" - - !!omap - - id: "s_4038" - - name: "Ala-Glu" - - compartment: "c" - - formula: "C8H13N2O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4038" + - name: "Ala-Glu" + - compartment: "c" + - formula: "C8H13N2O5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "LalaLglu" - chebi: "CHEBI:61396" - kegg.compound: "C20958" - metanetx.chemical: "MNXM4026" - sbo: "SBO:0000247" - - !!omap - - id: "s_4039" - - name: "Ala-Glu" - - compartment: "v" - - formula: "C8H13N2O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4039" + - name: "Ala-Glu" + - compartment: "v" + - formula: "C8H13N2O5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "LalaLglu" - chebi: "CHEBI:61396" - kegg.compound: "C20958" - metanetx.chemical: "MNXM4026" - sbo: "SBO:0000247" - - !!omap - - id: "s_4040" - - name: "Ala-Thr" - - compartment: "e" - - formula: "C7H14N2O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4040" + - name: "Ala-Thr" + - compartment: "e" + - formula: "C7H14N2O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_L_Thr__L" - chebi: "CHEBI:73762" - metanetx.chemical: "MNXM40497" - sbo: "SBO:0000247" - - !!omap - - id: "s_4041" - - name: "Ala-Thr" - - compartment: "c" - - formula: "C7H14N2O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4041" + - name: "Ala-Thr" + - compartment: "c" + - formula: "C7H14N2O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_L_Thr__L" - chebi: "CHEBI:73762" - metanetx.chemical: "MNXM40497" - sbo: "SBO:0000247" - - !!omap - - id: "s_4042" - - name: "Ala-Thr" - - compartment: "v" - - formula: "C7H14N2O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4042" + - name: "Ala-Thr" + - compartment: "v" + - formula: "C7H14N2O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_L_Thr__L" - chebi: "CHEBI:73762" - metanetx.chemical: "MNXM40497" - sbo: "SBO:0000247" - - !!omap - - id: "s_4043" - - name: "L-threonine" - - compartment: "v" - - formula: "C4H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4043" + - name: "L-threonine" + - compartment: "v" + - formula: "C4H9NO3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "thr__L" - chebi: "CHEBI:16857" - kegg.compound: "C00188" - metanetx.chemical: "MNXM142" - sbo: "SBO:0000247" - - !!omap - - id: "s_4044" - - name: "thymidine 3'-monophosphate" - - compartment: "c" - - formula: "C10H13N2O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4044" + - name: "thymidine 3'-monophosphate" + - compartment: "c" + - formula: "C10H13N2O8P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:77843" - metanetx.chemical: "MNXM87165" - sbo: "SBO:0000247" - - !!omap - - id: "s_4045" - - name: "thymidine 3'-monophosphate" - - compartment: "e" - - formula: "C10H13N2O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4045" + - name: "thymidine 3'-monophosphate" + - compartment: "e" + - formula: "C10H13N2O8P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:77843" - metanetx.chemical: "MNXM87165" - sbo: "SBO:0000247" - - !!omap - - id: "s_4046" - - name: "thymidine 5'-monophosphate" - - compartment: "c" - - formula: "C10H13N2O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4046" + - name: "thymidine 5'-monophosphate" + - compartment: "c" + - formula: "C10H13N2O8P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:15245" - metanetx.chemical: "MNXM87167" - sbo: "SBO:0000247" - - !!omap - - id: "s_4047" - - name: "thymidine 5'-monophosphate" - - compartment: "e" - - formula: "C10H13N2O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4047" + - name: "thymidine 5'-monophosphate" + - compartment: "e" + - formula: "C10H13N2O8P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:15245" - metanetx.chemical: "MNXM87167" - sbo: "SBO:0000247" - - !!omap - - id: "s_4048" - - name: "glycerol 1-phosphate" - - compartment: "c" - - formula: "C3H7O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4048" + - name: "glycerol 1-phosphate" + - compartment: "c" + - formula: "C3H7O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "glyc1p" - chebi: "CHEBI:231935" - kegg.compound: "C03189" - metanetx.chemical: "MNXM682" - sbo: "SBO:0000247" - - !!omap - - id: "s_4049" - - name: "glycerol 1-phosphate" - - compartment: "e" - - formula: "C3H7O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4049" + - name: "glycerol 1-phosphate" + - compartment: "e" + - formula: "C3H7O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "glyc1p" - chebi: "CHEBI:231935" - kegg.compound: "C03189" - metanetx.chemical: "MNXM682" - sbo: "SBO:0000247" - - !!omap - - id: "s_4050" - - name: "Ala-His" - - compartment: "e" - - formula: "C9H14N4O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4050" + - name: "Ala-His" + - compartment: "e" + - formula: "C9H14N4O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_L_his__L" - chebi: "CHEBI:73771" - metanetx.chemical: "MNXM40496" - sbo: "SBO:0000247" - - !!omap - - id: "s_4051" - - name: "Ala-His" - - compartment: "c" - - formula: "C9H14N4O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4051" + - name: "Ala-His" + - compartment: "c" + - formula: "C9H14N4O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_L_his__L" - chebi: "CHEBI:73771" - metanetx.chemical: "MNXM40496" - sbo: "SBO:0000247" - - !!omap - - id: "s_4052" - - name: "Ala-His" - - compartment: "v" - - formula: "C9H14N4O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4052" + - name: "Ala-His" + - compartment: "v" + - formula: "C9H14N4O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_L_his__L" - chebi: "CHEBI:73771" - metanetx.chemical: "MNXM40496" - sbo: "SBO:0000247" - - !!omap - - id: "s_4053" - - name: "Gly-Asn" - - compartment: "e" - - formula: "C6H11N3O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4053" + - name: "Gly-Asn" + - compartment: "e" + - formula: "C6H11N3O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly_asn__L" - chebi: "CHEBI:73888" - metanetx.chemical: "MNXM55268" - sbo: "SBO:0000247" - - !!omap - - id: "s_4054" - - name: "Gly-Asn" - - compartment: "c" - - formula: "C6H11N3O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4054" + - name: "Gly-Asn" + - compartment: "c" + - formula: "C6H11N3O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly_asn__L" - chebi: "CHEBI:73888" - metanetx.chemical: "MNXM55268" - sbo: "SBO:0000247" - - !!omap - - id: "s_4055" - - name: "Gly-Asn" - - compartment: "v" - - formula: "C6H11N3O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4055" + - name: "Gly-Asn" + - compartment: "v" + - formula: "C6H11N3O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly_asn__L" - chebi: "CHEBI:73888" - metanetx.chemical: "MNXM55268" - sbo: "SBO:0000247" - - !!omap - - id: "s_4056" - - name: "Gly-Gln" - - compartment: "e" - - formula: "C7H13N3O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4056" + - name: "Gly-Gln" + - compartment: "e" + - formula: "C7H13N3O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly_gln__L" - chebi: "CHEBI:73898" - metanetx.chemical: "MNXM55276" - sbo: "SBO:0000247" - - !!omap - - id: "s_4057" - - name: "Gly-Gln" - - compartment: "c" - - formula: "C7H13N3O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4057" + - name: "Gly-Gln" + - compartment: "c" + - formula: "C7H13N3O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly_gln__L" - chebi: "CHEBI:73898" - metanetx.chemical: "MNXM55276" - sbo: "SBO:0000247" - - !!omap - - id: "s_4058" - - name: "Gly-Gln" - - compartment: "v" - - formula: "C7H13N3O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4058" + - name: "Gly-Gln" + - compartment: "v" + - formula: "C7H13N3O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly_gln__L" - chebi: "CHEBI:73898" - metanetx.chemical: "MNXM55276" - sbo: "SBO:0000247" - - !!omap - - id: "s_4059" - - name: "Gly-Glu" - - compartment: "e" - - formula: "C7H11N2O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4059" + - name: "Gly-Glu" + - compartment: "e" + - formula: "C7H11N2O5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gly_glu__L" - chebi: "CHEBI:73784" - metanetx.chemical: "MNXM55454" - sbo: "SBO:0000247" - - !!omap - - id: "s_4060" - - name: "Gly-Glu" - - compartment: "c" - - formula: "C7H11N2O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4060" + - name: "Gly-Glu" + - compartment: "c" + - formula: "C7H11N2O5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gly_glu__L" - chebi: "CHEBI:73784" - metanetx.chemical: "MNXM55454" - sbo: "SBO:0000247" - - !!omap - - id: "s_4061" - - name: "Gly-Glu" - - compartment: "v" - - formula: "C7H11N2O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4061" + - name: "Gly-Glu" + - compartment: "v" + - formula: "C7H11N2O5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "gly_glu__L" - chebi: "CHEBI:73784" - metanetx.chemical: "MNXM55454" - sbo: "SBO:0000247" - - !!omap - - id: "s_4062" - - name: "glycerol 2-phosphate(2-)" - - compartment: "c" - - formula: "C3H7O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4062" + - name: "glycerol 2-phosphate(2-)" + - compartment: "c" + - formula: "C3H7O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "glyc2p" - chebi: "CHEBI:58083" - kegg.compound: "C02979" - metanetx.chemical: "MNXM2527" - sbo: "SBO:0000247" - - !!omap - - id: "s_4063" - - name: "glycerol 2-phosphate(2-)" - - compartment: "e" - - formula: "C3H7O6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4063" + - name: "glycerol 2-phosphate(2-)" + - compartment: "e" + - formula: "C3H7O6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "glyc2p" - chebi: "CHEBI:58083" - kegg.compound: "C02979" - metanetx.chemical: "MNXM2527" - sbo: "SBO:0000247" - - !!omap - - id: "s_4064" - - name: "O-phospho-L-threonine" - - compartment: "c" - - formula: "C4H8NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4064" + - name: "O-phospho-L-threonine" + - compartment: "c" + - formula: "C4H8NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "thrp" - chebi: "CHEBI:58675" - kegg.compound: "C12147" - metanetx.chemical: "MNXM1492" - sbo: "SBO:0000247" - - !!omap - - id: "s_4065" - - name: "O-phospho-L-threonine" - - compartment: "e" - - formula: "C4H8NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4065" + - name: "O-phospho-L-threonine" + - compartment: "e" + - formula: "C4H8NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "thrp" - chebi: "CHEBI:58675" - kegg.compound: "C12147" - metanetx.chemical: "MNXM1492" - sbo: "SBO:0000247" - - !!omap - - id: "s_4066" - - name: "guanosine 2'-monophosphate" - - compartment: "c" - - formula: "C10H12N5O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4066" + - name: "guanosine 2'-monophosphate" + - compartment: "c" + - formula: "C10H12N5O8P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:74604" - metanetx.chemical: "MNXM18285" - sbo: "SBO:0000247" - - !!omap - - id: "s_4067" - - name: "guanosine 2'-monophosphate" - - compartment: "e" - - formula: "C10H12N5O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4067" + - name: "guanosine 2'-monophosphate" + - compartment: "e" + - formula: "C10H12N5O8P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:74604" - metanetx.chemical: "MNXM18285" - sbo: "SBO:0000247" - - !!omap - - id: "s_4068" - - name: "3'-GMP" - - compartment: "c" - - formula: "C10H12N5O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4068" + - name: "3'-GMP" + - compartment: "c" + - formula: "C10H12N5O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3gmp" - chebi: "CHEBI:60732" - kegg.compound: "C06193" - metanetx.chemical: "MNXM2183" - sbo: "SBO:0000247" - - !!omap - - id: "s_4069" - - name: "3'-GMP" - - compartment: "e" - - formula: "C10H12N5O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4069" + - name: "3'-GMP" + - compartment: "e" + - formula: "C10H12N5O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3gmp" - chebi: "CHEBI:60732" - kegg.compound: "C06193" - metanetx.chemical: "MNXM2183" - sbo: "SBO:0000247" - - !!omap - - id: "s_4070" - - name: "2-phosphoglycolate" - - compartment: "e" - - formula: "C2H2O6P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_4070" + - name: "2-phosphoglycolate" + - compartment: "e" + - formula: "C2H2O6P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "2pglyc" - chebi: "CHEBI:58033" - kegg.compound: "C00988" - metanetx.chemical: "MNXM2074" - sbo: "SBO:0000247" - - !!omap - - id: "s_4071" - - name: "2-phosphoglycolate" - - compartment: "c" - - formula: "C2H2O6P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_4071" + - name: "2-phosphoglycolate" + - compartment: "c" + - formula: "C2H2O6P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "2pglyc" - chebi: "CHEBI:58033" - kegg.compound: "C00988" - metanetx.chemical: "MNXM2074" - sbo: "SBO:0000247" - - !!omap - - id: "s_4072" - - name: "cysteamine S-phosphate" - - compartment: "c" - - formula: "C2H7NO3PS" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4072" + - name: "cysteamine S-phosphate" + - compartment: "c" + - formula: "C2H7NO3PS" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:74631" - metanetx.chemical: "MNXM48297" - sbo: "SBO:0000247" - - !!omap - - id: "s_4073" - - name: "cysteamine" - - compartment: "c" - - formula: "C2H8NS" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_4073" + - name: "cysteamine" + - compartment: "c" + - formula: "C2H8NS" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "cysam" - chebi: "CHEBI:58029" - kegg.compound: "C01678" - metanetx.chemical: "MNXM1226" - sbo: "SBO:0000247" - - !!omap - - id: "s_4074" - - name: "cysteamine" - - compartment: "e" - - formula: "C2H8NS" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_4074" + - name: "cysteamine" + - compartment: "e" + - formula: "C2H8NS" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "cysam" - chebi: "CHEBI:58029" - kegg.compound: "C01678" - metanetx.chemical: "MNXM1226" - sbo: "SBO:0000247" - - !!omap - - id: "s_4075" - - name: "cysteamine S-phosphate" - - compartment: "e" - - formula: "C2H7NO3PS" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4075" + - name: "cysteamine S-phosphate" + - compartment: "e" + - formula: "C2H7NO3PS" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:74631" - metanetx.chemical: "MNXM48297" - sbo: "SBO:0000247" - - !!omap - - id: "s_4076" - - name: "hypotaurine" - - compartment: "c" - - formula: "C2H7NO2S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4076" + - name: "hypotaurine" + - compartment: "c" + - formula: "C2H7NO2S" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:16668" - kegg.compound: "C00519" - metanetx.chemical: "MNXM726" - sbo: "SBO:0000247" - - !!omap - - id: "s_4077" - - name: "O-phosphonatooxy-D-serine(2-)" - - compartment: "c" - - formula: "C3H6NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4077" + - name: "O-phosphonatooxy-D-serine(2-)" + - compartment: "c" + - formula: "C3H6NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pser__D" - chebi: "CHEBI:58680" - kegg.compound: "C02532" - metanetx.chemical: "MNXM4752" - sbo: "SBO:0000247" - - !!omap - - id: "s_4078" - - name: "O-phosphonatooxy-D-serine(2-)" - - compartment: "e" - - formula: "C3H6NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4078" + - name: "O-phosphonatooxy-D-serine(2-)" + - compartment: "e" + - formula: "C3H6NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pser__D" - chebi: "CHEBI:58680" - kegg.compound: "C02532" - metanetx.chemical: "MNXM4752" - sbo: "SBO:0000247" - - !!omap - - id: "s_4079" - - name: "2-aminobutanoate" - - compartment: "c" - - formula: "C4H9NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4079" + - name: "2-aminobutanoate" + - compartment: "c" + - formula: "C4H9NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "C02356" - chebi: "CHEBI:35621" - metanetx.chemical: "MNXM15850" - sbo: "SBO:0000247" - - !!omap - - id: "s_4080" - - name: "2-aminobutanoate" - - compartment: "e" - - formula: "C4H9NO2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4080" + - name: "2-aminobutanoate" + - compartment: "e" + - formula: "C4H9NO2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "C02356" - chebi: "CHEBI:35621" - metanetx.chemical: "MNXM15850" - sbo: "SBO:0000247" - - !!omap - - id: "s_4081" - - name: "uridine 2'-phosphate" - - compartment: "c" - - formula: "C9H11N2O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4081" + - name: "uridine 2'-phosphate" + - compartment: "c" + - formula: "C9H11N2O9P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:77802" - kegg.compound: "C03031" - metanetx.chemical: "MNXM13238" - sbo: "SBO:0000247" - - !!omap - - id: "s_4082" - - name: "uridine 2'-phosphate" - - compartment: "e" - - formula: "C9H11N2O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4082" + - name: "uridine 2'-phosphate" + - compartment: "e" + - formula: "C9H11N2O9P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:77802" - kegg.compound: "C03031" - metanetx.chemical: "MNXM13238" - sbo: "SBO:0000247" - - !!omap - - id: "s_4083" - - name: "3'-UMP" - - compartment: "c" - - formula: "C9H11N2O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4083" + - name: "3'-UMP" + - compartment: "c" + - formula: "C9H11N2O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3ump" - chebi: "CHEBI:60784" - kegg.compound: "C01368" - metanetx.chemical: "MNXM2184" - sbo: "SBO:0000247" - - !!omap - - id: "s_4084" - - name: "3'-UMP" - - compartment: "e" - - formula: "C9H11N2O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4084" + - name: "3'-UMP" + - compartment: "e" + - formula: "C9H11N2O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3ump" - chebi: "CHEBI:60784" - kegg.compound: "C01368" - metanetx.chemical: "MNXM2184" - sbo: "SBO:0000247" - - !!omap - - id: "s_4085" - - name: "Gly-Met" - - compartment: "e" - - formula: "C7H14N2O3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4085" + - name: "Gly-Met" + - compartment: "e" + - formula: "C7H14N2O3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly_met__L" - chebi: "CHEBI:74393" - metanetx.chemical: "MNXM55287" - sbo: "SBO:0000247" - - !!omap - - id: "s_4086" - - name: "Gly-Met" - - compartment: "c" - - formula: "C7H14N2O3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4086" + - name: "Gly-Met" + - compartment: "c" + - formula: "C7H14N2O3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly_met__L" - chebi: "CHEBI:74393" - metanetx.chemical: "MNXM55287" - sbo: "SBO:0000247" - - !!omap - - id: "s_4087" - - name: "Gly-Met" - - compartment: "v" - - formula: "C7H14N2O3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4087" + - name: "Gly-Met" + - compartment: "v" + - formula: "C7H14N2O3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "gly_met__L" - chebi: "CHEBI:74393" - metanetx.chemical: "MNXM55287" - sbo: "SBO:0000247" - - !!omap - - id: "s_4088" - - name: "N-phosphocreatine" - - compartment: "c" - - formula: "C4H8N3O5P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4088" + - name: "N-phosphocreatine" + - compartment: "c" + - formula: "C4H8N3O5P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:58092" - metanetx.chemical: "MNXM819" - sbo: "SBO:0000247" - - !!omap - - id: "s_4089" - - name: "creatinine" - - compartment: "c" - - formula: "C4H7N3O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4089" + - name: "creatinine" + - compartment: "c" + - formula: "C4H7N3O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "creat" - chebi: "CHEBI:16737" - kegg.compound: "C00791" - metanetx.chemical: "MNXM1470" - sbo: "SBO:0000247" - - !!omap - - id: "s_4090" - - name: "N-phosphocreatine" - - compartment: "e" - - formula: "C4H8N3O5P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4090" + - name: "N-phosphocreatine" + - compartment: "e" + - formula: "C4H8N3O5P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:58092" - metanetx.chemical: "MNXM819" - sbo: "SBO:0000247" - - !!omap - - id: "s_4091" - - name: "creatinine" - - compartment: "e" - - formula: "C4H7N3O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4091" + - name: "creatinine" + - compartment: "e" + - formula: "C4H7N3O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "creat" - chebi: "CHEBI:16737" - kegg.compound: "C00791" - metanetx.chemical: "MNXM1470" - sbo: "SBO:0000247" - - !!omap - - id: "s_4092" - - name: "N(omega)-phospho-L-arginine" - - compartment: "c" - - formula: "C6H14N4O5P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4092" + - name: "N(omega)-phospho-L-arginine" + - compartment: "c" + - formula: "C6H14N4O5P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "argp" - chebi: "CHEBI:58477" - kegg.compound: "C05945" - metanetx.chemical: "MNXM3663" - sbo: "SBO:0000247" - - !!omap - - id: "s_4093" - - name: "N(omega)-phospho-L-arginine" - - compartment: "e" - - formula: "C6H14N4O5P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4093" + - name: "N(omega)-phospho-L-arginine" + - compartment: "e" + - formula: "C6H14N4O5P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "argp" - chebi: "CHEBI:58477" - kegg.compound: "C05945" - metanetx.chemical: "MNXM3663" - sbo: "SBO:0000247" - - !!omap - - id: "s_4094" - - name: "2',3'-cyclic GMP" - - compartment: "c" - - formula: "C10H11N5O7P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4094" + - name: "2',3'-cyclic GMP" + - compartment: "c" + - formula: "C10H11N5O7P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "23cgmp" - chebi: "CHEBI:60837" - kegg.compound: "C06194" - metanetx.chemical: "MNXM3149" - sbo: "SBO:0000247" - - !!omap - - id: "s_4095" - - name: "2',3'-cyclic GMP" - - compartment: "e" - - formula: "C10H11N5O7P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4095" + - name: "2',3'-cyclic GMP" + - compartment: "e" + - formula: "C10H11N5O7P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "23cgmp" - chebi: "CHEBI:60837" - kegg.compound: "C06194" - metanetx.chemical: "MNXM3149" - sbo: "SBO:0000247" - - !!omap - - id: "s_4096" - - name: "O(4)-phospho-L-tyrosine" - - compartment: "c" - - formula: "C9H10NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4096" + - name: "O(4)-phospho-L-tyrosine" + - compartment: "c" + - formula: "C9H10NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "tyrp" - chebi: "CHEBI:62338" - kegg.compound: "C06501" - metanetx.chemical: "MNXM3323" - sbo: "SBO:0000247" - - !!omap - - id: "s_4097" - - name: "O(4)-phospho-L-tyrosine" - - compartment: "e" - - formula: "C9H10NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4097" + - name: "O(4)-phospho-L-tyrosine" + - compartment: "e" + - formula: "C9H10NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "tyrp" - chebi: "CHEBI:62338" - kegg.compound: "C06501" - metanetx.chemical: "MNXM3323" - sbo: "SBO:0000247" - - !!omap - - id: "s_4098" - - name: "triphosphate" - - compartment: "c" - - formula: "O10P3" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_4098" + - name: "triphosphate" + - compartment: "c" + - formula: "O10P3" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "pppi" - chebi: "CHEBI:18036" - kegg.compound: "C00536" - metanetx.chemical: "MNXM332" - sbo: "SBO:0000247" - - !!omap - - id: "s_4099" - - name: "triphosphate" - - compartment: "e" - - formula: "O10P3" - - charge: -5 - - annotation: !!omap + - !!omap + - id: "s_4099" + - name: "triphosphate" + - compartment: "e" + - formula: "O10P3" + - charge: -5 + - annotation: !!omap - bigg.metabolite: "pppi" - chebi: "CHEBI:18036" - kegg.compound: "C00536" - metanetx.chemical: "MNXM332" - sbo: "SBO:0000247" - - !!omap - - id: "s_4100" - - name: "cytidine 2'-phosphate" - - compartment: "c" - - formula: "C9H12N3O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4100" + - name: "cytidine 2'-phosphate" + - compartment: "c" + - formula: "C9H12N3O8P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:77766" - kegg.compound: "C03104" - metanetx.chemical: "MNXM11237" - sbo: "SBO:0000247" - - !!omap - - id: "s_4101" - - name: "cytidine 2'-phosphate" - - compartment: "e" - - formula: "C9H12N3O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4101" + - name: "cytidine 2'-phosphate" + - compartment: "e" + - formula: "C9H12N3O8P" + - charge: -2 + - annotation: !!omap - chebi: "CHEBI:77766" - kegg.compound: "C03104" - metanetx.chemical: "MNXM11237" - sbo: "SBO:0000247" - - !!omap - - id: "s_4102" - - name: "2',3'-cyclic UMP" - - compartment: "c" - - formula: "C9H10N2O8P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4102" + - name: "2',3'-cyclic UMP" + - compartment: "c" + - formula: "C9H10N2O8P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "23cump" - chebi: "CHEBI:60873" - kegg.compound: "C02355" - metanetx.chemical: "MNXM3150" - sbo: "SBO:0000247" - - !!omap - - id: "s_4103" - - name: "2',3'-cyclic UMP" - - compartment: "e" - - formula: "C9H10N2O8P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4103" + - name: "2',3'-cyclic UMP" + - compartment: "e" + - formula: "C9H10N2O8P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "23cump" - chebi: "CHEBI:60873" - kegg.compound: "C02355" - metanetx.chemical: "MNXM3150" - sbo: "SBO:0000247" - - !!omap - - id: "s_4104" - - name: "3-sulfino-L-alanine" - - compartment: "c" - - formula: "C3H6NO4S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4104" + - name: "3-sulfino-L-alanine" + - compartment: "c" + - formula: "C3H6NO4S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3sala" - chebi: "CHEBI:61085" - kegg.compound: "C00606" - metanetx.chemical: "MNXM498" - sbo: "SBO:0000247" - - !!omap - - id: "s_4105" - - name: "3-sulfino-L-alanine" - - compartment: "e" - - formula: "C3H6NO4S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4105" + - name: "3-sulfino-L-alanine" + - compartment: "e" + - formula: "C3H6NO4S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3sala" - chebi: "CHEBI:61085" - kegg.compound: "C00606" - metanetx.chemical: "MNXM498" - sbo: "SBO:0000247" - - !!omap - - id: "s_4106" - - name: "3'-AMP" - - compartment: "c" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4106" + - name: "3'-AMP" + - compartment: "c" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3amp" - chebi: "CHEBI:60880" - kegg.compound: "C01367" - metanetx.chemical: "MNXM1985" - sbo: "SBO:0000247" - - !!omap - - id: "s_4107" - - name: "3'-AMP" - - compartment: "e" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4107" + - name: "3'-AMP" + - compartment: "e" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "3amp" - chebi: "CHEBI:60880" - kegg.compound: "C01367" - metanetx.chemical: "MNXM1985" - sbo: "SBO:0000247" - - !!omap - - id: "s_4108" - - name: "6-O-alpha-D-glucopyranosyl-D-fructofuranose" - - compartment: "c" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4108" + - name: "6-O-alpha-D-glucopyranosyl-D-fructofuranose" + - compartment: "c" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pala" - chebi: "CHEBI:18394" - kegg.compound: "C01742" - metanetx.chemical: "MNXM3518" - sbo: "SBO:0000247" - - !!omap - - id: "s_4109" - - name: "6-O-alpha-D-glucopyranosyl-D-fructofuranose" - - compartment: "e" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4109" + - name: "6-O-alpha-D-glucopyranosyl-D-fructofuranose" + - compartment: "e" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "pala" - chebi: "CHEBI:18394" - kegg.compound: "C01742" - metanetx.chemical: "MNXM3518" - sbo: "SBO:0000247" - - !!omap - - id: "s_4110" - - name: "N-acetyl-L-cysteine" - - compartment: "c" - - formula: "C5H8NO3S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4110" + - name: "N-acetyl-L-cysteine" + - compartment: "c" + - formula: "C5H8NO3S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "CE1310" - chebi: "CHEBI:78236" - kegg.compound: "C06809" - metanetx.chemical: "MNXM98606" - sbo: "SBO:0000247" - - !!omap - - id: "s_4111" - - name: "N-acetyl-L-cysteine" - - compartment: "e" - - formula: "C5H8NO3S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4111" + - name: "N-acetyl-L-cysteine" + - compartment: "e" + - formula: "C5H8NO3S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "CE1310" - chebi: "CHEBI:78236" - kegg.compound: "C06809" - metanetx.chemical: "MNXM98606" - sbo: "SBO:0000247" - - !!omap - - id: "s_4112" - - name: "tetrathionate" - - compartment: "c" - - formula: "O6S4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4112" + - name: "tetrathionate" + - compartment: "c" + - formula: "O6S4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "tet" - chebi: "CHEBI:15226" - kegg.compound: "C02084" - metanetx.chemical: "MNXM1781" - sbo: "SBO:0000247" - - !!omap - - id: "s_4113" - - name: "thiosulfate" - - compartment: "c" - - formula: "HO3S2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4113" + - name: "thiosulfate" + - compartment: "c" + - formula: "HO3S2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "tsul" - chebi: "CHEBI:33542" - kegg.compound: "C00320" - metanetx.chemical: "MNXM323" - sbo: "SBO:0000247" - - !!omap - - id: "s_4114" - - name: "tetrathionate" - - compartment: "e" - - formula: "O6S4" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4114" + - name: "tetrathionate" + - compartment: "e" + - formula: "O6S4" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "tet" - chebi: "CHEBI:15226" - kegg.compound: "C02084" - metanetx.chemical: "MNXM1781" - sbo: "SBO:0000247" - - !!omap - - id: "s_4115" - - name: "2-hydroxyethane-1-sulfonate" - - compartment: "c" - - formula: "C2H5O4S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4115" + - name: "2-hydroxyethane-1-sulfonate" + - compartment: "c" + - formula: "C2H5O4S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "isetac" - chebi: "CHEBI:61904" - kegg.compound: "C05123" - metanetx.chemical: "MNXM1630" - sbo: "SBO:0000247" - - !!omap - - id: "s_4116" - - name: "2-hydroxyethane-1-sulfonate" - - compartment: "e" - - formula: "C2H5O4S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4116" + - name: "2-hydroxyethane-1-sulfonate" + - compartment: "e" + - formula: "C2H5O4S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "isetac" - chebi: "CHEBI:61904" - kegg.compound: "C05123" - metanetx.chemical: "MNXM1630" - sbo: "SBO:0000247" - - !!omap - - id: "s_4117" - - name: "5-dehydro-D-gluconate" - - compartment: "c" - - formula: "C6H9O7" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4117" + - name: "5-dehydro-D-gluconate" + - compartment: "c" + - formula: "C6H9O7" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "5dglcn" - chebi: "CHEBI:58143" - kegg.compound: "C01062" - metanetx.chemical: "MNXM963" - sbo: "SBO:0000247" - - !!omap - - id: "s_4118" - - name: "5-dehydro-D-gluconate" - - compartment: "e" - - formula: "C6H9O7" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4118" + - name: "5-dehydro-D-gluconate" + - compartment: "e" + - formula: "C6H9O7" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "5dglcn" - chebi: "CHEBI:58143" - kegg.compound: "C01062" - metanetx.chemical: "MNXM963" - sbo: "SBO:0000247" - - !!omap - - id: "s_4119" - - name: "Ala-Asp" - - compartment: "e" - - formula: "C7H11N2O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4119" + - name: "Ala-Asp" + - compartment: "e" + - formula: "C7H11N2O5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ala_L_asp__L" - chebi: "CHEBI:74363" - metanetx.chemical: "MNXM40494" - sbo: "SBO:0000247" - - !!omap - - id: "s_4120" - - name: "Ala-Asp" - - compartment: "c" - - formula: "C7H11N2O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4120" + - name: "Ala-Asp" + - compartment: "c" + - formula: "C7H11N2O5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ala_L_asp__L" - chebi: "CHEBI:74363" - metanetx.chemical: "MNXM40494" - sbo: "SBO:0000247" - - !!omap - - id: "s_4121" - - name: "Ala-Asp" - - compartment: "v" - - formula: "C7H11N2O5" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4121" + - name: "Ala-Asp" + - compartment: "v" + - formula: "C7H11N2O5" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ala_L_asp__L" - chebi: "CHEBI:74363" - metanetx.chemical: "MNXM40494" - sbo: "SBO:0000247" - - !!omap - - id: "s_4122" - - name: "methyl alpha-D-glucopyranoside" - - compartment: "c" - - formula: "C7H14O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4122" + - name: "methyl alpha-D-glucopyranoside" + - compartment: "c" + - formula: "C7H14O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "madg" - chebi: "CHEBI:320061" - metanetx.chemical: "MNXM724960" - sbo: "SBO:0000247" - - !!omap - - id: "s_4123" - - name: "methanol" - - compartment: "c" - - formula: "CH4O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4123" + - name: "methanol" + - compartment: "c" + - formula: "CH4O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "meoh" - chebi: "CHEBI:17790" - kegg.compound: "C00132" - metanetx.chemical: "MNXM157" - sbo: "SBO:0000247" - - !!omap - - id: "s_4124" - - name: "methanol" - - compartment: "e" - - formula: "CH4O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4124" + - name: "methanol" + - compartment: "e" + - formula: "CH4O" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "meoh" - chebi: "CHEBI:17790" - kegg.compound: "C00132" - metanetx.chemical: "MNXM157" - sbo: "SBO:0000247" - - !!omap - - id: "s_4125" - - name: "methyl alpha-D-glucopyranoside" - - compartment: "e" - - formula: "C7H14O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4125" + - name: "methyl alpha-D-glucopyranoside" + - compartment: "e" + - formula: "C7H14O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "madg" - chebi: "CHEBI:320061" - metanetx.chemical: "MNXM724960" - sbo: "SBO:0000247" - - !!omap - - id: "s_4126" - - name: "2',3'-cyclic CMP" - - compartment: "c" - - formula: "C9H11N3O7P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4126" + - name: "2',3'-cyclic CMP" + - compartment: "c" + - formula: "C9H11N3O7P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "23ccmp" - chebi: "CHEBI:60877" - kegg.compound: "C02354" - metanetx.chemical: "MNXM3148" - sbo: "SBO:0000247" - - !!omap - - id: "s_4127" - - name: "2',3'-cyclic CMP" - - compartment: "e" - - formula: "C9H11N3O7P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4127" + - name: "2',3'-cyclic CMP" + - compartment: "e" + - formula: "C9H11N3O7P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "23ccmp" - chebi: "CHEBI:60877" - kegg.compound: "C02354" - metanetx.chemical: "MNXM3148" - sbo: "SBO:0000247" - - !!omap - - id: "s_4128" - - name: "D-tagatose" - - compartment: "c" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4128" + - name: "D-tagatose" + - compartment: "c" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag__D" - chebi: "CHEBI:4249" - kegg.compound: "C00795" - metanetx.chemical: "MNXM92401" - sbo: "SBO:0000247" - - !!omap - - id: "s_4129" - - name: "D-tagatofuranose 6-phosphate" - - compartment: "c" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4129" + - name: "D-tagatofuranose 6-phosphate" + - compartment: "c" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "tag6p__D" - chebi: "CHEBI:58695" - kegg.compound: "C01097" - metanetx.chemical: "MNXM795" - sbo: "SBO:0000247" - - !!omap - - id: "s_4130" - - name: "D-tagatose" - - compartment: "e" - - formula: "C6H12O6" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4130" + - name: "D-tagatose" + - compartment: "e" + - formula: "C6H12O6" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "tag__D" - chebi: "CHEBI:4249" - kegg.compound: "C00795" - metanetx.chemical: "MNXM92401" - sbo: "SBO:0000247" - - !!omap - - id: "s_4131" - - name: "turanose" - - compartment: "e" - - formula: "C12H22O11" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4131" + - name: "turanose" + - compartment: "e" + - formula: "C12H22O11" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:32528" - kegg.compound: "C19636" - metanetx.chemical: "MNXM161984" - sbo: "SBO:0000247" - - !!omap - - id: "s_4132" - - name: "acetoacetate" - - compartment: "c" - - formula: "C4H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4132" + - name: "acetoacetate" + - compartment: "c" + - formula: "C4H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "acac" - chebi: "CHEBI:13705" - kegg.compound: "C00164" - metanetx.chemical: "MNXM154" - sbo: "SBO:0000247" - - !!omap - - id: "s_4133" - - name: "acetoacetate" - - compartment: "e" - - formula: "C4H5O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4133" + - name: "acetoacetate" + - compartment: "e" + - formula: "C4H5O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "acac" - chebi: "CHEBI:13705" - kegg.compound: "C00164" - metanetx.chemical: "MNXM154" - sbo: "SBO:0000247" - - !!omap - - id: "s_4134" - - name: "N(alpha)-acetyl-L-methionine" - - compartment: "c" - - formula: "C7H12NO3S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4134" + - name: "N(alpha)-acetyl-L-methionine" + - compartment: "c" + - formula: "C7H12NO3S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "C02712" - chebi: "CHEBI:132957" - kegg.compound: "C02712" - metanetx.chemical: "MNXM7576" - sbo: "SBO:0000247" - - !!omap - - id: "s_4135" - - name: "N(alpha)-acetyl-L-methionine" - - compartment: "e" - - formula: "C7H12NO3S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4135" + - name: "N(alpha)-acetyl-L-methionine" + - compartment: "e" + - formula: "C7H12NO3S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "C02712" - chebi: "CHEBI:132957" - kegg.compound: "C02712" - metanetx.chemical: "MNXM7576" - sbo: "SBO:0000247" - - !!omap - - id: "s_4136" - - name: "3-oxalomalate(3-)" - - compartment: "c" - - formula: "C6H3O8" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_4136" + - name: "3-oxalomalate(3-)" + - compartment: "c" + - formula: "C6H3O8" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:15593" - kegg.compound: "C01990" - metanetx.chemical: "MNXM3850" - sbo: "SBO:0000247" - - !!omap - - id: "s_4137" - - name: "3-oxalomalate(3-)" - - compartment: "e" - - formula: "C6H3O8" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_4137" + - name: "3-oxalomalate(3-)" + - compartment: "e" + - formula: "C6H3O8" + - charge: -3 + - annotation: !!omap - chebi: "CHEBI:15593" - kegg.compound: "C01990" - metanetx.chemical: "MNXM3850" - sbo: "SBO:0000247" - - !!omap - - id: "s_4138" - - name: "L-cysteate" - - compartment: "c" - - formula: "C3H6NO5S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4138" + - name: "L-cysteate" + - compartment: "c" + - formula: "C3H6NO5S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "Lcyst" - chebi: "CHEBI:58090" - kegg.compound: "C00506" - metanetx.chemical: "MNXM713" - sbo: "SBO:0000247" - - !!omap - - id: "s_4139" - - name: "L-cysteate" - - compartment: "e" - - formula: "C3H6NO5S" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4139" + - name: "L-cysteate" + - compartment: "e" + - formula: "C3H6NO5S" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "Lcyst" - chebi: "CHEBI:58090" - kegg.compound: "C00506" - metanetx.chemical: "MNXM713" - sbo: "SBO:0000247" - - !!omap - - id: "s_4140" - - name: "alpha-maltotriose" - - compartment: "e" - - formula: "C18H32O16" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4140" + - name: "alpha-maltotriose" + - compartment: "e" + - formula: "C18H32O16" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "malttr" - chebi: "CHEBI:61993" - kegg.compound: "C01835" - metanetx.chemical: "MNXM468" - sbo: "SBO:0000247" - - !!omap - - id: "s_4141" - - name: "2-phospho-D-glyceric acid" - - compartment: "e" - - formula: "C3H4O7P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_4141" + - name: "2-phospho-D-glyceric acid" + - compartment: "e" + - formula: "C3H4O7P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "2pg" - chebi: "CHEBI:58289" - kegg.compound: "C00631" - metanetx.chemical: "MNXM275" - sbo: "SBO:0000247" - - !!omap - - id: "s_4142" - - name: "3-phosphonato-D-glycerate(3-)" - - compartment: "e" - - formula: "C3H4O7P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_4142" + - name: "3-phosphonato-D-glycerate(3-)" + - compartment: "e" + - formula: "C3H4O7P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "3pg" - chebi: "CHEBI:58272" - kegg.compound: "C00197" - metanetx.chemical: "MNXM126" - sbo: "SBO:0000247" - - !!omap - - id: "s_4143" - - name: "Met-Ala" - - compartment: "e" - - formula: "C8H16N2O3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4143" + - name: "Met-Ala" + - compartment: "e" + - formula: "C8H16N2O3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "met_L_ala__L" - chebi: "CHEBI:73610" - metanetx.chemical: "MNXM61647" - sbo: "SBO:0000247" - - !!omap - - id: "s_4144" - - name: "Met-Ala" - - compartment: "c" - - formula: "C8H16N2O3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4144" + - name: "Met-Ala" + - compartment: "c" + - formula: "C8H16N2O3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "met_L_ala__L" - chebi: "CHEBI:73610" - metanetx.chemical: "MNXM61647" - sbo: "SBO:0000247" - - !!omap - - id: "s_4145" - - name: "D-glucose 1-phosphate" - - compartment: "e" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4145" + - name: "D-glucose 1-phosphate" + - compartment: "e" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "g1p" - chebi: "CHEBI:57629" - kegg.compound: "C00103" - metanetx.chemical: "MNXM89588" - sbo: "SBO:0000247" - - !!omap - - id: "s_4146" - - name: "carbamoyl phosphate" - - compartment: "e" - - formula: "CH2NO5P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4146" + - name: "carbamoyl phosphate" + - compartment: "e" + - formula: "CH2NO5P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "cbp" - chebi: "CHEBI:58228" - kegg.compound: "C00169" - metanetx.chemical: "MNXM138" - sbo: "SBO:0000247" - - !!omap - - id: "s_4147" - - name: "3-phospho-serine" - - compartment: "e" - - formula: "C3H6NO6P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4147" + - name: "3-phospho-serine" + - compartment: "e" + - formula: "C3H6NO6P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "pser__L" - chebi: "CHEBI:57524" - kegg.compound: "C01005" - metanetx.chemical: "MNXM379" - sbo: "SBO:0000247" - - !!omap - - id: "s_4148" - - name: "GMP" - - compartment: "e" - - formula: "C10H12N5O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4148" + - name: "GMP" + - compartment: "e" + - formula: "C10H12N5O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "gmp" - chebi: "CHEBI:58115" - kegg.compound: "C00144" - metanetx.chemical: "MNXM113" - sbo: "SBO:0000247" - - !!omap - - id: "s_4149" - - name: "myo-inositol hexakisphosphate" - - compartment: "e" - - formula: "C6H6O24P6" - - charge: -12 - - annotation: !!omap + - !!omap + - id: "s_4149" + - name: "myo-inositol hexakisphosphate" + - compartment: "e" + - formula: "C6H6O24P6" + - charge: -12 + - annotation: !!omap - bigg.metabolite: "minohp" - chebi: "CHEBI:58130" - kegg.compound: "C01204" - metanetx.chemical: "MNXM491" - sbo: "SBO:0000247" - - !!omap - - id: "s_4150" - - name: "D-glucose 6-phosphate" - - compartment: "e" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4150" + - name: "D-glucose 6-phosphate" + - compartment: "e" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "g6p" - chebi: "CHEBI:61548" - kegg.compound: "C00092" - metanetx.chemical: "MNXM160" - sbo: "SBO:0000247" - - !!omap - - id: "s_4151" - - name: "UMP" - - compartment: "e" - - formula: "C9H11N2O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4151" + - name: "UMP" + - compartment: "e" + - formula: "C9H11N2O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "ump" - chebi: "CHEBI:57865" - kegg.compound: "C00105" - metanetx.chemical: "MNXM80" - sbo: "SBO:0000247" - - !!omap - - id: "s_4152" - - name: "phosphoenolpyruvate" - - compartment: "e" - - formula: "C3H2O6P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_4152" + - name: "phosphoenolpyruvate" + - compartment: "e" + - formula: "C3H2O6P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "pep" - chebi: "CHEBI:58702" - kegg.compound: "C00074" - metanetx.chemical: "MNXM73" - sbo: "SBO:0000247" - - !!omap - - id: "s_4153" - - name: "D-mannose 6-phosphate" - - compartment: "e" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4153" + - name: "D-mannose 6-phosphate" + - compartment: "e" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "man6p" - chebi: "CHEBI:58735" - kegg.compound: "C00275" - metanetx.chemical: "MNXM427" - sbo: "SBO:0000247" - - !!omap - - id: "s_4154" - - name: "O-phosphoethanolamine" - - compartment: "e" - - formula: "C2H7NO4P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4154" + - name: "O-phosphoethanolamine" + - compartment: "e" + - formula: "C2H7NO4P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "ethamp" - chebi: "CHEBI:58190" - kegg.compound: "C00346" - metanetx.chemical: "MNXM187" - sbo: "SBO:0000247" - - !!omap - - id: "s_4155" - - name: "6-phospho-D-gluconate" - - compartment: "e" - - formula: "C6H10O10P" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_4155" + - name: "6-phospho-D-gluconate" + - compartment: "e" + - formula: "C6H10O10P" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "6pgc" - chebi: "CHEBI:58759" - kegg.compound: "C00345" - metanetx.chemical: "MNXM325" - sbo: "SBO:0000247" - - !!omap - - id: "s_4156" - - name: "D-mannose 1-phosphate" - - compartment: "e" - - formula: "C6H11O9P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4156" + - name: "D-mannose 1-phosphate" + - compartment: "e" + - formula: "C6H11O9P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "man1p" - chebi: "CHEBI:58409" - kegg.compound: "C00636" - metanetx.chemical: "MNXM721" - sbo: "SBO:0000247" - - !!omap - - id: "s_4157" - - name: "diphosphate" - - compartment: "e" - - formula: "HO7P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_4157" + - name: "diphosphate" + - compartment: "e" + - formula: "HO7P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "ppi" - chebi: "CHEBI:33019" - kegg.compound: "C00013" - metanetx.chemical: "MNXM11" - sbo: "SBO:0000247" - - !!omap - - id: "s_4158" - - name: "choline phosphate" - - compartment: "e" - - formula: "C5H13NO4P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4158" + - name: "choline phosphate" + - compartment: "e" + - formula: "C5H13NO4P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "cholp" - chebi: "CHEBI:295975" - kegg.compound: "C00588" - metanetx.chemical: "MNXM229" - sbo: "SBO:0000247" - - !!omap - - id: "s_4159" - - name: "thiosulfate" - - compartment: "e" - - formula: "HO3S2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4159" + - name: "thiosulfate" + - compartment: "e" + - formula: "HO3S2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "tsul" - chebi: "CHEBI:33542" - kegg.compound: "C00320" - metanetx.chemical: "MNXM323" - sbo: "SBO:0000247" - - !!omap - - id: "s_4160" - - name: "AMP" - - compartment: "e" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4160" + - name: "AMP" + - compartment: "e" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "amp" - chebi: "CHEBI:456215" - kegg.compound: "C00020" - metanetx.chemical: "MNXM14" - sbo: "SBO:0000247" - - !!omap - - id: "s_4161" - - name: "2',3'-cyclic AMP" - - compartment: "e" - - formula: "C10H11N5O6P" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4161" + - name: "2',3'-cyclic AMP" + - compartment: "e" + - formula: "C10H11N5O6P" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "23camp" - chebi: "CHEBI:60879" - kegg.compound: "C02353" - metanetx.chemical: "MNXM2598" - sbo: "SBO:0000247" - - !!omap - - id: "s_4162" - - name: "adenosine 2'-phosphate" - - compartment: "e" - - formula: "C10H12N5O7P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4162" + - name: "adenosine 2'-phosphate" + - compartment: "e" + - formula: "C10H12N5O7P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "amp2p" - chebi: "CHEBI:77740" - kegg.compound: "C00946" - metanetx.chemical: "MNXM7028" - sbo: "SBO:0000247" - - !!omap - - id: "s_4163" - - name: "CMP" - - compartment: "e" - - formula: "C9H12N3O8P" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4163" + - name: "CMP" + - compartment: "e" + - formula: "C9H12N3O8P" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "cmp" - chebi: "CHEBI:60377" - kegg.compound: "C00055" - metanetx.chemical: "MNXM31" - sbo: "SBO:0000247" - - !!omap - - id: "s_4164" - - name: "D-Glucosamine" - - compartment: "e" - - formula: "C6H14NO5" - - charge: 1 - - annotation: !!omap + - !!omap + - id: "s_4164" + - name: "D-Glucosamine" + - compartment: "e" + - formula: "C6H14NO5" + - charge: 1 + - annotation: !!omap - bigg.metabolite: "gam" - chebi: "CHEBI:58723" - kegg.compound: "C00329" - metanetx.chemical: "MNXM533" - sbo: "SBO:0000247" - - !!omap - - id: "s_4165" - - name: "2-deoxy-D-ribose" - - compartment: "e" - - formula: "C5H10O4" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4165" + - name: "2-deoxy-D-ribose" + - compartment: "e" + - formula: "C5H10O4" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "drib" - chebi: "CHEBI:28816" - kegg.compound: "C08347" - metanetx.chemical: "MNXM2474" - sbo: "SBO:0000247" - - !!omap - - id: "s_4166" - - name: "L-citrulline" - - compartment: "e" - - formula: "C6H13N3O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4166" + - name: "L-citrulline" + - compartment: "e" + - formula: "C6H13N3O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "citr__L" - chebi: "CHEBI:16349" - kegg.compound: "C00327" - metanetx.chemical: "MNXM211" - sbo: "SBO:0000247" - - !!omap - - id: "s_4167" - - name: "glycerone" - - compartment: "e" - - formula: "C3H6O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4167" + - name: "glycerone" + - compartment: "e" + - formula: "C3H6O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "dha" - chebi: "CHEBI:16016" - kegg.compound: "C00184" - metanetx.chemical: "MNXM460" - sbo: "SBO:0000247" - - !!omap - - id: "s_4168" - - name: "Ala-Leu" - - compartment: "e" - - formula: "C9H18N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4168" + - name: "Ala-Leu" + - compartment: "e" + - formula: "C9H18N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_L_ile__L" - chebi: "CHEBI:73770" - metanetx.chemical: "MNXM15786" - sbo: "SBO:0000247" - - !!omap - - id: "s_4169" - - name: "Ala-Leu" - - compartment: "c" - - formula: "C9H18N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4169" + - name: "Ala-Leu" + - compartment: "c" + - formula: "C9H18N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "ala_L_ile__L" - chebi: "CHEBI:73770" - metanetx.chemical: "MNXM15786" - sbo: "SBO:0000247" - - !!omap - - id: "s_4170" - - name: "Ala-Gly" - - compartment: "e" - - formula: "C5H10N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4170" + - name: "Ala-Gly" + - compartment: "e" + - formula: "C5H10N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "L_alagly" - chebi: "CHEBI:73757" - metanetx.chemical: "MNXM15783" - sbo: "SBO:0000247" - - !!omap - - id: "s_4171" - - name: "Ala-Gly" - - compartment: "c" - - formula: "C5H10N2O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4171" + - name: "Ala-Gly" + - compartment: "c" + - formula: "C5H10N2O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "L_alagly" - chebi: "CHEBI:73757" - metanetx.chemical: "MNXM15783" - sbo: "SBO:0000247" - - !!omap - - id: "s_4172" - - name: "N-acetyl-L-glutamate" - - compartment: "e" - - formula: "C7H9NO5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4172" + - name: "N-acetyl-L-glutamate" + - compartment: "e" + - formula: "C7H9NO5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "acglu" - chebi: "CHEBI:44337" - kegg.compound: "C00624" - metanetx.chemical: "MNXM730" - sbo: "SBO:0000247" - - !!omap - - id: "s_4173" - - name: "N-acetyl-L-glutamate" - - compartment: "c" - - formula: "C7H9NO5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4173" + - name: "N-acetyl-L-glutamate" + - compartment: "c" + - formula: "C7H9NO5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "acglu" - chebi: "CHEBI:44337" - kegg.compound: "C00624" - metanetx.chemical: "MNXM730" - sbo: "SBO:0000247" - - !!omap - - id: "s_4174" - - name: "lipoamide" - - compartment: "e" - - formula: "C8H15NOS2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4174" + - name: "lipoamide" + - compartment: "e" + - formula: "C8H15NOS2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "lpam" - chebi: "CHEBI:17460" - kegg.compound: "C00248" - metanetx.chemical: "MNXM1024" - sbo: "SBO:0000247" - - !!omap - - id: "s_4175" - - name: "lipoamide" - - compartment: "c" - - formula: "C8H15NOS2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4175" + - name: "lipoamide" + - compartment: "c" + - formula: "C8H15NOS2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "lpam" - chebi: "CHEBI:17460" - kegg.compound: "C00248" - metanetx.chemical: "MNXM1024" - sbo: "SBO:0000247" - - !!omap - - id: "s_4176" - - name: "L-Methionine S-oxide" - - compartment: "e" - - formula: "C5H11NO3S" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4176" + - name: "L-Methionine S-oxide" + - compartment: "e" + - formula: "C5H11NO3S" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "metsox_S__L" - chebi: "CHEBI:17016" - kegg.compound: "C02989" - metanetx.chemical: "MNXM2246" - sbo: "SBO:0000247" - - !!omap - - id: "s_4177" - - name: "homogentisate" - - compartment: "c" - - formula: "C8H7O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4177" + - name: "homogentisate" + - compartment: "c" + - formula: "C8H7O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "hgentis" - chebi: "CHEBI:16169" - kegg.compound: "C00544" - metanetx.chemical: "MNXM345" - sbo: "SBO:0000247" - - !!omap - - id: "s_4178" - - name: "4-maleylacetoacetate" - - compartment: "c" - - formula: "C8H6O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4178" + - name: "4-maleylacetoacetate" + - compartment: "c" + - formula: "C8H6O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "4mlacac" - chebi: "CHEBI:17105" - kegg.compound: "C01036" - metanetx.chemical: "MNXM691" - sbo: "SBO:0000247" - - !!omap - - id: "s_4179" - - name: "4-fumarylacetoacetate" - - compartment: "c" - - formula: "C8H6O6" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4179" + - name: "4-fumarylacetoacetate" + - compartment: "c" + - formula: "C8H6O6" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "4fumacac" - chebi: "CHEBI:18034" - kegg.compound: "C01061" - metanetx.chemical: "MNXM708" - sbo: "SBO:0000247" - - !!omap - - id: "s_4180" - - name: "L-xylulose" - - compartment: "c" - - formula: "C5H10O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4180" + - name: "L-xylulose" + - compartment: "c" + - formula: "C5H10O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "xylu__L" - chebi: "CHEBI:17140" - kegg.compound: "C00312" - metanetx.chemical: "MNXM597" - sbo: "SBO:0000247" - - !!omap - - id: "s_4181" - - name: "D-arabinitol" - - compartment: "c" - - formula: "C5H12O5" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4181" + - name: "D-arabinitol" + - compartment: "c" + - formula: "C5H12O5" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "abt__D" - chebi: "CHEBI:18333" - kegg.compound: "C01904" - metanetx.chemical: "MNXM1018" - sbo: "SBO:0000247" - - !!omap - - id: "s_4182" - - name: "2-hydroxyglutarate" - - compartment: "c" - - formula: "C5H6O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4182" + - name: "2-hydroxyglutarate" + - compartment: "c" + - formula: "C5H6O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "2hog" - chebi: "CHEBI:11596" - kegg.compound: "C02630" - metanetx.chemical: "MNXM1210" - sbo: "SBO:0000247" - - !!omap - - id: "s_4183" - - name: "propionyl-CoA" - - compartment: "c" - - formula: "C24H36N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_4183" + - name: "propionyl-CoA" + - compartment: "c" + - formula: "C24H36N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "ppcoa" - chebi: "CHEBI:57392" - kegg.compound: "C00100" - metanetx.chemical: "MNXM86" - sbo: "SBO:0000247" - - !!omap - - id: "s_4184" - - name: "3-oxopropanoate" - - compartment: "c" - - formula: "C3H3O3" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4184" + - name: "3-oxopropanoate" + - compartment: "c" + - formula: "C3H3O3" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "msa" - chebi: "CHEBI:33190" - kegg.compound: "C00222" - metanetx.chemical: "MNXM244" - sbo: "SBO:0000247" - - !!omap - - id: "s_4185" - - name: "(R)-2,3-dihydroxy-3-methylbutanoate" - - compartment: "c" - - formula: "C5H9O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4185" + - name: "(R)-2,3-dihydroxy-3-methylbutanoate" + - compartment: "c" + - formula: "C5H9O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "23dhmb" - chebi: "CHEBI:49072" - kegg.compound: "C04272" - metanetx.chemical: "MNXM114097" - sbo: "SBO:0000247" - - !!omap - - id: "s_4186" - - name: "3-hydroxy-3-methyl-2-oxobutanoate" - - compartment: "c" - - formula: "C5H7O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4186" + - name: "3-hydroxy-3-methyl-2-oxobutanoate" + - compartment: "c" + - formula: "C5H7O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "3hmoa" - chebi: "CHEBI:11812" - kegg.compound: "C04181" - metanetx.chemical: "MNXM1638" - sbo: "SBO:0000247" - - !!omap - - id: "s_4187" - - name: "2-acetyllactic acid" - - compartment: "c" - - formula: "C5H7O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4187" + - name: "2-acetyllactic acid" + - compartment: "c" + - formula: "C5H7O4" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:57774" - kegg.compound: "C00900" - metanetx.chemical: "MNXM426" - sbo: "SBO:0000247" - - !!omap - - id: "s_4188" - - name: "(2S)-2-acetolactate" - - compartment: "c" - - formula: "C5H7O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4188" + - name: "(2S)-2-acetolactate" + - compartment: "c" + - formula: "C5H7O4" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "alac__S" - chebi: "CHEBI:58476" - kegg.compound: "C06010" - metanetx.chemical: "MNXM114079" - sbo: "SBO:0000247" - - !!omap - - id: "s_4189" - - name: "(2R,3S)-3-methylmalate" - - compartment: "c" - - formula: "C5H6O5" - - charge: -2 - - annotation: !!omap + - !!omap + - id: "s_4189" + - name: "(2R,3S)-3-methylmalate" + - compartment: "c" + - formula: "C5H6O5" + - charge: -2 + - annotation: !!omap - bigg.metabolite: "r3mmal" - chebi: "CHEBI:58511" - kegg.compound: "C06032" - metanetx.chemical: "MNXM2512" - sbo: "SBO:0000247" - - !!omap - - id: "s_4190" - - name: "trans-2,cis-9-octadecadienoyl-CoA" - - compartment: "c" - - formula: "C39H62N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_4190" + - name: "trans-2,cis-9-octadecadienoyl-CoA" + - compartment: "c" + - formula: "C39H62N7O17P3S" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "lnlccoa" - chebi: "CHEBI:57383" - kegg.compound: "C02050" - metanetx.chemical: "MNXM638" - sbo: "SBO:0000247" - - !!omap - - id: "s_4191" - - name: "(9Z,12Z)-octadecadienoate" - - compartment: "c" - - formula: "C18H31O2" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4191" + - name: "(9Z,12Z)-octadecadienoate" + - compartment: "c" + - formula: "C18H31O2" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "lnlc" - chebi: "CHEBI:30245" - kegg.compound: "C01595" - metanetx.chemical: "MNXM293" - sbo: "SBO:0000247" - - !!omap - - id: "s_4192" - - name: "stachyose" - - compartment: "c" - - formula: "C24H42O21" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4192" + - name: "stachyose" + - compartment: "c" + - formula: "C24H42O21" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "stys" - chebi: "CHEBI:17164" - kegg.compound: "C01613" - metanetx.chemical: "MNXM1503" - sbo: "SBO:0000247" - - !!omap - - id: "s_4193" - - name: "raffinose" - - compartment: "c" - - formula: "C18H32O16" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4193" + - name: "raffinose" + - compartment: "c" + - formula: "C18H32O16" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "raffin" - chebi: "CHEBI:16634" - kegg.compound: "C00492" - metanetx.chemical: "MNXM621" - sbo: "SBO:0000247" - - !!omap - - id: "s_4194" - - name: "4-hydroxyphenyl acetate" - - compartment: "c" - - formula: "C8H8O3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4194" + - name: "4-hydroxyphenyl acetate" + - compartment: "c" + - formula: "C8H8O3" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "4hphac" - chebi: "CHEBI:18101" - kegg.compound: "C00642" - metanetx.chemical: "MNXM3863" - sbo: "SBO:0000247" - - !!omap - - id: "s_4195" - - name: "Hydroquinone" - - compartment: "c" - - formula: "C6H6O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4195" + - name: "Hydroquinone" + - compartment: "c" + - formula: "C6H6O2" + - charge: 0 + - annotation: !!omap - bigg.metabolite: "hqn" - chebi: "CHEBI:17594" - kegg.compound: "C00530" - metanetx.chemical: "MNXM376" - sbo: "SBO:0000247" - - !!omap - - id: "s_4196" - - name: "ATP" - - compartment: "g" - - formula: "C10H12N5O13P3" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_4196" + - name: "ATP" + - compartment: "g" + - formula: "C10H12N5O13P3" + - charge: -4 + - annotation: !!omap - bigg.metabolite: "atp" - chebi: "CHEBI:30616" - kegg.compound: "C00002" - metanetx.chemical: "MNXM3" - sbo: "SBO:0000247" - - !!omap - - id: "s_4197" - - name: "Ca(2+)" - - compartment: "g" - - formula: "Ca" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_4197" + - name: "Ca(2+)" + - compartment: "g" + - formula: "Ca" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "ca2" - chebi: "CHEBI:29108" - kegg.compound: "C00076" - metanetx.chemical: "MNXM128" - sbo: "SBO:0000247" - - !!omap - - id: "s_4198" - - name: "ADP" - - compartment: "g" - - formula: "C10H12N5O10P2" - - charge: -3 - - annotation: !!omap + - !!omap + - id: "s_4198" + - name: "ADP" + - compartment: "g" + - formula: "C10H12N5O10P2" + - charge: -3 + - annotation: !!omap - bigg.metabolite: "adp" - chebi: "CHEBI:456216" - kegg.compound: "C00008" - metanetx.chemical: "MNXM7" - sbo: "SBO:0000247" - - !!omap - - id: "s_4199" - - name: "Ca(2+)" - - compartment: "e" - - formula: "Ca" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_4199" + - name: "Ca(2+)" + - compartment: "e" + - formula: "Ca" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "ca2" - chebi: "CHEBI:29108" - kegg.compound: "C00076" - metanetx.chemical: "MNXM128" - sbo: "SBO:0000247" - - !!omap - - id: "s_4200" - - name: "chloride" - - compartment: "e" - - formula: "Cl" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4200" + - name: "chloride" + - compartment: "e" + - formula: "Cl" + - charge: -1 + - annotation: !!omap - bigg.metabolite: "cl" - chebi: "CHEBI:17996" - kegg.compound: "C00698" - metanetx.chemical: "MNXM43" - sbo: "SBO:0000247" - - !!omap - - id: "s_4201" - - name: "Cu2(+)" - - compartment: "e" - - formula: "Cu" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_4201" + - name: "Cu2(+)" + - compartment: "e" + - formula: "Cu" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "cu2" - chebi: "CHEBI:29036" - kegg.compound: "C00070" - metanetx.chemical: "MNXM632" - sbo: "SBO:0000247" - - !!omap - - id: "s_4202" - - name: "Mn(2+)" - - compartment: "e" - - formula: "Mn" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_4202" + - name: "Mn(2+)" + - compartment: "e" + - formula: "Mn" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "mn2" - chebi: "CHEBI:29035" - kegg.compound: "C19610" - metanetx.chemical: "MNXM2255" - sbo: "SBO:0000247" - - !!omap - - id: "s_4203" - - name: "Zn(2+)" - - compartment: "e" - - formula: "Zn" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_4203" + - name: "Zn(2+)" + - compartment: "e" + - formula: "Zn" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "zn2" - chebi: "CHEBI:29105" - kegg.compound: "C00038" - metanetx.chemical: "MNXM149" - sbo: "SBO:0000247" - - !!omap - - id: "s_4204" - - name: "Mg(2+)" - - compartment: "e" - - formula: "Mg" - - charge: 2 - - annotation: !!omap + - !!omap + - id: "s_4204" + - name: "Mg(2+)" + - compartment: "e" + - formula: "Mg" + - charge: 2 + - annotation: !!omap - bigg.metabolite: "mg2" - chebi: "CHEBI:18420" - kegg.compound: "C00305" - metanetx.chemical: "MNXM653" - sbo: "SBO:0000247" - - !!omap - - id: "s_4205" - - name: "cofactor" - - compartment: "c" - - formula: "" - - annotation: !!omap + - !!omap + - id: "s_4205" + - name: "cofactor" + - compartment: "c" + - formula: "" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_4206" - - name: "ion" - - compartment: "c" - - formula: "" - - annotation: !!omap + - !!omap + - id: "s_4206" + - name: "ion" + - compartment: "c" + - formula: "" + - annotation: !!omap - sbo: "SBO:0000649" - - !!omap - - id: "s_4207" - - name: "trans-4-hydroxy-L-proline" - - compartment: "c" - - formula: "C5H9NO3" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4207" + - name: "trans-4-hydroxy-L-proline" + - compartment: "c" + - formula: "C5H9NO3" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:18072" - kegg.compound: "C01157" - metanetx.chemical: "MNXM87584" - sbo: "SBO:0000247" - - !!omap - - id: "s_4208" - - name: "2,3-dihydroxy-3-methylbutanoate" - - compartment: "c" - - formula: "C5H9O4" - - charge: -1 - - annotation: !!omap + - !!omap + - id: "s_4208" + - name: "2,3-dihydroxy-3-methylbutanoate" + - compartment: "c" + - formula: "C5H9O4" + - charge: -1 + - annotation: !!omap - chebi: "CHEBI:11424" - kegg.compound: "C04039" - metanetx.chemical: "MNXM734" - sbo: "SBO:0000247" - - !!omap - - id: "s_4209" - - name: "Ferrocytochrome b5" - - compartment: "erm" - - formula: "" - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_4210" - - name: "Ferricytochrome b5" - - compartment: "erm" - - formula: "" - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_4211" - - name: "hexanoyl-CoA" - - compartment: "m" - - formula: "" - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_4212" - - name: "ethyl hexanoate" - - compartment: "m" - - formula: "C8H16O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4209" + - name: "Ferrocytochrome b5" + - compartment: "erm" + - formula: "" + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_4210" + - name: "Ferricytochrome b5" + - compartment: "erm" + - formula: "" + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_4211" + - name: "hexanoyl-CoA" + - compartment: "m" + - formula: "" + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_4212" + - name: "ethyl hexanoate" + - compartment: "m" + - formula: "C8H16O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:86055" - sbo: "SBO:0000247" - - !!omap - - id: "s_4213" - - name: "octanoyl-CoA" - - compartment: "m" - - formula: "C29H46N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_4213" + - name: "octanoyl-CoA" + - compartment: "m" + - formula: "C29H46N7O17P3S" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:15533" - kegg.compound: "C01944" - sbo: "SBO:0000247" - - !!omap - - id: "s_4214" - - name: "ethyl octanoate" - - compartment: "m" - - formula: "C10H20O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4214" + - name: "ethyl octanoate" + - compartment: "m" + - formula: "C10H20O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:87426" - kegg.compound: "C12292" - sbo: "SBO:0000247" - - !!omap - - id: "s_4215" - - name: "butanoyl-CoA" - - compartment: "m" - - formula: "C25H38N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_4215" + - name: "butanoyl-CoA" + - compartment: "m" + - formula: "C25H38N7O17P3S" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:57371" - kegg.compound: "C00136" - sbo: "SBO:0000247" - - !!omap - - id: "s_4216" - - name: "ethyl butanoate" - - compartment: "m" - - formula: "C6H12O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4216" + - name: "ethyl butanoate" + - compartment: "m" + - formula: "C6H12O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88764" - sbo: "SBO:0000247" - - !!omap - - id: "s_4217" - - name: "hexanol" - - compartment: "m" - - formula: "C6H14O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4217" + - name: "hexanol" + - compartment: "m" + - formula: "C6H14O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:87393" - sbo: "SBO:0000247" - - !!omap - - id: "s_4218" - - name: "hexyl acetate" - - compartment: "m" - - formula: "C8H16O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4218" + - name: "hexyl acetate" + - compartment: "m" + - formula: "C8H16O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:87510" - sbo: "SBO:0000247" - - !!omap - - id: "s_4219" - - name: "decanoyl-CoA" - - compartment: "m" - - formula: "C31H50N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_4219" + - name: "decanoyl-CoA" + - compartment: "m" + - formula: "C31H50N7O17P3S" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:61430" - kegg.compound: "C05274" - sbo: "SBO:0000247" - - !!omap - - id: "s_4220" - - name: "ethyl decanoate" - - compartment: "m" - - formula: "C12H24O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4220" + - name: "ethyl decanoate" + - compartment: "m" + - formula: "C12H24O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:87430" - sbo: "SBO:0000247" - - !!omap - - id: "s_4221" - - name: "ethyl hexanoate" - - compartment: "c" - - formula: "C8H16O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4221" + - name: "ethyl hexanoate" + - compartment: "c" + - formula: "C8H16O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:86055" - sbo: "SBO:0000247" - - !!omap - - id: "s_4222" - - name: "ethyl octanoate" - - compartment: "c" - - formula: "C10H20O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4222" + - name: "ethyl octanoate" + - compartment: "c" + - formula: "C10H20O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:87426" - kegg.compound: "C12292" - sbo: "SBO:0000247" - - !!omap - - id: "s_4223" - - name: "ethyl butanoate" - - compartment: "c" - - formula: "C6H12O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4223" + - name: "ethyl butanoate" + - compartment: "c" + - formula: "C6H12O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88764" - sbo: "SBO:0000247" - - !!omap - - id: "s_4224" - - name: "hexyl acetate" - - compartment: "c" - - formula: "C8H16O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4224" + - name: "hexyl acetate" + - compartment: "c" + - formula: "C8H16O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:87510" - sbo: "SBO:0000247" - - !!omap - - id: "s_4225" - - name: "ethyl decanoate" - - compartment: "c" - - formula: "C12H24O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4225" + - name: "ethyl decanoate" + - compartment: "c" + - formula: "C12H24O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:87430" - sbo: "SBO:0000247" - - !!omap - - id: "s_4226" - - name: "ethyl hexanoate" - - compartment: "e" - - formula: "C8H16O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4226" + - name: "ethyl hexanoate" + - compartment: "e" + - formula: "C8H16O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:86055" - sbo: "SBO:0000247" - - !!omap - - id: "s_4227" - - name: "ethyl octanoate" - - compartment: "e" - - formula: "C10H20O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4227" + - name: "ethyl octanoate" + - compartment: "e" + - formula: "C10H20O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:87426" - kegg.compound: "C12292" - sbo: "SBO:0000247" - - !!omap - - id: "s_4228" - - name: "ethyl butanoate" - - compartment: "e" - - formula: "C6H12O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4228" + - name: "ethyl butanoate" + - compartment: "e" + - formula: "C6H12O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:88764" - sbo: "SBO:0000247" - - !!omap - - id: "s_4229" - - name: "hexyl acetate" - - compartment: "e" - - formula: "C8H16O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4229" + - name: "hexyl acetate" + - compartment: "e" + - formula: "C8H16O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:87510" - sbo: "SBO:0000247" - - !!omap - - id: "s_4230" - - name: "ethyl decanoate" - - compartment: "e" - - formula: "C12H24O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4230" + - name: "ethyl decanoate" + - compartment: "e" + - formula: "C12H24O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:87430" - sbo: "SBO:0000247" - - !!omap - - id: "s_4231" - - name: "ethyl acetate" - - compartment: "m" - - formula: "C4H8O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4231" + - name: "ethyl acetate" + - compartment: "m" + - formula: "C4H8O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:27750" - kegg.compound: "C00849" - sbo: "SBO:0000247" - - !!omap - - id: "s_4232" - - name: "propanal" - - compartment: "c" - - formula: "C3H6O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4232" + - name: "propanal" + - compartment: "c" + - formula: "C3H6O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17153" - kegg.compound: "C00479" - sbo: "SBO:0000247" - - !!omap - - id: "s_4233" - - name: "propanol" - - compartment: "c" - - formula: "C3H8O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4233" + - name: "propanol" + - compartment: "c" + - formula: "C3H8O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:28831" - kegg.compound: "C05979" - sbo: "SBO:0000247" - - !!omap - - id: "s_4234" - - name: "propanal" - - compartment: "m" - - formula: "C3H6O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4234" + - name: "propanal" + - compartment: "m" + - formula: "C3H6O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17153" - kegg.compound: "C00479" - sbo: "SBO:0000247" - - !!omap - - id: "s_4235" - - name: "propanol" - - compartment: "m" - - formula: "C3H8O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4235" + - name: "propanol" + - compartment: "m" + - formula: "C3H8O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:28831" - kegg.compound: "C05979" - sbo: "SBO:0000247" - - !!omap - - id: "s_4236" - - name: "propanal" - - compartment: "e" - - formula: "C3H6O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4236" + - name: "propanal" + - compartment: "e" + - formula: "C3H6O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:17153" - kegg.compound: "C00479" - sbo: "SBO:0000247" - - !!omap - - id: "s_4237" - - name: "propanol" - - compartment: "e" - - formula: "C3H8O" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4237" + - name: "propanol" + - compartment: "e" + - formula: "C3H8O" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:28831" - kegg.compound: "C05979" - sbo: "SBO:0000247" - - !!omap - - id: "s_4238" - - name: "methional" - - compartment: "c" - - formula: "C4H8OS" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4238" + - name: "methional" + - compartment: "c" + - formula: "C4H8OS" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:49017" - sbo: "SBO:0000247" - - !!omap - - id: "s_4239" - - name: "methionol" - - compartment: "c" - - formula: "C4H10OS" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4239" + - name: "methionol" + - compartment: "c" + - formula: "C4H10OS" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:49019" - sbo: "SBO:0000247" - - !!omap - - id: "s_4240" - - name: "methional" - - compartment: "m" - - formula: "C4H8OS" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4240" + - name: "methional" + - compartment: "m" + - formula: "C4H8OS" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:49017" - sbo: "SBO:0000247" - - !!omap - - id: "s_4241" - - name: "methionol" - - compartment: "m" - - formula: "C4H10OS" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4241" + - name: "methionol" + - compartment: "m" + - formula: "C4H10OS" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:49019" - sbo: "SBO:0000247" - - !!omap - - id: "s_4242" - - name: "methional" - - compartment: "e" - - formula: "C4H8OS" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4242" + - name: "methional" + - compartment: "e" + - formula: "C4H8OS" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:49017" - sbo: "SBO:0000247" - - !!omap - - id: "s_4243" - - name: "methionol" - - compartment: "e" - - formula: "C4H10OS" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4243" + - name: "methionol" + - compartment: "e" + - formula: "C4H10OS" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:49019" - sbo: "SBO:0000247" - - !!omap - - id: "s_4244" - - name: "(4-hydroxyphenyl)acetaldehyde" - - compartment: "c" - - formula: "C8H8O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4244" + - name: "(4-hydroxyphenyl)acetaldehyde" + - compartment: "c" + - formula: "C8H8O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:15621" - sbo: "SBO:0000247" - - !!omap - - id: "s_4245" - - name: "tyrosol" - - compartment: "c" - - formula: "C8H10O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4245" + - name: "tyrosol" + - compartment: "c" + - formula: "C8H10O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:1879" - kegg.compound: "C06044" - sbo: "SBO:0000247" - - !!omap - - id: "s_4246" - - name: "(4-hydroxyphenyl)acetaldehyde" - - compartment: "m" - - formula: "C8H8O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4246" + - name: "(4-hydroxyphenyl)acetaldehyde" + - compartment: "m" + - formula: "C8H8O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:15621" - sbo: "SBO:0000247" - - !!omap - - id: "s_4247" - - name: "tyrosol" - - compartment: "m" - - formula: "C8H10O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4247" + - name: "tyrosol" + - compartment: "m" + - formula: "C8H10O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:1879" - kegg.compound: "C06044" - sbo: "SBO:0000247" - - !!omap - - id: "s_4248" - - name: "(4-hydroxyphenyl)acetaldehyde" - - compartment: "e" - - formula: "C8H8O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4248" + - name: "(4-hydroxyphenyl)acetaldehyde" + - compartment: "e" + - formula: "C8H8O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:15621" - sbo: "SBO:0000247" - - !!omap - - id: "s_4249" - - name: "tyrosol" - - compartment: "e" - - formula: "C8H10O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4249" + - name: "tyrosol" + - compartment: "e" + - formula: "C8H10O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:1879" - kegg.compound: "C06044" - sbo: "SBO:0000247" - - !!omap - - id: "s_4250" - - name: "propionate" - - compartment: "c" - - formula: "C3H6O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4250" + - name: "propionate" + - compartment: "c" + - formula: "C3H6O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:30768" - kegg.compound: "C00163" - sbo: "SBO:0000247" - - !!omap - - id: "s_4251" - - name: "propionate" - - compartment: "p" - - formula: "C3H6O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4251" + - name: "propionate" + - compartment: "p" + - formula: "C3H6O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:30768" - kegg.compound: "C00163" - sbo: "SBO:0000247" - - !!omap - - id: "s_4252" - - name: "propionyl-CoA" - - compartment: "p" - - formula: "C24H36N7O17P3S" - - charge: -4 - - annotation: !!omap + - !!omap + - id: "s_4252" + - name: "propionyl-CoA" + - compartment: "p" + - formula: "C24H36N7O17P3S" + - charge: -4 + - annotation: !!omap - chebi: "CHEBI:57386" - kegg.compound: "C00100" - sbo: "SBO:0000247" - - !!omap - - id: "s_4253" - - name: "ethyl propionate" - - compartment: "m" - - formula: "C5H10O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4253" + - name: "ethyl propionate" + - compartment: "m" + - formula: "C5H10O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:41330" - sbo: "SBO:0000247" - - !!omap - - id: "s_4254" - - name: "tyrosyl acetate" - - compartment: "c" - - formula: "C10H12O3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_4255" - - name: "tyrosyl acetate" - - compartment: "e" - - formula: "C10H12O3" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_4256" - - name: "methionyl acetate" - - compartment: "c" - - formula: "C6H12O2S" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_4257" - - name: "methionyl acetate" - - compartment: "e" - - formula: "C6H12O2S" - - charge: 0 - - annotation: !!omap - - sbo: "SBO:0000247" - - !!omap - - id: "s_4258" - - name: "propyl acetate" - - compartment: "c" - - formula: "C5H10O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4254" + - name: "tyrosyl acetate" + - compartment: "c" + - formula: "C10H12O3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_4255" + - name: "tyrosyl acetate" + - compartment: "e" + - formula: "C10H12O3" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_4256" + - name: "methionyl acetate" + - compartment: "c" + - formula: "C6H12O2S" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_4257" + - name: "methionyl acetate" + - compartment: "e" + - formula: "C6H12O2S" + - charge: 0 + - annotation: !!omap + - sbo: "SBO:0000247" + - !!omap + - id: "s_4258" + - name: "propyl acetate" + - compartment: "c" + - formula: "C5H10O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:40116" - sbo: "SBO:0000247" - - !!omap - - id: "s_4259" - - name: "propyl acetate" - - compartment: "e" - - formula: "C5H10O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4259" + - name: "propyl acetate" + - compartment: "e" + - formula: "C5H10O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:40116" - sbo: "SBO:0000247" - - !!omap - - id: "s_4261" - - name: "ethyl propionate" - - compartment: "c" - - formula: "C5H10O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4261" + - name: "ethyl propionate" + - compartment: "c" + - formula: "C5H10O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:41330" - sbo: "SBO:0000247" - - !!omap - - id: "s_4262" - - name: "ethyl propionate" - - compartment: "e" - - formula: "C5H10O2" - - charge: 0 - - annotation: !!omap + - !!omap + - id: "s_4262" + - name: "ethyl propionate" + - compartment: "e" + - formula: "C5H10O2" + - charge: 0 + - annotation: !!omap - chebi: "CHEBI:41330" - sbo: "SBO:0000247" - reactions: - - !!omap - - id: "r_0001" - - name: "(R)-lactate:ferricytochrome-c 2-oxidoreductase" - - metabolites: !!omap - - s_0025: -1 - - s_0709: -2 - - s_0710: 2 - - s_1399: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YDL174C and YEL039C) or (YDL174C and YJR048W) or (YEL039C and YEL071W) or (YEL071W and YJR048W)" - - annotation: !!omap - - ec-code: - - "1.1.2.4" - - "1.1.99.-" + - !!omap + - id: "r_0001" + - name: "(R)-lactate:ferricytochrome-c 2-oxidoreductase" + - metabolites: !!omap + - s_0025: -1 + - s_0709: -2 + - s_0710: 2 + - s_1399: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YDL174C and YEL039C) or (YDL174C and YJR048W) or (YEL039C and YEL071W) or (YEL071W and YJR048W)" + - eccodes: "1.1.2.4; 1.1.99.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.2.4; 1.1.99.-" - bigg.reaction: "D_LACDcm" - kegg.pathway: - - "sce00620" - - "sce00920" + - "sce00620" + - "sce00920" - kegg.reaction: "R00197" - metanetx.reaction: "MNXR138960" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0002" - - name: "(R)-lactate:ferricytochrome-c 2-oxidoreductase" - - metabolites: !!omap - - s_0027: -1 - - s_0709: -2 - - s_0710: 2 - - s_1401: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YDL178W and YEL039C) or (YDL178W and YJR048W)" - - annotation: !!omap - - ec-code: - - "1.1.2.4" - - "1.1.99.-" + - confidence_score: 2 + - !!omap + - id: "r_0002" + - name: "(R)-lactate:ferricytochrome-c 2-oxidoreductase" + - metabolites: !!omap + - s_0027: -1 + - s_0709: -2 + - s_0710: 2 + - s_1401: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YDL178W and YEL039C) or (YDL178W and YJR048W)" + - eccodes: "1.1.2.4; 1.1.99.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.2.4; 1.1.99.-" - bigg.reaction: "D_LACDm" - kegg.pathway: - - "sce00620" - - "sce00920" + - "sce00620" + - "sce00920" - kegg.reaction: "R00197" - metanetx.reaction: "MNXR138960" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0003" - - name: "(R,R)-butanediol dehydrogenase" - - metabolites: !!omap - - s_0020: 1 - - s_0035: -1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL060W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0003" + - name: "(R,R)-butanediol dehydrogenase" + - metabolites: !!omap + - s_0020: 1 + - s_0035: -1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL060W" + - eccodes: "1.1.1.4" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.4" - bigg.reaction: "BTDD_RR" - kegg.pathway: "sce00650" - kegg.reaction: "R02946" - metanetx.reaction: "MNXR107844" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0004" - - name: "(S)-lactate:ferricytochrome-c 2-oxidoreductase" - - metabolites: !!omap - - s_0063: -1 - - s_0709: -2 - - s_0710: 2 - - s_1399: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YEL039C and YML054C) or (YJR048W and YML054C)" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0004" + - name: "(S)-lactate:ferricytochrome-c 2-oxidoreductase" + - metabolites: !!omap + - s_0063: -1 + - s_0709: -2 + - s_0710: 2 + - s_1399: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YEL039C and YML054C) or (YJR048W and YML054C)" + - eccodes: "1.1.2.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.2.3" - bigg.reaction: "L_LACD2cm" - kegg.pathway: - - "sce00620" - - "sce00920" + - "sce00620" + - "sce00920" - kegg.reaction: "R00196" - metanetx.reaction: "MNXR138959" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0005" - - name: "1,3-beta-glucan synthase" - - metabolites: !!omap - - s_0001: 1 - - s_0794: 1 - - s_1538: 1 - - s_1543: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR032W or YMR306W or (YLR342W and YCR034W)" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0005" + - name: "1,3-beta-glucan synthase" + - metabolites: !!omap + - s_0001: 1 + - s_0794: 1 + - s_1538: 1 + - s_1543: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR032W or YMR306W or (YLR342W and YCR034W)" + - eccodes: "2.4.1.34" + - references: "7649185" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.34" - kegg.pathway: - - "sce00500" - - "sce04011" + - "sce00500" + - "sce04011" - kegg.reaction: "R03118" - metanetx.reaction: "MNXR143499" - pmid: "7649185" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0006" - - name: "1,6-beta-glucan synthase" - - metabolites: !!omap - - s_0004: 1 - - s_0794: 1 - - s_1538: 1 - - s_1543: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR143W or YPR159W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0006" + - name: "1,6-beta-glucan synthase" + - metabolites: !!omap + - s_0004: 1 + - s_0794: 1 + - s_1538: 1 + - s_1543: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR143W or YPR159W" + - eccodes: "" + - references: "8321211" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - pmid: "8321211" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0007" - - name: "1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino)imidazole-4-carboxamide isomerase" - - metabolites: !!omap - - s_0077: -1 - - s_0312: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL020C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0007" + - name: "1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino)imidazole-4-carboxamide isomerase" + - metabolites: !!omap + - s_0077: -1 + - s_0312: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL020C" + - eccodes: "5.3.1.16" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.1.16" - bigg.reaction: "PRMICI" - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R04640" - metanetx.reaction: "MNXR103169" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0012" - - name: "1-pyrroline-5-carboxylate dehydrogenase" - - metabolites: !!omap - - s_0119: -1 - - s_0799: 1 - - s_0807: -2 - - s_0993: 1 - - s_1200: -1 - - s_1205: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR037W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0012" + - name: "1-pyrroline-5-carboxylate dehydrogenase" + - metabolites: !!omap + - s_0119: -1 + - s_0799: 1 + - s_0807: -2 + - s_0993: 1 + - s_1200: -1 + - s_1205: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR037W" + - eccodes: "1.2.1.88" + - references: "387737" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.88" - bigg.reaction: "P5CDm" - kegg.pathway: - - "sce00250" - - "sce00330" + - "sce00250" + - "sce00330" - kegg.reaction: "R00707" - metanetx.reaction: "MNXR102301" - pmid: "387737" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0013" - - name: "2,3-diketo-5-methylthio-1-phosphopentane degradation reaction" - - metabolites: !!omap - - s_0294: 1 - - s_0311: -1 - - s_0722: 1 - - s_0794: 6 - - s_0803: -3 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YEL038W and YMR009W" - - annotation: !!omap - - ec-code: - - "1.13.11.54" - - "3.1.3.77" + - confidence_score: 3 + - !!omap + - id: "r_0013" + - name: "2,3-diketo-5-methylthio-1-phosphopentane degradation reaction" + - metabolites: !!omap + - s_0294: 1 + - s_0311: -1 + - s_0722: 1 + - s_0794: 6 + - s_0803: -3 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YEL038W and YMR009W" + - eccodes: "1.13.11.54; 3.1.3.77" + - references: "14506228" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.13.11.54; 3.1.3.77" - kegg.pathway: "sce00270" - pmid: "14506228" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0014" - - name: "2,5-diamino-6-ribitylamino-4(3H)-pyrimidinone 5'-phosphate deaminase" - - metabolites: !!omap - - s_0142: -1 - - s_0313: 1 - - s_0419: 1 - - s_0794: -1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL066C" - - annotation: !!omap - - ec-code: - - "3.5.4.26" - - "5.4.99.28" + - confidence_score: 3 + - !!omap + - id: "r_0014" + - name: "2,5-diamino-6-ribitylamino-4(3H)-pyrimidinone 5'-phosphate deaminase" + - metabolites: !!omap + - s_0142: -1 + - s_0313: 1 + - s_0419: 1 + - s_0794: -1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL066C" + - eccodes: "3.5.4.26; 5.4.99.28" + - references: "9068650" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.5.4.26; 5.4.99.28" - bigg.reaction: "DRTPPD" - kegg.pathway: "sce00740" - kegg.reaction: "R09377" - metanetx.reaction: "MNXR112805" - pmid: "9068650" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0015" - - name: "2,5-diamino-6-ribosylamino-4(3H)-pyrimidinone 5'-phosphate reductase (NADPH)" - - metabolites: !!omap - - s_0141: -1 - - s_0142: 1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR153W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0015" + - name: "2,5-diamino-6-ribosylamino-4(3H)-pyrimidinone 5'-phosphate reductase (NADPH)" + - metabolites: !!omap + - s_0141: -1 + - s_0142: 1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR153W" + - eccodes: "1.1.1.302" + - references: "9068650" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.302" - kegg.pathway: "sce00740" - kegg.reaction: "R09376" - metanetx.reaction: "MNXR112804" - pmid: "9068650" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0016" - - name: "2-aceto-2-hydroxybutanoate synthase" - - metabolites: !!omap - - s_0039: 1 - - s_0179: -1 - - s_0460: 1 - - s_0799: -1 - - s_1401: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YCL009C and YMR108W) or YMR108W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0016" + - name: "2-aceto-2-hydroxybutanoate synthase" + - metabolites: !!omap + - s_0039: 1 + - s_0179: -1 + - s_0460: 1 + - s_0799: -1 + - s_1401: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YCL009C and YMR108W) or YMR108W" + - eccodes: "2.2.1.6" + - references: "8972574" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.2.1.6" - bigg.reaction: "ACHBSm" - kegg.pathway: - - "sce00290" - - "sce00650" - - "sce00660" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00290" + - "sce00650" + - "sce00660" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R08648" - metanetx.reaction: "MNXR95260" - pmid: "8972574" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0017" - - name: "2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase" - - metabolites: !!omap - - s_0006: 1 - - s_0148: -1 - - s_0424: 1 - - s_0437: -1 - - s_0799: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL256W" - - annotation: !!omap - - ec-code: - - "2.5.1.15" - - "2.7.6.3" - - "4.1.2.25" + - confidence_score: 3 + - !!omap + - id: "r_0017" + - name: "2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase" + - metabolites: !!omap + - s_0006: 1 + - s_0148: -1 + - s_0424: 1 + - s_0437: -1 + - s_0799: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL256W" + - eccodes: "2.5.1.15; 2.7.6.3; 4.1.2.25" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" - kegg.pathway: "sce00790" - kegg.reaction: "R03503" - metanetx.reaction: "MNXR100694" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0018" - - name: "2-aminoadipate transaminase" - - metabolites: !!omap - - s_0176: -1 - - s_0180: 1 - - s_0953: 1 - - s_0991: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER152C or YGL202W or YJL060W" - - annotation: !!omap - - ec-code: - - "2.6.1.39" - - "2.6.1.57" - - "2.6.1.7" + - confidence_score: 2 + - !!omap + - id: "r_0018" + - name: "2-aminoadipate transaminase" + - metabolites: !!omap + - s_0176: -1 + - s_0180: 1 + - s_0953: 1 + - s_0991: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER152C or YGL202W or YJL060W" + - eccodes: "2.6.1.39; 2.6.1.57; 2.6.1.7" + - references: "10714900; 19342587" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.6.1.39; 2.6.1.57; 2.6.1.7" - bigg.reaction: "AATA" - kegg.pathway: - - "sce00130" - - "sce00270" - - "sce00300" - - "sce00350" - - "sce00360" - - "sce00380" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00130" + - "sce00270" + - "sce00300" + - "sce00350" + - "sce00360" + - "sce00380" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01939" - metanetx.reaction: "MNXR95160" - pmid: - - "10714900" - - "19342587" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0019" - - name: "2-dehydropantoate 2-reductase" - - metabolites: !!omap - - s_0030: 1 - - s_0149: -1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR063C" - - annotation: !!omap + - "10714900" + - "19342587" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0019" + - name: "2-dehydropantoate 2-reductase" + - metabolites: !!omap + - s_0030: 1 + - s_0149: -1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR063C" + - eccodes: "1.1.1.169" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.169" - bigg.reaction: "DPR" - kegg.pathway: - - "sce00770" - - "sce01110" + - "sce00770" + - "sce01110" - kegg.reaction: "R02472" - metanetx.reaction: "MNXR97779" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0020" - - name: "2-deoxy-D-arabino-heptulosonate 7-phosphate synthetase" - - metabolites: !!omap - - s_0350: 1 - - s_0552: -1 - - s_0807: -1 - - s_1326: 1 - - s_1361: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR035W or YBR249C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0020" + - name: "2-deoxy-D-arabino-heptulosonate 7-phosphate synthetase" + - metabolites: !!omap + - s_0350: 1 + - s_0552: -1 + - s_0807: -1 + - s_1326: 1 + - s_1361: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR035W or YBR249C" + - eccodes: "2.5.1.54" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.54" - bigg.reaction: "DDPAm" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01826" - metanetx.reaction: "MNXR97218" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0021" - - name: "2-hexaprenyl-6-methoxy-1,4-benzoquinone methyltransferase" - - metabolites: !!omap - - s_0155: -1 - - s_0156: 1 - - s_0799: 1 - - s_1415: 1 - - s_1419: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - annotation: !!omap - - ec-code: - - "1.14.13.-" - - "2.1.1.114" - - "2.1.1.201" - - "2.1.1.64" - - "2.7.-.-" + - confidence_score: 2 + - !!omap + - id: "r_0021" + - name: "2-hexaprenyl-6-methoxy-1,4-benzoquinone methyltransferase" + - metabolites: !!omap + - s_0155: -1 + - s_0156: 1 + - s_0799: 1 + - s_1415: 1 + - s_1419: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" + - eccodes: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" + - references: "15792955" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - bigg.reaction: "2HPMBQMTm" - kegg.pathway: - - "sce00130" - - "sce01110" + - "sce00130" + - "sce01110" - kegg.reaction: "R04983" - metanetx.reaction: "MNXR109269" - pmid: "15792955" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0022" - - name: "2-hexaprenyl-6-methoxyphenol monooxygenase" - - metabolites: !!omap - - s_0155: 1 - - s_0157: -1 - - s_0807: 1 - - s_1278: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - annotation: !!omap - - ec-code: - - "1.14.13.-" - - "2.1.1.114" - - "2.1.1.201" - - "2.1.1.64" - - "2.7.-.-" + - confidence_score: 3 + - !!omap + - id: "r_0022" + - name: "2-hexaprenyl-6-methoxyphenol monooxygenase" + - metabolites: !!omap + - s_0155: 1 + - s_0157: -1 + - s_0807: 1 + - s_1278: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" + - eccodes: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" + - references: "15792955" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - bigg.reaction: "2HP6MPMOm" - kegg.pathway: - - "sce00130" - - "sce01110" + - "sce00130" + - "sce01110" - kegg.reaction: "R04982" - metanetx.reaction: "MNXR109268" - pmid: "15792955" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0023" - - name: "2-isopropylmalate hydratase" - - metabolites: !!omap - - s_0162: 1 - - s_0165: -1 - - s_0803: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL009C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0023" + - name: "2-isopropylmalate hydratase" + - metabolites: !!omap + - s_0162: 1 + - s_0165: -1 + - s_0803: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL009C" + - eccodes: "4.2.1.33" + - references: "3071717" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.33" - bigg.reaction: "IPPMIb" - kegg.pathway: - - "sce00290" - - "sce01110" - - "sce01210" - - "sce01230" + - "sce00290" + - "sce01110" + - "sce01210" + - "sce01230" - kegg.reaction: "R03968" - metanetx.reaction: "MNXR100826" - pmid: "3071717" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0024" - - name: "2-isopropylmalate synthase" - - metabolites: !!omap - - s_0162: 1 - - s_0232: -1 - - s_0373: -1 - - s_0529: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL104C or YOR108W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0024" + - name: "2-isopropylmalate synthase" + - metabolites: !!omap + - s_0162: 1 + - s_0232: -1 + - s_0373: -1 + - s_0529: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL104C or YOR108W" + - eccodes: "2.3.3.13" + - references: "6090272" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.3.13" - bigg.reaction: "IPPS" - kegg.pathway: - - "sce00290" - - "sce00620" - - "sce01110" - - "sce01210" - - "sce01230" + - "sce00290" + - "sce00620" + - "sce01110" + - "sce01210" + - "sce01230" - kegg.reaction: "R01213" - metanetx.reaction: "MNXR100879" - pmid: "6090272" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0025" - - name: "2-isopropylmalate synthase" - - metabolites: !!omap - - s_0164: 1 - - s_0233: -1 - - s_0376: -1 - - s_0532: 1 - - s_0799: 1 - - s_0807: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL104C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0025" + - name: "2-isopropylmalate synthase" + - metabolites: !!omap + - s_0164: 1 + - s_0233: -1 + - s_0376: -1 + - s_0532: 1 + - s_0799: 1 + - s_0807: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL104C" + - eccodes: "2.3.3.13" + - references: "6090272" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.3.13" - bigg.reaction: "IPPSm" - kegg.pathway: - - "sce00290" - - "sce00620" - - "sce01110" - - "sce01210" - - "sce01230" + - "sce00290" + - "sce00620" + - "sce01110" + - "sce01210" + - "sce01230" - kegg.reaction: "R01213" - metanetx.reaction: "MNXR100879" - pmid: "6090272" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0026" - - name: "2-keto-4-methylthiobutyrate transamination" - - metabolites: !!omap - - s_0180: 1 - - s_0294: -1 - - s_0991: -1 - - s_1029: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR208W or YJR148W or YGL202W or YHR137W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0026" + - name: "2-keto-4-methylthiobutyrate transamination" + - metabolites: !!omap + - s_0180: 1 + - s_0294: -1 + - s_0991: -1 + - s_1029: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR208W or YJR148W or YGL202W or YHR137W" + - eccodes: "" + - references: "14506228" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - kegg.reaction: "R07396" - metanetx.reaction: "MNXR95923" - pmid: "14506228" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0027" - - name: "2-methylcitrate dehydratase" - - metabolites: !!omap - - s_0454: 1 - - s_0807: 1 - - s_0834: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR234W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0027" + - name: "2-methylcitrate dehydratase" + - metabolites: !!omap + - s_0454: 1 + - s_0807: 1 + - s_0834: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR234W" + - eccodes: "4.2.1.36" + - references: "5908136" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.36" - kegg.pathway: - - "sce00300" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00300" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R03444" - metanetx.reaction: "MNXR141287" - pmid: "5908136" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0028" - - name: "2-methylcitrate synthase" - - metabolites: !!omap - - s_0174: 1 - - s_0532: 1 - - s_0799: 1 - - s_0807: -1 - - s_1273: -1 - - s_1382: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR001W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0028" + - name: "2-methylcitrate synthase" + - metabolites: !!omap + - s_0174: 1 + - s_0532: 1 + - s_0799: 1 + - s_0807: -1 + - s_1273: -1 + - s_1382: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR001W" + - eccodes: "2.3.3.1" + - references: "16332871" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.3.1" - bigg.reaction: "MCITSm" - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00931" - metanetx.reaction: "MNXR101417" - pmid: "16332871" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0029" - - name: "2-oxo-4-methyl-3-carboxypentanoate decarboxylation" - - metabolites: !!omap - - s_0010: -1 - - s_0291: 1 - - s_0456: 1 - - s_0794: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR148W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0029" + - name: "2-oxo-4-methyl-3-carboxypentanoate decarboxylation" + - metabolites: !!omap + - s_0010: -1 + - s_0291: 1 + - s_0456: 1 + - s_0794: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR148W" + - eccodes: "2.6.1.42" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "OMCDC" - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01652" - metanetx.reaction: "MNXR102180" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0030" - - name: "2-oxo-4-methyl-3-carboxypentanoate decarboxylation" - - metabolites: !!omap - - s_0011: -1 - - s_0292: 1 - - s_0460: 1 - - s_0799: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR208W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0030" + - name: "2-oxo-4-methyl-3-carboxypentanoate decarboxylation" + - metabolites: !!omap + - s_0011: -1 + - s_0292: 1 + - s_0460: 1 + - s_0799: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR208W" + - eccodes: "2.6.1.42" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "OMCDCm" - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01652" - metanetx.reaction: "MNXR102180" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0032" - - name: "3',5'-bisphosphate nucleotidase" - - metabolites: !!omap - - s_0390: -1 - - s_0423: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL064C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0032" + - name: "3',5'-bisphosphate nucleotidase" + - metabolites: !!omap + - s_0390: -1 + - s_0423: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL064C" + - eccodes: "3.1.3.7" + - references: "7809627" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.7" - bigg.reaction: "BPNT" - kegg.pathway: - - "sce00920" - - "sce01130" + - "sce00920" + - "sce01130" - kegg.reaction: "R00188" - metanetx.reaction: "MNXR96321" - pmid: "7809627" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0033" - - name: "3',5'-cyclic-nucleotide phosphodiesterase" - - metabolites: !!omap - - s_0192: -1 - - s_0423: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL248W or YOR360C" - - annotation: !!omap - - ec-code: - - "3.1.4.17" - - "3.1.4.53" + - confidence_score: 3 + - !!omap + - id: "r_0033" + - name: "3',5'-cyclic-nucleotide phosphodiesterase" + - metabolites: !!omap + - s_0192: -1 + - s_0423: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL248W or YOR360C" + - eccodes: "3.1.4.17; 3.1.4.53" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.4.17; 3.1.4.53" - bigg.reaction: "PDE1" - kegg.pathway: "sce00230" - kegg.reaction: "R00191" - metanetx.reaction: "MNXR95886" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0034" - - name: "3',5'-cyclic-nucleotide phosphodiesterase" - - metabolites: !!omap - - s_0194: -1 - - s_0584: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR360C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0034" + - name: "3',5'-cyclic-nucleotide phosphodiesterase" + - metabolites: !!omap + - s_0194: -1 + - s_0584: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR360C" + - eccodes: "3.1.4.53" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.53" - bigg.reaction: "PDE2" - kegg.pathway: "sce00230" - metanetx.reaction: "MNXR136084" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0035" - - name: "3',5'-cyclic-nucleotide phosphodiesterase" - - metabolites: !!omap - - s_0196: -1 - - s_0794: 1 - - s_0803: -1 - - s_0849: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR360C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0035" + - name: "3',5'-cyclic-nucleotide phosphodiesterase" + - metabolites: !!omap + - s_0196: -1 + - s_0794: 1 + - s_0803: -1 + - s_0849: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR360C" + - eccodes: "3.1.4.53" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.53" - bigg.reaction: "PDE3" - kegg.pathway: "sce00230" - metanetx.reaction: "MNXR136083" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0036" - - name: "3',5'-cyclic-nucleotide phosphodiesterase" - - metabolites: !!omap - - s_0195: -1 - - s_0782: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR360C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0036" + - name: "3',5'-cyclic-nucleotide phosphodiesterase" + - metabolites: !!omap + - s_0195: -1 + - s_0782: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR360C" + - eccodes: "3.1.4.53" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.53" - bigg.reaction: "PDE4" - kegg.pathway: "sce00230" - kegg.reaction: "R01234" - metanetx.reaction: "MNXR100078" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0037" - - name: "3',5'-cyclic-nucleotide phosphodiesterase" - - metabolites: !!omap - - s_0193: -1 - - s_0526: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR360C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0037" + - name: "3',5'-cyclic-nucleotide phosphodiesterase" + - metabolites: !!omap + - s_0193: -1 + - s_0526: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR360C" + - eccodes: "3.1.4.53" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.53" - bigg.reaction: "PDE5" - kegg.pathway: "sce00230" - metanetx.reaction: "MNXR136082" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0038" - - name: "3,4-dihydroxy-2-butanone-4-phosphate synthase" - - metabolites: !!omap - - s_0158: 1 - - s_0577: -1 - - s_0722: 1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR487C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0038" + - name: "3,4-dihydroxy-2-butanone-4-phosphate synthase" + - metabolites: !!omap + - s_0158: 1 + - s_0577: -1 + - s_0722: 1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR487C" + - eccodes: "4.1.99.12" + - references: "12595523" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.99.12" - bigg.reaction: "DB4PS" - kegg.pathway: - - "sce00740" - - "sce01110" + - "sce00740" + - "sce01110" - kegg.reaction: "R07281" - metanetx.reaction: "MNXR97178" - pmid: "12595523" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0039" - - name: "3-dehydroquinate dehydratase" - - metabolites: !!omap - - s_0210: -1 - - s_0211: 1 - - s_0803: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR127W" - - annotation: !!omap - - ec-code: - - "1.1.1.25" - - "2.5.1.19" - - "2.7.1.71" - - "4.2.1.10" - - "4.2.3.4" + - confidence_score: 3 + - !!omap + - id: "r_0039" + - name: "3-dehydroquinate dehydratase" + - metabolites: !!omap + - s_0210: -1 + - s_0211: 1 + - s_0803: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR127W" + - eccodes: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - bigg.reaction: "DHQTi" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03084" - metanetx.reaction: "MNXR97449" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0040" - - name: "3-dehydroquinate synthase" - - metabolites: !!omap - - s_0210: 1 - - s_0349: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR127W" - - annotation: !!omap - - ec-code: - - "1.1.1.25" - - "2.5.1.19" - - "2.7.1.71" - - "4.2.1.10" - - "4.2.3.4" + - confidence_score: 2 + - !!omap + - id: "r_0040" + - name: "3-dehydroquinate synthase" + - metabolites: !!omap + - s_0210: 1 + - s_0349: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR127W" + - eccodes: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" + - references: "6355828" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - bigg.reaction: "DHQS" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03083" - metanetx.reaction: "MNXR97447" - pmid: "6355828" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0041" - - name: "3-dehydrosphinganine reductase" - - metabolites: !!omap - - s_0231: -1 - - s_0795: -1 - - s_1208: 1 - - s_1213: -1 - - s_1445: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR265W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0041" + - name: "3-dehydrosphinganine reductase" + - metabolites: !!omap + - s_0231: -1 + - s_0795: -1 + - s_1208: 1 + - s_1213: -1 + - s_1445: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR265W" + - eccodes: "1.1.1.102" + - references: "18296751; 9804843" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.102" - kegg.pathway: "sce00600" - kegg.reaction: "R02978" - metanetx.reaction: "MNXR94866" - pmid: - - "18296751" - - "9804843" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0042" - - name: "3-deoxy-D-arabino-heptulosonate 7-phosphate synthetase" - - metabolites: !!omap - - s_0349: 1 - - s_0551: -1 - - s_0803: -1 - - s_1322: 1 - - s_1360: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR249C or YDR035W" - - annotation: !!omap + - "18296751" + - "9804843" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0042" + - name: "3-deoxy-D-arabino-heptulosonate 7-phosphate synthetase" + - metabolites: !!omap + - s_0349: 1 + - s_0551: -1 + - s_0803: -1 + - s_1322: 1 + - s_1360: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR249C or YDR035W" + - eccodes: "2.5.1.54" + - references: "2880280" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.54" - bigg.reaction: "DDPA" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01826" - metanetx.reaction: "MNXR97218" - pmid: "2880280" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0043" - - name: "3-hexaprenyl-4,5-dihydroxybenzoate hydroxylase" - - metabolites: !!omap - - s_0212: 1 - - s_0215: -1 - - s_1275: -0.5 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL252C or YDR376W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0043" + - name: "3-hexaprenyl-4,5-dihydroxybenzoate hydroxylase" + - metabolites: !!omap + - s_0212: 1 + - s_0215: -1 + - s_1275: -0.5 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL252C or YDR376W" + - eccodes: "" + - references: "15792955" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "3OPHB5Hm" - kegg.reaction: "R06865" - metanetx.reaction: "MNXR110601" - pmid: "15792955" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0044" - - name: "3-hexaprenyl-4-hydroxy-5-methoxybenzoate decarboxylase" - - metabolites: !!omap - - s_0157: 1 - - s_0214: -1 - - s_0460: 1 - - s_0799: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR538W and YDR539W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0044" + - name: "3-hexaprenyl-4-hydroxy-5-methoxybenzoate decarboxylase" + - metabolites: !!omap + - s_0157: 1 + - s_0214: -1 + - s_0460: 1 + - s_0799: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR538W and YDR539W" + - eccodes: "" + - references: "15792955" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - kegg.reaction: "R06866" - metanetx.reaction: "MNXR94901" - pmid: "15792955" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0045" - - name: "3-hydroxy-L-kynurenine hydrolase" - - metabolites: !!omap - - s_0222: -1 - - s_0224: 1 - - s_0794: 1 - - s_0803: -1 - - s_0955: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR231C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0045" + - name: "3-hydroxy-L-kynurenine hydrolase" + - metabolites: !!omap + - s_0222: -1 + - s_0224: 1 + - s_0794: 1 + - s_0803: -1 + - s_0955: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR231C" + - eccodes: "3.7.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.7.1.3" - bigg.reaction: "HKYNH" - kegg.pathway: "sce00380" - kegg.reaction: "R02668" - metanetx.reaction: "MNXR100656" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0057" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxotetradecanoyl-CoA)" - - metabolites: !!omap - - s_0054: -1 - - s_0257: 1 - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 2 + - !!omap + - id: "r_0057" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxotetradecanoyl-CoA)" + - metabolites: !!omap + - s_0054: -1 + - s_0257: 1 + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "HACD6p" - kegg.reaction: "R04739" - metanetx.reaction: "MNXR100547" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0058" - - name: "3-hydroxyanthranilate 3,4-dioxygenase" - - metabolites: !!omap - - s_0147: 1 - - s_0224: -1 - - s_1275: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR025C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0058" + - name: "3-hydroxyanthranilate 3,4-dioxygenase" + - metabolites: !!omap + - s_0147: 1 + - s_0224: -1 + - s_1275: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR025C" + - eccodes: "1.13.11.6" + - references: "9539135" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.13.11.6" - bigg.reaction: "3HAO" - kegg.pathway: "sce00380" @@ -30782,358 +30921,406 @@ - metanetx.reaction: "MNXR94889" - pmid: "9539135" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0059" - - name: "3-isopropylmalate 3-methyltransferase" - - metabolites: !!omap - - s_0009: -1 - - s_0217: 1 - - s_1413: 1 - - s_1416: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER175C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0059" + - name: "3-isopropylmalate 3-methyltransferase" + - metabolites: !!omap + - s_0009: -1 + - s_0217: 1 + - s_1413: 1 + - s_1416: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER175C" + - eccodes: "2.1.1.145" + - references: "15147181" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.145" - pmid: "15147181" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0060" - - name: "3-isopropylmalate dehydratase" - - metabolites: !!omap - - s_0009: -1 - - s_0165: 1 - - s_0803: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL009C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0060" + - name: "3-isopropylmalate dehydratase" + - metabolites: !!omap + - s_0009: -1 + - s_0165: 1 + - s_0803: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL009C" + - eccodes: "4.2.1.33" + - references: "3071717" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.33" - bigg.reaction: "IPPMIa" - kegg.pathway: - - "sce00290" - - "sce01110" - - "sce01210" - - "sce01230" + - "sce00290" + - "sce01110" + - "sce01210" + - "sce01230" - kegg.reaction: "R04001" - metanetx.reaction: "MNXR100827" - pmid: "3071717" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0061" - - name: "3-isopropylmalate dehydrogenase" - - metabolites: !!omap - - s_0009: -1 - - s_0010: 1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL018W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0061" + - name: "3-isopropylmalate dehydrogenase" + - metabolites: !!omap + - s_0009: -1 + - s_0010: 1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL018W" + - eccodes: "1.1.1.85" + - references: "6297759" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.85" - bigg.reaction: "IPMD" - kegg.pathway: - - "sce00290" - - "sce00660" - - "sce01110" - - "sce01210" - - "sce01230" + - "sce00290" + - "sce00660" + - "sce01110" + - "sce01210" + - "sce01230" - kegg.reaction: "R04426" - metanetx.reaction: "MNXR100878" - pmid: "6297759" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0062" - - name: "3-methyl-2-oxobutanoate decarboxylase" - - metabolites: !!omap - - s_0232: -1 - - s_0456: 1 - - s_0794: -1 - - s_0937: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - annotation: !!omap - - ec-code: - - "4.1.1.-" - - "4.1.1.1" - - "4.1.1.43" - - "4.1.1.74" + - confidence_score: 3 + - !!omap + - id: "r_0062" + - name: "3-methyl-2-oxobutanoate decarboxylase" + - metabolites: !!omap + - s_0232: -1 + - s_0456: 1 + - s_0794: -1 + - s_0937: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" + - eccodes: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" + - references: "12902239" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - bigg.reaction: "3MOBDC" - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR94922" - pmid: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0063" - - name: "3-methyl-2-oxobutanoate hydroxymethyltransferase" - - metabolites: !!omap - - s_0150: 1 - - s_0233: -1 - - s_0307: -1 - - s_0807: -1 - - s_1488: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR176W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0063" + - name: "3-methyl-2-oxobutanoate hydroxymethyltransferase" + - metabolites: !!omap + - s_0150: 1 + - s_0233: -1 + - s_0307: -1 + - s_0807: -1 + - s_1488: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR176W" + - eccodes: "2.1.2.11" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.2.11" - bigg.reaction: "MTMOHT" - kegg.pathway: - - "sce00770" - - "sce01110" + - "sce00770" + - "sce01110" - kegg.reaction: "R01226" - metanetx.reaction: "MNXR101702" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0064" - - name: "3-methyl-2-oxopentanoate decarboxylase" - - metabolites: !!omap - - s_0056: -1 - - s_0166: 1 - - s_0456: 1 - - s_0794: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL080C or YGR087C or YLR044C or YLR134W" - - annotation: !!omap - - ec-code: - - "4.1.1.-" - - "4.1.1.1" - - "4.1.1.43" - - "4.1.1.74" + - confidence_score: 2 + - !!omap + - id: "r_0064" + - name: "3-methyl-2-oxopentanoate decarboxylase" + - metabolites: !!omap + - s_0056: -1 + - s_0166: 1 + - s_0456: 1 + - s_0794: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL080C or YGR087C or YLR044C or YLR134W" + - eccodes: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" + - references: "12902239" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - bigg.reaction: "3MOPDC" - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce01110" + - "sce01130" - kegg.reaction: "R03894" - metanetx.reaction: "MNXR94925" - pmid: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0065" - - name: "3-phosphoshikimate 1-carboxyvinyltransferase" - - metabolites: !!omap - - s_0261: -1 - - s_0324: 1 - - s_1322: 1 - - s_1360: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR127W" - - annotation: !!omap - - ec-code: - - "1.1.1.25" - - "2.5.1.19" - - "2.7.1.71" - - "4.2.1.10" - - "4.2.3.4" + - confidence_score: 3 + - !!omap + - id: "r_0065" + - name: "3-phosphoshikimate 1-carboxyvinyltransferase" + - metabolites: !!omap + - s_0261: -1 + - s_0324: 1 + - s_1322: 1 + - s_1360: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR127W" + - eccodes: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" + - references: "6355828" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - bigg.reaction: "PSCVT" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03460" - metanetx.reaction: "MNXR103226" - pmid: "6355828" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0066" - - name: "4-amino-4-deoxychorismate synthase" - - metabolites: !!omap - - s_0269: 1 - - s_0515: -1 - - s_0991: 1 - - s_0999: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNR033W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0066" + - name: "4-amino-4-deoxychorismate synthase" + - metabolites: !!omap + - s_0269: 1 + - s_0515: -1 + - s_0991: 1 + - s_0999: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNR033W" + - eccodes: "2.6.1.85" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.85" - bigg.reaction: "ADCS" - kegg.pathway: "sce00790" - kegg.reaction: "R01716" - metanetx.reaction: "MNXR95440" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0067" - - name: "4-aminobenzoate synthase" - - metabolites: !!omap - - s_0269: -1 - - s_0271: 1 - - s_0794: 1 - - s_1399: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR289W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0067" + - name: "4-aminobenzoate synthase" + - metabolites: !!omap + - s_0269: -1 + - s_0271: 1 + - s_0794: 1 + - s_1399: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR289W" + - eccodes: "4.1.3.38" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.3.38" - bigg.reaction: "ADCL" - kegg.reaction: "R05553" - metanetx.reaction: "MNXR95436" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0068" - - name: "4-aminobutyrate transaminase" - - metabolites: !!omap - - s_0180: -1 - - s_0734: -1 - - s_0991: 1 - - s_1461: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR019W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0068" + - name: "4-aminobutyrate transaminase" + - metabolites: !!omap + - s_0180: -1 + - s_0734: -1 + - s_0991: 1 + - s_1461: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR019W" + - eccodes: "2.6.1.19" + - references: "10590462" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.19" - bigg.reaction: "ABTA" - kegg.pathway: - - "sce00250" - - "sce00280" - - "sce00410" - - "sce00640" - - "sce00650" + - "sce00250" + - "sce00280" + - "sce00410" + - "sce00640" + - "sce00650" - kegg.reaction: "R01648" - metanetx.reaction: "MNXR95186" - pmid: "10590462" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0069" - - name: "4-hydroxy-L-threonine synthase" - - metabolites: !!omap - - s_0264: -1 - - s_0285: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR053W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0069" + - name: "4-hydroxy-L-threonine synthase" + - metabolites: !!omap + - s_0264: -1 + - s_0285: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR053W" + - eccodes: "4.2.3.1" + - references: "8082795" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.3.1" - bigg.reaction: "4HTHRS" - kegg.pathway: - - "sce00260" - - "sce00750" - - "sce01110" - - "sce01230" + - "sce00260" + - "sce00750" + - "sce01110" + - "sce01230" - kegg.reaction: "R05086" - metanetx.reaction: "MNXR95024" - pmid: "8082795" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0070" - - name: "4-hydroxybenzoate formation" - - metabolites: !!omap - - s_0287: 1 - - s_0290: -1 - - s_0532: 1 - - s_0799: 1 - - s_0807: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0070" + - name: "4-hydroxybenzoate formation" + - metabolites: !!omap + - s_0287: 1 + - s_0290: -1 + - s_0532: 1 + - s_0799: 1 + - s_0807: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "11583838" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "4HBZFm" - kegg.reaction: "R01301" - metanetx.reaction: "MNXR95011" - pmid: "11583838" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_0072" - - name: "4-methyl-2-oxopentanoate decarboxylase" - - metabolites: !!omap - - s_0234: 1 - - s_0291: -1 - - s_0456: 1 - - s_0794: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL080C" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_0072" + - name: "4-methyl-2-oxopentanoate decarboxylase" + - metabolites: !!omap + - s_0234: 1 + - s_0291: -1 + - s_0456: 1 + - s_0794: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL080C" + - eccodes: "4.1.1.-" + - references: "12902239" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.-" - bigg.reaction: "4MOPDC" - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR137950" - pmid: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0073" - - name: "4PP-IP5 depyrophosphorylation to IP6" - - metabolites: !!omap - - s_0279: -1 - - s_0794: 1 - - s_0803: -1 - - s_1158: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR410W or YOR163W" - - annotation: !!omap - - ec-code: - - "2.7.4.21" - - "2.7.4.24" - - "3.6.1.52" - - "3.6.1.60" + - confidence_score: 3 + - !!omap + - id: "r_0073" + - name: "4PP-IP5 depyrophosphorylation to IP6" + - metabolites: !!omap + - s_0279: -1 + - s_0794: 1 + - s_0803: -1 + - s_1158: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR410W or YOR163W" + - eccodes: "2.7.4.21; 2.7.4.24; 3.6.1.52; 3.6.1.60" + - references: "17412958" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.4.21; 2.7.4.24; 3.6.1.52; 3.6.1.60" - kegg.reaction: "R05779" - metanetx.reaction: "MNXR103044" - pmid: "17412958" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0074" - - name: "4PP-IP5 pyrophosphorylation to 4,5-PP2-IP4" - - metabolites: !!omap - - s_0263: 1 - - s_0279: -1 - - s_0394: 1 - - s_0434: -1 - - s_0794: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR017C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0074" + - name: "4PP-IP5 pyrophosphorylation to 4,5-PP2-IP4" + - metabolites: !!omap + - s_0263: 1 + - s_0279: -1 + - s_0394: 1 + - s_0434: -1 + - s_0794: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR017C" + - eccodes: "2.7.4.21" + - references: "17412958" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.21" - kegg.pathway: - - "sce04070" - - "sce04138" + - "sce04070" + - "sce04138" - pmid: "17412958" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0075" - - name: "5'-methylthioadenosine phosphorylase" - - metabolites: !!omap - - s_0303: -1 - - s_0383: 1 - - s_1322: -1 - - s_1422: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR017W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0075" + - name: "5'-methylthioadenosine phosphorylase" + - metabolites: !!omap + - s_0303: -1 + - s_0383: 1 + - s_1322: -1 + - s_1422: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR017W" + - eccodes: "2.4.2.28" + - references: "14506228" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.28" - bigg.reaction: "MTAP" - kegg.pathway: "sce00270" @@ -31141,1347 +31328,1577 @@ - metanetx.reaction: "MNXR101745" - pmid: "14506228" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0076" - - name: "5'-nucleotidase (CMP)" - - metabolites: !!omap - - s_0526: -1 - - s_0543: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER037W or YGL224C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0076" + - name: "5'-nucleotidase (CMP)" + - metabolites: !!omap + - s_0526: -1 + - s_0543: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER037W or YGL224C" + - eccodes: "3.1.3.-" + - references: "11934891; 23670538" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - bigg.reaction: "NTD4" - kegg.pathway: "sce00760" - kegg.reaction: "R00511" - metanetx.reaction: "MNXR102034" - pmid: - - "11934891" - - "23670538" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0077" - - name: "5'-nucleotidase (IMP)" - - metabolites: !!omap - - s_0803: -1 - - s_0849: -1 - - s_0856: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR155C" - - annotation: !!omap + - "11934891" + - "23670538" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0077" + - name: "5'-nucleotidase (IMP)" + - metabolites: !!omap + - s_0803: -1 + - s_0849: -1 + - s_0856: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR155C" + - eccodes: "3.1.3.99" + - references: "12735798" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.99" - bigg.reaction: "NTD11" - kegg.pathway: - - "sce00230" - - "sce00760" + - "sce00230" + - "sce00760" - kegg.reaction: "R01126" - metanetx.reaction: "MNXR102030" - pmid: "12735798" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0078" - - name: "5'-nucleotidase (UMP)" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_1545: -1 - - s_1556: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER037W or YGL224C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0078" + - name: "5'-nucleotidase (UMP)" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_1545: -1 + - s_1556: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER037W or YGL224C" + - eccodes: "3.1.3.-" + - references: "11934891; 23670538" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - bigg.reaction: "NTD2" - kegg.pathway: "sce00760" - kegg.reaction: "R00963" - metanetx.reaction: "MNXR102032" - pmid: - - "11934891" - - "23670538" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0079" - - name: "5'-phosphoribosylformyl glycinamidine synthetase" - - metabolites: !!omap - - s_0301: -1 - - s_0302: 1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_0991: 1 - - s_0999: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR061C" - - annotation: !!omap + - "11934891" + - "23670538" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0079" + - name: "5'-phosphoribosylformyl glycinamidine synthetase" + - metabolites: !!omap + - s_0301: -1 + - s_0302: 1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_0991: 1 + - s_0999: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR061C" + - eccodes: "6.3.5.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.5.3" - bigg.reaction: "PRFGS" - kegg.pathway: - - "sce00230" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce01110" + - "sce01130" - kegg.reaction: "R04463" - metanetx.reaction: "MNXR108904" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0080" - - name: "5,10-methylenetetrahydrofolate reductase (NADPH)" - - metabolites: !!omap - - s_0306: -1 - - s_0322: 1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL125W or YPL023C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0080" + - name: "5,10-methylenetetrahydrofolate reductase (NADPH)" + - metabolites: !!omap + - s_0306: -1 + - s_0322: 1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL125W or YPL023C" + - eccodes: "1.5.1.20" + - references: "21623372" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.1.20" - bigg.reaction: "MTHFR3" - kegg.pathway: - - "sce00670" - - "sce01200" + - "sce00670" + - "sce01200" - kegg.reaction: "R01224" - metanetx.reaction: "MNXR101752" - pmid: "21623372" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0081" - - name: "5-aminolevulinate synthase" - - metabolites: !!omap - - s_0317: 1 - - s_0460: 1 - - s_0532: 1 - - s_0799: -1 - - s_1005: -1 - - s_1464: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR232W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0081" + - name: "5-aminolevulinate synthase" + - metabolites: !!omap + - s_0317: 1 + - s_0460: 1 + - s_0532: 1 + - s_0799: -1 + - s_1005: -1 + - s_1464: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR232W" + - eccodes: "2.3.1.37" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.37" - bigg.reaction: "ALASm" - kegg.pathway: - - "sce00260" - - "sce00860" - - "sce01110" + - "sce00260" + - "sce00860" + - "sce01110" - kegg.reaction: "R00830" - metanetx.reaction: "MNXR95695" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0082" - - name: "5-diphosphoinositol-1,2,3,4,6-pentakisphosphate diphosphohydrolase" - - metabolites: !!omap - - s_0318: -1 - - s_0794: 1 - - s_0803: -1 - - s_1158: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR163W" - - annotation: !!omap - - ec-code: - - "3.6.1.52" - - "3.6.1.60" + - confidence_score: 2 + - !!omap + - id: "r_0082" + - name: "5-diphosphoinositol-1,2,3,4,6-pentakisphosphate diphosphohydrolase" + - metabolites: !!omap + - s_0318: -1 + - s_0794: 1 + - s_0803: -1 + - s_1158: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR163W" + - eccodes: "3.6.1.52; 3.6.1.60" + - references: "10419486" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.6.1.52; 3.6.1.60" - kegg.reaction: "R05779" - metanetx.reaction: "MNXR103044" - pmid: "10419486" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0083" - - name: "5-diphosphoinositol-1,2,3,4,6-pentakisphosphate synthase" - - metabolites: !!omap - - s_0318: 1 - - s_0394: 1 - - s_0434: -1 - - s_1158: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR017C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0083" + - name: "5-diphosphoinositol-1,2,3,4,6-pentakisphosphate synthase" + - metabolites: !!omap + - s_0318: 1 + - s_0394: 1 + - s_0434: -1 + - s_1158: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR017C" + - eccodes: "2.7.4.21" + - references: "11956213" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.21" - kegg.pathway: - - "sce04070" - - "sce04138" + - "sce04070" + - "sce04138" - kegg.reaction: "R09087" - metanetx.reaction: "MNXR101584" - pmid: "11956213" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0084" - - name: "5-formethyltetrahydrofolate cyclo-ligase" - - metabolites: !!omap - - s_0304: 1 - - s_0319: -1 - - s_0394: 1 - - s_0434: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER183C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0084" + - name: "5-formethyltetrahydrofolate cyclo-ligase" + - metabolites: !!omap + - s_0304: 1 + - s_0319: -1 + - s_0394: 1 + - s_0434: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER183C" + - eccodes: "6.3.3.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.3.2" - bigg.reaction: "FTHFCL" - kegg.pathway: "sce00670" - kegg.reaction: "R02301" - metanetx.reaction: "MNXR99668" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0085" - - name: "5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase" - - metabolites: !!omap - - s_0323: -1 - - s_1012: -1 - - s_1029: 1 - - s_1486: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER091C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0085" + - name: "5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase" + - metabolites: !!omap + - s_0323: -1 + - s_1012: -1 + - s_1029: 1 + - s_1486: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER091C" + - eccodes: "2.1.1.14" + - references: "3542720" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.14" - bigg.reaction: "MHPGLUT" - kegg.pathway: - - "sce00270" - - "sce00450" - - "sce01110" - - "sce01230" + - "sce00270" + - "sce00450" + - "sce01110" + - "sce01230" - kegg.reaction: "R04405" - metanetx.reaction: "MNXR101555" - pmid: "3542720" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0086" - - name: "5-methylthio-5-deoxy-D-ribulose 1-phosphate dehydratase" - - metabolites: !!omap - - s_0311: 1 - - s_0803: 1 - - s_1423: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR024C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0086" + - name: "5-methylthio-5-deoxy-D-ribulose 1-phosphate dehydratase" + - metabolites: !!omap + - s_0311: 1 + - s_0803: 1 + - s_1423: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR024C" + - eccodes: "" + - references: "14506228" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "MDRPD" - kegg.reaction: "R07392" - metanetx.reaction: "MNXR125830" - pmid: "14506228" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0087" - - name: "5-methylthioribose-1-phosphate isomerase" - - metabolites: !!omap - - s_1422: -1 - - s_1423: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR118W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0087" + - name: "5-methylthioribose-1-phosphate isomerase" + - metabolites: !!omap + - s_1422: -1 + - s_1423: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR118W" + - eccodes: "" + - references: "14506228" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "MTRI" - kegg.reaction: "R04420" - metanetx.reaction: "MNXR101759" - pmid: "14506228" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0088" - - name: "5PP-IP5 pyrophosphorylation to 4,5-PP2-IP4" - - metabolites: !!omap - - s_0263: 1 - - s_0318: -1 - - s_0794: -2 - - s_0803: 1 - - s_1322: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR410W" - - annotation: !!omap - - ec-code: - - "2.7.4.21" - - "2.7.4.24" + - confidence_score: 3 + - !!omap + - id: "r_0088" + - name: "5PP-IP5 pyrophosphorylation to 4,5-PP2-IP4" + - metabolites: !!omap + - s_0263: 1 + - s_0318: -1 + - s_0794: -2 + - s_0803: 1 + - s_1322: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR410W" + - eccodes: "2.7.4.21; 2.7.4.24" + - references: "17412958" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.4.21; 2.7.4.24" - pmid: "17412958" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0089" - - name: "5PP-IP5 pyrophosphorylation to 5,6-PP2-IP4" - - metabolites: !!omap - - s_0309: 1 - - s_0318: -1 - - s_0794: -2 - - s_0803: 1 - - s_1322: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR410W" - - annotation: !!omap - - ec-code: - - "2.7.4.21" - - "2.7.4.24" + - confidence_score: 3 + - !!omap + - id: "r_0089" + - name: "5PP-IP5 pyrophosphorylation to 5,6-PP2-IP4" + - metabolites: !!omap + - s_0309: 1 + - s_0318: -1 + - s_0794: -2 + - s_0803: 1 + - s_1322: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR410W" + - eccodes: "2.7.4.21; 2.7.4.24" + - references: "17412958" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.4.21; 2.7.4.24" - pmid: "17412958" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0090" - - name: "6-phosphofructo-2-kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0442: 1 - - s_0557: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL107C or YOL136C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0090" + - name: "6-phosphofructo-2-kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0442: 1 + - s_0557: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL107C or YOL136C" + - eccodes: "2.7.1.105" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.105" - bigg.reaction: "PFK26" - kegg.pathway: "sce00051" - metanetx.reaction: "MNXR124534" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0091" - - name: "6-phosphogluconolactonase" - - metabolites: !!omap - - s_0335: -1 - - s_0340: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR248W or YHR163W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0091" + - name: "6-phosphogluconolactonase" + - metabolites: !!omap + - s_0335: -1 + - s_0340: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR248W or YHR163W" + - eccodes: "3.1.1.31" + - references: "14454532" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.31" - bigg.reaction: "PGL" - kegg.pathway: - - "sce00030" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R02035" - metanetx.reaction: "MNXR102539" - pmid: "14454532" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0092" - - name: "6PP-IP5 depyrophosphorylation to IP6" - - metabolites: !!omap - - s_0333: -1 - - s_0794: 1 - - s_0803: -1 - - s_1158: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR410W or YOR163W" - - annotation: !!omap - - ec-code: - - "2.7.4.21" - - "2.7.4.24" - - "3.6.1.52" - - "3.6.1.60" + - confidence_score: 3 + - !!omap + - id: "r_0092" + - name: "6PP-IP5 depyrophosphorylation to IP6" + - metabolites: !!omap + - s_0333: -1 + - s_0794: 1 + - s_0803: -1 + - s_1158: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR410W or YOR163W" + - eccodes: "2.7.4.21; 2.7.4.24; 3.6.1.52; 3.6.1.60" + - references: "17412958" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.4.21; 2.7.4.24; 3.6.1.52; 3.6.1.60" - kegg.reaction: "R05779" - metanetx.reaction: "MNXR103044" - pmid: "17412958" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0093" - - name: "6PP-IP5 pyrophosphorylation to 5,6-PP2-IP4" - - metabolites: !!omap - - s_0309: 1 - - s_0333: -1 - - s_0394: 1 - - s_0434: -1 - - s_0794: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR017C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0093" + - name: "6PP-IP5 pyrophosphorylation to 5,6-PP2-IP4" + - metabolites: !!omap + - s_0309: 1 + - s_0333: -1 + - s_0394: 1 + - s_0434: -1 + - s_0794: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR017C" + - eccodes: "2.7.4.21" + - references: "17412958" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.21" - kegg.pathway: - - "sce04070" - - "sce04138" + - "sce04070" + - "sce04138" - pmid: "17412958" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0094" - - name: "8-amino-7-oxononanoate synthase" - - metabolites: !!omap - - s_0352: 1 - - s_0456: 1 - - s_0529: 1 - - s_0794: -1 - - s_0955: -1 - - s_1368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0094" + - name: "8-amino-7-oxononanoate synthase" + - metabolites: !!omap + - s_0352: 1 + - s_0456: 1 + - s_0529: 1 + - s_0794: -1 + - s_0955: -1 + - s_1368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "16269718" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - kegg.reaction: "R03210" - metanetx.reaction: "MNXR95854" - pmid: "16269718" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0095" - - name: "acetaldehyde condensation" - - metabolites: !!omap - - s_0020: 1 - - s_0359: -2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - annotation: !!omap - - ec-code: - - "4.1.1.-" - - "4.1.1.1" - - "4.1.1.43" - - "4.1.1.74" + - confidence_score: 3 + - !!omap + - id: "r_0095" + - name: "acetaldehyde condensation" + - metabolites: !!omap + - s_0020: 1 + - s_0359: -2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" + - eccodes: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" + - references: "12902239" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - bigg.reaction: "ACALDCD" - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95211" - pmid: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0096" - - name: "acetohydroxy acid isomeroreductase" - - metabolites: !!omap - - s_0016: 1 - - s_0146: -1 - - s_0799: -1 - - s_1210: 1 - - s_1214: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR355C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0096" + - name: "acetohydroxy acid isomeroreductase" + - metabolites: !!omap + - s_0016: 1 + - s_0146: -1 + - s_0799: -1 + - s_1210: 1 + - s_1214: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR355C" + - eccodes: "1.1.1.86" + - references: "8972574" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.86" - kegg.pathway: - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - pmid: "8972574" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0097" - - name: "acetolactate synthase" - - metabolites: !!omap - - s_0146: 1 - - s_0460: 1 - - s_0799: -1 - - s_1401: -2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YCL009C and YMR108W) or YMR108W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0097" + - name: "acetolactate synthase" + - metabolites: !!omap + - s_0146: 1 + - s_0460: 1 + - s_0799: -1 + - s_1401: -2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YCL009C and YMR108W) or YMR108W" + - eccodes: "2.2.1.6" + - references: "8972574" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.2.1.6" - kegg.pathway: - - "sce00290" - - "sce00650" - - "sce00660" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00290" + - "sce00650" + - "sce00660" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00006" - metanetx.reaction: "MNXR106335" - pmid: "8972574" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0099" - - name: "acetyl-CoA ACP transacylase" - - metabolites: !!omap - - s_0372: 1 - - s_0376: -1 - - s_0532: 1 - - s_1845: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL192C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0099" + - name: "acetyl-CoA ACP transacylase" + - metabolites: !!omap + - s_0372: 1 + - s_0376: -1 + - s_0532: 1 + - s_1845: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL192C" + - eccodes: "" + - references: "15387819" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "ACOATAm" - kegg.pathway: "sce00190" - kegg.reaction: "R01624" - metanetx.reaction: "MNXR95376" - pmid: "15387819" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0100" - - name: "acetyl-CoA C-acyltransferase (palmitoyl-CoA)" - - metabolites: !!omap - - s_0250: -1 - - s_0378: 1 - - s_0534: -1 - - s_1305: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0100" + - name: "acetyl-CoA C-acyltransferase (palmitoyl-CoA)" + - metabolites: !!omap + - s_0250: -1 + - s_0378: 1 + - s_0534: -1 + - s_1305: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT8p" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR95204" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0101" - - name: "acetyl-CoA C-acyltransferase (tetracosanoyl-CoA)" - - metabolites: !!omap - - s_0243: -1 - - s_0378: 1 - - s_0534: -1 - - s_1482: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0101" + - name: "acetyl-CoA C-acyltransferase (tetracosanoyl-CoA)" + - metabolites: !!omap + - s_0243: -1 + - s_0378: 1 + - s_0534: -1 + - s_1482: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT9p" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR124343" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0102" - - name: "acetyl-CoA C-acyltransferase (myristoyl-CoA)" - - metabolites: !!omap - - s_0253: -1 - - s_0378: 1 - - s_0534: -1 - - s_1179: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0102" + - name: "acetyl-CoA C-acyltransferase (myristoyl-CoA)" + - metabolites: !!omap + - s_0253: -1 + - s_0378: 1 + - s_0534: -1 + - s_1179: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT7p" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - kegg.reaction: "R03991" - metanetx.reaction: "MNXR95203" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0103" - - name: "acetyl-CoA C-acetyltransferase" - - metabolites: !!omap - - s_0367: 1 - - s_0373: -2 - - s_0529: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPL028W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0103" + - name: "acetyl-CoA C-acetyltransferase" + - metabolites: !!omap + - s_0367: 1 + - s_0373: -2 + - s_0529: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPL028W" + - eccodes: "2.3.1.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.9" - bigg.reaction: "ACACT1r" - kegg.pathway: - - "sce00071" - - "sce00072" - - "sce00280" - - "sce00310" - - "sce00380" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00650" - - "sce00900" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01212" + - "sce00071" + - "sce00072" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00650" + - "sce00900" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01212" - kegg.reaction: "R00238" - metanetx.reaction: "MNXR95194" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0104" - - name: "acetyl-CoA C-acetyltransferase" - - metabolites: !!omap - - s_0370: 1 - - s_0376: -2 - - s_0532: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPL028W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0104" + - name: "acetyl-CoA C-acetyltransferase" + - metabolites: !!omap + - s_0370: 1 + - s_0376: -2 + - s_0532: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPL028W" + - eccodes: "2.3.1.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.9" - bigg.reaction: "ACACT1m" - kegg.pathway: - - "sce00071" - - "sce00072" - - "sce00280" - - "sce00310" - - "sce00380" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00650" - - "sce00900" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01212" + - "sce00071" + - "sce00072" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00650" + - "sce00900" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01212" - kegg.reaction: "R00238" - metanetx.reaction: "MNXR95194" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0105" - - name: "acetyl-CoA C-acyltransferase (lauroyl-CoA)" - - metabolites: !!omap - - s_0257: -1 - - s_0378: 1 - - s_0534: -1 - - s_1076: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0105" + - name: "acetyl-CoA C-acyltransferase (lauroyl-CoA)" + - metabolites: !!omap + - s_0257: -1 + - s_0378: 1 + - s_0534: -1 + - s_1076: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT6p" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - kegg.reaction: "R03858" - metanetx.reaction: "MNXR95201" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0106" - - name: "acetyl-CoA C-acyltransferase (octanoyl-CoA)" - - metabolites: !!omap - - s_0239: -1 - - s_0378: 1 - - s_0534: -1 - - s_1258: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0106" + - name: "acetyl-CoA C-acyltransferase (octanoyl-CoA)" + - metabolites: !!omap + - s_0239: -1 + - s_0378: 1 + - s_0534: -1 + - s_1258: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT4p" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - kegg.reaction: "R03778" - metanetx.reaction: "MNXR95198" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0107" - - name: "acetyl-CoA C-acyltransferase (decanoyl-CoA)" - - metabolites: !!omap - - s_0247: -1 - - s_0378: 1 - - s_0534: -1 - - s_0605: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0107" + - name: "acetyl-CoA C-acyltransferase (decanoyl-CoA)" + - metabolites: !!omap + - s_0247: -1 + - s_0378: 1 + - s_0534: -1 + - s_0605: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - kegg.reaction: "R04742" - metanetx.reaction: "MNXR95200" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0108" - - name: "acetyl-Coa carboxylase" - - metabolites: !!omap - - s_0376: -1 - - s_0397: 1 - - s_0437: -1 - - s_0447: -1 - - s_0799: 1 - - s_1104: 1 - - s_1326: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR207C" - - annotation: !!omap - - ec-code: - - "6.3.4.14" - - "6.4.1.2" + - confidence_score: 2 + - !!omap + - id: "r_0108" + - name: "acetyl-Coa carboxylase" + - metabolites: !!omap + - s_0376: -1 + - s_0397: 1 + - s_0437: -1 + - s_0447: -1 + - s_0799: 1 + - s_1104: 1 + - s_1326: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR207C" + - eccodes: "6.3.4.14; 6.4.1.2" + - references: "14761959" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "6.3.4.14; 6.4.1.2" - bigg.reaction: "ACCOACrm" - kegg.pathway: - - "sce00061" - - "sce00620" - - "sce00640" - - "sce01110" - - "sce01212" + - "sce00061" + - "sce00620" + - "sce00640" + - "sce01110" + - "sce01212" - kegg.reaction: "R00742" - metanetx.reaction: "MNXR95219" - pmid: "14761959" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0109" - - name: "acetyl-CoA carboxylase, reaction" - - metabolites: !!omap - - s_0373: -1 - - s_0394: 1 - - s_0434: -1 - - s_0445: -1 - - s_0794: 1 - - s_1101: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL141W and YNR016C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0109" + - name: "acetyl-CoA carboxylase, reaction" + - metabolites: !!omap + - s_0373: -1 + - s_0394: 1 + - s_0434: -1 + - s_0445: -1 + - s_0794: 1 + - s_1101: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL141W and YNR016C" + - eccodes: "6.3.4.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.4.14" - bigg.reaction: "ACCOAC" - kegg.pathway: - - "sce00061" - - "sce00620" - - "sce00640" - - "sce00780" - - "sce01110" - - "sce01212" + - "sce00061" + - "sce00620" + - "sce00640" + - "sce00780" + - "sce01110" + - "sce01212" - kegg.reaction: "R00742" - metanetx.reaction: "MNXR95219" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0111" - - name: "acetyl-CoA hydrolase" - - metabolites: !!omap - - s_0365: 1 - - s_0376: -1 - - s_0532: 1 - - s_0799: 1 - - s_0807: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL015W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0111" + - name: "acetyl-CoA hydrolase" + - metabolites: !!omap + - s_0365: 1 + - s_0376: -1 + - s_0532: 1 + - s_0799: 1 + - s_0807: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL015W" + - eccodes: "3.1.2.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.1" - bigg.reaction: "ACOAHim" - kegg.pathway: "sce00620" - kegg.reaction: "R00227" - metanetx.reaction: "MNXR95363" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0112" - - name: "acetyl-CoA synthetase" - - metabolites: !!omap - - s_0362: -1 - - s_0373: 1 - - s_0423: 1 - - s_0434: -1 - - s_0529: -1 - - s_0633: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL054C or YLR153C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0112" + - name: "acetyl-CoA synthetase" + - metabolites: !!omap + - s_0362: -1 + - s_0373: 1 + - s_0423: 1 + - s_0434: -1 + - s_0529: -1 + - s_0633: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL054C or YLR153C" + - eccodes: "6.2.1.1" + - references: "8910545" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.1" - bigg.reaction: "ACS" - kegg.pathway: - - "sce00010" - - "sce00620" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00620" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00235" - metanetx.reaction: "MNXR95413" - pmid: "8910545" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0113" - - name: "acetyl-CoA synthetase" - - metabolites: !!omap - - s_0365: -1 - - s_0376: 1 - - s_0424: 1 - - s_0437: -1 - - s_0532: -1 - - s_0636: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL054C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0113" + - name: "acetyl-CoA synthetase" + - metabolites: !!omap + - s_0365: -1 + - s_0376: 1 + - s_0424: 1 + - s_0437: -1 + - s_0532: -1 + - s_0636: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL054C" + - eccodes: "6.2.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.1" - bigg.reaction: "ACSm" - kegg.pathway: - - "sce00010" - - "sce00620" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00620" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00235" - metanetx.reaction: "MNXR95413" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0114" - - name: "acetyl-CoA synthetase nuclear" - - metabolites: !!omap - - s_0366: -1 - - s_0377: 1 - - s_0425: 1 - - s_0438: -1 - - s_0533: -1 - - s_0637: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR153C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0114" + - name: "acetyl-CoA synthetase nuclear" + - metabolites: !!omap + - s_0366: -1 + - s_0377: 1 + - s_0425: 1 + - s_0438: -1 + - s_0533: -1 + - s_0637: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR153C" + - eccodes: "6.2.1.1" + - references: "16857587" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.1" - kegg.pathway: - - "sce00010" - - "sce00620" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00620" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00235" - metanetx.reaction: "MNXR95413" - pmid: "16857587" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0115" - - name: "acetylglutamate kinase" - - metabolites: !!omap - - s_0397: 1 - - s_0437: -1 - - s_1191: 1 - - s_1192: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER069W" - - annotation: !!omap - - ec-code: - - "1.2.1.38" - - "2.7.2.8" + - confidence_score: 3 + - !!omap + - id: "r_0115" + - name: "acetylglutamate kinase" + - metabolites: !!omap + - s_0397: 1 + - s_0437: -1 + - s_1191: 1 + - s_1192: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER069W" + - eccodes: "1.2.1.38; 2.7.2.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.2.1.38; 2.7.2.8" - bigg.reaction: "ACGKm" - kegg.pathway: - - "sce00220" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R02649" - metanetx.reaction: "MNXR95256" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0116" - - name: "acid phosphatase (secreted)" - - metabolites: !!omap - - s_0715: -1 - - s_0805: -1 - - s_1324: 1 - - s_1406: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR093C or YAR071W or YBR092C or YHR215W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0116" + - name: "acid phosphatase (secreted)" + - metabolites: !!omap + - s_0715: -1 + - s_0805: -1 + - s_1324: 1 + - s_1406: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR093C or YAR071W or YBR092C or YHR215W" + - eccodes: "3.1.3.2" + - references: "13405892" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.2" - bigg.reaction: "ACP1e" - kegg.pathway: - - "sce00730" - - "sce00740" - - "sce04111" + - "sce00730" + - "sce00740" + - "sce04111" - kegg.reaction: "R00548" - metanetx.reaction: "MNXR95393" - pmid: "13405892" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0117" - - name: "aconitase" - - metabolites: !!omap - - s_0012: 1 - - s_0174: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR002W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0117" + - name: "aconitase" + - metabolites: !!omap + - s_0012: 1 + - s_0174: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR002W" + - eccodes: "4.2.1.79" + - references: "16332871" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.79" - bigg.reaction: "ACONT3m" - kegg.pathway: "sce00640" - metanetx.reaction: "MNXR95385" - pmid: "16332871" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0118" - - name: "acteylornithine transaminase" - - metabolites: !!omap - - s_0145: -1 - - s_0182: 1 - - s_0993: -1 - - s_1182: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0118" + - name: "acteylornithine transaminase" + - metabolites: !!omap + - s_0145: -1 + - s_0182: 1 + - s_0993: -1 + - s_1182: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL140W" + - eccodes: "2.6.1.11" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.11" - bigg.reaction: "ACOTAim" - kegg.pathway: - - "sce00220" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R02283" - metanetx.reaction: "MNXR95388" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0119" - - name: "acyl carrier protein synthase" - - metabolites: !!omap - - s_0392: 1 - - s_0532: -1 - - s_0799: 2 - - s_0807: -1 - - s_1308: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL148C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0119" + - name: "acyl carrier protein synthase" + - metabolites: !!omap + - s_0392: 1 + - s_0532: -1 + - s_0799: 2 + - s_0807: -1 + - s_1308: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL148C" + - eccodes: "2.7.8.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.7" - bigg.reaction: "ACPSm" - kegg.reaction: "R10747" - metanetx.reaction: "MNXR95402" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0120" - - name: "acyl-CoA oxidase (decanoyl-CoA)" - - metabolites: !!omap - - s_0605: -1 - - s_0840: 1 - - s_1279: -1 - - s_1507: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0120" + - name: "acyl-CoA oxidase (decanoyl-CoA)" + - metabolites: !!omap + - s_0605: -1 + - s_0840: 1 + - s_1279: -1 + - s_1507: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR127526" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0121" - - name: "acyl-CoA oxidase (dodecanoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1076: -1 - - s_1279: -1 - - s_1510: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0121" + - name: "acyl-CoA oxidase (dodecanoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1076: -1 + - s_1279: -1 + - s_1510: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO5p" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR95365" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0122" - - name: "acyl-CoA oxidase (hexacosanoyl-CoA)" - - metabolites: !!omap - - s_0819: -1 - - s_0840: 1 - - s_1279: -1 - - s_1513: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0122" + - name: "acyl-CoA oxidase (hexacosanoyl-CoA)" + - metabolites: !!omap + - s_0819: -1 + - s_0840: 1 + - s_1279: -1 + - s_1513: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO9p" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR124346" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0123" - - name: "acyl-CoA oxidase (hexadecanoyl-CoA)" - - metabolites: !!omap - - s_0823: 1 - - s_0840: 1 - - s_1279: -1 - - s_1305: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0123" + - name: "acyl-CoA oxidase (hexadecanoyl-CoA)" + - metabolites: !!omap + - s_0823: 1 + - s_0840: 1 + - s_1279: -1 + - s_1305: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO7p" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR95367" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0124" - - name: "acyl-CoA oxidase (octadecanoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1279: -1 - - s_1457: -1 - - s_1516: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0124" + - name: "acyl-CoA oxidase (octadecanoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1279: -1 + - s_1457: -1 + - s_1516: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO8p" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR95368" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0125" - - name: "acyl-CoA oxidase (tetradecanoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1179: -1 - - s_1279: -1 - - s_1519: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0125" + - name: "acyl-CoA oxidase (tetradecanoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1179: -1 + - s_1279: -1 + - s_1519: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO6p" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR95366" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0126" - - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:episterol), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_3432: -1 - - s_3433: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0126" + - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:episterol), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_3432: -1 + - s_3433: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W" + - eccodes: "2.3.1.26" + - references: "10672016" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0127" - - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:ergosterol), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_3441: -1 - - s_3442: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0127" + - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:ergosterol), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_3441: -1 + - s_3442: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W" + - eccodes: "2.3.1.26" + - references: "10672016" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - metanetx.reaction: "MNXR119161" - pmid: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0128" - - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:fecosterol), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_3435: -1 - - s_3436: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0128" + - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:fecosterol), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_3435: -1 + - s_3436: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W" + - eccodes: "2.3.1.26" + - references: "10672016" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0129" - - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:lanosterol), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_3438: -1 - - s_3439: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0129" + - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:lanosterol), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_3438: -1 + - s_3439: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W" + - eccodes: "2.3.1.26" + - references: "10672016" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - metanetx.reaction: "MNXR119159" - pmid: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0130" - - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:zymosterol), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_3444: -1 - - s_3445: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0130" + - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:zymosterol), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_3444: -1 + - s_3445: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W" + - eccodes: "2.3.1.26" + - references: "10672016" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0131" - - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:episterol), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_3432: -1 - - s_3434: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0131" + - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:episterol), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_3432: -1 + - s_3434: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W" + - eccodes: "2.3.1.26" + - references: "10672016" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0132" - - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:ergosterol), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_3441: -1 - - s_3443: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0132" + - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:ergosterol), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_3441: -1 + - s_3443: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W" + - eccodes: "2.3.1.26" + - references: "10672016" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0133" - - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:fecosterol), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_3435: -1 - - s_3437: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0133" + - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:fecosterol), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_3435: -1 + - s_3437: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W" + - eccodes: "2.3.1.26" + - references: "10672016" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0134" - - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:lanosterol), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_3438: -1 - - s_3440: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0134" + - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:lanosterol), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_3438: -1 + - s_3440: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W" + - eccodes: "2.3.1.26" + - references: "10672016" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0135" - - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:zymosterol), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_3444: -1 - - s_3446: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0135" + - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:zymosterol), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_3444: -1 + - s_3446: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W" + - eccodes: "2.3.1.26" + - references: "10672016" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - pmid: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0137" - - name: "acylation of GPI inositol at 2 position, GPI-anchor assembly, step 3" - - metabolites: !!omap - - s_0329: -1 - - s_0330: 1 - - s_0530: 1 - - s_1303: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL091C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0137" + - name: "acylation of GPI inositol at 2 position, GPI-anchor assembly, step 3" + - metabolites: !!omap + - s_0329: -1 + - s_0330: 1 + - s_0530: 1 + - s_1303: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL091C" + - eccodes: "2.3.-.-" + - references: "12714589" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.-.-" - kegg.pathway: "sce00563" - pmid: "12714589" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0138" - - name: "adenine deaminase" - - metabolites: !!omap - - s_0383: -1 - - s_0419: 1 - - s_0794: -1 - - s_0803: -1 - - s_0843: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL141W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0138" + - name: "adenine deaminase" + - metabolites: !!omap + - s_0383: -1 + - s_0419: 1 + - s_0794: -1 + - s_0803: -1 + - s_0843: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL141W" + - eccodes: "3.5.4.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.4.2" - bigg.reaction: "ADD" - kegg.pathway: "sce00230" - kegg.reaction: "R01244" - metanetx.reaction: "MNXR95443" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0139" - - name: "adenine phosphoribosyltransferase" - - metabolites: !!omap - - s_0383: -1 - - s_0423: 1 - - s_0633: 1 - - s_1386: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR441C or YML022W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0139" + - name: "adenine phosphoribosyltransferase" + - metabolites: !!omap + - s_0383: -1 + - s_0423: 1 + - s_0633: 1 + - s_1386: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR441C or YML022W" + - eccodes: "2.4.2.7" + - references: "9864350" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.7" - bigg.reaction: "ADPT" - kegg.pathway: "sce00230" @@ -32489,82 +32906,98 @@ - metanetx.reaction: "MNXR95482" - pmid: "9864350" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0140" - - name: "adenosine deaminase" - - metabolites: !!omap - - s_0386: -1 - - s_0419: 1 - - s_0794: -1 - - s_0803: -1 - - s_0856: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL141W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0140" + - name: "adenosine deaminase" + - metabolites: !!omap + - s_0386: -1 + - s_0419: 1 + - s_0794: -1 + - s_0803: -1 + - s_0856: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL141W" + - eccodes: "3.5.4.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.4.2" - bigg.reaction: "ADA" - kegg.pathway: "sce00230" - kegg.reaction: "R01560" - metanetx.reaction: "MNXR95432" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0142" - - name: "adenosine kinase" - - metabolites: !!omap - - s_0386: -1 - - s_0394: 1 - - s_0423: 1 - - s_0434: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR105W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0142" + - name: "adenosine kinase" + - metabolites: !!omap + - s_0386: -1 + - s_0394: 1 + - s_0423: 1 + - s_0434: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR105W" + - eccodes: "2.7.1.20" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.20" - bigg.reaction: "ADNK1" - kegg.pathway: "sce00230" - kegg.reaction: "R00185" - metanetx.reaction: "MNXR95456" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0143" - - name: "adenosine monophosphate deaminase" - - metabolites: !!omap - - s_0419: 1 - - s_0423: -1 - - s_0794: -1 - - s_0803: -1 - - s_0849: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML035C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0143" + - name: "adenosine monophosphate deaminase" + - metabolites: !!omap + - s_0419: 1 + - s_0423: -1 + - s_0794: -1 + - s_0803: -1 + - s_0849: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML035C" + - eccodes: "3.5.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.4.6" - bigg.reaction: "AMPDA" - kegg.pathway: - - "sce00230" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce01110" + - "sce01130" - kegg.reaction: "R00181" - metanetx.reaction: "MNXR95824" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0144" - - name: "adenosylhomocysteinase" - - metabolites: !!omap - - s_0386: 1 - - s_0803: -1 - - s_1012: 1 - - s_1413: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER043C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0144" + - name: "adenosylhomocysteinase" + - metabolites: !!omap + - s_0386: 1 + - s_0803: -1 + - s_1012: 1 + - s_1413: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER043C" + - eccodes: "3.3.1.1" + - references: "15556636" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.3.1.1" - bigg.reaction: "AHCi" - kegg.pathway: "sce00270" @@ -32572,284 +33005,336 @@ - metanetx.reaction: "MNXR95492" - pmid: "15556636" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0145" - - name: "adenosylmethionine decarboxylase" - - metabolites: !!omap - - s_0456: 1 - - s_0794: -1 - - s_1416: -1 - - s_1420: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL052C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0145" + - name: "adenosylmethionine decarboxylase" + - metabolites: !!omap + - s_0456: 1 + - s_0794: -1 + - s_1416: -1 + - s_1420: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL052C" + - eccodes: "4.1.1.50" + - references: "3087344" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.50" - bigg.reaction: "ADMDC" - kegg.pathway: - - "sce00270" - - "sce00330" + - "sce00270" + - "sce00330" - kegg.reaction: "R00178" - metanetx.reaction: "MNXR95455" - pmid: "3087344" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0146" - - name: "adenosylmethionine-8-amino-7-oxononanoate transaminase" - - metabolites: !!omap - - s_0341: 1 - - s_0352: -1 - - s_1412: 1 - - s_1416: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR058W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0146" + - name: "adenosylmethionine-8-amino-7-oxononanoate transaminase" + - metabolites: !!omap + - s_0341: 1 + - s_0352: -1 + - s_1412: 1 + - s_1416: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR058W" + - eccodes: "2.6.1.62" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.62" - bigg.reaction: "AMAOTr" - kegg.pathway: "sce00780" - kegg.reaction: "R03231" - metanetx.reaction: "MNXR95806" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0147" - - name: "adenylate cyclase" - - metabolites: !!omap - - s_0192: 1 - - s_0434: -1 - - s_0633: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL005W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0147" + - name: "adenylate cyclase" + - metabolites: !!omap + - s_0192: 1 + - s_0434: -1 + - s_0633: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL005W" + - eccodes: "4.6.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.6.1.1" - bigg.reaction: "ADNCYC" - kegg.pathway: - - "sce00230" - - "sce04113" - - "sce04213" + - "sce00230" + - "sce04113" + - "sce04213" - kegg.reaction: "R00089" - metanetx.reaction: "MNXR95444" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0148" - - name: "adenylate kinase" - - metabolites: !!omap - - s_0394: 2 - - s_0423: -1 - - s_0434: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL166C or YDR226W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0148" + - name: "adenylate kinase" + - metabolites: !!omap + - s_0394: 2 + - s_0423: -1 + - s_0434: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL166C or YDR226W" + - eccodes: "2.7.4.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.3" - bigg.reaction: "ADK1" - kegg.pathway: - - "sce00230" - - "sce00730" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00730" + - "sce01110" + - "sce01130" - kegg.reaction: "R00127" - metanetx.reaction: "MNXR95450" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0149" - - name: "adenylate kinase" - - metabolites: !!omap - - s_0397: 2 - - s_0424: -1 - - s_0437: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER170W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0149" + - name: "adenylate kinase" + - metabolites: !!omap + - s_0397: 2 + - s_0424: -1 + - s_0437: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER170W" + - eccodes: "2.7.4.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.10" - bigg.reaction: "ADK1m" - kegg.pathway: - - "sce00230" - - "sce00730" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00730" + - "sce01110" + - "sce01130" - kegg.reaction: "R00127" - metanetx.reaction: "MNXR95450" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0150" - - name: "adenylate kinase (GTP)" - - metabolites: !!omap - - s_0397: 1 - - s_0424: -1 - - s_0741: 1 - - s_0786: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER170W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0150" + - name: "adenylate kinase (GTP)" + - metabolites: !!omap + - s_0397: 1 + - s_0424: -1 + - s_0741: 1 + - s_0786: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER170W" + - eccodes: "2.7.4.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.10" - bigg.reaction: "ADK3m" - kegg.pathway: - - "sce00230" - - "sce00730" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00730" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95452" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0151" - - name: "adenylosuccinate lyase (AICAR)" - - metabolites: !!omap - - s_0299: -1 - - s_0403: 1 - - s_0725: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR359W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0151" + - name: "adenylosuccinate lyase (AICAR)" + - metabolites: !!omap + - s_0299: -1 + - s_0403: 1 + - s_0725: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR359W" + - eccodes: "4.3.2.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.3.2.2" - bigg.reaction: "ADSL2r" - kegg.pathway: - - "sce00230" - - "sce00250" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00250" + - "sce01110" + - "sce01130" - kegg.reaction: "R04559" - metanetx.reaction: "MNXR108966" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0152" - - name: "adenylosuccinate lyase" - - metabolites: !!omap - - s_0393: -1 - - s_0423: 1 - - s_0725: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR359W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0152" + - name: "adenylosuccinate lyase" + - metabolites: !!omap + - s_0393: -1 + - s_0423: 1 + - s_0725: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR359W" + - eccodes: "4.3.2.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.3.2.2" - bigg.reaction: "ADSL1r" - kegg.pathway: - - "sce00230" - - "sce00250" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00250" + - "sce01110" + - "sce01130" - kegg.reaction: "R01083" - metanetx.reaction: "MNXR95493" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0153" - - name: "adenylosuccinate synthase" - - metabolites: !!omap - - s_0393: 1 - - s_0739: 1 - - s_0785: -1 - - s_0794: 2 - - s_0849: -1 - - s_0973: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL220W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0153" + - name: "adenylosuccinate synthase" + - metabolites: !!omap + - s_0393: 1 + - s_0739: 1 + - s_0785: -1 + - s_0794: 2 + - s_0849: -1 + - s_0973: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL220W" + - eccodes: "6.3.4.4" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.4.4" - bigg.reaction: "ADSS" - kegg.pathway: - - "sce00230" - - "sce00250" + - "sce00230" + - "sce00250" - kegg.reaction: "R01135" - metanetx.reaction: "MNXR95495" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0154" - - name: "adenylyl-sulfate kinase" - - metabolites: !!omap - - s_0201: 1 - - s_0298: -1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL001C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0154" + - name: "adenylyl-sulfate kinase" + - metabolites: !!omap + - s_0201: 1 + - s_0298: -1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL001C" + - eccodes: "2.7.1.25" + - references: "1654509" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.25" - bigg.reaction: "ADSK" - kegg.pathway: - - "sce00230" - - "sce00920" + - "sce00230" + - "sce00920" - kegg.reaction: "R00509" - metanetx.reaction: "MNXR95159" - pmid: "1654509" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0155" - - name: "ADP-ribose 2,3-cyclic phosphodiesterase" - - metabolites: !!omap - - s_0131: -1 - - s_0389: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR247W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0155" + - name: "ADP-ribose 2,3-cyclic phosphodiesterase" + - metabolites: !!omap + - s_0131: -1 + - s_0389: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR247W" + - eccodes: "3.1.4.37" + - references: "10734185" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.37" - bigg.reaction: "23CAPPD" - metanetx.reaction: "MNXR117324" - pmid: "10734185" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0156" - - name: "alanine glyoxylate aminotransferase" - - metabolites: !!omap - - s_0779: -1 - - s_0955: -1 - - s_1003: 1 - - s_1399: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFL030W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0156" + - name: "alanine glyoxylate aminotransferase" + - metabolites: !!omap + - s_0779: -1 + - s_0955: -1 + - s_1003: 1 + - s_1399: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFL030W" + - eccodes: "2.6.1.44" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.44" - bigg.reaction: "AGTi" - kegg.pathway: - - "sce00250" - - "sce00260" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce04146" + - "sce00250" + - "sce00260" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce04146" - kegg.reaction: "R00369" - metanetx.reaction: "MNXR95618" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0157" - - name: "alanyl-tRNA synthetase" - - metabolites: !!omap - - s_0404: 1 - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_0955: -1 - - s_1582: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR335C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0157" + - name: "alanyl-tRNA synthetase" + - metabolites: !!omap + - s_0404: 1 + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_0955: -1 + - s_1582: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR335C" + - eccodes: "6.1.1.7" + - references: "7761427" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.7" - bigg.reaction: "ALATRS" - kegg.pathway: "sce00970" @@ -32857,851 +33342,957 @@ - metanetx.reaction: "MNXR107903" - pmid: "7761427" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0158" - - name: "alcohol acetyltransferase (2-methylbutanol)" - - metabolites: !!omap - - s_0169: -1 - - s_0172: 1 - - s_0373: -1 - - s_0529: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR177C or YOR377W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0158" + - name: "alcohol acetyltransferase (2-methylbutanol)" + - metabolites: !!omap + - s_0169: -1 + - s_0172: 1 + - s_0373: -1 + - s_0529: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR177C or YOR377W" + - eccodes: "2.3.1.84" + - references: "12957907" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - bigg.reaction: "OHACT3" - metanetx.reaction: "MNXR102165" - pmid: "12957907" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0159" - - name: "alcohol acetyltransferase (ethanol)" - - metabolites: !!omap - - s_0373: -1 - - s_0529: 1 - - s_0680: -1 - - s_0685: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR177C or YOR377W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0159" + - name: "alcohol acetyltransferase (ethanol)" + - metabolites: !!omap + - s_0373: -1 + - s_0529: 1 + - s_0680: -1 + - s_0685: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR177C or YOR377W" + - eccodes: "2.3.1.84" + - references: "12957907" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - metanetx.reaction: "MNXR117501" - pmid: "12957907" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0160" - - name: "alcohol acetyltransferase (isoamyl alcohol)" - - metabolites: !!omap - - s_0373: -1 - - s_0529: 1 - - s_0927: 1 - - s_0929: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR177C or YOR377W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0160" + - name: "alcohol acetyltransferase (isoamyl alcohol)" + - metabolites: !!omap + - s_0373: -1 + - s_0529: 1 + - s_0927: 1 + - s_0929: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR177C or YOR377W" + - eccodes: "2.3.1.84" + - references: "12957907" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - bigg.reaction: "OHACT2" - metanetx.reaction: "MNXR102164" - pmid: "12957907" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0161" - - name: "alcohol acetyltransferase (isobutyl alcohol)" - - metabolites: !!omap - - s_0373: -1 - - s_0529: 1 - - s_0932: -1 - - s_0935: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR177C or YOR377W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0161" + - name: "alcohol acetyltransferase (isobutyl alcohol)" + - metabolites: !!omap + - s_0373: -1 + - s_0529: 1 + - s_0932: -1 + - s_0935: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR177C or YOR377W" + - eccodes: "2.3.1.84" + - references: "12957907" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - bigg.reaction: "OHACT4" - metanetx.reaction: "MNXR102166" - pmid: "12957907" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0162" - - name: "alcohol acetyltransferase (phenylethanol alcohol)" - - metabolites: !!omap - - s_0185: -1 - - s_0373: -1 - - s_0529: 1 - - s_1316: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR177C or YOR377W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0162" + - name: "alcohol acetyltransferase (phenylethanol alcohol)" + - metabolites: !!omap + - s_0185: -1 + - s_0373: -1 + - s_0529: 1 + - s_1316: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR177C or YOR377W" + - eccodes: "2.3.1.84" + - references: "12957907" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - bigg.reaction: "OHACT5" - metanetx.reaction: "MNXR102167" - pmid: "12957907" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0163" - - name: "alcohol dehydrogenase (ethanol to acetaldehyde)" - - metabolites: !!omap - - s_0359: 1 - - s_0680: -1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR303C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0163" + - name: "alcohol dehydrogenase (ethanol to acetaldehyde)" + - metabolites: !!omap + - s_0359: 1 + - s_0680: -1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR303C" + - eccodes: "1.1.1.1" + - references: "12702265" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD2x" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R00754" - metanetx.reaction: "MNXR95725" - pmid: "12702265" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0164" - - name: "alcohol dehydrogenase (glycerol, NADP)" - - metabolites: !!omap - - s_0570: -1 - - s_0765: 1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR368W or YHR104W" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.21" + - confidence_score: 3 + - !!omap + - id: "r_0164" + - name: "alcohol dehydrogenase (glycerol, NADP)" + - metabolites: !!omap + - s_0570: -1 + - s_0765: 1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR368W or YHR104W" + - eccodes: "1.1.1.-; 1.1.1.21" + - references: "12210903" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.21" - bigg.reaction: "ALCD19y" - kegg.pathway: "sce00040" - kegg.reaction: "R01041" - metanetx.reaction: "MNXR95711" - pmid: "12210903" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0165" - - name: "mitochondrial alcohol dehydrogenase" - - metabolites: !!omap - - s_0361: -1 - - s_0682: 1 - - s_0799: -1 - - s_1200: 1 - - s_1205: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL256W or YMR083W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0165" + - name: "mitochondrial alcohol dehydrogenase" + - metabolites: !!omap + - s_0361: -1 + - s_0682: 1 + - s_0799: -1 + - s_1200: 1 + - s_1205: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL256W or YMR083W" + - eccodes: "1.1.1.1" + - references: "12499363" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD2irm" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R00754" - metanetx.reaction: "MNXR95725" - pmid: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0166" - - name: "aldehyde dehydrogenase (2-methylbutanol, NAD)" - - metabolites: !!omap - - s_0166: -1 - - s_0169: 1 - - s_0794: -1 - - s_1198: 1 - - s_1203: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.1" - - "1.1.1.284" + - confidence_score: 3 + - !!omap + - id: "r_0166" + - name: "aldehyde dehydrogenase (2-methylbutanol, NAD)" + - metabolites: !!omap + - s_0166: -1 + - s_0169: 1 + - s_0794: -1 + - s_1198: 1 + - s_1203: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" + - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - references: "12702265" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - bigg.reaction: "ALCD22xi" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" - metanetx.reaction: "MNXR95716" - pmid: "12702265" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0167" - - name: "aldehyde dehydrogenase (2-methylbutanol, NAD)" - - metabolites: !!omap - - s_0168: -1 - - s_0171: 1 - - s_0799: -1 - - s_1200: 1 - - s_1205: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL256W or YMR083W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0167" + - name: "aldehyde dehydrogenase (2-methylbutanol, NAD)" + - metabolites: !!omap + - s_0168: -1 + - s_0171: 1 + - s_0799: -1 + - s_1200: 1 + - s_1205: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL256W or YMR083W" + - eccodes: "1.1.1.1" + - references: "12499363" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD22xim" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95716" - pmid: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0168" - - name: "aldehyde dehydrogenase (2-methylbutanol, NADP)" - - metabolites: !!omap - - s_0166: -1 - - s_0169: 1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.2" + - confidence_score: 3 + - !!omap + - id: "r_0168" + - name: "aldehyde dehydrogenase (2-methylbutanol, NADP)" + - metabolites: !!omap + - s_0166: -1 + - s_0169: 1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" + - eccodes: "1.1.1.-; 1.1.1.2" + - references: "12210903; 12423374" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.2" - bigg.reaction: "ALCD22yi" - kegg.pathway: - - "sce00010" - - "sce00040" - - "sce00561" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00040" + - "sce00561" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95717" - pmid: - - "12210903" - - "12423374" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0169" - - name: "aldehyde dehydrogenase (2-phenylethanol, NAD)" - - metabolites: !!omap - - s_0185: 1 - - s_0794: -1 - - s_1198: 1 - - s_1203: -1 - - s_1318: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.1" - - "1.1.1.284" + - "12210903" + - "12423374" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0169" + - name: "aldehyde dehydrogenase (2-phenylethanol, NAD)" + - metabolites: !!omap + - s_0185: 1 + - s_0794: -1 + - s_1198: 1 + - s_1203: -1 + - s_1318: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" + - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - references: "12702265" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - bigg.reaction: "ALCD25xi" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R02611" - metanetx.reaction: "MNXR95722" - pmid: "12702265" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0170" - - name: "aldehyde dehydrogenase (2-phenylethanol, NAD)" - - metabolites: !!omap - - s_0187: 1 - - s_0799: -1 - - s_1200: 1 - - s_1205: -1 - - s_1320: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL256W or YMR083W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0170" + - name: "aldehyde dehydrogenase (2-phenylethanol, NAD)" + - metabolites: !!omap + - s_0187: 1 + - s_0799: -1 + - s_1200: 1 + - s_1205: -1 + - s_1320: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL256W or YMR083W" + - eccodes: "1.1.1.1" + - references: "12499363" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD25xim" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R02611" - metanetx.reaction: "MNXR95722" - pmid: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0171" - - name: "aldehyde dehydrogenase (2-phenylethanol, NADP)" - - metabolites: !!omap - - s_0185: 1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_1318: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR105W or YMR318C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0171" + - name: "aldehyde dehydrogenase (2-phenylethanol, NADP)" + - metabolites: !!omap + - s_0185: 1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_1318: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR105W or YMR318C" + - eccodes: "1.1.1.2" + - references: "11742541; 12423374" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.2" - bigg.reaction: "ALCD25yi" - kegg.pathway: - - "sce00010" - - "sce00040" - - "sce00561" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00040" + - "sce00561" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95723" - pmid: - - "11742541" - - "12423374" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0172" - - name: "aldehyde dehydrogenase (3-aminopropanal, NAD)" - - metabolites: !!omap - - s_0208: -1 - - s_0441: 1 - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C or YMR169C or YMR170C" - - annotation: !!omap + - "11742541" + - "12423374" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0172" + - name: "aldehyde dehydrogenase (3-aminopropanal, NAD)" + - metabolites: !!omap + - s_0208: -1 + - s_0441: 1 + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C or YMR169C or YMR170C" + - eccodes: "1.2.1.3" + - references: "12586697" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - bigg.reaction: "ALDD22x" - kegg.pathway: - - "sce00010" - - "sce00340" - - "sce00350" - - "sce00360" - - "sce00410" - - "sce01110" + - "sce00010" + - "sce00340" + - "sce00350" + - "sce00360" + - "sce00410" + - "sce01110" - kegg.reaction: "R00904" - metanetx.reaction: "MNXR95748" - pmid: "12586697" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0173" - - name: "aldehyde dehydrogenase (acetaldehyde, NADP)" - - metabolites: !!omap - - s_0359: -1 - - s_0362: 1 - - s_0794: 2 - - s_0803: -1 - - s_1207: -1 - - s_1212: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL061W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0173" + - name: "aldehyde dehydrogenase (acetaldehyde, NADP)" + - metabolites: !!omap + - s_0359: -1 + - s_0362: 1 + - s_0794: 2 + - s_0803: -1 + - s_1207: -1 + - s_1212: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL061W" + - eccodes: "1.2.1.4" + - references: "15256563" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.4" - bigg.reaction: "ALDD2y" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - kegg.reaction: "R00711" - metanetx.reaction: "MNXR95750" - pmid: "15256563" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0174" - - name: "aldehyde dehydrogenase (acetylaldehyde, NAD)" - - metabolites: !!omap - - s_0361: -1 - - s_0365: 1 - - s_0799: 2 - - s_0807: -1 - - s_1200: -1 - - s_1205: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR374W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0174" + - name: "aldehyde dehydrogenase (acetylaldehyde, NAD)" + - metabolites: !!omap + - s_0361: -1 + - s_0365: 1 + - s_0799: 2 + - s_0807: -1 + - s_1200: -1 + - s_1205: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR374W" + - eccodes: "1.2.1.5" + - references: "15256563" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.5" - bigg.reaction: "ALDD2xm" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - kegg.reaction: "R00710" - metanetx.reaction: "MNXR95749" - pmid: "15256563" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0175" - - name: "aldehyde dehydrogenase (acetylaldehyde, NADP)" - - metabolites: !!omap - - s_0361: -1 - - s_0365: 1 - - s_0799: 2 - - s_0807: -1 - - s_1210: -1 - - s_1214: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER073W or YOR374W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0175" + - name: "aldehyde dehydrogenase (acetylaldehyde, NADP)" + - metabolites: !!omap + - s_0361: -1 + - s_0365: 1 + - s_0799: 2 + - s_0807: -1 + - s_1210: -1 + - s_1214: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER073W or YOR374W" + - eccodes: "1.2.1.5" + - references: "15256563" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.5" - bigg.reaction: "ALDD2ym" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - kegg.reaction: "R00711" - metanetx.reaction: "MNXR95750" - pmid: "15256563" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0176" - - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NAD)" - - metabolites: !!omap - - s_0799: 2 - - s_0807: -1 - - s_0852: -1 - - s_0854: 1 - - s_1200: -1 - - s_1205: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR374W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0176" + - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NAD)" + - metabolites: !!omap + - s_0799: 2 + - s_0807: -1 + - s_0852: -1 + - s_0854: 1 + - s_1200: -1 + - s_1205: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR374W" + - eccodes: "1.2.1.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.5" - bigg.reaction: "ALDD20xm" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - kegg.reaction: "R02678" - metanetx.reaction: "MNXR95744" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0177" - - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NADP)" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_0850: -1 - - s_0853: 1 - - s_1207: -1 - - s_1212: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL061W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0177" + - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NADP)" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_0850: -1 + - s_0853: 1 + - s_1207: -1 + - s_1212: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL061W" + - eccodes: "1.2.1.4" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.4" - bigg.reaction: "ALDD20y" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95746" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0178" - - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NADP)" - - metabolites: !!omap - - s_0799: 2 - - s_0807: -1 - - s_0852: -1 - - s_0854: 1 - - s_1210: -1 - - s_1214: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER073W or YOR374W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0178" + - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NADP)" + - metabolites: !!omap + - s_0799: 2 + - s_0807: -1 + - s_0852: -1 + - s_0854: 1 + - s_1210: -1 + - s_1214: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER073W or YOR374W" + - eccodes: "1.2.1.5" + - references: "9675847" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.5" - bigg.reaction: "ALDD20ym" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95746" - pmid: "9675847" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0179" - - name: "aldehyde dehydrogenase (isoamyl alcohol, NAD)" - - metabolites: !!omap - - s_0234: -1 - - s_0794: -1 - - s_0929: 1 - - s_1198: 1 - - s_1203: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.1" - - "1.1.1.284" + - confidence_score: 3 + - !!omap + - id: "r_0179" + - name: "aldehyde dehydrogenase (isoamyl alcohol, NAD)" + - metabolites: !!omap + - s_0234: -1 + - s_0794: -1 + - s_0929: 1 + - s_1198: 1 + - s_1203: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" + - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - references: "12702265" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - bigg.reaction: "ALCD24xi" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R05685" - metanetx.reaction: "MNXR138038" - pmid: "12702265" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0180" - - name: "aldehyde dehydrogenase (isoamyl alcohol, NAD)" - - metabolites: !!omap - - s_0236: -1 - - s_0799: -1 - - s_0931: 1 - - s_1200: 1 - - s_1205: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL256W or YMR083W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0180" + - name: "aldehyde dehydrogenase (isoamyl alcohol, NAD)" + - metabolites: !!omap + - s_0236: -1 + - s_0799: -1 + - s_0931: 1 + - s_1200: 1 + - s_1205: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL256W or YMR083W" + - eccodes: "1.1.1.1" + - references: "12499363" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD24xim" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R05685" - metanetx.reaction: "MNXR138038" - pmid: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0181" - - name: "aldehyde dehydrogenase (isoamyl alcohol, NADP)" - - metabolites: !!omap - - s_0234: -1 - - s_0794: -1 - - s_0929: 1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR105W or YMR318C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0181" + - name: "aldehyde dehydrogenase (isoamyl alcohol, NADP)" + - metabolites: !!omap + - s_0234: -1 + - s_0794: -1 + - s_0929: 1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR105W or YMR318C" + - eccodes: "1.1.1.2" + - references: "11742541; 12423374" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.2" - bigg.reaction: "ALCD24yi" - kegg.pathway: - - "sce00010" - - "sce00040" - - "sce00561" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00040" + - "sce00561" + - "sce01110" + - "sce01130" - kegg.reaction: "R05686" - metanetx.reaction: "MNXR138039" - pmid: - - "11742541" - - "12423374" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0182" - - name: "aldehyde dehydrogenase (isobutyl alcohol, NAD)" - - metabolites: !!omap - - s_0794: -1 - - s_0932: 1 - - s_0937: -1 - - s_1198: 1 - - s_1203: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.1" - - "1.1.1.284" + - "11742541" + - "12423374" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0182" + - name: "aldehyde dehydrogenase (isobutyl alcohol, NAD)" + - metabolites: !!omap + - s_0794: -1 + - s_0932: 1 + - s_0937: -1 + - s_1198: 1 + - s_1203: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" + - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - references: "12702265" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - bigg.reaction: "ALCD23xi" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" - metanetx.reaction: "MNXR95718" - pmid: "12702265" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0183" - - name: "aldehyde dehydrogenase (isobutyl alcohol, NAD)" - - metabolites: !!omap - - s_0799: -1 - - s_0934: 1 - - s_0939: -1 - - s_1200: 1 - - s_1205: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL256W or YMR083W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0183" + - name: "aldehyde dehydrogenase (isobutyl alcohol, NAD)" + - metabolites: !!omap + - s_0799: -1 + - s_0934: 1 + - s_0939: -1 + - s_1200: 1 + - s_1205: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL256W or YMR083W" + - eccodes: "1.1.1.1" + - references: "12499363" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD23xim" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95718" - pmid: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0184" - - name: "aldehyde dehydrogenase (isobutyl alcohol, NADP)" - - metabolites: !!omap - - s_0794: -1 - - s_0932: 1 - - s_0937: -1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR105W or YMR318C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0184" + - name: "aldehyde dehydrogenase (isobutyl alcohol, NADP)" + - metabolites: !!omap + - s_0794: -1 + - s_0932: 1 + - s_0937: -1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR105W or YMR318C" + - eccodes: "1.1.1.2" + - references: "11742541; 12423374" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.2" - bigg.reaction: "ALCD23yi" - kegg.pathway: - - "sce00010" - - "sce00040" - - "sce00561" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00040" + - "sce00561" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR95719" - pmid: - - "11742541" - - "12423374" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0185" - - name: "aldehyde dehydrogenase (phenylacetaldehyde, NAD)" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_1318: -1 - - s_1321: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR169C or YMR170C" - - annotation: !!omap + - "11742541" + - "12423374" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0185" + - name: "aldehyde dehydrogenase (phenylacetaldehyde, NAD)" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_1318: -1 + - s_1321: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR169C or YMR170C" + - eccodes: "1.2.1.3" + - references: "8801420" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - bigg.reaction: "ALDD19xr" - kegg.pathway: - - "sce00010" - - "sce00340" - - "sce00350" - - "sce00360" - - "sce00410" - - "sce01110" + - "sce00010" + - "sce00340" + - "sce00350" + - "sce00360" + - "sce00410" + - "sce01110" - kegg.reaction: "R02536" - metanetx.reaction: "MNXR95743" - pmid: "8801420" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0186" - - name: "aldehyde dehydrogenase (tryptophol, NAD)" - - metabolites: !!omap - - s_0794: -1 - - s_0850: -1 - - s_1198: 1 - - s_1203: -1 - - s_1529: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.1" - - "1.1.1.284" + - confidence_score: 3 + - !!omap + - id: "r_0186" + - name: "aldehyde dehydrogenase (tryptophol, NAD)" + - metabolites: !!omap + - s_0794: -1 + - s_0850: -1 + - s_1198: 1 + - s_1203: -1 + - s_1529: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" + - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - references: "12702265" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - bigg.reaction: "ALCD26xi" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R02679" - metanetx.reaction: "MNXR95724" - pmid: "12702265" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0187" - - name: "aldehyde dehydrogenase (tryptophol, NAD)" - - metabolites: !!omap - - s_0799: -1 - - s_0852: -1 - - s_1200: 1 - - s_1205: -1 - - s_1531: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL256W or YMR083W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0187" + - name: "aldehyde dehydrogenase (tryptophol, NAD)" + - metabolites: !!omap + - s_0799: -1 + - s_0852: -1 + - s_1200: 1 + - s_1205: -1 + - s_1531: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL256W or YMR083W" + - eccodes: "1.1.1.1" + - references: "12499363" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.1" - bigg.reaction: "ALCD26xim" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R02679" - metanetx.reaction: "MNXR95724" - pmid: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0188" - - name: "alkaline phosphatase (dihydroneopterin)" - - metabolites: !!omap - - s_0343: 1 - - s_0346: -1 - - s_0794: 2 - - s_0803: -3 - - s_1322: 3 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR481C" - - annotation: !!omap - - ec-code: - - "3.1.3.1" - - "3.1.3.54" - - "3.1.7.6" + - confidence_score: 3 + - !!omap + - id: "r_0188" + - name: "alkaline phosphatase (dihydroneopterin)" + - metabolites: !!omap + - s_0343: 1 + - s_0346: -1 + - s_0794: 2 + - s_0803: -3 + - s_1322: 3 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR481C" + - eccodes: "3.1.3.1; 3.1.3.54; 3.1.7.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.1; 3.1.3.54; 3.1.7.6" - bigg.reaction: "AKP1" - kegg.pathway: - - "sce00730" - - "sce00790" + - "sce00730" + - "sce00790" - kegg.reaction: "R04620" - metanetx.reaction: "MNXR139295" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0189" - - name: "allantoate amidinohydrolase" - - metabolites: !!omap - - s_0405: -1 - - s_0803: -1 - - s_1552: 1 - - s_1555: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIR029W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0189" + - name: "allantoate amidinohydrolase" + - metabolites: !!omap + - s_0405: -1 + - s_0803: -1 + - s_1552: 1 + - s_1555: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIR029W" + - eccodes: "3.5.3.4" + - references: "4604238" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.3.4" - bigg.reaction: "ALLTAHr" - kegg.pathway: "sce00230" @@ -33709,19 +34300,23 @@ - metanetx.reaction: "MNXR95767" - pmid: "4604238" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0190" - - name: "allantoinase, reaction" - - metabolites: !!omap - - s_0405: 1 - - s_0407: -1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIR027C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0190" + - name: "allantoinase, reaction" + - metabolites: !!omap + - s_0405: 1 + - s_0407: -1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIR027C" + - eccodes: "3.5.2.5" + - references: "4604238" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.2.5" - bigg.reaction: "ALLTN" - kegg.pathway: "sce00230" @@ -33729,86 +34324,100 @@ - metanetx.reaction: "MNXR95769" - pmid: "4604238" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0191" - - name: "allophanate hydrolase" - - metabolites: !!omap - - s_0419: 2 - - s_0456: 2 - - s_0794: -3 - - s_0803: -1 - - s_1554: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR208C" - - annotation: !!omap - - ec-code: - - "3.5.1.54" - - "6.3.4.6" + - confidence_score: 3 + - !!omap + - id: "r_0191" + - name: "allophanate hydrolase" + - metabolites: !!omap + - s_0419: 2 + - s_0456: 2 + - s_0794: -3 + - s_0803: -1 + - s_1554: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR208C" + - eccodes: "3.5.1.54; 6.3.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.5.1.54; 6.3.4.6" - bigg.reaction: "ALPHNH" - kegg.pathway: - - "sce00220" - - "sce00791" + - "sce00220" + - "sce00791" - kegg.reaction: "R00005" - metanetx.reaction: "MNXR95786" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0192" - - name: "alpha 1,2-mannosyltransferase" - - metabolites: !!omap - - s_0414: 1 - - s_0444: -1 - - s_0740: 1 - - s_0744: -1 - - s_0797: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR199W or YBR205W or YDR483W or YJL139C or YKR061W or YNL029C or YOR099W or YPL053C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0192" + - name: "alpha 1,2-mannosyltransferase" + - metabolites: !!omap + - s_0414: 1 + - s_0444: -1 + - s_0740: 1 + - s_0744: -1 + - s_0797: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR199W or YBR205W or YDR483W or YJL139C or YKR061W or YNL029C or YOR099W or YPL053C" + - eccodes: "2.4.1.-" + - references: "14752117; 21623372; 8631921; 9020857" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.-" - kegg.pathway: - - "sce00513" - - "sce00514" + - "sce00513" + - "sce00514" - kegg.reaction: "R05002" - metanetx.reaction: "MNXR109280" - pmid: - - "14752117" - - "21623372" - - "8631921" - - "9020857" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0193" - - name: "alpha,alpha-trehalase" - - metabolites: !!omap - - s_0566: 2 - - s_0810: -1 - - s_1522: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR026W or YBR001C" - - annotation: !!omap + - "14752117" + - "21623372" + - "8631921" + - "9020857" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0193" + - name: "alpha,alpha-trehalase" + - metabolites: !!omap + - s_0566: 2 + - s_0810: -1 + - s_1522: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR026W or YBR001C" + - eccodes: "3.2.1.28" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.28" - bigg.reaction: "TREHv" - kegg.pathway: "sce00500" - kegg.reaction: "R00010" - metanetx.reaction: "MNXR95163" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0194" - - name: "alpha,alpha-trehalase" - - metabolites: !!omap - - s_0563: 2 - - s_0803: -1 - - s_1520: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR001C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0194" + - name: "alpha,alpha-trehalase" + - metabolites: !!omap + - s_0563: 2 + - s_0803: -1 + - s_1520: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR001C" + - eccodes: "3.2.1.28" + - references: "8764988" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.28" - bigg.reaction: "TREH" - kegg.pathway: "sce00500" @@ -33816,372 +34425,431 @@ - metanetx.reaction: "MNXR95163" - pmid: "8764988" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0195" - - name: "alpha,alpha-trehalose-phosphate synthase (UDP-forming)" - - metabolites: !!omap - - s_0409: 1 - - s_0568: -1 - - s_0794: 1 - - s_1538: 1 - - s_1543: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR126C and YDR074W and YML100W) or (YBR126C and YDR074W and YMR261C)" - - annotation: !!omap - - ec-code: - - "2.4.1.15" - - "3.1.3.12" + - confidence_score: 3 + - !!omap + - id: "r_0195" + - name: "alpha,alpha-trehalose-phosphate synthase (UDP-forming)" + - metabolites: !!omap + - s_0409: 1 + - s_0568: -1 + - s_0794: 1 + - s_1538: 1 + - s_1543: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR126C and YDR074W and YML100W) or (YBR126C and YDR074W and YMR261C)" + - eccodes: "2.4.1.15; 3.1.3.12" + - references: "21623372" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.4.1.15; 3.1.3.12" - bigg.reaction: "TRE6PS" - kegg.pathway: "sce00500" - kegg.reaction: "R00836" - metanetx.reaction: "MNXR143415" - pmid: "21623372" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0198" - - name: "alpha-glucosidase" - - metabolites: !!omap - - s_0563: 2 - - s_0803: -1 - - s_1105: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR299W or YGR287C or YGR292W or YIL172C or YJL216C or YJL221C" - - annotation: !!omap - - ec-code: - - "3.2.1.10" - - "3.2.1.20" + - confidence_score: 3 + - !!omap + - id: "r_0198" + - name: "alpha-glucosidase" + - metabolites: !!omap + - s_0563: 2 + - s_0803: -1 + - s_1105: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR299W or YGR287C or YGR292W or YIL172C or YJL216C or YJL221C" + - eccodes: "3.2.1.10; 3.2.1.20" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.2.1.10; 3.2.1.20" - bigg.reaction: "MALT" - kegg.pathway: - - "sce00052" - - "sce00500" + - "sce00052" + - "sce00500" - kegg.reaction: "R00028" - metanetx.reaction: "MNXR101350" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0199" - - name: "amidase" - - metabolites: !!omap - - s_0280: -1 - - s_0281: 1 - - s_0419: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR242W or YMR293C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0199" + - name: "amidase" + - metabolites: !!omap + - s_0280: -1 + - s_0281: 1 + - s_0419: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR242W or YMR293C" + - eccodes: "6.3.5.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.5.7" - bigg.reaction: "AMID" - kegg.pathway: "sce00970" - kegg.reaction: "R03180" - metanetx.reaction: "MNXR95812" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0200" - - name: "Aminoacetone:oxygen oxidoreductase(deaminating)(flavin-containing)" - - metabolites: !!omap - - s_0418: -1 - - s_0419: 1 - - s_0803: -1 - - s_0837: 1 - - s_1151: 1 - - s_1275: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0200" + - name: "Aminoacetone:oxygen oxidoreductase(deaminating)(flavin-containing)" + - metabolites: !!omap + - s_0418: -1 + - s_0419: 1 + - s_0803: -1 + - s_0837: 1 + - s_1151: 1 + - s_1275: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "3086094" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "AACTOOR" - kegg.reaction: "R02529" - metanetx.reaction: "MNXR95149" - pmid: "3086094" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_0201" - - name: "Aminobutyraldehyde dehydrogenase" - - metabolites: !!omap - - s_0275: -1 - - s_0738: 1 - - s_0799: 2 - - s_0807: -1 - - s_1200: -1 - - s_1205: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR374W" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_0201" + - name: "Aminobutyraldehyde dehydrogenase" + - metabolites: !!omap + - s_0275: -1 + - s_0738: 1 + - s_0799: 2 + - s_0807: -1 + - s_1200: -1 + - s_1205: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR374W" + - eccodes: "1.2.1.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.5" - bigg.reaction: "ABUTDm" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" - kegg.reaction: "R02549" - metanetx.reaction: "MNXR95191" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0202" - - name: "anthranilate phosphoribosyltransferase" - - metabolites: !!omap - - s_0427: -1 - - s_0633: 1 - - s_1187: 1 - - s_1386: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR354W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0202" + - name: "anthranilate phosphoribosyltransferase" + - metabolites: !!omap + - s_0427: -1 + - s_0633: 1 + - s_1187: 1 + - s_1386: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR354W" + - eccodes: "2.4.2.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.18" - bigg.reaction: "ANPRT" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01073" - metanetx.reaction: "MNXR95842" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0203" - - name: "anthranilate synthase" - - metabolites: !!omap - - s_0427: 1 - - s_0515: -1 - - s_0794: 1 - - s_0991: 1 - - s_0999: -1 - - s_1399: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER090W and YKL211C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0203" + - name: "anthranilate synthase" + - metabolites: !!omap + - s_0427: 1 + - s_0515: -1 + - s_0794: 1 + - s_0991: 1 + - s_0999: -1 + - s_1399: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER090W and YKL211C" + - eccodes: "4.1.3.27" + - references: "8001582" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.3.27" - bigg.reaction: "ANS" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R00986" - metanetx.reaction: "MNXR95843" - pmid: "8001582" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0204" - - name: "Ap4A hydrolase" - - metabolites: !!omap - - s_0394: 2 - - s_0794: 2 - - s_0803: -1 - - s_1282: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR305C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0204" + - name: "Ap4A hydrolase" + - metabolites: !!omap + - s_0394: 2 + - s_0794: 2 + - s_0803: -1 + - s_1282: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR305C" + - eccodes: "3.6.1.29" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.29" - bigg.reaction: "AP4AH" - kegg.pathway: "sce00230" - kegg.reaction: "R00125" - metanetx.reaction: "MNXR95856" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0205" - - name: "arabinose reductase" - - metabolites: !!omap - - s_0794: -1 - - s_0961: 1 - - s_0963: -1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR104W" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.21" + - confidence_score: 2 + - !!omap + - id: "r_0205" + - name: "arabinose reductase" + - metabolites: !!omap + - s_0794: -1 + - s_0961: 1 + - s_0963: -1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR104W" + - eccodes: "1.1.1.-; 1.1.1.21" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.21" - bigg.reaction: "ARABR" - kegg.pathway: "sce00040" - kegg.reaction: "R01759" - metanetx.reaction: "MNXR107158" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0206" - - name: "arginase" - - metabolites: !!omap - - s_0803: -1 - - s_0965: -1 - - s_1266: 1 - - s_1552: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL111W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0206" + - name: "arginase" + - metabolites: !!omap + - s_0803: -1 + - s_0965: -1 + - s_1266: 1 + - s_1552: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL111W" + - eccodes: "3.5.3.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.3.1" - bigg.reaction: "ARGN" - kegg.pathway: - - "sce00220" - - "sce00330" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00220" + - "sce00330" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R00551" - metanetx.reaction: "MNXR95945" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0207" - - name: "argininosuccinate lyase" - - metabolites: !!omap - - s_0015: -1 - - s_0725: 1 - - s_0965: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR018C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0207" + - name: "argininosuccinate lyase" + - metabolites: !!omap + - s_0015: -1 + - s_0725: 1 + - s_0965: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR018C" + - eccodes: "4.3.2.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.3.2.1" - bigg.reaction: "ARGSL" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00220" + - "sce00250" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01086" - metanetx.reaction: "MNXR138059" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0208" - - name: "argininosuccinate synthase" - - metabolites: !!omap - - s_0015: 1 - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_0794: 1 - - s_0973: -1 - - s_0979: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOL058W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0208" + - name: "argininosuccinate synthase" + - metabolites: !!omap + - s_0015: 1 + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_0794: 1 + - s_0973: -1 + - s_0979: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOL058W" + - eccodes: "6.3.4.5" + - references: "35347" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.4.5" - bigg.reaction: "ARGSS" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00220" + - "sce00250" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01954" - metanetx.reaction: "MNXR138060" - pmid: "35347" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0209" - - name: "arginyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0428: 1 - - s_0434: -1 - - s_0633: 1 - - s_0965: -1 - - s_1583: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR341C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0209" + - name: "arginyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0428: 1 + - s_0434: -1 + - s_0633: 1 + - s_0965: -1 + - s_1583: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR341C" + - eccodes: "6.1.1.19" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.19" - bigg.reaction: "ARGTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03646" - metanetx.reaction: "MNXR95950" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0210" - - name: "arginyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0429: 1 - - s_0437: -1 - - s_0636: 1 - - s_0967: -1 - - s_1584: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR091C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0210" + - name: "arginyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0429: 1 + - s_0437: -1 + - s_0636: 1 + - s_0967: -1 + - s_1584: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR091C" + - eccodes: "6.1.1.19" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.19" - bigg.reaction: "ARGTRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R03646" - metanetx.reaction: "MNXR95950" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0211" - - name: "asparagine synthase (glutamine-hydrolysing)" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_0794: 1 - - s_0803: -1 - - s_0969: 1 - - s_0973: -1 - - s_0991: 1 - - s_0999: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR124W or YPR145W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0211" + - name: "asparagine synthase (glutamine-hydrolysing)" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_0794: 1 + - s_0803: -1 + - s_0969: 1 + - s_0973: -1 + - s_0991: 1 + - s_0999: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR124W or YPR145W" + - eccodes: "6.3.5.4" + - references: "9881155" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.5.4" - bigg.reaction: "ASNS1" - kegg.pathway: - - "sce00250" - - "sce01110" + - "sce00250" + - "sce01110" - kegg.reaction: "R00578" - metanetx.reaction: "MNXR96059" - pmid: "9881155" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0212" - - name: "Asparaginyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0430: 1 - - s_0434: -1 - - s_0633: 1 - - s_0969: -1 - - s_1585: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR019C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0212" + - name: "Asparaginyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0430: 1 + - s_0434: -1 + - s_0633: 1 + - s_0969: -1 + - s_1585: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR019C" + - eccodes: "6.1.1.22" + - references: "9605503" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.22" - bigg.reaction: "ASNTRS" - kegg.pathway: "sce00970" @@ -34189,21 +34857,25 @@ - metanetx.reaction: "MNXR96064" - pmid: "9605503" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0213" - - name: "asparaginyl-tRNA synthetase, miotchondrial" - - metabolites: !!omap - - s_0424: 1 - - s_0431: 1 - - s_0437: -1 - - s_0636: 1 - - s_0971: -1 - - s_1586: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR024C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0213" + - name: "asparaginyl-tRNA synthetase, miotchondrial" + - metabolites: !!omap + - s_0424: 1 + - s_0431: 1 + - s_0437: -1 + - s_0636: 1 + - s_0971: -1 + - s_1586: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR024C" + - eccodes: "6.1.1.22" + - references: "9605503" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.22" - bigg.reaction: "ASNTRSm" - kegg.pathway: "sce00970" @@ -34211,199 +34883,225 @@ - metanetx.reaction: "MNXR96064" - pmid: "9605503" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0214" - - name: "aspartate carbamoyltransferase" - - metabolites: !!omap - - s_0455: -1 - - s_0794: 1 - - s_0973: -1 - - s_1194: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL130C" - - annotation: !!omap - - ec-code: - - "2.1.3.2" - - "6.3.5.5" + - confidence_score: 3 + - !!omap + - id: "r_0214" + - name: "aspartate carbamoyltransferase" + - metabolites: !!omap + - s_0455: -1 + - s_0794: 1 + - s_0973: -1 + - s_1194: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL130C" + - eccodes: "2.1.3.2; 6.3.5.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.3.2; 6.3.5.5" - bigg.reaction: "ASPCT" - kegg.pathway: - - "sce00240" - - "sce00250" + - "sce00240" + - "sce00250" - kegg.reaction: "R01397" - metanetx.reaction: "MNXR96080" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0215" - - name: "aspartate kinase" - - metabolites: !!omap - - s_0295: 1 - - s_0394: 1 - - s_0434: -1 - - s_0973: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER052C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0215" + - name: "aspartate kinase" + - metabolites: !!omap + - s_0295: 1 + - s_0394: 1 + - s_0434: -1 + - s_0973: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER052C" + - eccodes: "2.7.2.4" + - references: "9315655" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.2.4" - bigg.reaction: "ASPK" - kegg.pathway: - - "sce00260" - - "sce00261" - - "sce00270" - - "sce00300" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00260" + - "sce00261" + - "sce00270" + - "sce00300" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00480" - metanetx.reaction: "MNXR96085" - pmid: "9315655" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0216" - - name: "aspartate transaminase" - - metabolites: !!omap - - s_0180: -1 - - s_0973: -1 - - s_0991: 1 - - s_1271: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR027C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0216" + - name: "aspartate transaminase" + - metabolites: !!omap + - s_0180: -1 + - s_0973: -1 + - s_0991: 1 + - s_1271: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR027C" + - eccodes: "2.6.1.1" + - references: "1859361" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "ASPTA" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00355" - metanetx.reaction: "MNXR96079" - pmid: "1859361" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0217" - - name: "aspartate transaminase" - - metabolites: !!omap - - s_0182: 1 - - s_0975: 1 - - s_0993: -1 - - s_1273: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL106W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0217" + - name: "aspartate transaminase" + - metabolites: !!omap + - s_0182: 1 + - s_0975: 1 + - s_0993: -1 + - s_1273: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL106W" + - eccodes: "2.6.1.1" + - references: "1482685" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "ASPTAm" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00355" - metanetx.reaction: "MNXR96079" - pmid: "1482685" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0218" - - name: "aspartate transaminase" - - metabolites: !!omap - - s_0184: -1 - - s_0976: -1 - - s_0995: 1 - - s_1274: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR027C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0218" + - name: "aspartate transaminase" + - metabolites: !!omap + - s_0184: -1 + - s_0976: -1 + - s_0995: 1 + - s_1274: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR027C" + - eccodes: "2.6.1.1" + - references: "9288922" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "ASPTAp" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00355" - metanetx.reaction: "MNXR96079" - pmid: "9288922" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0219" - - name: "aspartate-semialdehyde dehydrogenase" - - metabolites: !!omap - - s_0295: -1 - - s_0794: -1 - - s_0978: 1 - - s_1207: 1 - - s_1212: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR158W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0219" + - name: "aspartate-semialdehyde dehydrogenase" + - metabolites: !!omap + - s_0295: -1 + - s_0794: -1 + - s_0978: 1 + - s_1207: 1 + - s_1212: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR158W" + - eccodes: "1.2.1.11" + - references: "2570346" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.11" - bigg.reaction: "ASAD" - kegg.pathway: - - "sce00260" - - "sce00261" - - "sce00270" - - "sce00300" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00260" + - "sce00261" + - "sce00270" + - "sce00300" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R02291" - metanetx.reaction: "MNXR96039" - pmid: "2570346" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0220" - - name: "Aspartyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0432: 1 - - s_0434: -1 - - s_0633: 1 - - s_0973: -1 - - s_1587: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL018C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0220" + - name: "Aspartyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0432: 1 + - s_0434: -1 + - s_0633: 1 + - s_0973: -1 + - s_1587: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL018C" + - eccodes: "6.1.1.12" + - references: "3902099" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.12" - bigg.reaction: "ASPTRS" - kegg.pathway: "sce00970" @@ -34411,21 +35109,25 @@ - metanetx.reaction: "MNXR96101" - pmid: "3902099" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0221" - - name: "Aspartyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0433: 1 - - s_0437: -1 - - s_0636: 1 - - s_0975: -1 - - s_1588: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL104W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0221" + - name: "Aspartyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0433: 1 + - s_0437: -1 + - s_0636: 1 + - s_0975: -1 + - s_1588: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL104W" + - eccodes: "6.1.1.12" + - references: "2668951" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.12" - bigg.reaction: "ASPTRSm" - kegg.pathway: "sce00970" @@ -34433,554 +35135,639 @@ - metanetx.reaction: "MNXR96101" - pmid: "2668951" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0222" - - name: "ATP adenylyltransferase" - - metabolites: !!omap - - s_0394: -1 - - s_0434: -1 - - s_0794: -1 - - s_1282: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR530C" - - annotation: !!omap - - ec-code: - - "2.7.7.5" - - "2.7.7.53" + - confidence_score: 3 + - !!omap + - id: "r_0222" + - name: "ATP adenylyltransferase" + - metabolites: !!omap + - s_0394: -1 + - s_0434: -1 + - s_0794: -1 + - s_1282: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR530C" + - eccodes: "2.7.7.5; 2.7.7.53" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.7.5; 2.7.7.53" - bigg.reaction: "ATPATF1" - kegg.pathway: "sce00230" - kegg.reaction: "R00126" - metanetx.reaction: "MNXR95435" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0223" - - name: "ATP adenylyltransferase" - - metabolites: !!omap - - s_0394: -1 - - s_0785: -1 - - s_0794: -1 - - s_1284: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL050C" - - annotation: !!omap - - ec-code: - - "2.7.7.5" - - "2.7.7.53" + - confidence_score: 2 + - !!omap + - id: "r_0223" + - name: "ATP adenylyltransferase" + - metabolites: !!omap + - s_0394: -1 + - s_0785: -1 + - s_0794: -1 + - s_1284: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL050C" + - eccodes: "2.7.7.5; 2.7.7.53" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.7.5; 2.7.7.53" - bigg.reaction: "ATPATF2" - kegg.pathway: - - "sce00230" - - "sce00920" + - "sce00230" + - "sce00920" - metanetx.reaction: "MNXR136085" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0224" - - name: "ATP adenylyltransferase" - - metabolites: !!omap - - s_0739: -1 - - s_0785: -1 - - s_0794: -1 - - s_1283: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL050C" - - annotation: !!omap - - ec-code: - - "2.7.7.5" - - "2.7.7.53" + - confidence_score: 2 + - !!omap + - id: "r_0224" + - name: "ATP adenylyltransferase" + - metabolites: !!omap + - s_0739: -1 + - s_0785: -1 + - s_0794: -1 + - s_1283: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL050C" + - eccodes: "2.7.7.5; 2.7.7.53" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.7.5; 2.7.7.53" - bigg.reaction: "ATPATF3" - kegg.pathway: - - "sce00230" - - "sce00920" + - "sce00230" + - "sce00920" - metanetx.reaction: "MNXR96127" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0225" - - name: "ATP phosphoribosyltransferase" - - metabolites: !!omap - - s_0326: 1 - - s_0434: -1 - - s_0633: 1 - - s_1386: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER055C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0225" + - name: "ATP phosphoribosyltransferase" + - metabolites: !!omap + - s_0326: 1 + - s_0434: -1 + - s_0633: 1 + - s_1386: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER055C" + - eccodes: "2.4.2.17" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.17" - bigg.reaction: "ATPPRT" - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R01071" - metanetx.reaction: "MNXR96132" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0226" - - name: "ATP synthase" - - metabolites: !!omap - - s_0397: -1 - - s_0437: 1 - - s_0794: -3 - - s_0799: 2 - - s_0807: 1 - - s_1326: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR322C-A and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W) or (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W and YPR020W) or (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR322C-A and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W and YJL180C and YLR393W and YNL315C and YOL077W-A and YCL005W-A)" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0226" + - name: "ATP synthase" + - metabolites: !!omap + - s_0397: -1 + - s_0437: 1 + - s_0794: -3 + - s_0799: 2 + - s_0807: 1 + - s_1326: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR322C-A and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W) or (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W and YPR020W) or (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR322C-A and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W and YJL180C and YLR393W and YNL315C and YOL077W-A and YCL005W-A)" + - eccodes: "3.6.3.14" + - references: "6223276; 10576729" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.3.14" - bigg.reaction: "ATPS3m" - kegg.pathway: "sce00190" - metanetx.reaction: "MNXR96136" - pmid: - - "6223276" - - "10576729" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_0227" - - name: "ATPase, cytosolic" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0796: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YCR024C-A and YEL017C-A and YGL008C) or (YCR024C-A and YEL017C-A and YPL036W) or YER005W" - - annotation: !!omap - - ec-code: - - "3.6.1.5" - - "3.6.3.6" + - "6223276" + - "10576729" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_0227" + - name: "ATPase, cytosolic" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0796: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YCR024C-A and YEL017C-A and YGL008C) or (YCR024C-A and YEL017C-A and YPL036W) or YER005W" + - eccodes: "3.6.1.5; 3.6.3.6" + - references: "10409709" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.6.1.5; 3.6.3.6" - bigg.reaction: "ATPS" - kegg.pathway: - - "sce00190" - - "sce00230" - - "sce00240" + - "sce00190" + - "sce00230" + - "sce00240" - kegg.reaction: "R00086" - metanetx.reaction: "MNXR96131" - pmid: "10409709" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0228" - - name: "beta-1,4 mannosyltransferase" - - metabolites: !!omap - - s_0443: 1 - - s_0739: 1 - - s_0743: -1 - - s_0794: 1 - - s_1184: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0228" + - name: "beta-1,4 mannosyltransferase" + - metabolites: !!omap + - s_0443: 1 + - s_0739: 1 + - s_0743: -1 + - s_0794: 1 + - s_1184: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR110W" + - eccodes: "2.4.1.142" + - references: "6368538" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.142" - kegg.pathway: - - "sce00510" - - "sce00513" + - "sce00510" + - "sce00513" - kegg.reaction: "R04502" - metanetx.reaction: "MNXR108930" - pmid: "6368538" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0229" - - name: "biotin synthase" - - metabolites: !!omap - - s_0451: 1 - - s_0612: -1 - - s_0794: 2 - - s_1371: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR286C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0229" + - name: "biotin synthase" + - metabolites: !!omap + - s_0451: 1 + - s_0612: -1 + - s_0794: 2 + - s_1371: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR286C" + - eccodes: "2.8.1.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.8.1.6" - kegg.pathway: "sce00780" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0230" - - name: "biotin-[acetyl-CoA-carboxylase] ligase" - - metabolites: !!omap - - s_0434: -1 - - s_0451: -1 - - s_0453: 1 - - s_0633: 1 - - s_0794: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL141W" - - annotation: !!omap - - ec-code: - - "6.3.4.-" - - "6.3.4.10" - - "6.3.4.11" - - "6.3.4.15" - - "6.3.4.9" + - confidence_score: 2 + - !!omap + - id: "r_0230" + - name: "biotin-[acetyl-CoA-carboxylase] ligase" + - metabolites: !!omap + - s_0434: -1 + - s_0451: -1 + - s_0453: 1 + - s_0633: 1 + - s_0794: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL141W" + - eccodes: "6.3.4.-; 6.3.4.10; 6.3.4.11; 6.3.4.15; 6.3.4.9" + - references: "9688262" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "6.3.4.-; 6.3.4.10; 6.3.4.11; 6.3.4.15; 6.3.4.9" - bigg.reaction: "BACCL" - kegg.pathway: "sce00780" - kegg.reaction: "R01074" - metanetx.reaction: "MNXR96208" - pmid: "9688262" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0231" - - name: "C-14 sterol reductase" - - metabolites: !!omap - - s_0122: 1 - - s_0262: -1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL280C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0231" + - name: "C-14 sterol reductase" + - metabolites: !!omap + - s_0122: 1 + - s_0262: -1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL280C" + - eccodes: "1.3.1.70" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.70" - bigg.reaction: "C14STR" - kegg.pathway: - - "sce00100" - - "sce01110" - - "sce01130" + - "sce00100" + - "sce01110" + - "sce01130" - kegg.reaction: "R05639" - metanetx.reaction: "MNXR109728" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0233" - - name: "C-22 sterol desaturase (NADP)" - - metabolites: !!omap - - s_0662: 1 - - s_0664: -1 - - s_0794: -1 - - s_0803: 2 - - s_1207: 1 - - s_1212: -1 - - s_1275: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR015C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0233" + - name: "C-22 sterol desaturase (NADP)" + - metabolites: !!omap + - s_0662: 1 + - s_0664: -1 + - s_0794: -1 + - s_0803: 2 + - s_1207: 1 + - s_1212: -1 + - s_1275: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR015C" + - eccodes: "1.14.19.41" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.19.41" - bigg.reaction: "C22STDS" - kegg.pathway: - - "sce00100" - - "sce01130" + - "sce00100" + - "sce01130" - kegg.reaction: "R07506" - metanetx.reaction: "MNXR123636" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0234" - - name: "C-3 sterol dehydrogenase" - - metabolites: !!omap - - s_0456: 1 - - s_1207: -1 - - s_1212: 1 - - s_1578: -1 - - s_1579: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL001C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0234" + - name: "C-3 sterol dehydrogenase" + - metabolites: !!omap + - s_0456: 1 + - s_1207: -1 + - s_1212: 1 + - s_1578: -1 + - s_1579: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL001C" + - eccodes: "1.1.1.170" + - references: "22194828" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.170" - kegg.pathway: - - "sce00100" - - "sce01130" + - "sce00100" + - "sce01130" - pmid: "22194828" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0235" - - name: "C-3 sterol dehydrogenase (4-methylzymosterol)" - - metabolites: !!omap - - s_0209: 1 - - s_0297: -1 - - s_0456: 1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL001C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0235" + - name: "C-3 sterol dehydrogenase (4-methylzymosterol)" + - metabolites: !!omap + - s_0209: 1 + - s_0297: -1 + - s_0456: 1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL001C" + - eccodes: "1.1.1.170" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.170" - kegg.pathway: - - "sce00100" - - "sce01130" + - "sce00100" + - "sce01130" - metanetx.reaction: "MNXR128630" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0236" - - name: "C-3 sterol keto reductase (4-methylzymosterol)" - - metabolites: !!omap - - s_0209: -1 - - s_0296: 1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR100W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0236" + - name: "C-3 sterol keto reductase (4-methylzymosterol)" + - metabolites: !!omap + - s_0209: -1 + - s_0296: 1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR100W" + - eccodes: "1.1.1.270" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.270" - kegg.pathway: - - "sce00100" - - "sce01130" + - "sce00100" + - "sce01130" - kegg.reaction: "R07495" - metanetx.reaction: "MNXR111123" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0237" - - name: "C-3 sterol keto reductase (zymosterol)" - - metabolites: !!omap - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_1569: 1 - - s_1579: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR100W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0237" + - name: "C-3 sterol keto reductase (zymosterol)" + - metabolites: !!omap + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_1569: 1 + - s_1579: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR100W" + - eccodes: "1.1.1.270" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.270" - bigg.reaction: "HMR_1509" - kegg.pathway: - - "sce00100" - - "sce01130" + - "sce00100" + - "sce01130" - metanetx.reaction: "MNXR123719" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0238" - - name: "C-4 methyl sterol oxidase" - - metabolites: !!omap - - s_0296: -1 - - s_0794: -1 - - s_0803: 1 - - s_1207: 1 - - s_1212: -1 - - s_1275: -1 - - s_1576: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR060W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0238" + - name: "C-4 methyl sterol oxidase" + - metabolites: !!omap + - s_0296: -1 + - s_0794: -1 + - s_0803: 1 + - s_1207: 1 + - s_1212: -1 + - s_1275: -1 + - s_1576: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR060W" + - eccodes: "1.14.13.72" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.13.72" - kegg.pathway: - - "sce00100" - - "sce01130" + - "sce00100" + - "sce01130" - metanetx.reaction: "MNXR128521" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0239" - - name: "C-4 methyl sterol oxidase" - - metabolites: !!omap - - s_0794: -1 - - s_0803: 2 - - s_1207: 1 - - s_1212: -1 - - s_1275: -1 - - s_1576: -1 - - s_1577: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR060W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0239" + - name: "C-4 methyl sterol oxidase" + - metabolites: !!omap + - s_0794: -1 + - s_0803: 2 + - s_1207: 1 + - s_1212: -1 + - s_1275: -1 + - s_1576: -1 + - s_1577: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR060W" + - eccodes: "1.14.13.72" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.13.72" - bigg.reaction: "HMR_1503" - kegg.pathway: - - "sce00100" - - "sce01130" + - "sce00100" + - "sce01130" - metanetx.reaction: "MNXR128522" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0240" - - name: "C-4 methyl sterol oxidase" - - metabolites: !!omap - - s_0803: 1 - - s_1207: 1 - - s_1212: -1 - - s_1275: -1 - - s_1577: -1 - - s_1578: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR060W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0240" + - name: "C-4 methyl sterol oxidase" + - metabolites: !!omap + - s_0803: 1 + - s_1207: 1 + - s_1212: -1 + - s_1275: -1 + - s_1577: -1 + - s_1578: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR060W" + - eccodes: "1.14.13.72" + - references: "22194828" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.13.72" - kegg.pathway: - - "sce00100" - - "sce01130" + - "sce00100" + - "sce01130" - pmid: "22194828" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0241" - - name: "C-4 sterol methyl oxidase (4,4-dimethylzymosterol)" - - metabolites: !!omap - - s_0122: -1 - - s_0297: 1 - - s_0794: -5 - - s_0803: 4 - - s_1275: -3 - - s_4209: -6 - - s_4210: 6 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR060W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0241" + - name: "C-4 sterol methyl oxidase (4,4-dimethylzymosterol)" + - metabolites: !!omap + - s_0122: -1 + - s_0297: 1 + - s_0794: -5 + - s_0803: 4 + - s_1275: -3 + - s_4209: -6 + - s_4210: 6 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR060W" + - eccodes: "1.14.13.72" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.13.72" - kegg.pathway: - - "sce00100" - - "sce01130" + - "sce00100" + - "sce01130" - kegg.reaction: "R07509" - metanetx.reaction: "MNXR111130" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0242" - - name: "C-5 sterol desaturase" - - metabolites: !!omap - - s_0657: -1 - - s_0664: 1 - - s_0794: -1 - - s_0803: 2 - - s_1207: 1 - - s_1212: -1 - - s_1275: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR056W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0242" + - name: "C-5 sterol desaturase" + - metabolites: !!omap + - s_0657: -1 + - s_0664: 1 + - s_0794: -1 + - s_0803: 2 + - s_1207: 1 + - s_1212: -1 + - s_1275: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR056W" + - eccodes: "1.14.19.20" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.19.20" - bigg.reaction: "C5STDS" - kegg.pathway: - - "sce00100" - - "sce01110" - - "sce01130" + - "sce00100" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR126641" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0243" - - name: "C-8 sterol isomerase" - - metabolites: !!omap - - s_0657: 1 - - s_0700: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR202W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0243" + - name: "C-8 sterol isomerase" + - metabolites: !!omap + - s_0657: 1 + - s_0700: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR202W" + - eccodes: "5.-.-.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.-.-.-" - bigg.reaction: "C8STI" - kegg.pathway: - - "sce00100" - - "sce01130" + - "sce00100" + - "sce01130" - kegg.reaction: "R07497" - metanetx.reaction: "MNXR96432" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0244" - - name: "C-s24 sterol reductase" - - metabolites: !!omap - - s_0663: -1 - - s_0667: 1 - - s_0795: -1 - - s_1208: 1 - - s_1213: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL012W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0244" + - name: "C-s24 sterol reductase" + - metabolites: !!omap + - s_0663: -1 + - s_0667: 1 + - s_0795: -1 + - s_1208: 1 + - s_1213: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL012W" + - eccodes: "1.3.1.71" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.71" - bigg.reaction: "C24STRer" - kegg.pathway: - - "sce00100" - - "sce01130" + - "sce00100" + - "sce01130" - kegg.reaction: "R05641" - metanetx.reaction: "MNXR96407" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0249" - - name: "CAAX farnesyltransferase" - - metabolites: !!omap - - s_0286: -1 - - s_0633: 1 - - s_1230: 1 - - s_1231: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL090C and YKL019W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0249" + - name: "CAAX farnesyltransferase" + - metabolites: !!omap + - s_0286: -1 + - s_0633: 1 + - s_1230: 1 + - s_1231: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL090C and YKL019W" + - eccodes: "2.5.1.58" + - references: "1763050" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.58" - kegg.pathway: - - "sce00900" - - "sce01130" + - "sce00900" + - "sce01130" - kegg.reaction: "R07273" - metanetx.reaction: "MNXR110956" - pmid: "1763050" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0250" - - name: "carbamoyl-phosphate synthase (glutamine-hydrolysing)" - - metabolites: !!omap - - s_0394: 2 - - s_0434: -2 - - s_0445: -1 - - s_0455: 1 - - s_0794: 2 - - s_0803: -1 - - s_0991: 1 - - s_0999: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL130C and YJR109C and YOR303W" - - annotation: !!omap - - ec-code: - - "2.1.3.2" - - "6.3.5.5" + - confidence_score: 3 + - !!omap + - id: "r_0250" + - name: "carbamoyl-phosphate synthase (glutamine-hydrolysing)" + - metabolites: !!omap + - s_0394: 2 + - s_0434: -2 + - s_0445: -1 + - s_0455: 1 + - s_0794: 2 + - s_0803: -1 + - s_0991: 1 + - s_0999: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL130C and YJR109C and YOR303W" + - eccodes: "2.1.3.2; 6.3.5.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.3.2; 6.3.5.5" - bigg.reaction: "CBPS" - kegg.pathway: - - "sce00240" - - "sce00250" + - "sce00240" + - "sce00250" - kegg.reaction: "R00575" - metanetx.reaction: "MNXR96485" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0252" - - name: "carnitine O-acetyltransferase" - - metabolites: !!omap - - s_0021: -1 - - s_0373: -1 - - s_0529: 1 - - s_1235: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAR035W or YER024W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0252" + - name: "carnitine O-acetyltransferase" + - metabolites: !!omap + - s_0021: -1 + - s_0373: -1 + - s_0529: 1 + - s_1235: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAR035W or YER024W" + - eccodes: "2.3.1.7" + - references: "11329169" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.7" - bigg.reaction: "CSNATr" - kegg.pathway: "sce04146" @@ -34988,422 +35775,498 @@ - metanetx.reaction: "MNXR96926" - pmid: "11329169" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0253" - - name: "carnitine O-acetyltransferase" - - metabolites: !!omap - - s_0024: -1 - - s_0378: -1 - - s_0534: 1 - - s_1237: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML042W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0253" + - name: "carnitine O-acetyltransferase" + - metabolites: !!omap + - s_0024: -1 + - s_0378: -1 + - s_0534: 1 + - s_1237: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML042W" + - eccodes: "2.3.1.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.7" - bigg.reaction: "CSNATp" - kegg.pathway: "sce04146" - kegg.reaction: "R02396" - metanetx.reaction: "MNXR96926" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0254" - - name: "carnitine O-acetyltransferase" - - metabolites: !!omap - - s_0023: 1 - - s_0376: 1 - - s_0532: -1 - - s_1236: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML042W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0254" + - name: "carnitine O-acetyltransferase" + - metabolites: !!omap + - s_0023: 1 + - s_0376: 1 + - s_0532: -1 + - s_1236: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML042W" + - eccodes: "2.3.1.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.7" - bigg.reaction: "CSNATm" - kegg.pathway: "sce04146" - kegg.reaction: "R02396" - metanetx.reaction: "MNXR96926" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0255" - - name: "catalase" - - metabolites: !!omap - - s_0803: 2 - - s_0837: -2 - - s_1275: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR088W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0255" + - name: "catalase" + - metabolites: !!omap + - s_0803: 2 + - s_0837: -2 + - s_1275: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR088W" + - eccodes: "1.11.1.6" + - references: "3536508" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.11.1.6" - bigg.reaction: "CAT" - kegg.pathway: - - "sce00380" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce04011" - - "sce04146" - - "sce04213" + - "sce00380" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce04011" + - "sce04146" + - "sce04213" - kegg.reaction: "R00009" - metanetx.reaction: "MNXR96455" - pmid: "3536508" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0256" - - name: "catalase" - - metabolites: !!omap - - s_0809: 2 - - s_0840: -2 - - s_1279: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR256C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0256" + - name: "catalase" + - metabolites: !!omap + - s_0809: 2 + - s_0840: -2 + - s_1279: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR256C" + - eccodes: "1.11.1.6" + - references: "9931255" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.11.1.6" - bigg.reaction: "CATp" - kegg.pathway: - - "sce00380" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce04011" - - "sce04146" - - "sce04213" + - "sce00380" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce04011" + - "sce04146" + - "sce04213" - kegg.reaction: "R00009" - metanetx.reaction: "MNXR96455" - pmid: "9931255" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0259" - - name: "ceramide-1 hydroxylase (24C)" - - metabolites: !!omap - - s_0475: -1 - - s_0481: 1 - - s_0795: -1 - - s_0804: 1 - - s_1208: 1 - - s_1213: -1 - - s_1276: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR297W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0259" + - name: "ceramide-1 hydroxylase (24C)" + - metabolites: !!omap + - s_0475: -1 + - s_0481: 1 + - s_0795: -1 + - s_0804: 1 + - s_1208: 1 + - s_1213: -1 + - s_1276: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR297W" + - eccodes: "1.-.-.-" + - references: "18296751; 9368039" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.-.-.-" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126673" - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0260" - - name: "ceramide-1 hydroxylase (24C)" - - metabolites: !!omap - - s_0475: -1 - - s_0487: 1 - - s_0795: -1 - - s_0804: 1 - - s_1208: 1 - - s_1213: -1 - - s_1276: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR272C" - - annotation: !!omap + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0260" + - name: "ceramide-1 hydroxylase (24C)" + - metabolites: !!omap + - s_0475: -1 + - s_0487: 1 + - s_0795: -1 + - s_0804: 1 + - s_1208: 1 + - s_1213: -1 + - s_1276: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR272C" + - eccodes: "1.-.-.-" + - references: "18296751; 9368039" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.-.-.-" - metanetx.reaction: "MNXR126668" - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0261" - - name: "ceramide-1 hydroxylase (26C)" - - metabolites: !!omap - - s_0478: -1 - - s_0484: 1 - - s_0795: -1 - - s_0804: 1 - - s_1208: 1 - - s_1213: -1 - - s_1276: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR297W" - - annotation: !!omap + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0261" + - name: "ceramide-1 hydroxylase (26C)" + - metabolites: !!omap + - s_0478: -1 + - s_0484: 1 + - s_0795: -1 + - s_0804: 1 + - s_1208: 1 + - s_1213: -1 + - s_1276: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR297W" + - eccodes: "1.-.-.-" + - references: "18296751; 9368039" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.-.-.-" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126661" - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0262" - - name: "ceramide-1 hydroxylase (26C)" - - metabolites: !!omap - - s_0478: -1 - - s_0490: 1 - - s_0795: -1 - - s_0804: 1 - - s_1208: 1 - - s_1213: -1 - - s_1276: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR272C" - - annotation: !!omap + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0262" + - name: "ceramide-1 hydroxylase (26C)" + - metabolites: !!omap + - s_0478: -1 + - s_0490: 1 + - s_0795: -1 + - s_0804: 1 + - s_1208: 1 + - s_1213: -1 + - s_1276: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR272C" + - eccodes: "1.-.-.-" + - references: "18296751; 9368039" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.-.-.-" - metanetx.reaction: "MNXR126662" - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0263" - - name: "ceramide-1 synthase (24C)" - - metabolites: !!omap - - s_0475: 1 - - s_0530: 1 - - s_0795: 1 - - s_1445: -1 - - s_1480: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" - - annotation: !!omap + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0263" + - name: "ceramide-1 synthase (24C)" + - metabolites: !!omap + - s_0475: 1 + - s_0530: 1 + - s_0795: 1 + - s_1445: -1 + - s_1480: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" + - eccodes: "2.3.1.24" + - references: "11387200; 15692566; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.24" - bigg.reaction: "CERS124er" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126659" - pmid: - - "11387200" - - "15692566" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0264" - - name: "ceramide-1 synthase (26C)" - - metabolites: !!omap - - s_0478: 1 - - s_0530: 1 - - s_0795: 1 - - s_0817: -1 - - s_1445: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" - - annotation: !!omap + - "11387200" + - "15692566" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0264" + - name: "ceramide-1 synthase (26C)" + - metabolites: !!omap + - s_0478: 1 + - s_0530: 1 + - s_0795: 1 + - s_0817: -1 + - s_1445: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" + - eccodes: "2.3.1.24" + - references: "11387200; 15692566; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.24" - bigg.reaction: "CERS126er" - kegg.pathway: "sce00600" - kegg.reaction: "R06517" - metanetx.reaction: "MNXR126619" - pmid: - - "11387200" - - "15692566" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0265" - - name: "ceramide-2 synthase (24C)" - - metabolites: !!omap - - s_0481: 1 - - s_0530: 1 - - s_0795: 1 - - s_1366: -1 - - s_1480: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" - - annotation: !!omap + - "11387200" + - "15692566" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0265" + - name: "ceramide-2 synthase (24C)" + - metabolites: !!omap + - s_0481: 1 + - s_0530: 1 + - s_0795: 1 + - s_1366: -1 + - s_1480: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" + - eccodes: "2.3.1.24" + - references: "11387200; 15692566; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.24" - bigg.reaction: "CERS224er" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126660" - pmid: - - "11387200" - - "15692566" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0266" - - name: "ceramide-2 synthase (26C)" - - metabolites: !!omap - - s_0484: 1 - - s_0530: 1 - - s_0795: 1 - - s_0817: -1 - - s_1366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" - - annotation: !!omap + - "11387200" + - "15692566" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0266" + - name: "ceramide-2 synthase (26C)" + - metabolites: !!omap + - s_0484: 1 + - s_0530: 1 + - s_0795: 1 + - s_0817: -1 + - s_1366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" + - eccodes: "2.3.1.24" + - references: "11387200; 15692566; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.24" - bigg.reaction: "CERS226er" - kegg.pathway: "sce00600" - kegg.reaction: "R06527" - metanetx.reaction: "MNXR126618" - pmid: - - "11387200" - - "15692566" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0267" - - name: "ceramide-3 synthase (24C)" - - metabolites: !!omap - - s_0481: -1 - - s_0493: 1 - - s_0795: -1 - - s_0804: 1 - - s_1208: 1 - - s_1213: -1 - - s_1276: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR272C" - - annotation: !!omap + - "11387200" + - "15692566" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0267" + - name: "ceramide-3 synthase (24C)" + - metabolites: !!omap + - s_0481: -1 + - s_0493: 1 + - s_0795: -1 + - s_0804: 1 + - s_1208: 1 + - s_1213: -1 + - s_1276: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR272C" + - eccodes: "1.-.-.-" + - references: "18296751; 9368039" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.-.-.-" - metanetx.reaction: "MNXR126670" - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0268" - - name: "ceramide-3 synthase (26C)" - - metabolites: !!omap - - s_0484: -1 - - s_0496: 1 - - s_0795: -1 - - s_0804: 1 - - s_1208: 1 - - s_1213: -1 - - s_1276: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR272C" - - annotation: !!omap + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0268" + - name: "ceramide-3 synthase (26C)" + - metabolites: !!omap + - s_0484: -1 + - s_0496: 1 + - s_0795: -1 + - s_0804: 1 + - s_1208: 1 + - s_1213: -1 + - s_1276: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR272C" + - eccodes: "1.-.-.-" + - references: "18296751; 9368039" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.-.-.-" - metanetx.reaction: "MNXR126669" - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0269" - - name: "ceramide-4 synthase (24C)" - - metabolites: !!omap - - s_0493: -1 - - s_0499: 1 - - s_0795: -1 - - s_0804: 1 - - s_1208: 1 - - s_1213: -1 - - s_1276: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR272C" - - annotation: !!omap + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0269" + - name: "ceramide-4 synthase (24C)" + - metabolites: !!omap + - s_0493: -1 + - s_0499: 1 + - s_0795: -1 + - s_0804: 1 + - s_1208: 1 + - s_1213: -1 + - s_1276: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR272C" + - eccodes: "1.-.-.-" + - references: "18296751; 9368039" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.-.-.-" - metanetx.reaction: "MNXR126672" - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0270" - - name: "ceramide-4 synthase (26C)" - - metabolites: !!omap - - s_0496: -1 - - s_0502: 1 - - s_0795: -1 - - s_0804: 1 - - s_1208: 1 - - s_1213: -1 - - s_1276: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR272C" - - annotation: !!omap + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0270" + - name: "ceramide-4 synthase (26C)" + - metabolites: !!omap + - s_0496: -1 + - s_0502: 1 + - s_0795: -1 + - s_0804: 1 + - s_1208: 1 + - s_1213: -1 + - s_1276: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR272C" + - eccodes: "1.-.-.-" + - references: "18296751; 9368039" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.-.-.-" - metanetx.reaction: "MNXR126671" - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0271" - - name: "chitin deacetylase" - - metabolites: !!omap - - s_0362: 1 - - s_0509: -1 - - s_0510: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR307W or YLR308W" - - annotation: !!omap + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0271" + - name: "chitin deacetylase" + - metabolites: !!omap + - s_0362: 1 + - s_0509: -1 + - s_0510: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR307W or YLR308W" + - eccodes: "3.5.1.41" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.41" - kegg.pathway: "sce00520" - kegg.reaction: "R02333" - metanetx.reaction: "MNXR107444" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0272" - - name: "chitin synthase" - - metabolites: !!omap - - s_0509: 1 - - s_0794: 1 - - s_1538: 1 - - s_1544: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR023C or YBR038W or YNL192W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0272" + - name: "chitin synthase" + - metabolites: !!omap + - s_0509: 1 + - s_0794: 1 + - s_1538: 1 + - s_1544: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR023C or YBR038W or YNL192W" + - eccodes: "2.4.1.16" + - references: "16408321" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.16" - kegg.pathway: "sce00520" - kegg.reaction: "R02335" - metanetx.reaction: "MNXR107446" - pmid: "16408321" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0273" - - name: "choline kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0512: -1 - - s_0514: 1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR133W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0273" + - name: "choline kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0512: -1 + - s_0514: 1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR133W" + - eccodes: "2.7.1.32" + - references: "10329685" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.32" - bigg.reaction: "CHOLK" - kegg.pathway: "sce00564" @@ -35411,801 +36274,943 @@ - metanetx.reaction: "MNXR96702" - pmid: "10329685" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0274" - - name: "choline phosphate cytididyltransferase" - - metabolites: !!omap - - s_0469: 1 - - s_0514: -1 - - s_0539: -1 - - s_0633: 1 - - s_0794: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR202C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0274" + - name: "choline phosphate cytididyltransferase" + - metabolites: !!omap + - s_0469: 1 + - s_0514: -1 + - s_0539: -1 + - s_0633: 1 + - s_0794: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR202C" + - eccodes: "2.7.7.15" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.15" - bigg.reaction: "CHLPCTD" - kegg.pathway: - - "sce00440" - - "sce00564" + - "sce00440" + - "sce00564" - kegg.reaction: "R01890" - metanetx.reaction: "MNXR96686" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0278" - - name: "chorismate mutase" - - metabolites: !!omap - - s_0515: -1 - - s_1377: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR060C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0278" + - name: "chorismate mutase" + - metabolites: !!omap + - s_0515: -1 + - s_1377: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR060C" + - eccodes: "5.4.99.5" + - references: "3027508" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.4.99.5" - bigg.reaction: "CHORM" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01715" - metanetx.reaction: "MNXR96708" - pmid: "3027508" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0279" - - name: "chorismate synthase" - - metabolites: !!omap - - s_0324: -1 - - s_0515: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL148W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0279" + - name: "chorismate synthase" + - metabolites: !!omap + - s_0324: -1 + - s_0515: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL148W" + - eccodes: "4.2.3.5" + - references: "8971708" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.3.5" - bigg.reaction: "CHORS" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01714" - metanetx.reaction: "MNXR96709" - pmid: "8971708" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0280" - - name: "cis-aconitate(3-) to isocitrate" - - metabolites: !!omap - - s_0517: -1 - - s_0807: -1 - - s_0941: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR304C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0280" + - name: "cis-aconitate(3-) to isocitrate" + - metabolites: !!omap + - s_0517: -1 + - s_0807: -1 + - s_0941: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR304C" + - eccodes: "4.2.1.3" + - references: "21623372" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.3" - bigg.reaction: "ACN_b_m" - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R01900" - metanetx.reaction: "MNXR95387" - pmid: "21623372" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0281" - - name: "cis-prenyltransferase step 01" - - metabolites: !!omap - - s_0635: 1 - - s_0692: -1 - - s_0746: 1 - - s_0944: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0281" + - name: "cis-prenyltransferase step 01" + - metabolites: !!omap + - s_0635: 1 + - s_0692: -1 + - s_0746: 1 + - s_0944: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - kegg.reaction: "R02061" - metanetx.reaction: "MNXR99650" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0282" - - name: "cis-prenyltransferase step 02" - - metabolites: !!omap - - s_0635: 1 - - s_0746: -1 - - s_0944: -1 - - s_1312: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0282" + - name: "cis-prenyltransferase step 02" + - metabolites: !!omap + - s_0635: 1 + - s_0746: -1 + - s_0944: -1 + - s_1312: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - kegg.reaction: "R07475" - metanetx.reaction: "MNXR100137" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0283" - - name: "cis-prenyltransferase step 03" - - metabolites: !!omap - - s_0635: 1 - - s_0830: 1 - - s_0944: -1 - - s_1312: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0283" + - name: "cis-prenyltransferase step 03" + - metabolites: !!omap + - s_0635: 1 + - s_0830: 1 + - s_0944: -1 + - s_1312: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - kegg.reaction: "R05613" - metanetx.reaction: "MNXR103150" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0284" - - name: "cis-prenyltransferase step 04" - - metabolites: !!omap - - s_0635: 1 - - s_0815: 1 - - s_0830: -1 - - s_0944: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0284" + - name: "cis-prenyltransferase step 04" + - metabolites: !!omap + - s_0635: 1 + - s_0815: 1 + - s_0830: -1 + - s_0944: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - kegg.reaction: "R05612" - metanetx.reaction: "MNXR100621" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0285" - - name: "cis-prenyltransferase step 05" - - metabolites: !!omap - - s_0635: 1 - - s_0815: -1 - - s_0944: -1 - - s_1259: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0285" + - name: "cis-prenyltransferase step 05" + - metabolites: !!omap + - s_0635: 1 + - s_0815: -1 + - s_0944: -1 + - s_1259: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - kegg.reaction: "R05611" - metanetx.reaction: "MNXR109713" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0286" - - name: "cis-prenyltransferase step 06" - - metabolites: !!omap - - s_0635: 1 - - s_0944: -1 - - s_1232: 1 - - s_1259: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0286" + - name: "cis-prenyltransferase step 06" + - metabolites: !!omap + - s_0635: 1 + - s_0944: -1 + - s_1232: 1 + - s_1259: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - kegg.reaction: "R07267" - metanetx.reaction: "MNXR110950" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0287" - - name: "cis-prenyltransferase step 07" - - metabolites: !!omap - - s_0606: 1 - - s_0635: 1 - - s_0944: -1 - - s_1232: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0287" + - name: "cis-prenyltransferase step 07" + - metabolites: !!omap + - s_0606: 1 + - s_0635: 1 + - s_0944: -1 + - s_1232: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - kegg.reaction: "R08747" - metanetx.reaction: "MNXR112246" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0288" - - name: "cis-prenyltransferase step 08" - - metabolites: !!omap - - s_0606: -1 - - s_0635: 1 - - s_0944: -1 - - s_1549: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0288" + - name: "cis-prenyltransferase step 08" + - metabolites: !!omap + - s_0606: -1 + - s_0635: 1 + - s_0944: -1 + - s_1549: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - metanetx.reaction: "MNXR105052" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0289" - - name: "cis-prenyltransferase step 09" - - metabolites: !!omap - - s_0635: 1 - - s_0641: 1 - - s_0944: -1 - - s_1549: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0289" + - name: "cis-prenyltransferase step 09" + - metabolites: !!omap + - s_0635: 1 + - s_0641: 1 + - s_0944: -1 + - s_1549: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0290" - - name: "cis-prenyltransferase step 10" - - metabolites: !!omap - - s_0635: 1 - - s_0641: -1 - - s_0944: -1 - - s_1523: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0290" + - name: "cis-prenyltransferase step 10" + - metabolites: !!omap + - s_0635: 1 + - s_0641: -1 + - s_0944: -1 + - s_1523: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0291" - - name: "cis-prenyltransferase step 11" - - metabolites: !!omap - - s_0635: 1 - - s_0944: -1 - - s_1483: 1 - - s_1523: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0291" + - name: "cis-prenyltransferase step 11" + - metabolites: !!omap + - s_0635: 1 + - s_0944: -1 + - s_1483: 1 + - s_1523: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0292" - - name: "cis-prenyltransferase step 12" - - metabolites: !!omap - - s_0635: 1 - - s_0944: -1 - - s_1310: 1 - - s_1483: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0292" + - name: "cis-prenyltransferase step 12" + - metabolites: !!omap + - s_0635: 1 + - s_0944: -1 + - s_1310: 1 + - s_1483: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0293" - - name: "cis-prenyltransferase step 13" - - metabolites: !!omap - - s_0635: 1 - - s_0829: 1 - - s_0944: -1 - - s_1310: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0293" + - name: "cis-prenyltransferase step 13" + - metabolites: !!omap + - s_0635: 1 + - s_0829: 1 + - s_0944: -1 + - s_1310: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0294" - - name: "cis-prenyltransferase step 14" - - metabolites: !!omap - - s_0635: 1 - - s_0814: 1 - - s_0829: -1 - - s_0944: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0294" + - name: "cis-prenyltransferase step 14" + - metabolites: !!omap + - s_0635: 1 + - s_0814: 1 + - s_0829: -1 + - s_0944: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0295" - - name: "cis-prenyltransferase step 15" - - metabolites: !!omap - - s_0635: 1 - - s_0814: -1 - - s_0944: -1 - - s_1246: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0295" + - name: "cis-prenyltransferase step 15" + - metabolites: !!omap + - s_0635: 1 + - s_0814: -1 + - s_0944: -1 + - s_1246: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0296" - - name: "cis-prenyltransferase step 16" - - metabolites: !!omap - - s_0635: 1 - - s_0944: -1 - - s_1229: 1 - - s_1246: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0296" + - name: "cis-prenyltransferase step 16" + - metabolites: !!omap + - s_0635: 1 + - s_0944: -1 + - s_1229: 1 + - s_1246: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0297" - - name: "cis-prenyltransferase step 17" - - metabolites: !!omap - - s_0635: 1 - - s_0845: 1 - - s_0944: -1 - - s_1229: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0297" + - name: "cis-prenyltransferase step 17" + - metabolites: !!omap + - s_0635: 1 + - s_0845: 1 + - s_0944: -1 + - s_1229: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0298" - - name: "cis-prenyltransferase step 18" - - metabolites: !!omap - - s_0635: 1 - - s_0813: 1 - - s_0845: -1 - - s_0944: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0298" + - name: "cis-prenyltransferase step 18" + - metabolites: !!omap + - s_0635: 1 + - s_0813: 1 + - s_0845: -1 + - s_0944: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0299" - - name: "cis-prenyltransferase step 19" - - metabolites: !!omap - - s_0635: 1 - - s_0640: 1 - - s_0813: -1 - - s_0944: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR002C or YMR101C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0299" + - name: "cis-prenyltransferase step 19" + - metabolites: !!omap + - s_0635: 1 + - s_0640: 1 + - s_0813: -1 + - s_0944: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR002C or YMR101C" + - eccodes: "2.5.1.87" + - references: "12702274" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.87" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - pmid: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0300" - - name: "citrate synthase" - - metabolites: !!omap - - s_0376: -1 - - s_0524: 1 - - s_0532: 1 - - s_0799: 1 - - s_0807: -1 - - s_1273: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNR001C or YPR001W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0300" + - name: "citrate synthase" + - metabolites: !!omap + - s_0376: -1 + - s_0524: 1 + - s_0532: 1 + - s_0799: 1 + - s_0807: -1 + - s_1273: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNR001C or YPR001W" + - eccodes: "2.3.3.1" + - references: "9140965" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.3.1" - bigg.reaction: "CSm" - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00351" - metanetx.reaction: "MNXR96920" - pmid: "9140965" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0301" - - name: "citrate synthase, peroxisomal" - - metabolites: !!omap - - s_0378: -1 - - s_0525: 1 - - s_0534: 1 - - s_0801: 1 - - s_0809: -1 - - s_1274: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR005C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0301" + - name: "citrate synthase, peroxisomal" + - metabolites: !!omap + - s_0378: -1 + - s_0525: 1 + - s_0534: 1 + - s_0801: 1 + - s_0809: -1 + - s_1274: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR005C" + - eccodes: "2.3.3.16" + - references: "10587442" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.3.16" - bigg.reaction: "CSp" - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00351" - metanetx.reaction: "MNXR96920" - pmid: "10587442" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0302" - - name: "citrate to cis-aconitate(3-)" - - metabolites: !!omap - - s_0517: 1 - - s_0524: -1 - - s_0807: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR304C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0302" + - name: "citrate to cis-aconitate(3-)" + - metabolites: !!omap + - s_0517: 1 + - s_0524: -1 + - s_0807: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR304C" + - eccodes: "4.2.1.3" + - references: "21623372" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.3" - bigg.reaction: "ACN_a_m" - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R01325" - metanetx.reaction: "MNXR95386" - pmid: "21623372" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0303" - - name: "citrate to cis-aconitate(3-), cytoplasmic" - - metabolites: !!omap - - s_0516: 1 - - s_0522: -1 - - s_0803: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR304C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0303" + - name: "citrate to cis-aconitate(3-), cytoplasmic" + - metabolites: !!omap + - s_0516: 1 + - s_0522: -1 + - s_0803: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR304C" + - eccodes: "4.2.1.3" + - references: "15975908" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.3" - bigg.reaction: "ACONTa" - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R01325" - metanetx.reaction: "MNXR95386" - pmid: "15975908" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0304" - - name: "coproporphyrinogen oxidase (O2 required)" - - metabolites: !!omap - - s_0456: 2 - - s_0538: -1 - - s_0794: -2 - - s_0803: 2 - - s_1275: -1 - - s_1384: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR044W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0304" + - name: "coproporphyrinogen oxidase (O2 required)" + - metabolites: !!omap + - s_0456: 2 + - s_0538: -1 + - s_0794: -2 + - s_0803: 2 + - s_1275: -1 + - s_1384: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR044W" + - eccodes: "1.3.3.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.3" - bigg.reaction: "CPPPGO" - kegg.pathway: - - "sce00860" - - "sce01110" + - "sce00860" + - "sce01110" - kegg.reaction: "R03220" - metanetx.reaction: "MNXR96880" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0306" - - name: "CTP synthase (glutamine)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0539: 1 - - s_0794: 2 - - s_0803: -1 - - s_0991: 1 - - s_0999: -1 - - s_1322: 1 - - s_1559: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL039C or YJR103W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0306" + - name: "CTP synthase (glutamine)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0539: 1 + - s_0794: 2 + - s_0803: -1 + - s_0991: 1 + - s_0999: -1 + - s_1322: 1 + - s_1559: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL039C or YJR103W" + - eccodes: "6.3.4.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.4.2" - bigg.reaction: "CTPS2" - kegg.pathway: "sce00240" - kegg.reaction: "R00573" - metanetx.reaction: "MNXR96945" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0307" - - name: "CTP synthase (NH3)" - - metabolites: !!omap - - s_0394: 1 - - s_0419: -1 - - s_0434: -1 - - s_0539: 1 - - s_0794: 2 - - s_1322: 1 - - s_1559: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL039C or YJR103W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0307" + - name: "CTP synthase (NH3)" + - metabolites: !!omap + - s_0394: 1 + - s_0419: -1 + - s_0434: -1 + - s_0539: 1 + - s_0794: 2 + - s_1322: 1 + - s_1559: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL039C or YJR103W" + - eccodes: "6.3.4.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.4.2" - bigg.reaction: "CTPS1" - kegg.pathway: "sce00240" - kegg.reaction: "R00571" - metanetx.reaction: "MNXR96944" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0308" - - name: "cystathionine b-lyase" - - metabolites: !!omap - - s_0419: 1 - - s_0803: -1 - - s_0980: -1 - - s_1012: 1 - - s_1399: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR055W or YGL184C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0308" + - name: "cystathionine b-lyase" + - metabolites: !!omap + - s_0419: 1 + - s_0803: -1 + - s_0980: -1 + - s_1012: 1 + - s_1399: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR055W or YGL184C" + - eccodes: "4.4.1.8" + - references: "10922376" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.4.1.8" - bigg.reaction: "CYSTL" - kegg.pathway: - - "sce00270" - - "sce00450" - - "sce01110" - - "sce01230" + - "sce00270" + - "sce00450" + - "sce01110" + - "sce01230" - kegg.reaction: "R01286" - metanetx.reaction: "MNXR96469" - pmid: "10922376" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0309" - - name: "cystathionine beta-synthase" - - metabolites: !!omap - - s_0803: 1 - - s_0980: 1 - - s_1012: -1 - - s_1039: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR155W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0309" + - name: "cystathionine beta-synthase" + - metabolites: !!omap + - s_0803: 1 + - s_0980: 1 + - s_1012: -1 + - s_1039: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR155W" + - eccodes: "4.2.1.22" + - references: "10766767" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.22" - bigg.reaction: "CYSTS" - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce01130" - - "sce01230" + - "sce00260" + - "sce00270" + - "sce01130" + - "sce01230" - kegg.reaction: "R01290" - metanetx.reaction: "MNXR97019" - pmid: "10766767" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0310" - - name: "cystathionine g-lyase" - - metabolites: !!omap - - s_0178: 1 - - s_0419: 1 - - s_0803: -1 - - s_0980: -1 - - s_0981: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL012W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0310" + - name: "cystathionine g-lyase" + - metabolites: !!omap + - s_0178: 1 + - s_0419: 1 + - s_0803: -1 + - s_0980: -1 + - s_0981: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL012W" + - eccodes: "4.4.1.1" + - references: "1577698" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.4.1.1" - bigg.reaction: "CYSTGL" - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce00450" - - "sce01130" - - "sce01230" + - "sce00260" + - "sce00270" + - "sce00450" + - "sce01130" + - "sce01230" - kegg.reaction: "R01001" - metanetx.reaction: "MNXR97012" - pmid: "1577698" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0311" - - name: "cystathionine gamma-synthase" - - metabolites: !!omap - - s_0362: 1 - - s_0794: 1 - - s_0980: 1 - - s_0981: -1 - - s_1233: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR130C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0311" + - name: "cystathionine gamma-synthase" + - metabolites: !!omap + - s_0362: 1 + - s_0794: 1 + - s_0980: 1 + - s_0981: -1 + - s_1233: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR130C" + - eccodes: "2.5.1.48" + - references: "10821189" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.48" - bigg.reaction: "METB1" - kegg.pathway: - - "sce00270" - - "sce00450" - - "sce00920" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00270" + - "sce00450" + - "sce00920" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03217" - metanetx.reaction: "MNXR95637" - pmid: "10821189" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0312" - - name: "cysteine synthase" - - metabolites: !!omap - - s_0362: 1 - - s_0841: -1 - - s_0981: 1 - - s_1234: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR303W" - - annotation: !!omap - - ec-code: - - "2.5.1.47" - - "2.5.1.49" + - confidence_score: 3 + - !!omap + - id: "r_0312" + - name: "cysteine synthase" + - metabolites: !!omap + - s_0362: 1 + - s_0841: -1 + - s_0981: 1 + - s_1234: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR303W" + - eccodes: "2.5.1.47; 2.5.1.49" + - references: "21623372; 7765825" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.47; 2.5.1.49" - bigg.reaction: "CYSS" - kegg.pathway: - - "sce00270" - - "sce00920" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00270" + - "sce00920" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00897" - metanetx.reaction: "MNXR97007" - pmid: - - "21623372" - - "7765825" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0313" - - name: "cysteinyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0542: 1 - - s_0633: 1 - - s_0981: -1 - - s_1589: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL247W" - - annotation: !!omap + - "21623372" + - "7765825" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0313" + - name: "cysteinyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0542: 1 + - s_0633: 1 + - s_0981: -1 + - s_1589: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL247W" + - eccodes: "6.1.1.16" + - references: "9523015" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.16" - bigg.reaction: "CYSTRS" - kegg.pathway: "sce00970" @@ -36213,520 +37218,618 @@ - metanetx.reaction: "MNXR97018" - pmid: "9523015" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0314" - - name: "cytidine deaminase" - - metabolites: !!omap - - s_0419: 1 - - s_0543: -1 - - s_0794: -1 - - s_0803: -1 - - s_1556: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR245C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0314" + - name: "cytidine deaminase" + - metabolites: !!omap + - s_0419: 1 + - s_0543: -1 + - s_0794: -1 + - s_0803: -1 + - s_1556: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR245C" + - eccodes: "3.5.4.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.4.5" - bigg.reaction: "CYTD" - kegg.pathway: "sce00240" - kegg.reaction: "R01878" - metanetx.reaction: "MNXR97039" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0315" - - name: "cytidine kinase (GTP)" - - metabolites: !!omap - - s_0526: 1 - - s_0543: -1 - - s_0739: 1 - - s_0785: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNR012W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0315" + - name: "cytidine kinase (GTP)" + - metabolites: !!omap + - s_0526: 1 + - s_0543: -1 + - s_0739: 1 + - s_0785: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNR012W" + - eccodes: "2.7.1.48" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.48" - bigg.reaction: "CYTDK2" - kegg.pathway: "sce00240" - kegg.reaction: "R00517" - metanetx.reaction: "MNXR97042" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0317" - - name: "cytochrome P450 lanosterol 14-alpha-demethylase (NADP)" - - metabolites: !!omap - - s_0262: 1 - - s_0722: 1 - - s_0794: -2 - - s_0803: 4 - - s_1059: -1 - - s_1207: 3 - - s_1212: -3 - - s_1275: -3 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR007C and YHR042W" - - annotation: !!omap - - ec-code: - - "1.14.13.70" - - "1.6.2.4" + - confidence_score: 2 + - !!omap + - id: "r_0317" + - name: "cytochrome P450 lanosterol 14-alpha-demethylase (NADP)" + - metabolites: !!omap + - s_0262: 1 + - s_0722: 1 + - s_0794: -2 + - s_0803: 4 + - s_1059: -1 + - s_1207: 3 + - s_1212: -3 + - s_1275: -3 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR007C and YHR042W" + - eccodes: "1.14.13.70; 1.6.2.4" + - references: "10622712" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.14.13.70; 1.6.2.4" - bigg.reaction: "LNS14DM" - kegg.pathway: - - "sce00100" - - "sce01110" - - "sce01130" + - "sce00100" + - "sce01110" + - "sce01130" - kegg.reaction: "R05640" - metanetx.reaction: "MNXR109729" - pmid: "10622712" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0318" - - name: "cytosine deaminase" - - metabolites: !!omap - - s_0419: 1 - - s_0545: -1 - - s_0794: -1 - - s_0803: -1 - - s_1550: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR062W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0318" + - name: "cytosine deaminase" + - metabolites: !!omap + - s_0419: 1 + - s_0545: -1 + - s_0794: -1 + - s_0803: -1 + - s_1550: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR062W" + - eccodes: "3.5.4.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.4.1" - bigg.reaction: "CSND" - kegg.pathway: - - "sce00240" - - "sce00330" + - "sce00240" + - "sce00330" - kegg.reaction: "R00974" - metanetx.reaction: "MNXR96927" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0319" - - name: "D-arabinono-1,4-lactone oxidase" - - metabolites: !!omap - - s_0547: -1 - - s_0607: 1 - - s_0794: 1 - - s_0837: 1 - - s_1275: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML086C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0319" + - name: "D-arabinono-1,4-lactone oxidase" + - metabolites: !!omap + - s_0547: -1 + - s_0607: 1 + - s_0794: 1 + - s_0837: 1 + - s_1275: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML086C" + - eccodes: "1.1.3.37" + - references: "10508108" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.3.37" - kegg.reaction: "R02715" - metanetx.reaction: "MNXR107687" - pmid: "10508108" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0320" - - name: "D-arabinose 1-dehydrogenase (NAD)" - - metabolites: !!omap - - s_0547: 1 - - s_0548: -1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR041C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0320" + - name: "D-arabinose 1-dehydrogenase (NAD)" + - metabolites: !!omap + - s_0547: 1 + - s_0548: -1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR041C" + - eccodes: "1.1.1.116" + - references: "17097644" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.116" - bigg.reaction: "ARAB1D1" - kegg.reaction: "R01574" - metanetx.reaction: "MNXR95907" - pmid: "17097644" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0321" - - name: "D-arabinose 1-dehydrogenase (NADP)" - - metabolites: !!omap - - s_0547: 1 - - s_0548: -1 - - s_0794: 1 - - s_1207: -1 - - s_1212: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR149W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0321" + - name: "D-arabinose 1-dehydrogenase (NADP)" + - metabolites: !!omap + - s_0547: 1 + - s_0548: -1 + - s_0794: 1 + - s_1207: -1 + - s_1212: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR149W" + - eccodes: "1.1.1.117" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.117" - bigg.reaction: "ARAB1D2" - kegg.reaction: "R01575" - metanetx.reaction: "MNXR95908" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0322" - - name: "D-fructose 1-phosphate D-glyceraldehyde-3-phosphate-lyase" - - metabolites: !!omap - - s_0556: -1 - - s_0570: 1 - - s_0629: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL060C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0322" + - name: "D-fructose 1-phosphate D-glyceraldehyde-3-phosphate-lyase" + - metabolites: !!omap + - s_0556: -1 + - s_0570: 1 + - s_0629: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL060C" + - eccodes: "4.1.2.13" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.2.13" - bigg.reaction: "FBA2" - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00051" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00010" + - "sce00030" + - "sce00051" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R02568" - metanetx.reaction: "MNXR99460" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0323" - - name: "D-sorbitol dehydrogenase (D-fructose producing)" - - metabolites: !!omap - - s_0553: 1 - - s_0561: -1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL246C or YJR159W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0323" + - name: "D-sorbitol dehydrogenase (D-fructose producing)" + - metabolites: !!omap + - s_0553: 1 + - s_0561: -1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL246C or YJR159W" + - eccodes: "1.1.1.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.14" - bigg.reaction: "SBTD_D2" - kegg.pathway: - - "sce00040" - - "sce00051" + - "sce00040" + - "sce00051" - kegg.reaction: "R00875" - metanetx.reaction: "MNXR104283" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0326" - - name: "dCMP deaminase" - - metabolites: !!omap - - s_0419: 1 - - s_0589: -1 - - s_0654: 1 - - s_0794: -1 - - s_0803: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR144C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0326" + - name: "dCMP deaminase" + - metabolites: !!omap + - s_0419: 1 + - s_0589: -1 + - s_0654: 1 + - s_0794: -1 + - s_0803: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR144C" + - eccodes: "3.5.4.12" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.4.12" - bigg.reaction: "DCMPDA" - kegg.pathway: "sce00240" - kegg.reaction: "R01663" - metanetx.reaction: "MNXR97185" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0327" - - name: "dCTP deaminase" - - metabolites: !!omap - - s_0419: 1 - - s_0590: -1 - - s_0656: 1 - - s_0794: -1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR144C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0327" + - name: "dCTP deaminase" + - metabolites: !!omap + - s_0419: 1 + - s_0590: -1 + - s_0656: 1 + - s_0794: -1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR144C" + - eccodes: "3.5.4.12" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.4.12" - bigg.reaction: "DCTPD" - kegg.pathway: "sce00240" - kegg.reaction: "R02325" - metanetx.reaction: "MNXR97201" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0328" - - name: "deoxyadenosine deaminase" - - metabolites: !!omap - - s_0132: -1 - - s_0136: 1 - - s_0419: 1 - - s_0794: -1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL141W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0328" + - name: "deoxyadenosine deaminase" + - metabolites: !!omap + - s_0132: -1 + - s_0136: 1 + - s_0419: 1 + - s_0794: -1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL141W" + - eccodes: "3.5.4.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.4.2" - bigg.reaction: "DADA" - kegg.pathway: "sce00230" - kegg.reaction: "R02556" - metanetx.reaction: "MNXR97076" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0329" - - name: "deoxycytidine deaminase" - - metabolites: !!omap - - s_0138: 1 - - s_0419: 1 - - s_0610: -1 - - s_0794: -1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR245C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0329" + - name: "deoxycytidine deaminase" + - metabolites: !!omap + - s_0138: 1 + - s_0419: 1 + - s_0610: -1 + - s_0794: -1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR245C" + - eccodes: "3.5.4.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.4.5" - bigg.reaction: "DCYTD" - kegg.pathway: "sce00240" - kegg.reaction: "R02485" - metanetx.reaction: "MNXR97207" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0330" - - name: "deoxyguanylate kinase (dGMP:ATP)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0613: 1 - - s_0615: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR454C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0330" + - name: "deoxyguanylate kinase (dGMP:ATP)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0613: 1 + - s_0615: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR454C" + - eccodes: "2.7.4.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.8" - bigg.reaction: "DGK1" - kegg.pathway: "sce00230" - kegg.reaction: "R02090" - metanetx.reaction: "MNXR97320" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0331" - - name: "deoxyhypusine synthase, cytosolic/mitochondrial" - - metabolites: !!omap - - s_0274: 1 - - s_0803: -1 - - s_1439: -1 - - s_1526: 1 - - s_1535: 1 - - s_1537: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR068W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0331" + - name: "deoxyhypusine synthase, cytosolic/mitochondrial" + - metabolites: !!omap + - s_0274: 1 + - s_0803: -1 + - s_1439: -1 + - s_1526: 1 + - s_1535: 1 + - s_1537: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR068W" + - eccodes: "2.5.1.46" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.46" - metanetx.reaction: "MNXR136013" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0332" - - name: "deoxyribokinase" - - metabolites: !!omap - - s_0152: -1 - - s_0153: 1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR036W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0332" + - name: "deoxyribokinase" + - metabolites: !!omap + - s_0152: -1 + - s_0153: 1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR036W" + - eccodes: "2.7.1.15" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.15" - bigg.reaction: "DRBK" - kegg.pathway: "sce00030" - kegg.reaction: "R02750" - metanetx.reaction: "MNXR97781" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0334" - - name: "dephospho-CoA kinase" - - metabolites: !!omap - - s_0200: -1 - - s_0397: 1 - - s_0437: -1 - - s_0532: 1 - - s_0799: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR196C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0334" + - name: "dephospho-CoA kinase" + - metabolites: !!omap + - s_0200: -1 + - s_0397: 1 + - s_0437: -1 + - s_0532: 1 + - s_0799: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR196C" + - eccodes: "2.7.1.24" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.24" - bigg.reaction: "DPCOAKm" - kegg.pathway: "sce00770" - kegg.reaction: "R00130" - metanetx.reaction: "MNXR97762" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0335" - - name: "dethiobiotin synthase" - - metabolites: !!omap - - s_0341: -1 - - s_0394: 1 - - s_0434: -1 - - s_0456: -1 - - s_0612: 1 - - s_0794: 3 - - s_1322: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR057C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0335" + - name: "dethiobiotin synthase" + - metabolites: !!omap + - s_0341: -1 + - s_0394: 1 + - s_0434: -1 + - s_0456: -1 + - s_0612: 1 + - s_0794: 3 + - s_1322: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR057C" + - eccodes: "6.3.3.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.3.3" - bigg.reaction: "DBTS" - kegg.pathway: "sce00780" - kegg.reaction: "R03182" - metanetx.reaction: "MNXR97180" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0340" - - name: "dihydroceramidase" - - metabolites: !!omap - - s_0475: 1 - - s_0804: 1 - - s_1085: -1 - - s_1445: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPL087W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0340" + - name: "dihydroceramidase" + - metabolites: !!omap + - s_0475: 1 + - s_0804: 1 + - s_1085: -1 + - s_1445: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPL087W" + - eccodes: "3.5.1.-" + - references: "10900202; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126695" - pmid: - - "10900202" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0341" - - name: "dihydroceramidase" - - metabolites: !!omap - - s_0478: 1 - - s_0507: -1 - - s_0804: 1 - - s_1445: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPL087W" - - annotation: !!omap + - "10900202" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0341" + - name: "dihydroceramidase" + - metabolites: !!omap + - s_0478: 1 + - s_0507: -1 + - s_0804: 1 + - s_1445: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPL087W" + - eccodes: "3.5.1.-" + - references: "10900202; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00600" - pmid: - - "10900202" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0342" - - name: "dihydroceramidase" - - metabolites: !!omap - - s_0481: -1 - - s_0804: -1 - - s_1085: 1 - - s_1366: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL087W" - - annotation: !!omap + - "10900202" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0342" + - name: "dihydroceramidase" + - metabolites: !!omap + - s_0481: -1 + - s_0804: -1 + - s_1085: 1 + - s_1366: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL087W" + - eccodes: "3.5.1.-" + - references: "10900202; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126696" - pmid: - - "10900202" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0343" - - name: "dihydroceramidase" - - metabolites: !!omap - - s_0484: -1 - - s_0507: 1 - - s_0804: -1 - - s_1366: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL087W" - - annotation: !!omap + - "10900202" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0343" + - name: "dihydroceramidase" + - metabolites: !!omap + - s_0484: -1 + - s_0507: 1 + - s_0804: -1 + - s_1366: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL087W" + - eccodes: "3.5.1.-" + - references: "10900202; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126694" - pmid: - - "10900202" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0344" - - name: "dihydrofolate reductase" - - metabolites: !!omap - - s_0625: -1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_1487: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR236W" - - annotation: !!omap + - "10900202" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0344" + - name: "dihydrofolate reductase" + - metabolites: !!omap + - s_0625: -1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_1487: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR236W" + - eccodes: "1.5.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.1.3" - bigg.reaction: "DHFR" - kegg.pathway: - - "sce00670" - - "sce00790" + - "sce00670" + - "sce00790" - kegg.reaction: "R00939" - metanetx.reaction: "MNXR97401" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0345" - - name: "dihydrofolate reductase" - - metabolites: !!omap - - s_0626: -1 - - s_0799: -1 - - s_1210: 1 - - s_1214: -1 - - s_1488: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR236W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0345" + - name: "dihydrofolate reductase" + - metabolites: !!omap + - s_0626: -1 + - s_0799: -1 + - s_1210: 1 + - s_1214: -1 + - s_1488: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR236W" + - eccodes: "1.5.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.1.3" - bigg.reaction: "DHFRim" - kegg.pathway: - - "sce00670" - - "sce00790" + - "sce00670" + - "sce00790" - kegg.reaction: "R00939" - metanetx.reaction: "MNXR97401" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0346" - - name: "dihydrofolate synthase" - - metabolites: !!omap - - s_0347: -1 - - s_0394: 1 - - s_0434: -1 - - s_0625: 1 - - s_0794: 1 - - s_0991: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR113W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0346" + - name: "dihydrofolate synthase" + - metabolites: !!omap + - s_0347: -1 + - s_0394: 1 + - s_0434: -1 + - s_0625: 1 + - s_0794: 1 + - s_0991: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR113W" + - eccodes: "6.3.2.12" + - references: "11731153" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.2.12" - bigg.reaction: "DHFS" - kegg.pathway: "sce00790" @@ -36734,57 +37837,66 @@ - metanetx.reaction: "MNXR140043" - pmid: "11731153" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0347" - - name: "dihydroneopterin aldolase" - - metabolites: !!omap - - s_0148: 1 - - s_0344: -1 - - s_0777: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL256W" - - annotation: !!omap - - ec-code: - - "2.5.1.15" - - "2.7.6.3" - - "4.1.2.25" + - confidence_score: 3 + - !!omap + - id: "r_0347" + - name: "dihydroneopterin aldolase" + - metabolites: !!omap + - s_0148: 1 + - s_0344: -1 + - s_0777: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL256W" + - eccodes: "2.5.1.15; 2.7.6.3; 4.1.2.25" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" - kegg.pathway: "sce00790" - kegg.reaction: "R03504" - metanetx.reaction: "MNXR97415" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0348" - - name: "dihydroneopterin monophosphate dephosphorylase" - - metabolites: !!omap - - s_0343: 1 - - s_0345: -1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL100C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0348" + - name: "dihydroneopterin monophosphate dephosphorylase" + - metabolites: !!omap + - s_0343: 1 + - s_0345: -1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL100C" + - eccodes: "3.6.-.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.-.-" - bigg.reaction: "DNMPPA" - kegg.reaction: "R04621" - metanetx.reaction: "MNXR126238" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0349" - - name: "dihydroorotase" - - metabolites: !!omap - - s_0061: -1 - - s_0794: 1 - - s_0803: -1 - - s_1194: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR420W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0349" + - name: "dihydroorotase" + - metabolites: !!omap + - s_0061: -1 + - s_0794: 1 + - s_0803: -1 + - s_1194: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR420W" + - eccodes: "3.5.2.3" + - references: "2897615" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.2.3" - bigg.reaction: "DHORTS" - kegg.pathway: "sce00240" @@ -36792,966 +37904,1109 @@ - metanetx.reaction: "MNXR97428" - pmid: "2897615" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0350" - - name: "dihydropteroate synthase" - - metabolites: !!omap - - s_0148: -1 - - s_0273: -1 - - s_0348: 1 - - s_0807: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL256W" - - annotation: !!omap - - ec-code: - - "2.5.1.15" - - "2.7.6.3" - - "4.1.2.25" + - confidence_score: 3 + - !!omap + - id: "r_0350" + - name: "dihydropteroate synthase" + - metabolites: !!omap + - s_0148: -1 + - s_0273: -1 + - s_0348: 1 + - s_0807: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL256W" + - eccodes: "2.5.1.15; 2.7.6.3; 4.1.2.25" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" - kegg.pathway: "sce00790" - kegg.reaction: "R03066" - metanetx.reaction: "MNXR140386" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0351" - - name: "dihydropteroate synthase" - - metabolites: !!omap - - s_0006: -1 - - s_0273: -1 - - s_0348: 1 - - s_0636: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL256W" - - annotation: !!omap - - ec-code: - - "2.5.1.15" - - "2.7.6.3" - - "4.1.2.25" + - confidence_score: 2 + - !!omap + - id: "r_0351" + - name: "dihydropteroate synthase" + - metabolites: !!omap + - s_0006: -1 + - s_0273: -1 + - s_0348: 1 + - s_0636: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL256W" + - eccodes: "2.5.1.15; 2.7.6.3; 4.1.2.25" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" - bigg.reaction: "FOLD3m" - kegg.pathway: "sce00790" - kegg.reaction: "R03067" - metanetx.reaction: "MNXR140085" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0352" - - name: "dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylbutanoate)" - - metabolites: !!omap - - s_0016: -1 - - s_0233: 1 - - s_0807: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR016C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0352" + - name: "dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylbutanoate)" + - metabolites: !!omap + - s_0016: -1 + - s_0233: 1 + - s_0807: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR016C" + - eccodes: "4.2.1.9" + - references: "14576278" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.9" - bigg.reaction: "DHAD1m" - kegg.pathway: - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R04441" - metanetx.reaction: "MNXR97358" - pmid: "14576278" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0353" - - name: "dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylpentanoate)" - - metabolites: !!omap - - s_0008: -1 - - s_0060: 1 - - s_0807: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR016C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0353" + - name: "dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylpentanoate)" + - metabolites: !!omap + - s_0008: -1 + - s_0060: 1 + - s_0807: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR016C" + - eccodes: "4.2.1.9" + - references: "14576278" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.9" - bigg.reaction: "DHAD2m" - kegg.pathway: - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R05070" - metanetx.reaction: "MNXR97359" - pmid: "14576278" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0354" - - name: "dihydroxyacetone kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0629: 1 - - s_0771: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFL053W or YML070W" - - annotation: !!omap - - ec-code: - - "2.7.1.28" - - "2.7.1.29" + - confidence_score: 3 + - !!omap + - id: "r_0354" + - name: "dihydroxyacetone kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0629: 1 + - s_0771: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFL053W or YML070W" + - eccodes: "2.7.1.28; 2.7.1.29" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.28; 2.7.1.29" - bigg.reaction: "DHAK" - kegg.pathway: - - "sce00051" - - "sce00561" - - "sce01200" + - "sce00051" + - "sce00561" + - "sce01200" - kegg.reaction: "R01011" - metanetx.reaction: "MNXR97361" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0355" - - name: "dimethylallyltranstransferase" - - metabolites: !!omap - - s_0633: 1 - - s_0745: 1 - - s_0943: -1 - - s_1376: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL167W" - - annotation: !!omap - - ec-code: - - "2.5.1.1" - - "2.5.1.10" + - confidence_score: 2 + - !!omap + - id: "r_0355" + - name: "dimethylallyltranstransferase" + - metabolites: !!omap + - s_0633: 1 + - s_0745: 1 + - s_0943: -1 + - s_1376: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL167W" + - eccodes: "2.5.1.1; 2.5.1.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.1; 2.5.1.10" - bigg.reaction: "DMATT" - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R01658" - metanetx.reaction: "MNXR97512" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0356" - - name: "diphosphoglyceromutase" - - metabolites: !!omap - - s_0075: -1 - - s_0140: 1 - - s_0794: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL152C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0356" + - name: "diphosphoglyceromutase" + - metabolites: !!omap + - s_0075: -1 + - s_0140: 1 + - s_0794: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL152C" + - eccodes: "5.4.2.11" + - references: "6313356" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.4.2.11" - bigg.reaction: "DPGM" - kegg.pathway: - - "sce00010" - - "sce00260" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00010" + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01662" - metanetx.reaction: "MNXR107112" - pmid: "6313356" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0357" - - name: "diphosphoinositol-1,3,4,6-tetrakisphosphate diphosphohydrolase" - - metabolites: !!omap - - s_0309: -1 - - s_0794: 3 - - s_0803: -3 - - s_1156: 1 - - s_1322: 3 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR163W" - - annotation: !!omap - - ec-code: - - "3.6.1.52" - - "3.6.1.60" + - confidence_score: 3 + - !!omap + - id: "r_0357" + - name: "diphosphoinositol-1,3,4,6-tetrakisphosphate diphosphohydrolase" + - metabolites: !!omap + - s_0309: -1 + - s_0794: 3 + - s_0803: -3 + - s_1156: 1 + - s_1322: 3 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR163W" + - eccodes: "3.6.1.52; 3.6.1.60" + - references: "10419486" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.6.1.52; 3.6.1.60" - pmid: "10419486" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0358" - - name: "diphosphoinositol-1,3,4,6-tetrakisphosphate synthase" - - metabolites: !!omap - - s_0309: 1 - - s_0394: 1 - - s_0434: -1 - - s_0794: -2 - - s_0803: 2 - - s_1156: -1 - - s_1322: -2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR017C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0358" + - name: "diphosphoinositol-1,3,4,6-tetrakisphosphate synthase" + - metabolites: !!omap + - s_0309: 1 + - s_0394: 1 + - s_0434: -1 + - s_0794: -2 + - s_0803: 2 + - s_1156: -1 + - s_1322: -2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR017C" + - eccodes: "2.7.4.21" + - references: "11956213" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.21" - kegg.pathway: - - "sce04070" - - "sce04138" + - "sce04070" + - "sce04138" - pmid: "11956213" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0359" - - name: "diphthine synthase" - - metabolites: !!omap - - s_0143: -1 - - s_0144: 1 - - s_0794: 1 - - s_1413: 1 - - s_1416: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR172C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0359" + - name: "diphthine synthase" + - metabolites: !!omap + - s_0143: -1 + - s_0144: 1 + - s_0794: 1 + - s_1413: 1 + - s_1416: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR172C" + - eccodes: "2.1.1.314" + - references: "1508200" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.314" - bigg.reaction: "DIPS" - kegg.reaction: "R04481" - metanetx.reaction: "MNXR108915" - pmid: "1508200" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0360" - - name: "dolichol kinase" - - metabolites: !!omap - - s_0467: 1 - - s_0539: -1 - - s_0642: -1 - - s_0645: 1 - - s_0794: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR013C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0360" + - name: "dolichol kinase" + - metabolites: !!omap + - s_0467: 1 + - s_0539: -1 + - s_0642: -1 + - s_0645: 1 + - s_0794: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR013C" + - eccodes: "2.7.1.108" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.108" - bigg.reaction: "DOLK" - kegg.pathway: "sce00510" - kegg.reaction: "R01018" - metanetx.reaction: "MNXR106791" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0361" - - name: "dolichyl-phosphate D-mannosyltransferase" - - metabolites: !!omap - - s_0644: 1 - - s_0645: -1 - - s_0739: 1 - - s_0743: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR183W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0361" + - name: "dolichyl-phosphate D-mannosyltransferase" + - metabolites: !!omap + - s_0644: 1 + - s_0645: -1 + - s_0739: 1 + - s_0743: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR183W" + - eccodes: "2.4.1.83" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.83" - bigg.reaction: "DOLPMTcer" - kegg.pathway: "sce00510" - kegg.reaction: "R01009" - metanetx.reaction: "MNXR106788" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0362" - - name: "dolichyl-phosphate-mannose--protein mannosyltransferase" - - metabolites: !!omap - - s_0644: -1 - - s_0646: 1 - - s_1108: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YAL023C and YDL095W) or YDL093W or YJR143C or YOR321W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0362" + - name: "dolichyl-phosphate-mannose--protein mannosyltransferase" + - metabolites: !!omap + - s_0644: -1 + - s_0646: 1 + - s_1108: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YAL023C and YDL095W) or YDL093W or YJR143C or YOR321W" + - eccodes: "2.4.1.109" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.109" - bigg.reaction: "DOLPMMer" - kegg.pathway: - - "sce00514" - - "sce00515" + - "sce00514" + - "sce00515" - metanetx.reaction: "MNXR136057" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0363" - - name: "dTMP kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0647: 1 - - s_0649: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR057W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0363" + - name: "dTMP kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0647: 1 + - s_0649: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR057W" + - eccodes: "2.7.4.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.9" - bigg.reaction: "DTMPK" - kegg.pathway: "sce00240" - kegg.reaction: "R02094" - metanetx.reaction: "MNXR97804" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0364" - - name: "dUTP diphosphatase" - - metabolites: !!omap - - s_0633: 1 - - s_0654: 1 - - s_0656: -1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR069C or YBR252W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0364" + - name: "dUTP diphosphatase" + - metabolites: !!omap + - s_0633: 1 + - s_0654: 1 + - s_0656: -1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR069C or YBR252W" + - eccodes: "3.6.1.23" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.23" - bigg.reaction: "DUTPDP" - kegg.pathway: "sce00240" - kegg.reaction: "R02100" - metanetx.reaction: "MNXR97822" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0365" - - name: "endopolygalacturonase" - - metabolites: !!omap - - s_0560: 1 - - s_0805: -1 - - s_1309: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR153W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0365" + - name: "endopolygalacturonase" + - metabolites: !!omap + - s_0560: 1 + - s_0805: -1 + - s_1309: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR153W" + - eccodes: "3.2.1.15" + - references: "10028181" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.15" - bigg.reaction: "EPGALURSe" - kegg.pathway: "sce00040" - pmid: "10028181" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0366" - - name: "enolase" - - metabolites: !!omap - - s_0188: -1 - - s_0803: 1 - - s_1360: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPL281C or YGR254W or YHR174W or YMR323W or YOR393W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0366" + - name: "enolase" + - metabolites: !!omap + - s_0188: -1 + - s_0803: 1 + - s_1360: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPL281C or YGR254W or YHR174W or YMR323W or YOR393W" + - eccodes: "4.2.1.11" + - references: "7520111" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.11" - bigg.reaction: "ENO" - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - "sce03018" + - "sce00010" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - "sce03018" - kegg.reaction: "R00658" - metanetx.reaction: "MNXR97932" - pmid: "7520111" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0368" - - name: "ethanolamine kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0683: -1 - - s_0794: 1 - - s_1239: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR147W or YLR133W" - - annotation: !!omap - - ec-code: - - "2.7.1.32" - - "2.7.1.82" + - confidence_score: 3 + - !!omap + - id: "r_0368" + - name: "ethanolamine kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0683: -1 + - s_0794: 1 + - s_1239: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR147W or YLR133W" + - eccodes: "2.7.1.32; 2.7.1.82" + - references: "9506987" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.32; 2.7.1.82" - bigg.reaction: "ETHAK" - kegg.pathway: "sce00564" - kegg.reaction: "R01468" - metanetx.reaction: "MNXR97969" - pmid: "9506987" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0369" - - name: "ethyl acetate-hydrolyzing esterase" - - metabolites: !!omap - - s_0362: 1 - - s_0680: 1 - - s_0685: -1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR126C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0369" + - name: "ethyl acetate-hydrolyzing esterase" + - metabolites: !!omap + - s_0362: 1 + - s_0680: 1 + - s_0685: -1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR126C" + - eccodes: "3.1.-.-" + - references: "10855721" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.-.-" - metanetx.reaction: "MNXR121010" - pmid: "10855721" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0370" - - name: "exo-1,3-beta-glucan glucohydrase" - - metabolites: !!omap - - s_0003: -1 - - s_0565: 1 - - s_0805: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR261C or YGR282C or YLR300W or YNR067C or YOR190W" - - annotation: !!omap - - ec-code: - - "3.2.1.58" - - "3.2.1.6" + - confidence_score: 3 + - !!omap + - id: "r_0370" + - name: "exo-1,3-beta-glucan glucohydrase" + - metabolites: !!omap + - s_0003: -1 + - s_0565: 1 + - s_0805: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR261C or YGR282C or YLR300W or YNR067C or YOR190W" + - eccodes: "3.2.1.58; 3.2.1.6" + - references: "8458852" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.2.1.58; 3.2.1.6" - bigg.reaction: "13BGHe" - kegg.pathway: "sce00500" - kegg.reaction: "R00308" - metanetx.reaction: "MNXR106465" - pmid: "8458852" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0373" - - name: "farnesyltranstransferase" - - metabolites: !!omap - - s_0189: 1 - - s_0190: -1 - - s_0633: 1 - - s_0943: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL069C" - - annotation: !!omap - - ec-code: - - "2.5.1.-" - - "2.5.1.1" - - "2.5.1.10" - - "2.5.1.29" + - confidence_score: 3 + - !!omap + - id: "r_0373" + - name: "farnesyltranstransferase" + - metabolites: !!omap + - s_0189: 1 + - s_0190: -1 + - s_0633: 1 + - s_0943: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL069C" + - eccodes: "2.5.1.-; 2.5.1.1; 2.5.1.10; 2.5.1.29" + - references: "7665600" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.-; 2.5.1.1; 2.5.1.10; 2.5.1.29" - bigg.reaction: "FRTT" - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R02061" - metanetx.reaction: "MNXR99650" - pmid: "7665600" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0399" - - name: "fatty-acid--CoA ligase (decanoate)" - - metabolites: !!omap - - s_0426: 1 - - s_0439: -1 - - s_0534: -1 - - s_0600: -1 - - s_0605: 1 - - s_0638: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER015W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0399" + - name: "fatty-acid--CoA ligase (decanoate)" + - metabolites: !!omap + - s_0426: 1 + - s_0439: -1 + - s_0534: -1 + - s_0600: -1 + - s_0605: 1 + - s_0638: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER015W" + - eccodes: "6.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR118203" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0400" - - name: "fatty-acid--CoA ligase (dodecanoate)" - - metabolites: !!omap - - s_0426: 1 - - s_0439: -1 - - s_0534: -1 - - s_0638: 1 - - s_1070: -1 - - s_1076: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER015W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0400" + - name: "fatty-acid--CoA ligase (dodecanoate)" + - metabolites: !!omap + - s_0426: 1 + - s_0439: -1 + - s_0534: -1 + - s_0638: 1 + - s_1070: -1 + - s_1076: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER015W" + - eccodes: "6.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL120p" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR120051" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0402" - - name: "fatty-acid--CoA ligase (hexadecanoate)" - - metabolites: !!omap - - s_0426: 1 - - s_0439: -1 - - s_0534: -1 - - s_0638: 1 - - s_1291: -1 - - s_1305: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER015W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0402" + - name: "fatty-acid--CoA ligase (hexadecanoate)" + - metabolites: !!omap + - s_0426: 1 + - s_0439: -1 + - s_0534: -1 + - s_0638: 1 + - s_1291: -1 + - s_1305: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER015W" + - eccodes: "6.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL160p" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - kegg.reaction: "R01280" - metanetx.reaction: "MNXR99153" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0410" - - name: "fatty-acid--CoA ligase (octanoate)" - - metabolites: !!omap - - s_0426: 1 - - s_0439: -1 - - s_0534: -1 - - s_0638: 1 - - s_1253: -1 - - s_1258: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER015W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0410" + - name: "fatty-acid--CoA ligase (octanoate)" + - metabolites: !!omap + - s_0426: 1 + - s_0439: -1 + - s_0534: -1 + - s_0638: 1 + - s_1253: -1 + - s_1258: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER015W" + - eccodes: "6.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL80p" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR99205" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0412" - - name: "fatty-acid--CoA ligase (tetradecanoate)" - - metabolites: !!omap - - s_0426: 1 - - s_0439: -1 - - s_0534: -1 - - s_0638: 1 - - s_1166: -1 - - s_1179: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER015W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0412" + - name: "fatty-acid--CoA ligase (tetradecanoate)" + - metabolites: !!omap + - s_0426: 1 + - s_0439: -1 + - s_0534: -1 + - s_0638: 1 + - s_1166: -1 + - s_1179: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER015W" + - eccodes: "6.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL140p" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126663" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0436" - - name: "ferrochelatase" - - metabolites: !!omap - - s_0712: 1 - - s_0799: 2 - - s_0926: -1 - - s_1383: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR176W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0436" + - name: "ferrochelatase" + - metabolites: !!omap + - s_0712: 1 + - s_0799: 2 + - s_0926: -1 + - s_1383: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR176W" + - eccodes: "4.99.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.99.1.1" - bigg.reaction: "FCLTm" - kegg.pathway: - - "sce00860" - - "sce01110" + - "sce00860" + - "sce01110" - kegg.reaction: "R00310" - metanetx.reaction: "MNXR99471" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0437" - - name: "ferrocytochrome-c:hydrogen-peroxide oxidoreductase" - - metabolites: !!omap - - s_0709: 2 - - s_0710: -2 - - s_0807: 2 - - s_0838: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YEL039C and YKR066C) or (YJR048W and YKR066C)" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0437" + - name: "ferrocytochrome-c:hydrogen-peroxide oxidoreductase" + - metabolites: !!omap + - s_0709: 2 + - s_0710: -2 + - s_0807: 2 + - s_0838: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YEL039C and YKR066C) or (YJR048W and YKR066C)" + - eccodes: "1.11.1.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.11.1.5" - bigg.reaction: "CCP2m" - kegg.pathway: "sce00920" - kegg.reaction: "R00017" - metanetx.reaction: "MNXR138164" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0438" - - name: "ferrocytochrome-c:oxygen oxidoreductase" - - metabolites: !!omap - - s_0709: 1 - - s_0710: -1 - - s_0794: 0.633 - - s_0799: -1.266 - - s_0807: 0.5 - - s_1278: -0.25 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(Q0045 and Q0250 and Q0275 and YDL067C and YEL039C and YGL187C and YGL191W and YHR051W and YIL111W and YLR038C and YLR395C and YMR256C) or (Q0045 and Q0250 and Q0275 and YDL067C and YEL039C and YGL187C and YGL191W and YHR051W and YLR038C and YLR395C and YMR256C and YNL052W) or (Q0045 and Q0250 and Q0275 and YDL067C and YGL187C and YGL191W and YHR051W and YIL111W and YJR048W and YLR038C and YLR395C and YMR256C) or (Q0045 and Q0250 and Q0275 and YDL067C and YGL187C and YGL191W and YHR051W and YJR048W and YLR038C and YLR395C and YMR256C and YNL052W) or (Q0045 and Q0250 and Q0275 and YDL067C and YHR116W and YDR231C and YGR062C and YJL003W and YPL132W and YLL018C-A)" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0438" + - name: "ferrocytochrome-c:oxygen oxidoreductase" + - metabolites: !!omap + - s_0709: 1 + - s_0710: -1 + - s_0794: 0.633 + - s_0799: -1.266 + - s_0807: 0.5 + - s_1278: -0.25 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(Q0045 and Q0250 and Q0275 and YDL067C and YEL039C and YGL187C and YGL191W and YHR051W and YIL111W and YLR038C and YLR395C and YMR256C) or (Q0045 and Q0250 and Q0275 and YDL067C and YEL039C and YGL187C and YGL191W and YHR051W and YLR038C and YLR395C and YMR256C and YNL052W) or (Q0045 and Q0250 and Q0275 and YDL067C and YGL187C and YGL191W and YHR051W and YIL111W and YJR048W and YLR038C and YLR395C and YMR256C) or (Q0045 and Q0250 and Q0275 and YDL067C and YGL187C and YGL191W and YHR051W and YJR048W and YLR038C and YLR395C and YMR256C and YNL052W) or (Q0045 and Q0250 and Q0275 and YDL067C and YHR116W and YDR231C and YGR062C and YJL003W and YPL132W and YLL018C-A)" + - eccodes: "1.9.3.1" + - references: "21964735" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.9.3.1" - kegg.pathway: - - "sce00190" - - "sce00920" + - "sce00190" + - "sce00920" - kegg.reaction: "R00081" - metanetx.reaction: "MNXR138955" - pmid: "21964735" - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_0439" - - name: "ubiquinol:ferricytochrome c reductase" - - metabolites: !!omap - - s_0709: -2 - - s_0710: 2 - - s_0794: 2.532 - - s_0799: -1.266 - - s_1535: -1 - - s_1537: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(Q0105 and YBL045C and YDR529C and YEL024W and YEL039C and YFR033C and YGR183C and YHR001W-A and YJL166W and YOR065W and YPR191W) or (Q0105 and YBL045C and YDR529C and YEL024W and YFR033C and YGR183C and YHR001W-A and YJL166W and YJR048W and YOR065W and YPR191W)" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0439" + - name: "ubiquinol:ferricytochrome c reductase" + - metabolites: !!omap + - s_0709: -2 + - s_0710: 2 + - s_0794: 2.532 + - s_0799: -1.266 + - s_1535: -1 + - s_1537: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(Q0105 and YBL045C and YDR529C and YEL024W and YEL039C and YFR033C and YGR183C and YHR001W-A and YJL166W and YOR065W and YPR191W) or (Q0105 and YBL045C and YDR529C and YEL024W and YFR033C and YGR183C and YHR001W-A and YJL166W and YJR048W and YOR065W and YPR191W)" + - eccodes: "1.10.2.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.10.2.2" - kegg.pathway: - - "sce00190" - - "sce00920" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_0440" - - name: "FMN adenylyltransferase" - - metabolites: !!omap - - s_0434: -1 - - s_0633: 1 - - s_0687: 1 - - s_0714: -1 - - s_0794: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL045C" - - annotation: !!omap + - "sce00190" + - "sce00920" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_0440" + - name: "FMN adenylyltransferase" + - metabolites: !!omap + - s_0434: -1 + - s_0633: 1 + - s_0687: 1 + - s_0714: -1 + - s_0794: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL045C" + - eccodes: "2.7.7.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.2" - bigg.reaction: "FMNAT" - kegg.pathway: - - "sce00740" - - "sce01110" + - "sce00740" + - "sce01110" - kegg.reaction: "R00161" - metanetx.reaction: "MNXR95501" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0441" - - name: "FMN reductase" - - metabolites: !!omap - - s_0714: -1 - - s_0717: 1 - - s_0794: -2 - - s_1198: 1 - - s_1203: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR011W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0441" + - name: "FMN reductase" + - metabolites: !!omap + - s_0714: -1 + - s_0717: 1 + - s_0794: -2 + - s_1198: 1 + - s_1203: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR011W" + - eccodes: "1.5.1.39" + - references: "15184374" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.1.39" - bigg.reaction: "FMNRx" - kegg.reaction: "R05705" - metanetx.reaction: "MNXR99607" - pmid: "15184374" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0442" - - name: "FMN reductase" - - metabolites: !!omap - - s_0714: -1 - - s_0717: 1 - - s_0794: -2 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0442" + - name: "FMN reductase" + - metabolites: !!omap + - s_0714: -1 + - s_0717: 1 + - s_0794: -2 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR011W" + - eccodes: "1.5.1.39" + - references: "15184374" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.1.39" - bigg.reaction: "FMNRx2" - kegg.reaction: "R05706" - metanetx.reaction: "MNXR99597" - pmid: "15184374" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0443" - - name: "formaldehyde dehydrogenase" - - metabolites: !!omap - - s_0721: -1 - - s_0750: -1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_1421: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL168W" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.1" - - "1.1.1.284" + - confidence_score: 3 + - !!omap + - id: "r_0443" + - name: "formaldehyde dehydrogenase" + - metabolites: !!omap + - s_0721: -1 + - s_0750: -1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_1421: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL168W" + - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - bigg.reaction: "FALDH" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" - metanetx.reaction: "MNXR99236" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0445" - - name: "formate dehydrogenase" - - metabolites: !!omap - - s_0456: 1 - - s_0722: -1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR388C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0445" + - name: "formate dehydrogenase" + - metabolites: !!omap + - s_0456: 1 + - s_0722: -1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR388C" + - eccodes: "1.2.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.2" - bigg.reaction: "FDH" - kegg.pathway: - - "sce00630" - - "sce01200" + - "sce00630" + - "sce01200" - kegg.reaction: "R00519" - metanetx.reaction: "MNXR99475" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0446" - - name: "formate-tetrahydrofolate ligase" - - metabolites: !!omap - - s_0120: 1 - - s_0394: 1 - - s_0434: -1 - - s_0722: -1 - - s_1322: 1 - - s_1487: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR204W" - - annotation: !!omap - - ec-code: - - "1.5.1.5" - - "3.5.4.9" - - "6.3.4.3" + - confidence_score: 2 + - !!omap + - id: "r_0446" + - name: "formate-tetrahydrofolate ligase" + - metabolites: !!omap + - s_0120: 1 + - s_0394: 1 + - s_0434: -1 + - s_0722: -1 + - s_1322: 1 + - s_1487: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR204W" + - eccodes: "1.5.1.5; 3.5.4.9; 6.3.4.3" + - references: "10871621; 1916088; 8852837" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - bigg.reaction: "FTHFLi" - kegg.pathway: "sce00670" - kegg.reaction: "R00943" - metanetx.reaction: "MNXR99672" - pmid: - - "10871621" - - "1916088" - - "8852837" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0447" - - name: "formate-tetrahydrofolate ligase" - - metabolites: !!omap - - s_0121: 1 - - s_0397: 1 - - s_0437: -1 - - s_0724: -1 - - s_1326: 1 - - s_1488: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR084W" - - annotation: !!omap - - ec-code: - - "1.5.1.5" - - "3.5.4.9" - - "6.3.4.3" + - "10871621" + - "1916088" + - "8852837" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0447" + - name: "formate-tetrahydrofolate ligase" + - metabolites: !!omap + - s_0121: 1 + - s_0397: 1 + - s_0437: -1 + - s_0724: -1 + - s_1326: 1 + - s_1488: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR084W" + - eccodes: "1.5.1.5; 3.5.4.9; 6.3.4.3" + - references: "10871621; 1916088; 8852837" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - bigg.reaction: "FTHFLmi" - kegg.pathway: "sce00670" - kegg.reaction: "R00943" - metanetx.reaction: "MNXR99672" - pmid: - - "10871621" - - "1916088" - - "8852837" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0448" - - name: "fructose-2,6-bisphosphate 2-phosphatase" - - metabolites: !!omap - - s_0442: -1 - - s_0557: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR345W or YJL155C" - - annotation: !!omap + - "10871621" + - "1916088" + - "8852837" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0448" + - name: "fructose-2,6-bisphosphate 2-phosphatase" + - metabolites: !!omap + - s_0442: -1 + - s_0557: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR345W or YJL155C" + - eccodes: "3.1.3.46" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.46" - bigg.reaction: "FBP26" - kegg.pathway: "sce00051" - kegg.reaction: "R00763" - metanetx.reaction: "MNXR106671" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0449" - - name: "fructose-bisphosphatase" - - metabolites: !!omap - - s_0555: -1 - - s_0557: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR377C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0449" + - name: "fructose-bisphosphatase" + - metabolites: !!omap + - s_0555: -1 + - s_0557: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR377C" + - eccodes: "3.1.3.11" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.11" - bigg.reaction: "FBP" - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00051" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00030" + - "sce00051" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00762" - metanetx.reaction: "MNXR106670" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0450" - - name: "fructose-bisphosphate aldolase" - - metabolites: !!omap - - s_0555: -1 - - s_0629: 1 - - s_0764: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL060C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0450" + - name: "fructose-bisphosphate aldolase" + - metabolites: !!omap + - s_0555: -1 + - s_0629: 1 + - s_0764: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL060C" + - eccodes: "4.1.2.13" + - references: "8435847" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.2.13" - bigg.reaction: "FBA" - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00051" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00010" + - "sce00030" + - "sce00051" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - metanetx.reaction: "MNXR124532" - pmid: "8435847" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0451" - - name: "fumarase" - - metabolites: !!omap - - s_0068: 1 - - s_0727: -1 - - s_0807: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPL262W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0451" + - name: "fumarase" + - metabolites: !!omap + - s_0068: 1 + - s_0727: -1 + - s_0807: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPL262W" + - eccodes: "4.2.1.2" + - references: "9627400" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.2" - bigg.reaction: "FUMm" - kegg.pathway: - - "sce00020" - - "sce00620" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00020" + - "sce00620" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R01082" - metanetx.reaction: "MNXR99705" - pmid: "9627400" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0452" - - name: "fumarase, cytoplasmic" - - metabolites: !!omap - - s_0066: 1 - - s_0725: -1 - - s_0803: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPL262W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0452" + - name: "fumarase, cytoplasmic" + - metabolites: !!omap + - s_0066: 1 + - s_0725: -1 + - s_0803: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPL262W" + - eccodes: "4.2.1.2" + - references: "11585823; 20231875" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.2" - bigg.reaction: "FUM" - kegg.pathway: - - "sce00020" - - "sce00620" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00020" + - "sce00620" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R01082" - metanetx.reaction: "MNXR99705" - pmid: - - "11585823" - - "20231875" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0453" - - name: "dihydoorotic acid dehydrogenase" - - metabolites: !!omap - - s_0061: -1 - - s_0725: -1 - - s_1269: 1 - - s_1458: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL216W" - - annotation: !!omap + - "11585823" + - "20231875" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0453" + - name: "dihydoorotic acid dehydrogenase" + - metabolites: !!omap + - s_0061: -1 + - s_0725: -1 + - s_1269: 1 + - s_1458: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL216W" + - eccodes: "1.3.98.1" + - references: "1409592" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.98.1" - bigg.reaction: "DHORDfum" - kegg.pathway: "sce00240" @@ -37759,526 +39014,615 @@ - metanetx.reaction: "MNXR97425" - pmid: "1409592" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0454" - - name: "fumarate reductase" - - metabolites: !!omap - - s_0688: 1 - - s_0690: -1 - - s_0727: -1 - - s_0799: 1 - - s_1460: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YEL047C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0454" + - name: "fumarate reductase" + - metabolites: !!omap + - s_0688: 1 + - s_0690: -1 + - s_0727: -1 + - s_0799: 1 + - s_1460: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YEL047C" + - eccodes: "1.3.1.6" + - references: "22672422; 8946166; 9587404" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.6" - bigg.reaction: "FRDm" - kegg.reaction: "R00408" - metanetx.reaction: "MNXR99636" - pmid: - - "22672422" - - "8946166" - - "9587404" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0455" - - name: "soluble fumarate reductase" - - metabolites: !!omap - - s_0687: 1 - - s_0689: -1 - - s_0725: -1 - - s_0794: 1 - - s_1458: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YEL047C" - - annotation: !!omap + - "22672422" + - "8946166" + - "9587404" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0455" + - name: "soluble fumarate reductase" + - metabolites: !!omap + - s_0687: 1 + - s_0689: -1 + - s_0725: -1 + - s_0794: 1 + - s_1458: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YEL047C" + - eccodes: "1.3.1.6" + - references: "22672422" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.6" - bigg.reaction: "FRD" - kegg.reaction: "R00408" - metanetx.reaction: "MNXR99636" - pmid: "22672422" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0457" - - name: "g-glutamyltransferase" - - metabolites: !!omap - - s_0750: -1 - - s_0955: -1 - - s_0983: 1 - - s_0987: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR299W" - - annotation: !!omap - - ec-code: - - "2.3.2.2" - - "3.4.19.13" + - confidence_score: 3 + - !!omap + - id: "r_0457" + - name: "g-glutamyltransferase" + - metabolites: !!omap + - s_0750: -1 + - s_0955: -1 + - s_0983: 1 + - s_0987: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR299W" + - eccodes: "2.3.2.2; 3.4.19.13" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.2.2; 3.4.19.13" - bigg.reaction: "GTMLT" - kegg.pathway: - - "sce00430" - - "sce00480" + - "sce00430" + - "sce00480" - metanetx.reaction: "MNXR100451" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0458" - - name: "galactokinase" - - metabolites: !!omap - - s_0394: 1 - - s_0410: 1 - - s_0434: -1 - - s_0558: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR020W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0458" + - name: "galactokinase" + - metabolites: !!omap + - s_0394: 1 + - s_0410: 1 + - s_0434: -1 + - s_0558: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR020W" + - eccodes: "2.7.1.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.6" - bigg.reaction: "GALKr" - kegg.pathway: - - "sce00052" - - "sce00520" + - "sce00052" + - "sce00520" - kegg.reaction: "R01092" - metanetx.reaction: "MNXR99985" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0459" - - name: "galactose-1-phosphate uridylyltransferase" - - metabolites: !!omap - - s_0410: -1 - - s_0633: 1 - - s_0794: -1 - - s_1541: 1 - - s_1559: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR018C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0459" + - name: "galactose-1-phosphate uridylyltransferase" + - metabolites: !!omap + - s_0410: -1 + - s_0633: 1 + - s_0794: -1 + - s_1541: 1 + - s_1559: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR018C" + - eccodes: "2.7.7.12" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.12" - bigg.reaction: "GALT" - kegg.pathway: - - "sce00052" - - "sce00520" + - "sce00052" + - "sce00520" - kegg.reaction: "R00502" - metanetx.reaction: "MNXR100014" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0460" - - name: "gamma-glutamylcysteine synthetase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0981: -1 - - s_0988: 1 - - s_0991: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL101C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0460" + - name: "gamma-glutamylcysteine synthetase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0981: -1 + - s_0988: 1 + - s_0991: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL101C" + - eccodes: "6.3.2.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.2.2" - bigg.reaction: "GLUCYS" - kegg.pathway: - - "sce00270" - - "sce00480" + - "sce00270" + - "sce00480" - kegg.reaction: "R00894" - metanetx.reaction: "MNXR100074" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0461" - - name: "geranylgeranyltranstransferase" - - metabolites: !!omap - - s_0189: -1 - - s_0633: 1 - - s_0943: -1 - - s_1311: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0461" + - name: "geranylgeranyltranstransferase" + - metabolites: !!omap + - s_0189: -1 + - s_0633: 1 + - s_0943: -1 + - s_1311: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "15792955" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "GGTT" - kegg.reaction: "R07475" - metanetx.reaction: "MNXR100137" - pmid: "15792955" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_0462" - - name: "geranyltranstransferase" - - metabolites: !!omap - - s_0190: 1 - - s_0633: 1 - - s_0745: -1 - - s_0943: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL167W" - - annotation: !!omap - - ec-code: - - "2.5.1.1" - - "2.5.1.10" + - confidence_score: 0 + - !!omap + - id: "r_0462" + - name: "geranyltranstransferase" + - metabolites: !!omap + - s_0190: 1 + - s_0633: 1 + - s_0745: -1 + - s_0943: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL167W" + - eccodes: "2.5.1.1; 2.5.1.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.1; 2.5.1.10" - bigg.reaction: "GRTT" - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R02003" - metanetx.reaction: "MNXR99634" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0463" - - name: "glucan 1,4-alpha-glucosidase" - - metabolites: !!omap - - s_0563: 1 - - s_0773: -1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR184W" - - annotation: !!omap - - ec-code: - - "2.4.1.25" - - "3.2.1.33" + - confidence_score: 2 + - !!omap + - id: "r_0463" + - name: "glucan 1,4-alpha-glucosidase" + - metabolites: !!omap + - s_0563: 1 + - s_0773: -1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR184W" + - eccodes: "2.4.1.25; 3.2.1.33" + - references: "11094287" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.4.1.25; 3.2.1.33" - bigg.reaction: "GLCGSD" - kegg.pathway: - - "sce00500" - - "sce01110" + - "sce00500" + - "sce01110" - metanetx.reaction: "MNXR100180" - pmid: "11094287" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0464" - - name: "glucan 1,4-alpha-glucosidase, vacuole" - - metabolites: !!omap - - s_0566: 1 - - s_0774: -1 - - s_0810: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL099W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0464" + - name: "glucan 1,4-alpha-glucosidase, vacuole" + - metabolites: !!omap + - s_0566: 1 + - s_0774: -1 + - s_0810: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL099W" + - eccodes: "3.2.1.3" + - references: "11486014" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.3" - bigg.reaction: "GLCGSDv" - kegg.pathway: "sce00500" - metanetx.reaction: "MNXR100180" - pmid: "11486014" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0465" - - name: "glucosamine-6-phosphate deaminase" - - metabolites: !!omap - - s_0412: -1 - - s_0419: 1 - - s_0557: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0465" + - name: "glucosamine-6-phosphate deaminase" + - metabolites: !!omap + - s_0412: -1 + - s_0419: 1 + - s_0557: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "369615" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "G6PDA" - metanetx.reaction: "MNXR125024" - pmid: "369615" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_0466" - - name: "glucose 6-phosphate dehydrogenase" - - metabolites: !!omap - - s_0335: 1 - - s_0568: -1 - - s_0794: 1 - - s_1207: -1 - - s_1212: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL241C" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_0466" + - name: "glucose 6-phosphate dehydrogenase" + - metabolites: !!omap + - s_0335: 1 + - s_0568: -1 + - s_0794: 1 + - s_1207: -1 + - s_1212: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL241C" + - eccodes: "1.1.1.49" + - references: "2269430" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.49" - bigg.reaction: "G6PDH2r" - kegg.pathway: - - "sce00030" - - "sce00480" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00030" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00835" - metanetx.reaction: "MNXR99907" - pmid: "2269430" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0467" - - name: "glucose-6-phosphate isomerase" - - metabolites: !!omap - - s_0557: 1 - - s_0568: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR196C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0467" + - name: "glucose-6-phosphate isomerase" + - metabolites: !!omap + - s_0557: 1 + - s_0568: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR196C" + - eccodes: "5.3.1.9" + - references: "8435847" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.1.9" - bigg.reaction: "PGI" - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00500" - - "sce00520" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00030" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00771" - metanetx.reaction: "MNXR106678" - pmid: "8435847" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0468" - - name: "glutamate 5-kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0986: 1 - - s_0991: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR300C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0468" + - name: "glutamate 5-kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0986: 1 + - s_0991: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR300C" + - eccodes: "2.7.2.11" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.2.11" - bigg.reaction: "GLU5K" - kegg.pathway: - - "sce00330" - - "sce00332" - - "sce01130" - - "sce01230" + - "sce00330" + - "sce00332" + - "sce01130" + - "sce01230" - kegg.reaction: "R00239" - metanetx.reaction: "MNXR100277" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0469" - - name: "glutamate decarboxylase" - - metabolites: !!omap - - s_0456: 1 - - s_0734: 1 - - s_0794: -1 - - s_0991: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR250W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0469" + - name: "glutamate decarboxylase" + - metabolites: !!omap + - s_0456: 1 + - s_0734: 1 + - s_0794: -1 + - s_0991: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR250W" + - eccodes: "4.1.1.15" + - references: "11031268" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.15" - bigg.reaction: "GLUDC" - kegg.pathway: - - "sce00250" - - "sce00410" - - "sce00430" - - "sce00650" - - "sce01110" + - "sce00250" + - "sce00410" + - "sce00430" + - "sce00650" + - "sce01110" - kegg.reaction: "R00261" - metanetx.reaction: "MNXR95942" - pmid: "11031268" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0470" - - name: "glutamate dehydrogenase (NAD)" - - metabolites: !!omap - - s_0180: 1 - - s_0419: 1 - - s_0794: 1 - - s_0803: -1 - - s_0991: -1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL215C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0470" + - name: "glutamate dehydrogenase (NAD)" + - metabolites: !!omap + - s_0180: 1 + - s_0419: 1 + - s_0794: 1 + - s_0803: -1 + - s_0991: -1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL215C" + - eccodes: "1.4.1.2" + - references: "14554197" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.4.1.2" - bigg.reaction: "GLUDxi" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00430" - - "sce00910" + - "sce00220" + - "sce00250" + - "sce00430" + - "sce00910" - kegg.reaction: "R00243" - metanetx.reaction: "MNXR100085" - pmid: "14554197" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0471" - - name: "glutamate dehydrogenase (NADP)" - - metabolites: !!omap - - s_0180: -1 - - s_0419: -1 - - s_0794: -1 - - s_0803: 1 - - s_0991: 1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL062W or YOR375C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0471" + - name: "glutamate dehydrogenase (NADP)" + - metabolites: !!omap + - s_0180: -1 + - s_0419: -1 + - s_0794: -1 + - s_0803: 1 + - s_0991: 1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL062W or YOR375C" + - eccodes: "1.4.1.4" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.4.1.4" - bigg.reaction: "GLUDy" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00910" + - "sce00220" + - "sce00250" + - "sce00910" - kegg.reaction: "R00248" - metanetx.reaction: "MNXR100086" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0472" - - name: "glutamate synthase (NADH2)" - - metabolites: !!omap - - s_0180: -1 - - s_0794: -1 - - s_0991: 2 - - s_0999: -1 - - s_1198: 1 - - s_1203: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL171C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0472" + - name: "glutamate synthase (NADH2)" + - metabolites: !!omap + - s_0180: -1 + - s_0794: -1 + - s_0991: 2 + - s_0999: -1 + - s_1198: 1 + - s_1203: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL171C" + - eccodes: "1.4.1.14" + - references: "9657994" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.4.1.14" - bigg.reaction: "GLUSx" - kegg.pathway: - - "sce00250" - - "sce00910" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00250" + - "sce00910" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R00093" - metanetx.reaction: "MNXR100289" - pmid: "9657994" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0473" - - name: "glutamate-5-semialdehyde dehydrogenase" - - metabolites: !!omap - - s_0794: -1 - - s_0986: -1 - - s_0997: 1 - - s_1207: 1 - - s_1212: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR323C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0473" + - name: "glutamate-5-semialdehyde dehydrogenase" + - metabolites: !!omap + - s_0794: -1 + - s_0986: -1 + - s_0997: 1 + - s_1207: 1 + - s_1212: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR323C" + - eccodes: "1.2.1.41" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.41" - bigg.reaction: "G5SD" - kegg.pathway: - - "sce00330" - - "sce00332" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00330" + - "sce00332" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03313" - metanetx.reaction: "MNXR99896" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0475" - - name: "glutaminase" - - metabolites: !!omap - - s_0419: 1 - - s_0803: -1 - - s_0991: 1 - - s_0999: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFL060C or YNL334C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0475" + - name: "glutaminase" + - metabolites: !!omap + - s_0419: 1 + - s_0803: -1 + - s_0991: 1 + - s_0999: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFL060C or YNL334C" + - eccodes: "" + - references: "3309138" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "GLUN" - kegg.reaction: "R00256" - metanetx.reaction: "MNXR100030" - pmid: "3309138" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0476" - - name: "glutamine synthetase" - - metabolites: !!omap - - s_0394: 1 - - s_0419: -1 - - s_0434: -1 - - s_0794: 1 - - s_0991: -1 - - s_0999: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR035W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0476" + - name: "glutamine synthetase" + - metabolites: !!omap + - s_0394: 1 + - s_0419: -1 + - s_0434: -1 + - s_0794: 1 + - s_0991: -1 + - s_0999: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR035W" + - eccodes: "6.3.1.2" + - references: "9611819" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.1.2" - bigg.reaction: "GLNS" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00630" - - "sce00910" - - "sce01230" + - "sce00220" + - "sce00250" + - "sce00630" + - "sce00910" + - "sce01230" - kegg.reaction: "R00253" - metanetx.reaction: "MNXR100024" - pmid: "9611819" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0477" - - name: "glutamine-fructose-6-phosphate transaminase" - - metabolites: !!omap - - s_0412: 1 - - s_0557: -1 - - s_0991: 1 - - s_0999: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR084W or YKL104C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0477" + - name: "glutamine-fructose-6-phosphate transaminase" + - metabolites: !!omap + - s_0412: 1 + - s_0557: -1 + - s_0991: 1 + - s_0999: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR084W or YKL104C" + - eccodes: "2.6.1.16" + - references: "2656689" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.16" - bigg.reaction: "GF6PTA" - kegg.pathway: - - "sce00250" - - "sce00520" - - "sce01130" + - "sce00250" + - "sce00520" + - "sce01130" - kegg.reaction: "R00768" - metanetx.reaction: "MNXR106675" - pmid: "2656689" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0478" - - name: "glutaminyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_0747: 1 - - s_0999: -1 - - s_1590: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR168W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0478" + - name: "glutaminyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_0747: 1 + - s_0999: -1 + - s_1590: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR168W" + - eccodes: "6.1.1.18" + - references: "2991203" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.18" - bigg.reaction: "GLNTRS" - kegg.pathway: "sce00970" @@ -38286,89 +39630,105 @@ - metanetx.reaction: "MNXR100257" - pmid: "2991203" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0479" - - name: "glutamyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_0748: 1 - - s_0991: -1 - - s_1591: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL245W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0479" + - name: "glutamyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_0748: 1 + - s_0991: -1 + - s_1591: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL245W" + - eccodes: "6.1.1.17" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.17" - bigg.reaction: "GLUTRS" - kegg.pathway: - - "sce00860" - - "sce00970" - - "sce01110" + - "sce00860" + - "sce00970" + - "sce01110" - kegg.reaction: "R05578" - metanetx.reaction: "MNXR100295" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0480" - - name: "glutamyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0437: -1 - - s_0636: 1 - - s_0749: 1 - - s_0993: -1 - - s_1592: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL033W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0480" + - name: "glutamyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0437: -1 + - s_0636: 1 + - s_0749: 1 + - s_0993: -1 + - s_1592: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL033W" + - eccodes: "6.1.1.17" + - references: "7607232" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.17" - bigg.reaction: "GLUTRSm" - kegg.pathway: - - "sce00860" - - "sce00970" - - "sce01110" + - "sce00860" + - "sce00970" + - "sce01110" - kegg.reaction: "R05578" - metanetx.reaction: "MNXR100295" - pmid: "7607232" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0481" - - name: "glutathione oxidoreductase" - - metabolites: !!omap - - s_0750: 2 - - s_0754: -1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YCL035C and YPL091W) or (YDR098C and YPL091W) or (YDR513W and YPL091W) or (YER174C and YPL091W)" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0481" + - name: "glutathione oxidoreductase" + - metabolites: !!omap + - s_0750: 2 + - s_0754: -1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YCL035C and YPL091W) or (YDR098C and YPL091W) or (YDR513W and YPL091W) or (YER174C and YPL091W)" + - eccodes: "1.8.1.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.8.1.7" - bigg.reaction: "GTHOr" - kegg.pathway: "sce00480" - kegg.reaction: "R00115" - metanetx.reaction: "MNXR100098" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0482" - - name: "glutathione oxidoreductase" - - metabolites: !!omap - - s_0752: 2 - - s_0756: -1 - - s_0799: -1 - - s_1210: 1 - - s_1214: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL059W and YPL091W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0482" + - name: "glutathione oxidoreductase" + - metabolites: !!omap + - s_0752: 2 + - s_0756: -1 + - s_0799: -1 + - s_1210: 1 + - s_1214: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL059W and YPL091W" + - eccodes: "1.8.1.7" + - references: "14672937" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.8.1.7" - bigg.reaction: "GTHOm" - kegg.pathway: "sce00480" @@ -38376,110 +39736,129 @@ - metanetx.reaction: "MNXR100098" - pmid: "14672937" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0483" - - name: "glutathione peridoxase" - - metabolites: !!omap - - s_0750: -2 - - s_0754: 1 - - s_0803: 2 - - s_0837: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL229C or YBR244W or YCL035C or YDR513W or YIR037W or YKL026C" - - annotation: !!omap - - ec-code: - - "1.11.1.15" - - "1.11.1.9" + - confidence_score: 3 + - !!omap + - id: "r_0483" + - name: "glutathione peridoxase" + - metabolites: !!omap + - s_0750: -2 + - s_0754: 1 + - s_0803: 2 + - s_0837: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL229C or YBR244W or YCL035C or YDR513W or YIR037W or YKL026C" + - eccodes: "1.11.1.15; 1.11.1.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.11.1.15; 1.11.1.9" - bigg.reaction: "GTHPi" - kegg.pathway: "sce00480" - kegg.reaction: "R00274" - metanetx.reaction: "MNXR100446" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0484" - - name: "glutathione peroxidase, mitochondria" - - metabolites: !!omap - - s_0752: -2 - - s_0756: 1 - - s_0807: 2 - - s_0838: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL059W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0484" + - name: "glutathione peroxidase, mitochondria" + - metabolites: !!omap + - s_0752: -2 + - s_0756: 1 + - s_0807: 2 + - s_0838: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL059W" + - eccodes: "" + - references: "12138088" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "GTHPm" - kegg.reaction: "R00274" - metanetx.reaction: "MNXR100446" - pmid: "12138088" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0485" - - name: "glutathione synthetase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0750: 1 - - s_0794: 1 - - s_0988: -1 - - s_1003: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL049W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0485" + - name: "glutathione synthetase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0750: 1 + - s_0794: 1 + - s_0988: -1 + - s_1003: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL049W" + - eccodes: "6.3.2.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.2.3" - bigg.reaction: "GTHS" - kegg.pathway: - - "sce00270" - - "sce00480" + - "sce00270" + - "sce00480" - kegg.reaction: "R00497" - metanetx.reaction: "MNXR100450" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0486" - - name: "glyceraldehyde-3-phosphate dehydrogenase" - - metabolites: !!omap - - s_0075: 1 - - s_0764: -1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_1322: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR192C or YJL052W or YJR009C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0486" + - name: "glyceraldehyde-3-phosphate dehydrogenase" + - metabolites: !!omap + - s_0075: 1 + - s_0764: -1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_1322: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR192C or YJL052W or YJR009C" + - eccodes: "1.2.1.12" + - references: "3905788" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.12" - bigg.reaction: "GAPD" - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00010" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01061" - metanetx.reaction: "MNXR100040" - pmid: "3905788" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0487" - - name: "glycerol dehydrogenase (NADP-dependent)" - - metabolites: !!omap - - s_0765: -1 - - s_0771: 1 - - s_0794: 1 - - s_1207: -1 - - s_1212: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR120W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0487" + - name: "glycerol dehydrogenase (NADP-dependent)" + - metabolites: !!omap + - s_0765: -1 + - s_0771: 1 + - s_0794: 1 + - s_1207: -1 + - s_1212: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR120W" + - eccodes: "1.1.1.156" + - references: "11113971" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.156" - bigg.reaction: "GLYCDy" - kegg.pathway: "sce00561" @@ -38487,128 +39866,152 @@ - metanetx.reaction: "MNXR100327" - pmid: "11113971" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0488" - - name: "glycerol kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0765: -1 - - s_0767: 1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHL032C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0488" + - name: "glycerol kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0765: -1 + - s_0767: 1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHL032C" + - eccodes: "2.7.1.30" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.30" - bigg.reaction: "GLYK" - kegg.pathway: "sce00561" - kegg.reaction: "R00847" - metanetx.reaction: "MNXR100348" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0489" - - name: "glycerol-3-phosphatase" - - metabolites: !!omap - - s_0765: 1 - - s_0767: -1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER062C or YIL053W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0489" + - name: "glycerol-3-phosphatase" + - metabolites: !!omap + - s_0765: 1 + - s_0767: -1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER062C or YIL053W" + - eccodes: "3.1.3.21" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.21" - bigg.reaction: "G3PT" - kegg.pathway: "sce00561" - kegg.reaction: "R00841" - metanetx.reaction: "MNXR99894" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0490" - - name: "glycerol-3-phosphate dehydrogenase (fad)" - - metabolites: !!omap - - s_0632: 1 - - s_0688: -1 - - s_0690: 1 - - s_0770: -1 - - s_0799: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL155C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0490" + - name: "glycerol-3-phosphate dehydrogenase (fad)" + - metabolites: !!omap + - s_0632: 1 + - s_0688: -1 + - s_0690: 1 + - s_0770: -1 + - s_0799: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL155C" + - eccodes: "1.1.5.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.5.3" - bigg.reaction: "G3PDm" - kegg.pathway: - - "sce00564" - - "sce01110" + - "sce00564" + - "sce01110" - kegg.reaction: "R00848" - metanetx.reaction: "MNXR99875" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0491" - - name: "glycerol-3-phosphate dehydrogenase (NAD)" - - metabolites: !!omap - - s_0629: -1 - - s_0767: 1 - - s_0794: -1 - - s_1198: 1 - - s_1203: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL022W or YOL059W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0491" + - name: "glycerol-3-phosphate dehydrogenase (NAD)" + - metabolites: !!omap + - s_0629: -1 + - s_0767: 1 + - s_0794: -1 + - s_1198: 1 + - s_1203: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL022W or YOL059W" + - eccodes: "1.1.1.8" + - references: "8196651" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.8" - bigg.reaction: "G3PD1ir" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04011" + - "sce00564" + - "sce01110" + - "sce04011" - kegg.reaction: "R00842" - metanetx.reaction: "MNXR99876" - pmid: "8196651" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0492" - - name: "glycerol-3-phosphate dehydrogenase (NAD)" - - metabolites: !!omap - - s_0632: -1 - - s_0770: 1 - - s_0799: -1 - - s_1200: 1 - - s_1205: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL059W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0492" + - name: "glycerol-3-phosphate dehydrogenase (NAD)" + - metabolites: !!omap + - s_0632: -1 + - s_0770: 1 + - s_0799: -1 + - s_1200: 1 + - s_1205: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL059W" + - eccodes: "1.1.1.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.8" - bigg.reaction: "G3PD1irm" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04011" + - "sce00564" + - "sce01110" + - "sce04011" - kegg.reaction: "R00842" - metanetx.reaction: "MNXR99876" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0497" - - name: "glycerophosphodiester phosphodiesterase (glycerophosphocholine)" - - metabolites: !!omap - - s_0512: 1 - - s_0767: 1 - - s_0794: 1 - - s_0803: -1 - - s_1433: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0497" + - name: "glycerophosphodiester phosphodiesterase (glycerophosphocholine)" + - metabolites: !!omap + - s_0512: 1 + - s_0767: 1 + - s_0794: 1 + - s_0803: -1 + - s_1433: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL110C" + - eccodes: "3.1.4.46" + - references: "16141200" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.46" - bigg.reaction: "GPDDA1" - kegg.pathway: "sce00564" @@ -38616,399 +40019,431 @@ - metanetx.reaction: "MNXR100410" - pmid: "16141200" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0499" - - name: "glycinamide ribotide transformylase" - - metabolites: !!omap - - s_0120: -1 - - s_0301: 1 - - s_0325: -1 - - s_0794: 1 - - s_1487: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR408C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0499" + - name: "glycinamide ribotide transformylase" + - metabolites: !!omap + - s_0120: -1 + - s_0301: 1 + - s_0325: -1 + - s_0794: 1 + - s_1487: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR408C" + - eccodes: "2.1.2.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.2.2" - bigg.reaction: "GARFT" - kegg.pathway: - - "sce00230" - - "sce00670" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00670" + - "sce01110" + - "sce01130" - kegg.reaction: "R04325" - metanetx.reaction: "MNXR99623" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0500" - - name: "glycine C-acetyltransferase" - - metabolites: !!omap - - s_0373: 1 - - s_0529: -1 - - s_0952: -1 - - s_1003: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0500" + - name: "glycine C-acetyltransferase" + - metabolites: !!omap + - s_0373: 1 + - s_0529: -1 + - s_0952: -1 + - s_1003: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "3086094" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "GLYAT" - kegg.reaction: "R00371" - metanetx.reaction: "MNXR100313" - pmid: "3086094" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_0501" - - name: "glycine cleavage system" - - metabolites: !!omap - - s_0307: 1 - - s_0421: 1 - - s_0460: 1 - - s_1005: -1 - - s_1200: -1 - - s_1205: 1 - - s_1488: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - annotation: !!omap - - ec-code: - - "1.4.4.2" - - "1.8.1.4" - - "2.1.2.10" + - confidence_score: 0 + - !!omap + - id: "r_0501" + - name: "glycine cleavage system" + - metabolites: !!omap + - s_0307: 1 + - s_0421: 1 + - s_0460: 1 + - s_1005: -1 + - s_1200: -1 + - s_1205: 1 + - s_1488: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" + - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "GLYCLm" - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0502" - - name: "glycine hydroxymethyltransferase" - - metabolites: !!omap - - s_0306: 1 - - s_0803: 1 - - s_1003: 1 - - s_1039: -1 - - s_1487: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR058C" - - annotation: !!omap + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_0502" + - name: "glycine hydroxymethyltransferase" + - metabolites: !!omap + - s_0306: 1 + - s_0803: 1 + - s_1003: 1 + - s_1039: -1 + - s_1487: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR058C" + - eccodes: "2.1.2.1" + - references: "8852837" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.2.1" - bigg.reaction: "GHMT2r" - kegg.pathway: - - "sce00260" - - "sce00630" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00260" + - "sce00630" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00945" - metanetx.reaction: "MNXR100142" - pmid: "8852837" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0503" - - name: "glycine hydroxymethyltransferase" - - metabolites: !!omap - - s_0307: 1 - - s_0807: 1 - - s_1005: 1 - - s_1042: -1 - - s_1488: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR263W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0503" + - name: "glycine hydroxymethyltransferase" + - metabolites: !!omap + - s_0307: 1 + - s_0807: 1 + - s_1005: 1 + - s_1042: -1 + - s_1488: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR263W" + - eccodes: "2.1.2.1" + - references: "22672422; 8852837" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.2.1" - bigg.reaction: "GHMT2rm" - kegg.pathway: - - "sce00260" - - "sce00630" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00260" + - "sce00630" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00945" - metanetx.reaction: "MNXR100142" - pmid: - - "22672422" - - "8852837" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0504" - - name: "glycine-cleavage complex (lipoamide)" - - metabolites: !!omap - - s_0460: 1 - - s_0799: -1 - - s_1005: -1 - - s_1097: -1 - - s_1409: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - annotation: !!omap - - ec-code: - - "1.4.4.2" - - "1.8.1.4" - - "2.1.2.10" + - "22672422" + - "8852837" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0504" + - name: "glycine-cleavage complex (lipoamide)" + - metabolites: !!omap + - s_0460: 1 + - s_0799: -1 + - s_1005: -1 + - s_1097: -1 + - s_1409: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" + - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "GCC2am" - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - metanetx.reaction: "MNXR100065" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0505" - - name: "glycine-cleavage complex (lipoamide)" - - metabolites: !!omap - - s_0627: -1 - - s_0799: 1 - - s_1097: 1 - - s_1200: -1 - - s_1205: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YAL044C and YDR019C and YFL018C and YMR189W) or (YDR148C and YFL018C and YIL125W)" - - annotation: !!omap - - ec-code: - - "1.2.4.2" - - "1.4.4.2" - - "1.8.1.4" - - "2.1.2.10" - - "2.3.1.61" + - confidence_score: 2 + - !!omap + - id: "r_0505" + - name: "glycine-cleavage complex (lipoamide)" + - metabolites: !!omap + - s_0627: -1 + - s_0799: 1 + - s_1097: 1 + - s_1200: -1 + - s_1205: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YAL044C and YDR019C and YFL018C and YMR189W) or (YDR148C and YFL018C and YIL125W)" + - eccodes: "1.2.4.2; 1.4.4.2; 1.8.1.4; 2.1.2.10; 2.3.1.61" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.2.4.2; 1.4.4.2; 1.8.1.4; 2.1.2.10; 2.3.1.61" - bigg.reaction: "GCC2cm" - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00310" - - "sce00380" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R01698" - metanetx.reaction: "MNXR100066" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0506" - - name: "glycine-cleavage complex (lipoylprotein)" - - metabolites: !!omap - - s_0460: 1 - - s_1005: -1 - - s_1098: -1 - - s_1410: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - annotation: !!omap - - ec-code: - - "1.4.4.2" - - "1.8.1.4" - - "2.1.2.10" + - confidence_score: 2 + - !!omap + - id: "r_0506" + - name: "glycine-cleavage complex (lipoylprotein)" + - metabolites: !!omap + - s_0460: 1 + - s_1005: -1 + - s_1098: -1 + - s_1410: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" + - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "GCCam" - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R03425" - metanetx.reaction: "MNXR100067" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0507" - - name: "glycine-cleavage complex (lipoylprotein)" - - metabolites: !!omap - - s_0307: 1 - - s_0421: 1 - - s_0628: 1 - - s_0799: -1 - - s_1410: -1 - - s_1488: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - annotation: !!omap - - ec-code: - - "1.4.4.2" - - "1.8.1.4" - - "2.1.2.10" + - confidence_score: 2 + - !!omap + - id: "r_0507" + - name: "glycine-cleavage complex (lipoylprotein)" + - metabolites: !!omap + - s_0307: 1 + - s_0421: 1 + - s_0628: 1 + - s_0799: -1 + - s_1410: -1 + - s_1488: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" + - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "GCCbim" - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R04125" - metanetx.reaction: "MNXR100068" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0508" - - name: "glycine-cleavage complex (lipoylprotein)" - - metabolites: !!omap - - s_0628: -1 - - s_0799: 1 - - s_1098: 1 - - s_1200: -1 - - s_1205: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - annotation: !!omap - - ec-code: - - "1.4.4.2" - - "1.8.1.4" - - "2.1.2.10" + - confidence_score: 2 + - !!omap + - id: "r_0508" + - name: "glycine-cleavage complex (lipoylprotein)" + - metabolites: !!omap + - s_0628: -1 + - s_0799: 1 + - s_1098: 1 + - s_1200: -1 + - s_1205: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" + - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "GCCcm" - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R03815" - metanetx.reaction: "MNXR100069" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0509" - - name: "glycine-cleavage system (lipoamide)" - - metabolites: !!omap - - s_0307: 1 - - s_0421: 1 - - s_0627: 1 - - s_1409: -1 - - s_1488: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - annotation: !!omap - - ec-code: - - "1.4.4.2" - - "1.8.1.4" - - "2.1.2.10" + - confidence_score: 2 + - !!omap + - id: "r_0509" + - name: "glycine-cleavage system (lipoamide)" + - metabolites: !!omap + - s_0307: 1 + - s_0421: 1 + - s_0627: 1 + - s_1409: -1 + - s_1488: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" + - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "GCC2bim" - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0510" - - name: "glycogen (starch) synthase" - - metabolites: !!omap - - s_0773: 1 - - s_0794: 1 - - s_1538: 1 - - s_1543: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YFR015C and YJL137C) or (YFR015C and YKR058W) or (YJL137C and YLR258W) or (YKR058W and YLR258W)" - - annotation: !!omap - - ec-code: - - "2.4.1.11" - - "2.4.1.186" + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_0510" + - name: "glycogen (starch) synthase" + - metabolites: !!omap + - s_0773: 1 + - s_0794: 1 + - s_1538: 1 + - s_1543: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YFR015C and YJL137C) or (YFR015C and YKR058W) or (YJL137C and YLR258W) or (YKR058W and YLR258W)" + - eccodes: "2.4.1.11; 2.4.1.186" + - references: "8900126" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.4.1.11; 2.4.1.186" - kegg.pathway: "sce00500" - metanetx.reaction: "MNXR143136" - pmid: "8900126" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0511" - - name: "glycogen phosphorylase" - - metabolites: !!omap - - s_0567: 1 - - s_0773: -1 - - s_1322: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR160W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0511" + - name: "glycogen phosphorylase" + - metabolites: !!omap + - s_0567: 1 + - s_0773: -1 + - s_1322: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR160W" + - eccodes: "2.4.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.1" - bigg.reaction: "GLCP" - kegg.pathway: - - "sce00500" - - "sce01110" + - "sce00500" + - "sce01110" - metanetx.reaction: "MNXR100214" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0512" - - name: "glycyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_0757: 1 - - s_1003: -1 - - s_1593: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR121C or YPR081C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0512" + - name: "glycyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_0757: 1 + - s_1003: -1 + - s_1593: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR121C or YPR081C" + - eccodes: "6.1.1.14" + - references: "10874035" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.14" - bigg.reaction: "GLYTRS" - kegg.pathway: "sce00970" @@ -39016,191 +40451,231 @@ - metanetx.reaction: "MNXR100365" - pmid: "10874035" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0514" - - name: "GMP synthase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_0782: 1 - - s_0794: 2 - - s_0803: -1 - - s_0991: 1 - - s_0999: -1 - - s_1565: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR217W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0514" + - name: "GMP synthase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_0782: 1 + - s_0794: 2 + - s_0803: -1 + - s_0991: 1 + - s_0999: -1 + - s_1565: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR217W" + - eccodes: "6.3.5.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.5.2" - bigg.reaction: "GMPS2" - kegg.pathway: "sce00230" - kegg.reaction: "R01231" - metanetx.reaction: "MNXR100384" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0518" - - name: "GPI-anchor assembly, step 2" - - metabolites: !!omap - - s_0329: 1 - - s_0331: -1 - - s_0363: 1 - - s_0795: 1 - - s_0804: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR281W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0518" + - name: "GPI-anchor assembly, step 2" + - metabolites: !!omap + - s_0329: 1 + - s_0331: -1 + - s_0363: 1 + - s_0795: 1 + - s_0804: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR281W" + - eccodes: "3.5.1.89" + - references: "10085243" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.89" - kegg.pathway: "sce00563" - kegg.reaction: "R05917" - metanetx.reaction: "MNXR95257" - pmid: "10085243" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0519" - - name: "GPI-anchor assembly, step 5" - - metabolites: !!omap - - s_0330: -1 - - s_0334: 1 - - s_0644: -1 - - s_0646: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCL052C and YJR013W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0519" + - name: "GPI-anchor assembly, step 5" + - metabolites: !!omap + - s_0330: -1 + - s_0334: 1 + - s_0644: -1 + - s_0646: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCL052C and YJR013W" + - eccodes: "2.4.1.-" + - references: "11102867" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.-" - kegg.pathway: "sce00563" - pmid: "11102867" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0520" - - name: "GPI-anchor assembly, step 6" - - metabolites: !!omap - - s_0334: -1 - - s_0337: 1 - - s_1352: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL165C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0520" + - name: "GPI-anchor assembly, step 6" + - metabolites: !!omap + - s_0334: -1 + - s_0337: 1 + - s_1352: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL165C" + - eccodes: "2.-.-.-" + - references: "11102867" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - kegg.pathway: "sce00563" - pmid: "11102867" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0521" - - name: "GPI-anchor assembly, step 7" - - metabolites: !!omap - - s_0337: -1 - - s_0339: 1 - - s_0644: -1 - - s_0646: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR004C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0521" + - name: "GPI-anchor assembly, step 7" + - metabolites: !!omap + - s_0337: -1 + - s_0339: 1 + - s_0644: -1 + - s_0646: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR004C" + - eccodes: "2.4.1.-" + - references: "15623507" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.-" - kegg.pathway: "sce00563" - pmid: "15623507" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0522" - - name: "GPI-anchor assembly, step 8" - - metabolites: !!omap - - s_0338: 1 - - s_0339: -1 - - s_0644: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0522" + - name: "GPI-anchor assembly, step 8" + - metabolites: !!omap + - s_0338: 1 + - s_0339: -1 + - s_0644: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL142C" + - eccodes: "2.4.1.-" + - references: "11102867" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.-" - kegg.pathway: "sce00563" - pmid: "11102867" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0523" - - name: "GPI-anchor assembly, step 9" - - metabolites: !!omap - - s_0332: 1 - - s_0338: -1 - - s_0620: 1 - - s_1352: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR302W or YLL031C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0523" + - name: "GPI-anchor assembly, step 9" + - metabolites: !!omap + - s_0332: 1 + - s_0338: -1 + - s_0620: 1 + - s_1352: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR302W or YLL031C" + - eccodes: "2.-.-.-" + - references: "10793139" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - kegg.pathway: "sce00563" - pmid: "10793139" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0524" - - name: "GTP cyclohydrolase I" - - metabolites: !!omap - - s_0346: 1 - - s_0722: 1 - - s_0785: -1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR267C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0524" + - name: "GTP cyclohydrolase I" + - metabolites: !!omap + - s_0346: 1 + - s_0722: 1 + - s_0785: -1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR267C" + - eccodes: "3.5.4.16" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.4.16" - bigg.reaction: "GTPCI" - kegg.pathway: "sce00790" - kegg.reaction: "R00424" - metanetx.reaction: "MNXR100453" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0525" - - name: "GTP cyclohydrolase II" - - metabolites: !!omap - - s_0141: 1 - - s_0633: 1 - - s_0722: 1 - - s_0785: -1 - - s_0794: 2 - - s_0803: -3 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL033C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0525" + - name: "GTP cyclohydrolase II" + - metabolites: !!omap + - s_0141: 1 + - s_0633: 1 + - s_0722: 1 + - s_0785: -1 + - s_0794: 2 + - s_0803: -3 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL033C" + - eccodes: "3.5.4.25" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.4.25" - bigg.reaction: "GTPCII2" - kegg.pathway: - - "sce00740" - - "sce00790" - - "sce01110" + - "sce00740" + - "sce00790" + - "sce01110" - kegg.reaction: "R00425" - metanetx.reaction: "MNXR100455" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0526" - - name: "guanine deaminase" - - metabolites: !!omap - - s_0357: 1 - - s_0419: 1 - - s_0787: -1 - - s_0794: -1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL238C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0526" + - name: "guanine deaminase" + - metabolites: !!omap + - s_0357: 1 + - s_0419: 1 + - s_0787: -1 + - s_0794: -1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL238C" + - eccodes: "3.5.4.3" + - references: "15565584" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.4.3" - bigg.reaction: "GUAD" - kegg.pathway: "sce00230" @@ -39208,309 +40683,351 @@ - metanetx.reaction: "MNXR100464" - pmid: "15565584" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0527" - - name: "guanine phosphoribosyltransferase" - - metabolites: !!omap - - s_0633: 1 - - s_0782: 1 - - s_0787: -1 - - s_1386: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR399W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0527" + - name: "guanine phosphoribosyltransferase" + - metabolites: !!omap + - s_0633: 1 + - s_0782: 1 + - s_0787: -1 + - s_1386: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR399W" + - eccodes: "2.4.2.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.8" - bigg.reaction: "GUAPRT" - kegg.pathway: - - "sce00230" - - "sce01110" + - "sce00230" + - "sce01110" - kegg.reaction: "R01229" - metanetx.reaction: "MNXR100409" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0528" - - name: "guanylate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0739: 1 - - s_0782: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR454C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0528" + - name: "guanylate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0739: 1 + - s_0782: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR454C" + - eccodes: "2.7.4.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.8" - bigg.reaction: "GK1" - kegg.pathway: "sce00230" - kegg.reaction: "R00332" - metanetx.reaction: "MNXR100144" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0529" - - name: "guanylate kinase (GMP:dATP)" - - metabolites: !!omap - - s_0582: 1 - - s_0586: -1 - - s_0739: 1 - - s_0782: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR454C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0529" + - name: "guanylate kinase (GMP:dATP)" + - metabolites: !!omap + - s_0582: 1 + - s_0586: -1 + - s_0739: 1 + - s_0782: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR454C" + - eccodes: "2.7.4.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.8" - bigg.reaction: "GK2" - kegg.pathway: "sce00230" - metanetx.reaction: "MNXR100145" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0530" - - name: "heme O monooxygenase" - - metabolites: !!omap - - s_0807: 1 - - s_0811: 1 - - s_0812: -1 - - s_1200: 1 - - s_1205: -1 - - s_1278: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER141W or (YDR376W and YPL252C)" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0530" + - name: "heme O monooxygenase" + - metabolites: !!omap + - s_0807: 1 + - s_0811: 1 + - s_0812: -1 + - s_1200: 1 + - s_1205: -1 + - s_1278: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER141W or (YDR376W and YPL252C)" + - eccodes: "1.18.1.6" + - references: "11788607" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.18.1.6" - bigg.reaction: "HEMEOMOm" - metanetx.reaction: "MNXR100595" - pmid: "11788607" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0531" - - name: "Heme O synthase" - - metabolites: !!omap - - s_0191: -1 - - s_0636: 1 - - s_0712: -1 - - s_0807: -1 - - s_0812: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL172C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0531" + - name: "Heme O synthase" + - metabolites: !!omap + - s_0191: -1 + - s_0636: 1 + - s_0712: -1 + - s_0807: -1 + - s_0812: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL172C" + - eccodes: "2.5.1.-" + - references: "11788607" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.-" - bigg.reaction: "HEMEOSm" - kegg.pathway: - - "sce00190" - - "sce00860" - - "sce01110" + - "sce00190" + - "sce00860" + - "sce01110" - kegg.reaction: "R07411" - metanetx.reaction: "MNXR100596" - pmid: "11788607" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0532" - - name: "hexaprenyldihydroxybenzoate methyltransferase" - - metabolites: !!omap - - s_0154: -1 - - s_0799: -1 - - s_1415: 1 - - s_1419: -1 - - s_1535: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - annotation: !!omap - - ec-code: - - "1.14.13.-" - - "2.1.1.114" - - "2.1.1.201" - - "2.1.1.64" - - "2.7.-.-" - - kegg.pathway: - - "sce00130" - - "sce01110" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0533" - - name: "hexokinase (D-fructose:ATP)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0553: -1 - - s_0557: 1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR446W or YFR053C or YGL253W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0532" + - name: "hexaprenyldihydroxybenzoate methyltransferase" + - metabolites: !!omap + - s_0154: -1 + - s_0799: -1 + - s_1415: 1 + - s_1419: -1 + - s_1535: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" + - eccodes: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" + - kegg.pathway: + - "sce00130" + - "sce01110" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_0533" + - name: "hexokinase (D-fructose:ATP)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0553: -1 + - s_0557: 1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR446W or YFR053C or YGL253W" + - eccodes: "2.7.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.1" - bigg.reaction: "HEX7" - kegg.pathway: - - "sce00010" - - "sce00051" - - "sce00052" - - "sce00500" - - "sce00520" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00051" + - "sce00052" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00760" - metanetx.reaction: "MNXR106668" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0534" - - name: "hexokinase (D-glucose:ATP)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0563: -1 - - s_0568: 1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR446W or YCL040W or YFR053C or YGL253W or YDR516C" - - annotation: !!omap - - ec-code: - - "2.7.1.1" - - "2.7.1.2" + - confidence_score: 2 + - !!omap + - id: "r_0534" + - name: "hexokinase (D-glucose:ATP)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0563: -1 + - s_0568: 1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR446W or YCL040W or YFR053C or YGL253W or YDR516C" + - eccodes: "2.7.1.1; 2.7.1.2" + - references: "6394965" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.1; 2.7.1.2" - bigg.reaction: "HEX1" - kegg.pathway: - - "sce00010" - - "sce00051" - - "sce00052" - - "sce00500" - - "sce00520" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00051" + - "sce00052" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00299" - metanetx.reaction: "MNXR100612" - pmid: "6394965" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0535" - - name: "hexokinase (D-mannose:ATP)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0571: -1 - - s_0574: 1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR446W or YFR053C or YGL253W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0535" + - name: "hexokinase (D-mannose:ATP)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0571: -1 + - s_0574: 1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR446W or YFR053C or YGL253W" + - eccodes: "2.7.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.1" - bigg.reaction: "HEX4" - kegg.pathway: - - "sce00010" - - "sce00051" - - "sce00052" - - "sce00500" - - "sce00520" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00051" + - "sce00052" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R01326" - metanetx.reaction: "MNXR95795" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0536" - - name: "histidinol dehydrogenase" - - metabolites: !!omap - - s_0794: 3 - - s_0803: -1 - - s_1006: 1 - - s_1010: -1 - - s_1198: -2 - - s_1203: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL030C" - - annotation: !!omap - - ec-code: - - "1.1.1.23" - - "3.5.4.19" - - "3.6.1.31" + - confidence_score: 2 + - !!omap + - id: "r_0536" + - name: "histidinol dehydrogenase" + - metabolites: !!omap + - s_0794: 3 + - s_0803: -1 + - s_1006: 1 + - s_1010: -1 + - s_1198: -2 + - s_1203: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL030C" + - eccodes: "1.1.1.23; 3.5.4.19; 3.6.1.31" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.23; 3.5.4.19; 3.6.1.31" - bigg.reaction: "HISTD" - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R01158" - metanetx.reaction: "MNXR100587" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0537" - - name: "histidinol-phosphatase" - - metabolites: !!omap - - s_0803: -1 - - s_1010: 1 - - s_1011: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR025C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0537" + - name: "histidinol-phosphatase" + - metabolites: !!omap + - s_0803: -1 + - s_1010: 1 + - s_1011: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR025C" + - eccodes: "3.1.3.15" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.15" - bigg.reaction: "HISTP" - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R03013" - metanetx.reaction: "MNXR100642" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0538" - - name: "histidinol-phosphate transaminase" - - metabolites: !!omap - - s_0180: 1 - - s_0207: -1 - - s_0991: -1 - - s_1011: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL116W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0538" + - name: "histidinol-phosphate transaminase" + - metabolites: !!omap + - s_0180: 1 + - s_0207: -1 + - s_0991: -1 + - s_1011: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL116W" + - eccodes: "2.6.1.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.9" - bigg.reaction: "HSTPT" - kegg.pathway: - - "sce00340" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00340" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03243" - metanetx.reaction: "MNXR95852" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0539" - - name: "histidyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_0832: 1 - - s_1006: -1 - - s_1594: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR033C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0539" + - name: "histidyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_0832: 1 + - s_1006: -1 + - s_1594: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR033C" + - eccodes: "6.1.1.21" + - references: "1459448" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.21" - bigg.reaction: "HISTRS" - kegg.pathway: "sce00970" @@ -39518,21 +41035,25 @@ - metanetx.reaction: "MNXR100643" - pmid: "1459448" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0540" - - name: "histidyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0437: -1 - - s_0636: 1 - - s_0833: 1 - - s_1008: -1 - - s_1595: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR033C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0540" + - name: "histidyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0437: -1 + - s_0636: 1 + - s_0833: 1 + - s_1008: -1 + - s_1595: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR033C" + - eccodes: "6.1.1.21" + - references: "1459448" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.21" - bigg.reaction: "HISTRSm" - kegg.pathway: "sce00970" @@ -39540,644 +41061,744 @@ - metanetx.reaction: "MNXR100643" - pmid: "1459448" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0541" - - name: "hnRNP arginine N-methyltransferase" - - metabolites: !!omap - - s_0794: 1 - - s_1006: -1 - - s_1183: 1 - - s_1413: 1 - - s_1416: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR034C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0541" + - name: "hnRNP arginine N-methyltransferase" + - metabolites: !!omap + - s_0794: 1 + - s_1006: -1 + - s_1183: 1 + - s_1413: 1 + - s_1416: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR034C" + - eccodes: "2.1.1.-" + - references: "8647869" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.-" - bigg.reaction: "ARMT" - kegg.reaction: "R01159" - metanetx.reaction: "MNXR141861" - pmid: "8647869" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0542" - - name: "homoacontinate hydratase" - - metabolites: !!omap - - s_0454: -1 - - s_0807: -1 - - s_0836: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL200C or YDR234W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0542" + - name: "homoacontinate hydratase" + - metabolites: !!omap + - s_0454: -1 + - s_0807: -1 + - s_0836: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL200C or YDR234W" + - eccodes: "4.2.1.36" + - references: "2507177" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.36" - bigg.reaction: "HACNHm" - kegg.pathway: - - "sce00300" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00300" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R04371" - metanetx.reaction: "MNXR100552" - pmid: "2507177" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0543" - - name: "homocitrate synthase" - - metabolites: !!omap - - s_0183: -1 - - s_0377: -1 - - s_0533: 1 - - s_0800: 1 - - s_0808: -1 - - s_0835: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL131W or YDL182W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0543" + - name: "homocitrate synthase" + - metabolites: !!omap + - s_0183: -1 + - s_0377: -1 + - s_0533: 1 + - s_0800: 1 + - s_0808: -1 + - s_0835: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL131W or YDL182W" + - eccodes: "2.3.3.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.3.14" - kegg.pathway: - - "sce00300" - - "sce00620" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00300" + - "sce00620" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00271" - metanetx.reaction: "MNXR141692" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0544" - - name: "homocysteine S-methyltransferase" - - metabolites: !!omap - - s_0794: 1 - - s_1012: -1 - - s_1029: 1 - - s_1413: 1 - - s_1416: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL062C or YPL273W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0544" + - name: "homocysteine S-methyltransferase" + - metabolites: !!omap + - s_0794: 1 + - s_1012: -1 + - s_1029: 1 + - s_1413: 1 + - s_1416: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL062C or YPL273W" + - eccodes: "2.1.1.10" + - references: "11013242" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.10" - bigg.reaction: "HCYSMT" - kegg.pathway: - - "sce00270" - - "sce01110" + - "sce00270" + - "sce01110" - kegg.reaction: "R00650" - metanetx.reaction: "MNXR100577" - pmid: "11013242" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0545" - - name: "homoisocitrate dehydrogenase" - - metabolites: !!omap - - s_0177: 1 - - s_0460: 1 - - s_0836: -1 - - s_1200: -1 - - s_1205: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL094C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0545" + - name: "homoisocitrate dehydrogenase" + - metabolites: !!omap + - s_0177: 1 + - s_0460: 1 + - s_0836: -1 + - s_1200: -1 + - s_1205: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL094C" + - eccodes: "1.1.1.87" + - references: "10714900" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.87" - kegg.pathway: - - "sce00300" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00300" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01934" - metanetx.reaction: "MNXR107239" - pmid: "10714900" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0546" - - name: "homoserine dehydrogenase (NADH)" - - metabolites: !!omap - - s_0794: -1 - - s_0978: -1 - - s_1014: 1 - - s_1198: 1 - - s_1203: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR139C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0546" + - name: "homoserine dehydrogenase (NADH)" + - metabolites: !!omap + - s_0794: -1 + - s_0978: -1 + - s_1014: 1 + - s_1198: 1 + - s_1203: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR139C" + - eccodes: "1.1.1.3" + - references: "8500624; 11341914" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.3" - bigg.reaction: "HSDxi" - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce00300" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00260" + - "sce00270" + - "sce00300" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01775" - metanetx.reaction: "MNXR100734" - pmid: - - "8500624" - - "11341914" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0547" - - name: "homoserine dehydrogenase (NADP)" - - metabolites: !!omap - - s_0794: -1 - - s_0978: -1 - - s_1014: 1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR139C" - - annotation: !!omap + - "8500624" + - "11341914" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0547" + - name: "homoserine dehydrogenase (NADP)" + - metabolites: !!omap + - s_0794: -1 + - s_0978: -1 + - s_1014: 1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR139C" + - eccodes: "1.1.1.3" + - references: "8500624" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.3" - bigg.reaction: "HSDy" - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce00300" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00260" + - "sce00270" + - "sce00300" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01775" - metanetx.reaction: "MNXR100734" - pmid: "8500624" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0548" - - name: "homoserine kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_1014: -1 - - s_1238: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR025W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0548" + - name: "homoserine kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_1014: -1 + - s_1238: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR025W" + - eccodes: "2.7.1.39" + - references: "8973190" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.39" - bigg.reaction: "HSK" - kegg.pathway: - - "sce00260" - - "sce01110" - - "sce01230" + - "sce00260" + - "sce01110" + - "sce01230" - kegg.reaction: "R01771" - metanetx.reaction: "MNXR100737" - pmid: "8973190" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0549" - - name: "homoserine O-trans-acetylase" - - metabolites: !!omap - - s_0373: -1 - - s_0529: 1 - - s_1014: -1 - - s_1233: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL277W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0549" + - name: "homoserine O-trans-acetylase" + - metabolites: !!omap + - s_0373: -1 + - s_0529: 1 + - s_1014: -1 + - s_1233: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL277W" + - eccodes: "2.3.1.31" + - references: "16232856" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.31" - bigg.reaction: "HSERTA" - kegg.pathway: - - "sce00270" - - "sce01130" + - "sce00270" + - "sce01130" - kegg.reaction: "R01776" - metanetx.reaction: "MNXR100736" - pmid: "16232856" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0550" - - name: "hydrogen peroxide reductase (thioredoxin)" - - metabolites: !!omap - - s_0794: -1 - - s_0803: 2 - - s_0837: -1 - - s_1616: -1 - - s_1620: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YDR453C and YGR209C) or (YDR453C and YLR043C)" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0550" + - name: "hydrogen peroxide reductase (thioredoxin)" + - metabolites: !!omap + - s_0794: -1 + - s_0803: 2 + - s_0837: -1 + - s_1616: -1 + - s_1620: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YDR453C and YGR209C) or (YDR453C and YLR043C)" + - eccodes: "1.11.1.15" + - references: "15210711" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.11.1.15" - bigg.reaction: "THIORDXi" - metanetx.reaction: "MNXR104815" - pmid: "15210711" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0551" - - name: "hydrogen peroxide reductase (thioredoxin)" - - metabolites: !!omap - - s_0799: -1 - - s_0807: 2 - - s_0838: -1 - - s_1617: -1 - - s_1621: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL064C and YCR083W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0551" + - name: "hydrogen peroxide reductase (thioredoxin)" + - metabolites: !!omap + - s_0799: -1 + - s_0807: 2 + - s_0838: -1 + - s_1617: -1 + - s_1621: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL064C and YCR083W" + - eccodes: "1.11.1.15" + - references: "10821871" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.11.1.15" - bigg.reaction: "THIORDXm" - metanetx.reaction: "MNXR104815" - pmid: "10821871" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0552" - - name: "hydrogen peroxide reductase (thioredoxin)" - - metabolites: !!omap - - s_0801: -1 - - s_0809: 2 - - s_0840: -1 - - s_1619: -1 - - s_1623: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YGR209C and YLR109W) or (YLR043C and YLR109W)" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0552" + - name: "hydrogen peroxide reductase (thioredoxin)" + - metabolites: !!omap + - s_0801: -1 + - s_0809: 2 + - s_0840: -1 + - s_1619: -1 + - s_1623: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YGR209C and YLR109W) or (YLR043C and YLR109W)" + - eccodes: "1.11.1.15" + - references: "14640681" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.11.1.15" - bigg.reaction: "THIORDXp" - kegg.pathway: "sce04122" - metanetx.reaction: "MNXR104815" - pmid: "14640681" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0553" - - name: "hydroxyacylglutathione hydrolase" - - metabolites: !!omap - - s_0025: 1 - - s_0033: -1 - - s_0750: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR272W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0553" + - name: "hydroxyacylglutathione hydrolase" + - metabolites: !!omap + - s_0025: 1 + - s_0033: -1 + - s_0750: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR272W" + - eccodes: "3.1.2.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.6" - bigg.reaction: "GLYOX" - kegg.pathway: "sce00620" - kegg.reaction: "R01736" - metanetx.reaction: "MNXR100353" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0554" - - name: "hydroxyacylglutathione hydrolase" - - metabolites: !!omap - - s_0027: 1 - - s_0034: -1 - - s_0752: 1 - - s_0799: 1 - - s_0807: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR040W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0554" + - name: "hydroxyacylglutathione hydrolase" + - metabolites: !!omap + - s_0027: 1 + - s_0034: -1 + - s_0752: 1 + - s_0799: 1 + - s_0807: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR040W" + - eccodes: "3.1.2.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.6" - bigg.reaction: "GLYOXm" - kegg.pathway: "sce00620" - kegg.reaction: "R01736" - metanetx.reaction: "MNXR100353" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0555" - - name: "hydroxybenzoate octaprenyltransferase" - - metabolites: !!omap - - s_0216: 1 - - s_0287: -1 - - s_0636: 1 - - s_0831: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNR041C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0555" + - name: "hydroxybenzoate octaprenyltransferase" + - metabolites: !!omap + - s_0216: 1 + - s_0287: -1 + - s_0636: 1 + - s_0831: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNR041C" + - eccodes: "2.5.1.39" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.39" - bigg.reaction: "HBZOPT6m" - kegg.pathway: - - "sce00130" - - "sce01110" + - "sce00130" + - "sce01110" - kegg.reaction: "R05616" - metanetx.reaction: "MNXR100569" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0556" - - name: "hydroxyethylthiazole kinase" - - metabolites: !!omap - - s_0293: 1 - - s_0310: -1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL214C" - - annotation: !!omap - - ec-code: - - "2.5.1.3" - - "2.7.1.50" + - confidence_score: 2 + - !!omap + - id: "r_0556" + - name: "hydroxyethylthiazole kinase" + - metabolites: !!omap + - s_0293: 1 + - s_0310: -1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL214C" + - eccodes: "2.5.1.3; 2.7.1.50" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.3; 2.7.1.50" - bigg.reaction: "HETZK" - kegg.pathway: "sce00730" - kegg.reaction: "R04448" - metanetx.reaction: "MNXR100611" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0557" - - name: "hydroxymethylbilane synthase" - - metabolites: !!omap - - s_0419: 4 - - s_0803: -1 - - s_1372: -4 - - s_1378: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL205C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0557" + - name: "hydroxymethylbilane synthase" + - metabolites: !!omap + - s_0419: 4 + - s_0803: -1 + - s_1372: -4 + - s_1378: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL205C" + - eccodes: "2.5.1.61" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.61" - bigg.reaction: "HMBS" - kegg.pathway: - - "sce00860" - - "sce01110" + - "sce00860" + - "sce01110" - kegg.reaction: "R00084" - metanetx.reaction: "MNXR100658" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0558" - - name: "hydroxymethylglutaryl CoA reductase" - - metabolites: !!omap - - s_0028: 1 - - s_0218: -1 - - s_0529: 1 - - s_0794: -2 - - s_1207: 2 - - s_1212: -2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR450W or YML075C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0558" + - name: "hydroxymethylglutaryl CoA reductase" + - metabolites: !!omap + - s_0028: 1 + - s_0218: -1 + - s_0529: 1 + - s_0794: -2 + - s_1207: 2 + - s_1212: -2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR450W or YML075C" + - eccodes: "1.1.1.34" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.34" - bigg.reaction: "HMGCOAR" - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R02082" - metanetx.reaction: "MNXR107304" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0559" - - name: "hydroxymethylglutaryl CoA synthase" - - metabolites: !!omap - - s_0218: 1 - - s_0367: -1 - - s_0373: -1 - - s_0529: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML126C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0559" + - name: "hydroxymethylglutaryl CoA synthase" + - metabolites: !!omap + - s_0218: 1 + - s_0367: -1 + - s_0373: -1 + - s_0529: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML126C" + - eccodes: "2.3.3.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.3.10" - bigg.reaction: "HMGCOAS" - kegg.pathway: - - "sce00072" - - "sce00280" - - "sce00650" - - "sce00900" - - "sce01110" - - "sce01130" + - "sce00072" + - "sce00280" + - "sce00650" + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R01978" - metanetx.reaction: "MNXR107257" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0560" - - name: "hydroxymethylglutaryl CoA synthase" - - metabolites: !!omap - - s_0221: 1 - - s_0370: -1 - - s_0376: -1 - - s_0532: 1 - - s_0799: 1 - - s_0807: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML126C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0560" + - name: "hydroxymethylglutaryl CoA synthase" + - metabolites: !!omap + - s_0221: 1 + - s_0370: -1 + - s_0376: -1 + - s_0532: 1 + - s_0799: 1 + - s_0807: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML126C" + - eccodes: "2.3.3.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.3.10" - bigg.reaction: "HMGCOASm" - kegg.pathway: - - "sce00072" - - "sce00280" - - "sce00650" - - "sce00900" - - "sce01110" - - "sce01130" + - "sce00072" + - "sce00280" + - "sce00650" + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R01978" - metanetx.reaction: "MNXR107257" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0561" - - name: "hydroxymethylpyrimidine kinase (ATP)" - - metabolites: !!omap - - s_0268: 1 - - s_0270: -1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL055C or YPL258C or YPR121W" - - annotation: !!omap - - ec-code: - - "2.7.1.49" - - "2.7.4.7" + - confidence_score: 2 + - !!omap + - id: "r_0561" + - name: "hydroxymethylpyrimidine kinase (ATP)" + - metabolites: !!omap + - s_0268: 1 + - s_0270: -1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL055C or YPL258C or YPR121W" + - eccodes: "2.7.1.49; 2.7.4.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.49; 2.7.4.7" - bigg.reaction: "HMPK1" - kegg.pathway: "sce00730" - kegg.reaction: "R03471" - metanetx.reaction: "MNXR100664" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0562" - - name: "hypoxanthine phosphoribosyltransferase (Hypoxanthine)" - - metabolites: !!omap - - s_0633: 1 - - s_0843: -1 - - s_0849: 1 - - s_1386: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR399W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0562" + - name: "hypoxanthine phosphoribosyltransferase (Hypoxanthine)" + - metabolites: !!omap + - s_0633: 1 + - s_0843: -1 + - s_0849: 1 + - s_1386: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR399W" + - eccodes: "2.4.2.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.8" - bigg.reaction: "HXPRT" - kegg.pathway: - - "sce00230" - - "sce01110" + - "sce00230" + - "sce01110" - kegg.reaction: "R01132" - metanetx.reaction: "MNXR100752" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0563" - - name: "Imidazole-glycerol-3-phosphate synthase" - - metabolites: !!omap - - s_0312: -1 - - s_0403: 1 - - s_0550: 1 - - s_0794: 1 - - s_0991: 1 - - s_0999: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR248C" - - annotation: !!omap - - ec-code: - - "2.4.2.-" - - "4.1.3.-" + - confidence_score: 2 + - !!omap + - id: "r_0563" + - name: "Imidazole-glycerol-3-phosphate synthase" + - metabolites: !!omap + - s_0312: -1 + - s_0403: 1 + - s_0550: 1 + - s_0794: 1 + - s_0991: 1 + - s_0999: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR248C" + - eccodes: "2.4.2.-; 4.1.3.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.4.2.-; 4.1.3.-" - bigg.reaction: "IG3PS" - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R04558" - metanetx.reaction: "MNXR100811" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0564" - - name: "imidazoleglycerol-phosphate dehydratase" - - metabolites: !!omap - - s_0207: 1 - - s_0550: -1 - - s_0803: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR202W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0564" + - name: "imidazoleglycerol-phosphate dehydratase" + - metabolites: !!omap + - s_0207: 1 + - s_0550: -1 + - s_0803: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR202W" + - eccodes: "4.2.1.19" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.19" - bigg.reaction: "IGPDH" - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R03457" - metanetx.reaction: "MNXR100813" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0565" - - name: "IMP dehydrogenase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_0849: -1 - - s_1198: -1 - - s_1203: 1 - - s_1565: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR216W or YLR432W or YML056C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0565" + - name: "IMP dehydrogenase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_0849: -1 + - s_1198: -1 + - s_1203: 1 + - s_1565: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR216W or YLR432W or YML056C" + - eccodes: "1.1.1.205" + - references: "11003640" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.205" - bigg.reaction: "IMPD" - kegg.pathway: - - "sce00230" - - "sce01110" + - "sce00230" + - "sce01110" - kegg.reaction: "R01130" - metanetx.reaction: "MNXR100830" - pmid: "11003640" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0566" - - name: "indole-3-glycerol-phosphate synthase" - - metabolites: !!omap - - s_0076: -1 - - s_0086: 1 - - s_0456: 1 - - s_0794: -1 - - s_0803: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL211C" - - annotation: !!omap - - ec-code: - - "4.1.1.48" - - "4.1.3.27" + - confidence_score: 3 + - !!omap + - id: "r_0566" + - name: "indole-3-glycerol-phosphate synthase" + - metabolites: !!omap + - s_0076: -1 + - s_0086: 1 + - s_0456: 1 + - s_0794: -1 + - s_0803: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL211C" + - eccodes: "4.1.1.48; 4.1.3.27" + - references: "6323449" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.1.1.48; 4.1.3.27" - bigg.reaction: "IGPS" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03508" - metanetx.reaction: "MNXR100814" - pmid: "6323449" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0567" - - name: "indole-3-pyruvate decarboxylase" - - metabolites: !!omap - - s_0456: 1 - - s_0794: -1 - - s_0850: 1 - - s_0855: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - annotation: !!omap - - ec-code: - - "4.1.1.-" - - "4.1.1.1" - - "4.1.1.43" - - "4.1.1.74" + - confidence_score: 3 + - !!omap + - id: "r_0567" + - name: "indole-3-pyruvate decarboxylase" + - metabolites: !!omap + - s_0456: 1 + - s_0794: -1 + - s_0850: 1 + - s_0855: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" + - eccodes: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" + - references: "12902239" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - bigg.reaction: "INDPYRD" - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce01110" + - "sce01130" - kegg.reaction: "R01974" - metanetx.reaction: "MNXR100837" - pmid: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0568" - - name: "inorganic diphosphatase" - - metabolites: !!omap - - s_0633: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR011C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0568" + - name: "inorganic diphosphatase" + - metabolites: !!omap + - s_0633: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR011C" + - eccodes: "3.6.1.1" + - references: "8224193" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.1" - bigg.reaction: "PPA" - kegg.pathway: "sce00190" @@ -40185,19 +41806,23 @@ - metanetx.reaction: "MNXR100808" - pmid: "8224193" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0569" - - name: "inorganic diphosphatase" - - metabolites: !!omap - - s_0636: -1 - - s_0799: 1 - - s_0807: -1 - - s_1326: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR267W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0569" + - name: "inorganic diphosphatase" + - metabolites: !!omap + - s_0636: -1 + - s_0799: 1 + - s_0807: -1 + - s_1326: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR267W" + - eccodes: "3.6.1.1" + - references: "1648084" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.1" - bigg.reaction: "PPAm" - kegg.pathway: "sce00190" @@ -40205,1521 +41830,1817 @@ - metanetx.reaction: "MNXR100808" - pmid: "1648084" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0570" - - name: "inosine monophosphate cyclohydrolase" - - metabolites: !!omap - - s_0803: 1 - - s_0849: 1 - - s_1365: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR028C or YMR120C" - - annotation: !!omap - - ec-code: - - "2.1.2.3" - - "3.5.4.10" + - confidence_score: 3 + - !!omap + - id: "r_0570" + - name: "inosine monophosphate cyclohydrolase" + - metabolites: !!omap + - s_0803: 1 + - s_0849: 1 + - s_1365: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR028C or YMR120C" + - eccodes: "2.1.2.3; 3.5.4.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.2.3; 3.5.4.10" - bigg.reaction: "IMPC" - kegg.pathway: - - "sce00230" - - "sce00670" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00670" + - "sce01110" + - "sce01130" - kegg.reaction: "R01127" - metanetx.reaction: "MNXR100783" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0571" - - name: "inositol-1,3,4,5,6-pentakisphosphate 2-kinase" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: 1 - - s_1157: -1 - - s_1159: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR315C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0571" + - name: "inositol-1,3,4,5,6-pentakisphosphate 2-kinase" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: 1 + - s_1157: -1 + - s_1159: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR315C" + - eccodes: "2.7.1.158" + - references: "10960485" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.158" - kegg.pathway: - - "sce00562" - - "sce04070" + - "sce00562" + - "sce04070" - kegg.reaction: "R05202" - metanetx.reaction: "MNXR109392" - pmid: "10960485" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0572" - - name: "inositol-1,3,4,5-triphosphate 6-kinase, nucleus" - - metabolites: !!omap - - s_0123: -1 - - s_0398: 1 - - s_0438: -1 - - s_0800: 1 - - s_1157: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR173C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0572" + - name: "inositol-1,3,4,5-triphosphate 6-kinase, nucleus" + - metabolites: !!omap + - s_0123: -1 + - s_0398: 1 + - s_0438: -1 + - s_0800: 1 + - s_1157: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR173C" + - eccodes: "2.7.1.151" + - references: "11956213" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.151" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" + - "sce00562" + - "sce04070" + - "sce04138" - kegg.reaction: "R10953" - metanetx.reaction: "MNXR114260" - pmid: "11956213" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0573" - - name: "inositol-1,4,5,6- tetrakisphosphate 3-kinase, nucleus" - - metabolites: !!omap - - s_0124: -1 - - s_0398: 1 - - s_0438: -1 - - s_0800: 1 - - s_1157: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR173C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0573" + - name: "inositol-1,4,5,6- tetrakisphosphate 3-kinase, nucleus" + - metabolites: !!omap + - s_0124: -1 + - s_0398: 1 + - s_0438: -1 + - s_0800: 1 + - s_1157: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR173C" + - eccodes: "2.7.1.151" + - references: "11956213" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.151" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" + - "sce00562" + - "sce04070" + - "sce04138" - kegg.reaction: "R05801" - metanetx.reaction: "MNXR109848" - pmid: "11956213" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0574" - - name: "inositol-1,4,5-triphosphate 6-kinase, nucleus" - - metabolites: !!omap - - s_0124: 1 - - s_0125: -1 - - s_0398: 1 - - s_0438: -1 - - s_0800: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR173C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0574" + - name: "inositol-1,4,5-triphosphate 6-kinase, nucleus" + - metabolites: !!omap + - s_0124: 1 + - s_0125: -1 + - s_0398: 1 + - s_0438: -1 + - s_0800: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR173C" + - eccodes: "2.7.1.151" + - references: "11956213" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.151" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" + - "sce00562" + - "sce04070" + - "sce04138" - kegg.reaction: "R05800" - metanetx.reaction: "MNXR109847" - pmid: "11956213" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0575" - - name: "inositol-1,4,5-trisphosphate 3-kinase, nucleus" - - metabolites: !!omap - - s_0123: 1 - - s_0125: -1 - - s_0398: 1 - - s_0438: -1 - - s_0800: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR173C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0575" + - name: "inositol-1,4,5-trisphosphate 3-kinase, nucleus" + - metabolites: !!omap + - s_0123: 1 + - s_0125: -1 + - s_0398: 1 + - s_0438: -1 + - s_0800: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR173C" + - eccodes: "2.7.1.151" + - references: "11956213" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.151" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" + - "sce00562" + - "sce04070" + - "sce04138" - kegg.reaction: "R03433" - metanetx.reaction: "MNXR108166" - pmid: "11956213" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0596" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0475: 1 - - s_0804: -1 - - s_1111: 1 - - s_1116: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0596" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0475: 1 + - s_0804: -1 + - s_1111: 1 + - s_1116: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0597" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0478: 1 - - s_0804: -1 - - s_1111: 1 - - s_1119: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0597" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0478: 1 + - s_0804: -1 + - s_1111: 1 + - s_1119: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0598" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0487: 1 - - s_0804: -1 - - s_1111: 1 - - s_1128: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0598" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0487: 1 + - s_0804: -1 + - s_1111: 1 + - s_1128: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0599" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0490: 1 - - s_0804: -1 - - s_1111: 1 - - s_1131: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0599" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0490: 1 + - s_0804: -1 + - s_1111: 1 + - s_1131: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0600" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0481: 1 - - s_0804: -1 - - s_1111: 1 - - s_1122: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0600" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0481: 1 + - s_0804: -1 + - s_1111: 1 + - s_1122: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0601" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0484: 1 - - s_0804: -1 - - s_1111: 1 - - s_1125: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0601" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0484: 1 + - s_0804: -1 + - s_1111: 1 + - s_1125: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0602" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0493: 1 - - s_0804: -1 - - s_1111: 1 - - s_1134: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0602" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0493: 1 + - s_0804: -1 + - s_1111: 1 + - s_1134: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0603" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0496: 1 - - s_0804: -1 - - s_1111: 1 - - s_1137: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0603" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0496: 1 + - s_0804: -1 + - s_1111: 1 + - s_1137: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0604" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0499: 1 - - s_0804: -1 - - s_1111: 1 - - s_1140: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0604" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0499: 1 + - s_0804: -1 + - s_1111: 1 + - s_1140: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0605" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0502: 1 - - s_0804: -1 - - s_1111: 1 - - s_1143: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0605" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0502: 1 + - s_0804: -1 + - s_1111: 1 + - s_1143: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0606" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0475: 1 - - s_0804: -1 - - s_0861: -1 - - s_1109: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0606" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0475: 1 + - s_0804: -1 + - s_0861: -1 + - s_1109: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0607" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0478: 1 - - s_0804: -1 - - s_0864: -1 - - s_1109: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0607" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0478: 1 + - s_0804: -1 + - s_0864: -1 + - s_1109: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0608" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0487: 1 - - s_0804: -1 - - s_0873: -1 - - s_1109: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0608" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0487: 1 + - s_0804: -1 + - s_0873: -1 + - s_1109: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0609" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0490: 1 - - s_0804: -1 - - s_0876: -1 - - s_1109: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0609" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0490: 1 + - s_0804: -1 + - s_0876: -1 + - s_1109: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0610" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0481: 1 - - s_0804: -1 - - s_0867: -1 - - s_1109: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0610" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0481: 1 + - s_0804: -1 + - s_0867: -1 + - s_1109: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0611" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0484: 1 - - s_0804: -1 - - s_0870: -1 - - s_1109: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0611" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0484: 1 + - s_0804: -1 + - s_0870: -1 + - s_1109: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0612" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0493: 1 - - s_0804: -1 - - s_0879: -1 - - s_1109: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0612" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0493: 1 + - s_0804: -1 + - s_0879: -1 + - s_1109: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0613" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0496: 1 - - s_0804: -1 - - s_0882: -1 - - s_1109: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0613" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0496: 1 + - s_0804: -1 + - s_0882: -1 + - s_1109: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0614" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0499: 1 - - s_0804: -1 - - s_0885: -1 - - s_1109: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0614" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0499: 1 + - s_0804: -1 + - s_0885: -1 + - s_1109: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0615" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0502: 1 - - s_0804: -1 - - s_0888: -1 - - s_1109: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0615" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0502: 1 + - s_0804: -1 + - s_0888: -1 + - s_1109: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0616" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0129: 1 - - s_0477: 1 - - s_0799: 2 - - s_0807: -1 - - s_0896: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0616" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0129: 1 + - s_0477: 1 + - s_0799: 2 + - s_0807: -1 + - s_0896: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0617" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0129: 1 - - s_0480: 1 - - s_0799: 2 - - s_0807: -1 - - s_0899: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0617" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0129: 1 + - s_0480: 1 + - s_0799: 2 + - s_0807: -1 + - s_0899: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0618" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0129: 1 - - s_0489: 1 - - s_0799: 2 - - s_0807: -1 - - s_0908: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0618" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0129: 1 + - s_0489: 1 + - s_0799: 2 + - s_0807: -1 + - s_0908: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0619" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0129: 1 - - s_0492: 1 - - s_0799: 2 - - s_0807: -1 - - s_0911: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0619" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0129: 1 + - s_0492: 1 + - s_0799: 2 + - s_0807: -1 + - s_0911: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0620" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0129: 1 - - s_0483: 1 - - s_0799: 2 - - s_0807: -1 - - s_0902: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0620" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0129: 1 + - s_0483: 1 + - s_0799: 2 + - s_0807: -1 + - s_0902: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0621" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0129: 1 - - s_0486: 1 - - s_0799: 2 - - s_0807: -1 - - s_0905: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0621" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0129: 1 + - s_0486: 1 + - s_0799: 2 + - s_0807: -1 + - s_0905: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0622" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0129: 1 - - s_0495: 1 - - s_0799: 2 - - s_0807: -1 - - s_0914: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0622" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0129: 1 + - s_0495: 1 + - s_0799: 2 + - s_0807: -1 + - s_0914: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0623" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0129: 1 - - s_0498: 1 - - s_0799: 2 - - s_0807: -1 - - s_0917: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0623" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0129: 1 + - s_0498: 1 + - s_0799: 2 + - s_0807: -1 + - s_0917: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0624" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0129: 1 - - s_0501: 1 - - s_0799: 2 - - s_0807: -1 - - s_0920: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0624" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0129: 1 + - s_0501: 1 + - s_0799: 2 + - s_0807: -1 + - s_0920: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0625" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0129: 1 - - s_0504: 1 - - s_0799: 2 - - s_0807: -1 - - s_0923: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0625" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0129: 1 + - s_0504: 1 + - s_0799: 2 + - s_0807: -1 + - s_0923: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0626" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0477: 1 - - s_0807: -1 - - s_1112: 1 - - s_1118: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0626" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0477: 1 + - s_0807: -1 + - s_1112: 1 + - s_1118: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0627" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0480: 1 - - s_0807: -1 - - s_1112: 1 - - s_1121: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0627" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0480: 1 + - s_0807: -1 + - s_1112: 1 + - s_1121: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0628" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0489: 1 - - s_0807: -1 - - s_1112: 1 - - s_1130: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0628" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0489: 1 + - s_0807: -1 + - s_1112: 1 + - s_1130: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0629" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0492: 1 - - s_0807: -1 - - s_1112: 1 - - s_1133: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0629" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0492: 1 + - s_0807: -1 + - s_1112: 1 + - s_1133: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0630" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0483: 1 - - s_0807: -1 - - s_1112: 1 - - s_1124: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0630" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0483: 1 + - s_0807: -1 + - s_1112: 1 + - s_1124: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0631" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0486: 1 - - s_0807: -1 - - s_1112: 1 - - s_1127: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0631" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0486: 1 + - s_0807: -1 + - s_1112: 1 + - s_1127: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0632" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0495: 1 - - s_0807: -1 - - s_1112: 1 - - s_1136: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0632" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0495: 1 + - s_0807: -1 + - s_1112: 1 + - s_1136: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0633" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0498: 1 - - s_0807: -1 - - s_1112: 1 - - s_1139: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0633" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0498: 1 + - s_0807: -1 + - s_1112: 1 + - s_1139: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0634" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0501: 1 - - s_0807: -1 - - s_1112: 1 - - s_1142: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0634" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0501: 1 + - s_0807: -1 + - s_1112: 1 + - s_1142: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0635" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0504: 1 - - s_0807: -1 - - s_1112: 1 - - s_1145: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0635" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0504: 1 + - s_0807: -1 + - s_1112: 1 + - s_1145: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0636" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0477: 1 - - s_0807: -1 - - s_0863: -1 - - s_1110: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0636" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0477: 1 + - s_0807: -1 + - s_0863: -1 + - s_1110: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0637" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0480: 1 - - s_0807: -1 - - s_0866: -1 - - s_1110: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0637" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0480: 1 + - s_0807: -1 + - s_0866: -1 + - s_1110: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0638" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0489: 1 - - s_0807: -1 - - s_0875: -1 - - s_1110: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0638" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0489: 1 + - s_0807: -1 + - s_0875: -1 + - s_1110: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0639" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0492: 1 - - s_0807: -1 - - s_0878: -1 - - s_1110: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0639" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0492: 1 + - s_0807: -1 + - s_0878: -1 + - s_1110: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0640" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0483: 1 - - s_0807: -1 - - s_0869: -1 - - s_1110: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0640" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0483: 1 + - s_0807: -1 + - s_0869: -1 + - s_1110: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0641" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0486: 1 - - s_0807: -1 - - s_0872: -1 - - s_1110: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0641" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0486: 1 + - s_0807: -1 + - s_0872: -1 + - s_1110: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0642" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0495: 1 - - s_0807: -1 - - s_0881: -1 - - s_1110: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0642" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0495: 1 + - s_0807: -1 + - s_0881: -1 + - s_1110: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0643" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0498: 1 - - s_0807: -1 - - s_0884: -1 - - s_1110: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0643" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0498: 1 + - s_0807: -1 + - s_0884: -1 + - s_1110: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0644" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0501: 1 - - s_0807: -1 - - s_0887: -1 - - s_1110: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0644" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0501: 1 + - s_0807: -1 + - s_0887: -1 + - s_1110: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0645" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0504: 1 - - s_0807: -1 - - s_0890: -1 - - s_1110: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0645" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0504: 1 + - s_0807: -1 + - s_0890: -1 + - s_1110: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "17880915; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0646" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0127: 1 - - s_0475: 1 - - s_0795: 2 - - s_0804: -1 - - s_0894: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0646" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0127: 1 + - s_0475: 1 + - s_0795: 2 + - s_0804: -1 + - s_0894: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0647" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0127: 1 - - s_0478: 1 - - s_0795: 2 - - s_0804: -1 - - s_0897: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0647" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0127: 1 + - s_0478: 1 + - s_0795: 2 + - s_0804: -1 + - s_0897: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0648" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0127: 1 - - s_0487: 1 - - s_0795: 2 - - s_0804: -1 - - s_0906: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0648" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0127: 1 + - s_0487: 1 + - s_0795: 2 + - s_0804: -1 + - s_0906: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0649" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0127: 1 - - s_0490: 1 - - s_0795: 2 - - s_0804: -1 - - s_0909: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0649" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0127: 1 + - s_0490: 1 + - s_0795: 2 + - s_0804: -1 + - s_0909: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0650" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0127: 1 - - s_0481: 1 - - s_0795: 2 - - s_0804: -1 - - s_0900: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0650" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0127: 1 + - s_0481: 1 + - s_0795: 2 + - s_0804: -1 + - s_0900: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0651" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0127: 1 - - s_0484: 1 - - s_0795: 2 - - s_0804: -1 - - s_0903: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0651" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0127: 1 + - s_0484: 1 + - s_0795: 2 + - s_0804: -1 + - s_0903: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0652" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0127: 1 - - s_0493: 1 - - s_0795: 2 - - s_0804: -1 - - s_0912: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0652" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0127: 1 + - s_0493: 1 + - s_0795: 2 + - s_0804: -1 + - s_0912: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0653" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0127: 1 - - s_0496: 1 - - s_0795: 2 - - s_0804: -1 - - s_0915: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0653" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0127: 1 + - s_0496: 1 + - s_0795: 2 + - s_0804: -1 + - s_0915: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0654" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0127: 1 - - s_0499: 1 - - s_0795: 2 - - s_0804: -1 - - s_0918: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0654" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0127: 1 + - s_0499: 1 + - s_0795: 2 + - s_0804: -1 + - s_0918: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0655" - - name: "IPS phospholipase C" - - metabolites: !!omap - - s_0127: 1 - - s_0502: 1 - - s_0795: 2 - - s_0804: -1 - - s_0921: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER019W" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0655" + - name: "IPS phospholipase C" + - metabolites: !!omap + - s_0127: 1 + - s_0502: 1 + - s_0795: 2 + - s_0804: -1 + - s_0921: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER019W" + - eccodes: "3.1.4.-" + - references: "11006294; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0656" - - name: "isoamyl acetate-hydrolyzing esterase" - - metabolites: !!omap - - s_0362: 1 - - s_0794: 1 - - s_0803: -1 - - s_0927: -1 - - s_0929: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR126C" - - annotation: !!omap + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0656" + - name: "isoamyl acetate-hydrolyzing esterase" + - metabolites: !!omap + - s_0362: 1 + - s_0794: 1 + - s_0803: -1 + - s_0927: -1 + - s_0929: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR126C" + - eccodes: "3.1.-.-" + - references: "10855721" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.-.-" - bigg.reaction: "ACHLE1" - metanetx.reaction: "MNXR95262" - pmid: "10855721" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0657" - - name: "isobutyl acetate-hydrolyzing esterase" - - metabolites: !!omap - - s_0362: 1 - - s_0794: 1 - - s_0803: -1 - - s_0932: 1 - - s_0935: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR126C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0657" + - name: "isobutyl acetate-hydrolyzing esterase" + - metabolites: !!omap + - s_0362: 1 + - s_0794: 1 + - s_0803: -1 + - s_0932: 1 + - s_0935: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR126C" + - eccodes: "3.1.-.-" + - references: "10855721" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.-.-" - bigg.reaction: "ACHLE2" - metanetx.reaction: "MNXR95263" - pmid: "10855721" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0658" - - name: "isocitrate dehydrogenase (NAD+)" - - metabolites: !!omap - - s_0182: 1 - - s_0460: 1 - - s_0941: -1 - - s_1200: -1 - - s_1205: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL037C and YOR136W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0658" + - name: "isocitrate dehydrogenase (NAD+)" + - metabolites: !!omap + - s_0182: 1 + - s_0460: 1 + - s_0941: -1 + - s_1200: -1 + - s_1205: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL037C and YOR136W" + - eccodes: "1.1.1.41" + - references: "1644826" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.41" - bigg.reaction: "ICDHxm" - kegg.pathway: - - "sce00020" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00020" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00709" - metanetx.reaction: "MNXR100782" - pmid: "1644826" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0659" - - name: "isocitrate dehydrogenase (NADP)" - - metabolites: !!omap - - s_0180: 1 - - s_0456: 1 - - s_0940: -1 - - s_1207: -1 - - s_1212: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR174W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0659" + - name: "isocitrate dehydrogenase (NADP)" + - metabolites: !!omap + - s_0180: 1 + - s_0456: 1 + - s_0940: -1 + - s_1207: -1 + - s_1212: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR174W" + - eccodes: "1.1.1.42" + - references: "9175438" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.42" - bigg.reaction: "ICDHyr" - kegg.pathway: - - "sce00020" - - "sce00480" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - "sce04146" + - "sce00020" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - "sce04146" - kegg.reaction: "R00267" - metanetx.reaction: "MNXR100781" - pmid: "9175438" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0661" - - name: "isocitrate dehydrogenase (NADP+), peroxisomal" - - metabolites: !!omap - - s_0184: 1 - - s_0462: 1 - - s_0942: -1 - - s_1211: -1 - - s_1215: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL009W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0661" + - name: "isocitrate dehydrogenase (NADP+), peroxisomal" + - metabolites: !!omap + - s_0184: 1 + - s_0462: 1 + - s_0942: -1 + - s_1211: -1 + - s_1215: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL009W" + - eccodes: "1.1.1.42" + - references: "9175438" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.42" - bigg.reaction: "ICDHyp" - kegg.pathway: - - "sce00020" - - "sce00480" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - "sce04146" + - "sce00020" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - "sce04146" - kegg.reaction: "R00267" - metanetx.reaction: "MNXR100781" - pmid: "9175438" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0662" - - name: "isocitrate lyase" - - metabolites: !!omap - - s_0779: 1 - - s_0940: -1 - - s_1458: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER065C" - - annotation: !!omap - - ec-code: - - "4.1.3.1" - - "4.1.3.30" + - confidence_score: 3 + - !!omap + - id: "r_0662" + - name: "isocitrate lyase" + - metabolites: !!omap + - s_0779: 1 + - s_0940: -1 + - s_1458: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER065C" + - eccodes: "4.1.3.1; 4.1.3.30" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.1.3.1; 4.1.3.30" - bigg.reaction: "ICL" - kegg.pathway: - - "sce00630" - - "sce01110" - - "sce01200" + - "sce00630" + - "sce01110" + - "sce01200" - kegg.reaction: "R00479" - metanetx.reaction: "MNXR100789" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0663" - - name: "isoleucine transaminase" - - metabolites: !!omap - - s_0056: 1 - - s_0180: -1 - - s_0991: 1 - - s_1016: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR148W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0663" + - name: "isoleucine transaminase" + - metabolites: !!omap + - s_0056: 1 + - s_0180: -1 + - s_0991: 1 + - s_1016: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR148W" + - eccodes: "2.6.1.42" + - references: "8798704" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "ILETA" - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R02199" - metanetx.reaction: "MNXR96228" - pmid: "8798704" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0664" - - name: "isoleucine transaminase" - - metabolites: !!omap - - s_0060: 1 - - s_0182: -1 - - s_0993: 1 - - s_1018: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR208W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0664" + - name: "isoleucine transaminase" + - metabolites: !!omap + - s_0060: 1 + - s_0182: -1 + - s_0993: 1 + - s_1018: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR208W" + - eccodes: "2.6.1.42" + - references: "8798704" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "ILETAm" - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R02199" - metanetx.reaction: "MNXR96228" - pmid: "8798704" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0665" - - name: "isoleucyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_0847: 1 - - s_1016: -1 - - s_1596: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL076C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0665" + - name: "isoleucyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_0847: 1 + - s_1016: -1 + - s_1596: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL076C" + - eccodes: "6.1.1.5" + - references: "7619074" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.5" - bigg.reaction: "ILETRS" - kegg.pathway: "sce00970" @@ -41727,21 +43648,25 @@ - metanetx.reaction: "MNXR100820" - pmid: "7619074" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0666" - - name: "isoleucyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0437: -1 - - s_0636: 1 - - s_0848: 1 - - s_1018: -1 - - s_1597: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL040C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0666" + - name: "isoleucyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0437: -1 + - s_0636: 1 + - s_0848: 1 + - s_1018: -1 + - s_1597: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL040C" + - eccodes: "6.1.1.5" + - references: "7607232" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.5" - bigg.reaction: "ILETRSm" - kegg.pathway: "sce00970" @@ -41749,93 +43674,109 @@ - metanetx.reaction: "MNXR100820" - pmid: "7607232" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0667" - - name: "isopentenyl-diphosphate D-isomerase" - - metabolites: !!omap - - s_0943: -1 - - s_1376: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPL117C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0667" + - name: "isopentenyl-diphosphate D-isomerase" + - metabolites: !!omap + - s_0943: -1 + - s_1376: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPL117C" + - eccodes: "5.3.3.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.3.2" - bigg.reaction: "IPDDI" - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R01123" - metanetx.reaction: "MNXR100796" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0668" - - name: "itaconate-CoA ligase (ADP-forming)" - - metabolites: !!omap - - s_0397: 1 - - s_0437: -1 - - s_0532: -1 - - s_0946: -1 - - s_0949: 1 - - s_1326: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR244C and YOR142W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0668" + - name: "itaconate-CoA ligase (ADP-forming)" + - metabolites: !!omap + - s_0397: 1 + - s_0437: -1 + - s_0532: -1 + - s_0946: -1 + - s_0949: 1 + - s_1326: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR244C and YOR142W" + - eccodes: "6.2.1.5" + - references: "9874242" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.5" - bigg.reaction: "ITCOALm" - kegg.pathway: - - "sce00020" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00020" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R02404" - metanetx.reaction: "MNXR100884" - pmid: "9874242" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0669" - - name: "ketol-acid reductoisomerase (2-aceto-2-hydroxybutanoate)" - - metabolites: !!omap - - s_0008: 1 - - s_0039: -1 - - s_0799: -1 - - s_1210: 1 - - s_1214: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR355C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0669" + - name: "ketol-acid reductoisomerase (2-aceto-2-hydroxybutanoate)" + - metabolites: !!omap + - s_0008: 1 + - s_0039: -1 + - s_0799: -1 + - s_1210: 1 + - s_1214: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR355C" + - eccodes: "1.1.1.86" + - references: "3027658" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.86" - bigg.reaction: "KARA2im" - kegg.pathway: - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - metanetx.reaction: "MNXR100902" - pmid: "3027658" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0670" - - name: "kynureninase" - - metabolites: !!omap - - s_0427: 1 - - s_0794: 1 - - s_0803: -1 - - s_0955: 1 - - s_1020: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR231C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0670" + - name: "kynureninase" + - metabolites: !!omap + - s_0427: 1 + - s_0794: 1 + - s_0803: -1 + - s_0955: 1 + - s_1020: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR231C" + - eccodes: "3.7.1.3" + - references: "12062417" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.7.1.3" - bigg.reaction: "KYN" - kegg.pathway: "sce00380" @@ -41843,22 +43784,26 @@ - metanetx.reaction: "MNXR100946" - pmid: "12062417" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0671" - - name: "kynurenine 3-monooxygenase" - - metabolites: !!omap - - s_0222: 1 - - s_0794: -1 - - s_0803: 1 - - s_1020: -1 - - s_1207: 1 - - s_1212: -1 - - s_1275: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL098W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0671" + - name: "kynurenine 3-monooxygenase" + - metabolites: !!omap + - s_0222: 1 + - s_0794: -1 + - s_0803: 1 + - s_1020: -1 + - s_1207: 1 + - s_1212: -1 + - s_1275: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL098W" + - eccodes: "1.14.13.9" + - references: "12062417" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.13.9" - bigg.reaction: "KYN3OX" - kegg.pathway: "sce00380" @@ -41866,471 +43811,536 @@ - metanetx.reaction: "MNXR100947" - pmid: "12062417" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0672" - - name: "L-1-pyrroline-3-hydroxy-5-carboxylate dehydrogenase" - - metabolites: !!omap - - s_0117: -1 - - s_0678: 1 - - s_0799: 1 - - s_0807: -2 - - s_1200: -1 - - s_1205: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR037W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0672" + - name: "L-1-pyrroline-3-hydroxy-5-carboxylate dehydrogenase" + - metabolites: !!omap + - s_0117: -1 + - s_0678: 1 + - s_0799: 1 + - s_0807: -2 + - s_1200: -1 + - s_1205: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR037W" + - eccodes: "1.2.1.88" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.88" - bigg.reaction: "PHCDm" - kegg.pathway: - - "sce00250" - - "sce00330" + - "sce00250" + - "sce00330" - kegg.reaction: "R04444" - metanetx.reaction: "MNXR102616" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0673" - - name: "L-4-hydroxyglutamate semialdehyde dehydrogenase" - - metabolites: !!omap - - s_0678: 1 - - s_0799: 2 - - s_0807: -1 - - s_0954: -1 - - s_1200: -1 - - s_1205: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR037W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0673" + - name: "L-4-hydroxyglutamate semialdehyde dehydrogenase" + - metabolites: !!omap + - s_0678: 1 + - s_0799: 2 + - s_0807: -1 + - s_0954: -1 + - s_1200: -1 + - s_1205: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR037W" + - eccodes: "1.2.1.88" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.88" - bigg.reaction: "4HGLSDm" - kegg.pathway: - - "sce00250" - - "sce00330" + - "sce00250" + - "sce00330" - kegg.reaction: "R05051" - metanetx.reaction: "MNXR95015" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0674" - - name: "L-alanine transaminase" - - metabolites: !!omap - - s_0182: -1 - - s_0957: -1 - - s_0993: 1 - - s_1401: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR089C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0674" + - name: "L-alanine transaminase" + - metabolites: !!omap + - s_0182: -1 + - s_0957: -1 + - s_0993: 1 + - s_1401: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR089C" + - eccodes: "2.6.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.2" - bigg.reaction: "ALATA_Lm" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce00250" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00258" - metanetx.reaction: "MNXR95698" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0675" - - name: "L-allo-threonine aldolase" - - metabolites: !!omap - - s_0359: 1 - - s_0958: -1 - - s_1003: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YEL046C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0675" + - name: "L-allo-threonine aldolase" + - metabolites: !!omap + - s_0359: 1 + - s_0958: -1 + - s_1003: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YEL046C" + - eccodes: "4.1.2.48" + - references: "9151955" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.2.48" - bigg.reaction: "THRA2" - kegg.pathway: - - "sce00260" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R06171" - metanetx.reaction: "MNXR104834" - pmid: "9151955" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0676" - - name: "L-allo-threonine dehydrogenase" - - metabolites: !!omap - - s_0794: 1 - - s_0952: 1 - - s_0958: -1 - - s_1207: -1 - - s_1212: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR226C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0676" + - name: "L-allo-threonine dehydrogenase" + - metabolites: !!omap + - s_0794: 1 + - s_0952: 1 + - s_0958: -1 + - s_1207: -1 + - s_1212: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR226C" + - eccodes: "1.1.1.381" + - references: "12535615" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.381" - bigg.reaction: "ATHRDHr" - kegg.pathway: - - "sce00240" - - "sce00260" + - "sce00240" + - "sce00260" - kegg.reaction: "R10851" - metanetx.reaction: "MNXR96121" - pmid: "12535615" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0678" - - name: "L-aminoadipate-semialdehyde dehydrogenase (NADPH)" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_0794: -1 - - s_0953: -1 - - s_0959: 1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR115C and YGL154C" - - annotation: !!omap - - ec-code: - - "1.2.1.31" - - "1.2.1.95" - - "2.7.8.7" + - confidence_score: 3 + - !!omap + - id: "r_0678" + - name: "L-aminoadipate-semialdehyde dehydrogenase (NADPH)" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_0794: -1 + - s_0953: -1 + - s_0959: 1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR115C and YGL154C" + - eccodes: "1.2.1.31; 1.2.1.95; 2.7.8.7" + - references: "3928261" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.2.1.31; 1.2.1.95; 2.7.8.7" - bigg.reaction: "AASAD1" - kegg.pathway: - - "sce00300" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00300" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01230" - metanetx.reaction: "MNXR95156" - pmid: "3928261" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0679" - - name: "L-asparaginase" - - metabolites: !!omap - - s_0419: 1 - - s_0803: -1 - - s_0969: -1 - - s_0973: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR321W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0679" + - name: "L-asparaginase" + - metabolites: !!omap + - s_0419: 1 + - s_0803: -1 + - s_0969: -1 + - s_0973: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR321W" + - eccodes: "3.5.1.1" + - references: "8026756" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.1" - bigg.reaction: "ASNN" - kegg.pathway: - - "sce00250" - - "sce01110" + - "sce00250" + - "sce01110" - kegg.reaction: "R00485" - metanetx.reaction: "MNXR96056" - pmid: "8026756" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0680" - - name: "L-asparaginase" - - metabolites: !!omap - - s_0420: 1 - - s_0805: -1 - - s_0970: -1 - - s_0974: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR155C or YLR157C or YLR158C or YLR160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0680" + - name: "L-asparaginase" + - metabolites: !!omap + - s_0420: 1 + - s_0805: -1 + - s_0970: -1 + - s_0974: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR155C or YLR157C or YLR158C or YLR160C" + - eccodes: "3.5.1.1" + - references: "3042786" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.1" - bigg.reaction: "ASNNe" - kegg.reaction: "R00485" - metanetx.reaction: "MNXR96056" - pmid: "3042786" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0681" - - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" - - metabolites: !!omap - - s_0180: -1 - - s_0282: 1 - - s_0677: -1 - - s_0991: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR027C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0681" + - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" + - metabolites: !!omap + - s_0180: -1 + - s_0282: 1 + - s_0677: -1 + - s_0991: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR027C" + - eccodes: "2.6.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "EHGLAT" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R03266" - metanetx.reaction: "MNXR97908" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0682" - - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" - - metabolites: !!omap - - s_0182: -1 - - s_0283: 1 - - s_0678: -1 - - s_0993: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL106W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0682" + - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" + - metabolites: !!omap + - s_0182: -1 + - s_0283: 1 + - s_0678: -1 + - s_0993: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL106W" + - eccodes: "2.6.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "EHGLATm" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R03266" - metanetx.reaction: "MNXR97908" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0683" - - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" - - metabolites: !!omap - - s_0184: -1 - - s_0284: 1 - - s_0679: -1 - - s_0995: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR027C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0683" + - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" + - metabolites: !!omap + - s_0184: -1 + - s_0284: 1 + - s_0679: -1 + - s_0995: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR027C" + - eccodes: "2.6.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "EHGLATp" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R03266" - metanetx.reaction: "MNXR97908" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0687" - - name: "L-hydroxyproline reductase (NADP)" - - metabolites: !!omap - - s_0116: -1 - - s_0794: -2 - - s_1207: 1 - - s_1212: -1 - - s_4207: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER023W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0687" + - name: "L-hydroxyproline reductase (NADP)" + - metabolites: !!omap + - s_0116: -1 + - s_0794: -2 + - s_1207: 1 + - s_1212: -1 + - s_4207: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER023W" + - eccodes: "1.5.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.1.2" - kegg.reaction: "R03293" - metanetx.reaction: "MNXR100699" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0688" - - name: "L-lactaldehyde:NADP+ 1-oxidoreductase" - - metabolites: !!omap - - s_0062: 1 - - s_0794: -1 - - s_1151: -1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR104W or YOL151W" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.21" - - "1.1.1.265" - - "1.1.1.283" + - confidence_score: 2 + - !!omap + - id: "r_0688" + - name: "L-lactaldehyde:NADP+ 1-oxidoreductase" + - metabolites: !!omap + - s_0062: 1 + - s_0794: -1 + - s_1151: -1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR104W or YOL151W" + - eccodes: "1.1.1.-; 1.1.1.21; 1.1.1.265; 1.1.1.283" + - references: "12722185" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.21; 1.1.1.265; 1.1.1.283" - bigg.reaction: "LALDO3" - kegg.pathway: - - "sce00040" - - "sce00620" - - "sce00640" - - "sce04011" + - "sce00040" + - "sce00620" + - "sce00640" + - "sce04011" - kegg.reaction: "R02260" - metanetx.reaction: "MNXR101010" - pmid: "12722185" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0689" - - name: "L-serine deaminase" - - metabolites: !!omap - - s_0419: 1 - - s_1039: -1 - - s_1399: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL064C" - - annotation: !!omap - - ec-code: - - "4.3.1.17" - - "4.3.1.19" + - confidence_score: 3 + - !!omap + - id: "r_0689" + - name: "L-serine deaminase" + - metabolites: !!omap + - s_0419: 1 + - s_1039: -1 + - s_1399: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL064C" + - eccodes: "4.3.1.17; 4.3.1.19" + - references: "2194168" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.3.1.17; 4.3.1.19" - bigg.reaction: "SERD_L" - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce00290" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00260" + - "sce00270" + - "sce00290" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00220" - metanetx.reaction: "MNXR104339" - pmid: "2194168" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0690" - - name: "L-serine dehydrogenase" - - metabolites: !!omap - - s_0794: 1 - - s_0960: 1 - - s_1039: -1 - - s_1207: -1 - - s_1212: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR226C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0690" + - name: "L-serine dehydrogenase" + - metabolites: !!omap + - s_0794: 1 + - s_0960: 1 + - s_1039: -1 + - s_1207: -1 + - s_1212: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR226C" + - eccodes: "1.1.1.381" + - references: "12535615" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.381" - bigg.reaction: "LSERDHr" - kegg.pathway: - - "sce00240" - - "sce00260" + - "sce00240" + - "sce00260" - kegg.reaction: "R06126" - metanetx.reaction: "MNXR101242" - pmid: "12535615" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0691" - - name: "L-sorbitol dehydrogenase (L-sorbose-producing)" - - metabolites: !!omap - - s_0794: 1 - - s_0989: -1 - - s_1043: 1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR159W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0691" + - name: "L-sorbitol dehydrogenase (L-sorbose-producing)" + - metabolites: !!omap + - s_0794: 1 + - s_0989: -1 + - s_1043: 1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR159W" + - eccodes: "1.1.1.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.14" - bigg.reaction: "SBTD_L" - kegg.pathway: - - "sce00040" - - "sce00051" + - "sce00040" + - "sce00051" - metanetx.reaction: "MNXR104284" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0692" - - name: "L-threonine deaminase" - - metabolites: !!omap - - s_0178: 1 - - s_0419: 1 - - s_1045: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL064C" - - annotation: !!omap - - ec-code: - - "4.3.1.17" - - "4.3.1.19" + - confidence_score: 2 + - !!omap + - id: "r_0692" + - name: "L-threonine deaminase" + - metabolites: !!omap + - s_0178: 1 + - s_0419: 1 + - s_1045: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL064C" + - eccodes: "4.3.1.17; 4.3.1.19" + - references: "1628804" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.3.1.17; 4.3.1.19" - bigg.reaction: "THRD_L" - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce00290" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00260" + - "sce00270" + - "sce00290" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00996" - metanetx.reaction: "MNXR104714" - pmid: "1628804" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0693" - - name: "L-threonine deaminase" - - metabolites: !!omap - - s_0179: 1 - - s_0421: 1 - - s_1047: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER086W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0693" + - name: "L-threonine deaminase" + - metabolites: !!omap + - s_0179: 1 + - s_0421: 1 + - s_1047: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER086W" + - eccodes: "4.3.1.19" + - references: "3289762" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.3.1.19" - bigg.reaction: "THRD_Lm" - kegg.pathway: - - "sce00260" - - "sce00290" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00260" + - "sce00290" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00996" - metanetx.reaction: "MNXR104714" - pmid: "3289762" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0694" - - name: "L-tryptophan:oxygen 2,3-oxidoreductase (decyclizing)" - - metabolites: !!omap - - s_1048: -1 - - s_1195: 1 - - s_1275: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR078W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0694" + - name: "L-tryptophan:oxygen 2,3-oxidoreductase (decyclizing)" + - metabolites: !!omap + - s_1048: -1 + - s_1195: 1 + - s_1275: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR078W" + - eccodes: "1.13.11.52" + - references: "12062417" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.13.11.52" - bigg.reaction: "TRPO2" - kegg.pathway: "sce00380" @@ -42338,153 +44348,183 @@ - metanetx.reaction: "MNXR104944" - pmid: "12062417" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0695" - - name: "L-tyrosine N-formyltransferase" - - metabolites: !!omap - - s_0120: -1 - - s_0794: 1 - - s_1051: -1 - - s_1196: 1 - - s_1487: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR403W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0695" + - name: "L-tyrosine N-formyltransferase" + - metabolites: !!omap + - s_0120: -1 + - s_0794: 1 + - s_1051: -1 + - s_1196: 1 + - s_1487: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR403W" + - eccodes: "" + - references: "8706696" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "TYRNFT" - metanetx.reaction: "MNXR104994" - pmid: "8706696" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0696" - - name: "lactaldehyde dehydrogenase" - - metabolites: !!omap - - s_0062: -1 - - s_0063: 1 - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL151W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0696" + - name: "lactaldehyde dehydrogenase" + - metabolites: !!omap + - s_0062: -1 + - s_0063: 1 + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL151W" + - eccodes: "" + - references: "3908097" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "LCADi" - kegg.reaction: "R01446" - metanetx.reaction: "MNXR101018" - pmid: "3908097" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0697" - - name: "lactoylglutathione lyase" - - metabolites: !!omap - - s_0033: 1 - - s_0750: -1 - - s_1151: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML004C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0697" + - name: "lactoylglutathione lyase" + - metabolites: !!omap + - s_0033: 1 + - s_0750: -1 + - s_1151: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML004C" + - eccodes: "4.4.1.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.4.1.5" - bigg.reaction: "LGTHL" - kegg.pathway: "sce00620" - kegg.reaction: "R02530" - metanetx.reaction: "MNXR100355" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0698" - - name: "lanosterol synthase" - - metabolites: !!omap - - s_0037: -1 - - s_1059: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR072W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0698" + - name: "lanosterol synthase" + - metabolites: !!omap + - s_0037: -1 + - s_1059: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR072W" + - eccodes: "5.4.99.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.4.99.7" - bigg.reaction: "LNSTLS" - kegg.pathway: - - "sce00100" - - "sce01110" - - "sce01130" + - "sce00100" + - "sce01110" + - "sce01130" - kegg.reaction: "R03199" - metanetx.reaction: "MNXR101117" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0699" - - name: "leucine transaminase" - - metabolites: !!omap - - s_0180: -1 - - s_0291: 1 - - s_0991: 1 - - s_1021: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR148W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0699" + - name: "leucine transaminase" + - metabolites: !!omap + - s_0180: -1 + - s_0291: 1 + - s_0991: 1 + - s_1021: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR148W" + - eccodes: "2.6.1.42" + - references: "9748245" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "LEUTA" - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01090" - metanetx.reaction: "MNXR96229" - pmid: "9748245" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0700" - - name: "leucine transaminase" - - metabolites: !!omap - - s_0182: -1 - - s_0292: 1 - - s_0993: 1 - - s_1023: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR208W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0700" + - name: "leucine transaminase" + - metabolites: !!omap + - s_0182: -1 + - s_0292: 1 + - s_0993: 1 + - s_1023: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR208W" + - eccodes: "2.6.1.42" + - references: "8798704" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "LEUTAm" - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01090" - metanetx.reaction: "MNXR96229" - pmid: "8798704" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0701" - - name: "leucyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_1021: -1 - - s_1077: 1 - - s_1598: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL160W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0701" + - name: "leucyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_1021: -1 + - s_1077: 1 + - s_1598: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL160W" + - eccodes: "6.1.1.4" + - references: "9742237" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.4" - bigg.reaction: "LEUTRS" - kegg.pathway: "sce00970" @@ -42492,21 +44532,25 @@ - metanetx.reaction: "MNXR101053" - pmid: "9742237" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0702" - - name: "leucyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0437: -1 - - s_0636: 1 - - s_1023: -1 - - s_1078: 1 - - s_1599: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR382C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0702" + - name: "leucyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0437: -1 + - s_0636: 1 + - s_1023: -1 + - s_1078: 1 + - s_1599: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR382C" + - eccodes: "6.1.1.4" + - references: "1990003" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.4" - bigg.reaction: "LEUTRSm" - kegg.pathway: "sce00970" @@ -42514,116 +44558,144 @@ - metanetx.reaction: "MNXR101053" - pmid: "1990003" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0703" - - name: "leukotriene A4 hydrolase" - - metabolites: !!omap - - s_0013: 1 - - s_0803: -1 - - s_1079: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL045W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0703" + - name: "leukotriene A4 hydrolase" + - metabolites: !!omap + - s_0013: 1 + - s_0803: -1 + - s_1079: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL045W" + - eccodes: "3.3.2.6" + - references: "11601994" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.3.2.6" - pmid: "11601994" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0704" - - name: "leukotriene A4 hydrolase" - - metabolites: !!omap - - s_0014: 1 - - s_0808: -1 - - s_1080: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL045W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0704" + - name: "leukotriene A4 hydrolase" + - metabolites: !!omap + - s_0014: 1 + - s_0808: -1 + - s_1080: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL045W" + - eccodes: "3.3.2.6" + - references: "11601994" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.3.2.6" - pmid: "11601994" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0705" - - name: "leukotriene A4 hydrolase" - - metabolites: !!omap - - s_0608: 1 - - s_0803: -1 - - s_1079: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL045W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0705" + - name: "leukotriene A4 hydrolase" + - metabolites: !!omap + - s_0608: 1 + - s_0803: -1 + - s_1079: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL045W" + - eccodes: "3.3.2.6" + - references: "11601994" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.3.2.6" - pmid: "11601994" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0706" - - name: "leukotriene A4 hydrolase" - - metabolites: !!omap - - s_0609: 1 - - s_0808: -1 - - s_1080: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL045W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0706" + - name: "leukotriene A4 hydrolase" + - metabolites: !!omap + - s_0609: 1 + - s_0808: -1 + - s_1080: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL045W" + - eccodes: "3.3.2.6" + - references: "11601994" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.3.2.6" - pmid: "11601994" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0707" - - name: "leukotriene A4 hydrolase" - - metabolites: !!omap - - s_0803: -1 - - s_1079: -1 - - s_1081: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL045W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0707" + - name: "leukotriene A4 hydrolase" + - metabolites: !!omap + - s_0803: -1 + - s_1079: -1 + - s_1081: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL045W" + - eccodes: "3.3.2.6" + - references: "11601994" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.3.2.6" - bigg.reaction: "LTA4H" - kegg.reaction: "R03057" - metanetx.reaction: "MNXR107919" - pmid: "11601994" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0708" - - name: "leukotriene A4 hydrolase" - - metabolites: !!omap - - s_0808: -1 - - s_1080: -1 - - s_1082: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL045W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0708" + - name: "leukotriene A4 hydrolase" + - metabolites: !!omap + - s_0808: -1 + - s_1080: -1 + - s_1082: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL045W" + - eccodes: "3.3.2.6" + - references: "11601994" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.3.2.6" - kegg.reaction: "R03057" - metanetx.reaction: "MNXR107919" - pmid: "11601994" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0711" - - name: "lysyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_1025: -1 - - s_1099: 1 - - s_1600: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR037W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0711" + - name: "lysyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_1025: -1 + - s_1099: 1 + - s_1600: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR037W" + - eccodes: "6.1.1.6" + - references: "2903861" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.6" - bigg.reaction: "LYSTRS" - kegg.pathway: "sce00970" @@ -42631,21 +44703,25 @@ - metanetx.reaction: "MNXR101264" - pmid: "2903861" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0712" - - name: "lysyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0437: -1 - - s_0636: 1 - - s_1027: -1 - - s_1100: 1 - - s_1601: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL073W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0712" + - name: "lysyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0437: -1 + - s_0636: 1 + - s_1027: -1 + - s_1100: 1 + - s_1601: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL073W" + - eccodes: "6.1.1.6" + - references: "2016746" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.6" - bigg.reaction: "LYSTRSm" - kegg.pathway: "sce00970" @@ -42653,923 +44729,1049 @@ - metanetx.reaction: "MNXR101264" - pmid: "2016746" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0713" - - name: "malate dehydrogenase" - - metabolites: !!omap - - s_0068: -1 - - s_0799: 1 - - s_1200: -1 - - s_1205: 1 - - s_1273: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL085W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0713" + - name: "malate dehydrogenase" + - metabolites: !!omap + - s_0068: -1 + - s_0799: 1 + - s_1200: -1 + - s_1205: 1 + - s_1273: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL085W" + - eccodes: "1.1.1.37" + - references: "9175438" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.37" - bigg.reaction: "MDHm" - kegg.pathway: - - "sce00020" - - "sce00270" - - "sce00620" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00020" + - "sce00270" + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00342" - metanetx.reaction: "MNXR101439" - pmid: "9175438" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0714" - - name: "malate dehydrogenase, cytoplasmic" - - metabolites: !!omap - - s_0066: -1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_1271: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOL126C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0714" + - name: "malate dehydrogenase, cytoplasmic" + - metabolites: !!omap + - s_0066: -1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_1271: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOL126C" + - eccodes: "1.1.1.37" + - references: "11914276" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.37" - bigg.reaction: "MDH" - kegg.pathway: - - "sce00020" - - "sce00270" - - "sce00620" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00020" + - "sce00270" + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00342" - metanetx.reaction: "MNXR101439" - pmid: "11914276" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0715" - - name: "malate dehydrogenase, peroxisomal" - - metabolites: !!omap - - s_0069: -1 - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_1274: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL078C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0715" + - name: "malate dehydrogenase, peroxisomal" + - metabolites: !!omap + - s_0069: -1 + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_1274: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL078C" + - eccodes: "1.1.1.37" + - references: "9175438" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.37" - bigg.reaction: "MDHp" - kegg.pathway: - - "sce00020" - - "sce00270" - - "sce00620" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00020" + - "sce00270" + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00342" - metanetx.reaction: "MNXR101439" - pmid: "9175438" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0716" - - name: "malate synthase" - - metabolites: !!omap - - s_0066: 1 - - s_0373: -1 - - s_0529: 1 - - s_0779: -1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIR031C or YNL117W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0716" + - name: "malate synthase" + - metabolites: !!omap + - s_0066: 1 + - s_0373: -1 + - s_0529: 1 + - s_0779: -1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIR031C or YNL117W" + - eccodes: "2.3.3.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.3.9" - bigg.reaction: "MALS" - kegg.pathway: - - "sce00620" - - "sce00630" - - "sce01110" - - "sce01200" + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01200" - kegg.reaction: "R00472" - metanetx.reaction: "MNXR101347" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0717" - - name: "malate synthase" - - metabolites: !!omap - - s_0069: 1 - - s_0378: -1 - - s_0534: 1 - - s_0781: -1 - - s_0801: 1 - - s_0809: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL117W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0717" + - name: "malate synthase" + - metabolites: !!omap + - s_0069: 1 + - s_0378: -1 + - s_0534: 1 + - s_0781: -1 + - s_0801: 1 + - s_0809: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL117W" + - eccodes: "2.3.3.9" + - references: "11846793" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.3.9" - bigg.reaction: "MALSp" - kegg.pathway: - - "sce00620" - - "sce00630" - - "sce01110" - - "sce01200" + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01200" - kegg.reaction: "R00472" - metanetx.reaction: "MNXR101347" - pmid: "11846793" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0718" - - name: "malic enzyme (NAD)" - - metabolites: !!omap - - s_0068: -1 - - s_0460: 1 - - s_1200: -1 - - s_1205: 1 - - s_1401: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL029C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0718" + - name: "malic enzyme (NAD)" + - metabolites: !!omap + - s_0068: -1 + - s_0460: 1 + - s_1200: -1 + - s_1205: 1 + - s_1401: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL029C" + - eccodes: "1.1.1.38" + - references: "9603875; 15491864; 22851014" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.38" - bigg.reaction: "ME1m" - kegg.pathway: - - "sce00620" - - "sce01200" + - "sce00620" + - "sce01200" - kegg.reaction: "R00214" - metanetx.reaction: "MNXR101446" - pmid: - - "9603875" - - "15491864" - - "22851014" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0719" - - name: "malic enzyme (NADP)" - - metabolites: !!omap - - s_0068: -1 - - s_0460: 1 - - s_1210: -1 - - s_1214: 1 - - s_1401: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL029C" - - annotation: !!omap + - "9603875" + - "15491864" + - "22851014" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0719" + - name: "malic enzyme (NADP)" + - metabolites: !!omap + - s_0068: -1 + - s_0460: 1 + - s_1210: -1 + - s_1214: 1 + - s_1401: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL029C" + - eccodes: "1.1.1.38" + - references: "9603875; 15491864; 22851014" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.38" - bigg.reaction: "ME2m" - kegg.pathway: - - "sce00620" - - "sce01200" + - "sce00620" + - "sce01200" - kegg.reaction: "R00214" - metanetx.reaction: "MNXR101446" - pmid: - - "9603875" - - "15491864" - - "22851014" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0721" - - name: "malonyl-CoA-ACP transacylase" - - metabolites: !!omap - - s_0465: 1 - - s_0532: 1 - - s_1104: -1 - - s_1845: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL192C and YOR221C" - - annotation: !!omap + - "9603875" + - "15491864" + - "22851014" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0721" + - name: "malonyl-CoA-ACP transacylase" + - metabolites: !!omap + - s_0465: 1 + - s_0532: 1 + - s_1104: -1 + - s_1845: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL192C and YOR221C" + - eccodes: "2.3.1.39" + - references: "15387819" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.39" - bigg.reaction: "MCOATAm" - kegg.pathway: - - "sce00061" - - "sce00190" - - "sce01130" - - "sce01212" + - "sce00061" + - "sce00190" + - "sce01130" + - "sce01212" - kegg.reaction: "R01626" - metanetx.reaction: "MNXR101421" - pmid: "15387819" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0722" - - name: "mannose-1-phosphate guanylyltransferase" - - metabolites: !!omap - - s_0573: -1 - - s_0633: 1 - - s_0743: 1 - - s_0785: -1 - - s_0794: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL055C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0722" + - name: "mannose-1-phosphate guanylyltransferase" + - metabolites: !!omap + - s_0573: -1 + - s_0633: 1 + - s_0743: 1 + - s_0785: -1 + - s_0794: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL055C" + - eccodes: "2.7.7.13" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.13" - bigg.reaction: "MAN1PT" - kegg.pathway: - - "sce00051" - - "sce00520" - - "sce01110" + - "sce00051" + - "sce00520" + - "sce01110" - kegg.reaction: "R00885" - metanetx.reaction: "MNXR101375" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0723" - - name: "mannose-6-phosphate isomerase" - - metabolites: !!omap - - s_0557: 1 - - s_0574: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER003C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0723" + - name: "mannose-6-phosphate isomerase" + - metabolites: !!omap + - s_0557: 1 + - s_0574: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER003C" + - eccodes: "5.3.1.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.1.8" - bigg.reaction: "MAN6PI" - kegg.pathway: - - "sce00051" - - "sce00520" - - "sce01110" - - "sce01130" + - "sce00051" + - "sce00520" + - "sce01110" + - "sce01130" - kegg.reaction: "R00772" - metanetx.reaction: "MNXR106679" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0724" - - name: "methenyltetrahydrifikate cyclohydrolase" - - metabolites: !!omap - - s_0121: 1 - - s_0305: -1 - - s_0799: 1 - - s_0807: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR084W" - - annotation: !!omap - - ec-code: - - "1.5.1.5" - - "3.5.4.9" - - "6.3.4.3" + - confidence_score: 2 + - !!omap + - id: "r_0724" + - name: "methenyltetrahydrifikate cyclohydrolase" + - metabolites: !!omap + - s_0121: 1 + - s_0305: -1 + - s_0799: 1 + - s_0807: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR084W" + - eccodes: "1.5.1.5; 3.5.4.9; 6.3.4.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - bigg.reaction: "MTHFCm" - kegg.pathway: "sce00670" - kegg.reaction: "R01655" - metanetx.reaction: "MNXR101748" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0725" - - name: "methenyltetrahydrofolate cyclohydrolase" - - metabolites: !!omap - - s_0120: 1 - - s_0304: -1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR204W" - - annotation: !!omap - - ec-code: - - "1.5.1.5" - - "3.5.4.9" - - "6.3.4.3" + - confidence_score: 2 + - !!omap + - id: "r_0725" + - name: "methenyltetrahydrofolate cyclohydrolase" + - metabolites: !!omap + - s_0120: 1 + - s_0304: -1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR204W" + - eccodes: "1.5.1.5; 3.5.4.9; 6.3.4.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - bigg.reaction: "MTHFC" - kegg.pathway: "sce00670" - kegg.reaction: "R01655" - metanetx.reaction: "MNXR101748" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0726" - - name: "methionine adenosyltransferase" - - metabolites: !!omap - - s_0434: -1 - - s_0633: 1 - - s_0803: -1 - - s_1029: -1 - - s_1322: 1 - - s_1416: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR502C or YLR180W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0726" + - name: "methionine adenosyltransferase" + - metabolites: !!omap + - s_0434: -1 + - s_0633: 1 + - s_0803: -1 + - s_1029: -1 + - s_1322: 1 + - s_1416: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR502C or YLR180W" + - eccodes: "2.5.1.6" + - references: "194884" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.6" - bigg.reaction: "METAT" - kegg.pathway: - - "sce00270" - - "sce01110" - - "sce01230" + - "sce00270" + - "sce01110" + - "sce01230" - kegg.reaction: "R00177" - metanetx.reaction: "MNXR101407" - pmid: "194884" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0727" - - name: "methionine synthase" - - metabolites: !!omap - - s_0322: -1 - - s_1012: -1 - - s_1029: 1 - - s_1487: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER091C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0727" + - name: "methionine synthase" + - metabolites: !!omap + - s_0322: -1 + - s_1012: -1 + - s_1029: 1 + - s_1487: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER091C" + - eccodes: "2.1.1.14" + - references: "16083849" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.14" - bigg.reaction: "METS" - kegg.pathway: - - "sce00270" - - "sce00450" - - "sce01110" - - "sce01230" + - "sce00270" + - "sce00450" + - "sce01110" + - "sce01230" - kegg.reaction: "R00946" - metanetx.reaction: "MNXR101481" - pmid: "16083849" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0728" - - name: "methionyl-tRNA formyltransferase" - - metabolites: !!omap - - s_0121: -1 - - s_0713: 1 - - s_0799: 1 - - s_1149: -1 - - s_1488: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL013W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0728" + - name: "methionyl-tRNA formyltransferase" + - metabolites: !!omap + - s_0121: -1 + - s_0713: 1 + - s_0799: 1 + - s_1149: -1 + - s_1488: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL013W" + - eccodes: "2.1.2.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.2.9" - bigg.reaction: "FMETTRSm" - kegg.pathway: - - "sce00670" - - "sce00970" + - "sce00670" + - "sce00970" - kegg.reaction: "R03940" - metanetx.reaction: "MNXR99604" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0729" - - name: "methionyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_1029: -1 - - s_1148: 1 - - s_1602: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR264C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0729" + - name: "methionyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_1029: -1 + - s_1148: 1 + - s_1602: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR264C" + - eccodes: "6.1.1.10" + - references: "6304034" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.10" - bigg.reaction: "METTRS" - kegg.pathway: - - "sce00450" - - "sce00970" + - "sce00450" + - "sce00970" - kegg.reaction: "R03659" - metanetx.reaction: "MNXR101488" - pmid: "6304034" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0730" - - name: "methionyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0437: -1 - - s_0636: 1 - - s_1031: -1 - - s_1149: 1 - - s_1603: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR171C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0730" + - name: "methionyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0437: -1 + - s_0636: 1 + - s_1031: -1 + - s_1149: 1 + - s_1603: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR171C" + - eccodes: "6.1.1.10" + - references: "2645139" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.10" - bigg.reaction: "METTRSm" - kegg.pathway: - - "sce00450" - - "sce00970" + - "sce00450" + - "sce00970" - kegg.reaction: "R03659" - metanetx.reaction: "MNXR101488" - pmid: "2645139" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0731" - - name: "methylenetetrahydrofolate dehydrogenase (NAD)" - - metabolites: !!omap - - s_0304: 1 - - s_0306: -1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR080W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0731" + - name: "methylenetetrahydrofolate dehydrogenase (NAD)" + - metabolites: !!omap + - s_0304: 1 + - s_0306: -1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR080W" + - eccodes: "1.5.1.15" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.1.15" - bigg.reaction: "MTHFD2i" - kegg.pathway: "sce00670" - kegg.reaction: "R01218" - metanetx.reaction: "MNXR101750" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0732" - - name: "methylenetetrahydrofolate dehydrogenase (NADP)" - - metabolites: !!omap - - s_0304: 1 - - s_0306: -1 - - s_1207: -1 - - s_1212: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR204W" - - annotation: !!omap - - ec-code: - - "1.5.1.5" - - "3.5.4.9" - - "6.3.4.3" + - confidence_score: 2 + - !!omap + - id: "r_0732" + - name: "methylenetetrahydrofolate dehydrogenase (NADP)" + - metabolites: !!omap + - s_0304: 1 + - s_0306: -1 + - s_1207: -1 + - s_1212: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR204W" + - eccodes: "1.5.1.5; 3.5.4.9; 6.3.4.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - bigg.reaction: "MTHFD" - kegg.pathway: "sce00670" - kegg.reaction: "R01220" - metanetx.reaction: "MNXR101749" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0733" - - name: "methylenetetrahydrofolate dehydrogenase (NADP)" - - metabolites: !!omap - - s_0305: 1 - - s_0307: -1 - - s_1210: -1 - - s_1214: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR084W" - - annotation: !!omap - - ec-code: - - "1.5.1.5" - - "3.5.4.9" - - "6.3.4.3" + - confidence_score: 2 + - !!omap + - id: "r_0733" + - name: "methylenetetrahydrofolate dehydrogenase (NADP)" + - metabolites: !!omap + - s_0305: 1 + - s_0307: -1 + - s_1210: -1 + - s_1214: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR084W" + - eccodes: "1.5.1.5; 3.5.4.9; 6.3.4.3" + - references: "10871621; 1916088; 8852837" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - bigg.reaction: "MTHFDm" - kegg.pathway: "sce00670" - kegg.reaction: "R01220" - metanetx.reaction: "MNXR101749" - pmid: - - "10871621" - - "1916088" - - "8852837" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0734" - - name: "methylisocitrate lyase" - - metabolites: !!omap - - s_0012: -1 - - s_1401: 1 - - s_1460: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR006C" - - annotation: !!omap + - "10871621" + - "1916088" + - "8852837" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0734" + - name: "methylisocitrate lyase" + - metabolites: !!omap + - s_0012: -1 + - s_1401: 1 + - s_1460: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR006C" + - eccodes: "4.1.3.30" + - references: "16332871" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.3.30" - bigg.reaction: "MCITL2m" - kegg.pathway: - - "sce00630" - - "sce01110" - - "sce01200" + - "sce00630" + - "sce01110" + - "sce01200" - kegg.reaction: "R00409" - metanetx.reaction: "MNXR101415" - pmid: "16332871" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0735" - - name: "mevalonate kinase (atp)" - - metabolites: !!omap - - s_0019: 1 - - s_0028: -1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR208W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0735" + - name: "mevalonate kinase (atp)" + - metabolites: !!omap + - s_0019: 1 + - s_0028: -1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR208W" + - eccodes: "2.7.1.36" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.36" - bigg.reaction: "MEVK1" - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - "sce04146" + - "sce00900" + - "sce01110" + - "sce01130" + - "sce04146" - kegg.reaction: "R02245" - metanetx.reaction: "MNXR101495" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0736" - - name: "mevalonate kinase (ctp)" - - metabolites: !!omap - - s_0019: 1 - - s_0028: -1 - - s_0467: 1 - - s_0539: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR208W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0736" + - name: "mevalonate kinase (ctp)" + - metabolites: !!omap + - s_0019: 1 + - s_0028: -1 + - s_0467: 1 + - s_0539: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR208W" + - eccodes: "2.7.1.36" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.36" - bigg.reaction: "MEVK2" - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - "sce04146" + - "sce00900" + - "sce01110" + - "sce01130" + - "sce04146" - metanetx.reaction: "MNXR101496" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0737" - - name: "mevalonate kinase (gtp)" - - metabolites: !!omap - - s_0019: 1 - - s_0028: -1 - - s_0739: 1 - - s_0785: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR208W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0737" + - name: "mevalonate kinase (gtp)" + - metabolites: !!omap + - s_0019: 1 + - s_0028: -1 + - s_0739: 1 + - s_0785: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR208W" + - eccodes: "2.7.1.36" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.36" - bigg.reaction: "MEVK3" - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - "sce04146" + - "sce00900" + - "sce01110" + - "sce01130" + - "sce04146" - metanetx.reaction: "MNXR101497" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0738" - - name: "mevalonate kinase (UTP)" - - metabolites: !!omap - - s_0019: 1 - - s_0028: -1 - - s_0794: 1 - - s_1538: 1 - - s_1559: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR208W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0738" + - name: "mevalonate kinase (UTP)" + - metabolites: !!omap + - s_0019: 1 + - s_0028: -1 + - s_0794: 1 + - s_1538: 1 + - s_1559: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR208W" + - eccodes: "2.7.1.36" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.36" - bigg.reaction: "MEVK4" - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - "sce04146" + - "sce00900" + - "sce01110" + - "sce01130" + - "sce04146" - metanetx.reaction: "MNXR101498" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0739" - - name: "mevalonate pyrophoshate decarboxylase" - - metabolites: !!omap - - s_0018: -1 - - s_0394: 1 - - s_0434: -1 - - s_0456: 1 - - s_0943: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNR043W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0739" + - name: "mevalonate pyrophoshate decarboxylase" + - metabolites: !!omap + - s_0018: -1 + - s_0394: 1 + - s_0434: -1 + - s_0456: 1 + - s_0943: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNR043W" + - eccodes: "4.1.1.33" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.33" - bigg.reaction: "DPMVD" - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R01121" - metanetx.reaction: "MNXR97776" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0747" - - name: "MIPC synthase" - - metabolites: !!omap - - s_0740: 1 - - s_0744: -1 - - s_0797: 1 - - s_0895: -1 - - s_1117: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - annotation: !!omap - - ec-code: - - "2.-.-.-" - - "2.4.-.-" + - confidence_score: 2 + - !!omap + - id: "r_0747" + - name: "MIPC synthase" + - metabolites: !!omap + - s_0740: 1 + - s_0744: -1 + - s_0797: 1 + - s_0895: -1 + - s_1117: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" + - eccodes: "2.-.-.-; 2.4.-.-" + - references: "12954640; 18296751" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.-.-.-; 2.4.-.-" - metanetx.reaction: "MNXR126697" - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0748" - - name: "MIPC synthase" - - metabolites: !!omap - - s_0740: 1 - - s_0744: -1 - - s_0797: 1 - - s_0898: -1 - - s_1120: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - annotation: !!omap - - ec-code: - - "2.-.-.-" - - "2.4.-.-" + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0748" + - name: "MIPC synthase" + - metabolites: !!omap + - s_0740: 1 + - s_0744: -1 + - s_0797: 1 + - s_0898: -1 + - s_1120: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" + - eccodes: "2.-.-.-; 2.4.-.-" + - references: "12954640; 18296751" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.-.-.-; 2.4.-.-" - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0749" - - name: "MIPC synthase" - - metabolites: !!omap - - s_0740: 1 - - s_0744: -1 - - s_0797: 1 - - s_0907: -1 - - s_1129: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - annotation: !!omap - - ec-code: - - "2.-.-.-" - - "2.4.-.-" + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0749" + - name: "MIPC synthase" + - metabolites: !!omap + - s_0740: 1 + - s_0744: -1 + - s_0797: 1 + - s_0907: -1 + - s_1129: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" + - eccodes: "2.-.-.-; 2.4.-.-" + - references: "12954640; 18296751" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.-.-.-; 2.4.-.-" - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0750" - - name: "MIPC synthase" - - metabolites: !!omap - - s_0740: 1 - - s_0744: -1 - - s_0797: 1 - - s_0910: -1 - - s_1132: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - annotation: !!omap - - ec-code: - - "2.-.-.-" - - "2.4.-.-" + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0750" + - name: "MIPC synthase" + - metabolites: !!omap + - s_0740: 1 + - s_0744: -1 + - s_0797: 1 + - s_0910: -1 + - s_1132: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" + - eccodes: "2.-.-.-; 2.4.-.-" + - references: "12954640; 18296751" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.-.-.-; 2.4.-.-" - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0751" - - name: "MIPC synthase" - - metabolites: !!omap - - s_0740: 1 - - s_0744: -1 - - s_0797: 1 - - s_0901: -1 - - s_1123: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - annotation: !!omap - - ec-code: - - "2.-.-.-" - - "2.4.-.-" + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0751" + - name: "MIPC synthase" + - metabolites: !!omap + - s_0740: 1 + - s_0744: -1 + - s_0797: 1 + - s_0901: -1 + - s_1123: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" + - eccodes: "2.-.-.-; 2.4.-.-" + - references: "12954640; 18296751" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.-.-.-; 2.4.-.-" - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0752" - - name: "MIPC synthase" - - metabolites: !!omap - - s_0740: 1 - - s_0744: -1 - - s_0797: 1 - - s_0904: -1 - - s_1126: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - annotation: !!omap - - ec-code: - - "2.-.-.-" - - "2.4.-.-" + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0752" + - name: "MIPC synthase" + - metabolites: !!omap + - s_0740: 1 + - s_0744: -1 + - s_0797: 1 + - s_0904: -1 + - s_1126: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" + - eccodes: "2.-.-.-; 2.4.-.-" + - references: "12954640; 18296751" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.-.-.-; 2.4.-.-" - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0753" - - name: "MIPC synthase" - - metabolites: !!omap - - s_0740: 1 - - s_0744: -1 - - s_0797: 1 - - s_0913: -1 - - s_1135: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - annotation: !!omap - - ec-code: - - "2.-.-.-" - - "2.4.-.-" + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0753" + - name: "MIPC synthase" + - metabolites: !!omap + - s_0740: 1 + - s_0744: -1 + - s_0797: 1 + - s_0913: -1 + - s_1135: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" + - eccodes: "2.-.-.-; 2.4.-.-" + - references: "12954640; 18296751" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.-.-.-; 2.4.-.-" - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0754" - - name: "MIPC synthase" - - metabolites: !!omap - - s_0740: 1 - - s_0744: -1 - - s_0797: 1 - - s_0916: -1 - - s_1138: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - annotation: !!omap - - ec-code: - - "2.-.-.-" - - "2.4.-.-" + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0754" + - name: "MIPC synthase" + - metabolites: !!omap + - s_0740: 1 + - s_0744: -1 + - s_0797: 1 + - s_0916: -1 + - s_1138: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" + - eccodes: "2.-.-.-; 2.4.-.-" + - references: "12954640; 18296751" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.-.-.-; 2.4.-.-" - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0755" - - name: "MIPC synthase" - - metabolites: !!omap - - s_0740: 1 - - s_0744: -1 - - s_0797: 1 - - s_0919: -1 - - s_1141: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - annotation: !!omap - - ec-code: - - "2.-.-.-" - - "2.4.-.-" + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0755" + - name: "MIPC synthase" + - metabolites: !!omap + - s_0740: 1 + - s_0744: -1 + - s_0797: 1 + - s_0919: -1 + - s_1141: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" + - eccodes: "2.-.-.-; 2.4.-.-" + - references: "12954640; 18296751" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.-.-.-; 2.4.-.-" - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0756" - - name: "MIPC synthase" - - metabolites: !!omap - - s_0740: 1 - - s_0744: -1 - - s_0797: 1 - - s_0922: -1 - - s_1144: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - annotation: !!omap - - ec-code: - - "2.-.-.-" - - "2.4.-.-" + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0756" + - name: "MIPC synthase" + - metabolites: !!omap + - s_0740: 1 + - s_0744: -1 + - s_0797: 1 + - s_0922: -1 + - s_1144: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" + - eccodes: "2.-.-.-; 2.4.-.-" + - references: "12954640; 18296751" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.-.-.-; 2.4.-.-" - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0757" - - name: "myo-inositol 1-phosphatase" - - metabolites: !!omap - - s_0126: -1 - - s_0803: -1 - - s_1153: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR287W or YHR046C" - - annotation: !!omap + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0757" + - name: "myo-inositol 1-phosphatase" + - metabolites: !!omap + - s_0126: -1 + - s_0803: -1 + - s_1153: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR287W or YHR046C" + - eccodes: "3.1.3.25" + - references: "10844654" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.25" - bigg.reaction: "MI1PP" - kegg.pathway: - - "sce00562" - - "sce04070" + - "sce00562" + - "sce04070" - kegg.reaction: "R01185" - metanetx.reaction: "MNXR101570" - pmid: "10844654" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0758" - - name: "myo-inositol-1-phosphate synthase" - - metabolites: !!omap - - s_0126: 1 - - s_0568: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL153C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0758" + - name: "myo-inositol-1-phosphate synthase" + - metabolites: !!omap + - s_0126: 1 + - s_0568: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL153C" + - eccodes: "5.5.1.4" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.5.1.4" - bigg.reaction: "MI1PS" - kegg.pathway: - - "sce00562" - - "sce01130" + - "sce00562" + - "sce01130" - metanetx.reaction: "MNXR101571" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0759" - - name: "N-acetyl-g-glutamyl-phosphate reductase" - - metabolites: !!omap - - s_0145: 1 - - s_0799: -1 - - s_1191: -1 - - s_1210: 1 - - s_1214: -1 - - s_1326: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER069W" - - annotation: !!omap - - ec-code: - - "1.2.1.38" - - "2.7.2.8" + - confidence_score: 2 + - !!omap + - id: "r_0759" + - name: "N-acetyl-g-glutamyl-phosphate reductase" + - metabolites: !!omap + - s_0145: 1 + - s_0799: -1 + - s_1191: -1 + - s_1210: 1 + - s_1214: -1 + - s_1326: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER069W" + - eccodes: "1.2.1.38; 2.7.2.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.2.1.38; 2.7.2.8" - bigg.reaction: "AGPRim" - kegg.pathway: - - "sce00220" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R03443" - metanetx.reaction: "MNXR95530" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0760" - - name: "N-acetylglucosamine-6-phosphate synthase" - - metabolites: !!omap - - s_0373: -1 - - s_0412: -1 - - s_0529: 1 - - s_0794: 1 - - s_1190: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFL017C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0760" + - name: "N-acetylglucosamine-6-phosphate synthase" + - metabolites: !!omap + - s_0373: -1 + - s_0412: -1 + - s_0529: 1 + - s_0794: 1 + - s_1190: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFL017C" + - eccodes: "2.3.1.4" + - references: "9867860" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.4" - bigg.reaction: "ACGAM6PS" - kegg.pathway: "sce00520" @@ -43577,185 +45779,211 @@ - metanetx.reaction: "MNXR95248" - pmid: "9867860" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0761" - - name: "N-acteylglutamate synthase" - - metabolites: !!omap - - s_0376: -1 - - s_0532: 1 - - s_0799: 1 - - s_0993: -1 - - s_1192: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL071W or YMR062C" - - annotation: !!omap - - ec-code: - - "2.3.1.1" - - "2.3.1.35" + - confidence_score: 3 + - !!omap + - id: "r_0761" + - name: "N-acteylglutamate synthase" + - metabolites: !!omap + - s_0376: -1 + - s_0532: 1 + - s_0799: 1 + - s_0993: -1 + - s_1192: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL071W or YMR062C" + - eccodes: "2.3.1.1; 2.3.1.35" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.1; 2.3.1.35" - bigg.reaction: "ACGSm" - kegg.pathway: - - "sce00220" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00259" - metanetx.reaction: "MNXR95259" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0762" - - name: "N-formyl-L-kynurenine amidohydrolase" - - metabolites: !!omap - - s_0722: 1 - - s_0794: 1 - - s_0803: -1 - - s_1020: 1 - - s_1195: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR428C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0762" + - name: "N-formyl-L-kynurenine amidohydrolase" + - metabolites: !!omap + - s_0722: 1 + - s_0794: 1 + - s_0803: -1 + - s_1020: 1 + - s_1195: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR428C" + - eccodes: "3.5.1.9" + - references: "18205391" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.9" - bigg.reaction: "FKYNH" - kegg.pathway: - - "sce00380" - - "sce00630" + - "sce00380" + - "sce00630" - kegg.reaction: "R01959" - metanetx.reaction: "MNXR99596" - pmid: "18205391" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0763" - - name: "N-formyltyrosine oxidase" - - metabolites: !!omap - - s_0794: -1 - - s_1185: 1 - - s_1196: -2 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR402C and YDR403W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0763" + - name: "N-formyltyrosine oxidase" + - metabolites: !!omap + - s_0794: -1 + - s_1185: 1 + - s_1196: -2 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR402C and YDR403W" + - eccodes: "1.14.14.-" + - references: "8706696" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.14.-" - kegg.pathway: - - "sce00071" - - "sce00380" + - "sce00071" + - "sce00380" - metanetx.reaction: "MNXR101947" - pmid: "8706696" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0764" - - name: "NAD diphosphatase" - - metabolites: !!omap - - s_0426: 1 - - s_0801: 2 - - s_0809: -1 - - s_1202: -1 - - s_1228: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL067W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0764" + - name: "NAD diphosphatase" + - metabolites: !!omap + - s_0426: 1 + - s_0801: 2 + - s_0809: -1 + - s_1202: -1 + - s_1228: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL067W" + - eccodes: "3.6.1.22" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.22" - bigg.reaction: "NADDPp" - kegg.pathway: - - "sce00760" - - "sce04146" + - "sce00760" + - "sce04146" - kegg.reaction: "R00103" - metanetx.reaction: "MNXR101861" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0765" - - name: "NAD kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_1198: -1 - - s_1207: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YEL041W or YJR049C" - - annotation: !!omap - - ec-code: - - "2.7.1.23" - - "2.7.1.86" + - confidence_score: 2 + - !!omap + - id: "r_0765" + - name: "NAD kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_1198: -1 + - s_1207: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YEL041W or YJR049C" + - eccodes: "2.7.1.23; 2.7.1.86" + - references: "15978040" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.23; 2.7.1.86" - bigg.reaction: "NADK" - kegg.pathway: "sce00760" - kegg.reaction: "R00104" - metanetx.reaction: "MNXR101882" - pmid: "15978040" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0766" - - name: "NAD kinase" - - metabolites: !!omap - - s_0397: 1 - - s_0437: -1 - - s_0799: 1 - - s_1200: -1 - - s_1210: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YEL041W or YJR049C or YPL188W" - - annotation: !!omap - - ec-code: - - "2.7.1.23" - - "2.7.1.86" + - confidence_score: 3 + - !!omap + - id: "r_0766" + - name: "NAD kinase" + - metabolites: !!omap + - s_0397: 1 + - s_0437: -1 + - s_0799: 1 + - s_1200: -1 + - s_1210: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YEL041W or YJR049C or YPL188W" + - eccodes: "2.7.1.23; 2.7.1.86" + - references: "15978040" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.23; 2.7.1.86" - bigg.reaction: "NADKm" - kegg.pathway: "sce00760" - kegg.reaction: "R00104" - metanetx.reaction: "MNXR101882" - pmid: "15978040" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0767" - - name: "NAD nucleosidase nuclear" - - metabolites: !!omap - - s_0402: 1 - - s_0800: 1 - - s_0808: -1 - - s_1201: -1 - - s_1217: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL042C or YDR191W or YOL068C or YOR025W or YPL015C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0767" + - name: "NAD nucleosidase nuclear" + - metabolites: !!omap + - s_0402: 1 + - s_0800: 1 + - s_0808: -1 + - s_1201: -1 + - s_1217: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL042C or YDR191W or YOL068C or YOR025W or YPL015C" + - eccodes: "3.5.1.-" + - references: "17482543" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: - - "sce00760" - - "sce04213" + - "sce00760" + - "sce04213" - kegg.reaction: "R00102" - metanetx.reaction: "MNXR101888" - pmid: "17482543" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0768" - - name: "NAD synthase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0591: -1 - - s_0633: 1 - - s_0794: 1 - - s_0803: -1 - - s_0991: 1 - - s_0999: -1 - - s_1198: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR074W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0768" + - name: "NAD synthase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0591: -1 + - s_0633: 1 + - s_0794: 1 + - s_0803: -1 + - s_0991: 1 + - s_0999: -1 + - s_1198: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR074W" + - eccodes: "6.3.5.1" + - references: "12771147" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.5.1" - bigg.reaction: "NADS2" - kegg.pathway: "sce00760" @@ -43763,1080 +45991,1246 @@ - metanetx.reaction: "MNXR97678" - pmid: "12771147" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0769" - - name: "NAD synthase" - - metabolites: !!omap - - s_0425: 1 - - s_0438: -1 - - s_0593: -1 - - s_0637: 1 - - s_0800: 1 - - s_0808: -1 - - s_0994: 1 - - s_1001: -1 - - s_1201: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR074W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0769" + - name: "NAD synthase" + - metabolites: !!omap + - s_0425: 1 + - s_0438: -1 + - s_0593: -1 + - s_0637: 1 + - s_0800: 1 + - s_0808: -1 + - s_0994: 1 + - s_1001: -1 + - s_1201: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR074W" + - eccodes: "6.3.5.1" + - references: "12771147" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.5.1" - kegg.pathway: "sce00760" - kegg.reaction: "R00257" - metanetx.reaction: "MNXR97678" - pmid: "12771147" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0770" - - name: "NADH dehydrogenase, cytosolic/mitochondrial" - - metabolites: !!omap - - s_0794: -1 - - s_1198: 1 - - s_1203: -1 - - s_1535: 1 - - s_1537: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL085W or YMR145C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0770" + - name: "NADH dehydrogenase, cytosolic/mitochondrial" + - metabolites: !!omap + - s_0794: -1 + - s_1198: 1 + - s_1203: -1 + - s_1535: 1 + - s_1537: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL085W or YMR145C" + - eccodes: "1.6.5.9" + - references: "9733747" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.6.5.9" - bigg.reaction: "NADH2_u6cm" - metanetx.reaction: "MNXR101868" - pmid: "9733747" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0771" - - name: "NADH kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_1203: -1 - - s_1212: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YEL041W or YJR049C" - - annotation: !!omap - - ec-code: - - "2.7.1.23" - - "2.7.1.86" + - confidence_score: 3 + - !!omap + - id: "r_0771" + - name: "NADH kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_1203: -1 + - s_1212: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YEL041W or YJR049C" + - eccodes: "2.7.1.23; 2.7.1.86" + - references: "15978040" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.23; 2.7.1.86" - kegg.pathway: "sce00760" - kegg.reaction: "R00105" - metanetx.reaction: "MNXR106390" - pmid: "15978040" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0772" - - name: "NADH kinase mitochondrial" - - metabolites: !!omap - - s_0397: 1 - - s_0437: -1 - - s_0799: 1 - - s_1205: -1 - - s_1214: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YEL041W or YJR049C or YPL188W" - - annotation: !!omap - - ec-code: - - "2.7.1.23" - - "2.7.1.86" + - confidence_score: 3 + - !!omap + - id: "r_0772" + - name: "NADH kinase mitochondrial" + - metabolites: !!omap + - s_0397: 1 + - s_0437: -1 + - s_0799: 1 + - s_1205: -1 + - s_1214: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YEL041W or YJR049C or YPL188W" + - eccodes: "2.7.1.23; 2.7.1.86" + - references: "15978040" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.23; 2.7.1.86" - kegg.pathway: "sce00760" - kegg.reaction: "R00105" - metanetx.reaction: "MNXR106390" - pmid: "15978040" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0773" - - name: "NADH:ubiquinone oxidoreductase" - - metabolites: !!omap - - s_0799: -1 - - s_1200: 1 - - s_1205: -1 - - s_1535: 1 - - s_1537: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML120C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0773" + - name: "NADH:ubiquinone oxidoreductase" + - metabolites: !!omap + - s_0799: -1 + - s_1200: 1 + - s_1205: -1 + - s_1535: 1 + - s_1537: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML120C" + - eccodes: "1.6.5.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.6.5.9" - bigg.reaction: "NADH2_u6m" - metanetx.reaction: "MNXR101869" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0774" - - name: "NAPRtase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0633: 1 - - s_0794: -1 - - s_1219: -1 - - s_1222: 1 - - s_1322: 1 - - s_1386: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR209C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0774" + - name: "NAPRtase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0633: 1 + - s_0794: -1 + - s_1219: -1 + - s_1222: 1 + - s_1322: 1 + - s_1386: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR209C" + - eccodes: "6.3.4.21" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.4.21" - bigg.reaction: "NAPRT" - kegg.pathway: "sce00760" - kegg.reaction: "R01724" - metanetx.reaction: "MNXR101909" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0775" - - name: "NAPRtase" - - metabolites: !!omap - - s_0397: 1 - - s_0437: -1 - - s_0636: 1 - - s_0799: -1 - - s_1221: -1 - - s_1223: 1 - - s_1326: 1 - - s_1387: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR209C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0775" + - name: "NAPRtase" + - metabolites: !!omap + - s_0397: 1 + - s_0437: -1 + - s_0636: 1 + - s_0799: -1 + - s_1221: -1 + - s_1223: 1 + - s_1326: 1 + - s_1387: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR209C" + - eccodes: "6.3.4.21" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.4.21" - bigg.reaction: "NAPRTm" - kegg.pathway: "sce00760" - kegg.reaction: "R01724" - metanetx.reaction: "MNXR101909" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0781" - - name: "nicotinamidase" - - metabolites: !!omap - - s_0419: 1 - - s_0803: -1 - - s_1216: -1 - - s_1219: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL037C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0781" + - name: "nicotinamidase" + - metabolites: !!omap + - s_0419: 1 + - s_0803: -1 + - s_1216: -1 + - s_1219: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL037C" + - eccodes: "3.5.1.19" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.19" - bigg.reaction: "NNAM" - kegg.pathway: - - "sce00760" - - "sce04213" + - "sce00760" + - "sce04213" - kegg.reaction: "R01268" - metanetx.reaction: "MNXR101977" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0782" - - name: "nicotinamide N-methyltransferase" - - metabolites: !!omap - - s_0087: 1 - - s_1216: -1 - - s_1413: 1 - - s_1416: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR285W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0782" + - name: "nicotinamide N-methyltransferase" + - metabolites: !!omap + - s_0087: 1 + - s_1216: -1 + - s_1413: 1 + - s_1416: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR285W" + - eccodes: "2.1.1.-" + - references: "12736687" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.-" - bigg.reaction: "NNMT" - kegg.reaction: "R01269" - metanetx.reaction: "MNXR101981" - pmid: "12736687" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0783" - - name: "nicotinamide-nucleotide adenylyltransferase" - - metabolites: !!omap - - s_0434: -1 - - s_0633: 1 - - s_0794: -1 - - s_1198: 1 - - s_1224: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL047C or YLR328W" - - annotation: !!omap - - ec-code: - - "2.7.7.1" - - "2.7.7.18" + - confidence_score: 3 + - !!omap + - id: "r_0783" + - name: "nicotinamide-nucleotide adenylyltransferase" + - metabolites: !!omap + - s_0434: -1 + - s_0633: 1 + - s_0794: -1 + - s_1198: 1 + - s_1224: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL047C or YLR328W" + - eccodes: "2.7.7.1; 2.7.7.18" + - references: "15078171" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.7.1; 2.7.7.18" - bigg.reaction: "NMNAT" - kegg.pathway: "sce00760" - kegg.reaction: "R00137" - metanetx.reaction: "MNXR95841" - pmid: "15078171" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0784" - - name: "nicotinamide-nucleotide adenylyltransferase" - - metabolites: !!omap - - s_0438: -1 - - s_0637: 1 - - s_0800: -1 - - s_1201: 1 - - s_1227: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR010W or YLR328W" - - annotation: !!omap - - ec-code: - - "2.7.7.1" - - "2.7.7.18" + - confidence_score: 3 + - !!omap + - id: "r_0784" + - name: "nicotinamide-nucleotide adenylyltransferase" + - metabolites: !!omap + - s_0438: -1 + - s_0637: 1 + - s_0800: -1 + - s_1201: 1 + - s_1227: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR010W or YLR328W" + - eccodes: "2.7.7.1; 2.7.7.18" + - references: "15078171" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.7.1; 2.7.7.18" - bigg.reaction: "NMNATn" - kegg.pathway: "sce00760" - kegg.reaction: "R00137" - metanetx.reaction: "MNXR95841" - pmid: "15078171" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0785" - - name: "nicotinate-nucleotide adenylyltransferase" - - metabolites: !!omap - - s_0434: -1 - - s_0591: 1 - - s_0633: 1 - - s_0794: -1 - - s_1222: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR010W or YLR328W" - - annotation: !!omap - - ec-code: - - "2.7.7.1" - - "2.7.7.18" + - confidence_score: 3 + - !!omap + - id: "r_0785" + - name: "nicotinate-nucleotide adenylyltransferase" + - metabolites: !!omap + - s_0434: -1 + - s_0591: 1 + - s_0633: 1 + - s_0794: -1 + - s_1222: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR010W or YLR328W" + - eccodes: "2.7.7.1; 2.7.7.18" + - references: "15078171" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.7.1; 2.7.7.18" - bigg.reaction: "NNATr" - kegg.pathway: "sce00760" - kegg.reaction: "R03005" - metanetx.reaction: "MNXR101978" - pmid: "15078171" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0786" - - name: "nicotinate-nucleotide diphosphorylase (carboxylating)" - - metabolites: !!omap - - s_0456: 1 - - s_0633: 1 - - s_0794: -2 - - s_1222: 1 - - s_1386: -1 - - s_1403: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR047C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0786" + - name: "nicotinate-nucleotide diphosphorylase (carboxylating)" + - metabolites: !!omap + - s_0456: 1 + - s_0633: 1 + - s_0794: -2 + - s_1222: 1 + - s_1386: -1 + - s_1403: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR047C" + - eccodes: "2.4.2.19" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.19" - bigg.reaction: "NNDPR" - kegg.pathway: "sce00760" - kegg.reaction: "R03348" - metanetx.reaction: "MNXR101980" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0787" - - name: "nicotinate-nucleotide diphosphorylase (carboxylating)" - - metabolites: !!omap - - s_0460: 1 - - s_0636: 1 - - s_0799: -2 - - s_1223: 1 - - s_1387: -1 - - s_1404: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR047C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0787" + - name: "nicotinate-nucleotide diphosphorylase (carboxylating)" + - metabolites: !!omap + - s_0460: 1 + - s_0636: 1 + - s_0799: -2 + - s_1223: 1 + - s_1387: -1 + - s_1404: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR047C" + - eccodes: "2.4.2.19" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.19" - bigg.reaction: "NNDPRm" - kegg.pathway: "sce00760" - kegg.reaction: "R03348" - metanetx.reaction: "MNXR101980" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0788" - - name: "nucleoside diphosphatase" - - metabolites: !!omap - - s_0394: -1 - - s_0423: 1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER005W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0788" + - name: "nucleoside diphosphatase" + - metabolites: !!omap + - s_0394: -1 + - s_0423: 1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER005W" + - eccodes: "3.6.1.5" + - references: "10409709" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NDP1" - kegg.pathway: - - "sce00230" - - "sce00240" + - "sce00230" + - "sce00240" - kegg.reaction: "R00122" - metanetx.reaction: "MNXR96129" - pmid: "10409709" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0789" - - name: "nucleoside diphosphatase" - - metabolites: !!omap - - s_0739: -1 - - s_0782: 1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER005W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0789" + - name: "nucleoside diphosphatase" + - metabolites: !!omap + - s_0739: -1 + - s_0782: 1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER005W" + - eccodes: "3.6.1.5" + - references: "10409709" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NDP3" - kegg.pathway: - - "sce00230" - - "sce00240" + - "sce00230" + - "sce00240" - kegg.reaction: "R00328" - metanetx.reaction: "MNXR101928" - pmid: "10409709" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0790" - - name: "nucleoside diphosphatase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_1538: -1 - - s_1545: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER005W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0790" + - name: "nucleoside diphosphatase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_1538: -1 + - s_1545: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER005W" + - eccodes: "3.6.1.5" + - references: "10409709" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NDP7" - kegg.pathway: - - "sce00230" - - "sce00240" + - "sce00230" + - "sce00240" - kegg.reaction: "R00155" - metanetx.reaction: "MNXR101931" - pmid: "10409709" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0791" - - name: "nucleoside diphosphatase" - - metabolites: !!omap - - s_0797: 1 - - s_0806: -1 - - s_1325: 1 - - s_1539: -1 - - s_1546: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YEL042W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0791" + - name: "nucleoside diphosphatase" + - metabolites: !!omap + - s_0797: 1 + - s_0806: -1 + - s_1325: 1 + - s_1539: -1 + - s_1546: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YEL042W" + - eccodes: "3.6.1.42" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.42" - bigg.reaction: "NDP7g" - kegg.reaction: "R00155" - metanetx.reaction: "MNXR101931" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0792" - - name: "nucleoside diphosphatase" - - metabolites: !!omap - - s_0467: -1 - - s_0526: 1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER005W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0792" + - name: "nucleoside diphosphatase" + - metabolites: !!omap + - s_0467: -1 + - s_0526: 1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER005W" + - eccodes: "3.6.1.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "CDPPH" - kegg.pathway: - - "sce00230" - - "sce00240" + - "sce00230" + - "sce00240" - kegg.reaction: "R00514" - metanetx.reaction: "MNXR96559" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0793" - - name: "nucleoside diphosphatase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_0846: -1 - - s_0849: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER005W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0793" + - name: "nucleoside diphosphatase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_0846: -1 + - s_0849: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER005W" + - eccodes: "3.6.1.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "IDPA" - kegg.pathway: - - "sce00230" - - "sce00240" + - "sce00230" + - "sce00240" - kegg.reaction: "R00961" - metanetx.reaction: "MNXR100807" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0795" - - name: "nucleoside diphosphate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0467: -1 - - s_0539: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL067W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0795" + - name: "nucleoside diphosphate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0467: -1 + - s_0539: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL067W" + - eccodes: "2.7.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK3" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R00570" - metanetx.reaction: "MNXR101936" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0796" - - name: "nucleoside diphosphate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0582: -1 - - s_0586: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL067W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0796" + - name: "nucleoside diphosphate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0582: -1 + - s_0586: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL067W" + - eccodes: "2.7.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK8" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R01137" - metanetx.reaction: "MNXR101940" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0797" - - name: "nucleoside diphosphate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0587: -1 - - s_0590: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL067W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0797" + - name: "nucleoside diphosphate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0587: -1 + - s_0590: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL067W" + - eccodes: "2.7.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK7" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R02326" - metanetx.reaction: "MNXR101939" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0798" - - name: "nucleoside diphosphate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0613: -1 - - s_0617: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL067W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0798" + - name: "nucleoside diphosphate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0613: -1 + - s_0617: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL067W" + - eccodes: "2.7.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK5" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R01857" - metanetx.reaction: "MNXR96118" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0799" - - name: "nucleoside diphosphate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0647: -1 - - s_0650: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL067W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0799" + - name: "nucleoside diphosphate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0647: -1 + - s_0650: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL067W" + - eccodes: "2.7.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK4" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R02093" - metanetx.reaction: "MNXR101937" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0800" - - name: "nucleoside diphosphate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0739: -1 - - s_0785: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL067W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0800" + - name: "nucleoside diphosphate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0739: -1 + - s_0785: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL067W" + - eccodes: "2.7.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK1" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R00330" - metanetx.reaction: "MNXR96119" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0801" - - name: "nucleoside diphosphate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0846: -1 - - s_0950: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL067W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0801" + - name: "nucleoside diphosphate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0846: -1 + - s_0950: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL067W" + - eccodes: "2.7.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK9" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R00722" - metanetx.reaction: "MNXR101941" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0802" - - name: "nucleoside diphosphate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0618: -1 - - s_0639: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL067W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0802" + - name: "nucleoside diphosphate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0618: -1 + - s_0639: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL067W" + - eccodes: "2.7.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK10" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R03530" - metanetx.reaction: "MNXR101934" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0803" - - name: "nucleoside diphosphate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0652: -1 - - s_0656: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL067W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0803" + - name: "nucleoside diphosphate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0652: -1 + - s_0656: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL067W" + - eccodes: "2.7.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK6" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R02331" - metanetx.reaction: "MNXR101938" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0804" - - name: "nucleoside triphosphatase" - - metabolites: !!omap - - s_0739: 1 - - s_0785: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL035W or YLL001W or YER005W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0804" + - name: "nucleoside triphosphatase" + - metabolites: !!omap + - s_0739: 1 + - s_0785: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL035W or YLL001W or YER005W" + - eccodes: "3.6.1.5" + - references: "10409709" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NTP3" - kegg.pathway: - - "sce00230" - - "sce00240" + - "sce00230" + - "sce00240" - kegg.reaction: "R00335" - metanetx.reaction: "MNXR102043" - pmid: "10409709" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0805" - - name: "nucleoside triphosphatase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_1538: 1 - - s_1559: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER005W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0805" + - name: "nucleoside triphosphatase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_1538: 1 + - s_1559: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER005W" + - eccodes: "3.6.1.5" + - references: "10409709" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NTP7" - kegg.pathway: - - "sce00230" - - "sce00240" + - "sce00230" + - "sce00240" - kegg.reaction: "R00159" - metanetx.reaction: "MNXR101933" - pmid: "10409709" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0806" - - name: "nucleoside triphosphatase" - - metabolites: !!omap - - s_0467: 1 - - s_0539: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER005W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0806" + - name: "nucleoside triphosphatase" + - metabolites: !!omap + - s_0467: 1 + - s_0539: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER005W" + - eccodes: "3.6.1.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NTP5" - kegg.pathway: - - "sce00230" - - "sce00240" + - "sce00230" + - "sce00240" - kegg.reaction: "R00569" - metanetx.reaction: "MNXR102045" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0807" - - name: "nucleoside triphosphatase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_0846: 1 - - s_0950: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER005W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0807" + - name: "nucleoside triphosphatase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_0846: 1 + - s_0950: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER005W" + - eccodes: "3.6.1.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.5" - bigg.reaction: "NTP10" - kegg.pathway: - - "sce00230" - - "sce00240" + - "sce00230" + - "sce00240" - kegg.reaction: "R00719" - metanetx.reaction: "MNXR100892" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0810" - - name: "nucleoside-diphosphatase (GDP), Golgi" - - metabolites: !!omap - - s_0740: -1 - - s_0783: 1 - - s_0797: 1 - - s_0806: -1 - - s_1325: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YEL042W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0810" + - name: "nucleoside-diphosphatase (GDP), Golgi" + - metabolites: !!omap + - s_0740: -1 + - s_0783: 1 + - s_0797: 1 + - s_0806: -1 + - s_1325: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YEL042W" + - eccodes: "3.6.1.42" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.42" - bigg.reaction: "NDP3g" - kegg.reaction: "R00328" - metanetx.reaction: "MNXR101928" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0811" - - name: "nucleoside-diphosphate kinase (ATP:UDP)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_1538: -1 - - s_1559: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL067W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0811" + - name: "nucleoside-diphosphate kinase (ATP:UDP)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_1538: -1 + - s_1559: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL067W" + - eccodes: "2.7.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.6" - bigg.reaction: "NDPK2" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" - kegg.reaction: "R00156" - metanetx.reaction: "MNXR101935" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0812" - - name: "O-acetylhomoserine (thiol)-lyase" - - metabolites: !!omap - - s_0362: 1 - - s_0794: 1 - - s_1029: 1 - - s_1150: -1 - - s_1233: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR303W" - - annotation: !!omap - - ec-code: - - "2.5.1.47" - - "2.5.1.49" + - confidence_score: 2 + - !!omap + - id: "r_0812" + - name: "O-acetylhomoserine (thiol)-lyase" + - metabolites: !!omap + - s_0362: 1 + - s_0794: 1 + - s_1029: 1 + - s_1150: -1 + - s_1233: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR303W" + - eccodes: "2.5.1.47; 2.5.1.49" + - references: "15042590" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.47; 2.5.1.49" - bigg.reaction: "AHSERL" - kegg.pathway: - - "sce00270" - - "sce00920" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00270" + - "sce00920" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00651" - metanetx.reaction: "MNXR95634" - pmid: "15042590" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0813" - - name: "O-acetylhomoserine (thiol)-lyase" - - metabolites: !!omap - - s_0362: 1 - - s_0841: -1 - - s_1012: 1 - - s_1233: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR303W" - - annotation: !!omap - - ec-code: - - "2.5.1.47" - - "2.5.1.49" + - confidence_score: 3 + - !!omap + - id: "r_0813" + - name: "O-acetylhomoserine (thiol)-lyase" + - metabolites: !!omap + - s_0362: 1 + - s_0841: -1 + - s_1012: 1 + - s_1233: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR303W" + - eccodes: "2.5.1.47; 2.5.1.49" + - references: "15042590" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.47; 2.5.1.49" - bigg.reaction: "AHSERL2" - kegg.pathway: - - "sce00270" - - "sce00920" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00270" + - "sce00920" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01287" - metanetx.reaction: "MNXR95631" - pmid: "15042590" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0815" - - name: "O-succinylhomoserine lyase (L-cysteine)" - - metabolites: !!omap - - s_0794: 1 - - s_0980: 1 - - s_0981: -1 - - s_1241: -1 - - s_1458: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLL058W or YML082W or YAL012W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0815" + - name: "O-succinylhomoserine lyase (L-cysteine)" + - metabolites: !!omap + - s_0794: 1 + - s_0980: 1 + - s_0981: -1 + - s_1241: -1 + - s_1458: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLL058W or YML082W or YAL012W" + - eccodes: "4.4.1.1" + - references: "8511969" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.4.1.1" - bigg.reaction: "SHSL1" - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce00450" - - "sce01130" - - "sce01230" + - "sce00260" + - "sce00270" + - "sce00450" + - "sce01130" + - "sce01230" - kegg.reaction: "R03260" - metanetx.reaction: "MNXR104380" - pmid: "8511969" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0816" - - name: "ornithine carbamoyltransferase" - - metabolites: !!omap - - s_0455: -1 - - s_0794: 1 - - s_0979: 1 - - s_1266: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL088W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0816" + - name: "ornithine carbamoyltransferase" + - metabolites: !!omap + - s_0455: -1 + - s_0794: 1 + - s_0979: 1 + - s_1266: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL088W" + - eccodes: "2.1.3.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.3.3" - bigg.reaction: "OCBT" - kegg.pathway: - - "sce00220" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01398" - metanetx.reaction: "MNXR102137" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0817" - - name: "ornithine decarboxylase" - - metabolites: !!omap - - s_0456: 1 - - s_0794: -1 - - s_1266: -1 - - s_1389: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL184W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0817" + - name: "ornithine decarboxylase" + - metabolites: !!omap + - s_0456: 1 + - s_0794: -1 + - s_1266: -1 + - s_1389: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL184W" + - eccodes: "4.1.1.17" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.17" - bigg.reaction: "ORNDC" - kegg.pathway: - - "sce00330" - - "sce00480" - - "sce01110" - - "sce01130" + - "sce00330" + - "sce00480" + - "sce01110" + - "sce01130" - kegg.reaction: "R00670" - metanetx.reaction: "MNXR102209" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0818" - - name: "ornithine transacetylase" - - metabolites: !!omap - - s_0993: -1 - - s_1182: -1 - - s_1192: 1 - - s_1268: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR062C" - - annotation: !!omap - - ec-code: - - "2.3.1.1" - - "2.3.1.35" + - confidence_score: 2 + - !!omap + - id: "r_0818" + - name: "ornithine transacetylase" + - metabolites: !!omap + - s_0993: -1 + - s_1182: -1 + - s_1192: 1 + - s_1268: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR062C" + - eccodes: "2.3.1.1; 2.3.1.35" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.1; 2.3.1.35" - bigg.reaction: "ORNTACim" - kegg.pathway: - - "sce00220" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R02282" - metanetx.reaction: "MNXR102221" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0819" - - name: "ornithine transaminase" - - metabolites: !!omap - - s_0180: -1 - - s_0991: 1 - - s_0997: 1 - - s_1266: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR438W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0819" + - name: "ornithine transaminase" + - metabolites: !!omap + - s_0180: -1 + - s_0991: 1 + - s_0997: 1 + - s_1266: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR438W" + - eccodes: "2.6.1.13" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.13" - bigg.reaction: "ORNTA" - kegg.pathway: - - "sce00330" - - "sce01110" - - "sce01130" + - "sce00330" + - "sce01110" + - "sce01130" - kegg.reaction: "R00667" - metanetx.reaction: "MNXR102220" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0820" - - name: "orotate phosphoribosyltransferase" - - metabolites: !!omap - - s_0633: -1 - - s_1269: 1 - - s_1270: -1 - - s_1386: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YML106W or YMR271C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0820" + - name: "orotate phosphoribosyltransferase" + - metabolites: !!omap + - s_0633: -1 + - s_1269: 1 + - s_1270: -1 + - s_1386: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YML106W or YMR271C" + - eccodes: "2.4.2.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.10" - bigg.reaction: "ORPT" - kegg.pathway: "sce00240" - kegg.reaction: "R01870" - metanetx.reaction: "MNXR102231" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0821" - - name: "orotidine-5'-phosphate decarboxylase" - - metabolites: !!omap - - s_0456: 1 - - s_0794: -1 - - s_1270: -1 - - s_1545: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YEL021W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0821" + - name: "orotidine-5'-phosphate decarboxylase" + - metabolites: !!omap + - s_0456: 1 + - s_0794: -1 + - s_1270: -1 + - s_1545: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YEL021W" + - eccodes: "4.1.1.23" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.23" - bigg.reaction: "OMPDC" - kegg.pathway: "sce00240" - kegg.reaction: "R00965" - metanetx.reaction: "MNXR102190" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0831" - - name: "oxoglutarate dehydrogenase (dihydrolipoamide S-succinyltransferase)" - - metabolites: !!omap - - s_0532: -1 - - s_0627: 1 - - s_1411: -1 - - s_1464: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR148C and YFL018C and YIL125W" - - annotation: !!omap - - ec-code: - - "1.2.4.2" - - "1.8.1.4" - - "2.3.1.61" + - confidence_score: 2 + - !!omap + - id: "r_0831" + - name: "oxoglutarate dehydrogenase (dihydrolipoamide S-succinyltransferase)" + - metabolites: !!omap + - s_0532: -1 + - s_0627: 1 + - s_1411: -1 + - s_1464: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR148C and YFL018C and YIL125W" + - eccodes: "1.2.4.2; 1.8.1.4; 2.3.1.61" + - references: "2178788" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.2.4.2; 1.8.1.4; 2.3.1.61" - bigg.reaction: "AKGDbm" - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00310" - - "sce00380" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R02570" - metanetx.reaction: "MNXR95656" - pmid: "2178788" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0832" - - name: "oxoglutarate dehydrogenase (lipoamide)" - - metabolites: !!omap - - s_0182: -1 - - s_0460: 1 - - s_0799: -1 - - s_1097: -1 - - s_1411: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR148C and YFL018C and YIL125W" - - annotation: !!omap - - ec-code: - - "1.2.4.2" - - "1.8.1.4" - - "2.3.1.61" + - confidence_score: 3 + - !!omap + - id: "r_0832" + - name: "oxoglutarate dehydrogenase (lipoamide)" + - metabolites: !!omap + - s_0182: -1 + - s_0460: 1 + - s_0799: -1 + - s_1097: -1 + - s_1411: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR148C and YFL018C and YIL125W" + - eccodes: "1.2.4.2; 1.8.1.4; 2.3.1.61" + - references: "10224250" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.2.4.2; 1.8.1.4; 2.3.1.61" - bigg.reaction: "AKGDam" - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00310" - - "sce00380" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R01700" - metanetx.reaction: "MNXR95657" - pmid: "10224250" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0841" - - name: "pantetheine-phosphate adenylyltransferase" - - metabolites: !!omap - - s_0197: 1 - - s_0434: -1 - - s_0633: 1 - - s_0794: -1 - - s_1307: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR277C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0841" + - name: "pantetheine-phosphate adenylyltransferase" + - metabolites: !!omap + - s_0197: 1 + - s_0434: -1 + - s_0633: 1 + - s_0794: -1 + - s_1307: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR277C" + - eccodes: "2.7.7.3" + - references: "19266201" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.3" - bigg.reaction: "PTPATi" - kegg.pathway: "sce00770" @@ -44844,240 +47238,278 @@ - metanetx.reaction: "MNXR95892" - pmid: "19266201" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0842" - - name: "pantothenate kinase" - - metabolites: !!omap - - s_0017: 1 - - s_0031: -1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR531W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0842" + - name: "pantothenate kinase" + - metabolites: !!omap + - s_0017: 1 + - s_0031: -1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR531W" + - eccodes: "2.7.1.33" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.33" - bigg.reaction: "PNTK" - kegg.pathway: "sce00770" - kegg.reaction: "R03018" - metanetx.reaction: "MNXR103050" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0843" - - name: "pantothenate synthase" - - metabolites: !!omap - - s_0030: -1 - - s_0031: 1 - - s_0423: 1 - - s_0434: -1 - - s_0441: -1 - - s_0633: 1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL145C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0843" + - name: "pantothenate synthase" + - metabolites: !!omap + - s_0030: -1 + - s_0031: 1 + - s_0423: 1 + - s_0434: -1 + - s_0441: -1 + - s_0633: 1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL145C" + - eccodes: "6.3.2.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.2.1" - bigg.reaction: "PANTS" - kegg.pathway: - - "sce00410" - - "sce00770" - - "sce01110" + - "sce00410" + - "sce00770" + - "sce01110" - kegg.reaction: "R02473" - metanetx.reaction: "MNXR102345" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0844" - - name: "peroxisomal acyl-CoA thioesterase" - - metabolites: !!omap - - s_0534: 1 - - s_0600: 1 - - s_0605: -1 - - s_0801: 1 - - s_0809: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR019C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0844" + - name: "peroxisomal acyl-CoA thioesterase" + - metabolites: !!omap + - s_0534: 1 + - s_0600: 1 + - s_0605: -1 + - s_0801: 1 + - s_0809: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR019C" + - eccodes: "3.1.2.2" + - references: "10092594" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.2" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" + - "sce00062" + - "sce01040" + - "sce01110" - metanetx.reaction: "MNXR122908" - pmid: "10092594" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0845" - - name: "peroxisomal acyl-CoA thioesterase" - - metabolites: !!omap - - s_0534: 1 - - s_0801: 1 - - s_0809: -1 - - s_1070: 1 - - s_1076: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR019C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0845" + - name: "peroxisomal acyl-CoA thioesterase" + - metabolites: !!omap + - s_0534: 1 + - s_0801: 1 + - s_0809: -1 + - s_1070: 1 + - s_1076: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR019C" + - eccodes: "3.1.2.2" + - references: "10092594" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.2" - bigg.reaction: "PTE11x" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" + - "sce00062" + - "sce01040" + - "sce01110" - metanetx.reaction: "MNXR122907" - pmid: "10092594" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0847" - - name: "peroxisomal acyl-CoA thioesterase" - - metabolites: !!omap - - s_0534: 1 - - s_0801: 1 - - s_0809: -1 - - s_1291: 1 - - s_1305: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR019C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0847" + - name: "peroxisomal acyl-CoA thioesterase" + - metabolites: !!omap + - s_0534: 1 + - s_0801: 1 + - s_0809: -1 + - s_1291: 1 + - s_1305: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR019C" + - eccodes: "3.1.2.2" + - references: "10092594" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.2" - bigg.reaction: "PTE2x" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" + - "sce00062" + - "sce01040" + - "sce01110" - kegg.reaction: "R01274" - metanetx.reaction: "MNXR99131" - pmid: "10092594" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0848" - - name: "peroxisomal acyl-CoA thioesterase" - - metabolites: !!omap - - s_0534: 1 - - s_0801: 1 - - s_0809: -1 - - s_1166: 1 - - s_1179: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR019C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0848" + - name: "peroxisomal acyl-CoA thioesterase" + - metabolites: !!omap + - s_0534: 1 + - s_0801: 1 + - s_0809: -1 + - s_1166: 1 + - s_1179: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR019C" + - eccodes: "3.1.2.2" + - references: "10092594" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.2" - bigg.reaction: "PTE7x" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" + - "sce00062" + - "sce01040" + - "sce01110" - metanetx.reaction: "MNXR122906" - pmid: "10092594" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0849" - - name: "peroxisomal acyl-CoA thioesterase" - - metabolites: !!omap - - s_0534: 1 - - s_0801: 1 - - s_0809: -1 - - s_1451: 1 - - s_1457: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR019C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0849" + - name: "peroxisomal acyl-CoA thioesterase" + - metabolites: !!omap + - s_0534: 1 + - s_0801: 1 + - s_0809: -1 + - s_1451: 1 + - s_1457: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR019C" + - eccodes: "3.1.2.2" + - references: "10092594" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.2" - bigg.reaction: "PTE8x" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" + - "sce00062" + - "sce01040" + - "sce01110" - kegg.reaction: "R08174" - metanetx.reaction: "MNXR99133" - pmid: "10092594" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0850" - - name: "peroxisomal acyl-CoA thioesterase" - - metabolites: !!omap - - s_0534: 1 - - s_0801: 1 - - s_0809: -1 - - s_1253: 1 - - s_1258: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR019C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0850" + - name: "peroxisomal acyl-CoA thioesterase" + - metabolites: !!omap + - s_0534: 1 + - s_0801: 1 + - s_0809: -1 + - s_1253: 1 + - s_1258: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR019C" + - eccodes: "3.1.2.2" + - references: "10092594" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.2" - bigg.reaction: "PTE9x" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" + - "sce00062" + - "sce01040" + - "sce01110" - metanetx.reaction: "MNXR99140" - pmid: "10092594" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0851" - - name: "phenylalanine transaminase" - - metabolites: !!omap - - s_0180: -1 - - s_0951: 1 - - s_0991: 1 - - s_1032: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL202W" - - annotation: !!omap - - ec-code: - - "2.6.1.39" - - "2.6.1.57" + - confidence_score: 3 + - !!omap + - id: "r_0851" + - name: "phenylalanine transaminase" + - metabolites: !!omap + - s_0180: -1 + - s_0951: 1 + - s_0991: 1 + - s_1032: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL202W" + - eccodes: "2.6.1.39; 2.6.1.57" + - references: "9491082; 9491083" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.6.1.39; 2.6.1.57" - bigg.reaction: "PHETA1" - kegg.pathway: - - "sce00130" - - "sce00270" - - "sce00300" - - "sce00350" - - "sce00360" - - "sce00380" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00130" + - "sce00270" + - "sce00300" + - "sce00350" + - "sce00360" + - "sce00380" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00694" - metanetx.reaction: "MNXR126234" - pmid: - - "9491082" - - "9491083" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0852" - - name: "phenylalanyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_1032: -1 - - s_1314: 1 - - s_1604: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFL022C and YLR060W" - - annotation: !!omap + - "9491082" + - "9491083" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0852" + - name: "phenylalanyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_1032: -1 + - s_1314: 1 + - s_1604: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFL022C and YLR060W" + - eccodes: "6.1.1.20" + - references: "3049607" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.20" - bigg.reaction: "PHETRS" - kegg.pathway: "sce00970" @@ -45085,21 +47517,25 @@ - metanetx.reaction: "MNXR102634" - pmid: "3049607" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0853" - - name: "phenylalanyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0437: -1 - - s_0636: 1 - - s_1034: -1 - - s_1315: 1 - - s_1605: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR047W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0853" + - name: "phenylalanyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0437: -1 + - s_0636: 1 + - s_1034: -1 + - s_1315: 1 + - s_1605: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR047W" + - eccodes: "6.1.1.20" + - references: "3029120" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.20" - bigg.reaction: "PHETRSm" - kegg.pathway: "sce00970" @@ -45107,19 +47543,23 @@ - metanetx.reaction: "MNXR102634" - pmid: "3029120" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0854" - - name: "phenylpyruvate decarboxylase" - - metabolites: !!omap - - s_0456: 1 - - s_0794: -1 - - s_0951: -1 - - s_1318: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR380W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0854" + - name: "phenylpyruvate decarboxylase" + - metabolites: !!omap + - s_0456: 1 + - s_0794: -1 + - s_0951: -1 + - s_1318: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR380W" + - eccodes: "4.1.1.43" + - references: "12902239" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.43" - bigg.reaction: "PPYRDC" - kegg.pathway: "sce00360" @@ -45127,1511 +47567,1707 @@ - metanetx.reaction: "MNXR125761" - pmid: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0855" - - name: "phopshoribosylaminoimidazole synthetase" - - metabolites: !!omap - - s_0300: 1 - - s_0302: -1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL234W" - - annotation: !!omap - - ec-code: - - "6.3.3.1" - - "6.3.4.13" + - confidence_score: 3 + - !!omap + - id: "r_0855" + - name: "phopshoribosylaminoimidazole synthetase" + - metabolites: !!omap + - s_0300: 1 + - s_0302: -1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL234W" + - eccodes: "6.3.3.1; 6.3.4.13" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "6.3.3.1; 6.3.4.13" - bigg.reaction: "PRAIS" - kegg.pathway: - - "sce00230" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce01110" + - "sce01130" - kegg.reaction: "R04208" - metanetx.reaction: "MNXR139261" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0882" - - name: "phosphoacetylglucosamine mutase" - - metabolites: !!omap - - s_1189: 1 - - s_1190: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YEL058W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0882" + - name: "phosphoacetylglucosamine mutase" + - metabolites: !!omap + - s_1189: 1 + - s_1190: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YEL058W" + - eccodes: "5.4.2.3" + - references: "8174553" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.4.2.3" - kegg.pathway: - - "sce00520" - - "sce01130" + - "sce00520" + - "sce01130" - kegg.reaction: "R08193" - metanetx.reaction: "MNXR111765" - pmid: "8174553" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0883" - - name: "phosphoadenylyl-sulfate reductase (thioredoxin)" - - metabolites: !!omap - - s_0201: -1 - - s_0390: 1 - - s_0794: 1 - - s_1469: 1 - - s_1616: -1 - - s_1620: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YGR209C and YPR167C) or (YLR043C and YPR167C)" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0883" + - name: "phosphoadenylyl-sulfate reductase (thioredoxin)" + - metabolites: !!omap + - s_0201: -1 + - s_0390: 1 + - s_0794: 1 + - s_1469: 1 + - s_1616: -1 + - s_1620: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YGR209C and YPR167C) or (YLR043C and YPR167C)" + - eccodes: "1.8.4.8" + - references: "2203779" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.8.4.8" - bigg.reaction: "PAPSR" - kegg.pathway: "sce00920" - metanetx.reaction: "MNXR137297" - pmid: "2203779" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0884" - - name: "phosphoenolpyruvate carboxykinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0456: 1 - - s_1271: -1 - - s_1360: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR097W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0884" + - name: "phosphoenolpyruvate carboxykinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0456: 1 + - s_1271: -1 + - s_1360: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR097W" + - eccodes: "4.1.1.49" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.49" - bigg.reaction: "PPCK" - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00620" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00020" + - "sce00620" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00341" - metanetx.reaction: "MNXR103099" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0885" - - name: "phosphoethanolamine cytidyltransferase" - - metabolites: !!omap - - s_0474: 1 - - s_0539: -1 - - s_0633: 1 - - s_0794: -1 - - s_1239: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR007W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0885" + - name: "phosphoethanolamine cytidyltransferase" + - metabolites: !!omap + - s_0474: 1 + - s_0539: -1 + - s_0633: 1 + - s_0794: -1 + - s_1239: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR007W" + - eccodes: "2.7.7.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.14" - bigg.reaction: "PETHCT" - kegg.pathway: - - "sce00440" - - "sce00564" + - "sce00440" + - "sce00564" - kegg.reaction: "R02038" - metanetx.reaction: "MNXR102498" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0886" - - name: "phosphofructokinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0555: 1 - - s_0557: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR205C or (YGR240C and YMR205C)" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0886" + - name: "phosphofructokinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0555: 1 + - s_0557: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR205C or (YGR240C and YMR205C)" + - eccodes: "2.7.1.11" + - references: "3007939" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.11" - bigg.reaction: "PFK" - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00051" - - "sce00052" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - "sce03018" + - "sce00010" + - "sce00030" + - "sce00051" + - "sce00052" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - "sce03018" - kegg.reaction: "R00756" - metanetx.reaction: "MNXR106666" - pmid: "3007939" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0887" - - name: "phosphofructokinase (s7p)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_1426: 1 - - s_1427: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR205C or (YGR240C and YMR205C)" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0887" + - name: "phosphofructokinase (s7p)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_1426: 1 + - s_1427: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR205C or (YGR240C and YMR205C)" + - eccodes: "2.7.1.11" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.11" - bigg.reaction: "PFK_3" - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00051" - - "sce00052" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - "sce03018" + - "sce00010" + - "sce00030" + - "sce00051" + - "sce00052" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - "sce03018" - kegg.reaction: "R01843" - metanetx.reaction: "MNXR102510" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0888" - - name: "phosphoglucomutase" - - metabolites: !!omap - - s_0567: 1 - - s_0568: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR105C or YKL127W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0888" + - name: "phosphoglucomutase" + - metabolites: !!omap + - s_0567: 1 + - s_0568: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR105C or YKL127W" + - eccodes: "5.4.2.2" + - references: "18042468; 8119301" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.4.2.2" - bigg.reaction: "PGMT" - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00052" - - "sce00230" - - "sce00500" - - "sce00520" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00030" + - "sce00052" + - "sce00230" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" - kegg.reaction: "R08639" - metanetx.reaction: "MNXR102548" - pmid: - - "18042468" - - "8119301" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0889" - - name: "phosphogluconate dehydrogenase" - - metabolites: !!omap - - s_0340: -1 - - s_0456: 1 - - s_0577: 1 - - s_1207: -1 - - s_1212: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR256W or YHR183W" - - annotation: !!omap + - "18042468" + - "8119301" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0889" + - name: "phosphogluconate dehydrogenase" + - metabolites: !!omap + - s_0340: -1 + - s_0456: 1 + - s_0577: 1 + - s_1207: -1 + - s_1212: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR256W or YHR183W" + - eccodes: "1.1.1.44" + - references: "24626" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.44" - bigg.reaction: "GND" - kegg.pathway: - - "sce00030" - - "sce00480" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00030" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R01528" - metanetx.reaction: "MNXR100389" - pmid: "24626" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0890" - - name: "phosphoglucosamine mutase" - - metabolites: !!omap - - s_0411: -1 - - s_0412: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YEL058W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0890" + - name: "phosphoglucosamine mutase" + - metabolites: !!omap + - s_0411: -1 + - s_0412: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YEL058W" + - eccodes: "5.4.2.3" + - references: "8174553" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.4.2.3" - bigg.reaction: "PGAMT" - kegg.pathway: - - "sce00520" - - "sce01130" + - "sce00520" + - "sce01130" - kegg.reaction: "R02060" - metanetx.reaction: "MNXR102526" - pmid: "8174553" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0891" - - name: "phosphoglycerate dehydrogenase" - - metabolites: !!omap - - s_0258: 1 - - s_0260: -1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER081W or YIL074C" - - annotation: !!omap - - ec-code: - - "1.1.1.399" - - "1.1.1.95" + - confidence_score: 3 + - !!omap + - id: "r_0891" + - name: "phosphoglycerate dehydrogenase" + - metabolites: !!omap + - s_0258: 1 + - s_0260: -1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER081W or YIL074C" + - eccodes: "1.1.1.399; 1.1.1.95" + - references: "12525494" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.399; 1.1.1.95" - bigg.reaction: "PGCD" - kegg.pathway: - - "sce00260" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00260" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01513" - metanetx.reaction: "MNXR102527" - pmid: "12525494" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0892" - - name: "phosphoglycerate kinase" - - metabolites: !!omap - - s_0075: -1 - - s_0260: 1 - - s_0394: -1 - - s_0434: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR012W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0892" + - name: "phosphoglycerate kinase" + - metabolites: !!omap + - s_0075: -1 + - s_0260: 1 + - s_0394: -1 + - s_0434: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR012W" + - eccodes: "2.7.2.3" + - references: "6347186" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.2.3" - bigg.reaction: "PGK" - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00010" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01512" - metanetx.reaction: "MNXR102538" - pmid: "6347186" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0893" - - name: "phosphoglycerate mutase" - - metabolites: !!omap - - s_0188: 1 - - s_0260: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR283W or YKL152C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0893" + - name: "phosphoglycerate mutase" + - metabolites: !!omap + - s_0188: 1 + - s_0260: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR283W or YKL152C" + - eccodes: "5.4.2.11" + - references: "3033435" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.4.2.11" - bigg.reaction: "PGM" - kegg.pathway: - - "sce00010" - - "sce00260" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00010" + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01518" - metanetx.reaction: "MNXR102547" - pmid: "3033435" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0902" - - name: "phosphomannomutase" - - metabolites: !!omap - - s_0573: -1 - - s_0574: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YFL045C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0902" + - name: "phosphomannomutase" + - metabolites: !!omap + - s_0573: -1 + - s_0574: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YFL045C" + - eccodes: "5.4.2.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.4.2.8" - bigg.reaction: "PMANM" - kegg.pathway: - - "sce00051" - - "sce00520" - - "sce01110" - - "sce01130" + - "sce00051" + - "sce00520" + - "sce01110" + - "sce01130" - kegg.reaction: "R01818" - metanetx.reaction: "MNXR101729" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0903" - - name: "phosphomethylpyrimidine kinase" - - metabolites: !!omap - - s_0267: 1 - - s_0268: -1 - - s_0394: 1 - - s_0434: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL055C or YPL258C or YPR121W" - - annotation: !!omap - - ec-code: - - "2.7.1.49" - - "2.7.4.7" + - confidence_score: 2 + - !!omap + - id: "r_0903" + - name: "phosphomethylpyrimidine kinase" + - metabolites: !!omap + - s_0267: 1 + - s_0268: -1 + - s_0394: 1 + - s_0434: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL055C or YPL258C or YPR121W" + - eccodes: "2.7.1.49; 2.7.4.7" + - references: "10383756" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.49; 2.7.4.7" - bigg.reaction: "PMPK" - kegg.pathway: "sce00730" - kegg.reaction: "R04509" - metanetx.reaction: "MNXR103045" - pmid: "10383756" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0904" - - name: "phosphomevalonate kinase" - - metabolites: !!omap - - s_0018: 1 - - s_0019: -1 - - s_0394: 1 - - s_0434: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR220W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0904" + - name: "phosphomevalonate kinase" + - metabolites: !!omap + - s_0018: 1 + - s_0019: -1 + - s_0394: 1 + - s_0434: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR220W" + - eccodes: "2.7.4.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.2" - bigg.reaction: "PMEVK" - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" + - "sce00900" + - "sce01110" + - "sce01130" - kegg.reaction: "R03245" - metanetx.reaction: "MNXR103043" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0905" - - name: "phosphopantothenate-cysteine ligase" - - metabolites: !!omap - - s_0017: -1 - - s_0526: 1 - - s_0539: -1 - - s_0633: 1 - - s_0794: 1 - - s_0981: -1 - - s_1188: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL083C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0905" + - name: "phosphopantothenate-cysteine ligase" + - metabolites: !!omap + - s_0017: -1 + - s_0526: 1 + - s_0539: -1 + - s_0633: 1 + - s_0794: 1 + - s_0981: -1 + - s_1188: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL083C" + - eccodes: "6.3.2.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.2.5" - bigg.reaction: "PPNCL2" - kegg.pathway: "sce00770" - kegg.reaction: "R04231" - metanetx.reaction: "MNXR103119" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0906" - - name: "phosphopantothenoylcysteine decarboxylase" - - metabolites: !!omap - - s_0456: 1 - - s_0794: -1 - - s_1188: -1 - - s_1307: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YKL088W and YKR072C and YOR054C) or (YKL088W and YKR072C) or (YKL088W and YOR054C) or YKL088W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0906" + - name: "phosphopantothenoylcysteine decarboxylase" + - metabolites: !!omap + - s_0456: 1 + - s_0794: -1 + - s_1188: -1 + - s_1307: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YKL088W and YKR072C and YOR054C) or (YKL088W and YKR072C) or (YKL088W and YOR054C) or YKL088W" + - eccodes: "4.1.1.36" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.36" - bigg.reaction: "PPCDC" - kegg.pathway: "sce00770" - kegg.reaction: "R03269" - metanetx.reaction: "MNXR103098" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0907" - - name: "phosphopentomutase" - - metabolites: !!omap - - s_0415: -1 - - s_1408: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL127W or YMR105C or YMR278W" - - annotation: !!omap - - ec-code: - - "5.4.2.2" - - "5.4.2.7" + - confidence_score: 2 + - !!omap + - id: "r_0907" + - name: "phosphopentomutase" + - metabolites: !!omap + - s_0415: -1 + - s_1408: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL127W or YMR105C or YMR278W" + - eccodes: "5.4.2.2; 5.4.2.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "5.4.2.2; 5.4.2.7" - bigg.reaction: "PPM" - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00052" - - "sce00230" - - "sce00500" - - "sce00520" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00030" + - "sce00052" + - "sce00230" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR103115" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0908" - - name: "phosphoribosyl amino imidazolesuccinocarbozamide synthetase" - - metabolites: !!omap - - s_0299: 1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 2 - - s_0973: -1 - - s_1322: 1 - - s_1364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAR015W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0908" + - name: "phosphoribosyl amino imidazolesuccinocarbozamide synthetase" + - metabolites: !!omap + - s_0299: 1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 2 + - s_0973: -1 + - s_1322: 1 + - s_1364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAR015W" + - eccodes: "6.3.2.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.2.6" - bigg.reaction: "PRASCSi" - kegg.pathway: - - "sce00230" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce01110" + - "sce01130" - kegg.reaction: "R04591" - metanetx.reaction: "MNXR108987" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0909" - - name: "phosphoribosyl-AMP cyclohydrolase" - - metabolites: !!omap - - s_0077: 1 - - s_0078: -1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL030C" - - annotation: !!omap - - ec-code: - - "1.1.1.23" - - "3.5.4.19" - - "3.6.1.31" + - confidence_score: 2 + - !!omap + - id: "r_0909" + - name: "phosphoribosyl-AMP cyclohydrolase" + - metabolites: !!omap + - s_0077: 1 + - s_0078: -1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL030C" + - eccodes: "1.1.1.23; 3.5.4.19; 3.6.1.31" + - references: "7049842" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.23; 3.5.4.19; 3.6.1.31" - bigg.reaction: "PRAMPC" - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R04037" - metanetx.reaction: "MNXR103154" - pmid: "7049842" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0910" - - name: "phosphoribosyl-ATP pyrophosphatase" - - metabolites: !!omap - - s_0078: 1 - - s_0326: -1 - - s_0633: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL030C" - - annotation: !!omap - - ec-code: - - "1.1.1.23" - - "3.5.4.19" - - "3.6.1.31" + - confidence_score: 3 + - !!omap + - id: "r_0910" + - name: "phosphoribosyl-ATP pyrophosphatase" + - metabolites: !!omap + - s_0078: 1 + - s_0326: -1 + - s_0633: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL030C" + - eccodes: "1.1.1.23; 3.5.4.19; 3.6.1.31" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.23; 3.5.4.19; 3.6.1.31" - bigg.reaction: "PRATPP" - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" + - "sce00340" + - "sce01110" + - "sce01230" - kegg.reaction: "R04035" - metanetx.reaction: "MNXR103155" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0911" - - name: "phosphoribosylaminoimidazole-carboxylase" - - metabolites: !!omap - - s_0300: -1 - - s_0456: -1 - - s_0794: 1 - - s_1364: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR128C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0911" + - name: "phosphoribosylaminoimidazole-carboxylase" + - metabolites: !!omap + - s_0300: -1 + - s_0456: -1 + - s_0794: 1 + - s_1364: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR128C" + - eccodes: "4.1.1.21" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.21" - kegg.pathway: - - "sce00230" - - "sce01110" + - "sce00230" + - "sce01110" - kegg.reaction: "R04209" - metanetx.reaction: "MNXR108735" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0912" - - name: "phosphoribosylaminoimidazolecarboxamide formyltransferase" - - metabolites: !!omap - - s_0120: -1 - - s_0403: -1 - - s_1365: 1 - - s_1487: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR028C or YMR120C" - - annotation: !!omap - - ec-code: - - "2.1.2.3" - - "3.5.4.10" + - confidence_score: 2 + - !!omap + - id: "r_0912" + - name: "phosphoribosylaminoimidazolecarboxamide formyltransferase" + - metabolites: !!omap + - s_0120: -1 + - s_0403: -1 + - s_1365: 1 + - s_1487: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR028C or YMR120C" + - eccodes: "2.1.2.3; 3.5.4.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.2.3; 3.5.4.10" - bigg.reaction: "AICART" - kegg.pathway: - - "sce00230" - - "sce00670" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00670" + - "sce01110" + - "sce01130" - kegg.reaction: "R04560" - metanetx.reaction: "MNXR95639" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0913" - - name: "phosphoribosylanthranilate isomerase" - - metabolites: !!omap - - s_0076: 1 - - s_1187: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR007W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0913" + - name: "phosphoribosylanthranilate isomerase" + - metabolites: !!omap + - s_0076: 1 + - s_1187: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR007W" + - eccodes: "5.3.1.24" + - references: "348687" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.1.24" - bigg.reaction: "PRAIi" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R03509" - metanetx.reaction: "MNXR103156" - pmid: "348687" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0914" - - name: "phosphoribosylglycinamidine synthetase" - - metabolites: !!omap - - s_0325: 1 - - s_0327: -1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_1003: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL234W" - - annotation: !!omap - - ec-code: - - "6.3.3.1" - - "6.3.4.13" + - confidence_score: 3 + - !!omap + - id: "r_0914" + - name: "phosphoribosylglycinamidine synthetase" + - metabolites: !!omap + - s_0325: 1 + - s_0327: -1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_1003: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL234W" + - eccodes: "6.3.3.1; 6.3.4.13" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "6.3.3.1; 6.3.4.13" - bigg.reaction: "PRAGSr" - kegg.pathway: - - "sce00230" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce01110" + - "sce01130" - kegg.reaction: "R04144" - metanetx.reaction: "MNXR103139" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0915" - - name: "phosphoribosylpyrophosphate amidotransferase" - - metabolites: !!omap - - s_0327: 1 - - s_0633: 1 - - s_0803: -1 - - s_0991: 1 - - s_0999: -1 - - s_1386: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR300C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0915" + - name: "phosphoribosylpyrophosphate amidotransferase" + - metabolites: !!omap + - s_0327: 1 + - s_0633: 1 + - s_0803: -1 + - s_0991: 1 + - s_0999: -1 + - s_1386: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR300C" + - eccodes: "2.4.2.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.14" - bigg.reaction: "GLUPRT" - kegg.pathway: - - "sce00230" - - "sce00250" - - "sce01110" - - "sce01130" + - "sce00230" + - "sce00250" + - "sce01110" + - "sce01130" - kegg.reaction: "R01072" - metanetx.reaction: "MNXR100287" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0916" - - name: "phosphoribosylpyrophosphate synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0794: 1 - - s_1386: 1 - - s_1408: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YKL181W and YER099C) or (YKL181W and YHL011C) or (YKL181W and YBL068W) or (YER099C and YOL061W) or (YBL068W and YOL061W)" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0916" + - name: "phosphoribosylpyrophosphate synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0794: 1 + - s_1386: 1 + - s_1408: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YKL181W and YER099C) or (YKL181W and YHL011C) or (YKL181W and YBL068W) or (YER099C and YOL061W) or (YBL068W and YOL061W)" + - eccodes: "2.7.6.1" + - references: "10212224" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.6.1" - bigg.reaction: "PRPPS" - kegg.pathway: - - "sce00030" - - "sce00230" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00030" + - "sce00230" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - metanetx.reaction: "MNXR103215" - pmid: "10212224" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0917" - - name: "phosphoserine phosphatase (L-serine)" - - metabolites: !!omap - - s_0259: -1 - - s_0803: -1 - - s_1039: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR208W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0917" + - name: "phosphoserine phosphatase (L-serine)" + - metabolites: !!omap + - s_0259: -1 + - s_0803: -1 + - s_1039: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR208W" + - eccodes: "3.1.3.3" + - references: "1326413" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.3" - bigg.reaction: "PSP_L" - kegg.pathway: - - "sce00260" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00260" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00582" - metanetx.reaction: "MNXR103260" - pmid: "1326413" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0918" - - name: "phosphoserine transaminase" - - metabolites: !!omap - - s_0180: 1 - - s_0258: -1 - - s_0259: 1 - - s_0991: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR184W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0918" + - name: "phosphoserine transaminase" + - metabolites: !!omap + - s_0180: 1 + - s_0258: -1 + - s_0259: 1 + - s_0991: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR184W" + - eccodes: "2.6.1.52" + - references: "8017107" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.52" - bigg.reaction: "PSERT" - kegg.pathway: - - "sce00260" - - "sce00750" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00260" + - "sce00750" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R04173" - metanetx.reaction: "MNXR103225" - pmid: "8017107" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0919" - - name: "phytoceramidase" - - metabolites: !!omap - - s_0481: 1 - - s_0804: 1 - - s_1085: -1 - - s_1366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR183W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0919" + - name: "phytoceramidase" + - metabolites: !!omap + - s_0481: 1 + - s_0804: 1 + - s_1085: -1 + - s_1366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR183W" + - eccodes: "3.5.1.-" + - references: "10702247; 18296751" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126696" - pmid: - - "10702247" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0920" - - name: "phytoceramidase" - - metabolites: !!omap - - s_0484: 1 - - s_0507: -1 - - s_0804: 1 - - s_1366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR402C" - - annotation: !!omap + - "10702247" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0920" + - name: "phytoceramidase" + - metabolites: !!omap + - s_0484: 1 + - s_0507: -1 + - s_0804: 1 + - s_1366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR402C" + - eccodes: "1.14.14.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.14.-" - kegg.pathway: - - "sce00071" - - "sce00380" + - "sce00071" + - "sce00380" - kegg.reaction: "R06527" - metanetx.reaction: "MNXR126694" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0921" - - name: "Phytosphingosine phosphate lyase" - - metabolites: !!omap - - s_0161: 1 - - s_1240: 1 - - s_1367: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR294C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0921" + - name: "Phytosphingosine phosphate lyase" + - metabolites: !!omap + - s_0161: 1 + - s_1240: 1 + - s_1367: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR294C" + - eccodes: "4.1.2.27" + - references: "18296751; 9334171" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.2.27" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR103262" - pmid: - - "18296751" - - "9334171" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0922" - - name: "phytosphingosine synthesis" - - metabolites: !!omap - - s_0795: -1 - - s_0804: 1 - - s_1208: 1 - - s_1213: -1 - - s_1276: -1 - - s_1366: 1 - - s_1445: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR297W" - - annotation: !!omap + - "18296751" + - "9334171" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0922" + - name: "phytosphingosine synthesis" + - metabolites: !!omap + - s_0795: -1 + - s_0804: 1 + - s_1208: 1 + - s_1213: -1 + - s_1276: -1 + - s_1366: 1 + - s_1445: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR297W" + - eccodes: "1.-.-.-" + - references: "18296751; 9368039" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.-.-.-" - kegg.pathway: "sce00600" - kegg.reaction: "R06525" - metanetx.reaction: "MNXR103263" - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0929" - - name: "polyamine oxidase" - - metabolites: !!omap - - s_0208: 1 - - s_0803: -1 - - s_0837: 1 - - s_1180: -1 - - s_1193: 1 - - s_1275: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR020W" - - annotation: !!omap + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0929" + - name: "polyamine oxidase" + - metabolites: !!omap + - s_0208: 1 + - s_0803: -1 + - s_0837: 1 + - s_1180: -1 + - s_1193: 1 + - s_1275: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR020W" + - eccodes: "1.5.3.17" + - references: "12670477" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.3.17" - bigg.reaction: "POLYAO" - kegg.pathway: - - "sce00330" - - "sce00410" + - "sce00330" + - "sce00410" - metanetx.reaction: "MNXR103057" - pmid: "12670477" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0935" - - name: "porphobilinogen synthase" - - metabolites: !!omap - - s_0315: -2 - - s_0794: 1 - - s_0803: 2 - - s_1372: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL040C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0935" + - name: "porphobilinogen synthase" + - metabolites: !!omap + - s_0315: -2 + - s_0794: 1 + - s_0803: 2 + - s_1372: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL040C" + - eccodes: "4.2.1.24" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.24" - bigg.reaction: "PPBNGS" - kegg.pathway: - - "sce00860" - - "sce01110" + - "sce00860" + - "sce01110" - kegg.reaction: "R00036" - metanetx.reaction: "MNXR103095" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0936" - - name: "poylamine oxidase" - - metabolites: !!omap - - s_0208: 1 - - s_0803: -1 - - s_0837: 1 - - s_1180: 1 - - s_1181: -1 - - s_1275: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR020W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0936" + - name: "poylamine oxidase" + - metabolites: !!omap + - s_0208: 1 + - s_0803: -1 + - s_0837: 1 + - s_1180: 1 + - s_1181: -1 + - s_1275: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR020W" + - eccodes: "1.5.3.17" + - references: "12670477" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.3.17" - bigg.reaction: "POLYAO2" - kegg.pathway: - - "sce00330" - - "sce00410" + - "sce00330" + - "sce00410" - kegg.reaction: "R03899" - metanetx.reaction: "MNXR103058" - pmid: "12670477" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0937" - - name: "poylamine oxidase" - - metabolites: !!omap - - s_0208: 1 - - s_0803: -1 - - s_0837: 1 - - s_1275: -1 - - s_1439: 1 - - s_1442: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR020W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0937" + - name: "poylamine oxidase" + - metabolites: !!omap + - s_0208: 1 + - s_0803: -1 + - s_0837: 1 + - s_1275: -1 + - s_1439: 1 + - s_1442: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR020W" + - eccodes: "1.5.3.17" + - references: "12670477" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.3.17" - bigg.reaction: "POLYAO3" - kegg.pathway: - - "sce00330" - - "sce00410" + - "sce00330" + - "sce00410" - kegg.reaction: "R09076" - metanetx.reaction: "MNXR103059" - pmid: "12670477" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0938" - - name: "prephenate dehydratase" - - metabolites: !!omap - - s_0456: 1 - - s_0794: -1 - - s_0803: 1 - - s_0951: 1 - - s_1377: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL316C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0938" + - name: "prephenate dehydratase" + - metabolites: !!omap + - s_0456: 1 + - s_0794: -1 + - s_0803: 1 + - s_0951: 1 + - s_1377: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL316C" + - eccodes: "4.2.1.51" + - references: "7502583" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.51" - bigg.reaction: "PPNDH" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01373" - metanetx.reaction: "MNXR126086" - pmid: "7502583" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0939" - - name: "prephenate dehydrogenase (NADP)" - - metabolites: !!omap - - s_0204: 1 - - s_0456: 1 - - s_1207: -1 - - s_1212: 1 - - s_1377: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR166C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0939" + - name: "prephenate dehydrogenase (NADP)" + - metabolites: !!omap + - s_0204: 1 + - s_0456: 1 + - s_1207: -1 + - s_1212: 1 + - s_1377: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR166C" + - eccodes: "1.3.1.13" + - references: "2697638" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.13" - bigg.reaction: "PPND2" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" + - "sce00400" + - "sce01110" + - "sce01130" - kegg.reaction: "R01730" - metanetx.reaction: "MNXR103122" - pmid: "2697638" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0940" - - name: "proline oxidase (NAD)" - - metabolites: !!omap - - s_0119: 1 - - s_0688: -1 - - s_0690: 1 - - s_1037: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR142W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0940" + - name: "proline oxidase (NAD)" + - metabolites: !!omap + - s_0119: 1 + - s_0688: -1 + - s_0690: 1 + - s_1037: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR142W" + - eccodes: "1.5.5.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.5.2" - kegg.pathway: - - "sce00330" - - "sce01110" - - "sce01130" + - "sce00330" + - "sce01110" + - "sce01130" - kegg.reaction: "R10507" - metanetx.reaction: "MNXR103187" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0941" - - name: "prolyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_1035: -1 - - s_1379: 1 - - s_1606: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR020W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0941" + - name: "prolyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_1035: -1 + - s_1379: 1 + - s_1606: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR020W" + - eccodes: "6.1.1.15" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.15" - bigg.reaction: "PROTRS_1" - kegg.pathway: "sce00970" - kegg.reaction: "R03661" - metanetx.reaction: "MNXR103208" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0942" - - name: "protoporphyrinogen oxidase" - - metabolites: !!omap - - s_0807: 6 - - s_1278: -3 - - s_1383: 2 - - s_1385: -2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER014W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0942" + - name: "protoporphyrinogen oxidase" + - metabolites: !!omap + - s_0807: 6 + - s_1278: -3 + - s_1383: 2 + - s_1385: -2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER014W" + - eccodes: "1.3.3.4" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.4" - bigg.reaction: "PPPGOm" - kegg.pathway: - - "sce00860" - - "sce01110" + - "sce00860" + - "sce01110" - kegg.reaction: "R03222" - metanetx.reaction: "MNXR103132" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0943" - - name: "purine-nucleoside phosphorylase" - - metabolites: !!omap - - s_0415: 1 - - s_0794: 1 - - s_1216: 1 - - s_1218: -1 - - s_1322: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR400W and YLR017W and YLR209C" - - annotation: !!omap - - ec-code: - - "2.4.2.1" - - "2.4.2.28" - - "3.2.2.3" + - confidence_score: 2 + - !!omap + - id: "r_0943" + - name: "purine-nucleoside phosphorylase" + - metabolites: !!omap + - s_0415: 1 + - s_0794: 1 + - s_1216: 1 + - s_1218: -1 + - s_1322: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR400W and YLR017W and YLR209C" + - eccodes: "2.4.2.1; 2.4.2.28; 3.2.2.3" + - references: "17482543" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.4.2.1; 2.4.2.28; 3.2.2.3" - bigg.reaction: "PNP" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00270" - - "sce00760" - - "sce01110" + - "sce00230" + - "sce00240" + - "sce00270" + - "sce00760" + - "sce01110" - kegg.reaction: "R02294" - metanetx.reaction: "MNXR103048" - pmid: "17482543" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0949" - - name: "guanosine phosphorylase" - - metabolites: !!omap - - s_0415: 1 - - s_0787: 1 - - s_0790: -1 - - s_1322: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR209C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0949" + - name: "guanosine phosphorylase" + - metabolites: !!omap + - s_0415: 1 + - s_0787: 1 + - s_0790: -1 + - s_1322: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR209C" + - eccodes: "2.4.2.1" + - references: "23670538" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.1" - bigg.reaction: "PUNP3" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00760" - - "sce01110" + - "sce00230" + - "sce00240" + - "sce00760" + - "sce01110" - kegg.reaction: "R02147" - metanetx.reaction: "MNXR103345" - pmid: "23670538" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0950" - - name: "guanosine phosphorylase" - - metabolites: !!omap - - s_0416: 1 - - s_0789: 1 - - s_0792: -1 - - s_1326: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR209C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0950" + - name: "guanosine phosphorylase" + - metabolites: !!omap + - s_0416: 1 + - s_0789: 1 + - s_0792: -1 + - s_1326: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR209C" + - eccodes: "2.4.2.1" + - references: "23670538" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.1" - bigg.reaction: "PUNP3m" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00760" - - "sce01110" + - "sce00230" + - "sce00240" + - "sce00760" + - "sce01110" - kegg.reaction: "R02147" - metanetx.reaction: "MNXR103345" - pmid: "23670538" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0951" - - name: "inosine phosphorylase" - - metabolites: !!omap - - s_0415: 1 - - s_0843: 1 - - s_0856: -1 - - s_1322: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR209C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0951" + - name: "inosine phosphorylase" + - metabolites: !!omap + - s_0415: 1 + - s_0843: 1 + - s_0856: -1 + - s_1322: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR209C" + - eccodes: "2.4.2.1" + - references: "23670538" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.1" - bigg.reaction: "PUNP5" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00760" - - "sce01110" + - "sce00230" + - "sce00240" + - "sce00760" + - "sce01110" - kegg.reaction: "R01863" - metanetx.reaction: "MNXR103347" - pmid: "23670538" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0953" - - name: "pyridoxal oxidase" - - metabolites: !!omap - - s_0419: -1 - - s_0803: -2 - - s_0837: 2 - - s_1275: -0.5 - - s_1392: -1 - - s_1394: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR035C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0953" + - name: "pyridoxal oxidase" + - metabolites: !!omap + - s_0419: -1 + - s_0803: -2 + - s_0837: 2 + - s_1275: -0.5 + - s_1392: -1 + - s_1394: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR035C" + - eccodes: "1.4.3.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.4.3.5" - bigg.reaction: "PYDXO" - kegg.pathway: "sce00750" - metanetx.reaction: "MNXR103365" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0954" - - name: "pyridoxamine 5'-phosphate oxidase" - - metabolites: !!omap - - s_0419: 1 - - s_0803: -1 - - s_0837: 1 - - s_1275: -1 - - s_1393: 1 - - s_1395: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR035C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0954" + - name: "pyridoxamine 5'-phosphate oxidase" + - metabolites: !!omap + - s_0419: 1 + - s_0803: -1 + - s_0837: 1 + - s_1275: -1 + - s_1393: 1 + - s_1395: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR035C" + - eccodes: "1.4.3.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.4.3.5" - bigg.reaction: "PYAM5PO" - kegg.pathway: "sce00750" - kegg.reaction: "R00277" - metanetx.reaction: "MNXR103355" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0955" - - name: "pyridoxine 5'-phosphate oxidase" - - metabolites: !!omap - - s_0837: 1 - - s_1275: -1 - - s_1393: 1 - - s_1398: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR035C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0955" + - name: "pyridoxine 5'-phosphate oxidase" + - metabolites: !!omap + - s_0837: 1 + - s_1275: -1 + - s_1393: 1 + - s_1398: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR035C" + - eccodes: "1.4.3.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.4.3.5" - bigg.reaction: "PDX5POi" - kegg.pathway: "sce00750" - kegg.reaction: "R00278" - metanetx.reaction: "MNXR102438" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0956" - - name: "pyridoxine oxidase" - - metabolites: !!omap - - s_0837: 1 - - s_1275: -1 - - s_1392: 1 - - s_1396: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR035C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0956" + - name: "pyridoxine oxidase" + - metabolites: !!omap + - s_0837: 1 + - s_1275: -1 + - s_1392: 1 + - s_1396: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR035C" + - eccodes: "1.4.3.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.4.3.5" - bigg.reaction: "PYDXNO" - kegg.pathway: "sce00750" - kegg.reaction: "R01711" - metanetx.reaction: "MNXR103363" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0957" - - name: "pyrroline-5-carboxylate reductase" - - metabolites: !!omap - - s_0118: -1 - - s_0794: -2 - - s_1035: 1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER023W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0957" + - name: "pyrroline-5-carboxylate reductase" + - metabolites: !!omap + - s_0118: -1 + - s_0794: -2 + - s_1035: 1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER023W" + - eccodes: "1.5.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.1.2" - bigg.reaction: "P5CR" - kegg.pathway: - - "sce00330" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00330" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R01251" - metanetx.reaction: "MNXR102302" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0958" - - name: "pyruvate carboxylase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0445: -1 - - s_0794: 1 - - s_1271: 1 - - s_1322: 1 - - s_1399: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR218C or YGL062W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0958" + - name: "pyruvate carboxylase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0445: -1 + - s_0794: 1 + - s_1271: 1 + - s_1322: 1 + - s_1399: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR218C or YGL062W" + - eccodes: "6.4.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.4.1.1" - bigg.reaction: "PC" - kegg.pathway: - - "sce00020" - - "sce00620" - - "sce01200" - - "sce01230" + - "sce00020" + - "sce00620" + - "sce01200" + - "sce01230" - kegg.reaction: "R00344" - metanetx.reaction: "MNXR102391" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0959" - - name: "pyruvate decarboxylase" - - metabolites: !!omap - - s_0359: 1 - - s_0456: 1 - - s_0794: -1 - - s_1399: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - annotation: !!omap - - ec-code: - - "4.1.1.-" - - "4.1.1.1" - - "4.1.1.43" - - "4.1.1.74" + - confidence_score: 2 + - !!omap + - id: "r_0959" + - name: "pyruvate decarboxylase" + - metabolites: !!omap + - s_0359: 1 + - s_0456: 1 + - s_0794: -1 + - s_1399: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" + - eccodes: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - bigg.reaction: "PYRDC" - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce01110" + - "sce01130" - kegg.reaction: "R00224" - metanetx.reaction: "MNXR103379" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0960" - - name: "pyruvate decarboxylase (acetoin-forming)" - - metabolites: !!omap - - s_0020: 1 - - s_0359: -1 - - s_0456: 1 - - s_0794: -1 - - s_1399: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - annotation: !!omap - - ec-code: - - "4.1.1.-" - - "4.1.1.1" - - "4.1.1.43" - - "4.1.1.74" + - confidence_score: 2 + - !!omap + - id: "r_0960" + - name: "pyruvate decarboxylase (acetoin-forming)" + - metabolites: !!omap + - s_0020: 1 + - s_0359: -1 + - s_0456: 1 + - s_0794: -1 + - s_1399: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" + - eccodes: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" + - references: "12902239" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - bigg.reaction: "PYRDC2" - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR103380" - pmid: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0961" - - name: "pyruvate dehydrogenase" - - metabolites: !!omap - - s_0376: 1 - - s_0460: 1 - - s_0532: -1 - - s_1200: -1 - - s_1205: 1 - - s_1401: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR221C and YER178W and YFL018C and YGR193C and YNL071W" - - annotation: !!omap - - ec-code: - - "1.2.4.1" - - "1.8.1.4" - - "2.3.1.12" + - confidence_score: 3 + - !!omap + - id: "r_0961" + - name: "pyruvate dehydrogenase" + - metabolites: !!omap + - s_0376: 1 + - s_0460: 1 + - s_0532: -1 + - s_1200: -1 + - s_1205: 1 + - s_1401: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR221C and YER178W and YFL018C and YGR193C and YNL071W" + - eccodes: "1.2.4.1; 1.8.1.4; 2.3.1.12" + - references: "8433986" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.2.4.1; 1.8.1.4; 2.3.1.12" - bigg.reaction: "PDHm" - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00209" - metanetx.reaction: "MNXR102425" - pmid: "8433986" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0962" - - name: "pyruvate kinase" - - metabolites: !!omap - - s_0394: -1 - - s_0434: 1 - - s_0794: -1 - - s_1360: -1 - - s_1399: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL038W or YOR347C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0962" + - name: "pyruvate kinase" + - metabolites: !!omap + - s_0394: -1 + - s_0434: 1 + - s_0794: -1 + - s_1360: -1 + - s_1399: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL038W or YOR347C" + - eccodes: "2.7.1.40" + - references: "6185493" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.40" - bigg.reaction: "PYK" - kegg.pathway: - - "sce00010" - - "sce00230" - - "sce00620" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00010" + - "sce00230" + - "sce00620" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R00200" - metanetx.reaction: "MNXR103371" - pmid: "6185493" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0963" - - name: "quinone oxidoreductase" - - metabolites: !!omap - - s_0154: 1 - - s_0156: -1 - - s_0799: -1 - - s_0807: 1 - - s_1200: 1 - - s_1205: -1 - - s_1278: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - annotation: !!omap - - ec-code: - - "1.14.13.-" - - "2.1.1.114" - - "2.1.1.201" - - "2.1.1.64" - - "2.7.-.-" - - kegg.pathway: - - "sce00130" - - "sce01110" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0964" - - name: "reduced glutathione via ABC system" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0750: -1 - - s_0753: 1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR135C" - - annotation: !!omap - - metanetx.reaction: "MNXR100447" - - pmid: "9729482" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_0965" - - name: "riboflavin kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0714: 1 - - s_0794: 1 - - s_1405: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR236C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0963" + - name: "quinone oxidoreductase" + - metabolites: !!omap + - s_0154: 1 + - s_0156: -1 + - s_0799: -1 + - s_0807: 1 + - s_1200: 1 + - s_1205: -1 + - s_1278: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" + - eccodes: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" + - kegg.pathway: + - "sce00130" + - "sce01110" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_0965" + - name: "riboflavin kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0714: 1 + - s_0794: 1 + - s_1405: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR236C" + - eccodes: "2.7.1.26" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.26" - bigg.reaction: "RBFK" - kegg.pathway: - - "sce00740" - - "sce01110" + - "sce00740" + - "sce01110" - kegg.reaction: "R00549" - metanetx.reaction: "MNXR103429" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0966" - - name: "riboflavin kinase" - - metabolites: !!omap - - s_0397: 1 - - s_0437: -1 - - s_0716: 1 - - s_0799: 1 - - s_1407: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR236C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0966" + - name: "riboflavin kinase" + - metabolites: !!omap + - s_0397: 1 + - s_0437: -1 + - s_0716: 1 + - s_0799: 1 + - s_1407: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR236C" + - eccodes: "2.7.1.26" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.26" - bigg.reaction: "RBFKm" - kegg.pathway: - - "sce00740" - - "sce01110" + - "sce00740" + - "sce01110" - kegg.reaction: "R00549" - metanetx.reaction: "MNXR103429" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0967" - - name: "riboflavin synthase" - - metabolites: !!omap - - s_0158: -1 - - s_0314: -1 - - s_0328: 1 - - s_0794: 1 - - s_0803: 2 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL143C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0967" + - name: "riboflavin synthase" + - metabolites: !!omap + - s_0158: -1 + - s_0314: -1 + - s_0328: 1 + - s_0794: 1 + - s_0803: 2 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL143C" + - eccodes: "2.5.1.78" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.78" - bigg.reaction: "RBFSa" - kegg.pathway: - - "sce00740" - - "sce01110" + - "sce00740" + - "sce01110" - kegg.reaction: "R04457" - metanetx.reaction: "MNXR97501" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0968" - - name: "riboflavin synthase" - - metabolites: !!omap - - s_0314: 1 - - s_0328: -2 - - s_0794: -1 - - s_1405: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR256C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0968" + - name: "riboflavin synthase" + - metabolites: !!omap + - s_0314: 1 + - s_0328: -2 + - s_0794: -1 + - s_1405: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR256C" + - eccodes: "2.5.1.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.9" - bigg.reaction: "RBFSb" - kegg.pathway: - - "sce00740" - - "sce01110" + - "sce00740" + - "sce01110" - kegg.reaction: "R00066" - metanetx.reaction: "MNXR103430" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0969" - - name: "ribokinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0575: -1 - - s_0794: 1 - - s_1408: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR036W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0969" + - name: "ribokinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0575: -1 + - s_0794: 1 + - s_1408: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR036W" + - eccodes: "2.7.1.15" + - references: "1964349" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.15" - bigg.reaction: "RBK" - kegg.pathway: "sce00030" @@ -46639,507 +49275,593 @@ - metanetx.reaction: "MNXR103431" - pmid: "1964349" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0970" - - name: "ribonucleoside-triphosphate reductase (ATP)" - - metabolites: !!omap - - s_0434: -1 - - s_0586: 1 - - s_0794: -1 - - s_0803: 1 - - s_1616: -1 - - s_1620: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR209C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0970" + - name: "ribonucleoside-triphosphate reductase (ATP)" + - metabolites: !!omap + - s_0434: -1 + - s_0586: 1 + - s_0794: -1 + - s_0803: 1 + - s_1616: -1 + - s_1620: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR209C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "RNTR1" - kegg.reaction: "R02014" - metanetx.reaction: "MNXR104070" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0971" - - name: "ribonucleoside-triphosphate reductase (CTP)" - - metabolites: !!omap - - s_0539: -1 - - s_0590: 1 - - s_0794: -1 - - s_0803: 1 - - s_1616: -1 - - s_1620: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR209C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0971" + - name: "ribonucleoside-triphosphate reductase (CTP)" + - metabolites: !!omap + - s_0539: -1 + - s_0590: 1 + - s_0794: -1 + - s_0803: 1 + - s_1616: -1 + - s_1620: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR209C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "RNTR3" - kegg.reaction: "R02022" - metanetx.reaction: "MNXR104076" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0972" - - name: "ribonucleoside-triphosphate reductase (GTP)" - - metabolites: !!omap - - s_0617: 1 - - s_0785: -1 - - s_0794: -1 - - s_0803: 1 - - s_1616: -1 - - s_1620: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR209C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0972" + - name: "ribonucleoside-triphosphate reductase (GTP)" + - metabolites: !!omap + - s_0617: 1 + - s_0785: -1 + - s_0794: -1 + - s_0803: 1 + - s_1616: -1 + - s_1620: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR209C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "RNTR2" - kegg.reaction: "R02020" - metanetx.reaction: "MNXR104073" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0973" - - name: "ribonucleoside-triphosphate reductase (UTP)" - - metabolites: !!omap - - s_0656: 1 - - s_0794: -1 - - s_0803: 1 - - s_1559: -1 - - s_1616: -1 - - s_1620: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR209C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0973" + - name: "ribonucleoside-triphosphate reductase (UTP)" + - metabolites: !!omap + - s_0656: 1 + - s_0794: -1 + - s_0803: 1 + - s_1559: -1 + - s_1616: -1 + - s_1620: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR209C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "RNTR4" - kegg.reaction: "R02023" - metanetx.reaction: "MNXR104079" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0974" - - name: "ribonucleotide reductase" - - metabolites: !!omap - - s_0394: -1 - - s_0582: 1 - - s_0794: -1 - - s_0803: 1 - - s_1616: -1 - - s_1620: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0974" + - name: "ribonucleotide reductase" + - metabolites: !!omap + - s_0394: -1 + - s_0582: 1 + - s_0794: -1 + - s_0803: 1 + - s_1616: -1 + - s_1620: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" + - eccodes: "1.17.4.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.17.4.1" - bigg.reaction: "RNDR1" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00480" + - "sce00230" + - "sce00240" + - "sce00480" - kegg.reaction: "R02017" - metanetx.reaction: "MNXR104060" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0975" - - name: "ribonucleotide reductase" - - metabolites: !!omap - - s_0398: -1 - - s_0583: 1 - - s_0800: -1 - - s_0808: 1 - - s_1618: -1 - - s_1622: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0975" + - name: "ribonucleotide reductase" + - metabolites: !!omap + - s_0398: -1 + - s_0583: 1 + - s_0800: -1 + - s_0808: 1 + - s_1618: -1 + - s_1622: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" + - eccodes: "1.17.4.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.17.4.1" - bigg.reaction: "RNDR1n" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00480" + - "sce00230" + - "sce00240" + - "sce00480" - kegg.reaction: "R02017" - metanetx.reaction: "MNXR104060" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0976" - - name: "ribonucleotide reductase" - - metabolites: !!omap - - s_0467: -1 - - s_0587: 1 - - s_0794: -1 - - s_0803: 1 - - s_1616: -1 - - s_1620: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0976" + - name: "ribonucleotide reductase" + - metabolites: !!omap + - s_0467: -1 + - s_0587: 1 + - s_0794: -1 + - s_0803: 1 + - s_1616: -1 + - s_1620: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" + - eccodes: "1.17.4.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.17.4.1" - bigg.reaction: "RNDR3" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00480" + - "sce00230" + - "sce00240" + - "sce00480" - kegg.reaction: "R02024" - metanetx.reaction: "MNXR104064" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0977" - - name: "ribonucleotide reductase" - - metabolites: !!omap - - s_0468: -1 - - s_0588: 1 - - s_0800: -1 - - s_0808: 1 - - s_1618: -1 - - s_1622: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0977" + - name: "ribonucleotide reductase" + - metabolites: !!omap + - s_0468: -1 + - s_0588: 1 + - s_0800: -1 + - s_0808: 1 + - s_1618: -1 + - s_1622: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" + - eccodes: "1.17.4.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.17.4.1" - bigg.reaction: "RNDR3n" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00480" + - "sce00230" + - "sce00240" + - "sce00480" - kegg.reaction: "R02024" - metanetx.reaction: "MNXR104064" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0978" - - name: "ribonucleotide reductase" - - metabolites: !!omap - - s_0613: 1 - - s_0739: -1 - - s_0794: -1 - - s_0803: 1 - - s_1616: -1 - - s_1620: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0978" + - name: "ribonucleotide reductase" + - metabolites: !!omap + - s_0613: 1 + - s_0739: -1 + - s_0794: -1 + - s_0803: 1 + - s_1616: -1 + - s_1620: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" + - eccodes: "1.17.4.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.17.4.1" - bigg.reaction: "RNDR2" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00480" + - "sce00230" + - "sce00240" + - "sce00480" - kegg.reaction: "R02019" - metanetx.reaction: "MNXR104062" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0979" - - name: "ribonucleotide reductase" - - metabolites: !!omap - - s_0614: 1 - - s_0742: -1 - - s_0800: -1 - - s_0808: 1 - - s_1618: -1 - - s_1622: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0979" + - name: "ribonucleotide reductase" + - metabolites: !!omap + - s_0614: 1 + - s_0742: -1 + - s_0800: -1 + - s_0808: 1 + - s_1618: -1 + - s_1622: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" + - eccodes: "1.17.4.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.17.4.1" - bigg.reaction: "RNDR2n" - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00480" + - "sce00230" + - "sce00240" + - "sce00480" - kegg.reaction: "R02019" - metanetx.reaction: "MNXR104062" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0982" - - name: "ribose-5-phosphate isomerase" - - metabolites: !!omap - - s_0577: -1 - - s_1408: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR095C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0982" + - name: "ribose-5-phosphate isomerase" + - metabolites: !!omap + - s_0577: -1 + - s_1408: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR095C" + - eccodes: "5.3.1.6" + - references: "9763699" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.1.6" - bigg.reaction: "RPI" - kegg.pathway: - - "sce00030" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - metanetx.reaction: "MNXR104084" - pmid: "9763699" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0983" - - name: "ribosylnicotinamide kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_1218: -1 - - s_1224: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL129W" - - annotation: !!omap - - ec-code: - - "2.7.1.173" - - "2.7.1.22" + - confidence_score: 3 + - !!omap + - id: "r_0983" + - name: "ribosylnicotinamide kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_1218: -1 + - s_1224: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL129W" + - eccodes: "2.7.1.173; 2.7.1.22" + - references: "15137942" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.173; 2.7.1.22" - bigg.reaction: "RNMK" - kegg.pathway: "sce00760" - kegg.reaction: "R02324" - metanetx.reaction: "MNXR104069" - pmid: "15137942" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0984" - - name: "ribulose 5-phosphate 3-epimerase" - - metabolites: !!omap - - s_0577: -1 - - s_0581: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL121C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0984" + - name: "ribulose 5-phosphate 3-epimerase" + - metabolites: !!omap + - s_0577: -1 + - s_0581: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL121C" + - eccodes: "5.1.3.1" + - references: "9032985" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.1.3.1" - bigg.reaction: "RPE" - kegg.pathway: - - "sce00030" - - "sce00040" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00030" + - "sce00040" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01529" - metanetx.reaction: "MNXR104083" - pmid: "9032985" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0985" - - name: "S-adenosyl-L-methionine:3-hexaprenyl-4,5-dihydroxylate O-methyltransferase" - - metabolites: !!omap - - s_0213: -1 - - s_0214: 1 - - s_0799: 1 - - s_1415: 1 - - s_1419: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - annotation: !!omap - - ec-code: - - "1.14.13.-" - - "2.1.1.114" - - "2.1.1.201" - - "2.1.1.64" - - "2.7.-.-" + - confidence_score: 3 + - !!omap + - id: "r_0985" + - name: "S-adenosyl-L-methionine:3-hexaprenyl-4,5-dihydroxylate O-methyltransferase" + - metabolites: !!omap + - s_0213: -1 + - s_0214: 1 + - s_0799: 1 + - s_1415: 1 + - s_1419: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" + - eccodes: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" + - references: "15792955" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - bigg.reaction: "3DH5HPBMTm" - kegg.pathway: - - "sce00130" - - "sce01110" + - "sce00130" + - "sce01110" - kegg.reaction: "R04711" - metanetx.reaction: "MNXR94862" - pmid: "15792955" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0986" - - name: "S-adenosyl-methionine delta-24-sterol-c-methyltransferase" - - metabolites: !!omap - - s_0700: 1 - - s_0794: 1 - - s_1413: 1 - - s_1416: -1 - - s_1569: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0986" + - name: "S-adenosyl-methionine delta-24-sterol-c-methyltransferase" + - metabolites: !!omap + - s_0700: 1 + - s_0794: 1 + - s_1413: 1 + - s_1416: -1 + - s_1569: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML008C" + - eccodes: "2.1.1.41" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.41" - bigg.reaction: "SAM24MT" - kegg.pathway: - - "sce00100" - - "sce01110" - - "sce01130" + - "sce00100" + - "sce01110" + - "sce01130" - kegg.reaction: "R04427" - metanetx.reaction: "MNXR104270" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0987" - - name: "S-formylglutathione hydralase" - - metabolites: !!omap - - s_0722: 1 - - s_0750: 1 - - s_0794: 1 - - s_0803: -1 - - s_1421: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL068C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0987" + - name: "S-formylglutathione hydralase" + - metabolites: !!omap + - s_0722: 1 + - s_0750: 1 + - s_0794: 1 + - s_0803: -1 + - s_1421: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL068C" + - eccodes: "3.1.2.12" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.12" - bigg.reaction: "SFGTHi" - kegg.pathway: "sce01200" - kegg.reaction: "R00527" - metanetx.reaction: "MNXR104357" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0988" - - name: "saccharopine dehydrogenase (NAD, L-lysine forming)" - - metabolites: !!omap - - s_0180: 1 - - s_0794: 1 - - s_0803: -1 - - s_1025: 1 - - s_1038: -1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIR034C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0988" + - name: "saccharopine dehydrogenase (NAD, L-lysine forming)" + - metabolites: !!omap + - s_0180: 1 + - s_0794: 1 + - s_0803: -1 + - s_1025: 1 + - s_1038: -1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIR034C" + - eccodes: "1.5.1.7" + - references: "3928261" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.1.7" - bigg.reaction: "SACCD2" - kegg.pathway: - - "sce00300" - - "sce00310" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00300" + - "sce00310" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R00715" - metanetx.reaction: "MNXR104237" - pmid: "3928261" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0989" - - name: "saccharopine dehydrogenase (NADP, L-glutamate forming)" - - metabolites: !!omap - - s_0794: -1 - - s_0803: 1 - - s_0959: -1 - - s_0991: -1 - - s_1038: 1 - - s_1207: 1 - - s_1212: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNR050C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0989" + - name: "saccharopine dehydrogenase (NADP, L-glutamate forming)" + - metabolites: !!omap + - s_0794: -1 + - s_0803: 1 + - s_0959: -1 + - s_0991: -1 + - s_1038: 1 + - s_1207: 1 + - s_1212: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNR050C" + - eccodes: "1.5.1.10" + - references: "3123231" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.5.1.10" - bigg.reaction: "SACCD1" - kegg.pathway: - - "sce00300" - - "sce00310" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00300" + - "sce00310" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R02315" - metanetx.reaction: "MNXR104236" - pmid: "3123231" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0990" - - name: "sedoheptulose 1,7-bisphosphate D-glyceraldehyde-3-phosphate-lyase" - - metabolites: !!omap - - s_0551: 1 - - s_0629: 1 - - s_1426: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL060C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0990" + - name: "sedoheptulose 1,7-bisphosphate D-glyceraldehyde-3-phosphate-lyase" + - metabolites: !!omap + - s_0551: 1 + - s_0629: 1 + - s_1426: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL060C" + - eccodes: "4.1.2.13" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.2.13" - bigg.reaction: "FBA3" - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00051" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00010" + - "sce00030" + - "sce00051" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01829" - metanetx.reaction: "MNXR99461" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_0992" - - name: "serine O-acetyltransferase" - - metabolites: !!omap - - s_0373: -1 - - s_0529: 1 - - s_1039: -1 - - s_1234: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YDL040C and YGR147C and YHR013C) or (YDL040C and YGR147C)" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_0992" + - name: "serine O-acetyltransferase" + - metabolites: !!omap + - s_0373: -1 + - s_0529: 1 + - s_1039: -1 + - s_1234: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YDL040C and YGR147C and YHR013C) or (YDL040C and YGR147C)" + - eccodes: "" + - references: "8335636" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "SERAT" - kegg.reaction: "R00586" - metanetx.reaction: "MNXR104275" - pmid: "8335636" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0993" - - name: "serine palmitotransferase" - - metabolites: !!omap - - s_0231: 1 - - s_0457: 1 - - s_0530: 1 - - s_0795: -1 - - s_1040: -1 - - s_1303: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR058C-A and YDR062W and YMR296C) or (YDR062W and YMR296C)" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_0993" + - name: "serine palmitotransferase" + - metabolites: !!omap + - s_0231: 1 + - s_0457: 1 + - s_0530: 1 + - s_0795: -1 + - s_1040: -1 + - s_1303: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR058C-A and YDR062W and YMR296C) or (YDR062W and YMR296C)" + - eccodes: "2.3.1.50" + - references: "10713067; 18296751; 2066332; 8058731" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.50" - kegg.pathway: - - "sce00600" - - "sce04138" + - "sce00600" + - "sce04138" - kegg.reaction: "R01281" - metanetx.reaction: "MNXR104347" - pmid: - - "10713067" - - "18296751" - - "2066332" - - "8058731" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0995" - - name: "seryl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_1039: -1 - - s_1428: 1 - - s_1607: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR023W or YHR011W" - - annotation: !!omap + - "10713067" + - "18296751" + - "2066332" + - "8058731" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0995" + - name: "seryl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_1039: -1 + - s_1428: 1 + - s_1607: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR023W or YHR011W" + - eccodes: "6.1.1.11" + - references: "3031581" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.11" - bigg.reaction: "SERTRS" - kegg.pathway: "sce00970" @@ -47147,900 +49869,1012 @@ - metanetx.reaction: "MNXR104350" - pmid: "3031581" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0996" - - name: "shikimate dehydrogenase" - - metabolites: !!omap - - s_0211: -1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_1429: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR127W" - - annotation: !!omap - - ec-code: - - "1.1.1.25" - - "2.5.1.19" - - "2.7.1.71" - - "4.2.1.10" - - "4.2.3.4" + - confidence_score: 3 + - !!omap + - id: "r_0996" + - name: "shikimate dehydrogenase" + - metabolites: !!omap + - s_0211: -1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_1429: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR127W" + - eccodes: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" + - references: "6355828" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - bigg.reaction: "SHK3Dr" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R02413" - metanetx.reaction: "MNXR104378" - pmid: "6355828" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0997" - - name: "shikimate kinase" - - metabolites: !!omap - - s_0261: 1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_1429: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR127W" - - annotation: !!omap - - ec-code: - - "1.1.1.25" - - "2.5.1.19" - - "2.7.1.71" - - "4.2.1.10" - - "4.2.3.4" + - confidence_score: 3 + - !!omap + - id: "r_0997" + - name: "shikimate kinase" + - metabolites: !!omap + - s_0261: 1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_1429: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR127W" + - eccodes: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" + - references: "6355828" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - bigg.reaction: "SHKK" - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R02412" - metanetx.reaction: "MNXR104379" - pmid: "6355828" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0998" - - name: "sirohydrochlorin dehydrogenase" - - metabolites: !!omap - - s_0794: 2 - - s_1198: -1 - - s_1203: 1 - - s_1375: -1 - - s_1431: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR213W" - - annotation: !!omap - - ec-code: - - "1.3.1.76" - - "4.99.1.4" + - confidence_score: 3 + - !!omap + - id: "r_0998" + - name: "sirohydrochlorin dehydrogenase" + - metabolites: !!omap + - s_0794: 2 + - s_1198: -1 + - s_1203: 1 + - s_1375: -1 + - s_1431: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR213W" + - eccodes: "1.3.1.76; 4.99.1.4" + - references: "11980703" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.3.1.76; 4.99.1.4" - bigg.reaction: "SHCHD2" - kegg.pathway: - - "sce00860" - - "sce01110" + - "sce00860" + - "sce01110" - kegg.reaction: "R03947" - metanetx.reaction: "MNXR104373" - pmid: "11980703" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_0999" - - name: "sirohydrochlorin ferrochetalase" - - metabolites: !!omap - - s_0794: 2 - - s_0924: -1 - - s_1430: 1 - - s_1431: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR213W" - - annotation: !!omap - - ec-code: - - "1.3.1.76" - - "4.99.1.4" + - confidence_score: 3 + - !!omap + - id: "r_0999" + - name: "sirohydrochlorin ferrochetalase" + - metabolites: !!omap + - s_0794: 2 + - s_0924: -1 + - s_1430: 1 + - s_1431: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR213W" + - eccodes: "1.3.1.76; 4.99.1.4" + - references: "11980703" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.3.1.76; 4.99.1.4" - bigg.reaction: "SHCHF" - kegg.pathway: - - "sce00860" - - "sce01110" + - "sce00860" + - "sce01110" - kegg.reaction: "R02864" - metanetx.reaction: "MNXR104375" - pmid: "11980703" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1000" - - name: "fumarate reductase (FMN)" - - metabolites: !!omap - - s_0714: 1 - - s_0717: -1 - - s_0725: -1 - - s_0794: 1 - - s_1458: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YEL047C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1000" + - name: "fumarate reductase (FMN)" + - metabolites: !!omap + - s_0714: 1 + - s_0717: -1 + - s_0725: -1 + - s_0794: 1 + - s_1458: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YEL047C" + - eccodes: "1.3.1.6" + - references: "22672422; 12393208" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.6" - kegg.reaction: "R00408" - metanetx.reaction: "MNXR129857" - pmid: - - "22672422" - - "12393208" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1001" - - name: "spermidine synthase" - - metabolites: !!omap - - s_0303: 1 - - s_0794: 1 - - s_1389: -1 - - s_1420: -1 - - s_1439: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR069C" - - annotation: !!omap + - "22672422" + - "12393208" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_1001" + - name: "spermidine synthase" + - metabolites: !!omap + - s_0303: 1 + - s_0794: 1 + - s_1389: -1 + - s_1420: -1 + - s_1439: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR069C" + - eccodes: "2.5.1.16" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.16" - bigg.reaction: "SPMS" - kegg.pathway: - - "sce00270" - - "sce00330" - - "sce00410" - - "sce00480" + - "sce00270" + - "sce00330" + - "sce00410" + - "sce00480" - kegg.reaction: "R01920" - metanetx.reaction: "MNXR95860" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1002" - - name: "spermine synthase" - - metabolites: !!omap - - s_0303: 1 - - s_0794: 1 - - s_1420: -1 - - s_1439: -1 - - s_1442: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR146C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1002" + - name: "spermine synthase" + - metabolites: !!omap + - s_0303: 1 + - s_0794: 1 + - s_1420: -1 + - s_1439: -1 + - s_1442: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR146C" + - eccodes: "2.5.1.22" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.22" - bigg.reaction: "SPRMS" - kegg.pathway: - - "sce00270" - - "sce00330" - - "sce00410" - - "sce00480" + - "sce00270" + - "sce00330" + - "sce00410" + - "sce00480" - kegg.reaction: "R02869" - metanetx.reaction: "MNXR96042" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1003" - - name: "sphinganine phosphate lyase" - - metabolites: !!omap - - s_0825: 1 - - s_1240: 1 - - s_1446: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR294C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1003" + - name: "sphinganine phosphate lyase" + - metabolites: !!omap + - s_0825: 1 + - s_1240: 1 + - s_1446: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR294C" + - eccodes: "4.1.2.27" + - references: "18296751; 9334171" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.2.27" - bigg.reaction: "SGPL11r" - kegg.pathway: "sce00600" - kegg.reaction: "R02464" - metanetx.reaction: "MNXR104365" - pmid: - - "18296751" - - "9334171" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1004" - - name: "sphingoid base-phosphate phosphatase (phytosphingosine 1-phosphate)" - - metabolites: !!omap - - s_0804: -1 - - s_1323: 1 - - s_1366: 1 - - s_1367: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL134W or YKR053C" - - annotation: !!omap + - "18296751" + - "9334171" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_1004" + - name: "sphingoid base-phosphate phosphatase (phytosphingosine 1-phosphate)" + - metabolites: !!omap + - s_0804: -1 + - s_1323: 1 + - s_1366: 1 + - s_1367: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL134W or YKR053C" + - eccodes: "3.1.3.-" + - references: "18296751; 9353337; 9419344" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - bigg.reaction: "SBPP2er" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR104281" - pmid: - - "18296751" - - "9353337" - - "9419344" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1005" - - name: "sphingoid base-phosphate phosphatase (sphinganine 1-phosphatase)" - - metabolites: !!omap - - s_0804: -1 - - s_1323: 1 - - s_1445: 1 - - s_1446: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL134W or YKR053C" - - annotation: !!omap + - "18296751" + - "9353337" + - "9419344" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_1005" + - name: "sphingoid base-phosphate phosphatase (sphinganine 1-phosphatase)" + - metabolites: !!omap + - s_0804: -1 + - s_1323: 1 + - s_1445: 1 + - s_1446: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL134W or YKR053C" + - eccodes: "3.1.3.-" + - references: "18296751; 9353337; 9419344" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - bigg.reaction: "SBPP1er" - kegg.pathway: "sce00600" - kegg.reaction: "R06520" - metanetx.reaction: "MNXR104280" - pmid: - - "18296751" - - "9353337" - - "9419344" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1006" - - name: "sphingolipid long chain base kinase (phytosphingosine)" - - metabolites: !!omap - - s_0395: 1 - - s_0435: -1 - - s_0795: 1 - - s_1366: -1 - - s_1367: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR260W or YOR171C" - - annotation: !!omap + - "18296751" + - "9353337" + - "9419344" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_1006" + - name: "sphingolipid long chain base kinase (phytosphingosine)" + - metabolites: !!omap + - s_0395: 1 + - s_0435: -1 + - s_0795: 1 + - s_1366: -1 + - s_1367: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR260W or YOR171C" + - eccodes: "2.7.1.91" + - references: "18296751; 9677363" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.91" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR104440" - pmid: - - "18296751" - - "9677363" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1007" - - name: "sphingolipid long chain base kinase (sphinganine)" - - metabolites: !!omap - - s_0395: 1 - - s_0435: -1 - - s_0795: 1 - - s_1445: -1 - - s_1446: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR260W or YOR171C" - - annotation: !!omap + - "18296751" + - "9677363" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_1007" + - name: "sphingolipid long chain base kinase (sphinganine)" + - metabolites: !!omap + - s_0395: 1 + - s_0435: -1 + - s_0795: 1 + - s_1445: -1 + - s_1446: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR260W or YOR171C" + - eccodes: "2.7.1.91" + - references: "18296751; 9677363" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.91" - kegg.pathway: "sce00600" - kegg.reaction: "R02976" - metanetx.reaction: "MNXR104439" - pmid: - - "18296751" - - "9677363" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1008" - - name: "spontaneous cis-aconitate(3-) to trans-aconitate" - - metabolites: !!omap - - s_0517: -1 - - s_1504: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - "18296751" + - "9677363" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_1008" + - name: "spontaneous cis-aconitate(3-) to trans-aconitate" + - metabolites: !!omap + - s_0517: -1 + - s_1504: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "11329290" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - kegg.reaction: "R02244" - metanetx.reaction: "MNXR95382" - pmid: "11329290" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1009" - - name: "spontaneous cis-aconitate(3-) to trans-aconitate" - - metabolites: !!omap - - s_0516: -1 - - s_1503: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_1009" + - name: "spontaneous cis-aconitate(3-) to trans-aconitate" + - metabolites: !!omap + - s_0516: -1 + - s_1503: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "11329290" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "ACONIs" - kegg.reaction: "R02244" - metanetx.reaction: "MNXR95382" - pmid: "11329290" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1010" - - name: "squalene epoxidase (NAD)" - - metabolites: !!omap - - s_0038: 1 - - s_0795: -1 - - s_0804: 1 - - s_1199: 1 - - s_1204: -1 - - s_1276: -1 - - s_1448: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR175C" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_1010" + - name: "squalene epoxidase (NAD)" + - metabolites: !!omap + - s_0038: 1 + - s_0795: -1 + - s_0804: 1 + - s_1199: 1 + - s_1204: -1 + - s_1276: -1 + - s_1448: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR175C" + - eccodes: "1.14.14.17" + - references: "10622712" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.14.17" - bigg.reaction: "SQLErx" - kegg.pathway: - - "sce00100" - - "sce00909" - - "sce01110" - - "sce01130" + - "sce00100" + - "sce00909" + - "sce01110" + - "sce01130" - metanetx.reaction: "MNXR104528" - pmid: "10622712" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1011" - - name: "squalene epoxidase (NADP)" - - metabolites: !!omap - - s_0038: 1 - - s_0795: -1 - - s_0804: 1 - - s_1208: 1 - - s_1213: -1 - - s_1276: -1 - - s_1448: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR175C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1011" + - name: "squalene epoxidase (NADP)" + - metabolites: !!omap + - s_0038: 1 + - s_0795: -1 + - s_0804: 1 + - s_1208: 1 + - s_1213: -1 + - s_1276: -1 + - s_1448: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR175C" + - eccodes: "1.14.14.17" + - references: "10622712" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.14.17" - bigg.reaction: "SQLEr" - kegg.pathway: - - "sce00100" - - "sce00909" - - "sce01110" - - "sce01130" + - "sce00100" + - "sce00909" + - "sce01110" + - "sce01130" - kegg.reaction: "R02874" - metanetx.reaction: "MNXR104447" - pmid: "10622712" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1012" - - name: "squalene synthase" - - metabolites: !!omap - - s_0190: -2 - - s_0633: 2 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_1447: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR190W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1012" + - name: "squalene synthase" + - metabolites: !!omap + - s_0190: -2 + - s_0633: 2 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_1447: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR190W" + - eccodes: "2.5.1.21" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.21" - bigg.reaction: "SQLS" - kegg.pathway: - - "sce00100" - - "sce00909" - - "sce01110" - - "sce01130" + - "sce00100" + - "sce00909" + - "sce01110" + - "sce01130" - kegg.reaction: "R06223" - metanetx.reaction: "MNXR104529" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1021" - - name: "succinate dehydrogenase (ubiquinone-6)" - - metabolites: !!omap - - s_0727: 1 - - s_1460: -1 - - s_1535: 1 - - s_1537: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "(YDR178W and YJL045W and YKL141W and YLL041C) or (YDR178W and YKL141W and YKL148C and YLL041C) or (YLR164W and YJL045W and YKL141W and YLL041C)" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1021" + - name: "succinate dehydrogenase (ubiquinone-6)" + - metabolites: !!omap + - s_0727: 1 + - s_1460: -1 + - s_1535: 1 + - s_1537: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "(YDR178W and YJL045W and YKL141W and YLL041C) or (YDR178W and YKL141W and YKL148C and YLL041C) or (YLR164W and YJL045W and YKL141W and YLL041C)" + - eccodes: "1.3.5.1" + - references: "9929002" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.5.1" - bigg.reaction: "SUCD2_u6m" - kegg.pathway: - - "sce00020" - - "sce00190" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00020" + - "sce00190" + - "sce01110" + - "sce01130" + - "sce01200" - metanetx.reaction: "MNXR104627" - pmid: "9929002" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1022" - - name: "succinate-CoA ligase (ADP-forming)" - - metabolites: !!omap - - s_0397: -1 - - s_0437: 1 - - s_0532: 1 - - s_1326: -1 - - s_1460: 1 - - s_1464: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR244C and YOR142W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1022" + - name: "succinate-CoA ligase (ADP-forming)" + - metabolites: !!omap + - s_0397: -1 + - s_0437: 1 + - s_0532: 1 + - s_1326: -1 + - s_1460: 1 + - s_1464: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR244C and YOR142W" + - eccodes: "6.2.1.5" + - references: "9874242" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.5" - bigg.reaction: "SUCOASm" - kegg.pathway: - - "sce00020" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00020" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R00405" - metanetx.reaction: "MNXR104635" - pmid: "9874242" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1023" - - name: "succinate-semialdehyde dehydrogenase (NADP)" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1207: -1 - - s_1212: 1 - - s_1458: 1 - - s_1461: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR006W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1023" + - name: "succinate-semialdehyde dehydrogenase (NADP)" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1207: -1 + - s_1212: 1 + - s_1458: 1 + - s_1461: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR006W" + - eccodes: "1.2.1.16" + - references: "11031268" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.16" - bigg.reaction: "SSALy" - kegg.pathway: - - "sce00250" - - "sce00310" - - "sce00350" - - "sce00650" - - "sce00760" + - "sce00250" + - "sce00310" + - "sce00350" + - "sce00650" + - "sce00760" - kegg.reaction: "R00714" - metanetx.reaction: "MNXR104541" - pmid: "11031268" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1024" - - name: "sucrose hydrolyzing enxyme" - - metabolites: !!omap - - s_0554: 1 - - s_0565: 1 - - s_0805: -1 - - s_1466: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL162W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1024" + - name: "sucrose hydrolyzing enxyme" + - metabolites: !!omap + - s_0554: 1 + - s_0565: 1 + - s_0805: -1 + - s_1466: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL162W" + - eccodes: "3.2.1.26" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.26" - bigg.reaction: "SUCRe" - kegg.pathway: - - "sce00052" - - "sce00500" + - "sce00052" + - "sce00500" - kegg.reaction: "R00801" - metanetx.reaction: "MNXR104638" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1025" - - name: "sulfate adenylyltransferase" - - metabolites: !!omap - - s_0298: 1 - - s_0434: -1 - - s_0633: 1 - - s_0794: -1 - - s_1467: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR010W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1025" + - name: "sulfate adenylyltransferase" + - metabolites: !!omap + - s_0298: 1 + - s_0434: -1 + - s_0633: 1 + - s_0794: -1 + - s_1467: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR010W" + - eccodes: "2.7.7.4" + - references: "197388" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.4" - bigg.reaction: "SADT" - kegg.pathway: - - "sce00230" - - "sce00261" - - "sce00450" - - "sce00920" - - "sce01130" + - "sce00230" + - "sce00261" + - "sce00450" + - "sce00920" + - "sce01130" - kegg.reaction: "R00529" - metanetx.reaction: "MNXR104240" - pmid: "197388" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1026" - - name: "sulfate adenylyltransferase (ADP)" - - metabolites: !!omap - - s_0298: 1 - - s_0394: -1 - - s_0794: -1 - - s_1322: 1 - - s_1467: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL050C" - - annotation: !!omap - - ec-code: - - "2.7.7.5" - - "2.7.7.53" + - confidence_score: 3 + - !!omap + - id: "r_1026" + - name: "sulfate adenylyltransferase (ADP)" + - metabolites: !!omap + - s_0298: 1 + - s_0394: -1 + - s_0794: -1 + - s_1322: 1 + - s_1467: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL050C" + - eccodes: "2.7.7.5; 2.7.7.53" + - references: "2556364" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.7.5; 2.7.7.53" - bigg.reaction: "SLFAT" - kegg.pathway: - - "sce00230" - - "sce00920" + - "sce00230" + - "sce00920" - kegg.reaction: "R00530" - metanetx.reaction: "MNXR104444" - pmid: "2556364" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1027" - - name: "sulfite reductase (NADPH2)" - - metabolites: !!omap - - s_0794: -4 - - s_0803: 3 - - s_0841: 1 - - s_1207: 3 - - s_1212: -3 - - s_1469: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR030W and YJR137C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1027" + - name: "sulfite reductase (NADPH2)" + - metabolites: !!omap + - s_0794: -4 + - s_0803: 3 + - s_0841: 1 + - s_1207: 3 + - s_1212: -3 + - s_1469: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR030W and YJR137C" + - eccodes: "1.8.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.8.1.2" - bigg.reaction: "SULR" - kegg.pathway: "sce00920" - kegg.reaction: "R00858" - metanetx.reaction: "MNXR104650" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1028" - - name: "taurcholate via ABC system" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_1473: -1 - - s_1474: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL048C" - - annotation: !!omap - - metanetx.reaction: "MNXR104744" - - pmid: "9182565" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1029" - - name: "taurine dioxygenase" - - metabolites: !!omap - - s_0180: -1 - - s_0417: 1 - - s_0456: 1 - - s_0794: 1 - - s_1275: -1 - - s_1458: 1 - - s_1469: 1 - - s_1471: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL057C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1029" + - name: "taurine dioxygenase" + - metabolites: !!omap + - s_0180: -1 + - s_0417: 1 + - s_0456: 1 + - s_0794: 1 + - s_1275: -1 + - s_1458: 1 + - s_1469: 1 + - s_1471: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL057C" + - eccodes: "1.14.11.-" + - references: "10482536" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.11.-" - bigg.reaction: "TAUDO" - kegg.reaction: "R05320" - metanetx.reaction: "MNXR104730" - pmid: "10482536" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1030" - - name: "tetrahydrofolate aminomethyltransferase" - - metabolites: !!omap - - s_0305: -1 - - s_0321: 1 - - s_0799: 1 - - s_0807: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - annotation: !!omap - - ec-code: - - "1.4.4.2" - - "1.8.1.4" - - "2.1.2.10" + - confidence_score: 3 + - !!omap + - id: "r_1030" + - name: "tetrahydrofolate aminomethyltransferase" + - metabolites: !!omap + - s_0305: -1 + - s_0321: 1 + - s_0799: 1 + - s_0807: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" + - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "THFATm" - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" - kegg.reaction: "R02300" - metanetx.reaction: "MNXR99614" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1031" - - name: "tetrahydrofolate:L-glutamate gamma-ligase (ADP-forming)" - - metabolites: !!omap - - s_0308: 1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0991: -1 - - s_1322: 1 - - s_1487: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL132C or YOR241W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1031" + - name: "tetrahydrofolate:L-glutamate gamma-ligase (ADP-forming)" + - metabolites: !!omap + - s_0308: 1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0991: -1 + - s_1322: 1 + - s_1487: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL132C or YOR241W" + - eccodes: "6.3.2.17" + - references: "10799479; 21190580" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.2.17" - bigg.reaction: "THFGLUS" - kegg.pathway: "sce00790" - kegg.reaction: "R00942" - metanetx.reaction: "MNXR143412" - pmid: - - "10799479" - - "21190580" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1032" - - name: "thiamin diphosphatase" - - metabolites: !!omap - - s_0796: 1 - - s_0805: -2 - - s_1324: 2 - - s_1476: -1 - - s_1490: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR092C" - - annotation: !!omap + - "10799479" + - "21190580" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_1032" + - name: "thiamin diphosphatase" + - metabolites: !!omap + - s_0796: 1 + - s_0805: -2 + - s_1324: 2 + - s_1476: -1 + - s_1490: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR092C" + - eccodes: "3.1.3.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.2" - bigg.reaction: "THMDPe" - kegg.pathway: - - "sce00730" - - "sce00740" + - "sce00730" + - "sce00740" - metanetx.reaction: "MNXR138860" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1033" - - name: "thiamin phosphatase" - - metabolites: !!omap - - s_0805: -1 - - s_1324: 1 - - s_1490: 1 - - s_1498: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR092C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1033" + - name: "thiamin phosphatase" + - metabolites: !!omap + - s_0805: -1 + - s_1324: 1 + - s_1490: 1 + - s_1498: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR092C" + - eccodes: "3.1.3.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.2" - bigg.reaction: "THMPe" - kegg.pathway: - - "sce00730" - - "sce00740" + - "sce00730" + - "sce00740" - kegg.reaction: "R02135" - metanetx.reaction: "MNXR104823" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1034" - - name: "thiamine diphosphokinase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0794: 1 - - s_1475: 1 - - s_1489: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR143C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1034" + - name: "thiamine diphosphokinase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0794: 1 + - s_1475: 1 + - s_1489: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR143C" + - eccodes: "2.7.6.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.6.2" - bigg.reaction: "TMDPK" - kegg.pathway: "sce00730" - kegg.reaction: "R00619" - metanetx.reaction: "MNXR104886" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1035" - - name: "thiamine-diphosphate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_1475: -1 - - s_1532: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR143C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1035" + - name: "thiamine-diphosphate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_1475: -1 + - s_1532: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR143C" + - eccodes: "2.7.6.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.6.2" - bigg.reaction: "TMDPPK" - kegg.pathway: "sce00730" - kegg.reaction: "R00616" - metanetx.reaction: "MNXR104888" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1036" - - name: "thiamine-phosphate diphosphorylase" - - metabolites: !!omap - - s_0267: -1 - - s_0293: -1 - - s_0633: 1 - - s_0794: -1 - - s_1497: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL214C" - - annotation: !!omap - - ec-code: - - "2.5.1.3" - - "2.7.1.50" + - confidence_score: 2 + - !!omap + - id: "r_1036" + - name: "thiamine-phosphate diphosphorylase" + - metabolites: !!omap + - s_0267: -1 + - s_0293: -1 + - s_0633: 1 + - s_0794: -1 + - s_1497: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL214C" + - eccodes: "2.5.1.3; 2.7.1.50" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.3; 2.7.1.50" - bigg.reaction: "TMPPP" - kegg.pathway: "sce00730" - kegg.reaction: "R03223" - metanetx.reaction: "MNXR104908" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1037" - - name: "thioredoxin" - - metabolites: !!omap - - s_0800: -1 - - s_0808: 2 - - s_0839: -1 - - s_1618: -1 - - s_1622: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YGR209C and YIL010W) or (YIL010W and YLR043C)" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1037" + - name: "thioredoxin" + - metabolites: !!omap + - s_0800: -1 + - s_0808: 2 + - s_0839: -1 + - s_1618: -1 + - s_1622: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YGR209C and YIL010W) or (YIL010W and YLR043C)" + - eccodes: "1.11.1.15" + - references: "12730197" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.11.1.15" - bigg.reaction: "THIORDXni" - metanetx.reaction: "MNXR104815" - pmid: "12730197" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1038" - - name: "thioredoxin reductase (NADPH)" - - metabolites: !!omap - - s_1207: 1 - - s_1212: -1 - - s_1616: 1 - - s_1620: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YDR353W and YGR209C) or (YDR353W and YLR043C) or YDR353W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1038" + - name: "thioredoxin reductase (NADPH)" + - metabolites: !!omap + - s_1207: 1 + - s_1212: -1 + - s_1616: 1 + - s_1620: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YDR353W and YGR209C) or (YDR353W and YLR043C) or YDR353W" + - eccodes: "1.8.1.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.8.1.9" - bigg.reaction: "TRDR" - kegg.pathway: "sce00450" - kegg.reaction: "R02016" - metanetx.reaction: "MNXR104766" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1039" - - name: "thioredoxin reductase (NADPH)" - - metabolites: !!omap - - s_1210: 1 - - s_1214: -1 - - s_1617: 1 - - s_1621: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YCR083W and YHR106W) or (YCR083W and YPL091W)" - - annotation: !!omap - - ec-code: - - "1.8.1.7" - - "1.8.1.9" + - confidence_score: 2 + - !!omap + - id: "r_1039" + - name: "thioredoxin reductase (NADPH)" + - metabolites: !!omap + - s_1210: 1 + - s_1214: -1 + - s_1617: 1 + - s_1621: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YCR083W and YHR106W) or (YCR083W and YPL091W)" + - eccodes: "1.8.1.7; 1.8.1.9" + - references: "15701801" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.8.1.7; 1.8.1.9" - bigg.reaction: "TRDRm" - kegg.pathway: - - "sce00450" - - "sce00480" + - "sce00450" + - "sce00480" - kegg.reaction: "R02016" - metanetx.reaction: "MNXR104766" - pmid: "15701801" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1040" - - name: "threonine aldolase" - - metabolites: !!omap - - s_0359: 1 - - s_1003: 1 - - s_1045: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YEL046C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1040" + - name: "threonine aldolase" + - metabolites: !!omap + - s_0359: 1 + - s_1003: 1 + - s_1045: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YEL046C" + - eccodes: "4.1.2.48" + - references: "9151955" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.2.48" - bigg.reaction: "THRA" - kegg.pathway: - - "sce00260" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01230" - kegg.reaction: "R00751" - metanetx.reaction: "MNXR104833" - pmid: "9151955" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1041" - - name: "threonine synthase" - - metabolites: !!omap - - s_0803: -1 - - s_1045: 1 - - s_1238: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR053W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1041" + - name: "threonine synthase" + - metabolites: !!omap + - s_0803: -1 + - s_1045: 1 + - s_1238: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR053W" + - eccodes: "4.2.3.1" + - references: "8082795" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.3.1" - bigg.reaction: "THRS" - kegg.pathway: - - "sce00260" - - "sce00750" - - "sce01110" - - "sce01230" + - "sce00260" + - "sce00750" + - "sce01110" + - "sce01230" - kegg.reaction: "R01466" - metanetx.reaction: "MNXR104846" - pmid: "8082795" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1042" - - name: "threonyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_1045: -1 - - s_1491: 1 - - s_1608: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL078W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1042" + - name: "threonyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_1045: -1 + - s_1491: 1 + - s_1608: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL078W" + - eccodes: "6.1.1.3" + - references: "2995918" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.3" - bigg.reaction: "THRTRS" - kegg.pathway: "sce00970" @@ -48048,21 +50882,25 @@ - metanetx.reaction: "MNXR104848" - pmid: "2995918" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1043" - - name: "threonyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0437: -1 - - s_0636: 1 - - s_1047: -1 - - s_1492: 1 - - s_1609: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL194C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1043" + - name: "threonyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0437: -1 + - s_0636: 1 + - s_1047: -1 + - s_1492: 1 + - s_1609: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL194C" + - eccodes: "6.1.1.3" + - references: "2999113" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.3" - bigg.reaction: "THRTRSm" - kegg.pathway: "sce00970" @@ -48070,261 +50908,301 @@ - metanetx.reaction: "MNXR104848" - pmid: "2999113" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1045" - - name: "thymidylate synthase" - - metabolites: !!omap - - s_0306: -1 - - s_0625: 1 - - s_0649: 1 - - s_0654: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR074C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1045" + - name: "thymidylate synthase" + - metabolites: !!omap + - s_0306: -1 + - s_0625: 1 + - s_0649: 1 + - s_0654: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR074C" + - eccodes: "2.1.1.45" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.45" - bigg.reaction: "TMDS" - kegg.pathway: - - "sce00240" - - "sce00670" + - "sce00240" + - "sce00670" - kegg.reaction: "R02101" - metanetx.reaction: "MNXR104889" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1046" - - name: "trans-aconitate 3-methyltransferase" - - metabolites: !!omap - - s_0007: 1 - - s_1413: 1 - - s_1416: -1 - - s_1503: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER175C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1046" + - name: "trans-aconitate 3-methyltransferase" + - metabolites: !!omap + - s_0007: 1 + - s_1413: 1 + - s_1416: -1 + - s_1503: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER175C" + - eccodes: "2.1.1.145" + - references: "15147181" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.145" - bigg.reaction: "ACONMT" - kegg.reaction: "R05763" - metanetx.reaction: "MNXR95383" - pmid: "15147181" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1047" - - name: "trans-pentaprenyltranstransferase" - - metabolites: !!omap - - s_0636: 1 - - s_0831: 1 - - s_0945: -1 - - s_1313: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR003W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1047" + - name: "trans-pentaprenyltranstransferase" + - metabolites: !!omap + - s_0636: 1 + - s_0831: 1 + - s_0945: -1 + - s_1313: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR003W" + - eccodes: "2.5.1.-" + - references: "2198286" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.-" - bigg.reaction: "PPTTm" - kegg.pathway: - - "sce00900" - - "sce01110" + - "sce00900" + - "sce01110" - kegg.reaction: "R05613" - metanetx.reaction: "MNXR103150" - pmid: "2198286" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1048" - - name: "transaldolase" - - metabolites: !!omap - - s_0551: 1 - - s_0557: 1 - - s_0764: -1 - - s_1427: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR043C or YLR354C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1048" + - name: "transaldolase" + - metabolites: !!omap + - s_0551: 1 + - s_0557: 1 + - s_0764: -1 + - s_1427: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR043C or YLR354C" + - eccodes: "2.2.1.2" + - references: "8300619" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.2.1.2" - bigg.reaction: "TALA" - kegg.pathway: - - "sce00030" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - metanetx.reaction: "MNXR124173" - pmid: "8300619" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1049" - - name: "transketolase 1" - - metabolites: !!omap - - s_0581: -1 - - s_0764: 1 - - s_1408: -1 - - s_1427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR117C or YPR074C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1049" + - name: "transketolase 1" + - metabolites: !!omap + - s_0581: -1 + - s_0764: 1 + - s_1408: -1 + - s_1427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR117C or YPR074C" + - eccodes: "2.2.1.1" + - references: "8268320" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.2.1.1" - bigg.reaction: "TKT1" - kegg.pathway: - - "sce00030" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - metanetx.reaction: "MNXR104868" - pmid: "8268320" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1050" - - name: "transketolase 2" - - metabolites: !!omap - - s_0551: -1 - - s_0557: 1 - - s_0581: -1 - - s_0764: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR117C or YPR074C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1050" + - name: "transketolase 2" + - metabolites: !!omap + - s_0551: -1 + - s_0557: 1 + - s_0581: -1 + - s_0764: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR117C or YPR074C" + - eccodes: "2.2.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.2.1.1" - bigg.reaction: "TKT2" - kegg.pathway: - - "sce00030" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - metanetx.reaction: "MNXR124172" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1051" - - name: "trehalose-phosphatase" - - metabolites: !!omap - - s_0409: -1 - - s_0803: -1 - - s_1322: 1 - - s_1520: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YBR126C and YDR074W and YML100W) or (YBR126C and YDR074W and YMR261C)" - - annotation: !!omap - - ec-code: - - "2.4.1.15" - - "3.1.3.12" + - confidence_score: 2 + - !!omap + - id: "r_1051" + - name: "trehalose-phosphatase" + - metabolites: !!omap + - s_0409: -1 + - s_0803: -1 + - s_1322: 1 + - s_1520: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YBR126C and YDR074W and YML100W) or (YBR126C and YDR074W and YMR261C)" + - eccodes: "2.4.1.15; 3.1.3.12" + - references: "21623372" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.4.1.15; 3.1.3.12" - bigg.reaction: "TRE6PP" - kegg.pathway: "sce00500" - kegg.reaction: "R02778" - metanetx.reaction: "MNXR104926" - pmid: "21623372" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1054" - - name: "triose-phosphate isomerase" - - metabolites: !!omap - - s_0629: -1 - - s_0764: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR050C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1054" + - name: "triose-phosphate isomerase" + - metabolites: !!omap + - s_0629: -1 + - s_0764: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR050C" + - eccodes: "5.3.1.1" + - references: "6759603" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.1.1" - bigg.reaction: "TPI" - kegg.pathway: - - "sce00010" - - "sce00051" - - "sce00562" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" + - "sce00010" + - "sce00051" + - "sce00562" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" - kegg.reaction: "R01015" - metanetx.reaction: "MNXR104918" - pmid: "6759603" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1055" - - name: "tryptophan synthase (indoleglycerol phosphate)" - - metabolites: !!omap - - s_0086: -1 - - s_0764: 1 - - s_0803: 1 - - s_1039: -1 - - s_1048: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL026C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1055" + - name: "tryptophan synthase (indoleglycerol phosphate)" + - metabolites: !!omap + - s_0086: -1 + - s_0764: 1 + - s_0803: 1 + - s_1039: -1 + - s_1048: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL026C" + - eccodes: "4.2.1.20" + - references: "6342605" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.20" - bigg.reaction: "TRPS1" - kegg.pathway: - - "sce00260" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" + - "sce00260" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" - metanetx.reaction: "MNXR132685" - pmid: "6342605" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1056" - - name: "tryptophan transaminase" - - metabolites: !!omap - - s_0180: -1 - - s_0855: 1 - - s_0991: 1 - - s_1048: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL202W" - - annotation: !!omap - - ec-code: - - "2.6.1.39" - - "2.6.1.57" + - confidence_score: 3 + - !!omap + - id: "r_1056" + - name: "tryptophan transaminase" + - metabolites: !!omap + - s_0180: -1 + - s_0855: 1 + - s_0991: 1 + - s_1048: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL202W" + - eccodes: "2.6.1.39; 2.6.1.57" + - references: "9491082; 9491083" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.6.1.39; 2.6.1.57" - bigg.reaction: "TRPTA" - kegg.pathway: - - "sce00130" - - "sce00270" - - "sce00300" - - "sce00350" - - "sce00360" - - "sce00380" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00130" + - "sce00270" + - "sce00300" + - "sce00350" + - "sce00360" + - "sce00380" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00684" - metanetx.reaction: "MNXR104947" - pmid: - - "9491082" - - "9491083" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1057" - - name: "tryptophanyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_1048: -1 - - s_1527: 1 - - s_1610: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL097C" - - annotation: !!omap + - "9491082" + - "9491083" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_1057" + - name: "tryptophanyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_1048: -1 + - s_1527: 1 + - s_1610: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL097C" + - eccodes: "6.1.1.2" + - references: "9046085" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.2" - bigg.reaction: "TRPTRS" - kegg.pathway: "sce00970" @@ -48332,21 +51210,25 @@ - metanetx.reaction: "MNXR104948" - pmid: "9046085" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1058" - - name: "tryptophanyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0437: -1 - - s_0636: 1 - - s_1050: -1 - - s_1528: 1 - - s_1611: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1058" + - name: "tryptophanyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0437: -1 + - s_0636: 1 + - s_1050: -1 + - s_1528: 1 + - s_1611: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR268W" + - eccodes: "6.1.1.2" + - references: "2999114" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.2" - bigg.reaction: "TRPTRSm" - kegg.pathway: "sce00970" @@ -48354,87 +51236,97 @@ - metanetx.reaction: "MNXR104948" - pmid: "2999114" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1063" - - name: "tyrosine transaminase" - - metabolites: !!omap - - s_0180: 1 - - s_0204: -1 - - s_0991: -1 - - s_1051: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL202W" - - annotation: !!omap - - ec-code: - - "2.6.1.39" - - "2.6.1.57" + - confidence_score: 3 + - !!omap + - id: "r_1063" + - name: "tyrosine transaminase" + - metabolites: !!omap + - s_0180: 1 + - s_0204: -1 + - s_0991: -1 + - s_1051: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL202W" + - eccodes: "2.6.1.39; 2.6.1.57" + - references: "9491082; 9491083" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.6.1.39; 2.6.1.57" - bigg.reaction: "TYRTA" - kegg.pathway: - - "sce00130" - - "sce00270" - - "sce00300" - - "sce00350" - - "sce00360" - - "sce00380" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00130" + - "sce00270" + - "sce00300" + - "sce00350" + - "sce00360" + - "sce00380" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R00734" - metanetx.reaction: "MNXR105000" - pmid: - - "9491082" - - "9491083" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1065" - - name: "tyrosine transaminase" - - metabolites: !!omap - - s_0184: 1 - - s_0206: -1 - - s_0995: -1 - - s_1054: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR027C" - - annotation: !!omap + - "9491082" + - "9491083" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_1065" + - name: "tyrosine transaminase" + - metabolites: !!omap + - s_0184: 1 + - s_0206: -1 + - s_0995: -1 + - s_1054: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR027C" + - eccodes: "2.6.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.1" - bigg.reaction: "TYRTAip" - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R00734" - metanetx.reaction: "MNXR105000" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1066" - - name: "tyrosyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_1051: -1 - - s_1533: 1 - - s_1612: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR185C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1066" + - name: "tyrosyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_1051: -1 + - s_1533: 1 + - s_1612: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR185C" + - eccodes: "6.1.1.1" + - references: "8509419" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.1" - bigg.reaction: "TYRTRS" - kegg.pathway: "sce00970" @@ -48442,21 +51334,25 @@ - metanetx.reaction: "MNXR105001" - pmid: "8509419" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1067" - - name: "tyrosyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0437: -1 - - s_0636: 1 - - s_1053: -1 - - s_1534: 1 - - s_1613: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL097W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1067" + - name: "tyrosyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0437: -1 + - s_0636: 1 + - s_1053: -1 + - s_1534: 1 + - s_1613: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL097W" + - eccodes: "6.1.1.1" + - references: "3315228" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.1" - bigg.reaction: "TYRTRSm" - kegg.pathway: "sce00970" @@ -48464,189 +51360,221 @@ - metanetx.reaction: "MNXR105001" - pmid: "3315228" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1068" - - name: "UDP-glucose:ergosterol glucosyltransferase" - - metabolites: !!omap - - s_0666: -1 - - s_0670: 1 - - s_0794: 1 - - s_1538: 1 - - s_1543: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR189C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1068" + - name: "UDP-glucose:ergosterol glucosyltransferase" + - metabolites: !!omap + - s_0666: -1 + - s_0670: 1 + - s_0794: 1 + - s_1538: 1 + - s_1543: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR189C" + - eccodes: "2.4.1.173" + - references: "10224056" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.173" - bigg.reaction: "ERGSTGLCT" - pmid: "10224056" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1069" - - name: "UDP-N-acetylglucosamine diphosphorylase" - - metabolites: !!omap - - s_0633: 1 - - s_0794: -1 - - s_1189: -1 - - s_1544: 1 - - s_1559: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL103C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1069" + - name: "UDP-N-acetylglucosamine diphosphorylase" + - metabolites: !!omap + - s_0633: 1 + - s_0794: -1 + - s_1189: -1 + - s_1544: 1 + - s_1559: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL103C" + - eccodes: "2.7.7.23" + - references: "16408321" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.23" - kegg.pathway: - - "sce00520" - - "sce01130" + - "sce00520" + - "sce01130" - kegg.reaction: "R00416" - metanetx.reaction: "MNXR106519" - pmid: "16408321" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1070" - - name: "UDPglucose 4-epimerase" - - metabolites: !!omap - - s_1541: 1 - - s_1543: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR019C" - - annotation: !!omap - - ec-code: - - "5.1.3.2" - - "5.1.3.3" + - confidence_score: 3 + - !!omap + - id: "r_1070" + - name: "UDPglucose 4-epimerase" + - metabolites: !!omap + - s_1541: 1 + - s_1543: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR019C" + - eccodes: "5.1.3.2; 5.1.3.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "5.1.3.2; 5.1.3.3" - bigg.reaction: "UDPG4E" - kegg.pathway: - - "sce00010" - - "sce00052" - - "sce00520" - - "sce01110" - - "sce01130" + - "sce00010" + - "sce00052" + - "sce00520" + - "sce01110" + - "sce01130" - kegg.reaction: "R00291" - metanetx.reaction: "MNXR143428" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1071" - - name: "UDPglucose--hexose-1-phosphate uridylyltransferase" - - metabolites: !!omap - - s_0410: -1 - - s_0567: 1 - - s_1541: 1 - - s_1543: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR018C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1071" + - name: "UDPglucose--hexose-1-phosphate uridylyltransferase" + - metabolites: !!omap + - s_0410: -1 + - s_0567: 1 + - s_1541: 1 + - s_1543: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR018C" + - eccodes: "2.7.7.12" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.12" - bigg.reaction: "UGLT" - kegg.pathway: - - "sce00052" - - "sce00520" + - "sce00052" + - "sce00520" - kegg.reaction: "R00955" - metanetx.reaction: "MNXR143436" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1072" - - name: "UMP kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_1538: 1 - - s_1545: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL024C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1072" + - name: "UMP kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_1538: 1 + - s_1545: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL024C" + - eccodes: "2.7.4.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.14" - bigg.reaction: "UMPK" - kegg.pathway: "sce00240" - kegg.reaction: "R00158" - metanetx.reaction: "MNXR105118" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1073" - - name: "UMP kinase" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_1540: 1 - - s_1548: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL024C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1073" + - name: "UMP kinase" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_1540: 1 + - s_1548: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL024C" + - eccodes: "2.7.4.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.14" - bigg.reaction: "UMPKn" - kegg.pathway: "sce00240" - kegg.reaction: "R00158" - metanetx.reaction: "MNXR105118" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1074" - - name: "uracil phosphoribosyltransferase" - - metabolites: !!omap - - s_0633: 1 - - s_1386: -1 - - s_1545: 1 - - s_1550: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR128W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1074" + - name: "uracil phosphoribosyltransferase" + - metabolites: !!omap + - s_0633: 1 + - s_1386: -1 + - s_1545: 1 + - s_1550: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR128W" + - eccodes: "2.4.2.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.9" - bigg.reaction: "UPPRT" - kegg.pathway: "sce00240" - kegg.reaction: "R00966" - metanetx.reaction: "MNXR105142" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1075" - - name: "urea carboxylase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0445: -1 - - s_0794: 1 - - s_1322: 1 - - s_1552: -1 - - s_1554: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR208C" - - annotation: !!omap - - ec-code: - - "3.5.1.54" - - "6.3.4.6" + - confidence_score: 2 + - !!omap + - id: "r_1075" + - name: "urea carboxylase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0445: -1 + - s_0794: 1 + - s_1322: 1 + - s_1552: -1 + - s_1554: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR208C" + - eccodes: "3.5.1.54; 6.3.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.5.1.54; 6.3.4.6" - bigg.reaction: "UREASE" - kegg.pathway: - - "sce00220" - - "sce00791" + - "sce00220" + - "sce00791" - kegg.reaction: "R00774" - metanetx.reaction: "MNXR105149" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1076" - - name: "ureidoglycolate hydrolase" - - metabolites: !!omap - - s_0419: 2 - - s_0456: 1 - - s_0779: 1 - - s_0794: -2 - - s_0803: -1 - - s_1555: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIR032C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1076" + - name: "ureidoglycolate hydrolase" + - metabolites: !!omap + - s_0419: 2 + - s_0456: 1 + - s_0779: 1 + - s_0794: -2 + - s_0803: -1 + - s_1555: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIR032C" + - eccodes: "4.3.2.3" + - references: "1776360" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.3.2.3" - bigg.reaction: "UGLYCH" - kegg.pathway: "sce00230" @@ -48654,296 +51582,288 @@ - metanetx.reaction: "MNXR105091" - pmid: "1776360" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1077" - - name: "uridine kinase (ATP:uridine)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_1545: 1 - - s_1556: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR020C or YNR012W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1077" + - name: "uridine kinase (ATP:uridine)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_1545: 1 + - s_1556: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR020C or YNR012W" + - eccodes: "2.7.1.48" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.48" - bigg.reaction: "URIK1" - kegg.pathway: "sce00240" - kegg.reaction: "R00964" - metanetx.reaction: "MNXR105162" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1078" - - name: "uridine kinase (GTP:uridine)" - - metabolites: !!omap - - s_0739: 1 - - s_0785: -1 - - s_0794: 1 - - s_1545: 1 - - s_1556: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR020C or YNR012W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1078" + - name: "uridine kinase (GTP:uridine)" + - metabolites: !!omap + - s_0739: 1 + - s_0785: -1 + - s_0794: 1 + - s_1545: 1 + - s_1556: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR020C or YNR012W" + - eccodes: "2.7.1.48" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.48" - bigg.reaction: "URIK2" - kegg.pathway: "sce00240" - kegg.reaction: "R00968" - metanetx.reaction: "MNXR105163" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1079" - - name: "uridylate kinase (dUMP)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0652: 1 - - s_0654: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL024C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1079" + - name: "uridylate kinase (dUMP)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0652: 1 + - s_0654: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL024C" + - eccodes: "2.7.4.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.14" - bigg.reaction: "URIDK2r" - kegg.pathway: "sce00240" - kegg.reaction: "R02098" - metanetx.reaction: "MNXR105160" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1080" - - name: "uridylate kinase (dUMP)" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0653: 1 - - s_0655: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL024C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1080" + - name: "uridylate kinase (dUMP)" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0653: 1 + - s_0655: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL024C" + - eccodes: "2.7.4.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.14" - bigg.reaction: "URIDK2rn" - kegg.pathway: "sce00240" - kegg.reaction: "R02098" - metanetx.reaction: "MNXR105160" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1081" - - name: "uroporphyrinogen decarboxylase (uroporphyrinogen III)" - - metabolites: !!omap - - s_0456: 4 - - s_0538: 1 - - s_0794: -4 - - s_1558: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR047W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1081" + - name: "uroporphyrinogen decarboxylase (uroporphyrinogen III)" + - metabolites: !!omap + - s_0456: 4 + - s_0538: 1 + - s_0794: -4 + - s_1558: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR047W" + - eccodes: "4.1.1.37" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.37" - bigg.reaction: "UPPDC1" - kegg.pathway: - - "sce00860" - - "sce01110" + - "sce00860" + - "sce01110" - kegg.reaction: "R03197" - metanetx.reaction: "MNXR105140" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1082" - - name: "uroporphyrinogen methyltransferase" - - metabolites: !!omap - - s_0794: 1 - - s_1375: 1 - - s_1413: 2 - - s_1416: -2 - - s_1558: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR069W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1082" + - name: "uroporphyrinogen methyltransferase" + - metabolites: !!omap + - s_0794: 1 + - s_1375: 1 + - s_1413: 2 + - s_1416: -2 + - s_1558: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR069W" + - eccodes: "2.1.1.107" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.107" - bigg.reaction: "UPP3MT" - kegg.pathway: - - "sce00860" - - "sce01110" + - "sce00860" + - "sce01110" - kegg.reaction: "R03194" - metanetx.reaction: "MNXR105137" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1083" - - name: "uroporphyrinogen-III synthase" - - metabolites: !!omap - - s_0803: 1 - - s_1378: -1 - - s_1558: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR278W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1083" + - name: "uroporphyrinogen-III synthase" + - metabolites: !!omap + - s_0803: 1 + - s_1378: -1 + - s_1558: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR278W" + - eccodes: "4.2.1.75" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.75" - bigg.reaction: "UPP3S" - kegg.pathway: - - "sce00860" - - "sce01110" + - "sce00860" + - "sce01110" - kegg.reaction: "R03165" - metanetx.reaction: "MNXR105139" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1084" - - name: "UTP-glucose-1-phosphate uridylyltransferase" - - metabolites: !!omap - - s_0567: -1 - - s_0633: 1 - - s_0794: -1 - - s_1543: 1 - - s_1559: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHL012W or YKL035W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1084" + - name: "UTP-glucose-1-phosphate uridylyltransferase" + - metabolites: !!omap + - s_0567: -1 + - s_0633: 1 + - s_0794: -1 + - s_1543: 1 + - s_1559: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHL012W or YKL035W" + - eccodes: "2.7.7.9" + - references: "7588797" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.9" - bigg.reaction: "GALUi" - kegg.pathway: - - "sce00040" - - "sce00052" - - "sce00500" - - "sce00520" - - "sce01130" + - "sce00040" + - "sce00052" + - "sce00500" + - "sce00520" + - "sce01130" - kegg.reaction: "R00289" - metanetx.reaction: "MNXR143121" - pmid: "7588797" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1085" - - name: "V-ATPase, Golgi" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: -1 - - s_0797: 2 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR127C and YDL185W and YEL027W and YEL051W and YGR020C and YHR026W and YHR039C-A and YKL080W and YLR447C and YMR054W and YOR332W and YPL234C and YPR036W" - - annotation: !!omap - - ec-code: - - "3.1.-.-" - - "3.6.3.14" - - kegg.pathway: - - "sce00190" - - "sce04145" - - metanetx.reaction: "MNXR96133" - - pmid: - - "11278748" - - "11836511" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1086" - - name: "V-ATPase, vacuole" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: -1 - - s_0802: 2 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR127C and YDL185W and YEL027W and YEL051W and YGR020C and YHR026W and YHR039C-A and YKL080W and YLR447C and YOR270C and YOR332W and YPL234C and YPR036W" - - annotation: !!omap - - ec-code: - - "3.1.-.-" - - "3.6.3.14" - - kegg.pathway: - - "sce00190" - - "sce04145" - - metanetx.reaction: "MNXR96133" - - pmid: - - "11278748" - - "11836511" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1087" - - name: "valine transaminase" - - metabolites: !!omap - - s_0180: -1 - - s_0232: 1 - - s_0991: 1 - - s_1056: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR148W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1087" + - name: "valine transaminase" + - metabolites: !!omap + - s_0180: -1 + - s_0232: 1 + - s_0991: 1 + - s_1056: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR148W" + - eccodes: "2.6.1.42" + - references: "9748245" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "VALTA" - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01214" - metanetx.reaction: "MNXR96230" - pmid: "9748245" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1088" - - name: "valine transaminase, mitochondiral" - - metabolites: !!omap - - s_0182: -1 - - s_0233: 1 - - s_0993: 1 - - s_1058: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR208W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1088" + - name: "valine transaminase, mitochondiral" + - metabolites: !!omap + - s_0182: -1 + - s_0233: 1 + - s_0993: 1 + - s_1058: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR208W" + - eccodes: "2.6.1.42" + - references: "9748245" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "VALTAim" - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" - kegg.reaction: "R01214" - metanetx.reaction: "MNXR96230" - pmid: "9748245" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1089" - - name: "valyl-tRNA synthetase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_1056: -1 - - s_1561: 1 - - s_1614: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR094W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1089" + - name: "valyl-tRNA synthetase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_1056: -1 + - s_1561: 1 + - s_1614: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR094W" + - eccodes: "6.1.1.9" + - references: "3294828" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.9" - bigg.reaction: "VALTRS" - kegg.pathway: "sce00970" @@ -48951,21 +51871,25 @@ - metanetx.reaction: "MNXR105186" - pmid: "3294828" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1090" - - name: "valyl-tRNA synthetase" - - metabolites: !!omap - - s_0424: 1 - - s_0437: -1 - - s_0636: 1 - - s_1058: -1 - - s_1562: 1 - - s_1615: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR094W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1090" + - name: "valyl-tRNA synthetase" + - metabolites: !!omap + - s_0424: 1 + - s_0437: -1 + - s_0636: 1 + - s_1058: -1 + - s_1562: 1 + - s_1615: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR094W" + - eccodes: "6.1.1.9" + - references: "3294828" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.9" - bigg.reaction: "VALTRSm" - kegg.pathway: "sce00970" @@ -48973,55640 +51897,69494 @@ - metanetx.reaction: "MNXR105186" - pmid: "3294828" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1091" - - name: "xanthine phosphoribosyltransferase" - - metabolites: !!omap - - s_0357: -1 - - s_0633: 1 - - s_1386: -1 - - s_1565: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR133W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_1091" + - name: "xanthine phosphoribosyltransferase" + - metabolites: !!omap + - s_0357: -1 + - s_0633: 1 + - s_1386: -1 + - s_1565: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR133W" + - eccodes: "2.4.2.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.2.-" - bigg.reaction: "XPPT" - kegg.reaction: "R02142" - metanetx.reaction: "MNXR105243" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1092" - - name: "xylitol dehydrogenase (D-xyulose-forming)" - - metabolites: !!omap - - s_0580: 1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_1566: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR070C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1092" + - name: "xylitol dehydrogenase (D-xyulose-forming)" + - metabolites: !!omap + - s_0580: 1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_1566: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR070C" + - eccodes: "1.1.1.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.9" - bigg.reaction: "XYLTD_D" - kegg.pathway: "sce00040" - kegg.reaction: "R01896" - metanetx.reaction: "MNXR105262" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1093" - - name: "xylose reductase" - - metabolites: !!omap - - s_0578: -1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_1566: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR104W" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.21" + - confidence_score: 2 + - !!omap + - id: "r_1093" + - name: "xylose reductase" + - metabolites: !!omap + - s_0578: -1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_1566: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR104W" + - eccodes: "1.1.1.-; 1.1.1.21" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.21" - bigg.reaction: "XYLR" - kegg.pathway: "sce00040" - kegg.reaction: "R01431" - metanetx.reaction: "MNXR105261" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1094" - - name: "xylulokinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0580: -1 - - s_0581: 1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR194C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_1094" + - name: "xylulokinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0580: -1 + - s_0581: 1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR194C" + - eccodes: "2.7.1.17" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.17" - bigg.reaction: "XYLK" - kegg.pathway: "sce00040" - kegg.reaction: "R01639" - metanetx.reaction: "MNXR105255" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1095" - - name: "yUMP synthetase" - - metabolites: !!omap - - s_0803: 1 - - s_1388: 1 - - s_1408: -1 - - s_1550: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YFL001W or YGL063W or YNL292W or YPL212C" - - annotation: !!omap - - ec-code: - - "5.4.99.-" - - "5.4.99.25" - - "5.4.99.44" - - "5.4.99.45" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1096" - - name: "(R)-mevalonate transport" - - metabolites: !!omap - - s_0028: 1 - - s_0029: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "MEV_Rt" - - metanetx.reaction: "MNXR105406" - - pmid: "15215118" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1097" - - name: "(R,R)-butanediol transport" - - metabolites: !!omap - - s_0035: -1 - - s_0036: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "BTDt_RR" - - metanetx.reaction: "MNXR136615" - - pmid: "10938079" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1098" - - name: "2-methylbutyl transport" - - metabolites: !!omap - - s_0172: -1 - - s_0173: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "2MBACt" - - metanetx.reaction: "MNXR94808" - - pmid: "10653746" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1099" - - name: "2-oxoadipate and 2-oxoglutarate transport" - - metabolites: !!omap - - s_0176: 1 - - s_0177: -1 - - s_0180: -1 - - s_0182: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR222W or YPL134C" - - annotation: !!omap - - bigg.reaction: "2OXOADPTm" - - metanetx.reaction: "MNXR94819" + - confidence_score: 2 + - !!omap + - id: "r_1095" + - name: "yUMP synthetase" + - metabolites: !!omap + - s_0803: 1 + - s_1388: 1 + - s_1408: -1 + - s_1550: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YFL001W or YGL063W or YNL292W or YPL212C" + - eccodes: "5.4.99.-; 5.4.99.25; 5.4.99.44; 5.4.99.45" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "5.4.99.-; 5.4.99.25; 5.4.99.44; 5.4.99.45" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_1619" + - name: "5'-nucleotidase (GMP)" + - metabolites: !!omap + - s_0782: -1 + - s_0790: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER037W" + - eccodes: "" + - references: "23670538" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NTD9" + - kegg.reaction: "R01227" + - metanetx.reaction: "MNXR100381" + - pmid: "23670538" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_1838" + - name: "homocitrate synthase" + - metabolites: !!omap + - s_0182: -1 + - s_0376: -1 + - s_0532: 1 + - s_0799: 1 + - s_0807: -1 + - s_0834: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL131W or YDL182W" + - eccodes: "2.3.3.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.3.14" + - kegg.pathway: + - "sce00300" + - "sce00620" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00271" + - metanetx.reaction: "MNXR141692" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_2029" + - name: "pyridoxine kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_1396: -1 + - s_1398: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YEL029C" + - eccodes: "2.7.1.35" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.35" + - bigg.reaction: "PYDXNK" + - kegg.pathway: "sce00750" + - kegg.reaction: "R01909" + - metanetx.reaction: "MNXR103362" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_2112" + - name: "kynurenine aminotransferase" + - metabolites: !!omap + - s_0803: 1 + - s_0955: 1 + - s_1020: -1 + - s_1399: -1 + - s_2763: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL060W" + - eccodes: "2.6.1.7" + - references: "18205391" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.6.1.7" + - kegg.pathway: "sce00380" + - kegg.reaction: "R01959" + - metanetx.reaction: "MNXR132503" + - pmid: "18205391" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2113" + - name: "spontaneous kynurenic acid to quinaldic acid" + - metabolites: !!omap + - s_0794: -2 + - s_0803: 1 + - s_1207: 1 + - s_1212: -1 + - s_2763: -1 + - s_2764: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "18205391" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.reaction: "R03687" + - metanetx.reaction: "MNXR108341" + - pmid: "18205391" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2114" + - name: "spontaneous 2-amino-3-carboxymuconate-6-semialdehyde to quinolinate" + - metabolites: !!omap + - s_0147: -1 + - s_0794: 1 + - s_0803: 1 + - s_1403: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "18205391" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.reaction: "R04293" + - metanetx.reaction: "MNXR103396" + - pmid: "18205391" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2115" + - name: "alcohol dehydrogenase, (acetaldehyde to ethanol)" + - metabolites: !!omap + - s_0359: -1 + - s_0680: 1 + - s_0794: -1 + - s_1198: 1 + - s_1203: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR145W or YOL086C" + - eccodes: "1.1.1.1" + - references: "12499363" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD2ir" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00754" + - metanetx.reaction: "MNXR95725" + - pmid: "12499363" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2116" + - name: "acetaldehyde dehydrogenase" + - metabolites: !!omap + - s_0359: -1 + - s_0362: 1 + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C or YMR170C or YER073W or YOR374W" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.2.1.3" + - kegg.pathway: + - "sce00010" + - "sce00340" + - "sce00350" + - "sce00360" + - "sce00410" + - "sce01110" + - kegg.reaction: "R00710" + - metanetx.reaction: "MNXR95749" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_2117" + - name: "phenylalanine transaminase" + - metabolites: !!omap + - s_0951: 1 + - s_0955: 1 + - s_1032: -1 + - s_1399: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR137W" + - eccodes: "2.6.1.58; 2.6.1.7" + - references: "9491082; 9491083" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.6.1.58; 2.6.1.7" + - kegg.pathway: + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00692" + - metanetx.reaction: "MNXR125716" - pmid: - - "16844075" - - "11013234" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1100" - - name: "3-hexaprenyl-4,5-dihydroxybenzoate transport" - - metabolites: !!omap - - s_0212: -1 - - s_0213: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "3DH5HPBtm" - - metanetx.reaction: "MNXR94863" - - pmid: "11583838" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1101" - - name: "4-aminobutyrate transport" - - metabolites: !!omap - - s_0734: 1 - - s_0736: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL210W or YOR348C" - - annotation: !!omap - - bigg.reaction: "ABUTt2r" - - metanetx.reaction: "MNXR94994" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1102" - - name: "5-aminolevulinate transport" - - metabolites: !!omap - - s_0315: 1 - - s_0316: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL210W" - - annotation: !!omap - - bigg.reaction: "5AOPt2" - - metanetx.reaction: "MNXR95061" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1103" - - name: "5-formyltetrahydrofolic acid transport" - - metabolites: !!omap - - s_0319: 1 - - s_0320: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR95074" - - pmid: "8573145" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1104" - - name: "8-Amino-7-oxononanoate transport" - - metabolites: !!omap - - s_0352: 1 - - s_0354: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR056C" - - annotation: !!omap - - bigg.reaction: "8AONNt2" - - metanetx.reaction: "MNXR95113" - - pmid: "10333520" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1106" - - name: "acetate transport" - - metabolites: !!omap - - s_0362: -1 - - s_0364: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR010C" - - annotation: !!omap - - bigg.reaction: "ACtr" - - metanetx.reaction: "MNXR95431" - - pmid: "14968426" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1107" - - name: "acetic ester transport" - - metabolites: !!omap - - s_0685: -1 - - s_0686: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - pmid: "10653746" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1108" - - name: "adenine transport" - - metabolites: !!omap - - s_0383: 1 - - s_0384: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER056C or YER060W or YER060W-A or YGL186C" - - annotation: !!omap - - bigg.reaction: "ADEt2" - - metanetx.reaction: "MNXR95446" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1109" - - name: "adenosine transport" - - metabolites: !!omap - - s_0386: 1 - - s_0387: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL022C" - - annotation: !!omap - - bigg.reaction: "ADNt2" - - metanetx.reaction: "MNXR95461" - - pmid: "10827169" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1110" - - name: "ADP/ATP transporter" - - metabolites: !!omap - - s_0394: -1 - - s_0397: 1 - - s_0434: 1 - - s_0437: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBL030C or YBR085W or YMR056C" - - annotation: !!omap - - bigg.reaction: "ATPtm" - - kegg.reaction: "R00124" - - metanetx.reaction: "MNXR96123" + - "9491082" + - "9491083" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2118" + - name: "tryptophan transaminase" + - metabolites: !!omap + - s_0855: 1 + - s_0951: -1 + - s_1032: 1 + - s_1048: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR137W" + - eccodes: "2.6.1.57; 2.6.1.7" + - references: "9491082; 9491083" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.6.1.57; 2.6.1.7" + - bigg.reaction: "araphe3" + - kegg.pathway: + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00684" + - metanetx.reaction: "MNXR104947" - pmid: - - "22672422" - - "7003152" - - "14998997" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1111" - - name: "ADP/ATP transporter" - - metabolites: !!omap - - s_0394: 1 - - s_0399: -1 - - s_0434: -1 - - s_0439: 1 - - s_0794: 1 - - s_0801: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR128C" - - annotation: !!omap - - bigg.reaction: "ATPtp_H" - - metanetx.reaction: "MNXR96139" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1112" - - name: "AKG transporter, mitochonrial" - - metabolites: !!omap - - s_0180: -1 - - s_0182: 1 - - s_0522: 1 - - s_0524: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR241W" - - annotation: !!omap - - bigg.reaction: "AKGCITtm" - - metanetx.reaction: "MNXR95654" - - pmid: "20371607" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1113" - - name: "allantoate uniport" - - metabolites: !!omap - - s_0405: 1 - - s_0406: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W" - - annotation: !!omap - - bigg.reaction: "ALLTTti" - - metanetx.reaction: "MNXR95773" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1114" - - name: "allantoin uniport" - - metabolites: !!omap - - s_0407: 1 - - s_0408: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIR028W" - - annotation: !!omap - - bigg.reaction: "ALLTNti" - - metanetx.reaction: "MNXR95771" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1115" - - name: "ammonia transport" - - metabolites: !!omap - - s_0419: 1 - - s_0420: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR384C or YGR121C or YNL142W or YPR138C" - - annotation: !!omap - - bigg.reaction: "NH4t" - - metanetx.reaction: "MNXR101950" - - pmid: "12966084" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1116" - - name: "AMP/ATP transporter" - - metabolites: !!omap - - s_0423: 1 - - s_0426: -1 - - s_0434: -1 - - s_0439: 1 - - s_0794: 1 - - s_0801: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR128C" - - annotation: !!omap - - bigg.reaction: "ATP2tp_H" - - metanetx.reaction: "MNXR96125" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1118" - - name: "aspartate-glutamate transporter" - - metabolites: !!omap - - s_0973: 1 - - s_0975: -1 - - s_0991: -1 - - s_0993: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR021C" - - annotation: !!omap - - bigg.reaction: "ASPGLU2m" - - metanetx.reaction: "MNXR96083" - - pmid: "14622413" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1119" - - name: "biotin uptake" - - metabolites: !!omap - - s_0451: 1 - - s_0452: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR065C" - - annotation: !!omap - - bigg.reaction: "BTNt2i" - - metanetx.reaction: "MNXR96334" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1120" - - name: "carnithine-acetylcarnithine carrier" - - metabolites: !!omap - - s_0021: 1 - - s_0023: -1 - - s_1235: -1 - - s_1236: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR100C" - - annotation: !!omap - - bigg.reaction: "CRNCARtm" - - metanetx.reaction: "MNXR96898" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1121" - - name: "ceramide-2' (sphinganine:n-C24:0OH) transport" - - metabolites: !!omap - - s_0487: -1 - - s_0488: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - pmid: "12484746" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1122" - - name: "ceramide-2' (sphinganine:n-C26:0OH) transport" - - metabolites: !!omap - - s_0490: -1 - - s_0491: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - pmid: "12484746" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1123" - - name: "ceramide-3 (Phytosphingosine:n-C24:0OH) transport" - - metabolites: !!omap - - s_0493: -1 - - s_0494: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - pmid: "12484746" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1124" - - name: "ceramide-3 (Phytosphingosine:n-C26:0OH) transport" - - metabolites: !!omap - - s_0496: -1 - - s_0497: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - pmid: "12484746" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1125" - - name: "choline transport" - - metabolites: !!omap - - s_0512: 1 - - s_0513: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL077C" - - annotation: !!omap - - bigg.reaction: "CHLt2" - - metanetx.reaction: "MNXR96692" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1126" - - name: "citrate transport" - - metabolites: !!omap - - s_0066: 1 - - s_0068: -1 - - s_0522: -1 - - s_0524: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR291C" - - annotation: !!omap - - bigg.reaction: "CITtam" - - metanetx.reaction: "MNXR96753" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1127" - - name: "citrate transport" - - metabolites: !!omap - - s_0522: -1 - - s_0524: 1 - - s_1360: 1 - - s_1361: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR291C" - - annotation: !!omap - - bigg.reaction: "CITtbm" - - metanetx.reaction: "MNXR96754" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1128" - - name: "citrate transport" - - metabolites: !!omap - - s_0522: -1 - - s_0524: 1 - - s_0940: 1 - - s_0941: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR291C" - - annotation: !!omap - - bigg.reaction: "CITtcm" - - metanetx.reaction: "MNXR96755" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1129" - - name: "coenzyme A transport" - - metabolites: !!omap - - s_0529: -1 - - s_0532: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR002W" - - annotation: !!omap - - bigg.reaction: "COAtim" - - metanetx.reaction: "MNXR96815" - - pmid: "11158296" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1130" - - name: "CTP transport" - - metabolites: !!omap - - s_0526: 1 - - s_0528: -1 - - s_0539: -1 - - s_0541: 1 - - s_0794: -1 - - s_0799: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR192W" - - annotation: !!omap - - pmid: "16844075" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1131" - - name: "CTP/CMP antiport" - - metabolites: !!omap - - s_0526: 1 - - s_0528: -1 - - s_0539: -1 - - s_0541: 1 - - s_0794: -2 - - s_0799: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR192W" - - annotation: !!omap - - bigg.reaction: "CTPtm" - - metanetx.reaction: "MNXR96947" - - pmid: "16194150" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1132" - - name: "cytidine transport" - - metabolites: !!omap - - s_0543: 1 - - s_0544: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL022C" - - annotation: !!omap - - bigg.reaction: "CYTDt2" - - metanetx.reaction: "MNXR97044" - - pmid: "10827170" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1133" - - name: "cytosine transport" - - metabolites: !!omap - - s_0545: 1 - - s_0546: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER056C or YER060W or YER060W-A or YGL186C" - - annotation: !!omap - - bigg.reaction: "CSNt2" - - metanetx.reaction: "MNXR96929" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1134" - - name: "D-fructose transport" - - metabolites: !!omap - - s_0553: 1 - - s_0554: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" - - annotation: !!omap - - bigg.reaction: "FRUt2" - - kegg.pathway: "sce04113" - - metanetx.reaction: "MNXR99664" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1135" - - name: "D-galactose transport" - - metabolites: !!omap - - s_0558: 1 - - s_0559: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR536W or YFL011W or YJL219W or YLR081W or YNL318C or YOL156W" - - annotation: !!omap - - bigg.reaction: "GALt2" - - kegg.pathway: "sce04113" - - metanetx.reaction: "MNXR100026" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1136" - - name: "D-lactate transport" - - metabolites: !!omap - - s_0025: 1 - - s_0026: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL217W" - - annotation: !!omap - - bigg.reaction: "D_LACt2" - - metanetx.reaction: "MNXR97838" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1137" - - name: "D-lactate transport" - - metabolites: !!omap - - s_0025: -1 - - s_0027: 1 - - s_0794: -1 - - s_0799: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "D_LACtm" - - metanetx.reaction: "MNXR97838" - - pmid: "14871487" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1138" - - name: "D-lactate/pyruvate antiport" - - metabolites: !!omap - - s_0025: -1 - - s_0027: 1 - - s_1399: 1 - - s_1401: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "D_LACt2m" - - metanetx.reaction: "MNXR97839" - - pmid: "14871487" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1139" - - name: "D-mannose transport" - - metabolites: !!omap - - s_0571: 1 - - s_0572: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" - - annotation: !!omap - - bigg.reaction: "MANt2" - - kegg.pathway: "sce04113" - - metanetx.reaction: "MNXR101403" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1146" - - name: "episterol transport" - - metabolites: !!omap - - s_0657: 1 - - s_0659: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL013C or YOR011W" - - annotation: !!omap - - bigg.reaction: "EPISTt" - - metanetx.reaction: "MNXR97944" - - pmid: "12077145" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1147" - - name: "ergosterol transport" - - metabolites: !!omap - - s_0666: 1 - - s_0668: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL013C or YOR011W" - - annotation: !!omap - - bigg.reaction: "ERGSTt" - - metanetx.reaction: "MNXR97950" - - pmid: "12077145" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1148" - - name: "ergosterol transport" - - metabolites: !!omap - - s_0665: -1 - - s_0666: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL013C or YOR011W" - - annotation: !!omap - - metanetx.reaction: "MNXR97950" - - pmid: "17434796" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1149" - - name: "ethanolamine transport" - - metabolites: !!omap - - s_0683: 1 - - s_0684: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL077C" - - annotation: !!omap - - bigg.reaction: "ETHAt" - - metanetx.reaction: "MNXR97974" - - pmid: "15201274" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1151" - - name: "fadH2 transport" - - metabolites: !!omap - - s_0689: 1 - - s_0690: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL134W" - - annotation: !!omap - - bigg.reaction: "FADH2tm" - - metanetx.reaction: "MNXR99212" - - pmid: "8631763" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1161" - - name: "fecosterol transport" - - metabolites: !!omap - - s_0700: 1 - - s_0702: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL013C or YOR011W" - - annotation: !!omap - - bigg.reaction: "FECOSTt" - - metanetx.reaction: "MNXR99529" - - pmid: "12077145" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1162" - - name: "fecosterol transport" - - metabolites: !!omap - - s_0699: -1 - - s_0700: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL013C or YOR011W" - - annotation: !!omap - - metanetx.reaction: "MNXR99529" - - pmid: "17434796" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1164" - - name: "folic acid transport" - - metabolites: !!omap - - s_0719: 1 - - s_0720: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "r0963" - - metanetx.reaction: "MNXR105408" - - pmid: "15215118" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1165" - - name: "GDP-mannose antiport" - - metabolites: !!omap - - s_0743: -1 - - s_0744: 1 - - s_0782: 1 - - s_0783: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL225W" - - annotation: !!omap - - bigg.reaction: "GDPMANNtg" - - metanetx.reaction: "MNXR100090" - - pmid: "9395539" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1166" - - name: "glucose transport" - - metabolites: !!omap - - s_0563: 1 - - s_0565: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL245C or YDL247W or YDR342C or YDR343C or YDR345C or YDR536W or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YJR160C or YLR081W or YMR011W or YNR072W or YOL156W or YDR387C" - - annotation: !!omap - - bigg.reaction: "GLCt1" - - kegg.pathway: "sce04113" - - metanetx.reaction: "MNXR100188" - - pmid: "10618490" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1167" - - name: "glutathione transport" - - metabolites: !!omap - - s_0750: 1 - - s_0751: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL212C" - - annotation: !!omap - - bigg.reaction: "GTHRDt2" - - metanetx.reaction: "MNXR100449" - - pmid: "10788431" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1168" - - name: "glutathione transport" - - metabolites: !!omap - - s_0750: -1 - - s_0753: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR135C or YLL015W" - - annotation: !!omap - - metanetx.reaction: "MNXR100449" - - pmid: "10790694" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1169" - - name: "glycero-3-phospho-1-inositol transport" - - metabolites: !!omap - - s_0079: 1 - - s_0080: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR098C" - - annotation: !!omap - - bigg.reaction: "G3PIt" - - metanetx.reaction: "MNXR99888" - - pmid: "15145930" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1170" - - name: "glycero-3-phosphocholine transport" - - metabolites: !!omap - - s_1433: 1 - - s_1435: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR098C" - - annotation: !!omap - - bigg.reaction: "G3PCt" - - metanetx.reaction: "MNXR99874" - - pmid: "15145930" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1171" - - name: "glycerol transport" - - metabolites: !!omap - - s_0765: 1 - - s_0766: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR536W or YGL084C or YPL189W" - - annotation: !!omap - - bigg.reaction: "GLYCt2" - - metanetx.reaction: "MNXR100344" + - "9491082" + - "9491083" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2119" + - name: "tyrosine transaminase" + - metabolites: !!omap + - s_0204: -1 + - s_0955: -1 + - s_1051: 1 + - s_1399: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR137W" + - eccodes: "2.6.1.57; 2.6.1.7" + - references: "9491082; 9491083" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.6.1.57; 2.6.1.7" + - kegg.pathway: + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00734" + - metanetx.reaction: "MNXR105000" - pmid: - - "15703210" - - "21623372" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1172" - - name: "glycerol transport via channel" - - metabolites: !!omap - - s_0765: -1 - - s_0766: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFL054C or YLL043W" - - annotation: !!omap - - bigg.reaction: "GLYCt" - - metanetx.reaction: "MNXR100343" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1173" - - name: "glycine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1003: 1 - - s_1004: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCL025C or YKR039W or YOL020W or YOR348C or YPL265W" - - annotation: !!omap - - bigg.reaction: "GLYt2r" - - metanetx.reaction: "MNXR100368" - - pmid: "9573211" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1174" - - name: "glycogen vacuolar 'transport' via autophagy" - - metabolites: !!omap - - s_0773: -1 - - s_0774: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "GLCNtv" - - metanetx.reaction: "MNXR100211" - - pmid: "11486014" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1175" - - name: "GTP/GDP translocase" - - metabolites: !!omap - - s_0739: 1 - - s_0741: -1 - - s_0785: -1 - - s_0786: 1 - - s_0794: -1 - - s_0799: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL198C" - - annotation: !!omap - - bigg.reaction: "GTPt2m" - - metanetx.reaction: "MNXR100461" - - pmid: "14998997" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1176" - - name: "guanine transport" - - metabolites: !!omap - - s_0787: 1 - - s_0788: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER056C or YER060W or YER060W-A or YGL186C" - - annotation: !!omap - - bigg.reaction: "GUAt2r" - - metanetx.reaction: "MNXR100466" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1177" - - name: "inositol transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1153: 1 - - s_1154: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR497C or YOL103W" - - annotation: !!omap - - bigg.reaction: "INSTt2" - - metanetx.reaction: "MNXR100841" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1178" - - name: "iron (II) transport" - - metabolites: !!omap - - s_0924: 1 - - s_0925: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR319C or YMR058W" - - annotation: !!omap - - bigg.reaction: "FE2t" - - metanetx.reaction: "MNXR99505" - - pmid: "9115232" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1179" - - name: "iron (II) transport" - - metabolites: !!omap - - s_0924: -1 - - s_0926: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL133W or YKR052C" - - annotation: !!omap - - bigg.reaction: "FE2utm" - - metanetx.reaction: "MNXR99505" - - pmid: "9660806" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1180" - - name: "isoamyl acetate transport" - - metabolites: !!omap - - s_0927: -1 - - s_0928: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "IAMACt" - - metanetx.reaction: "MNXR100774" - - pmid: "10653746" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1181" - - name: "isobutyl acetate transport" - - metabolites: !!omap - - s_0935: -1 - - s_0936: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "IBUTACt" - - metanetx.reaction: "MNXR100779" - - pmid: "10653746" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1182" - - name: "isopentenyl diphosphate transport" - - metabolites: !!omap - - s_0943: -1 - - s_0945: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "IPDPtm" - - metanetx.reaction: "MNXR100876" - - pmid: "11583838" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1183" - - name: "L-alanine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_0955: 1 - - s_0956: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR068C or YCL025C or YDR046C or YKR039W or YOL020W or YOR348C or YPL265W" - - annotation: !!omap - - bigg.reaction: "ALAt2r" - - metanetx.reaction: "MNXR95704" + - "9491082" + - "9491083" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2126" + - name: "sedoheptulose bisphosphatase" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_1426: -1 + - s_1427: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR043C" + - eccodes: "3.1.3.37" + - references: "21663798; 22672422" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.37" + - kegg.pathway: + - "sce00010" + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R01845" + - metanetx.reaction: "MNXR104279" - pmid: - - "7495881" - - "9489675" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1184" - - name: "L-arganine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_0965: 1 - - s_0966: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YEL063C or YKR039W or YNL270C" - - annotation: !!omap - - bigg.reaction: "ARGt2r" - - metanetx.reaction: "MNXR95953" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1185" - - name: "L-arganine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_0965: -1 - - s_0968: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL092W or YBR293W" - - annotation: !!omap - - bigg.reaction: "ARGt6" - - metanetx.reaction: "MNXR95954" - - pmid: "15572352" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1186" - - name: "L-asparagine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_0969: 1 - - s_0970: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCL025C or YDR508C or YKR039W or YPL265W" - - annotation: !!omap - - bigg.reaction: "ASNt2r" - - metanetx.reaction: "MNXR96066" - - pmid: "8660458" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1187" - - name: "L-asparagine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_0969: -1 - - s_0972: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR001W" - - annotation: !!omap - - bigg.reaction: "ASNt6" - - metanetx.reaction: "MNXR96067" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1188" - - name: "L-aspartate transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_0969: 1 - - s_0972: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL146W or YNL101W" - - annotation: !!omap - - bigg.reaction: "ASNt7" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR96066" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1189" - - name: "L-aspartate transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_0973: 1 - - s_0977: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER119C" - - annotation: !!omap - - bigg.reaction: "ASPt7" - - metanetx.reaction: "MNXR96106" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1190" - - name: "L-aspartate transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_0973: 1 - - s_0974: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YFL055W or YKR039W or YPL265W" - - annotation: !!omap - - bigg.reaction: "ASPt2r" - - metanetx.reaction: "MNXR96106" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1191" - - name: "L-carnitine transport" - - metabolites: !!omap - - s_0021: 1 - - s_0022: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR132C" - - annotation: !!omap - - bigg.reaction: "CRNt" - - metanetx.reaction: "MNXR96906" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1192" - - name: "L-cystine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_0981: 1 - - s_0982: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YDR508C or YKR039W or YOL020W" - - annotation: !!omap - - bigg.reaction: "CYSt2r" - - metanetx.reaction: "MNXR97027" - - pmid: "9573211" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1193" - - name: "L-cystine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_0984: 1 - - s_0985: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR075C" - - annotation: !!omap - - bigg.reaction: "LCYSTintv" - - metanetx.reaction: "MNXR101034" - - pmid: "11689434" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1194" - - name: "L-glutamate transport" - - metabolites: !!omap - - s_0991: -1 - - s_0993: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR021C" - - annotation: !!omap - - bigg.reaction: "GLUt7m" - - metanetx.reaction: "MNXR100301" - - pmid: "14622413" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1195" - - name: "L-glutamate transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_0991: 1 - - s_0996: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER119C" - - annotation: !!omap - - bigg.reaction: "GLUt7" - - metanetx.reaction: "MNXR100300" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1196" - - name: "L-glutamate transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_0991: 1 - - s_0992: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCL025C or YFL055W or YKR039W or YPL265W" - - annotation: !!omap - - bigg.reaction: "GLUt2r" - - metanetx.reaction: "MNXR100300" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1197" - - name: "L-glutamine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_0999: -1 - - s_1002: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR001W" - - annotation: !!omap - - bigg.reaction: "GLNt6" - - metanetx.reaction: "MNXR100262" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1198" - - name: "L-glutamine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_0999: 1 - - s_1002: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL146W or YNL101W" - - annotation: !!omap - - bigg.reaction: "GLNt7" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR100260" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1199" - - name: "L-glutamine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_0999: 1 - - s_1000: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCL025C or YDR508C or YKR039W or YPL265W" - - annotation: !!omap - - bigg.reaction: "GLNt2r" - - metanetx.reaction: "MNXR100260" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1200" - - name: "L-histidine transport, vacuolar" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_1006: -1 - - s_1009: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL092W or YBR293W or YCL069W or YMR088C" - - annotation: !!omap - - bigg.reaction: "HISt6" - - metanetx.reaction: "MNXR100647" - - pmid: "15572352" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1201" - - name: "L-histidine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1006: 1 - - s_1007: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR069C or YGR191W or YKR039W" - - annotation: !!omap - - bigg.reaction: "HISt2r" - - metanetx.reaction: "MNXR100645" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1202" - - name: "L-isoleucine transport" - - metabolites: !!omap - - s_1016: 1 - - s_1019: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCL038C" - - annotation: !!omap - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR100824" - - pmid: "17021250" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1203" - - name: "L-isoleucine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_1016: -1 - - s_1019: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR001W" - - annotation: !!omap - - bigg.reaction: "ILEt6" - - metanetx.reaction: "MNXR100825" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1204" - - name: "L-isoleucine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_1016: 1 - - s_1019: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL146W or YNL101W" - - annotation: !!omap - - bigg.reaction: "ILEt7" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR100822" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1205" - - name: "L-isoleucine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1016: 1 - - s_1017: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YKR039W" - - annotation: !!omap - - bigg.reaction: "ILEt2r" - - metanetx.reaction: "MNXR100822" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1206" - - name: "L-lactate transport" - - metabolites: !!omap - - s_0063: -1 - - s_0065: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL217W" - - annotation: !!omap - - bigg.reaction: "L_LACtcm" - - metanetx.reaction: "MNXR100999" - - pmid: "17761666" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1207" - - name: "L-lactate transport" - - metabolites: !!omap - - s_0063: 1 - - s_0064: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL217W" - - annotation: !!omap - - bigg.reaction: "L_LACt2r" - - metanetx.reaction: "MNXR101277" - - pmid: "10198029" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1208" - - name: "L-leucine transport, vacuoluar" - - metabolites: !!omap - - s_1021: 1 - - s_1024: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCL038C" - - annotation: !!omap - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR101057" - - pmid: "17021250" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1209" - - name: "L-leucine transport, vacuoluar" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_1021: -1 - - s_1024: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR001W" - - annotation: !!omap - - bigg.reaction: "LEUt6" - - metanetx.reaction: "MNXR101058" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1210" - - name: "L-leucine transport, vacuoluar" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_1021: 1 - - s_1024: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL146W or YNL101W" - - annotation: !!omap - - bigg.reaction: "LEUt7" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR101055" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1211" - - name: "L-leucine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1021: 1 - - s_1022: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YDR508C or YKR039W" - - annotation: !!omap - - bigg.reaction: "LEUt2r" - - metanetx.reaction: "MNXR101055" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1212" - - name: "L-lysine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_1025: -1 - - s_1028: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL092W or YBR293W or YCL069W or YMR088C" - - annotation: !!omap - - bigg.reaction: "LYSt6" - - metanetx.reaction: "MNXR101267" - - pmid: "15572352" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1213" - - name: "L-lysine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1025: 1 - - s_1026: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKR039W or YNL268W" - - annotation: !!omap - - bigg.reaction: "LYSt2r" - - metanetx.reaction: "MNXR101266" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1214" - - name: "L-methionine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1029: 1 - - s_1030: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR068C or YCL025C or YDR046C or YDR508C or YGR055W or YHL036W or YKR039W" - - annotation: !!omap - - bigg.reaction: "METt2r" - - metanetx.reaction: "MNXR101490" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1215" - - name: "L-phenylalanine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1032: 1 - - s_1033: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR068C or YCL025C or YDR046C or YKR039W or YOL020W" - - annotation: !!omap - - bigg.reaction: "PHEt2r" - - metanetx.reaction: "MNXR102635" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1216" - - name: "L-proline transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1035: 1 - - s_1036: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKR039W or YOR348C" - - annotation: !!omap - - bigg.reaction: "PROt2r" - - metanetx.reaction: "MNXR103211" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1217" - - name: "L-serine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1039: 1 - - s_1041: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCL025C or YDR508C or YFL055W or YKR039W or YPL265W or YDR105C" - - annotation: !!omap - - bigg.reaction: "SERt2r" - - metanetx.reaction: "MNXR104352" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1218" - - name: "L-threonine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1045: 1 - - s_1046: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR069C or YCL025C or YDR046C or YDR508C or YKR039W" - - annotation: !!omap - - bigg.reaction: "THRt2r" - - metanetx.reaction: "MNXR104850" - - pmid: "9489675" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1219" - - name: "L-tryptophan transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1048: 1 - - s_1049: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR068C or YBR069C or YDR046C or YKR039W or YOL020W" - - annotation: !!omap - - bigg.reaction: "TRPt2r" - - metanetx.reaction: "MNXR104950" - - pmid: "9573211" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1220" - - name: "L-tyrosine transport" - - metabolites: !!omap - - s_1051: 1 - - s_1055: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCL038C" - - annotation: !!omap - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR105002" - - pmid: "17021250" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1221" - - name: "L-tyrosine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_1051: -1 - - s_1055: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR293W or YJR001W" - - annotation: !!omap - - bigg.reaction: "TYRt6" - - metanetx.reaction: "MNXR105005" - - pmid: "15572352" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1222" - - name: "L-tyrosine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_1051: 1 - - s_1055: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL146W or YNL101W" - - annotation: !!omap - - bigg.reaction: "TYRt7" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR105003" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1223" - - name: "L-tyrosine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1051: 1 - - s_1052: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YKR039W or YOL020W" - - annotation: !!omap - - bigg.reaction: "TYRt2r" - - metanetx.reaction: "MNXR105003" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1224" - - name: "L-valine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1056: 1 - - s_1057: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YKR039W" - - annotation: !!omap - - bigg.reaction: "VALt2r" - - metanetx.reaction: "MNXR105188" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1225" - - name: "lanosterol transport" - - metabolites: !!omap - - s_1059: 1 - - s_1061: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL013C or YOR011W" - - annotation: !!omap - - bigg.reaction: "LANOSTt" - - metanetx.reaction: "MNXR101014" - - pmid: "12077145" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1226" - - name: "malate transport" - - metabolites: !!omap - - s_0066: -1 - - s_0068: 1 - - s_1322: 1 - - s_1326: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR348C" - - annotation: !!omap - - bigg.reaction: "MALtm" - - metanetx.reaction: "MNXR101374" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1227" - - name: "maltose transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1105: 1 - - s_1106: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR298C or YDL247W or YGR289C or YJR160C" - - annotation: !!omap - - bigg.reaction: "MALTt2" - - metanetx.reaction: "MNXR101365" - - pmid: "7483839" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1228" - - name: "N,N'-diformyldityrosine transport" - - metabolites: !!omap - - s_1185: -1 - - s_1186: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR180W" - - annotation: !!omap - - pmid: "12455697" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1229" - - name: "NAD transport" - - metabolites: !!omap - - s_1198: -1 - - s_1200: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YEL006W or YIL006W" - - annotation: !!omap - - bigg.reaction: "NADtm" - - metanetx.reaction: "MNXR101900" + - "21663798" + - "22672422" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2131" + - name: "isocitrate dehydrogenase" + - metabolites: !!omap + - s_0182: 1 + - s_0460: 1 + - s_0941: -1 + - s_1210: -1 + - s_1214: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL066W" + - eccodes: "1.1.1.42" + - references: "1989987; 8099357" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.42" + - bigg.reaction: "ICDHym" + - kegg.pathway: + - "sce00020" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - "sce04146" + - kegg.reaction: "R00267" + - metanetx.reaction: "MNXR100781" - pmid: - - "16291748" - - "9169870" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1230" - - name: "NAD transport" - - metabolites: !!omap - - s_0584: 1 - - s_0585: -1 - - s_1198: -1 - - s_1200: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL006W" - - annotation: !!omap - - pmid: "16291748" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1231" - - name: "NAD transport" - - metabolites: !!omap - - s_0423: 1 - - s_0424: -1 - - s_1198: -1 - - s_1200: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL006W" - - annotation: !!omap - - pmid: "16291748" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1232" - - name: "NAD transport" - - metabolites: !!omap - - s_0615: 1 - - s_0616: -1 - - s_1198: -1 - - s_1200: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL006W" - - annotation: !!omap - - pmid: "16291748" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1235" - - name: "nicotinate transport" - - metabolites: !!omap - - s_1219: 1 - - s_1220: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR260W" - - annotation: !!omap - - bigg.reaction: "NACt" - - metanetx.reaction: "MNXR101808" - - pmid: "10869563" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1236" - - name: "octadecanoate (n-C18:0) transport" - - metabolites: !!omap - - s_1449: -1 - - s_1451: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - metanetx.reaction: "MNXR99109" - - pmid: "8993619" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1237" - - name: "ornithine transport" - - metabolites: !!omap - - s_0794: -1 - - s_0799: 1 - - s_1266: 1 - - s_1268: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR130C" - - annotation: !!omap - - bigg.reaction: "ORNt3m" - - metanetx.reaction: "MNXR102225" - - pmid: "10428783" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1238" - - name: "orntithine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1266: 1 - - s_1267: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YEL063C or YKR039W" - - annotation: !!omap - - bigg.reaction: "ORNt2r" - - metanetx.reaction: "MNXR102224" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1239" - - name: "oxaloacetate transport" - - metabolites: !!omap - - s_0794: -1 - - s_0799: 1 - - s_1271: -1 - - s_1273: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL120W" - - annotation: !!omap - - bigg.reaction: "OAAt2m" - - metanetx.reaction: "MNXR102102" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1241" - - name: "pantothenate transport" - - metabolites: !!omap - - s_0031: 1 - - s_0032: -1 - - s_0794: 1 - - s_0796: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR028C" - - annotation: !!omap - - bigg.reaction: "PNTOt2" - - metanetx.reaction: "MNXR103053" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1242" - - name: "pentaprenyl diphosphate transport" - - metabolites: !!omap - - s_1311: -1 - - s_1313: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PENDPtm" - - metanetx.reaction: "MNXR102483" - - pmid: "11583838" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1243" - - name: "phenethyl acetate transport" - - metabolites: !!omap - - s_1316: -1 - - s_1317: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PHEACt" - - metanetx.reaction: "MNXR102622" - - pmid: "10653746" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1244" - - name: "phosphate transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1322: 1 - - s_1324: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR296C or YCR037C or YJL198W or YML123C or YNR013C" - - annotation: !!omap - - bigg.reaction: "PIt2r" - - metanetx.reaction: "MNXR102872" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1245" - - name: "phosphate transport" - - metabolites: !!omap - - s_0794: -1 - - s_0799: 1 - - s_1322: -1 - - s_1326: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER053C or YJR077C" - - annotation: !!omap - - bigg.reaction: "PIt2m" - - metanetx.reaction: "MNXR102872" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1249" - - name: "potassium transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1373: 1 - - s_1374: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR456W or YJL129C" - - annotation: !!omap - - bigg.reaction: "Kt2r" - - pmid: "3043197" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1250" - - name: "putrescine excretion" - - metabolites: !!omap - - s_1389: -1 - - s_1390: 1 - - lower_bound: 0 - - upper_bound: 0 - - gene_reaction_rule: "YKL174C" - - annotation: !!omap - - bigg.reaction: "PTRCtex2" - - metanetx.reaction: "MNXR103339" - - pmid: "15668236" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1251" - - name: "putrescine transport" - - metabolites: !!omap - - s_0794: -1 - - s_0796: 1 - - s_1389: 1 - - s_1390: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLL028W or YOR273C" - - annotation: !!omap - - bigg.reaction: "PTRCt3i" - - metanetx.reaction: "MNXR103341" - - pmid: "9920864" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1252" - - name: "putrescine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_1389: -1 - - s_1391: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLL028W or YOR273C" - - annotation: !!omap - - metanetx.reaction: "MNXR103341" - - pmid: "11171066" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1253" - - name: "pyridoxine symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1396: 1 - - s_1397: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL186C" - - annotation: !!omap - - pmid: "12649274" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1254" - - name: "pyruvate transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1399: 1 - - s_1400: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL217W" - - annotation: !!omap - - bigg.reaction: "PYRt2" - - metanetx.reaction: "MNXR103385" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1255" - - name: "S-adenosyl-L-methionine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1416: 1 - - s_1418: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL274W" - - annotation: !!omap - - bigg.reaction: "AMETt2" - - metanetx.reaction: "MNXR95810" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1256" - - name: "S-adenosyl-L-methionine transport" - - metabolites: !!omap - - s_1416: -1 - - s_1419: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL003C" - - annotation: !!omap - - bigg.reaction: "AMETtm" - - metanetx.reaction: "MNXR95809" - - pmid: "14609944" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1257" - - name: "S-methylmethionine permease" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1424: 1 - - s_1425: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL061W" - - annotation: !!omap - - bigg.reaction: "MMETt2" - - metanetx.reaction: "MNXR101658" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1258" - - name: "sodium proton antiporter" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1437: -1 - - s_1438: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR456W or YLR138W" - - annotation: !!omap - - bigg.reaction: "NAt3_1" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1259" - - name: "spermidine excretion" - - metabolites: !!omap - - s_1439: -1 - - s_1440: 1 - - lower_bound: 0 - - upper_bound: 0 - - gene_reaction_rule: "YKL174C" - - annotation: !!omap - - bigg.reaction: "SPMDtex2" - - metanetx.reaction: "MNXR104495" - - pmid: "15668236" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1260" - - name: "spermidine transport" - - metabolites: !!omap - - s_0794: -1 - - s_0796: 1 - - s_1439: 1 - - s_1440: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR132C or YHL016C or YKR039W or YLL028W or YOR273C or YPL274W" - - annotation: !!omap - - bigg.reaction: "SPMDt3i" - - metanetx.reaction: "MNXR104497" - - pmid: - - "17218313" - - "9920864" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1261" - - name: "spermidine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_1439: -1 - - s_1441: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLL028W or YOR273C" - - annotation: !!omap - - metanetx.reaction: "MNXR104497" - - pmid: "11171066" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1262" - - name: "spermine transport" - - metabolites: !!omap - - s_0794: -1 - - s_0796: 1 - - s_1442: 1 - - s_1443: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR138C or YLL028W or YOR273C or YPR156C" - - annotation: !!omap - - bigg.reaction: "SPRMt2i" - - metanetx.reaction: "MNXR104501" - - pmid: "9920864" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1263" - - name: "spermine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0802: -1 - - s_1442: -1 - - s_1444: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR138C or YLL028W or YOR273C or YPR156C" - - annotation: !!omap - - metanetx.reaction: "MNXR104501" - - pmid: "11171066" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1264" - - name: "succinate transport" - - metabolites: !!omap - - s_1322: 1 - - s_1326: -1 - - s_1458: -1 - - s_1460: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR348C" - - annotation: !!omap - - bigg.reaction: "SUCCtm" - - metanetx.reaction: "MNXR104626" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1265" - - name: "succinate-fumarate transport" - - metabolites: !!omap - - s_0725: 1 - - s_0727: -1 - - s_1458: -1 - - s_1460: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR095W" - - annotation: !!omap - - bigg.reaction: "SUCFUMtm" - - metanetx.reaction: "MNXR104633" - - pmid: "9395087" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1266" - - name: "sulfate uniport" - - metabolites: !!omap - - s_1467: 1 - - s_1468: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR294W or YLR092W" - - annotation: !!omap - - bigg.reaction: "SO4ti" - - metanetx.reaction: "MNXR104469" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1267" - - name: "sulfite transport" - - metabolites: !!omap - - s_1469: -1 - - s_1470: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL092W" - - annotation: !!omap - - bigg.reaction: "SO3ti" - - metanetx.reaction: "MNXR104460" - - pmid: "10870099" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1268" - - name: "taurine transport" - - metabolites: !!omap - - s_1471: -1 - - s_1472: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "TAURt" - - metanetx.reaction: "MNXR104733" - - pmid: "8293962" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1269" - - name: "thiamine diphosphate transport" - - metabolites: !!omap - - s_1475: -1 - - s_1477: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR096W" - - annotation: !!omap - - bigg.reaction: "THMPPt2m" - - metanetx.reaction: "MNXR104824" - - pmid: "12411483" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1270" - - name: "thiamine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1489: 1 - - s_1490: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR237W or YOR071C or YOR192C" - - annotation: !!omap - - bigg.reaction: "THMt2" - - metanetx.reaction: "MNXR138863" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1271" - - name: "UDPgalactose transport" - - metabolites: !!omap - - s_1541: -1 - - s_1542: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL244C" - - annotation: !!omap - - bigg.reaction: "UDPGALt2g" - - metanetx.reaction: "MNXR105061" - - pmid: "11284009" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1272" - - name: "uracil transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1550: 1 - - s_1551: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR021W" - - annotation: !!omap - - bigg.reaction: "URAt2" - - metanetx.reaction: "MNXR105148" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1273" - - name: "urea transport" - - metabolites: !!omap - - s_0794: 2 - - s_0796: -2 - - s_1552: 1 - - s_1553: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHL016C" - - annotation: !!omap - - bigg.reaction: "UREA2t2" - - metanetx.reaction: "MNXR105154" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1274" - - name: "uridine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1556: 1 - - s_1557: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL042C" - - annotation: !!omap - - bigg.reaction: "URIt2" - - metanetx.reaction: "MNXR105166" - - pmid: "10827169" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1275" - - name: "UTP transport" - - metabolites: !!omap - - s_0714: 1 - - s_0716: -1 - - s_0794: -1 - - s_0799: 1 - - s_1545: 1 - - s_1547: -1 - - s_1559: -1 - - s_1560: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR192W" - - annotation: !!omap - - pmid: "16844075" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1276" - - name: "UTP/UMP antiport" - - metabolites: !!omap - - s_0794: -2 - - s_0799: 2 - - s_1545: 1 - - s_1547: -1 - - s_1559: -1 - - s_1560: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR192W" - - annotation: !!omap - - bigg.reaction: "UTPtm" - - metanetx.reaction: "MNXR105175" - - pmid: "16194150" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1277" - - name: "water diffusion" - - metabolites: !!omap - - s_0803: 1 - - s_0805: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLL052C or YPR192W" - - annotation: !!omap - - bigg.reaction: "H2Ot" - - metanetx.reaction: "MNXR98641" - - pmid: "9765289" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1278" - - name: "zymosterol transport" - - metabolites: !!omap - - s_1568: 1 - - s_1571: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL013C or YOR011W" - - annotation: !!omap - - metanetx.reaction: "MNXR105285" - - pmid: "12077145" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1449" - - name: "inositol-P-ceramide B' (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0892: 0.91026 - - s_0907: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1450" - - name: "inositol-P-ceramide B' (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0892: 0.93832 - - s_0910: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1451" - - name: "inositol-P-ceramide C (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0892: 0.92626 - - s_0913: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1452" - - name: "inositol-P-ceramide C (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0892: 0.95432 - - s_0916: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1453" - - name: "inositol-P-ceramide A (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0892: 0.89426 - - s_0895: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1454" - - name: "inositol-P-ceramide A (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0892: 0.92232 - - s_0898: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1455" - - name: "inositol-P-ceramide B (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0892: 0.91026 - - s_0901: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1456" - - name: "inositol-P-ceramide B (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0892: 0.93832 - - s_0904: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1457" - - name: "inositol-P-ceramide D (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0892: 0.94226 - - s_0919: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1458" - - name: "inositol-P-ceramide D (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0892: 0.97032 - - s_0922: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1479" - - name: "inositol phosphomannosylinositol phosphoceramide A (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0859: 1.2985 - - s_0862: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1480" - - name: "inositol phosphomannosylinositol phosphoceramide A (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0859: 1.3266 - - s_0865: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1481" - - name: "inositol phosphomannosylinositol phosphoceramide B' (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0859: 1.3145 - - s_0874: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1482" - - name: "inositol phosphomannosylinositol phosphoceramide B' (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0859: 1.3426 - - s_0877: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1483" - - name: "inositol phosphomannosylinositol phosphoceramide B (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0859: 1.3145 - - s_0868: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1484" - - name: "inositol phosphomannosylinositol phosphoceramide B (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0859: 1.3426 - - s_0871: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1485" - - name: "inositol phosphomannosylinositol phosphoceramide C (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0859: 1.3305 - - s_0880: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1486" - - name: "inositol phosphomannosylinositol phosphoceramide C (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0859: 1.3586 - - s_0883: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1487" - - name: "inositol phosphomannosylinositol phosphoceramide D (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0859: 1.3465 - - s_0886: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1488" - - name: "inositol phosphomannosylinositol phosphoceramide D (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0859: 1.3746 - - s_0889: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1509" - - name: "mannosylinositol phosphorylceramide B' (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_1114: 1.0724 - - s_1129: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1510" - - name: "mannosylinositol phosphorylceramide B' (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_1114: 1.1005 - - s_1132: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1511" - - name: "mannosylinositol phosphorylceramide C (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_1114: 1.0884 - - s_1135: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1512" - - name: "mannosylinositol phosphorylceramide C (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_1114: 1.1165 - - s_1138: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1513" - - name: "mannosylinositol phosphorylceramide A (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_1114: 1.0564 - - s_1117: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1514" - - name: "mannosylinositol phosphorylceramide A (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_1114: 1.0845 - - s_1120: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1515" - - name: "mannosylinositol phosphorylceramide B (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_1114: 1.0724 - - s_1123: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1516" - - name: "mannosylinositol phosphorylceramide B (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_1114: 1.1005 - - s_1126: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1517" - - name: "mannosylinositol phosphorylceramide D (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_1114: 1.1044 - - s_1141: -1 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1518" - - name: "mannosylinositol phosphorylceramide D (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_1114: 1.1325 - - s_1144: -1 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_1542" - - name: "(1->3)-beta-D-glucan exchange" - - metabolites: !!omap - - s_0003: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_13BDglcn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1543" - - name: "(1->3)-beta-D-glucan transport" - - metabolites: !!omap - - s_0001: -1 - - s_0002: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1545" - - name: "(R)-carnitine exchange" - - metabolites: !!omap - - s_0022: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_crn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1546" - - name: "(R)-lactate exchange" - - metabolites: !!omap - - s_0026: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_lac__D_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1547" - - name: "(R)-mevalonate exchange" - - metabolites: !!omap - - s_0029: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_mev__R_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1548" - - name: "(R)-pantothenate exchange" - - metabolites: !!omap - - s_0032: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_pnto__R_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1549" - - name: "(R,R)-2,3-butanediol exchange" - - metabolites: !!omap - - s_0036: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_btd_RR_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1550" - - name: "(S)-3-methyl-2-oxopentanoate exchange" - - metabolites: !!omap - - s_0058: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_3mop_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1551" - - name: "(S)-lactate exchange" - - metabolites: !!omap - - s_0064: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_lac__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1552" - - name: "(S)-malate exchange" - - metabolites: !!omap - - s_0067: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_mal__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1553" - - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol exchange" - - metabolites: !!omap - - s_0080: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_g3pi_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1554" - - name: "1-acylglycerophosphocholine exchange" - - metabolites: !!omap - - s_0084: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_pchol_cho_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1560" - - name: "1D-myo-inositol 1,3,4,5,6-pentakisphosphate diffusion" - - metabolites: !!omap - - s_1156: -1 - - s_1157: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR125284" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1562" - - name: "1D-myo-inositol 1-phosphate transport" - - metabolites: !!omap - - s_0126: 1 - - s_0127: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR101573" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1563" - - name: "2'-deoxyadenosine exchange" - - metabolites: !!omap - - s_0133: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_dad_2_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1564" - - name: "2'-deoxyguanosine exchange" - - metabolites: !!omap - - s_0135: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_dgsn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1565" - - name: "2'-deoxyinosine exchange" - - metabolites: !!omap - - s_0137: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_din_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1566" - - name: "2'-deoxyuridine exchange" - - metabolites: !!omap - - s_0139: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_duri_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1567" - - name: "2-dehydro-3-deoxy-D-arabino-heptonate7-phohsphate transport" - - metabolites: !!omap - - s_0349: -1 - - s_0350: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "2DDA7Ptm" - - metanetx.reaction: "MNXR94782" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1568" - - name: "2-dehydropantoate transport" - - metabolites: !!omap - - s_0149: -1 - - s_0150: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "2DHPtm" - - metanetx.reaction: "MNXR94793" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1572" - - name: "2-isopropylmalate exchange" - - metabolites: !!omap - - s_0163: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_3c3hmp_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1573" - - name: "2-isopropylmalate transport" - - metabolites: !!omap - - s_0162: -1 - - s_0163: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "3C3HMPt" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1574" - - name: "2-isopropylmalate transport" - - metabolites: !!omap - - s_0162: -1 - - s_0164: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL120W" - - annotation: !!omap - - bigg.reaction: "3C3HMPtm" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1575" - - name: "2-methyl-1-butanol transport" - - metabolites: !!omap - - s_0169: -1 - - s_0170: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "2MBTOHt" - - metanetx.reaction: "MNXR94810" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1576" - - name: "2-methyl-1-butanol transport" - - metabolites: !!omap - - s_0169: -1 - - s_0171: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "2MBTOHtm" - - metanetx.reaction: "MNXR94810" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1577" - - name: "2-methylbutanal exchange" - - metabolites: !!omap - - s_0167: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_2mbald_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1578" - - name: "2-methylbutanal transport" - - metabolites: !!omap - - s_0166: -1 - - s_0167: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "2MBALDt" - - metanetx.reaction: "MNXR94809" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1579" - - name: "2-methylbutanal transport" - - metabolites: !!omap - - s_0166: -1 - - s_0168: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "2MBALDtm" - - metanetx.reaction: "MNXR94809" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1580" - - name: "2-methylbutanol exchange" - - metabolites: !!omap - - s_0170: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_2mbtoh_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1581" - - name: "2-methylbutyl acetate exchange" - - metabolites: !!omap - - s_0173: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_2mbac_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1582" - - name: "2-methylpropanal transport" - - metabolites: !!omap - - s_0937: -1 - - s_0938: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "2MPPALt" - - metanetx.reaction: "MNXR94812" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1583" - - name: "2-methylpropanal transport" - - metabolites: !!omap - - s_0937: -1 - - s_0939: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "2MPPALtm" - - metanetx.reaction: "MNXR94812" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1585" - - name: "2-oxobutanoate transporter" - - metabolites: !!omap - - s_0178: -1 - - s_0179: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "2OBUTtm" - - metanetx.reaction: "MNXR94814" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1586" - - name: "2-oxoglutarate exchange" - - metabolites: !!omap - - s_0181: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_akg_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1587" - - name: "2-oxoglutarate transport" - - metabolites: !!omap - - s_0180: -1 - - s_0183: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR95663" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1588" - - name: "2-oxoglutarate transport" - - metabolites: !!omap - - s_0180: 1 - - s_0181: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR95663" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1589" - - name: "2-phenylethanol exchange" - - metabolites: !!omap - - s_0186: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_2phetoh_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1590" - - name: "2-phenylethanol transport" - - metabolites: !!omap - - s_0185: 1 - - s_0186: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "2PHETOHt" - - metanetx.reaction: "MNXR94828" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1591" - - name: "2-phenylethanol transport" - - metabolites: !!omap - - s_0185: 1 - - s_0187: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "2PHETOHtm" - - metanetx.reaction: "MNXR94828" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1595" - - name: "3-carboxy-4-methyl-2-oxopentanoate transport" - - metabolites: !!omap - - s_0010: -1 - - s_0011: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "3C4MOPtm" - - metanetx.reaction: "MNXR94859" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1596" - - name: "3-methyl-2-oxopentanoate transport" - - metabolites: !!omap - - s_0056: -1 - - s_0060: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "3MOPtm" - - metanetx.reaction: "MNXR94926" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1597" - - name: "3-methyl-oxopentanoate trasport" - - metabolites: !!omap - - s_0056: 1 - - s_0058: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "3MOPt" - - metanetx.reaction: "MNXR94926" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1598" - - name: "3-methylbutanal exchange" - - metabolites: !!omap - - s_0235: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_3mbald_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1599" - - name: "3-methylbutanal transport" - - metabolites: !!omap - - s_0234: -1 - - s_0235: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "3MBALDt" - - metanetx.reaction: "MNXR137944" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1600" - - name: "3-methylbutanal transport" - - metabolites: !!omap - - s_0234: -1 - - s_0236: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "3MBALDtm" - - metanetx.reaction: "MNXR137944" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1601" - - name: "3-octaprenyl-4-hydroxybenzoate transport" - - metabolites: !!omap - - s_0215: -1 - - s_0216: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "3OPHB_5tm" - - metanetx.reaction: "MNXR94966" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1603" - - name: "4-amino-5-hydroxymethyl-2-methylpyrimidine synthetase" - - metabolites: !!omap - - s_0270: 1 - - s_0300: -1 - - s_0775: 1 - - s_0794: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFL058W" - - annotation: !!omap - - bigg.reaction: "AHMMPS" - - metanetx.reaction: "MNXR95632" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1604" - - name: "4-aminobenzoate exchange" - - metabolites: !!omap - - s_0272: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_4abz_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1605" - - name: "4-aminobenzoate transport" - - metabolites: !!omap - - s_0271: -1 - - s_0272: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "4ABZt" - - metanetx.reaction: "MNXR94995" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1606" - - name: "4-aminobenzoate transport" - - metabolites: !!omap - - s_0271: -1 - - s_0273: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "4ABZtm" - - metanetx.reaction: "MNXR94995" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1607" - - name: "4-aminobutanal transport" - - metabolites: !!omap - - s_0274: -1 - - s_0275: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "4ABUTNtm" - - metanetx.reaction: "MNXR94992" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1608" - - name: "4-aminobutyrate transport" - - metabolites: !!omap - - s_0734: -1 - - s_0738: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "4ABUTtm" - - metanetx.reaction: "MNXR94993" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1609" - - name: "4-hydroxy-2-oxoglutarate transport" - - metabolites: !!omap - - s_0282: -1 - - s_0283: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "4H2OGLTtm" - - metanetx.reaction: "MNXR95001" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1610" - - name: "4-hydroxy-2-oxoglutarate transport" - - metabolites: !!omap - - s_0282: -1 - - s_0284: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "4H2OGLTtp" - - metanetx.reaction: "MNXR95001" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1611" - - name: "4-hydroxybenzoate transport" - - metabolites: !!omap - - s_0286: -1 - - s_0287: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "4HBZtm" - - metanetx.reaction: "MNXR95013" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1613" - - name: "5'-nucleotidase (AMP)" - - metabolites: !!omap - - s_0386: 1 - - s_0423: -1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NTD7" - - kegg.reaction: "R00183" - - metanetx.reaction: "MNXR102037" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1614" - - name: "5'-nucleotidase (dAMP)" - - metabolites: !!omap - - s_0132: 1 - - s_0584: -1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NTD6" - - kegg.reaction: "R02088" - - metanetx.reaction: "MNXR102036" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1615" - - name: "5'-nucleotidase (dCMP)" - - metabolites: !!omap - - s_0589: -1 - - s_0610: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NTD3" - - kegg.reaction: "R01664" - - metanetx.reaction: "MNXR102033" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1616" - - name: "5'-nucleotidase (dGMP)" - - metabolites: !!omap - - s_0134: 1 - - s_0615: -1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NTD8" - - kegg.reaction: "R01968" - - metanetx.reaction: "MNXR102038" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1617" - - name: "5'-nucleotidase (dTMP)" - - metabolites: !!omap - - s_0649: -1 - - s_0803: -1 - - s_1322: 1 - - s_1493: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NTD5" - - kegg.reaction: "R01569" - - metanetx.reaction: "MNXR102035" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1618" - - name: "5'-nucleotidase (dUMP)" - - metabolites: !!omap - - s_0138: 1 - - s_0654: -1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NTD1" - - kegg.reaction: "R02102" - - metanetx.reaction: "MNXR102028" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1619" - - name: "5'-nucleotidase (GMP)" - - metabolites: !!omap - - s_0782: -1 - - s_0790: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER037W" - - annotation: !!omap - - bigg.reaction: "NTD9" - - kegg.reaction: "R01227" - - metanetx.reaction: "MNXR100381" - - pmid: "23670538" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_1620" - - name: "5'-nucleotidase (XMP)" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_1563: 1 - - s_1565: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NTD10" - - kegg.reaction: "R02719" - - metanetx.reaction: "MNXR102029" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1621" - - name: "5-aminolevulinate exchange" - - metabolites: !!omap - - s_0316: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_5aop_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1622" - - name: "5-aminolevulinate transport" - - metabolites: !!omap - - s_0315: -1 - - s_0317: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "5AOPtm" - - metanetx.reaction: "MNXR95062" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1623" - - name: "5-formethyltetrahydrofolate cyclo-ligase" - - metabolites: !!omap - - s_0305: 1 - - s_0321: -1 - - s_0397: 1 - - s_0437: -1 - - s_1326: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER183C" - - annotation: !!omap - - bigg.reaction: "FTHFCLm" - - kegg.reaction: "R02301" - - metanetx.reaction: "MNXR99668" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1624" - - name: "5-formyltetrahydrofolate:10-formyltetrahydrofolate isomerase" - - metabolites: !!omap - - s_0120: 1 - - s_0319: -1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER183C" - - annotation: !!omap - - bigg.reaction: "FTHFI" - - metanetx.reaction: "MNXR99671" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1625" - - name: "5-formyltetrahydrofolic acid exchange" - - metabolites: !!omap - - s_0320: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_5fthf_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1627" - - name: "7,8-diaminononanoate exchange" - - metabolites: !!omap - - s_0342: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_dann_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1628" - - name: "7,8-diaminononanoate transport" - - metabolites: !!omap - - s_0341: 1 - - s_0342: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1629" - - name: "8-amino-7-oxononanoate exchange" - - metabolites: !!omap - - s_0354: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_8aonn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1630" - - name: "9H-xanthine exchange" - - metabolites: !!omap - - s_0358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_xan_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1631" - - name: "acetaldehyde exchange" - - metabolites: !!omap - - s_0360: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_acald_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1632" - - name: "acetaldehyde transport" - - metabolites: !!omap - - s_0359: 1 - - s_0361: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ACALDtm" - - metanetx.reaction: "MNXR95212" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1633" - - name: "acetaldehyde transport" - - metabolites: !!omap - - s_0359: 1 - - s_0360: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ACALDt" - - metanetx.reaction: "MNXR95212" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1634" - - name: "acetate exchange" - - metabolites: !!omap - - s_0364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ac_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1635" - - name: "acetate transport" - - metabolites: !!omap - - s_0362: -1 - - s_0366: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR95431" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1637" - - name: "acetyl-CoA transport" - - metabolites: !!omap - - s_0373: -1 - - s_0377: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ACCOAtn" - - metanetx.reaction: "MNXR95223" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1638" - - name: "acetylcarnitine transport" - - metabolites: !!omap - - s_1235: 1 - - s_1237: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ACRNtp" - - metanetx.reaction: "MNXR95412" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1639" - - name: "adenine exchange" - - metabolites: !!omap - - s_0384: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ade_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1640" - - name: "adenine transport" - - metabolites: !!omap - - s_0383: -1 - - s_0385: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ADEtm" - - metanetx.reaction: "MNXR95445" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1641" - - name: "adenosine 3',5'-bismonophosphate exchange" - - metabolites: !!omap - - s_0391: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_pap_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1642" - - name: "adenosine 3',5'-bisphosphate transport" - - metabolites: !!omap - - s_0390: -1 - - s_0392: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR011C" - - annotation: !!omap - - bigg.reaction: "PAPtm" - - metanetx.reaction: "MNXR102382" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1643" - - name: "adenosine exchange" - - metabolites: !!omap - - s_0387: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_adn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1644" - - name: "ADP transport" - - metabolites: !!omap - - s_0394: -1 - - s_0398: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR95484" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1645" - - name: "ADP transport" - - metabolites: !!omap - - s_0394: -1 - - s_0395: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR95484" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1647" - - name: "AKG transporter, peroxisome" - - metabolites: !!omap - - s_0180: -1 - - s_0184: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "AKGtp" - - metanetx.reaction: "MNXR95663" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1648" - - name: "allantoate exchange" - - metabolites: !!omap - - s_0406: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_alltt_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1649" - - name: "allantoin exchange" - - metabolites: !!omap - - s_0408: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_alltn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1650" - - name: "trehalose exchange" - - metabolites: !!omap - - s_1521: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_tre_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1651" - - name: "alpha-D-glucosamine 6-phosphate exchange" - - metabolites: !!omap - - s_0413: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_gam6p_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1652" - - name: "alpha-ketoglutarate/malate transporter" - - metabolites: !!omap - - s_0066: 1 - - s_0067: -1 - - s_0180: -1 - - s_0181: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "AKGMAL" - - metanetx.reaction: "MNXR95659" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1654" - - name: "ammonium exchange" - - metabolites: !!omap - - s_0420: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_nh4_e" - - metanetx.reaction: "MNXR101948" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1656" - - name: "AMP transport" - - metabolites: !!omap - - s_0423: 1 - - s_0425: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "AMPtn" - - metanetx.reaction: "MNXR95830" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1657" - - name: "arginine transport" - - metabolites: !!omap - - s_0794: -1 - - s_0799: 1 - - s_0965: -1 - - s_0967: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR147W" - - annotation: !!omap - - bigg.reaction: "ARGt2m" - - metanetx.reaction: "MNXR95953" - - pmid: "9874237" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_1658" - - name: "asparagine transport" - - metabolites: !!omap - - s_0969: -1 - - s_0971: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR508C" - - annotation: !!omap - - bigg.reaction: "ASNtm" - - metanetx.reaction: "MNXR96069" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1659" - - name: "aspartate-glutamate transporter" - - metabolites: !!omap - - s_0973: -1 - - s_0976: 1 - - s_0991: 1 - - s_0995: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ASPGLUtp" - - metanetx.reaction: "MNXR96083" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1660" - - name: "ATP diffusion" - - metabolites: !!omap - - s_0434: -1 - - s_0438: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ATPtn" - - metanetx.reaction: "MNXR96140" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1661" - - name: "ATP transport" - - metabolites: !!omap - - s_0434: -1 - - s_0435: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR96140" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1663" - - name: "bicarbonate exchange" - - metabolites: !!omap - - s_0446: -1 - - lower_bound: 0 - - upper_bound: 0 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_hco3_e" - - metanetx.reaction: "MNXR100483" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1664" - - name: "bicarbonate formation" - - metabolites: !!omap - - s_0447: 1 - - s_0460: -1 - - s_0799: 1 - - s_0807: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "HCO3Em" - - kegg.reaction: "R00132" - - metanetx.reaction: "MNXR100482" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1665" - - name: "bicarbonate formation" - - metabolites: !!omap - - s_0448: 1 - - s_0461: -1 - - s_0800: 1 - - s_0808: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "HCO3En" - - kegg.reaction: "R00132" - - metanetx.reaction: "MNXR100482" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1667" - - name: "bicarbonate formation" - - metabolites: !!omap - - s_0445: 1 - - s_0456: -1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL036W" - - annotation: !!omap - - bigg.reaction: "HCO3E" - - kegg.reaction: "R00132" - - metanetx.reaction: "MNXR100482" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1668" - - name: "bicarbonate formation" - - metabolites: !!omap - - s_0446: 1 - - s_0458: -1 - - s_0796: 1 - - s_0805: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "HCO3Ee" - - kegg.reaction: "R00132" - - metanetx.reaction: "MNXR100482" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1669" - - name: "bicarbonate transport" - - metabolites: !!omap - - s_0445: -1 - - s_0448: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "HCO3tn" - - metanetx.reaction: "MNXR100484" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1671" - - name: "biotin exchange" - - metabolites: !!omap - - s_0452: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_btn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1672" - - name: "carbon dioxide exchange" - - metabolites: !!omap - - s_0458: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_co2_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1673" - - name: "carnitine transport" - - metabolites: !!omap - - s_0021: -1 - - s_0024: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CRNtp" - - metanetx.reaction: "MNXR96906" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1674" - - name: "carnitine-acetylcarnitine carrier" - - metabolites: !!omap - - s_0021: -1 - - s_0024: 1 - - s_1235: 1 - - s_1237: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CRNCARtp" - - metanetx.reaction: "MNXR96898" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1675" - - name: "CDP transport" - - metabolites: !!omap - - s_0467: -1 - - s_0468: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CDPtn" - - metanetx.reaction: "MNXR96562" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1676" - - name: "ceramide transport" - - metabolites: !!omap - - s_0475: 1 - - s_0476: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR137412" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1677" - - name: "ceramide transport" - - metabolites: !!omap - - s_0481: 1 - - s_0482: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR137414" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1678" - - name: "ceramide transport" - - metabolites: !!omap - - s_0499: 1 - - s_0500: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1679" - - name: "ceramide transport" - - metabolites: !!omap - - s_0478: 1 - - s_0479: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR137413" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1680" - - name: "ceramide transport" - - metabolites: !!omap - - s_0484: 1 - - s_0485: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR137415" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1681" - - name: "ceramide transport" - - metabolites: !!omap - - s_0502: 1 - - s_0503: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1682" - - name: "cholestenol delta-isomerase, lumped reaction" - - metabolites: !!omap - - s_0662: 1 - - s_0794: 1 - - s_0803: 2 - - s_1275: -1 - - s_1413: 1 - - s_1416: -1 - - s_1569: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CHLSTI" - - metanetx.reaction: "MNXR96688" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1683" - - name: "choline exchange" - - metabolites: !!omap - - s_0513: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_chol_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1684" - - name: "choline transport" - - metabolites: !!omap - - s_0511: -1 - - s_0512: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL077C or YOR161C" - - annotation: !!omap - - metanetx.reaction: "MNXR96693" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1685" - - name: "chorismate pyruvate lyase" - - metabolites: !!omap - - s_0286: 1 - - s_0515: -1 - - s_1399: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CHRPL" - - kegg.reaction: "R01302" - - metanetx.reaction: "MNXR96711" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1686" - - name: "citrate transport" - - metabolites: !!omap - - s_0522: 1 - - s_0523: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR96756" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1687" - - name: "citrate exchange" - - metabolites: !!omap - - s_0523: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_cit_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1688" - - name: "citrate/isocitrate antiport" - - metabolites: !!omap - - s_0522: -1 - - s_0525: 1 - - s_0940: 1 - - s_0942: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CITtcp" - - metanetx.reaction: "MNXR96755" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1689" - - name: "citrate/malate antiport" - - metabolites: !!omap - - s_0066: -1 - - s_0069: 1 - - s_0522: 1 - - s_0525: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CITtap" - - metanetx.reaction: "MNXR96753" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1690" - - name: "CMP nucleosidase" - - metabolites: !!omap - - s_0526: -1 - - s_0545: 1 - - s_0803: -1 - - s_1408: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CMPN" - - metanetx.reaction: "MNXR96804" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1691" - - name: "CO2 transport" - - metabolites: !!omap - - s_0456: -1 - - s_0457: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CO2ter" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1694" - - name: "CO2 transport" - - metabolites: !!omap - - s_0456: 1 - - s_0461: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CO2tn" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1695" - - name: "CO2 transport" - - metabolites: !!omap - - s_0456: -1 - - s_0462: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CO2tp" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1696" - - name: "CO2 transport" - - metabolites: !!omap - - s_0456: -1 - - s_0460: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CO2tm" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1697" - - name: "CO2 transport" - - metabolites: !!omap - - s_0456: -1 - - s_0458: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CO2t" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1698" - - name: "coenzyme A transport" - - metabolites: !!omap - - s_0529: -1 - - s_0530: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "COAtr" - - metanetx.reaction: "MNXR96815" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1699" - - name: "coenzyme A transport" - - metabolites: !!omap - - s_0529: -1 - - s_0533: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "COAtn" - - metanetx.reaction: "MNXR96815" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1700" - - name: "coenzyme A transport" - - metabolites: !!omap - - s_0529: 1 - - s_0534: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "COAtp" - - metanetx.reaction: "MNXR96815" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1702" - - name: "cytidine exchange" - - metabolites: !!omap - - s_0544: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_cytd_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1703" - - name: "cytidylate kinase (CMP)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0467: 1 - - s_0526: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CYTK1" - - kegg.reaction: "R00512" - - metanetx.reaction: "MNXR97047" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1704" - - name: "cytidylate kinase (dCMP)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0587: 1 - - s_0589: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "CYTK2" - - kegg.reaction: "R01665" - - metanetx.reaction: "MNXR97053" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1705" - - name: "cytosine exchange" - - metabolites: !!omap - - s_0546: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_csn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1706" - - name: "D-arabinose exchange" - - metabolites: !!omap - - s_0549: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_arab__D_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1707" - - name: "D-arabinose transport" - - metabolites: !!omap - - s_0548: 1 - - s_0549: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR342C or YHR092C" - - annotation: !!omap - - bigg.reaction: "ARAB_Dt" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1708" - - name: "D-erythrose 4-phosphate transport" - - metabolites: !!omap - - s_0551: -1 - - s_0552: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "E4Ptm" - - metanetx.reaction: "MNXR97843" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1709" - - name: "D-fructose exchange" - - metabolites: !!omap - - s_0554: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_fru_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1710" - - name: "D-galactose exchange" - - metabolites: !!omap - - s_0559: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_gal_e" - - kegg.reaction: "R10619" - - metanetx.reaction: "MNXR113944" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1711" - - name: "D-galacturonate exchange" - - metabolites: !!omap - - s_0560: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_galur_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1712" - - name: "D-glucitol exchange" - - metabolites: !!omap - - s_0562: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_sbt__D_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1713" - - name: "D-glucosamine 6-phosphate uniport" - - metabolites: !!omap - - s_0412: 1 - - s_0413: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "GAM6Pt" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1714" - - name: "D-glucose exchange" - - metabolites: !!omap - - s_0565: -1 - - lower_bound: -1 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_glc__D_e" - - metanetx.reaction: "MNXR138465" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1715" - - name: "D-mannose exchange" - - metabolites: !!omap - - s_0572: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_man_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1716" - - name: "D-ribose exchange" - - metabolites: !!omap - - s_0576: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_rib__D_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1717" - - name: "D-sorbitol transport" - - metabolites: !!omap - - s_0561: 1 - - s_0562: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL245C or YEL069C or YJR158W or YNR072W" - - annotation: !!omap - - bigg.reaction: "SBT_Dt" - - metanetx.reaction: "MNXR104288" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1718" - - name: "D-xylose exchange" - - metabolites: !!omap - - s_0579: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_xyl__D_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1719" - - name: "D-xylose transport" - - metabolites: !!omap - - s_0578: 1 - - s_0579: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR092C" - - annotation: !!omap - - bigg.reaction: "XYLt" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1720" - - name: "dADP transport" - - metabolites: !!omap - - s_0582: -1 - - s_0583: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DADPtn" - - metanetx.reaction: "MNXR97082" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1721" - - name: "dCDP transport" - - metabolites: !!omap - - s_0587: -1 - - s_0588: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DCDPtn" - - metanetx.reaction: "MNXR97182" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1722" - - name: "ATP deamination" - - metabolites: !!omap - - s_0419: 1 - - s_0434: -1 - - s_0794: -1 - - s_0803: -1 - - s_0950: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ATPHs" - - kegg.reaction: "R00088" - - metanetx.reaction: "MNXR96130" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1723" - - name: "dATP deamination" - - metabolites: !!omap - - s_0419: 1 - - s_0586: -1 - - s_0639: 1 - - s_0794: -1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DATPHs" - - metanetx.reaction: "MNXR97174" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1724" - - name: "ADP deamination" - - metabolites: !!omap - - s_0394: -1 - - s_0419: 1 - - s_0794: -1 - - s_0803: -1 - - s_0846: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - kegg.reaction: "R00123" - - metanetx.reaction: "MNXR106399" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1725" - - name: "dADP deamination" - - metabolites: !!omap - - s_0419: 1 - - s_0582: -1 - - s_0618: 1 - - s_0794: -1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1726" - - name: "deamino-NAD+ diffusion" - - metabolites: !!omap - - s_0591: -1 - - s_0593: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DNADtn" - - metanetx.reaction: "MNXR97625" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1727" - - name: "decanoate exchange" - - metabolites: !!omap - - s_0597: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_dca_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1728" - - name: "deoxyadenosine transport" - - metabolites: !!omap - - s_0132: 1 - - s_0133: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DADNt4" - - metanetx.reaction: "MNXR97081" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1729" - - name: "deoxyadenylate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0582: 1 - - s_0584: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL166C" - - annotation: !!omap - - bigg.reaction: "DADK" - - kegg.reaction: "R01547" - - metanetx.reaction: "MNXR96117" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1730" - - name: "deoxycytidine exchange" - - metabolites: !!omap - - s_0611: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_dcyt_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1731" - - name: "deoxycytidine transport" - - metabolites: !!omap - - s_0610: 1 - - s_0611: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DCYTt" - - metanetx.reaction: "MNXR97208" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1732" - - name: "deoxyguanosine transport" - - metabolites: !!omap - - s_0134: 1 - - s_0135: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DGSNt" - - metanetx.reaction: "MNXR97324" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1733" - - name: "deoxyinosine transport" - - metabolites: !!omap - - s_0136: 1 - - s_0137: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DINt" - - metanetx.reaction: "MNXR97466" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1734" - - name: "deoxyuridine kinase (ATP:deoxyuridine)" - - metabolites: !!omap - - s_0138: -1 - - s_0394: 1 - - s_0434: -1 - - s_0654: 1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DURIK1" - - kegg.reaction: "R02099" - - metanetx.reaction: "MNXR97817" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1735" - - name: "deoxyuridine transport" - - metabolites: !!omap - - s_0138: 1 - - s_0139: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL042C" - - annotation: !!omap - - bigg.reaction: "DURIt" - - metanetx.reaction: "MNXR97819" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1736" - - name: "dephospho-CoA kinase" - - metabolites: !!omap - - s_0197: -1 - - s_0394: 1 - - s_0434: -1 - - s_0529: 1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DPCOAK" - - kegg.reaction: "R00130" - - metanetx.reaction: "MNXR97762" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1737" - - name: "dGDP transport" - - metabolites: !!omap - - s_0613: -1 - - s_0614: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DGDPtn" - - metanetx.reaction: "MNXR97314" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1738" - - name: "dhnpt transport" - - metabolites: !!omap - - s_0343: -1 - - s_0344: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DHNPTtm" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1739" - - name: "diamine transaminase" - - metabolites: !!omap - - s_0373: -1 - - s_0529: 1 - - s_0794: 1 - - s_1181: 1 - - s_1442: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR071C" - - annotation: !!omap - - bigg.reaction: "DIAT" - - metanetx.reaction: "MNXR97455" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1743" - - name: "dihydrofolate transport" - - metabolites: !!omap - - s_0625: -1 - - s_0626: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DHFtm" - - metanetx.reaction: "MNXR97404" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1744" - - name: "dihydroneopterin triphosphate pyrophosphatase" - - metabolites: !!omap - - s_0345: 1 - - s_0346: -1 - - s_0633: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DNTPPA" - - kegg.reaction: "R04638" - - metanetx.reaction: "MNXR97680" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1745" - - name: "dihydropteroate transport" - - metabolites: !!omap - - s_0347: -1 - - s_0348: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DHPTtm" - - metanetx.reaction: "MNXR142733" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1746" - - name: "dihydroxyacetone phosphate transport" - - metabolites: !!omap - - s_0629: 1 - - s_0632: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DHAPtm" - - metanetx.reaction: "MNXR97366" - - pmid: "22672422" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1747" - - name: "diphosphate transport" - - metabolites: !!omap - - s_0633: -1 - - s_0638: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PPItx" - - metanetx.reaction: "MNXR103112" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1748" - - name: "dolichol phosphate transport" - - metabolites: !!omap - - s_0645: -1 - - s_0646: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DOLP_ter" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1749" - - name: "dTTP exchange" - - metabolites: !!omap - - s_0651: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_dttp_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1750" - - name: "dTTP uniport" - - metabolites: !!omap - - s_0650: 1 - - s_0651: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DTTPt" - - metanetx.reaction: "MNXR97810" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1751" - - name: "dUDP diffusion" - - metabolites: !!omap - - s_0652: -1 - - s_0653: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DUDPtn" - - metanetx.reaction: "MNXR97812" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1752" - - name: "dUMP transport" - - metabolites: !!omap - - s_0654: -1 - - s_0655: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DUMPtn" - - metanetx.reaction: "MNXR97813" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1753" - - name: "episterol exchange" - - metabolites: !!omap - - s_0659: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_epist_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1754" - - name: "ergosta-5,6,22,24,(28)-tetraen-3beta-ol transport" - - metabolites: !!omap - - s_0662: -1 - - s_0663: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ERGTETROLter" - - metanetx.reaction: "MNXR97951" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1757" - - name: "ergosterol exchange" - - metabolites: !!omap - - s_0668: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ergst_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1758" - - name: "ergosterol transport" - - metabolites: !!omap - - s_0666: 1 - - s_0667: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ERGSTter" - - metanetx.reaction: "MNXR97950" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1759" - - name: "ergosterol transport" - - metabolites: !!omap - - s_0666: -1 - - s_0669: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR97950" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1761" - - name: "ethanol exchange" - - metabolites: !!omap - - s_0681: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_etoh_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1762" - - name: "ethanol transport" - - metabolites: !!omap - - s_0680: -1 - - s_0681: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ETOHt" - - metanetx.reaction: "MNXR97980" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1763" - - name: "ethanol transport, mitochondrial" - - metabolites: !!omap - - s_0680: -1 - - s_0682: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ETOHtm" - - metanetx.reaction: "MNXR97980" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1764" - - name: "ethanolamine exchange" - - metabolites: !!omap - - s_0684: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_etha_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1765" - - name: "ethyl acetate exchange" - - metabolites: !!omap - - s_0686: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000627" - - !!omap - - id: "r_1766" - - name: "farnesyl diphosphate transport" - - metabolites: !!omap - - s_0190: -1 - - s_0191: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "FRDPtm" - - metanetx.reaction: "MNXR99646" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1770" - - name: "fatty acid transport" - - metabolites: !!omap - - s_0595: -1 - - s_0600: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "FA100tp" - - metanetx.reaction: "MNXR135772" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1771" - - name: "fatty acid transport" - - metabolites: !!omap - - s_1065: -1 - - s_1070: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - bigg.reaction: "FA120tp" - - metanetx.reaction: "MNXR135773" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1772" - - name: "fatty acid transport" - - metabolites: !!omap - - s_1161: -1 - - s_1166: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - bigg.reaction: "FA140tp" - - metanetx.reaction: "MNXR128297" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1774" - - name: "fatty acid transport" - - metabolites: !!omap - - s_1286: -1 - - s_1291: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - bigg.reaction: "FA160tp" - - metanetx.reaction: "MNXR99101" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1775" - - name: "fatty acid transport" - - metabolites: !!omap - - s_1293: -1 - - s_1298: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "FA161tp" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1776" - - name: "fatty acid transport" - - metabolites: !!omap - - s_1248: -1 - - s_1253: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "FA80tp" - - metanetx.reaction: "MNXR99126" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1777" - - name: "myristate (n-C14:0) transport" - - metabolites: !!omap - - s_1161: 1 - - s_1163: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "TTDCAtr" - - metanetx.reaction: "MNXR128297" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1788" - - name: "fecosterol exchange" - - metabolites: !!omap - - s_0702: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_fecost_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1790" - - name: "FMN adenylyltransferase" - - metabolites: !!omap - - s_0437: -1 - - s_0636: 1 - - s_0688: 1 - - s_0716: -1 - - s_0799: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL045C" - - annotation: !!omap - - bigg.reaction: "FMNATm" - - kegg.reaction: "R00161" - - metanetx.reaction: "MNXR95501" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1791" - - name: "FMN exchange" - - metabolites: !!omap - - s_0715: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_fmn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1792" - - name: "folic acid exchange" - - metabolites: !!omap - - s_0720: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_fol_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1793" - - name: "formate exchange" - - metabolites: !!omap - - s_0723: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_for_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1794" - - name: "formate transport" - - metabolites: !!omap - - s_0722: 1 - - s_0724: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "FORtm" - - metanetx.reaction: "MNXR99620" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1795" - - name: "formate transport" - - metabolites: !!omap - - s_0722: 1 - - s_0723: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL065W" - - annotation: !!omap - - bigg.reaction: "FORt" - - metanetx.reaction: "MNXR99620" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1796" - - name: "formate transport" - - metabolites: !!omap - - s_0725: 1 - - s_0726: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "FUMtr" - - metanetx.reaction: "MNXR99715" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1797" - - name: "fructose-1-phosphate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0555: 1 - - s_0556: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "FRUK" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1798" - - name: "fumarate exchange" - - metabolites: !!omap - - s_0726: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_fum_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1800" - - name: "gamma-aminobutyrate exchange" - - metabolites: !!omap - - s_0736: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_4abut_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1801" - - name: "GDP transport" - - metabolites: !!omap - - s_0739: 1 - - s_0740: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "GDPtg" - - metanetx.reaction: "MNXR100096" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1802" - - name: "GDP transport" - - metabolites: !!omap - - s_0739: -1 - - s_0742: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "GDPtn" - - metanetx.reaction: "MNXR100096" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1803" - - name: "GDP-alpha-D-mannose transport" - - metabolites: !!omap - - s_0743: -1 - - s_0744: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL225W" - - annotation: !!omap - - metanetx.reaction: "MNXR131177" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1805" - - name: "glucose transport, vacuolar" - - metabolites: !!omap - - s_0563: -1 - - s_0566: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR241C or YGL104C" - - annotation: !!omap - - bigg.reaction: "GLCtv" - - metanetx.reaction: "MNXR100188" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1806" - - name: "glutathione disulfide exchange" - - metabolites: !!omap - - s_0755: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_gthox_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1807" - - name: "glutathione exchange" - - metabolites: !!omap - - s_0751: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_gthrd_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1808" - - name: "glycerol exchange" - - metabolites: !!omap - - s_0766: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_glyc_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1809" - - name: "glycerol-3-phosphate shuttle" - - metabolites: !!omap - - s_0767: -1 - - s_0770: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "GLYC3Ptm" - - metanetx.reaction: "MNXR100308" - - pmid: "22672422" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1810" - - name: "L-glycine exchange" - - metabolites: !!omap - - s_1004: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_gly_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1811" - - name: "glycine transport" - - metabolites: !!omap - - s_1003: -1 - - s_1005: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR058W" - - annotation: !!omap - - bigg.reaction: "GLYtm" - - metanetx.reaction: "MNXR100371" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1812" - - name: "glycoaldehyde transport" - - metabolites: !!omap - - s_0775: -1 - - s_0777: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "GCALDtm" - - metanetx.reaction: "MNXR100061" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1813" - - name: "glycoaldehyde transport" - - metabolites: !!omap - - s_0775: 1 - - s_0776: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "GCALDt" - - metanetx.reaction: "MNXR100061" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1814" - - name: "glycolaldehyde exchange" - - metabolites: !!omap - - s_0776: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_gcald_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1815" - - name: "glyoxylate exchange" - - metabolites: !!omap - - s_0780: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_glx_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1816" - - name: "glyoxylate transport" - - metabolites: !!omap - - s_0779: -1 - - s_0780: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL065W" - - annotation: !!omap - - bigg.reaction: "GLXt" - - metanetx.reaction: "MNXR100306" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1817" - - name: "glyoxylate transport" - - metabolites: !!omap - - s_0779: -1 - - s_0781: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "GLXtp" - - metanetx.reaction: "MNXR100306" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1818" - - name: "guanine exchange" - - metabolites: !!omap - - s_0788: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_gua_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1819" - - name: "guanine transport" - - metabolites: !!omap - - s_0787: -1 - - s_0789: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "GUAtm" - - metanetx.reaction: "MNXR100465" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1820" - - name: "guanosine exchange" - - metabolites: !!omap - - s_0791: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_gsn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1821" - - name: "guanosine kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0782: 1 - - s_0790: -1 - - s_0794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "GSNK" - - kegg.reaction: "R01228" - - metanetx.reaction: "MNXR100432" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1822" - - name: "guanosine transport" - - metabolites: !!omap - - s_0790: -1 - - s_0792: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "GSNtm" - - metanetx.reaction: "MNXR100433" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1823" - - name: "guanosine transport" - - metabolites: !!omap - - s_0790: 1 - - s_0791: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "GSNt" - - metanetx.reaction: "MNXR100433" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1824" - - name: "H+ diffusion" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "Ht" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1825" - - name: "H+ diffusion" - - metabolites: !!omap - - s_0794: -1 - - s_0795: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "Htr" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1826" - - name: "H+ diffusion" - - metabolites: !!omap - - s_0794: -1 - - s_0797: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "Htg" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1827" - - name: "H+ diffusion" - - metabolites: !!omap - - s_0794: -1 - - s_0798: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1829" - - name: "H+ diffusion" - - metabolites: !!omap - - s_0794: -1 - - s_0800: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "HMR_1095" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1830" - - name: "H+ diffusion" - - metabolites: !!omap - - s_0794: -1 - - s_0801: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "Htx" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1831" - - name: "H+ diffusion" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1832" - - name: "H+ exchange" - - metabolites: !!omap - - s_0796: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_h_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1833" - - name: "hexacosanoyl-CoA transport" - - metabolites: !!omap - - s_0816: -1 - - s_0817: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR124347" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1834" - - name: "hexadecanal exchange" - - metabolites: !!omap - - s_0826: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000627" - - !!omap - - id: "r_1835" - - name: "hexadecanoate (n-C16:0) transport" - - metabolites: !!omap - - s_1286: 1 - - s_1288: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "HDCAt" - - metanetx.reaction: "MNXR99101" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1836" - - name: "hexadecenoate (n-C16:1) transport" - - metabolites: !!omap - - s_1293: 1 - - s_1295: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "HDCEAt" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1837" - - name: "L-histidine transport, mitochondrial" - - metabolites: !!omap - - s_1006: -1 - - s_1008: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR147W" - - annotation: !!omap - - metanetx.reaction: "MNXR100649" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1838" - - name: "homocitrate synthase" - - metabolites: !!omap - - s_0182: -1 - - s_0376: -1 - - s_0532: 1 - - s_0799: 1 - - s_0807: -1 - - s_0834: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL131W or YDL182W" - - annotation: !!omap - - ec-code: "2.3.3.14" - - kegg.pathway: - - "sce00300" - - "sce00620" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00271" - - metanetx.reaction: "MNXR141692" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_1839" - - name: "hydrogen peroxide transport" - - metabolites: !!omap - - s_0837: -1 - - s_0839: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "H2O2tn" - - metanetx.reaction: "MNXR98640" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1840" - - name: "hydroxymethylglutaryl-CoA transport" - - metabolites: !!omap - - s_0218: -1 - - s_0221: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "HMGCOAtm" - - metanetx.reaction: "MNXR100661" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1841" - - name: "hypoxanthine exchange" - - metabolites: !!omap - - s_0844: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_hxan_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1842" - - name: "hypoxanthine transport" - - metabolites: !!omap - - s_0843: 1 - - s_0844: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "HYXNt" - - metanetx.reaction: "MNXR100749" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1843" - - name: "indol-3-ylacetaldehyde exchange" - - metabolites: !!omap - - s_0851: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_id3acald_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1844" - - name: "indole-3-acetaldehyde transport" - - metabolites: !!omap - - s_0850: -1 - - s_0852: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ID3ACALDtm" - - metanetx.reaction: "MNXR100791" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1845" - - name: "indole-3-acetaldehyde transport" - - metabolites: !!omap - - s_0850: -1 - - s_0851: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ID3ACALDt" - - metanetx.reaction: "MNXR100791" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1846" - - name: "indole-3-acetate transport" - - metabolites: !!omap - - s_0853: -1 - - s_0854: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "IND3ACtm" - - metanetx.reaction: "MNXR100833" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1847" - - name: "inosine exchange" - - metabolites: !!omap - - s_0857: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ins_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1848" - - name: "inosine transport" - - metabolites: !!omap - - s_0856: 1 - - s_0857: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "INSt" - - metanetx.reaction: "MNXR100849" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1849" - - name: "inositol hexakisphosphate transport" - - metabolites: !!omap - - s_1158: -1 - - s_1159: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "MINOHPtn" - - metanetx.reaction: "MNXR101585" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1850" - - name: "insosine kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0849: 1 - - s_0856: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "INSK" - - kegg.reaction: "R01131" - - metanetx.reaction: "MNXR100845" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1851" - - name: "IPC transport" - - metabolites: !!omap - - s_0894: 1 - - s_0895: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1852" - - name: "IPC transport" - - metabolites: !!omap - - s_0900: 1 - - s_0901: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1853" - - name: "IPC transport" - - metabolites: !!omap - - s_0906: 1 - - s_0907: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1854" - - name: "IPC transport" - - metabolites: !!omap - - s_0912: 1 - - s_0913: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1855" - - name: "IPC transport" - - metabolites: !!omap - - s_0918: 1 - - s_0919: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1856" - - name: "IPC transport" - - metabolites: !!omap - - s_0897: 1 - - s_0898: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1857" - - name: "IPC transport" - - metabolites: !!omap - - s_0903: 1 - - s_0904: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1858" - - name: "IPC transport" - - metabolites: !!omap - - s_0909: 1 - - s_0910: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1859" - - name: "IPC transport" - - metabolites: !!omap - - s_0915: 1 - - s_0916: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1860" - - name: "IPC transport" - - metabolites: !!omap - - s_0921: 1 - - s_0922: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1861" - - name: "iron(2+) exchange" - - metabolites: !!omap - - s_0925: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_fe2_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1862" - - name: "isoamyl acetate exchange" - - metabolites: !!omap - - s_0928: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_iamac_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1863" - - name: "isoamyl alcohol transport" - - metabolites: !!omap - - s_0929: -1 - - s_0930: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "IAMOHt" - - metanetx.reaction: "MNXR100775" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1864" - - name: "isoamyl alcohol transport" - - metabolites: !!omap - - s_0929: -1 - - s_0931: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "IAMOHtm" - - metanetx.reaction: "MNXR100775" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1865" - - name: "isoamylol exchange" - - metabolites: !!omap - - s_0930: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_iamoh_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1866" - - name: "isobutanol exchange" - - metabolites: !!omap - - s_0933: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ibutoh_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1867" - - name: "isobutyl acetate exchange" - - metabolites: !!omap - - s_0936: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ibutac_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1868" - - name: "isobutyl alcohol transport" - - metabolites: !!omap - - s_0932: -1 - - s_0933: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "IBUTOHt" - - metanetx.reaction: "MNXR100780" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1869" - - name: "isobutyl alcohol transport" - - metabolites: !!omap - - s_0932: -1 - - s_0934: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "IBUTOHtm" - - metanetx.reaction: "MNXR100780" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1870" - - name: "isobutyraldehyde exchange" - - metabolites: !!omap - - s_0938: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_2mppal_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1871" - - name: "L-1-pyrroline-3-hydroxy-5-carboxylate spontaneous conversion to L-4-hydroxyglutamate semialdehyde" - - metabolites: !!omap - - s_0117: -1 - - s_0799: -1 - - s_0807: -1 - - s_0954: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PHCHGSm" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1872" - - name: "L-2-amino-3-oxobutanoate decarboxylation (spontaneous)" - - metabolites: !!omap - - s_0418: 1 - - s_0456: 1 - - s_0794: -1 - - s_0952: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "AOBUTDs" - - kegg.reaction: "R03758" - - metanetx.reaction: "MNXR95851" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1873" - - name: "L-alanine exchange" - - metabolites: !!omap - - s_0956: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ala__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1874" - - name: "L-alanine transport" - - metabolites: !!omap - - s_0955: 1 - - s_0957: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ALAtmi" - - metanetx.reaction: "MNXR95706" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1875" - - name: "L-arabinitol exchange" - - metabolites: !!omap - - s_0962: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_abt_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1876" - - name: "L-arabinitol transport" - - metabolites: !!omap - - s_0961: 1 - - s_0962: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ABTt" - - metanetx.reaction: "MNXR95190" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1877" - - name: "L-arabinoase transport" - - metabolites: !!omap - - s_0963: 1 - - s_0964: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR342C or YHR092C" - - annotation: !!omap - - bigg.reaction: "ARAB_Lt" - - metanetx.reaction: "MNXR135734" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1878" - - name: "L-arabinose exchange" - - metabolites: !!omap - - s_0964: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_arab__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1879" - - name: "L-arginine exchange" - - metabolites: !!omap - - s_0966: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_arg__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1880" - - name: "L-asparagine exchange" - - metabolites: !!omap - - s_0970: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_asn__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1881" - - name: "L-aspartate exchange" - - metabolites: !!omap - - s_0974: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_asp__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1882" - - name: "L-carnitine transport" - - metabolites: !!omap - - s_0021: 1 - - s_0023: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR100C" - - annotation: !!omap - - bigg.reaction: "CRNtim" - - metanetx.reaction: "MNXR96906" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1883" - - name: "L-cysteine exchange" - - metabolites: !!omap - - s_0982: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_cys__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1884" - - name: "L-erythro-4-hydroxyglutamate transport" - - metabolites: !!omap - - s_0677: -1 - - s_0678: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "E4HGLUtm" - - metanetx.reaction: "MNXR97841" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1885" - - name: "L-erythro-4-hydroxyglutamate transport" - - metabolites: !!omap - - s_0677: -1 - - s_0679: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "E4HGLUtp" - - metanetx.reaction: "MNXR97841" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1886" - - name: "L-glucitol exchange" - - metabolites: !!omap - - s_0990: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_sbt__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1887" - - name: "L-glutamate 5-semialdehyde dehydratase" - - metabolites: !!omap - - s_0118: 1 - - s_0794: 1 - - s_0803: 1 - - s_0997: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "G5SADs" - - kegg.reaction: "R03314" - - metanetx.reaction: "MNXR99897" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1889" - - name: "L-glutamate exchange" - - metabolites: !!omap - - s_0992: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_glu__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1890" - - name: "L-glutamate transport" - - metabolites: !!omap - - s_0991: -1 - - s_0994: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR100301" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1891" - - name: "L-glutamine exchange" - - metabolites: !!omap - - s_1000: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_gln__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1892" - - name: "L-glutamine transport" - - metabolites: !!omap - - s_0999: -1 - - s_1001: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR100259" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1893" - - name: "L-histidine exchange" - - metabolites: !!omap - - s_1007: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_his__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1895" - - name: "L-homoserine transport" - - metabolites: !!omap - - s_1014: 1 - - s_1015: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "r2535" - - metanetx.reaction: "MNXR100678" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1896" - - name: "L-homoserine exchange" - - metabolites: !!omap - - s_1015: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_hom__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1897" - - name: "L-isoleucine exchange" - - metabolites: !!omap - - s_1017: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ile__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1898" - - name: "L-isoleucine transport" - - metabolites: !!omap - - s_1016: 1 - - s_1018: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "ILEtmi" - - metanetx.reaction: "MNXR100824" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1899" - - name: "L-leucine exchange" - - metabolites: !!omap - - s_1022: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_leu__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1900" - - name: "L-lysine exchange" - - metabolites: !!omap - - s_1026: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_lys__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1901" - - name: "L-malate transport" - - metabolites: !!omap - - s_0066: 1 - - s_0067: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "MALt" - - metanetx.reaction: "MNXR101367" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1902" - - name: "L-methionine exchange" - - metabolites: !!omap - - s_1030: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_met__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1903" - - name: "L-phenylalanine exchange" - - metabolites: !!omap - - s_1033: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_phe__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1904" - - name: "L-proline exchange" - - metabolites: !!omap - - s_1036: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_pro__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1905" - - name: "L-proline transport" - - metabolites: !!omap - - s_1035: -1 - - s_1037: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PROtm" - - metanetx.reaction: "MNXR103213" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1906" - - name: "L-serine exchange" - - metabolites: !!omap - - s_1041: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ser__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1907" - - name: "L-serine transport" - - metabolites: !!omap - - s_1039: -1 - - s_1040: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKR039W" - - annotation: !!omap - - metanetx.reaction: "MNXR104354" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1908" - - name: "L-sorbitol transport" - - metabolites: !!omap - - s_0989: 1 - - s_0990: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL245C or YEL069C or YJR158W or YNR072W" - - annotation: !!omap - - bigg.reaction: "SBT_Lt" - - metanetx.reaction: "MNXR104289" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1909" - - name: "L-sorbose exchange" - - metabolites: !!omap - - s_1044: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_srb__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1910" - - name: "L-sorbose transport" - - metabolites: !!omap - - s_1043: 1 - - s_1044: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" - - annotation: !!omap - - bigg.reaction: "SRB_Lt" - - metanetx.reaction: "MNXR104533" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1911" - - name: "L-threonine exchange" - - metabolites: !!omap - - s_1046: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_thr__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1912" - - name: "L-tryptophan exchange" - - metabolites: !!omap - - s_1049: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_trp__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1913" - - name: "L-tyrosine exchange" - - metabolites: !!omap - - s_1052: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_tyr__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1914" - - name: "L-valine exchange" - - metabolites: !!omap - - s_1057: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_val__L_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1915" - - name: "lanosterol exchange" - - metabolites: !!omap - - s_1061: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_lanost_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1916" - - name: "laurate exchange" - - metabolites: !!omap - - s_1067: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ddca_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1919" - - name: "lysine transport" - - metabolites: !!omap - - s_1025: -1 - - s_1027: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR147W" - - annotation: !!omap - - metanetx.reaction: "MNXR101269" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1920" - - name: "M(IP)2C transport" - - metabolites: !!omap - - s_0861: 1 - - s_0862: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1921" - - name: "M(IP)2C transport" - - metabolites: !!omap - - s_0867: 1 - - s_0868: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1922" - - name: "M(IP)2C transport" - - metabolites: !!omap - - s_0873: 1 - - s_0874: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1923" - - name: "M(IP)2C transport" - - metabolites: !!omap - - s_0879: 1 - - s_0880: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1924" - - name: "M(IP)2C transport" - - metabolites: !!omap - - s_0885: 1 - - s_0886: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1925" - - name: "M(IP)2C transport" - - metabolites: !!omap - - s_0864: 1 - - s_0865: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1926" - - name: "M(IP)2C transport" - - metabolites: !!omap - - s_0870: 1 - - s_0871: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1927" - - name: "M(IP)2C transport" - - metabolites: !!omap - - s_0876: 1 - - s_0877: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1928" - - name: "M(IP)2C transport" - - metabolites: !!omap - - s_0882: 1 - - s_0883: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1929" - - name: "M(IP)2C transport" - - metabolites: !!omap - - s_0888: 1 - - s_0889: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1930" - - name: "malate/oxaloacetate shuttle" - - metabolites: !!omap - - s_0066: 1 - - s_0069: -1 - - s_1271: -1 - - s_1274: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "MALOAAtp" - - metanetx.reaction: "MNXR101346" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1931" - - name: "maltose exchange" - - metabolites: !!omap - - s_1106: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_malt_e" - - metanetx.reaction: "MNXR123950" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1932" - - name: "mannan transport" - - metabolites: !!omap - - s_1107: -1 - - s_1108: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "MANNANter" - - metanetx.reaction: "MNXR101396" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1935" - - name: "methionine transport" - - metabolites: !!omap - - s_1029: 1 - - s_1031: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR508C" - - annotation: !!omap - - bigg.reaction: "METtm" - - metanetx.reaction: "MNXR101493" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1936" - - name: "methylglyoxal synthase" - - metabolites: !!omap - - s_0629: -1 - - s_1151: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "MGSA" - - kegg.reaction: "R01016" - - metanetx.reaction: "MNXR101551" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1937" - - name: "MIPC transport" - - metabolites: !!omap - - s_1116: 1 - - s_1117: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1938" - - name: "MIPC transport" - - metabolites: !!omap - - s_1122: 1 - - s_1123: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1939" - - name: "MIPC transport" - - metabolites: !!omap - - s_1128: 1 - - s_1129: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1940" - - name: "MIPC transport" - - metabolites: !!omap - - s_1134: 1 - - s_1135: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1941" - - name: "MIPC transport" - - metabolites: !!omap - - s_1140: 1 - - s_1141: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1942" - - name: "MIPC transport" - - metabolites: !!omap - - s_1119: 1 - - s_1120: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1943" - - name: "MIPC transport" - - metabolites: !!omap - - s_1125: 1 - - s_1126: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1944" - - name: "MIPC transport" - - metabolites: !!omap - - s_1131: 1 - - s_1132: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1945" - - name: "MIPC transport" - - metabolites: !!omap - - s_1137: 1 - - s_1138: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1946" - - name: "MIPC transport" - - metabolites: !!omap - - s_1143: 1 - - s_1144: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1947" - - name: "myo-inositol exchange" - - metabolites: !!omap - - s_1154: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_inost_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1952" - - name: "N,N'-diformyldityrosine exchange" - - metabolites: !!omap - - s_1186: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000627" - - !!omap - - id: "r_1963" - - name: "NADP(+) transport" - - metabolites: !!omap - - s_1207: -1 - - s_1208: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NADPtru" - - metanetx.reaction: "MNXR101896" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1964" - - name: "NADPH transport" - - metabolites: !!omap - - s_1212: -1 - - s_1213: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NADPHtru" - - metanetx.reaction: "MNXR101894" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1965" - - name: "NH3 transport" - - metabolites: !!omap - - s_0419: -1 - - s_0421: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NH4tm" - - metanetx.reaction: "MNXR101950" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1966" - - name: "nicotinamide diffusion" - - metabolites: !!omap - - s_1216: -1 - - s_1217: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR101918" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1967" - - name: "nicotinate exchange" - - metabolites: !!omap - - s_1220: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_nac_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1968" - - name: "NMN exchange" - - metabolites: !!omap - - s_1225: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_nmn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1970" - - name: "NMN transport" - - metabolites: !!omap - - s_1224: -1 - - s_1227: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NMNtn" - - metanetx.reaction: "MNXR101972" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1971" - - name: "NMN transport" - - metabolites: !!omap - - s_1224: -1 - - s_1228: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR101972" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1972" - - name: "NMN transport" - - metabolites: !!omap - - s_1224: 1 - - s_1225: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NMNP" - - metanetx.reaction: "MNXR101972" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1974" - - name: "nucleoside-diphosphatase (dGDP)" - - metabolites: !!omap - - s_0613: -1 - - s_0615: 1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NDP4" - - metanetx.reaction: "MNXR101929" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1975" - - name: "nucleoside-triphosphatase (dGTP)" - - metabolites: !!omap - - s_0613: 1 - - s_0617: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "NTP4" - - metanetx.reaction: "MNXR102044" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1976" - - name: "O-acetylcarnintine transport into mitochondria" - - metabolites: !!omap - - s_1235: -1 - - s_1236: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR100C" - - annotation: !!omap - - bigg.reaction: "ACRNtm" - - metanetx.reaction: "MNXR95412" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1977" - - name: "O2 transport" - - metabolites: !!omap - - s_1275: -1 - - s_1276: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "O2ter" - - metanetx.reaction: "MNXR102090" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1978" - - name: "O2 transport" - - metabolites: !!omap - - s_1275: -1 - - s_1278: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "O2tm" - - metanetx.reaction: "MNXR102090" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1979" - - name: "O2 transport" - - metabolites: !!omap - - s_1275: 1 - - s_1277: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "O2t" - - metanetx.reaction: "MNXR102090" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1980" - - name: "O2 transport" - - metabolites: !!omap - - s_1275: -1 - - s_1279: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "O2tp" - - metanetx.reaction: "MNXR102090" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1981" - - name: "octadecanoate (n-C18:0) transport" - - metabolites: !!omap - - s_1449: 1 - - s_1450: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "OCDCAt" - - metanetx.reaction: "MNXR99109" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1984" - - name: "octanoate exchange" - - metabolites: !!omap - - s_1250: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_octa_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1987" - - name: "ornithine exchange" - - metabolites: !!omap - - s_1267: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_orn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1988" - - name: "oxaloacetate transport" - - metabolites: !!omap - - s_1271: -1 - - s_1272: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "OAAt" - - metanetx.reaction: "MNXR102100" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1989" - - name: "oxaloacetate(2-) exchange" - - metabolites: !!omap - - s_1272: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_oaa_e" - - kegg.reaction: "R00363" - - metanetx.reaction: "MNXR125856" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1990" - - name: "oxidized glutathione uniport" - - metabolites: !!omap - - s_0754: 1 - - s_0755: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL212C" - - annotation: !!omap - - bigg.reaction: "GTHOXti" - - metanetx.reaction: "MNXR100443" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_1991" - - name: "oxidized thioredoxin transport" - - metabolites: !!omap - - s_1620: -1 - - s_1623: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "TRDOXtp" - - metanetx.reaction: "MNXR104921" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1992" - - name: "oxygen exchange" - - metabolites: !!omap - - s_1277: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_o2_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1993" - - name: "palmitate exchange" - - metabolites: !!omap - - s_1288: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_hdca_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1994" - - name: "palmitoleate exchange" - - metabolites: !!omap - - s_1295: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_hdcea_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_1995" - - name: "palmitoyl-CoA transport" - - metabolites: !!omap - - s_1302: -1 - - s_1303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PMTCOAFABP1tc" - - metanetx.reaction: "MNXR103046" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1996" - - name: "panthetheine 4'-phosphate transport" - - metabolites: !!omap - - s_1307: -1 - - s_1308: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PAN4Ptm" - - metanetx.reaction: "MNXR102344" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1997" - - name: "panthetheine-phosphate adenylyltransferase" - - metabolites: !!omap - - s_0200: 1 - - s_0437: -1 - - s_0636: 1 - - s_0799: -1 - - s_1308: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PTPATim" - - kegg.reaction: "R03035" - - metanetx.reaction: "MNXR95892" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_1998" - - name: "PAP uniport" - - metabolites: !!omap - - s_0390: 1 - - s_0391: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PAPt" - - metanetx.reaction: "MNXR102382" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_1999" - - name: "pectin exchange" - - metabolites: !!omap - - s_1309: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_pectin_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2000" - - name: "phenethyl acetate exchange" - - metabolites: !!omap - - s_1317: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_pheac_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2001" - - name: "phenylacetaldehyde exchange" - - metabolites: !!omap - - s_1319: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_pacald_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2002" - - name: "phenylacetaldehyde transport" - - metabolites: !!omap - - s_1318: -1 - - s_1319: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PACALDt" - - metanetx.reaction: "MNXR102312" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2003" - - name: "phenylacetaldehyde transport" - - metabolites: !!omap - - s_1318: -1 - - s_1320: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PACALDtm" - - metanetx.reaction: "MNXR102312" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2004" - - name: "phenylalanine transport" - - metabolites: !!omap - - s_1032: -1 - - s_1034: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR102637" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2005" - - name: "phosphate exchange" - - metabolites: !!omap - - s_1324: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_pi_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2008" - - name: "phosphate transport" - - metabolites: !!omap - - s_1322: -1 - - s_1329: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR013C" - - annotation: !!omap - - metanetx.reaction: "MNXR102871" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_2020" - - name: "potassium exchange" - - metabolites: !!omap - - s_1374: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_k_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2022" - - name: "protoporphyrinogen IX transport" - - metabolites: !!omap - - s_1384: -1 - - s_1385: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PPPG9tm" - - metanetx.reaction: "MNXR103127" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2023" - - name: "PRPP transport" - - metabolites: !!omap - - s_1386: -1 - - s_1387: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PRPPtm" - - metanetx.reaction: "MNXR103216" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2024" - - name: "putrescine exchange" - - metabolites: !!omap - - s_1390: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ptrc_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2025" - - name: "pyridoxal kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_1392: -1 - - s_1393: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNR027W" - - annotation: !!omap - - bigg.reaction: "PYDXK" - - kegg.reaction: "R00174" - - metanetx.reaction: "MNXR103361" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_2026" - - name: "pyridoxamine kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_1394: -1 - - s_1395: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PYDAMK" - - kegg.reaction: "R02493" - - metanetx.reaction: "MNXR103357" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2027" - - name: "pyridoxamine phosphatase" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_1394: 1 - - s_1395: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "HYPOE" - - kegg.reaction: "R02494" - - metanetx.reaction: "MNXR100763" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2028" - - name: "pyridoxine exchange" - - metabolites: !!omap - - s_1397: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_pydxn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2029" - - name: "pyridoxine kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_1396: -1 - - s_1398: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YEL029C" - - annotation: !!omap - - ec-code: "2.7.1.35" - - bigg.reaction: "PYDXNK" - - kegg.pathway: "sce00750" - - kegg.reaction: "R01909" - - metanetx.reaction: "MNXR103362" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_2030" - - name: "pyrimidine phosphatase" - - metabolites: !!omap - - s_0313: -1 - - s_0314: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PMDPHT" - - kegg.reaction: "R07280" - - metanetx.reaction: "MNXR96145" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2031" - - name: "pyrimidine-nucleoside phosphorylase (uracil)" - - metabolites: !!omap - - s_0415: 1 - - s_1322: -1 - - s_1550: 1 - - s_1556: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PYNP2r" - - kegg.reaction: "R01876" - - metanetx.reaction: "MNXR103377" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2032" - - name: "pyrophosphate transport" - - metabolites: !!omap - - s_0633: -1 - - s_0636: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "PPItm" - - metanetx.reaction: "MNXR103112" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2033" - - name: "pyruvate exchange" - - metabolites: !!omap - - s_1400: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_pyr_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2034" - - name: "pyruvate transport" - - metabolites: !!omap - - s_0794: -1 - - s_0799: 1 - - s_1399: -1 - - s_1401: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "(YGL080W and YGR243W) or (YGL080W and YHR162W)" - - annotation: !!omap - - bigg.reaction: "PYRt2m" - - metanetx.reaction: "MNXR103385" - - pmid: "22628558" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2036" - - name: "quinolinate transport" - - metabolites: !!omap - - s_1403: -1 - - s_1404: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "QULNtm" - - metanetx.reaction: "MNXR103401" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2037" - - name: "reduced thioredoxin transport" - - metabolites: !!omap - - s_1616: -1 - - s_1619: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "TRDRDtp" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2038" - - name: "riboflavin exchange" - - metabolites: !!omap - - s_1406: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ribflv_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2039" - - name: "riboflavin transport" - - metabolites: !!omap - - s_1405: -1 - - s_1407: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "RIBFLVtm" - - metanetx.reaction: "MNXR104033" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2040" - - name: "riboflavin transport" - - metabolites: !!omap - - s_1405: 1 - - s_1406: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR306C" - - annotation: !!omap - - bigg.reaction: "r1106" - - metanetx.reaction: "MNXR104033" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_2041" - - name: "ribose transporter" - - metabolites: !!omap - - s_0575: 1 - - s_0576: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR342C or YHR092C" - - annotation: !!omap - - bigg.reaction: "RIBt" - - metanetx.reaction: "MNXR104036" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_2042" - - name: "S-adenosyl-L-homocysteine transport" - - metabolites: !!omap - - s_1413: -1 - - s_1415: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "AHCYStm" - - metanetx.reaction: "MNXR95626" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2043" - - name: "S-adenosyl-L-methionine exchange" - - metabolites: !!omap - - s_1418: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_amet_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2044" - - name: "S-methyl-L-methionine exchange" - - metabolites: !!omap - - s_1425: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_mmet_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2045" - - name: "serine transport" - - metabolites: !!omap - - s_1039: -1 - - s_1042: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR508C" - - annotation: !!omap - - bigg.reaction: "r1435" - - metanetx.reaction: "MNXR104354" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_2046" - - name: "sn-glycero-3-phosphocholine exchange" - - metabolites: !!omap - - s_1435: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_g3pc_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2049" - - name: "sodium exchange" - - metabolites: !!omap - - s_1438: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_na1_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2050" - - name: "spermidine acetyltransferase" - - metabolites: !!omap - - s_0373: -1 - - s_0529: 1 - - s_0794: 1 - - s_1180: 1 - - s_1439: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "SPMDAT1" - - metanetx.reaction: "MNXR104491" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2051" - - name: "spermidine exchange" - - metabolites: !!omap - - s_1440: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_spmd_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2052" - - name: "spermine exchange" - - metabolites: !!omap - - s_1443: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_sprm_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2053" - - name: "squalene transport" - - metabolites: !!omap - - s_1447: -1 - - s_1448: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "SQLter" - - metanetx.reaction: "MNXR104530" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2054" - - name: "squalene-2,3-epoxide transport" - - metabolites: !!omap - - s_0037: 1 - - s_0038: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "SQ23EPXter" - - metanetx.reaction: "MNXR104505" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2055" - - name: "stearate exchange" - - metabolites: !!omap - - s_1450: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ocdca_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2056" - - name: "succinate exchange" - - metabolites: !!omap - - s_1459: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_succ_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2057" - - name: "succinate transport" - - metabolites: !!omap - - s_1458: 1 - - s_1459: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "SUCCt" - - metanetx.reaction: "MNXR104619" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2058" - - name: "sucrose exchange" - - metabolites: !!omap - - s_1466: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_sucr_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2060" - - name: "sulphate exchange" - - metabolites: !!omap - - s_1468: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_so4_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2061" - - name: "sulphite exchange" - - metabolites: !!omap - - s_1470: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_so3_e" - - metanetx.reaction: "MNXR122251" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2062" - - name: "taurine exchange" - - metabolites: !!omap - - s_1472: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_taur_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2063" - - name: "tetracosanoyl-CoA transport" - - metabolites: !!omap - - s_1479: -1 - - s_1480: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR137463" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2064" - - name: "thiamin phosphatase" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_1489: 1 - - s_1497: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL024C" - - annotation: !!omap - - bigg.reaction: "THMP" - - kegg.reaction: "R02135" - - metanetx.reaction: "MNXR104823" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_2065" - - name: "thiaminase" - - metabolites: !!omap - - s_0270: 1 - - s_0310: 1 - - s_0794: 1 - - s_0803: -1 - - s_1489: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "TMN" - - kegg.reaction: "R02133" - - metanetx.reaction: "MNXR104901" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2066" - - name: "thiamine(1+) diphosphate(1-) exchange" - - metabolites: !!omap - - s_1476: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_thmpp_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2067" - - name: "thiamine(1+) exchange" - - metabolites: !!omap - - s_1490: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_thm_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2068" - - name: "thiamine(1+) monophosphate exchange" - - metabolites: !!omap - - s_1498: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_thmmp_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2069" - - name: "thiamine-phosphate kinase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_1475: 1 - - s_1497: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "TMPK" - - kegg.reaction: "R00617" - - metanetx.reaction: "MNXR104907" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2070" - - name: "thiazole phosphate synthesis (ribose 5-phosphate)" - - metabolites: !!omap - - s_0293: 1 - - s_0362: 1 - - s_0419: 1 - - s_0456: 1 - - s_0734: 1 - - s_0794: -1 - - s_0803: 3 - - s_0981: -1 - - s_1003: -1 - - s_1233: -1 - - s_1399: 1 - - s_1408: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "THZPSN2_SC" - - metanetx.reaction: "MNXR104860" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2071" - - name: "thiazole phosphate synthesis (xylulose 5-phosphate)" - - metabolites: !!omap - - s_0293: 1 - - s_0362: 1 - - s_0419: 1 - - s_0456: 1 - - s_0581: -1 - - s_0734: 1 - - s_0794: -1 - - s_0803: 3 - - s_0981: -1 - - s_1003: -1 - - s_1233: -1 - - s_1399: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "THZPSN1_SC" - - metanetx.reaction: "MNXR104859" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2072" - - name: "threonine transport" - - metabolites: !!omap - - s_1045: -1 - - s_1047: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR508C" - - annotation: !!omap - - bigg.reaction: "thr_mt" - - metanetx.reaction: "MNXR104852" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_2073" - - name: "thymidine exchange" - - metabolites: !!omap - - s_1494: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_thymd_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2074" - - name: "thymidine kinase (ATP:thymidine)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0649: 1 - - s_0794: 1 - - s_1493: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "TMDK1" - - kegg.reaction: "R01567" - - metanetx.reaction: "MNXR104885" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2075" - - name: "thymidine transport" - - metabolites: !!omap - - s_1493: 1 - - s_1494: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "THYMDt1" - - metanetx.reaction: "MNXR104821" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2079" - - name: "trehalose transporter" - - metabolites: !!omap - - s_0794: -1 - - s_0796: 1 - - s_1520: -1 - - s_1521: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR289C" - - annotation: !!omap - - bigg.reaction: "TREt2" - - metanetx.reaction: "MNXR104932" - - pmid: "10957961" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2080" - - name: "trehalose vacuolar transport" - - metabolites: !!omap - - s_1520: -1 - - s_1522: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR104933" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2082" - - name: "tryptophan transport" - - metabolites: !!omap - - s_1048: -1 - - s_1050: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR104949" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2083" - - name: "tryptophol exchange" - - metabolites: !!omap - - s_1530: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ind3eth_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2084" - - name: "tryptophol transport" - - metabolites: !!omap - - s_1529: -1 - - s_1530: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "IND3ETHt" - - metanetx.reaction: "MNXR100834" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2085" - - name: "tryptophol transport" - - metabolites: !!omap - - s_1529: -1 - - s_1531: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "IND3ETHtm" - - metanetx.reaction: "MNXR100834" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2086" - - name: "tyrosine transport" - - metabolites: !!omap - - s_1051: -1 - - s_1053: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "r1078" - - metanetx.reaction: "MNXR105002" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2087" - - name: "tyrosine transport" - - metabolites: !!omap - - s_1051: -1 - - s_1054: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR105002" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2089" - - name: "UMP transport" - - metabolites: !!omap - - s_1545: -1 - - s_1548: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "UMPtn" - - metanetx.reaction: "MNXR105127" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2090" - - name: "uracil exchange" - - metabolites: !!omap - - s_1551: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ura_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2091" - - name: "urea exchange" - - metabolites: !!omap - - s_1553: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_urea_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2092" - - name: "uridine exchange" - - metabolites: !!omap - - s_1557: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_uri_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2093" - - name: "valine transport" - - metabolites: !!omap - - s_1056: -1 - - s_1058: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "VALt5m" - - metanetx.reaction: "MNXR105190" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2094" - - name: "water diffusion" - - metabolites: !!omap - - s_0803: -1 - - s_0804: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLL052C or YPR192W" - - annotation: !!omap - - bigg.reaction: "H2Oter" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_2095" - - name: "water diffusion" - - metabolites: !!omap - - s_0803: -1 - - s_0806: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "H2Otg" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2096" - - name: "water diffusion" - - metabolites: !!omap - - s_0803: -1 - - s_0807: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "H2Otm" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2097" - - name: "water diffusion" - - metabolites: !!omap - - s_0803: -1 - - s_0808: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "H2Otn" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2098" - - name: "water diffusion" - - metabolites: !!omap - - s_0803: -1 - - s_0809: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "H2Otp" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2099" - - name: "water diffusion" - - metabolites: !!omap - - s_0803: -1 - - s_0810: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "H2Otv" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2100" - - name: "water exchange" - - metabolites: !!omap - - s_0805: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_h2o_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2101" - - name: "xanthine transport" - - metabolites: !!omap - - s_0357: 1 - - s_0358: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "XANt" - - metanetx.reaction: "MNXR105226" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2102" - - name: "xanthosine exchange" - - metabolites: !!omap - - s_1564: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_xtsn_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2103" - - name: "xanthosine transport" - - metabolites: !!omap - - s_1563: 1 - - s_1564: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "XTSNtr" - - metanetx.reaction: "MNXR105247" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2104" - - name: "xylitol exchange" - - metabolites: !!omap - - s_1567: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_xylt_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2105" - - name: "xylitol transport" - - metabolites: !!omap - - s_1566: 1 - - s_1567: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL245C or YLL043W" - - annotation: !!omap - - bigg.reaction: "XYLTt" - - metanetx.reaction: "MNXR105264" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_2106" - - name: "zymosterol exchange" - - metabolites: !!omap - - s_1571: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_zymst_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2107" - - name: "zymosterol transport" - - metabolites: !!omap - - s_1568: -1 - - s_1569: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL013C or YOR011W" - - annotation: !!omap - - metanetx.reaction: "MNXR105285" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_2108" - - name: "lipid pseudoreaction - merge" - - metabolites: !!omap - - s_1096: 1 - - s_3746: -1 - - s_3747: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - pmid: "18687109" - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_2111" - - name: "growth" - - metabolites: !!omap - - s_0450: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR137261" - - sbo: "SBO:0000632" - - confidence_score: 0 - - !!omap - - id: "r_2112" - - name: "kynurenine aminotransferase" - - metabolites: !!omap - - s_0803: 1 - - s_0955: 1 - - s_1020: -1 - - s_1399: -1 - - s_2763: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL060W" - - annotation: !!omap - - ec-code: "2.6.1.7" - - kegg.pathway: "sce00380" - - kegg.reaction: "R01959" - - metanetx.reaction: "MNXR132503" - - pmid: "18205391" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2113" - - name: "spontaneous kynurenic acid to quinaldic acid" - - metabolites: !!omap - - s_0794: -2 - - s_0803: 1 - - s_1207: 1 - - s_1212: -1 - - s_2763: -1 - - s_2764: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - kegg.reaction: "R03687" - - metanetx.reaction: "MNXR108341" - - pmid: "18205391" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2114" - - name: "spontaneous 2-amino-3-carboxymuconate-6-semialdehyde to quinolinate" - - metabolites: !!omap - - s_0147: -1 - - s_0794: 1 - - s_0803: 1 - - s_1403: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - kegg.reaction: "R04293" - - metanetx.reaction: "MNXR103396" - - pmid: "18205391" - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2115" - - name: "alcohol dehydrogenase, (acetaldehyde to ethanol)" - - metabolites: !!omap - - s_0359: -1 - - s_0680: 1 - - s_0794: -1 - - s_1198: 1 - - s_1203: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR145W or YOL086C" - - annotation: !!omap - - ec-code: "1.1.1.1" - - bigg.reaction: "ALCD2ir" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00754" - - metanetx.reaction: "MNXR95725" - - pmid: "12499363" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2116" - - name: "acetaldehyde dehydrogenase" - - metabolites: !!omap - - s_0359: -1 - - s_0362: 1 - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C or YMR170C or YER073W or YOR374W" - - annotation: !!omap - - ec-code: "1.2.1.3" - - kegg.pathway: - - "sce00010" - - "sce00340" - - "sce00350" - - "sce00360" - - "sce00410" - - "sce01110" - - kegg.reaction: "R00710" - - metanetx.reaction: "MNXR95749" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_2117" - - name: "phenylalanine transaminase" - - metabolites: !!omap - - s_0951: 1 - - s_0955: 1 - - s_1032: -1 - - s_1399: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR137W" - - annotation: !!omap - - ec-code: - - "2.6.1.58" - - "2.6.1.7" - - kegg.pathway: - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00692" - - metanetx.reaction: "MNXR125716" - - pmid: - - "9491082" - - "9491083" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2118" - - name: "tryptophan transaminase" - - metabolites: !!omap - - s_0855: 1 - - s_0951: -1 - - s_1032: 1 - - s_1048: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR137W" - - annotation: !!omap - - ec-code: - - "2.6.1.57" - - "2.6.1.7" - - bigg.reaction: "araphe3" - - kegg.pathway: - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00684" - - metanetx.reaction: "MNXR104947" - - pmid: - - "9491082" - - "9491083" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2119" - - name: "tyrosine transaminase" - - metabolites: !!omap - - s_0204: -1 - - s_0955: -1 - - s_1051: 1 - - s_1399: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR137W" - - annotation: !!omap - - ec-code: - - "2.6.1.57" - - "2.6.1.7" - - kegg.pathway: - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00734" - - metanetx.reaction: "MNXR105000" - - pmid: - - "9491082" - - "9491083" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2125" - - name: "coenzyme A: cytoplasm to LP" - - metabolites: !!omap - - s_0529: -1 - - s_0531: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - kegg.reaction: "R00197" - - metanetx.reaction: "MNXR138960" - - pmid: "22672422" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2126" - - name: "sedoheptulose bisphosphatase" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_1426: -1 - - s_1427: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR043C" - - annotation: !!omap - - ec-code: "3.1.3.37" - - kegg.pathway: - - "sce00010" - - "sce00260" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R01845" - - metanetx.reaction: "MNXR104279" - - pmid: - - "21663798" - - "22672422" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2129" - - name: "proton leak" - - metabolites: !!omap - - s_0794: -1 - - s_0799: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "Htm" - - metanetx.reaction: "MNXR100765" - - pmid: "22672422" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2131" - - name: "isocitrate dehydrogenase" - - metabolites: !!omap - - s_0182: 1 - - s_0460: 1 - - s_0941: -1 - - s_1210: -1 - - s_1214: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL066W" - - annotation: !!omap - - ec-code: "1.1.1.42" - - bigg.reaction: "ICDHym" - - kegg.pathway: - - "sce00020" - - "sce00480" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - "sce04146" - - kegg.reaction: "R00267" - - metanetx.reaction: "MNXR100781" - - pmid: - - "1989987" - - "8099357" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2132" - - name: "oxoglutarate/malate exchange" - - metabolites: !!omap - - s_0066: -1 - - s_0068: 1 - - s_0180: 1 - - s_0182: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR222W or YPL134C" - - annotation: !!omap - - bigg.reaction: "AKGMALtm" - - metanetx.reaction: "MNXR95659" - - pmid: "16844075" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2134" - - name: "14-demethyllanosterol exchange" - - metabolites: !!omap - - s_2766: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000627" - - !!omap - - id: "r_2136" - - name: "14-demethyllanosterol transport" - - metabolites: !!omap - - s_0122: 1 - - s_2766: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR137169" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2137" - - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol exchange" - - metabolites: !!omap - - s_2768: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000627" - - !!omap - - id: "r_2139" - - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol transport" - - metabolites: !!omap - - s_0662: 1 - - s_2768: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - metanetx.reaction: "MNXR97951" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2140" - - name: "fatty-acyl-CoA synthase (n-C16:0CoA)" - - metabolites: !!omap - - s_0373: -1 - - s_0456: 7 - - s_0529: 7 - - s_0794: -21 - - s_0803: 7 - - s_1101: -7 - - s_1207: 14 - - s_1212: -14 - - s_1302: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL182W and YPL231W" - - annotation: !!omap + - "1989987" + - "8099357" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2140" + - name: "fatty-acyl-CoA synthase (n-C16:0CoA)" + - metabolites: !!omap + - s_0373: -1 + - s_0456: 7 + - s_0529: 7 + - s_0794: -21 + - s_0803: 7 + - s_1101: -7 + - s_1207: 14 + - s_1212: -14 + - s_1302: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL182W and YPL231W" + - eccodes: "2.3.1.86" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.86" - kegg.pathway: - - "sce00061" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2141" - - name: "fatty-acyl-CoA synthase (n-C18:0CoA)" - - metabolites: !!omap - - s_0373: -1 - - s_0456: 8 - - s_0529: 8 - - s_0794: -24 - - s_0803: 8 - - s_1101: -8 - - s_1207: 16 - - s_1212: -16 - - s_1454: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL182W and YPL231W" - - annotation: !!omap + - "sce00061" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2141" + - name: "fatty-acyl-CoA synthase (n-C18:0CoA)" + - metabolites: !!omap + - s_0373: -1 + - s_0456: 8 + - s_0529: 8 + - s_0794: -24 + - s_0803: 8 + - s_1101: -8 + - s_1207: 16 + - s_1212: -16 + - s_1454: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL182W and YPL231W" + - eccodes: "2.3.1.86" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.86" - kegg.pathway: - - "sce00061" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2142" - - name: "B-ketoacyl-ACP synthase (acetoacetyl-ACP)" - - metabolites: !!omap - - s_0372: -1 - - s_0460: 1 - - s_0465: -1 - - s_0799: -1 - - s_1845: 1 - - s_2770: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER061C and YKL192C" - - annotation: !!omap + - "sce00061" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2142" + - name: "B-ketoacyl-ACP synthase (acetoacetyl-ACP)" + - metabolites: !!omap + - s_0372: -1 + - s_0460: 1 + - s_0465: -1 + - s_0799: -1 + - s_1845: 1 + - s_2770: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER061C and YKL192C" + - eccodes: "2.3.1.41" + - references: "8412701" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.41" - bigg.reaction: "3OAS40_m" - kegg.pathway: - - "sce00061" - - "sce00190" - - "sce00780" - - "sce01212" + - "sce00061" + - "sce00190" + - "sce00780" + - "sce01212" - pmid: "8412701" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2143" - - name: "B-ketoacyl-ACP synthase (3-oxo-hexanoyl-ACP)" - - metabolites: !!omap - - s_0460: 1 - - s_0465: -1 - - s_0799: -1 - - s_1845: 1 - - s_2771: -1 - - s_2772: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER061C and YKL192C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2143" + - name: "B-ketoacyl-ACP synthase (3-oxo-hexanoyl-ACP)" + - metabolites: !!omap + - s_0460: 1 + - s_0465: -1 + - s_0799: -1 + - s_1845: 1 + - s_2771: -1 + - s_2772: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER061C and YKL192C" + - eccodes: "2.3.1.41" + - references: "8412701" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.41" - kegg.pathway: - - "sce00061" - - "sce00190" - - "sce00780" - - "sce01212" + - "sce00061" + - "sce00190" + - "sce00780" + - "sce01212" - pmid: "8412701" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2144" - - name: "B-ketoacyl-ACP synthase (3-oxo-octanoyl-ACP)" - - metabolites: !!omap - - s_0460: 1 - - s_0465: -1 - - s_0799: -1 - - s_1845: 1 - - s_2773: -1 - - s_2774: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER061C and YKL192C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2144" + - name: "B-ketoacyl-ACP synthase (3-oxo-octanoyl-ACP)" + - metabolites: !!omap + - s_0460: 1 + - s_0465: -1 + - s_0799: -1 + - s_1845: 1 + - s_2773: -1 + - s_2774: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER061C and YKL192C" + - eccodes: "2.3.1.41" + - references: "8412701" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.41" - kegg.pathway: - - "sce00061" - - "sce00190" - - "sce00780" - - "sce01212" + - "sce00061" + - "sce00190" + - "sce00780" + - "sce01212" - pmid: "8412701" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2145" - - name: "3-oxoacyl-ACP reductase (3-hydroxybutanoyl-ACP)" - - metabolites: !!omap - - s_0799: -1 - - s_1210: 1 - - s_1214: -1 - - s_2770: -1 - - s_2775: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL055C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2145" + - name: "3-oxoacyl-ACP reductase (3-hydroxybutanoyl-ACP)" + - metabolites: !!omap + - s_0799: -1 + - s_1210: 1 + - s_1214: -1 + - s_2770: -1 + - s_2775: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL055C" + - eccodes: "1.1.1.100" + - references: "9388293" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.100" - bigg.reaction: "3OAR40_m" - kegg.pathway: - - "sce00061" - - "sce00780" - - "sce01040" - - "sce01130" - - "sce01212" + - "sce00061" + - "sce00780" + - "sce01040" + - "sce01130" + - "sce01212" - pmid: "9388293" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2146" - - name: "3-oxoacyl-ACP reductase (3-hydroxyhexanoyl-ACP)" - - metabolites: !!omap - - s_0799: -1 - - s_1210: 1 - - s_1214: -1 - - s_2772: -1 - - s_2776: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL055C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2146" + - name: "3-oxoacyl-ACP reductase (3-hydroxyhexanoyl-ACP)" + - metabolites: !!omap + - s_0799: -1 + - s_1210: 1 + - s_1214: -1 + - s_2772: -1 + - s_2776: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL055C" + - eccodes: "1.1.1.100" + - references: "9388293" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.100" - bigg.reaction: "3OAR60_m" - kegg.pathway: - - "sce00061" - - "sce00780" - - "sce01040" - - "sce01130" - - "sce01212" + - "sce00061" + - "sce00780" + - "sce01040" + - "sce01130" + - "sce01212" - pmid: "9388293" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2147" - - name: "3-oxoacyl-ACP reductase (3-hydroxyoctanoyl-ACP)" - - metabolites: !!omap - - s_0799: -1 - - s_1210: 1 - - s_1214: -1 - - s_2774: -1 - - s_2777: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL055C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2147" + - name: "3-oxoacyl-ACP reductase (3-hydroxyoctanoyl-ACP)" + - metabolites: !!omap + - s_0799: -1 + - s_1210: 1 + - s_1214: -1 + - s_2774: -1 + - s_2777: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL055C" + - eccodes: "1.1.1.100" + - references: "9388293" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.100" - kegg.pathway: - - "sce00061" - - "sce00780" - - "sce01040" - - "sce01130" - - "sce01212" + - "sce00061" + - "sce00780" + - "sce01040" + - "sce01130" + - "sce01212" - metanetx.reaction: "MNXR137225" - pmid: "9388293" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2148" - - name: "3-hydroxyacyl-thioester dehydratase (trans-but-2-enoyl-ACP)" - - metabolites: !!omap - - s_0807: 1 - - s_2775: -1 - - s_2778: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR067W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2148" + - name: "3-hydroxyacyl-thioester dehydratase (trans-but-2-enoyl-ACP)" + - metabolites: !!omap + - s_0807: 1 + - s_2775: -1 + - s_2778: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR067W" + - eccodes: "4.2.1.-" + - references: "15387819" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.-" - pmid: "15387819" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2149" - - name: "3-hydroxyacyl-thioester dehydratase (trans-hex-2-enoyl-ACP)" - - metabolites: !!omap - - s_0807: 1 - - s_2776: -1 - - s_2779: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR067W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2149" + - name: "3-hydroxyacyl-thioester dehydratase (trans-hex-2-enoyl-ACP)" + - metabolites: !!omap + - s_0807: 1 + - s_2776: -1 + - s_2779: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR067W" + - eccodes: "4.2.1.-" + - references: "15387819" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.-" - bigg.reaction: "3HAD61_m" - pmid: "15387819" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2150" - - name: "3-hydroxyacyl-thioester dehydratase (trans-oct-2-enoyl-ACP)" - - metabolites: !!omap - - s_0807: 1 - - s_2777: -1 - - s_2780: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR067W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2150" + - name: "3-hydroxyacyl-thioester dehydratase (trans-oct-2-enoyl-ACP)" + - metabolites: !!omap + - s_0807: 1 + - s_2777: -1 + - s_2780: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR067W" + - eccodes: "4.2.1.-" + - references: "15387819" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.-" - metanetx.reaction: "MNXR137214" - pmid: "15387819" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2151" - - name: "enoyl-ACP reductase (butanoyl-ACP)" - - metabolites: !!omap - - s_0799: -1 - - s_1210: 1 - - s_1214: -1 - - s_2771: 1 - - s_2778: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR026C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2151" + - name: "enoyl-ACP reductase (butanoyl-ACP)" + - metabolites: !!omap + - s_0799: -1 + - s_1210: 1 + - s_1214: -1 + - s_2771: 1 + - s_2778: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR026C" + - eccodes: "1.3.1.104" + - references: "11509667" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.104" - kegg.pathway: - - "sce00062" - - "sce01212" + - "sce00062" + - "sce01212" - pmid: "11509667" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2152" - - name: "enoyl-ACP reductase (hexanoyl-ACP)" - - metabolites: !!omap - - s_0799: -1 - - s_1210: 1 - - s_1214: -1 - - s_2773: 1 - - s_2779: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR026C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2152" + - name: "enoyl-ACP reductase (hexanoyl-ACP)" + - metabolites: !!omap + - s_0799: -1 + - s_1210: 1 + - s_1214: -1 + - s_2773: 1 + - s_2779: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR026C" + - eccodes: "1.3.1.104" + - references: "11509667" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.104" - kegg.pathway: - - "sce00062" - - "sce01212" + - "sce00062" + - "sce01212" - pmid: "11509667" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2153" - - name: "enoyl-ACP reductase (octanoyl-ACP)" - - metabolites: !!omap - - s_0799: -1 - - s_1210: 1 - - s_1214: -1 - - s_1254: 1 - - s_2780: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR026C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2153" + - name: "enoyl-ACP reductase (octanoyl-ACP)" + - metabolites: !!omap + - s_0799: -1 + - s_1210: 1 + - s_1214: -1 + - s_1254: 1 + - s_2780: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR026C" + - eccodes: "1.3.1.104" + - references: "11509667" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.104" - kegg.pathway: - - "sce00062" - - "sce01212" + - "sce00062" + - "sce01212" - pmid: "11509667" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2154" - - name: "elongase I (3-oxotetradecanoyl-CoA)" - - metabolites: !!omap - - s_2781: -1 - - s_2782: -1 - - s_2783: -1 - - s_2784: 1 - - s_2785: 1 - - s_2786: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL196C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2154" + - name: "elongase I (3-oxotetradecanoyl-CoA)" + - metabolites: !!omap + - s_2781: -1 + - s_2782: -1 + - s_2783: -1 + - s_2784: 1 + - s_2785: 1 + - s_2786: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL196C" + - eccodes: "2.3.1.199" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.199" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR122920" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2155" - - name: "elongase I (3-oxopalmitoyl-CoA)" - - metabolites: !!omap - - s_2782: -1 - - s_2783: -1 - - s_2784: 1 - - s_2785: 1 - - s_2787: -1 - - s_2788: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL196C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2155" + - name: "elongase I (3-oxopalmitoyl-CoA)" + - metabolites: !!omap + - s_2782: -1 + - s_2783: -1 + - s_2784: 1 + - s_2785: 1 + - s_2787: -1 + - s_2788: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL196C" + - eccodes: "2.3.1.199" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.199" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR122921" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2156" - - name: "elongase II (3-oxooctadecanoyl-CoA)" - - metabolites: !!omap - - s_2782: -1 - - s_2783: -1 - - s_2784: 1 - - s_2785: 1 - - s_2789: -1 - - s_2790: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR034W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2156" + - name: "elongase II (3-oxooctadecanoyl-CoA)" + - metabolites: !!omap + - s_2782: -1 + - s_2783: -1 + - s_2784: 1 + - s_2785: 1 + - s_2789: -1 + - s_2790: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR034W" + - eccodes: "2.3.1.199" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.199" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - kegg.reaction: "R07758" - metanetx.reaction: "MNXR94939" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2157" - - name: "elongase II or III (3-oxoicosanoyl-CoA)" - - metabolites: !!omap - - s_2782: -1 - - s_2783: -1 - - s_2784: 1 - - s_2785: 1 - - s_2791: -1 - - s_2792: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR034W or YLR372W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2157" + - name: "elongase II or III (3-oxoicosanoyl-CoA)" + - metabolites: !!omap + - s_2782: -1 + - s_2783: -1 + - s_2784: 1 + - s_2785: 1 + - s_2791: -1 + - s_2792: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR034W or YLR372W" + - eccodes: "2.3.1.199" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.199" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR103450" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2158" - - name: "elongase II or III (3-oxodocosanoyl-CoA)" - - metabolites: !!omap - - s_2782: -1 - - s_2783: -1 - - s_2784: 1 - - s_2785: 1 - - s_2793: -1 - - s_2794: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR034W or YLR372W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2158" + - name: "elongase II or III (3-oxodocosanoyl-CoA)" + - metabolites: !!omap + - s_2782: -1 + - s_2783: -1 + - s_2784: 1 + - s_2785: 1 + - s_2793: -1 + - s_2794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR034W or YLR372W" + - eccodes: "2.3.1.199" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.199" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2159" - - name: "elongase II or III (3-oxotetracosanoyl-CoA)" - - metabolites: !!omap - - s_2782: -1 - - s_2783: -1 - - s_2784: 1 - - s_2785: 1 - - s_2795: -1 - - s_2796: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR034W or YLR372W" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2159" + - name: "elongase II or III (3-oxotetracosanoyl-CoA)" + - metabolites: !!omap + - s_2782: -1 + - s_2783: -1 + - s_2784: 1 + - s_2785: 1 + - s_2795: -1 + - s_2796: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR034W or YLR372W" + - eccodes: "2.3.1.199" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.199" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2160" - - name: "elongase III (3-oxohexacosanoyl-CoA)" - - metabolites: !!omap - - s_2782: -1 - - s_2783: -1 - - s_2784: 1 - - s_2785: 1 - - s_2797: -1 - - s_2798: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR372W" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2160" + - name: "elongase III (3-oxohexacosanoyl-CoA)" + - metabolites: !!omap + - s_2782: -1 + - s_2783: -1 + - s_2784: 1 + - s_2785: 1 + - s_2797: -1 + - s_2798: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR372W" + - eccodes: "2.3.1.199" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.199" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR118002" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2161" - - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxytetradecanoyl-CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2786: -1 - - s_2799: -1 - - s_2800: 1 - - s_2801: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR159W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2161" + - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxytetradecanoyl-CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2786: -1 + - s_2799: -1 + - s_2800: 1 + - s_2801: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR159W" + - eccodes: "1.1.1.330" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.330" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2162" - - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxypalmitoyl-CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2788: -1 - - s_2799: -1 - - s_2800: 1 - - s_2802: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR159W" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2162" + - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxypalmitoyl-CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2788: -1 + - s_2799: -1 + - s_2800: 1 + - s_2802: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR159W" + - eccodes: "1.1.1.330" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.330" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2163" - - name: "B-ketoacyl-CoA reductase (3-hydroxyoctadecanoyl-CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2790: -1 - - s_2799: -1 - - s_2800: 1 - - s_2803: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR159W" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2163" + - name: "B-ketoacyl-CoA reductase (3-hydroxyoctadecanoyl-CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2790: -1 + - s_2799: -1 + - s_2800: 1 + - s_2803: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR159W" + - eccodes: "1.1.1.330" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.330" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - kegg.reaction: "R07759" - metanetx.reaction: "MNXR103465" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2164" - - name: "B-ketoacyl-CoA reductase (3-hydroxyicosanoyl-CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2792: -1 - - s_2799: -1 - - s_2800: 1 - - s_2804: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR159W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2164" + - name: "B-ketoacyl-CoA reductase (3-hydroxyicosanoyl-CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2792: -1 + - s_2799: -1 + - s_2800: 1 + - s_2804: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR159W" + - eccodes: "1.1.1.330" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.330" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR103451" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2165" - - name: "B-ketoacyl-CoA reductase (3-hydroxydocosanoyl-CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2794: -1 - - s_2799: -1 - - s_2800: 1 - - s_2805: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR159W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2165" + - name: "B-ketoacyl-CoA reductase (3-hydroxydocosanoyl-CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2794: -1 + - s_2799: -1 + - s_2800: 1 + - s_2805: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR159W" + - eccodes: "1.1.1.330" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.330" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR103455" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2166" - - name: "B-ketoacyl-CoA reductase (3-hydroxytetracosanoyl-CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2796: -1 - - s_2799: -1 - - s_2800: 1 - - s_2806: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR159W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2166" + - name: "B-ketoacyl-CoA reductase (3-hydroxytetracosanoyl-CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2796: -1 + - s_2799: -1 + - s_2800: 1 + - s_2806: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR159W" + - eccodes: "1.1.1.330" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.330" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR118005" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2167" - - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxyhexacosanoyl-CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2798: -1 - - s_2799: -1 - - s_2800: 1 - - s_2807: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR159W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2167" + - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxyhexacosanoyl-CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2798: -1 + - s_2799: -1 + - s_2800: 1 + - s_2807: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR159W" + - eccodes: "1.1.1.330" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.330" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2168" - - name: "B-hydroxyacyl-CoA dehydratase (trans-tetradec-2-enoyl-CoA)" - - metabolites: !!omap - - s_2801: -1 - - s_2808: 1 - - s_2809: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL097W" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2168" + - name: "B-hydroxyacyl-CoA dehydratase (trans-tetradec-2-enoyl-CoA)" + - metabolites: !!omap + - s_2801: -1 + - s_2808: 1 + - s_2809: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL097W" + - eccodes: "4.2.1.134" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.134" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - kegg.reaction: "R04740" - metanetx.reaction: "MNXR97891" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2169" - - name: "B-hydroxyacyl-CoA dehydratase (trans-hexadec-2-enoyl-CoA)" - - metabolites: !!omap - - s_2802: -1 - - s_2808: 1 - - s_2810: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL097W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2169" + - name: "B-hydroxyacyl-CoA dehydratase (trans-hexadec-2-enoyl-CoA)" + - metabolites: !!omap + - s_2802: -1 + - s_2808: 1 + - s_2810: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL097W" + - eccodes: "4.2.1.134" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.134" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2170" - - name: "B-hydroxyacyl-CoA dehydratase (trans-octadec-2-enoyl-CoA)" - - metabolites: !!omap - - s_2803: -1 - - s_2808: 1 - - s_2811: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL097W" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2170" + - name: "B-hydroxyacyl-CoA dehydratase (trans-octadec-2-enoyl-CoA)" + - metabolites: !!omap + - s_2803: -1 + - s_2808: 1 + - s_2811: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL097W" + - eccodes: "4.2.1.134" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.134" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - kegg.reaction: "R07760" - metanetx.reaction: "MNXR103466" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2171" - - name: "B-hydroxyacyl-CoA dehydratase (trans-icos-2-enoyl-CoA)" - - metabolites: !!omap - - s_2804: -1 - - s_2808: 1 - - s_2812: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL097W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2171" + - name: "B-hydroxyacyl-CoA dehydratase (trans-icos-2-enoyl-CoA)" + - metabolites: !!omap + - s_2804: -1 + - s_2808: 1 + - s_2812: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL097W" + - eccodes: "4.2.1.134" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.134" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2172" - - name: "B-hydroxyacyl-CoA dehydratase (trans-docos-2-enoyl-CoA)" - - metabolites: !!omap - - s_2805: -1 - - s_2808: 1 - - s_2813: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL097W" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2172" + - name: "B-hydroxyacyl-CoA dehydratase (trans-docos-2-enoyl-CoA)" + - metabolites: !!omap + - s_2805: -1 + - s_2808: 1 + - s_2813: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL097W" + - eccodes: "4.2.1.134" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.134" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2173" - - name: "B-hydroxyacyl-CoA dehydratase (trans-tetracos-2-enoyl-CoA)" - - metabolites: !!omap - - s_2806: -1 - - s_2808: 1 - - s_2814: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL097W" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2173" + - name: "B-hydroxyacyl-CoA dehydratase (trans-tetracos-2-enoyl-CoA)" + - metabolites: !!omap + - s_2806: -1 + - s_2808: 1 + - s_2814: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL097W" + - eccodes: "4.2.1.134" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.134" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - metanetx.reaction: "MNXR118009" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2174" - - name: "B-hydroxyacyl-CoA dehydratase (trans-hexacos-2-enoyl-CoA)" - - metabolites: !!omap - - s_2807: -1 - - s_2808: 1 - - s_2815: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL097W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2174" + - name: "B-hydroxyacyl-CoA dehydratase (trans-hexacos-2-enoyl-CoA)" + - metabolites: !!omap + - s_2807: -1 + - s_2808: 1 + - s_2815: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL097W" + - eccodes: "4.2.1.134" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.134" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2175" - - name: "trans-2-enoyl-CoA reductase (n-C14:0CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2787: 1 - - s_2799: -1 - - s_2800: 1 - - s_2809: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL015C" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2175" + - name: "trans-2-enoyl-CoA reductase (n-C14:0CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2787: 1 + - s_2799: -1 + - s_2800: 1 + - s_2809: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL015C" + - eccodes: "1.3.1.93" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.93" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - kegg.reaction: "R03989" - metanetx.reaction: "MNXR95374" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2176" - - name: "trans-2-enoyl-CoA reductase (n-C16:0CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2789: 1 - - s_2799: -1 - - s_2800: 1 - - s_2810: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL015C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2176" + - name: "trans-2-enoyl-CoA reductase (n-C16:0CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2789: 1 + - s_2799: -1 + - s_2800: 1 + - s_2810: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL015C" + - eccodes: "1.3.1.93" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.93" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2177" - - name: "trans-2-enoyl-CoA reductase (n-C18:0CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2791: 1 - - s_2799: -1 - - s_2800: 1 - - s_2811: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL015C" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2177" + - name: "trans-2-enoyl-CoA reductase (n-C18:0CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2791: 1 + - s_2799: -1 + - s_2800: 1 + - s_2811: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL015C" + - eccodes: "1.3.1.93" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.93" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" - kegg.reaction: "R07761" - metanetx.reaction: "MNXR97895" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2178" - - name: "trans-2-enoyl-CoA reductase (n-C20:0CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2793: 1 - - s_2799: -1 - - s_2800: 1 - - s_2812: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL015C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2178" + - name: "trans-2-enoyl-CoA reductase (n-C20:0CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2793: 1 + - s_2799: -1 + - s_2800: 1 + - s_2812: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL015C" + - eccodes: "1.3.1.93" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.93" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2179" - - name: "trans-2-enoyl-CoA reductase (n-C22:0CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2795: 1 - - s_2799: -1 - - s_2800: 1 - - s_2813: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL015C" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2179" + - name: "trans-2-enoyl-CoA reductase (n-C22:0CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2795: 1 + - s_2799: -1 + - s_2800: 1 + - s_2813: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL015C" + - eccodes: "1.3.1.93" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.93" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2180" - - name: "trans-2-enoyl-CoA reductase (n-C24:0CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2797: 1 - - s_2799: -1 - - s_2800: 1 - - s_2814: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL015C" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2180" + - name: "trans-2-enoyl-CoA reductase (n-C24:0CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2797: 1 + - s_2799: -1 + - s_2800: 1 + - s_2814: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL015C" + - eccodes: "1.3.1.93" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.93" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2181" - - name: "trans-2-enoyl-CoA reductase (n-C26:0CoA)" - - metabolites: !!omap - - s_2783: -1 - - s_2799: -1 - - s_2800: 1 - - s_2815: -1 - - s_2816: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL015C" - - annotation: !!omap + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2181" + - name: "trans-2-enoyl-CoA reductase (n-C26:0CoA)" + - metabolites: !!omap + - s_2783: -1 + - s_2799: -1 + - s_2800: 1 + - s_2815: -1 + - s_2816: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL015C" + - eccodes: "1.3.1.93" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.93" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - metanetx.reaction: "MNXR118013" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2182" - - name: "palmitoyl-CoA desaturase (n-C16:0CoA -> n-C16:1CoA), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2789: -1 - - s_2808: 2 - - s_2817: -1 - - s_2818: -1 - - s_2819: 1 - - s_2820: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL055W" - - annotation: !!omap - - ec-code: "1.14.19.1" - - kegg.pathway: - - "sce01040" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2183" - - name: "stearoyl-CoA desaturase (n-C18:0CoA -> n-C18:1CoA), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2791: -1 - - s_2808: 2 - - s_2817: -1 - - s_2818: -1 - - s_2820: 1 - - s_2821: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL055W" - - annotation: !!omap - - ec-code: "1.14.19.1" - - kegg.pathway: - - "sce01040" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2184" - - name: "octanoate (n-C8:0) transport" - - metabolites: !!omap - - s_1248: 1 - - s_1250: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "OCTAt" - - metanetx.reaction: "MNXR99126" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2185" - - name: "decanoate (n-C10:0) transport" - - metabolites: !!omap - - s_0595: 1 - - s_0597: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "DCATDc" - - metanetx.reaction: "MNXR135772" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2186" - - name: "laurate (n-C12:0) transport" - - metabolites: !!omap - - s_1065: 1 - - s_1067: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "r2444" - - metanetx.reaction: "MNXR135773" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2187" - - name: "butyrate exchange" - - metabolites: !!omap - - s_2822: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_but_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2188" - - name: "hexanoate exchange" - - metabolites: !!omap - - s_2824: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_hxa_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2189" - - name: "oleate exchange" - - metabolites: !!omap - - s_2826: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ocdcea_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2190" - - name: "butyrate (n-C4:0) transport" - - metabolites: !!omap - - s_2822: -1 - - s_2828: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL065W" - - annotation: !!omap - - bigg.reaction: "BUTt" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_2191" - - name: "hexanoate (n-C6:0) transport" - - metabolites: !!omap - - s_2824: -1 - - s_2829: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL065W" - - annotation: !!omap - - bigg.reaction: "HXAt3" - - metanetx.reaction: "MNXR100750" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_2192" - - name: "octadecenoate (n-C18:1) transport" - - metabolites: !!omap - - s_1260: 1 - - s_2826: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "OCDCEAt" - - metanetx.reaction: "MNXR99110" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2193" - - name: "myristate exchange" - - metabolites: !!omap - - s_1163: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "EX_ttdca_e" - - sbo: "SBO:0000627" - - !!omap - - id: "r_2194" - - name: "fatty-acid--CoA ligase (dodecanoate), ER membrane" - - metabolites: !!omap - - s_2781: 1 - - s_2785: -1 - - s_2831: -1 - - s_2832: -1 - - s_2833: 1 - - s_2834: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR317W" - - annotation: !!omap + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - metanetx.reaction: "MNXR118013" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2182" + - name: "palmitoyl-CoA desaturase (n-C16:0CoA -> n-C16:1CoA), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2789: -1 + - s_2808: 2 + - s_2817: -1 + - s_2818: -1 + - s_2819: 1 + - s_2820: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL055W" + - eccodes: "1.14.19.1" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.14.19.1" + - kegg.pathway: + - "sce01040" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2183" + - name: "stearoyl-CoA desaturase (n-C18:0CoA -> n-C18:1CoA), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2791: -1 + - s_2808: 2 + - s_2817: -1 + - s_2818: -1 + - s_2820: 1 + - s_2821: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL055W" + - eccodes: "1.14.19.1" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.14.19.1" + - kegg.pathway: + - "sce01040" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2194" + - name: "fatty-acid--CoA ligase (dodecanoate), ER membrane" + - metabolites: !!omap + - s_2781: 1 + - s_2785: -1 + - s_2831: -1 + - s_2832: -1 + - s_2833: 1 + - s_2834: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR317W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR120051" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2195" - - name: "fatty-acid--CoA ligase (tetradecanoate), ER membrane" - - metabolites: !!omap - - s_2785: -1 - - s_2787: 1 - - s_2831: -1 - - s_2833: 1 - - s_2834: 1 - - s_2835: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR246W or YOR317W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2195" + - name: "fatty-acid--CoA ligase (tetradecanoate), ER membrane" + - metabolites: !!omap + - s_2785: -1 + - s_2787: 1 + - s_2831: -1 + - s_2833: 1 + - s_2834: 1 + - s_2835: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR246W or YOR317W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126663" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2196" - - name: "fatty-acid--CoA ligase (hexadecanoate), ER membrane" - - metabolites: !!omap - - s_2785: -1 - - s_2789: 1 - - s_2831: -1 - - s_2833: 1 - - s_2834: 1 - - s_2836: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR246W or YOR317W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2196" + - name: "fatty-acid--CoA ligase (hexadecanoate), ER membrane" + - metabolites: !!omap + - s_2785: -1 + - s_2789: 1 + - s_2831: -1 + - s_2833: 1 + - s_2834: 1 + - s_2836: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR246W or YOR317W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - kegg.reaction: "R01280" - metanetx.reaction: "MNXR99153" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2197" - - name: "fatty-acid--CoA ligase (hexadecenoate), ER membrane" - - metabolites: !!omap - - s_2785: -1 - - s_2819: 1 - - s_2831: -1 - - s_2833: 1 - - s_2834: 1 - - s_2837: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR246W or YOR317W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2197" + - name: "fatty-acid--CoA ligase (hexadecenoate), ER membrane" + - metabolites: !!omap + - s_2785: -1 + - s_2819: 1 + - s_2831: -1 + - s_2833: 1 + - s_2834: 1 + - s_2837: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR246W or YOR317W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126667" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2198" - - name: "fatty-acid--CoA ligase (octadecanoate), ER membrane" - - metabolites: !!omap - - s_2785: -1 - - s_2791: 1 - - s_2831: -1 - - s_2833: 1 - - s_2834: 1 - - s_2838: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR246W or YOR317W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2198" + - name: "fatty-acid--CoA ligase (octadecanoate), ER membrane" + - metabolites: !!omap + - s_2785: -1 + - s_2791: 1 + - s_2831: -1 + - s_2833: 1 + - s_2834: 1 + - s_2838: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR246W or YOR317W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR99164" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2199" - - name: "fatty-acid--CoA ligase (octadecenoate), ER membrane" - - metabolites: !!omap - - s_2785: -1 - - s_2821: 1 - - s_2831: -1 - - s_2833: 1 - - s_2834: 1 - - s_2839: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR246W or YOR317W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2199" + - name: "fatty-acid--CoA ligase (octadecenoate), ER membrane" + - metabolites: !!omap + - s_2785: -1 + - s_2821: 1 + - s_2831: -1 + - s_2833: 1 + - s_2834: 1 + - s_2839: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR246W or YOR317W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR122919" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2200" - - name: "fatty-acid--CoA ligase (dodecanoate), lipid particle" - - metabolites: !!omap - - s_0531: -1 - - s_0635: 1 - - s_2840: -1 - - s_2841: -1 - - s_2842: 1 - - s_2843: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR317W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2200" + - name: "fatty-acid--CoA ligase (dodecanoate), lipid particle" + - metabolites: !!omap + - s_0531: -1 + - s_0635: 1 + - s_2840: -1 + - s_2841: -1 + - s_2842: 1 + - s_2843: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR317W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR120051" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2201" - - name: "fatty-acid--CoA ligase (tetradecanoate), lipid particle" - - metabolites: !!omap - - s_0531: -1 - - s_0635: 1 - - s_2840: -1 - - s_2842: 1 - - s_2844: -1 - - s_2845: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR246W or YOR317W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2201" + - name: "fatty-acid--CoA ligase (tetradecanoate), lipid particle" + - metabolites: !!omap + - s_0531: -1 + - s_0635: 1 + - s_2840: -1 + - s_2842: 1 + - s_2844: -1 + - s_2845: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR246W or YOR317W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126663" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2202" - - name: "fatty-acid--CoA ligase (hexadecanoate), lipid particle" - - metabolites: !!omap - - s_0531: -1 - - s_0635: 1 - - s_2840: -1 - - s_2842: 1 - - s_2846: -1 - - s_2847: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR246W or YOR317W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2202" + - name: "fatty-acid--CoA ligase (hexadecanoate), lipid particle" + - metabolites: !!omap + - s_0531: -1 + - s_0635: 1 + - s_2840: -1 + - s_2842: 1 + - s_2846: -1 + - s_2847: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR246W or YOR317W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - kegg.reaction: "R01280" - metanetx.reaction: "MNXR99153" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2203" - - name: "fatty-acid--CoA ligase (hexadecenoate), lipid particle" - - metabolites: !!omap - - s_0531: -1 - - s_0635: 1 - - s_2840: -1 - - s_2842: 1 - - s_2848: -1 - - s_2849: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR246W or YOR317W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2203" + - name: "fatty-acid--CoA ligase (hexadecenoate), lipid particle" + - metabolites: !!omap + - s_0531: -1 + - s_0635: 1 + - s_2840: -1 + - s_2842: 1 + - s_2848: -1 + - s_2849: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR246W or YOR317W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126667" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2204" - - name: "fatty-acid--CoA ligase (octadecanoate), lipid particle" - - metabolites: !!omap - - s_0531: -1 - - s_0635: 1 - - s_2840: -1 - - s_2842: 1 - - s_2850: -1 - - s_2851: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR246W or YOR317W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2204" + - name: "fatty-acid--CoA ligase (octadecanoate), lipid particle" + - metabolites: !!omap + - s_0531: -1 + - s_0635: 1 + - s_2840: -1 + - s_2842: 1 + - s_2850: -1 + - s_2851: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR246W or YOR317W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR99164" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2205" - - name: "fatty-acid--CoA ligase (octadecenoate), lipid particle" - - metabolites: !!omap - - s_0531: -1 - - s_0635: 1 - - s_2840: -1 - - s_2842: 1 - - s_2852: -1 - - s_2853: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR246W or YOR317W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2205" + - name: "fatty-acid--CoA ligase (octadecenoate), lipid particle" + - metabolites: !!omap + - s_0531: -1 + - s_0635: 1 + - s_2840: -1 + - s_2842: 1 + - s_2852: -1 + - s_2853: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR246W or YOR317W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR122919" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2206" - - name: "fatty-acid--CoA ligase (hexadecenoate), peroxisome" - - metabolites: !!omap - - s_0426: 1 - - s_0439: -1 - - s_0534: -1 - - s_0638: 1 - - s_1298: -1 - - s_2854: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER015W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2206" + - name: "fatty-acid--CoA ligase (hexadecenoate), peroxisome" + - metabolites: !!omap + - s_0426: 1 + - s_0439: -1 + - s_0534: -1 + - s_0638: 1 + - s_1298: -1 + - s_2854: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER015W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL161p" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126667" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2207" - - name: "fatty-acid--CoA ligase (octadecanoate), peroxisome" - - metabolites: !!omap - - s_0426: 1 - - s_0439: -1 - - s_0534: -1 - - s_0638: 1 - - s_1451: -1 - - s_1457: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER015W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2207" + - name: "fatty-acid--CoA ligase (octadecanoate), peroxisome" + - metabolites: !!omap + - s_0426: 1 + - s_0439: -1 + - s_0534: -1 + - s_0638: 1 + - s_1451: -1 + - s_1457: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER015W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR99164" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2208" - - name: "fatty-acid--CoA ligase (octadecenoate), peroxisome" - - metabolites: !!omap - - s_0426: 1 - - s_0439: -1 - - s_0534: -1 - - s_0638: 1 - - s_1265: 1 - - s_2855: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER015W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2208" + - name: "fatty-acid--CoA ligase (octadecenoate), peroxisome" + - metabolites: !!omap + - s_0426: 1 + - s_0439: -1 + - s_0534: -1 + - s_0638: 1 + - s_1265: 1 + - s_2855: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER015W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR122919" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2209" - - name: "fatty-acid--CoA ligase (arachidate), cell envelope" - - metabolites: !!omap - - s_2856: -1 - - s_2857: -1 - - s_2858: -1 - - s_2859: 1 - - s_2860: 1 - - s_2861: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL009W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2209" + - name: "fatty-acid--CoA ligase (arachidate), cell envelope" + - metabolites: !!omap + - s_2856: -1 + - s_2857: -1 + - s_2858: -1 + - s_2859: 1 + - s_2860: 1 + - s_2861: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL009W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2210" - - name: "fatty-acid--CoA ligase (behenate), cell envelope" - - metabolites: !!omap - - s_2856: -1 - - s_2857: -1 - - s_2859: 1 - - s_2860: 1 - - s_2862: -1 - - s_2863: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL009W" - - annotation: !!omap + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2210" + - name: "fatty-acid--CoA ligase (behenate), cell envelope" + - metabolites: !!omap + - s_2856: -1 + - s_2857: -1 + - s_2859: 1 + - s_2860: 1 + - s_2862: -1 + - s_2863: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL009W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2211" - - name: "fatty-acid--CoA ligase (lignoceric acid), cell envelope" - - metabolites: !!omap - - s_2856: -1 - - s_2857: -1 - - s_2859: 1 - - s_2860: 1 - - s_2864: -1 - - s_2865: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL009W" - - annotation: !!omap + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2211" + - name: "fatty-acid--CoA ligase (lignoceric acid), cell envelope" + - metabolites: !!omap + - s_2856: -1 + - s_2857: -1 + - s_2859: 1 + - s_2860: 1 + - s_2864: -1 + - s_2865: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL009W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR126665" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2212" - - name: "fatty-acid--CoA ligase (cerotic acid), cell envelope" - - metabolites: !!omap - - s_2856: -1 - - s_2857: -1 - - s_2859: 1 - - s_2860: 1 - - s_2866: -1 - - s_2867: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL009W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2212" + - name: "fatty-acid--CoA ligase (cerotic acid), cell envelope" + - metabolites: !!omap + - s_2856: -1 + - s_2857: -1 + - s_2859: 1 + - s_2860: 1 + - s_2866: -1 + - s_2867: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL009W" + - eccodes: "6.2.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR128076" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2213" - - name: "fatty-acid--CoA ligase (behenate), ER membrane" - - metabolites: !!omap - - s_2785: -1 - - s_2795: 1 - - s_2831: -1 - - s_2833: 1 - - s_2834: 1 - - s_2868: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR041W" - - annotation: !!omap - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2214" - - name: "fatty-acid--CoA ligase (lignoceric acid), ER membrane" - - metabolites: !!omap - - s_2785: -1 - - s_2797: 1 - - s_2831: -1 - - s_2833: 1 - - s_2834: 1 - - s_2869: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR041W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2213" + - name: "fatty-acid--CoA ligase (behenate), ER membrane" + - metabolites: !!omap + - s_2785: -1 + - s_2795: 1 + - s_2831: -1 + - s_2833: 1 + - s_2834: 1 + - s_2868: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR041W" + - eccodes: "" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2214" + - name: "fatty-acid--CoA ligase (lignoceric acid), ER membrane" + - metabolites: !!omap + - s_2785: -1 + - s_2797: 1 + - s_2831: -1 + - s_2833: 1 + - s_2834: 1 + - s_2869: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR041W" + - eccodes: "" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR126665" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2215" - - name: "fatty-acid--CoA ligase (cerotic acid), ER membrane" - - metabolites: !!omap - - s_2785: -1 - - s_2816: 1 - - s_2831: -1 - - s_2833: 1 - - s_2834: 1 - - s_2870: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR041W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2215" + - name: "fatty-acid--CoA ligase (cerotic acid), ER membrane" + - metabolites: !!omap + - s_2785: -1 + - s_2816: 1 + - s_2831: -1 + - s_2833: 1 + - s_2834: 1 + - s_2870: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR041W" + - eccodes: "" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR128076" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2216" - - name: "fatty-acid--CoA ligase (behenate), lipid particle" - - metabolites: !!omap - - s_0531: -1 - - s_0635: 1 - - s_2840: -1 - - s_2842: 1 - - s_2871: -1 - - s_2872: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR041W" - - annotation: !!omap - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2217" - - name: "fatty-acid--CoA ligase (lignoceric acid), lipid particle" - - metabolites: !!omap - - s_0531: -1 - - s_0635: 1 - - s_2840: -1 - - s_2842: 1 - - s_2873: -1 - - s_2874: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR041W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2216" + - name: "fatty-acid--CoA ligase (behenate), lipid particle" + - metabolites: !!omap + - s_0531: -1 + - s_0635: 1 + - s_2840: -1 + - s_2842: 1 + - s_2871: -1 + - s_2872: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR041W" + - eccodes: "" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2217" + - name: "fatty-acid--CoA ligase (lignoceric acid), lipid particle" + - metabolites: !!omap + - s_0531: -1 + - s_0635: 1 + - s_2840: -1 + - s_2842: 1 + - s_2873: -1 + - s_2874: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR041W" + - eccodes: "" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR126665" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2218" - - name: "fatty-acid--CoA ligase (cerotic acid), lipid particle" - - metabolites: !!omap - - s_0531: -1 - - s_0635: 1 - - s_2840: -1 - - s_2842: 1 - - s_2875: -1 - - s_2876: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR041W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2218" + - name: "fatty-acid--CoA ligase (cerotic acid), lipid particle" + - metabolites: !!omap + - s_0531: -1 + - s_0635: 1 + - s_2840: -1 + - s_2842: 1 + - s_2875: -1 + - s_2876: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR041W" + - eccodes: "" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR128076" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2219" - - name: "fatty acyl-CoA transport via ABC system (C12:0)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1073: -1 - - s_1076: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2220" - - name: "fatty acyl-CoA transport via ABC system (C14:0)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1176: -1 - - s_1179: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2221" - - name: "fatty acyl-CoA transport via ABC system (C16:0)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1302: -1 - - s_1305: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - bigg.reaction: "FA160COAabcp_1" - - kegg.pathway: - - "sce02010" - - "sce04146" - - metanetx.reaction: "MNXR99100" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2222" - - name: "fatty acyl-CoA transport via ABC system (C16:1)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_2854: 1 - - s_2877: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2223" - - name: "fatty acyl-CoA transport via ABC system (C18:0)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_1454: -1 - - s_1457: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - bigg.reaction: "STCOATxc" - - kegg.pathway: - - "sce02010" - - "sce04146" - - metanetx.reaction: "MNXR104597" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2224" - - name: "fatty acyl-CoA transport via ABC system (C18:1)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1262: -1 - - s_1265: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2225" - - name: "fatty acyl-CoA transport via ABC system (C20:0)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_2878: -1 - - s_2879: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2226" - - name: "fatty acyl-CoA transport via ABC system (C22:0)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_2880: -1 - - s_2881: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - bigg.reaction: "DOCOSCOAtxc" - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2227" - - name: "fatty acyl-CoA transport via ABC system (C24:0)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_1479: -1 - - s_1482: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - bigg.reaction: "LGNCCOAtcx_1" - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2228" - - name: "fatty acyl-CoA transport via ABC system (C26:0)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_0816: -1 - - s_0819: 1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 - - !!omap - - id: "r_2229" - - name: "butyrate (n-C4:0) transport, cytoplasm-peroxisome" - - metabolites: !!omap - - s_2828: -1 - - s_2882: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2230" - - name: "hexanoate (n-C6:0) transport, cytoplasm-peroxisome" - - metabolites: !!omap - - s_2829: -1 - - s_2883: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - bigg.reaction: "HXAt2" - - metanetx.reaction: "MNXR100750" - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_2231" - - name: "octadecenoate (n-C18:1) transport, cytoplasm-peroxisome" - - metabolites: !!omap - - s_1260: -1 - - s_2855: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL188C and YPL147W" - - annotation: !!omap - - metanetx.reaction: "MNXR99110" - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_2232" - - name: "peroxisomal acyl-CoA thioesterase (4:0)" - - metabolites: !!omap - - s_0534: 1 - - s_0801: 5 - - s_0809: -1 - - s_2882: 1 - - s_2884: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR019C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2232" + - name: "peroxisomal acyl-CoA thioesterase (4:0)" + - metabolites: !!omap + - s_0534: 1 + - s_0801: 5 + - s_0809: -1 + - s_2882: 1 + - s_2884: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR019C" + - eccodes: "3.1.2.2" + - references: "16490786" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.2" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" + - "sce00062" + - "sce01040" + - "sce01110" - pmid: "16490786" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2233" - - name: "peroxisomal acyl-CoA thioesterase (6:0)" - - metabolites: !!omap - - s_0534: 1 - - s_0801: 5 - - s_0809: -1 - - s_2883: 1 - - s_2885: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR019C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2233" + - name: "peroxisomal acyl-CoA thioesterase (6:0)" + - metabolites: !!omap + - s_0534: 1 + - s_0801: 5 + - s_0809: -1 + - s_2883: 1 + - s_2885: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR019C" + - eccodes: "3.1.2.2" + - references: "16490786" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.2" - bigg.reaction: "HXCOAx" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" + - "sce00062" + - "sce01040" + - "sce01110" - metanetx.reaction: "MNXR127520" - pmid: "16490786" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2234" - - name: "peroxisomal acyl-CoA thioesterase (16:1)" - - metabolites: !!omap - - s_0534: 1 - - s_0801: 1 - - s_0809: -1 - - s_1298: 1 - - s_2854: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR019C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2234" + - name: "peroxisomal acyl-CoA thioesterase (16:1)" + - metabolites: !!omap + - s_0534: 1 + - s_0801: 1 + - s_0809: -1 + - s_1298: 1 + - s_2854: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR019C" + - eccodes: "3.1.2.2" + - references: "16490786" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.2" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" + - "sce00062" + - "sce01040" + - "sce01110" - metanetx.reaction: "MNXR116444" - pmid: "16490786" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2235" - - name: "peroxisomal acyl-CoA thioesterase (18:1)" - - metabolites: !!omap - - s_0534: 1 - - s_0801: 1 - - s_0809: -1 - - s_1265: -1 - - s_2855: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR019C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2235" + - name: "peroxisomal acyl-CoA thioesterase (18:1)" + - metabolites: !!omap + - s_0534: 1 + - s_0801: 1 + - s_0809: -1 + - s_1265: -1 + - s_2855: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR019C" + - eccodes: "3.1.2.2" + - references: "16490786" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.2" - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" + - "sce00062" + - "sce01040" + - "sce01110" - kegg.reaction: "R08176" - metanetx.reaction: "MNXR111750" - pmid: "16490786" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2236" - - name: "acyl-CoA oxidase (butanoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1279: -1 - - s_2884: -1 - - s_2886: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2236" + - name: "acyl-CoA oxidase (butanoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1279: -1 + - s_2884: -1 + - s_2886: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "HMR_3102" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR127857" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2237" - - name: "acyl-CoA oxidase (hexanoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1279: -1 - - s_2885: -1 - - s_2887: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2237" + - name: "acyl-CoA oxidase (hexanoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1279: -1 + - s_2885: -1 + - s_2887: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "HMR_3098" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR127546" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2238" - - name: "acyl-CoA oxidase (octanoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1258: -1 - - s_1279: -1 - - s_2888: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2238" + - name: "acyl-CoA oxidase (octanoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1258: -1 + - s_1279: -1 + - s_2888: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2239" - - name: "acyl-CoA oxidase (icosanoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1279: -1 - - s_2879: -1 - - s_2889: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2239" + - name: "acyl-CoA oxidase (icosanoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1279: -1 + - s_2879: -1 + - s_2889: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2240" - - name: "acyl-CoA oxidase (docosanoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1279: -1 - - s_2881: -1 - - s_2890: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2240" + - name: "acyl-CoA oxidase (docosanoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1279: -1 + - s_2881: -1 + - s_2890: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2241" - - name: "acyl-CoA oxidase (tetracosanoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1279: -1 - - s_1482: -1 - - s_2891: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2241" + - name: "acyl-CoA oxidase (tetracosanoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1279: -1 + - s_1482: -1 + - s_2891: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - bigg.reaction: "HMR_3062" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - metanetx.reaction: "MNXR127548" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2242" - - name: "acyl-CoA oxidase (palmitoleoyl-CoA)" - - metabolites: !!omap - - s_0801: -4 - - s_0840: 1 - - s_1279: -1 - - s_2854: -1 - - s_2892: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2242" + - name: "acyl-CoA oxidase (palmitoleoyl-CoA)" + - metabolites: !!omap + - s_0801: -4 + - s_0840: 1 + - s_1279: -1 + - s_2854: -1 + - s_2892: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2243" - - name: "acyl-CoA oxidase (cis-tetradec-7-enoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1279: -1 - - s_2893: -1 - - s_2894: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2243" + - name: "acyl-CoA oxidase (cis-tetradec-7-enoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1279: -1 + - s_2893: -1 + - s_2894: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2244" - - name: "acyl-CoA oxidase (cis-dodec-5-enoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1279: -1 - - s_2895: -1 - - s_2896: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2244" + - name: "acyl-CoA oxidase (cis-dodec-5-enoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1279: -1 + - s_2895: -1 + - s_2896: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2245" - - name: "acyl-CoA oxidase (oleoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1265: -1 - - s_1279: -1 - - s_2897: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2245" + - name: "acyl-CoA oxidase (oleoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1265: -1 + - s_1279: -1 + - s_2897: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2246" - - name: "acyl-CoA oxidase (cis-hexadec-7-enoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1279: -1 - - s_2898: -1 - - s_2899: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2246" + - name: "acyl-CoA oxidase (cis-hexadec-7-enoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1279: -1 + - s_2898: -1 + - s_2899: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2247" - - name: "acyl-CoA oxidase (cis-tetradec-5-enoyl-CoA)" - - metabolites: !!omap - - s_0840: 1 - - s_1279: -1 - - s_2900: -1 - - s_2901: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL205W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2247" + - name: "acyl-CoA oxidase (cis-tetradec-5-enoyl-CoA)" + - metabolites: !!omap + - s_0840: 1 + - s_1279: -1 + - s_2900: -1 + - s_2901: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL205W" + - eccodes: "1.3.3.6" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.3.6" - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2248" - - name: "2-enoyl-CoA hydratase (3-hydroxydecanoyl-CoA)" - - metabolites: !!omap - - s_0042: 1 - - s_0809: -1 - - s_1507: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2248" + - name: "2-enoyl-CoA hydratase (3-hydroxydecanoyl-CoA)" + - metabolites: !!omap + - s_0042: 1 + - s_0809: -1 + - s_1507: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "ECOAH4p" - kegg.reaction: "R04744" - metanetx.reaction: "MNXR97889" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2249" - - name: "2-enoyl-CoA hydratase (3-hydroxydodecanoyl-CoA)" - - metabolites: !!omap - - s_0048: 1 - - s_0809: -1 - - s_1510: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2249" + - name: "2-enoyl-CoA hydratase (3-hydroxydodecanoyl-CoA)" + - metabolites: !!omap + - s_0048: 1 + - s_0809: -1 + - s_1510: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "ECOAH5p" - kegg.reaction: "R04170" - metanetx.reaction: "MNXR97890" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2250" - - name: "2-enoyl-CoA hydratase (3-hydroxytetradecanoyl-CoA)" - - metabolites: !!omap - - s_0054: 1 - - s_0809: -1 - - s_1519: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2250" + - name: "2-enoyl-CoA hydratase (3-hydroxytetradecanoyl-CoA)" + - metabolites: !!omap + - s_0054: 1 + - s_0809: -1 + - s_1519: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "ECOAH6p" - kegg.reaction: "R04740" - metanetx.reaction: "MNXR97891" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2251" - - name: "2-enoyl-CoA hydratase (3-hydroxyhexadecanoyl-CoA)" - - metabolites: !!omap - - s_0051: 1 - - s_0809: -1 - - s_0823: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2251" + - name: "2-enoyl-CoA hydratase (3-hydroxyhexadecanoyl-CoA)" + - metabolites: !!omap + - s_0051: 1 + - s_0809: -1 + - s_0823: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "ECOAH7p" - kegg.reaction: "R04738" - metanetx.reaction: "MNXR97892" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2252" - - name: "2-enoyl-CoA hydratase (3-hydroxyoctadecanoyl-CoA)" - - metabolites: !!omap - - s_0229: 1 - - s_0809: -1 - - s_1516: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2252" + - name: "2-enoyl-CoA hydratase (3-hydroxyoctadecanoyl-CoA)" + - metabolites: !!omap + - s_0229: 1 + - s_0809: -1 + - s_1516: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "HMR_3075" - kegg.reaction: "R07760" - metanetx.reaction: "MNXR103466" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2253" - - name: "2-enoyl-CoA hydratase (3-hydroxyhexacosanoyl-CoA)" - - metabolites: !!omap - - s_0045: 1 - - s_0809: -1 - - s_1513: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2253" + - name: "2-enoyl-CoA hydratase (3-hydroxyhexacosanoyl-CoA)" + - metabolites: !!omap + - s_0045: 1 + - s_0809: -1 + - s_1513: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2254" - - name: "2-enoyl-CoA hydratase (3-hydroxybutanoyl-CoA)" - - metabolites: !!omap - - s_0801: 4 - - s_0809: -1 - - s_2886: -1 - - s_2902: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2254" + - name: "2-enoyl-CoA hydratase (3-hydroxybutanoyl-CoA)" + - metabolites: !!omap + - s_0801: 4 + - s_0809: -1 + - s_2886: -1 + - s_2902: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2255" - - name: "2-enoyl-CoA hydratase (3-hydroxyhexanoyl-CoA)" - - metabolites: !!omap - - s_0809: -1 - - s_2887: -1 - - s_2903: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2255" + - name: "2-enoyl-CoA hydratase (3-hydroxyhexanoyl-CoA)" + - metabolites: !!omap + - s_0809: -1 + - s_2887: -1 + - s_2903: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2256" - - name: "2-enoyl-CoA hydratase (3-hydroxyoctanoyl-CoA)" - - metabolites: !!omap - - s_0801: -4 - - s_0809: -1 - - s_2888: -1 - - s_2904: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2256" + - name: "2-enoyl-CoA hydratase (3-hydroxyoctanoyl-CoA)" + - metabolites: !!omap + - s_0801: -4 + - s_0809: -1 + - s_2888: -1 + - s_2904: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - metanetx.reaction: "MNXR118594" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2257" - - name: "2-enoyl-CoA hydratase (3-hydroxyicosanoyl-CoA)" - - metabolites: !!omap - - s_0809: -1 - - s_2889: -1 - - s_2905: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2257" + - name: "2-enoyl-CoA hydratase (3-hydroxyicosanoyl-CoA)" + - metabolites: !!omap + - s_0809: -1 + - s_2889: -1 + - s_2905: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2258" - - name: "2-enoyl-CoA hydratase (3-hydroxydocosanoyl-CoA)" - - metabolites: !!omap - - s_0809: -1 - - s_2890: -1 - - s_2906: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2258" + - name: "2-enoyl-CoA hydratase (3-hydroxydocosanoyl-CoA)" + - metabolites: !!omap + - s_0809: -1 + - s_2890: -1 + - s_2906: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2259" - - name: "2-enoyl-CoA hydratase (3-hydroxytetracosanoyl-CoA)" - - metabolites: !!omap - - s_0809: -1 - - s_2891: -1 - - s_2907: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2259" + - name: "2-enoyl-CoA hydratase (3-hydroxytetracosanoyl-CoA)" + - metabolites: !!omap + - s_0809: -1 + - s_2891: -1 + - s_2907: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - metanetx.reaction: "MNXR118009" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2260" - - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-hexadec-9-enoyl-CoA)" - - metabolites: !!omap - - s_0809: -1 - - s_2892: -1 - - s_2908: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2260" + - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-hexadec-9-enoyl-CoA)" + - metabolites: !!omap + - s_0809: -1 + - s_2892: -1 + - s_2908: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2261" - - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-tetradec-7-enoyl-CoA)" - - metabolites: !!omap - - s_0809: -1 - - s_2894: -1 - - s_2909: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2261" + - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-tetradec-7-enoyl-CoA)" + - metabolites: !!omap + - s_0809: -1 + - s_2894: -1 + - s_2909: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2262" - - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-dodec-5-enoyl-CoA)" - - metabolites: !!omap - - s_0809: -1 - - s_2896: -1 - - s_2910: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2262" + - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-dodec-5-enoyl-CoA)" + - metabolites: !!omap + - s_0809: -1 + - s_2896: -1 + - s_2910: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2263" - - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-octadec-9-enoyl-CoA)" - - metabolites: !!omap - - s_0801: -4 - - s_0809: -1 - - s_2897: -1 - - s_2911: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2263" + - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-octadec-9-enoyl-CoA)" + - metabolites: !!omap + - s_0801: -4 + - s_0809: -1 + - s_2897: -1 + - s_2911: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2264" - - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-hexadec-7-enoyl-CoA)" - - metabolites: !!omap - - s_0809: -1 - - s_2899: -1 - - s_2912: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2264" + - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-hexadec-7-enoyl-CoA)" + - metabolites: !!omap + - s_0809: -1 + - s_2899: -1 + - s_2912: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2265" - - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-tetradec-5-enoyl-CoA)" - - metabolites: !!omap - - s_0809: -1 - - s_2901: -1 - - s_2913: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2265" + - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-tetradec-5-enoyl-CoA)" + - metabolites: !!omap + - s_0809: -1 + - s_2901: -1 + - s_2913: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2266" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxodecanoyl-CoA)" - - metabolites: !!omap - - s_0042: -1 - - s_0239: 1 - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2266" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxodecanoyl-CoA)" + - metabolites: !!omap + - s_0042: -1 + - s_0239: 1 + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "HACD4p" - kegg.reaction: "R04743" - metanetx.reaction: "MNXR100545" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2267" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxododecanoyl-CoA)" - - metabolites: !!omap - - s_0048: -1 - - s_0247: 1 - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2267" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxododecanoyl-CoA)" + - metabolites: !!omap + - s_0048: -1 + - s_0247: 1 + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "HACD5p" - kegg.reaction: "R04741" - metanetx.reaction: "MNXR100546" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2268" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexadecanoyl-CoA)" - - metabolites: !!omap - - s_0051: -1 - - s_0253: 1 - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2268" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexadecanoyl-CoA)" + - metabolites: !!omap + - s_0051: -1 + - s_0253: 1 + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "HACD7p" - kegg.reaction: "R04737" - metanetx.reaction: "MNXR100548" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2269" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxooctadecanoyl-CoA)" - - metabolites: !!omap - - s_0229: -1 - - s_0250: 1 - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2269" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxooctadecanoyl-CoA)" + - metabolites: !!omap + - s_0229: -1 + - s_0250: 1 + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "HMR_3076" - metanetx.reaction: "MNXR126787" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2270" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexacosanoyl-CoA)" - - metabolites: !!omap - - s_0045: -1 - - s_0243: 1 - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2270" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexacosanoyl-CoA)" + - metabolites: !!omap + - s_0045: -1 + - s_0243: 1 + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2271" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxobutanoyl-CoA)" - - metabolites: !!omap - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_2902: -1 - - s_2914: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2271" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxobutanoyl-CoA)" + - metabolites: !!omap + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_2902: -1 + - s_2914: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2272" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexanoyl-CoA)" - - metabolites: !!omap - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_2903: -1 - - s_2915: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2272" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexanoyl-CoA)" + - metabolites: !!omap + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_2903: -1 + - s_2915: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2273" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxooctanoyl-CoA)" - - metabolites: !!omap - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_2904: -1 - - s_2916: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2273" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxooctanoyl-CoA)" + - metabolites: !!omap + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_2904: -1 + - s_2916: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2274" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxoicosanoyl-CoA)" - - metabolites: !!omap - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_2905: -1 - - s_2917: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2274" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxoicosanoyl-CoA)" + - metabolites: !!omap + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_2905: -1 + - s_2917: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2275" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxodocosanoyl-CoA)" - - metabolites: !!omap - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_2906: -1 - - s_2918: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2275" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxodocosanoyl-CoA)" + - metabolites: !!omap + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_2906: -1 + - s_2918: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2276" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxotetracosanoyl-CoA)" - - metabolites: !!omap - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_2907: -1 - - s_2919: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2276" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxotetracosanoyl-CoA)" + - metabolites: !!omap + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_2907: -1 + - s_2919: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2277" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-hexadec-9-enoyl-CoA)" - - metabolites: !!omap - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_2908: -1 - - s_2920: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2277" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-hexadec-9-enoyl-CoA)" + - metabolites: !!omap + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_2908: -1 + - s_2920: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2278" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-tetradec-7-enoyl-CoA)" - - metabolites: !!omap - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_2909: -1 - - s_2921: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2278" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-tetradec-7-enoyl-CoA)" + - metabolites: !!omap + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_2909: -1 + - s_2921: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2279" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-dodec-5-enoyl-CoA)" - - metabolites: !!omap - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_2910: -1 - - s_2922: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2279" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-dodec-5-enoyl-CoA)" + - metabolites: !!omap + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_2910: -1 + - s_2922: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2280" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-octadec-9-enoyl-CoA)" - - metabolites: !!omap - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_2911: -1 - - s_2923: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2280" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-octadec-9-enoyl-CoA)" + - metabolites: !!omap + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_2911: -1 + - s_2923: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2281" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-hexadec-7-enoyl-CoA)" - - metabolites: !!omap - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_2912: -1 - - s_2924: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2281" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-hexadec-7-enoyl-CoA)" + - metabolites: !!omap + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_2912: -1 + - s_2924: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2282" - - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-tetradec-5-enoyl-CoA)" - - metabolites: !!omap - - s_0801: 1 - - s_1202: -1 - - s_1206: 1 - - s_2913: -1 - - s_2925: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR009C" - - annotation: !!omap - - ec-code: - - "1.1.1.n12" - - "4.2.1.119" + - confidence_score: 3 + - !!omap + - id: "r_2282" + - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-tetradec-5-enoyl-CoA)" + - metabolites: !!omap + - s_0801: 1 + - s_1202: -1 + - s_1206: 1 + - s_2913: -1 + - s_2925: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR009C" + - eccodes: "1.1.1.n12; 4.2.1.119" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.n12; 4.2.1.119" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2283" - - name: "acetyl-CoA C-acyltransferase (acetyl-CoA)" - - metabolites: !!omap - - s_0378: 2 - - s_0534: -1 - - s_2914: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2283" + - name: "acetyl-CoA C-acyltransferase (acetyl-CoA)" + - metabolites: !!omap + - s_0378: 2 + - s_0534: -1 + - s_2914: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT1x" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - kegg.reaction: "R00238" - metanetx.reaction: "MNXR95194" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2284" - - name: "acetyl-CoA C-acyltransferase (butanoyl-CoA)" - - metabolites: !!omap - - s_0378: 1 - - s_0534: -1 - - s_2884: 1 - - s_2915: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2284" + - name: "acetyl-CoA C-acyltransferase (butanoyl-CoA)" + - metabolites: !!omap + - s_0378: 1 + - s_0534: -1 + - s_2884: 1 + - s_2915: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT2" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2285" - - name: "acetyl-CoA C-acyltransferase (hexanoyl-CoA)" - - metabolites: !!omap - - s_0378: 1 - - s_0534: -1 - - s_2885: 1 - - s_2916: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2285" + - name: "acetyl-CoA C-acyltransferase (hexanoyl-CoA)" + - metabolites: !!omap + - s_0378: 1 + - s_0534: -1 + - s_2885: 1 + - s_2916: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "ACACT3" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2286" - - name: "acetyl-CoA C-acyltransferase (stearoyl-CoA)" - - metabolites: !!omap - - s_0378: 1 - - s_0534: -1 - - s_1457: 1 - - s_2917: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2286" + - name: "acetyl-CoA C-acyltransferase (stearoyl-CoA)" + - metabolites: !!omap + - s_0378: 1 + - s_0534: -1 + - s_1457: 1 + - s_2917: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "HMR_3073" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2287" - - name: "acetyl-CoA C-acyltransferase (icosanoyl-CoA)" - - metabolites: !!omap - - s_0378: 1 - - s_0534: -1 - - s_2879: 1 - - s_2918: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2287" + - name: "acetyl-CoA C-acyltransferase (icosanoyl-CoA)" + - metabolites: !!omap + - s_0378: 1 + - s_0534: -1 + - s_2879: 1 + - s_2918: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "HMR_3069" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2288" - - name: "acetyl-CoA C-acyltransferase (docosanoyl-CoA)" - - metabolites: !!omap - - s_0378: 1 - - s_0534: -1 - - s_2881: 1 - - s_2919: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2288" + - name: "acetyl-CoA C-acyltransferase (docosanoyl-CoA)" + - metabolites: !!omap + - s_0378: 1 + - s_0534: -1 + - s_2881: 1 + - s_2919: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - bigg.reaction: "HMR_3065" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2289" - - name: "acetyl-CoA C-acyltransferase (cis-tetradec-7-enoyl-CoA)" - - metabolites: !!omap - - s_0378: 1 - - s_0534: -1 - - s_2893: 1 - - s_2920: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2289" + - name: "acetyl-CoA C-acyltransferase (cis-tetradec-7-enoyl-CoA)" + - metabolites: !!omap + - s_0378: 1 + - s_0534: -1 + - s_2893: 1 + - s_2920: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2290" - - name: "acetyl-CoA C-acyltransferase (cis-dodec-5-enoyl-CoA)" - - metabolites: !!omap - - s_0378: 1 - - s_0534: -1 - - s_2895: 1 - - s_2921: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2290" + - name: "acetyl-CoA C-acyltransferase (cis-dodec-5-enoyl-CoA)" + - metabolites: !!omap + - s_0378: 1 + - s_0534: -1 + - s_2895: 1 + - s_2921: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2291" - - name: "acetyl-CoA C-acyltransferase (cis-dec-3-enoyl-CoA)" - - metabolites: !!omap - - s_0378: 1 - - s_0534: -1 - - s_2922: -1 - - s_2926: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2291" + - name: "acetyl-CoA C-acyltransferase (cis-dec-3-enoyl-CoA)" + - metabolites: !!omap + - s_0378: 1 + - s_0534: -1 + - s_2922: -1 + - s_2926: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2292" - - name: "acetyl-CoA C-acyltransferase (cis-hexadec-7-enoyl-CoA)" - - metabolites: !!omap - - s_0378: 1 - - s_0534: -1 - - s_2898: 1 - - s_2923: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2292" + - name: "acetyl-CoA C-acyltransferase (cis-hexadec-7-enoyl-CoA)" + - metabolites: !!omap + - s_0378: 1 + - s_0534: -1 + - s_2898: 1 + - s_2923: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2293" - - name: "acetyl-CoA C-acyltransferase (cis-tetradec-5-enoyl-CoA)" - - metabolites: !!omap - - s_0378: 1 - - s_0534: -1 - - s_2900: 1 - - s_2924: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2293" + - name: "acetyl-CoA C-acyltransferase (cis-tetradec-5-enoyl-CoA)" + - metabolites: !!omap + - s_0378: 1 + - s_0534: -1 + - s_2900: 1 + - s_2924: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2294" - - name: "acetyl-CoA C-acyltransferase (cis-dodec-3-enoyl-CoA)" - - metabolites: !!omap - - s_0378: 1 - - s_0534: -1 - - s_2925: -1 - - s_2927: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL160C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2294" + - name: "acetyl-CoA C-acyltransferase (cis-dodec-3-enoyl-CoA)" + - metabolites: !!omap + - s_0378: 1 + - s_0534: -1 + - s_2925: -1 + - s_2927: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL160C" + - eccodes: "2.3.1.16" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.16" - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2295" - - name: "delta3,delta2-enoyl-CoA isomerase (cis-dec-3-enoyl-CoA)" - - metabolites: !!omap - - s_0801: 4 - - s_1507: 1 - - s_2926: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR284C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2295" + - name: "delta3,delta2-enoyl-CoA isomerase (cis-dec-3-enoyl-CoA)" + - metabolites: !!omap + - s_0801: 4 + - s_1507: 1 + - s_2926: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR284C" + - eccodes: "5.3.3.8" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.3.8" - kegg.pathway: - - "sce00071" - - "sce04146" + - "sce00071" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2296" - - name: "delta3,delta2-enoyl-CoA isomerase (trans-2,cis-5-dodecadienoyl-CoA)" - - metabolites: !!omap - - s_2896: -1 - - s_2928: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR284C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2296" + - name: "delta3,delta2-enoyl-CoA isomerase (trans-2,cis-5-dodecadienoyl-CoA)" + - metabolites: !!omap + - s_2896: -1 + - s_2928: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR284C" + - eccodes: "5.3.3.8" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.3.8" - kegg.pathway: - - "sce00071" - - "sce04146" + - "sce00071" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2297" - - name: "delta3,delta2-enoyl-CoA isomerase (trans-dodec-3-enoyl-CoA)" - - metabolites: !!omap - - s_0801: 4 - - s_1510: 1 - - s_2929: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR284C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2297" + - name: "delta3,delta2-enoyl-CoA isomerase (trans-dodec-3-enoyl-CoA)" + - metabolites: !!omap + - s_0801: 4 + - s_1510: 1 + - s_2929: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR284C" + - eccodes: "5.3.3.8" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.3.8" - bigg.reaction: "FAOXC121x" - kegg.pathway: - - "sce00071" - - "sce04146" + - "sce00071" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2298" - - name: "delta3,delta2-enoyl-CoA isomerase (cis-dodec-3-enoyl-CoA)" - - metabolites: !!omap - - s_0801: 4 - - s_1510: 1 - - s_2927: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR284C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2298" + - name: "delta3,delta2-enoyl-CoA isomerase (cis-dodec-3-enoyl-CoA)" + - metabolites: !!omap + - s_0801: 4 + - s_1510: 1 + - s_2927: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR284C" + - eccodes: "5.3.3.8" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.3.8" - kegg.pathway: - - "sce00071" - - "sce04146" + - "sce00071" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2299" - - name: "delta3,delta2-enoyl-CoA isomerase (trans-2,cis-5-tetradecadienoyl-CoA)" - - metabolites: !!omap - - s_2901: -1 - - s_2930: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR284C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2299" + - name: "delta3,delta2-enoyl-CoA isomerase (trans-2,cis-5-tetradecadienoyl-CoA)" + - metabolites: !!omap + - s_2901: -1 + - s_2930: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR284C" + - eccodes: "5.3.3.8" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.3.8" - kegg.pathway: - - "sce00071" - - "sce04146" + - "sce00071" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2300" - - name: "delta3,delta2-enoyl-CoA isomerase (trans-tetradec-3-enoyl-CoA)" - - metabolites: !!omap - - s_0801: 4 - - s_1519: 1 - - s_2931: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR284C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2300" + - name: "delta3,delta2-enoyl-CoA isomerase (trans-tetradec-3-enoyl-CoA)" + - metabolites: !!omap + - s_0801: 4 + - s_1519: 1 + - s_2931: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR284C" + - eccodes: "5.3.3.8" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.3.8" - kegg.pathway: - - "sce00071" - - "sce04146" + - "sce00071" + - "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2301" - - name: "delta(3,5)-delta(2,4)-dienoyl-CoA isomerase (trans-3,cis-5-dodecadienoyl-CoA)" - - metabolites: !!omap - - s_2928: -1 - - s_2932: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR180C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2301" + - name: "delta(3,5)-delta(2,4)-dienoyl-CoA isomerase (trans-3,cis-5-dodecadienoyl-CoA)" + - metabolites: !!omap + - s_2928: -1 + - s_2932: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR180C" + - eccodes: "5.3.3.-" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.3.-" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2302" - - name: "delta(3,5)-delta(2,4)-dienoyl-CoA isomerase (trans-3,cis-5-tetradecadienoyl-CoA)" - - metabolites: !!omap - - s_2930: -1 - - s_2933: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR180C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2302" + - name: "delta(3,5)-delta(2,4)-dienoyl-CoA isomerase (trans-3,cis-5-tetradecadienoyl-CoA)" + - metabolites: !!omap + - s_2930: -1 + - s_2933: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR180C" + - eccodes: "5.3.3.-" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.3.3.-" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2303" - - name: "2,4-dienoyl-CoA reductase (trans-2,trans-4-dodecadienoyl-CoA)" - - metabolites: !!omap - - s_0801: -1 - - s_1211: 1 - - s_1215: -1 - - s_2929: 1 - - s_2932: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL202W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2303" + - name: "2,4-dienoyl-CoA reductase (trans-2,trans-4-dodecadienoyl-CoA)" + - metabolites: !!omap + - s_0801: -1 + - s_1211: 1 + - s_1215: -1 + - s_2929: 1 + - s_2932: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL202W" + - eccodes: "1.3.1.34" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.34" - kegg.pathway: "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2304" - - name: "2,4-dienoyl-CoA reductase (trans-2,trans-4-tetradecadienoyl-CoA)" - - metabolites: !!omap - - s_0801: -1 - - s_1211: 1 - - s_1215: -1 - - s_2931: 1 - - s_2933: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL202W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2304" + - name: "2,4-dienoyl-CoA reductase (trans-2,trans-4-tetradecadienoyl-CoA)" + - metabolites: !!omap + - s_0801: -1 + - s_1211: 1 + - s_1215: -1 + - s_2931: 1 + - s_2933: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL202W" + - eccodes: "1.3.1.34" + - references: "12697341" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.34" - kegg.pathway: "sce04146" - pmid: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2305" - - name: "cis-aconitate(3-) to isocitrate" - - metabolites: !!omap - - s_0516: -1 - - s_0803: -1 - - s_0940: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR304C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2305" + - name: "cis-aconitate(3-) to isocitrate" + - metabolites: !!omap + - s_0516: -1 + - s_0803: -1 + - s_0940: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR304C" + - eccodes: "4.2.1.3" + - references: "15975908" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.3" - bigg.reaction: "ACONTb" - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" - kegg.reaction: "R01900" - metanetx.reaction: "MNXR95387" - pmid: "15975908" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2308" - - name: "glycerol-3-phosphate acyltransferase (16:0), ER membrane" - - metabolites: !!omap - - s_2783: -2 - - s_2785: 1 - - s_2789: -1 - - s_2934: -1 - - s_2935: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL011W or YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2309" - - name: "glycerol-3-phosphate acyltransferase (16:1), ER membrane" - - metabolites: !!omap - - s_2783: -2 - - s_2785: 1 - - s_2819: -1 - - s_2934: -1 - - s_2936: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL011W or YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2310" - - name: "glycerol-3-phosphate acyltransferase (18:0), ER membrane" - - metabolites: !!omap - - s_2783: -2 - - s_2785: 1 - - s_2791: -1 - - s_2934: -1 - - s_2937: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2311" - - name: "glycerol-3-phosphate acyltransferase (18:1), ER membrane" - - metabolites: !!omap - - s_2783: -2 - - s_2785: 1 - - s_2821: -1 - - s_2934: -1 - - s_2938: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2312" - - name: "dihydroxyacetone phosphate acyltransferase (16:0), ER membrane" - - metabolites: !!omap - - s_2783: -2 - - s_2785: 1 - - s_2789: -1 - - s_2939: -1 - - s_2940: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL011W or YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2313" - - name: "dihydroxyacetone phosphate acyltransferase (16:1), ER membrane" - - metabolites: !!omap - - s_2783: -2 - - s_2785: 1 - - s_2819: -1 - - s_2939: -1 - - s_2941: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL011W or YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2314" - - name: "dihydroxyacetone phosphate acyltransferase (18:0), ER membrane" - - metabolites: !!omap - - s_2783: -2 - - s_2785: 1 - - s_2791: -1 - - s_2939: -1 - - s_2942: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2315" - - name: "dihydroxyacetone phosphate acyltransferase (18:1), ER membrane" - - metabolites: !!omap - - s_2783: -2 - - s_2785: 1 - - s_2821: -1 - - s_2939: -1 - - s_2943: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2316" - - name: "glycerol-3-phosphate acyltransferase (16:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_0769: -1 - - s_2783: -2 - - s_2847: -1 - - s_2944: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2317" - - name: "glycerol-3-phosphate acyltransferase (16:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_0769: -1 - - s_2783: -2 - - s_2849: -1 - - s_2945: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2318" - - name: "glycerol-3-phosphate acyltransferase (18:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_0769: -1 - - s_2783: -2 - - s_2851: -1 - - s_2946: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2319" - - name: "glycerol-3-phosphate acyltransferase (18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_0769: -1 - - s_2783: -2 - - s_2853: -1 - - s_2947: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2320" - - name: "dihydroxyacetone phosphate acyltransferase (16:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_0631: -1 - - s_0798: -2 - - s_2847: -1 - - s_2948: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2321" - - name: "dihydroxyacetone phosphate acyltransferase (16:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_0631: -1 - - s_0798: -2 - - s_2849: -1 - - s_2949: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2322" - - name: "dihydroxyacetone phosphate acyltransferase (18:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_0631: -1 - - s_0798: -2 - - s_2851: -1 - - s_2950: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2323" - - name: "dihydroxyacetone phosphate acyltransferase (18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_0631: -1 - - s_0798: -2 - - s_2853: -1 - - s_2951: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR067W" - - annotation: !!omap - - ec-code: - - "2.3.1.15" - - "2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2324" - - name: "acyl dhap reductase (16:0), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2799: -1 - - s_2800: 1 - - s_2935: 1 - - s_2940: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL124W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2308" + - name: "glycerol-3-phosphate acyltransferase (16:0), ER membrane" + - metabolites: !!omap + - s_2783: -2 + - s_2785: 1 + - s_2789: -1 + - s_2934: -1 + - s_2935: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL011W or YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2309" + - name: "glycerol-3-phosphate acyltransferase (16:1), ER membrane" + - metabolites: !!omap + - s_2783: -2 + - s_2785: 1 + - s_2819: -1 + - s_2934: -1 + - s_2936: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL011W or YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2310" + - name: "glycerol-3-phosphate acyltransferase (18:0), ER membrane" + - metabolites: !!omap + - s_2783: -2 + - s_2785: 1 + - s_2791: -1 + - s_2934: -1 + - s_2937: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2311" + - name: "glycerol-3-phosphate acyltransferase (18:1), ER membrane" + - metabolites: !!omap + - s_2783: -2 + - s_2785: 1 + - s_2821: -1 + - s_2934: -1 + - s_2938: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2312" + - name: "dihydroxyacetone phosphate acyltransferase (16:0), ER membrane" + - metabolites: !!omap + - s_2783: -2 + - s_2785: 1 + - s_2789: -1 + - s_2939: -1 + - s_2940: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL011W or YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2313" + - name: "dihydroxyacetone phosphate acyltransferase (16:1), ER membrane" + - metabolites: !!omap + - s_2783: -2 + - s_2785: 1 + - s_2819: -1 + - s_2939: -1 + - s_2941: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL011W or YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2314" + - name: "dihydroxyacetone phosphate acyltransferase (18:0), ER membrane" + - metabolites: !!omap + - s_2783: -2 + - s_2785: 1 + - s_2791: -1 + - s_2939: -1 + - s_2942: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2315" + - name: "dihydroxyacetone phosphate acyltransferase (18:1), ER membrane" + - metabolites: !!omap + - s_2783: -2 + - s_2785: 1 + - s_2821: -1 + - s_2939: -1 + - s_2943: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2316" + - name: "glycerol-3-phosphate acyltransferase (16:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_0769: -1 + - s_2783: -2 + - s_2847: -1 + - s_2944: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2317" + - name: "glycerol-3-phosphate acyltransferase (16:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_0769: -1 + - s_2783: -2 + - s_2849: -1 + - s_2945: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2318" + - name: "glycerol-3-phosphate acyltransferase (18:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_0769: -1 + - s_2783: -2 + - s_2851: -1 + - s_2946: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2319" + - name: "glycerol-3-phosphate acyltransferase (18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_0769: -1 + - s_2783: -2 + - s_2853: -1 + - s_2947: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2320" + - name: "dihydroxyacetone phosphate acyltransferase (16:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_0631: -1 + - s_0798: -2 + - s_2847: -1 + - s_2948: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2321" + - name: "dihydroxyacetone phosphate acyltransferase (16:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_0631: -1 + - s_0798: -2 + - s_2849: -1 + - s_2949: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2322" + - name: "dihydroxyacetone phosphate acyltransferase (18:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_0631: -1 + - s_0798: -2 + - s_2851: -1 + - s_2950: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2323" + - name: "dihydroxyacetone phosphate acyltransferase (18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_0631: -1 + - s_0798: -2 + - s_2853: -1 + - s_2951: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR067W" + - eccodes: "2.3.1.15; 2.3.1.42" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2324" + - name: "acyl dhap reductase (16:0), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2799: -1 + - s_2800: 1 + - s_2935: 1 + - s_2940: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL124W" + - eccodes: "1.1.1.101" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2325" - - name: "acyl dhap reductase (16:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2799: -1 - - s_2800: 1 - - s_2936: 1 - - s_2941: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL124W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2325" + - name: "acyl dhap reductase (16:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2799: -1 + - s_2800: 1 + - s_2936: 1 + - s_2941: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL124W" + - eccodes: "1.1.1.101" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2326" - - name: "acyl dhap reductase (18:0), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2799: -1 - - s_2800: 1 - - s_2937: 1 - - s_2942: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL124W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2326" + - name: "acyl dhap reductase (18:0), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2799: -1 + - s_2800: 1 + - s_2937: 1 + - s_2942: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL124W" + - eccodes: "1.1.1.101" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2327" - - name: "acyl dhap reductase (18:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2799: -1 - - s_2800: 1 - - s_2938: 1 - - s_2943: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL124W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2327" + - name: "acyl dhap reductase (18:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2799: -1 + - s_2800: 1 + - s_2938: 1 + - s_2943: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL124W" + - eccodes: "1.1.1.101" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2328" - - name: "acyl dhap reductase (16:0), lipid particle" - - metabolites: !!omap - - s_0798: -1 - - s_2944: 1 - - s_2948: -1 - - s_2952: -1 - - s_2953: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL124W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2328" + - name: "acyl dhap reductase (16:0), lipid particle" + - metabolites: !!omap + - s_0798: -1 + - s_2944: 1 + - s_2948: -1 + - s_2952: -1 + - s_2953: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL124W" + - eccodes: "1.1.1.101" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2329" - - name: "acyl dhap reductase (16:1), lipid particle" - - metabolites: !!omap - - s_0798: -1 - - s_2945: 1 - - s_2949: -1 - - s_2952: -1 - - s_2953: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL124W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2329" + - name: "acyl dhap reductase (16:1), lipid particle" + - metabolites: !!omap + - s_0798: -1 + - s_2945: 1 + - s_2949: -1 + - s_2952: -1 + - s_2953: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL124W" + - eccodes: "1.1.1.101" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2330" - - name: "acyl dhap reductase (18:0), lipid particle" - - metabolites: !!omap - - s_0798: -1 - - s_2946: 1 - - s_2950: -1 - - s_2952: -1 - - s_2953: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL124W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2330" + - name: "acyl dhap reductase (18:0), lipid particle" + - metabolites: !!omap + - s_0798: -1 + - s_2946: 1 + - s_2950: -1 + - s_2952: -1 + - s_2953: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL124W" + - eccodes: "1.1.1.101" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2331" - - name: "acyl dhap reductase (18:1), lipid particle" - - metabolites: !!omap - - s_0798: -1 - - s_2947: 1 - - s_2951: -1 - - s_2952: -1 - - s_2953: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL124W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2331" + - name: "acyl dhap reductase (18:1), lipid particle" + - metabolites: !!omap + - s_0798: -1 + - s_2947: 1 + - s_2951: -1 + - s_2952: -1 + - s_2953: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL124W" + - eccodes: "1.1.1.101" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2332" - - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_2935: -1 - - s_2954: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR175C" - - annotation: !!omap - - ec-code: - - "2.3.1.23" - - "2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2333" - - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_2935: -1 - - s_2955: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL052C or YOR175C" - - annotation: !!omap - - ec-code: - - "2.3.1.23" - - "2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2334" - - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_2936: -1 - - s_2956: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR175C" - - annotation: !!omap - - ec-code: - - "2.3.1.23" - - "2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2335" - - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_2936: -1 - - s_2957: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL052C or YOR175C" - - annotation: !!omap - - ec-code: - - "2.3.1.23" - - "2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2336" - - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_2937: -1 - - s_2958: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR175C" - - annotation: !!omap - - ec-code: - - "2.3.1.23" - - "2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2337" - - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_2937: -1 - - s_2959: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL052C or YOR175C" - - annotation: !!omap - - ec-code: - - "2.3.1.23" - - "2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2338" - - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_2938: -1 - - s_2960: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR175C" - - annotation: !!omap - - ec-code: - - "2.3.1.23" - - "2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2339" - - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_2938: -1 - - s_2961: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL052C or YOR175C" - - annotation: !!omap - - ec-code: - - "2.3.1.23" - - "2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2340" - - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_2944: -1 - - s_2962: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - - annotation: !!omap - - ec-code: - - "2.3.1.51" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2341" - - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_2945: -1 - - s_2963: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - - annotation: !!omap - - ec-code: - - "2.3.1.51" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2342" - - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_2946: -1 - - s_2964: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - - annotation: !!omap - - ec-code: - - "2.3.1.51" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2343" - - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_2947: -1 - - s_2965: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - - annotation: !!omap - - ec-code: - - "2.3.1.51" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2344" - - name: "PA phosphatase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2954: -1 - - s_2966: 1 - - s_2967: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR165C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2332" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_2935: -1 + - s_2954: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR175C" + - eccodes: "2.3.1.23; 2.3.1.51" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2333" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_2935: -1 + - s_2955: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL052C or YOR175C" + - eccodes: "2.3.1.23; 2.3.1.51" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2334" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_2936: -1 + - s_2956: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR175C" + - eccodes: "2.3.1.23; 2.3.1.51" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2335" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_2936: -1 + - s_2957: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL052C or YOR175C" + - eccodes: "2.3.1.23; 2.3.1.51" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2336" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_2937: -1 + - s_2958: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR175C" + - eccodes: "2.3.1.23; 2.3.1.51" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2337" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_2937: -1 + - s_2959: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL052C or YOR175C" + - eccodes: "2.3.1.23; 2.3.1.51" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2338" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_2938: -1 + - s_2960: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR175C" + - eccodes: "2.3.1.23; 2.3.1.51" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2339" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_2938: -1 + - s_2961: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL052C or YOR175C" + - eccodes: "2.3.1.23; 2.3.1.51" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2340" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_2944: -1 + - s_2962: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" + - eccodes: "2.3.1.51; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.51; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2341" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_2945: -1 + - s_2963: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" + - eccodes: "2.3.1.51; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.51; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2342" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_2946: -1 + - s_2964: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" + - eccodes: "2.3.1.51; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.51; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2343" + - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_2947: -1 + - s_2965: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" + - eccodes: "2.3.1.51; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.51; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2344" + - name: "PA phosphatase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2954: -1 + - s_2966: 1 + - s_2967: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR165C" + - eccodes: "3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.4" - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2345" - - name: "PA phosphatase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2955: -1 - - s_2966: 1 - - s_2968: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR165C" - - annotation: !!omap + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2345" + - name: "PA phosphatase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2955: -1 + - s_2966: 1 + - s_2968: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR165C" + - eccodes: "3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.4" - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2346" - - name: "PA phosphatase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2956: -1 - - s_2966: 1 - - s_2969: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR165C" - - annotation: !!omap + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2346" + - name: "PA phosphatase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2956: -1 + - s_2966: 1 + - s_2969: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR165C" + - eccodes: "3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.4" - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2347" - - name: "PA phosphatase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2957: -1 - - s_2966: 1 - - s_2970: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR165C" - - annotation: !!omap + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2347" + - name: "PA phosphatase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2957: -1 + - s_2966: 1 + - s_2970: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR165C" + - eccodes: "3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.4" - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2348" - - name: "PA phosphatase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2958: -1 - - s_2966: 1 - - s_2971: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR165C" - - annotation: !!omap + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2348" + - name: "PA phosphatase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2958: -1 + - s_2966: 1 + - s_2971: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR165C" + - eccodes: "3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.4" - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2349" - - name: "PA phosphatase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2959: -1 - - s_2966: 1 - - s_2972: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR165C" - - annotation: !!omap + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2349" + - name: "PA phosphatase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2959: -1 + - s_2966: 1 + - s_2972: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR165C" + - eccodes: "3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.4" - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2350" - - name: "PA phosphatase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2960: -1 - - s_2966: 1 - - s_2973: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR165C" - - annotation: !!omap + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2350" + - name: "PA phosphatase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2960: -1 + - s_2966: 1 + - s_2973: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR165C" + - eccodes: "3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.4" - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2351" - - name: "PA phosphatase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2961: -1 - - s_2966: 1 - - s_2974: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR165C" - - annotation: !!omap + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2351" + - name: "PA phosphatase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2961: -1 + - s_2966: 1 + - s_2974: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR165C" + - eccodes: "3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.4" - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2352" - - name: "PA phosphatase (1-16:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2975: -1 - - s_2976: -1 - - s_2977: 1 - - s_2978: 1 - - s_3164: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2353" - - name: "PA phosphatase (1-16:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2979: -1 - - s_2980: 1 - - s_3164: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2354" - - name: "PA phosphatase (1-16:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2981: -1 - - s_2982: 1 - - s_3164: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2355" - - name: "PA phosphatase (1-16:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2983: -1 - - s_2984: 1 - - s_3164: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2356" - - name: "PA phosphatase (1-18:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2985: -1 - - s_2986: 1 - - s_3164: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2357" - - name: "PA phosphatase (1-18:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2987: -1 - - s_2988: 1 - - s_3164: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2358" - - name: "PA phosphatase (1-18:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2989: -1 - - s_2990: 1 - - s_3164: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2359" - - name: "PA phosphatase (1-18:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2991: -1 - - s_2992: 1 - - s_3164: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2360" - - name: "PA phosphatase (1-16:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2993: -1 - - s_2994: -1 - - s_2995: 1 - - s_2996: 1 - - s_3146: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2361" - - name: "PA phosphatase (1-16:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_2997: -1 - - s_2998: 1 - - s_3146: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2362" - - name: "PA phosphatase (1-16:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_2999: -1 - - s_3000: 1 - - s_3146: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2363" - - name: "PA phosphatase (1-16:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3001: -1 - - s_3002: 1 - - s_3146: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2364" - - name: "PA phosphatase (1-18:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3003: -1 - - s_3004: 1 - - s_3146: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2365" - - name: "PA phosphatase (1-18:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3005: -1 - - s_3006: 1 - - s_3146: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2366" - - name: "PA phosphatase (1-18:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3007: -1 - - s_3008: 1 - - s_3146: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2367" - - name: "PA phosphatase (1-18:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3009: -1 - - s_3010: 1 - - s_3146: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2368" - - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2789: -1 - - s_2967: -1 - - s_3011: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2369" - - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2789: -1 - - s_2968: -1 - - s_3012: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2370" - - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2789: -1 - - s_2969: -1 - - s_3013: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2371" - - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2789: -1 - - s_2970: -1 - - s_3014: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2372" - - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2789: -1 - - s_2971: -1 - - s_3015: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2373" - - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2789: -1 - - s_2972: -1 - - s_3016: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2374" - - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2789: -1 - - s_2973: -1 - - s_3017: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2375" - - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2789: -1 - - s_2974: -1 - - s_3018: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2376" - - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_2967: -1 - - s_3019: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2377" - - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_2968: -1 - - s_3020: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2378" - - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_2969: -1 - - s_3021: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2379" - - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_2970: -1 - - s_3022: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2380" - - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_2971: -1 - - s_3023: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2381" - - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_2972: -1 - - s_3024: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2382" - - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_2973: -1 - - s_3025: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2383" - - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2819: -1 - - s_2974: -1 - - s_3026: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2384" - - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2791: -1 - - s_2967: -1 - - s_3027: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2385" - - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2791: -1 - - s_2968: -1 - - s_3028: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2386" - - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2791: -1 - - s_2969: -1 - - s_3029: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2387" - - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2791: -1 - - s_2970: -1 - - s_3030: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2388" - - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2791: -1 - - s_2971: -1 - - s_3031: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2389" - - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2791: -1 - - s_2972: -1 - - s_3032: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2390" - - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2791: -1 - - s_2973: -1 - - s_3033: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2391" - - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:0), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2791: -1 - - s_2974: -1 - - s_3034: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2392" - - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_2967: -1 - - s_3035: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2393" - - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_2968: -1 - - s_3036: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2394" - - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_2969: -1 - - s_3037: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2395" - - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_2970: -1 - - s_3038: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2396" - - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_2971: -1 - - s_3039: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2397" - - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_2972: -1 - - s_3040: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2398" - - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_2973: -1 - - s_3041: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2399" - - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2821: -1 - - s_2974: -1 - - s_3042: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" - - "2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2400" - - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2847: -1 - - s_3043: -1 - - s_3044: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2352" + - name: "PA phosphatase (1-16:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2975: -1 + - s_2976: -1 + - s_2977: 1 + - s_2978: 1 + - s_3164: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2353" + - name: "PA phosphatase (1-16:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2979: -1 + - s_2980: 1 + - s_3164: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2354" + - name: "PA phosphatase (1-16:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2981: -1 + - s_2982: 1 + - s_3164: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2355" + - name: "PA phosphatase (1-16:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2983: -1 + - s_2984: 1 + - s_3164: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2356" + - name: "PA phosphatase (1-18:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2985: -1 + - s_2986: 1 + - s_3164: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2357" + - name: "PA phosphatase (1-18:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2987: -1 + - s_2988: 1 + - s_3164: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2358" + - name: "PA phosphatase (1-18:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2989: -1 + - s_2990: 1 + - s_3164: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2359" + - name: "PA phosphatase (1-18:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2991: -1 + - s_2992: 1 + - s_3164: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2360" + - name: "PA phosphatase (1-16:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2993: -1 + - s_2994: -1 + - s_2995: 1 + - s_2996: 1 + - s_3146: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2361" + - name: "PA phosphatase (1-16:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_2997: -1 + - s_2998: 1 + - s_3146: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2362" + - name: "PA phosphatase (1-16:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_2999: -1 + - s_3000: 1 + - s_3146: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2363" + - name: "PA phosphatase (1-16:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3001: -1 + - s_3002: 1 + - s_3146: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2364" + - name: "PA phosphatase (1-18:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3003: -1 + - s_3004: 1 + - s_3146: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2365" + - name: "PA phosphatase (1-18:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3005: -1 + - s_3006: 1 + - s_3146: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2366" + - name: "PA phosphatase (1-18:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3007: -1 + - s_3008: 1 + - s_3146: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2367" + - name: "PA phosphatase (1-18:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3009: -1 + - s_3010: 1 + - s_3146: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2368" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2789: -1 + - s_2967: -1 + - s_3011: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2369" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2789: -1 + - s_2968: -1 + - s_3012: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2370" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2789: -1 + - s_2969: -1 + - s_3013: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2371" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2789: -1 + - s_2970: -1 + - s_3014: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2372" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2789: -1 + - s_2971: -1 + - s_3015: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2373" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2789: -1 + - s_2972: -1 + - s_3016: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2374" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2789: -1 + - s_2973: -1 + - s_3017: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2375" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2789: -1 + - s_2974: -1 + - s_3018: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2376" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_2967: -1 + - s_3019: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2377" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_2968: -1 + - s_3020: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2378" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_2969: -1 + - s_3021: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2379" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_2970: -1 + - s_3022: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2380" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_2971: -1 + - s_3023: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2381" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_2972: -1 + - s_3024: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2382" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_2973: -1 + - s_3025: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2383" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2819: -1 + - s_2974: -1 + - s_3026: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2384" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2791: -1 + - s_2967: -1 + - s_3027: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2385" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2791: -1 + - s_2968: -1 + - s_3028: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2386" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2791: -1 + - s_2969: -1 + - s_3029: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2387" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2791: -1 + - s_2970: -1 + - s_3030: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2388" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2791: -1 + - s_2971: -1 + - s_3031: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2389" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2791: -1 + - s_2972: -1 + - s_3032: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2390" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2791: -1 + - s_2973: -1 + - s_3033: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2391" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:0), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2791: -1 + - s_2974: -1 + - s_3034: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2392" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_2967: -1 + - s_3035: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2393" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_2968: -1 + - s_3036: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2394" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_2969: -1 + - s_3037: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2395" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_2970: -1 + - s_3038: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2396" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_2971: -1 + - s_3039: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2397" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_2972: -1 + - s_3040: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2398" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_2973: -1 + - s_3041: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2399" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2821: -1 + - s_2974: -1 + - s_3042: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2400" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2847: -1 + - s_3043: -1 + - s_3044: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2401" - - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2847: -1 - - s_3045: -1 - - s_3046: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2401" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2847: -1 + - s_3045: -1 + - s_3046: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2402" - - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2847: -1 - - s_3047: -1 - - s_3048: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2402" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2847: -1 + - s_3047: -1 + - s_3048: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2403" - - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2847: -1 - - s_3049: -1 - - s_3050: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2403" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2847: -1 + - s_3049: -1 + - s_3050: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2404" - - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2847: -1 - - s_3051: -1 - - s_3052: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2404" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2847: -1 + - s_3051: -1 + - s_3052: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2405" - - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2847: -1 - - s_3053: -1 - - s_3054: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2405" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2847: -1 + - s_3053: -1 + - s_3054: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2406" - - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2847: -1 - - s_3055: -1 - - s_3056: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2406" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2847: -1 + - s_3055: -1 + - s_3056: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2407" - - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2847: -1 - - s_3057: -1 - - s_3058: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2407" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2847: -1 + - s_3057: -1 + - s_3058: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2408" - - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2849: -1 - - s_3043: -1 - - s_3059: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2408" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2849: -1 + - s_3043: -1 + - s_3059: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2409" - - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2849: -1 - - s_3045: -1 - - s_3060: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2409" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2849: -1 + - s_3045: -1 + - s_3060: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2410" - - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2849: -1 - - s_3047: -1 - - s_3061: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2410" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2849: -1 + - s_3047: -1 + - s_3061: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2411" - - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2849: -1 - - s_3049: -1 - - s_3062: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2411" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2849: -1 + - s_3049: -1 + - s_3062: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2412" - - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2849: -1 - - s_3051: -1 - - s_3063: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2412" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2849: -1 + - s_3051: -1 + - s_3063: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2413" - - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2849: -1 - - s_3053: -1 - - s_3064: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2413" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2849: -1 + - s_3053: -1 + - s_3064: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2414" - - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2849: -1 - - s_3055: -1 - - s_3065: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2414" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2849: -1 + - s_3055: -1 + - s_3065: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2415" - - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2849: -1 - - s_3057: -1 - - s_3066: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2415" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2849: -1 + - s_3057: -1 + - s_3066: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2416" - - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2851: -1 - - s_3043: -1 - - s_3067: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2416" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2851: -1 + - s_3043: -1 + - s_3067: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2417" - - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2851: -1 - - s_3045: -1 - - s_3068: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2417" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2851: -1 + - s_3045: -1 + - s_3068: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2418" - - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2851: -1 - - s_3047: -1 - - s_3069: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2418" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2851: -1 + - s_3047: -1 + - s_3069: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2419" - - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2851: -1 - - s_3049: -1 - - s_3070: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2419" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2851: -1 + - s_3049: -1 + - s_3070: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2420" - - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2851: -1 - - s_3051: -1 - - s_3071: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2420" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2851: -1 + - s_3051: -1 + - s_3071: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2421" - - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2851: -1 - - s_3053: -1 - - s_3072: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2421" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2851: -1 + - s_3053: -1 + - s_3072: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2422" - - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2851: -1 - - s_3055: -1 - - s_3073: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2422" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2851: -1 + - s_3055: -1 + - s_3073: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2423" - - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2851: -1 - - s_3057: -1 - - s_3074: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2423" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2851: -1 + - s_3057: -1 + - s_3074: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2424" - - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_3043: -1 - - s_3075: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2424" + - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_3043: -1 + - s_3075: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2425" - - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_3045: -1 - - s_3076: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2425" + - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_3045: -1 + - s_3076: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2426" - - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_3047: -1 - - s_3077: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2426" + - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_3047: -1 + - s_3077: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2427" - - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_3049: -1 - - s_3078: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2427" + - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_3049: -1 + - s_3078: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2428" - - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_3051: -1 - - s_3079: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2428" + - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_3051: -1 + - s_3079: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2429" - - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_3053: -1 - - s_3080: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2429" + - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_3053: -1 + - s_3080: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2430" - - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_3055: -1 - - s_3081: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2430" + - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_3055: -1 + - s_3081: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2431" - - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_3057: -1 - - s_3082: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR245C" - - annotation: !!omap - - ec-code: - - "2.3.1.20" - - "2.3.1.22" + - confidence_score: 3 + - !!omap + - id: "r_2431" + - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_3057: -1 + - s_3082: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR245C" + - eccodes: "2.3.1.20; 2.3.1.22" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2432" - - name: "CDP-diacylglycerol synthase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2834: 1 - - s_2954: -1 - - s_3083: -1 - - s_3084: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2432" + - name: "CDP-diacylglycerol synthase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2834: 1 + - s_2954: -1 + - s_3083: -1 + - s_3084: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2433" - - name: "CDP-diacylglycerol synthase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2834: 1 - - s_2956: -1 - - s_3083: -1 - - s_3085: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2433" + - name: "CDP-diacylglycerol synthase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2834: 1 + - s_2956: -1 + - s_3083: -1 + - s_3085: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2434" - - name: "CDP-diacylglycerol synthase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2834: 1 - - s_2958: -1 - - s_3083: -1 - - s_3086: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2434" + - name: "CDP-diacylglycerol synthase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2834: 1 + - s_2958: -1 + - s_3083: -1 + - s_3086: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2435" - - name: "CDP-diacylglycerol synthase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2834: 1 - - s_2960: -1 - - s_3083: -1 - - s_3087: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2435" + - name: "CDP-diacylglycerol synthase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2834: 1 + - s_2960: -1 + - s_3083: -1 + - s_3087: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2436" - - name: "CDP-diacylglycerol synthase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2834: 1 - - s_2955: -1 - - s_3083: -1 - - s_3088: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2436" + - name: "CDP-diacylglycerol synthase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2834: 1 + - s_2955: -1 + - s_3083: -1 + - s_3088: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2437" - - name: "CDP-diacylglycerol synthase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2834: 1 - - s_2957: -1 - - s_3083: -1 - - s_3089: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2437" + - name: "CDP-diacylglycerol synthase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2834: 1 + - s_2957: -1 + - s_3083: -1 + - s_3089: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2438" - - name: "CDP-diacylglycerol synthase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2834: 1 - - s_2959: -1 - - s_3083: -1 - - s_3090: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2438" + - name: "CDP-diacylglycerol synthase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2834: 1 + - s_2959: -1 + - s_3083: -1 + - s_3090: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2439" - - name: "CDP-diacylglycerol synthase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2834: 1 - - s_2961: -1 - - s_3083: -1 - - s_3091: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2439" + - name: "CDP-diacylglycerol synthase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2834: 1 + - s_2961: -1 + - s_3083: -1 + - s_3091: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2440" - - name: "CDP-diacylglycerol synthase (1-16:0, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3092: -1 - - s_3093: -1 - - s_3094: -1 - - s_3095: 1 - - s_3096: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2440" + - name: "CDP-diacylglycerol synthase (1-16:0, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3092: -1 + - s_3093: -1 + - s_3094: -1 + - s_3095: 1 + - s_3096: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2441" - - name: "CDP-diacylglycerol synthase (1-16:1, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3093: -1 - - s_3094: -1 - - s_3095: 1 - - s_3097: -1 - - s_3098: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2441" + - name: "CDP-diacylglycerol synthase (1-16:1, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3093: -1 + - s_3094: -1 + - s_3095: 1 + - s_3097: -1 + - s_3098: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2442" - - name: "CDP-diacylglycerol synthase (1-18:0, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3093: -1 - - s_3094: -1 - - s_3095: 1 - - s_3099: -1 - - s_3100: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2442" + - name: "CDP-diacylglycerol synthase (1-18:0, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3093: -1 + - s_3094: -1 + - s_3095: 1 + - s_3099: -1 + - s_3100: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2443" - - name: "CDP-diacylglycerol synthase (1-18:1, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3093: -1 - - s_3094: -1 - - s_3095: 1 - - s_3101: -1 - - s_3102: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2443" + - name: "CDP-diacylglycerol synthase (1-18:1, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3093: -1 + - s_3094: -1 + - s_3095: 1 + - s_3101: -1 + - s_3102: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2444" - - name: "CDP-diacylglycerol synthase (1-16:0, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3093: -1 - - s_3094: -1 - - s_3095: 1 - - s_3103: -1 - - s_3104: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2444" + - name: "CDP-diacylglycerol synthase (1-16:0, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3093: -1 + - s_3094: -1 + - s_3095: 1 + - s_3103: -1 + - s_3104: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2445" - - name: "CDP-diacylglycerol synthase (1-16:1, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3093: -1 - - s_3094: -1 - - s_3095: 1 - - s_3105: -1 - - s_3106: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR029C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2445" + - name: "CDP-diacylglycerol synthase (1-16:1, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3093: -1 + - s_3094: -1 + - s_3095: 1 + - s_3105: -1 + - s_3106: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR029C" + - eccodes: "2.7.7.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2446" - - name: "PS synthase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3084: -1 - - s_3107: -1 - - s_3108: 1 - - s_3109: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER026C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2446" + - name: "PS synthase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3084: -1 + - s_3107: -1 + - s_3108: 1 + - s_3109: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER026C" + - eccodes: "2.7.8.8" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.8" - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2447" - - name: "PS synthase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3085: -1 - - s_3107: -1 - - s_3108: 1 - - s_3110: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER026C" - - annotation: !!omap + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2447" + - name: "PS synthase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3085: -1 + - s_3107: -1 + - s_3108: 1 + - s_3110: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER026C" + - eccodes: "2.7.8.8" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.8" - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2448" - - name: "PS synthase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3086: -1 - - s_3107: -1 - - s_3108: 1 - - s_3111: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER026C" - - annotation: !!omap + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2448" + - name: "PS synthase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3086: -1 + - s_3107: -1 + - s_3108: 1 + - s_3111: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER026C" + - eccodes: "2.7.8.8" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.8" - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2449" - - name: "PS synthase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3087: -1 - - s_3107: -1 - - s_3108: 1 - - s_3112: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER026C" - - annotation: !!omap + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2449" + - name: "PS synthase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3087: -1 + - s_3107: -1 + - s_3108: 1 + - s_3112: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER026C" + - eccodes: "2.7.8.8" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.8" - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2450" - - name: "PS synthase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3088: -1 - - s_3107: -1 - - s_3108: 1 - - s_3113: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER026C" - - annotation: !!omap + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2450" + - name: "PS synthase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3088: -1 + - s_3107: -1 + - s_3108: 1 + - s_3113: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER026C" + - eccodes: "2.7.8.8" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.8" - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2451" - - name: "PS synthase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3089: -1 - - s_3107: -1 - - s_3108: 1 - - s_3114: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER026C" - - annotation: !!omap + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2451" + - name: "PS synthase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3089: -1 + - s_3107: -1 + - s_3108: 1 + - s_3114: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER026C" + - eccodes: "2.7.8.8" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.8" - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2452" - - name: "PS synthase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3090: -1 - - s_3107: -1 - - s_3108: 1 - - s_3115: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER026C" - - annotation: !!omap + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2452" + - name: "PS synthase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3090: -1 + - s_3107: -1 + - s_3108: 1 + - s_3115: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER026C" + - eccodes: "2.7.8.8" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.8" - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2453" - - name: "PS synthase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3091: -1 - - s_3107: -1 - - s_3108: 1 - - s_3116: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER026C" - - annotation: !!omap + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2453" + - name: "PS synthase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3091: -1 + - s_3107: -1 + - s_3108: 1 + - s_3116: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER026C" + - eccodes: "2.7.8.8" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.8" - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2454" - - name: "PI synthase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3084: -1 - - s_3108: 1 - - s_3117: -1 - - s_3118: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR113W" - - annotation: !!omap + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2454" + - name: "PI synthase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3084: -1 + - s_3108: 1 + - s_3117: -1 + - s_3118: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR113W" + - eccodes: "2.7.8.11" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.11" - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2455" - - name: "PI synthase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3085: -1 - - s_3108: 1 - - s_3117: -1 - - s_3119: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR113W" - - annotation: !!omap + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2455" + - name: "PI synthase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3085: -1 + - s_3108: 1 + - s_3117: -1 + - s_3119: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR113W" + - eccodes: "2.7.8.11" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.11" - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2456" - - name: "PI synthase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3086: -1 - - s_3108: 1 - - s_3117: -1 - - s_3120: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR113W" - - annotation: !!omap + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2456" + - name: "PI synthase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3086: -1 + - s_3108: 1 + - s_3117: -1 + - s_3120: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR113W" + - eccodes: "2.7.8.11" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.11" - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2457" - - name: "PI synthase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3087: -1 - - s_3108: 1 - - s_3117: -1 - - s_3121: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR113W" - - annotation: !!omap + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2457" + - name: "PI synthase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3087: -1 + - s_3108: 1 + - s_3117: -1 + - s_3121: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR113W" + - eccodes: "2.7.8.11" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.11" - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2458" - - name: "PI synthase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3088: -1 - - s_3108: 1 - - s_3117: -1 - - s_3122: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR113W" - - annotation: !!omap + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2458" + - name: "PI synthase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3088: -1 + - s_3108: 1 + - s_3117: -1 + - s_3122: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR113W" + - eccodes: "2.7.8.11" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.11" - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2459" - - name: "PI synthase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3089: -1 - - s_3108: 1 - - s_3117: -1 - - s_3123: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR113W" - - annotation: !!omap + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2459" + - name: "PI synthase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3089: -1 + - s_3108: 1 + - s_3117: -1 + - s_3123: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR113W" + - eccodes: "2.7.8.11" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.11" - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2460" - - name: "PI synthase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3090: -1 - - s_3108: 1 - - s_3117: -1 - - s_3124: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR113W" - - annotation: !!omap + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2460" + - name: "PI synthase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3090: -1 + - s_3108: 1 + - s_3117: -1 + - s_3124: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR113W" + - eccodes: "2.7.8.11" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.11" - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2461" - - name: "PI synthase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_3091: -1 - - s_3108: 1 - - s_3117: -1 - - s_3125: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPR113W" - - annotation: !!omap + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2461" + - name: "PI synthase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_3091: -1 + - s_3108: 1 + - s_3117: -1 + - s_3125: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR113W" + - eccodes: "2.7.8.11" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.11" - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2462" - - name: "lysoPI acyltransferase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2791: -1 - - s_3120: 1 - - s_3126: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR042C" - - annotation: !!omap + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2462" + - name: "lysoPI acyltransferase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2791: -1 + - s_3120: 1 + - s_3126: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR042C" + - eccodes: "2.3.-.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.-.-" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2463" - - name: "lysoPI acyltransferase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2785: 1 - - s_2791: -1 - - s_3124: 1 - - s_3127: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR042C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2463" + - name: "lysoPI acyltransferase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2785: 1 + - s_2791: -1 + - s_3124: 1 + - s_3127: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR042C" + - eccodes: "2.3.-.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.-.-" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2464" - - name: "PS decarboxylase (1-16:0, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3128: -1 - - s_3129: 1 - - s_3130: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL169C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2464" + - name: "PS decarboxylase (1-16:0, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3128: -1 + - s_3129: 1 + - s_3130: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL169C" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2465" - - name: "PS decarboxylase (1-16:1, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3129: 1 - - s_3131: -1 - - s_3132: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL169C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2465" + - name: "PS decarboxylase (1-16:1, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3129: 1 + - s_3131: -1 + - s_3132: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL169C" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2466" - - name: "PS decarboxylase (1-18:0, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3129: 1 - - s_3133: -1 - - s_3134: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL169C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2466" + - name: "PS decarboxylase (1-18:0, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3129: 1 + - s_3133: -1 + - s_3134: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL169C" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2467" - - name: "PS decarboxylase (1-18:1, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3129: 1 - - s_3135: -1 - - s_3136: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL169C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2467" + - name: "PS decarboxylase (1-18:1, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3129: 1 + - s_3135: -1 + - s_3136: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL169C" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2468" - - name: "PS decarboxylase (1-16:0, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3129: 1 - - s_3137: -1 - - s_3138: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL169C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2468" + - name: "PS decarboxylase (1-16:0, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3129: 1 + - s_3137: -1 + - s_3138: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL169C" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2469" - - name: "PS decarboxylase (1-16:1, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3129: 1 - - s_3139: -1 - - s_3140: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL169C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2469" + - name: "PS decarboxylase (1-16:1, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3129: 1 + - s_3139: -1 + - s_3140: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL169C" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2470" - - name: "PS decarboxylase (1-18:0, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3129: 1 - - s_3141: -1 - - s_3142: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL169C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2470" + - name: "PS decarboxylase (1-18:0, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3129: 1 + - s_3141: -1 + - s_3142: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL169C" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2471" - - name: "PS decarboxylase (1-18:1, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3129: 1 - - s_3143: -1 - - s_3144: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL169C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2471" + - name: "PS decarboxylase (1-18:1, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3129: 1 + - s_3143: -1 + - s_3144: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL169C" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2472" - - name: "PS decarboxylase (1-16:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_3145: -1 - - s_3147: 1 - - s_3148: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2472" + - name: "PS decarboxylase (1-16:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_3145: -1 + - s_3147: 1 + - s_3148: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2473" - - name: "PS decarboxylase (1-16:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_3147: 1 - - s_3149: -1 - - s_3150: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2473" + - name: "PS decarboxylase (1-16:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_3147: 1 + - s_3149: -1 + - s_3150: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2474" - - name: "PS decarboxylase (1-18:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_3147: 1 - - s_3151: -1 - - s_3152: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2474" + - name: "PS decarboxylase (1-18:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_3147: 1 + - s_3151: -1 + - s_3152: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2475" - - name: "PS decarboxylase (1-18:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_3147: 1 - - s_3153: -1 - - s_3154: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2475" + - name: "PS decarboxylase (1-18:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_3147: 1 + - s_3153: -1 + - s_3154: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2476" - - name: "PS decarboxylase (1-16:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_3147: 1 - - s_3155: -1 - - s_3156: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2476" + - name: "PS decarboxylase (1-16:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_3147: 1 + - s_3155: -1 + - s_3156: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2477" - - name: "PS decarboxylase (1-16:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_3147: 1 - - s_3157: -1 - - s_3158: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2477" + - name: "PS decarboxylase (1-16:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_3147: 1 + - s_3157: -1 + - s_3158: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2478" - - name: "PS decarboxylase (1-18:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_3147: 1 - - s_3159: -1 - - s_3160: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2478" + - name: "PS decarboxylase (1-18:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_3147: 1 + - s_3159: -1 + - s_3160: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2479" - - name: "PS decarboxylase (1-18:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_3147: 1 - - s_3161: -1 - - s_3162: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2479" + - name: "PS decarboxylase (1-18:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_3147: 1 + - s_3161: -1 + - s_3162: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2480" - - name: "PS decarboxylase (1-16:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3163: -1 - - s_3165: 1 - - s_3166: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2480" + - name: "PS decarboxylase (1-16:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3163: -1 + - s_3165: 1 + - s_3166: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2481" - - name: "PS decarboxylase (1-16:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3165: 1 - - s_3167: -1 - - s_3168: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2481" + - name: "PS decarboxylase (1-16:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3165: 1 + - s_3167: -1 + - s_3168: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2482" - - name: "PS decarboxylase (1-18:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3165: 1 - - s_3169: -1 - - s_3170: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2482" + - name: "PS decarboxylase (1-18:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3165: 1 + - s_3169: -1 + - s_3170: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2483" - - name: "PS decarboxylase (1-18:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3165: 1 - - s_3171: -1 - - s_3172: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2483" + - name: "PS decarboxylase (1-18:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3165: 1 + - s_3171: -1 + - s_3172: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2484" - - name: "PS decarboxylase (1-16:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3165: 1 - - s_3173: -1 - - s_3174: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2484" + - name: "PS decarboxylase (1-16:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3165: 1 + - s_3173: -1 + - s_3174: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2485" - - name: "PS decarboxylase (1-16:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3165: 1 - - s_3175: -1 - - s_3176: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2485" + - name: "PS decarboxylase (1-16:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3165: 1 + - s_3175: -1 + - s_3176: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2486" - - name: "PS decarboxylase (1-18:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3165: 1 - - s_3177: -1 - - s_3178: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2486" + - name: "PS decarboxylase (1-18:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3165: 1 + - s_3177: -1 + - s_3178: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2487" - - name: "PS decarboxylase (1-18:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3165: 1 - - s_3179: -1 - - s_3180: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR170W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2487" + - name: "PS decarboxylase (1-18:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3165: 1 + - s_3179: -1 + - s_3180: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR170W" + - eccodes: "4.1.1.65" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.65" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2488" - - name: "PE methyltransferase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3181: -1 - - s_3182: -1 - - s_3183: 1 - - s_3184: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR157W or YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2489" - - name: "PE methyltransferase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3185: -1 - - s_3186: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR157W or YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2490" - - name: "PE methyltransferase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3187: -1 - - s_3188: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR157W or YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2491" - - name: "PE methyltransferase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3189: -1 - - s_3190: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR157W or YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2492" - - name: "PE methyltransferase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3191: -1 - - s_3192: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR157W or YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2493" - - name: "PE methyltransferase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3193: -1 - - s_3194: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR157W or YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2494" - - name: "PE methyltransferase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3195: -1 - - s_3196: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR157W or YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2495" - - name: "PE methyltransferase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3197: -1 - - s_3198: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR157W or YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2496" - - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3184: -1 - - s_3199: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2497" - - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3186: -1 - - s_3200: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2498" - - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3188: -1 - - s_3201: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2499" - - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3190: -1 - - s_3202: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2500" - - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3192: -1 - - s_3203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2501" - - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3194: -1 - - s_3204: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2502" - - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3196: -1 - - s_3205: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2503" - - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3198: -1 - - s_3206: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2504" - - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3199: -1 - - s_3207: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2505" - - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3200: -1 - - s_3208: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2506" - - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3201: -1 - - s_3209: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2507" - - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3202: -1 - - s_3210: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2508" - - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3203: -1 - - s_3211: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2509" - - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3204: -1 - - s_3212: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2510" - - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3205: -1 - - s_3213: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2511" - - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_3182: -1 - - s_3183: 1 - - s_3206: -1 - - s_3214: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR073C" - - annotation: !!omap - - ec-code: - - "2.1.1.17" - - "2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2512" - - name: "DAG kinase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2954: 1 - - s_2967: -1 - - s_3083: -1 - - s_3215: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR311C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2488" + - name: "PE methyltransferase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3181: -1 + - s_3182: -1 + - s_3183: 1 + - s_3184: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR157W or YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2489" + - name: "PE methyltransferase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3185: -1 + - s_3186: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR157W or YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2490" + - name: "PE methyltransferase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3187: -1 + - s_3188: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR157W or YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2491" + - name: "PE methyltransferase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3189: -1 + - s_3190: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR157W or YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2492" + - name: "PE methyltransferase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3191: -1 + - s_3192: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR157W or YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2493" + - name: "PE methyltransferase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3193: -1 + - s_3194: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR157W or YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2494" + - name: "PE methyltransferase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3195: -1 + - s_3196: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR157W or YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2495" + - name: "PE methyltransferase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3197: -1 + - s_3198: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR157W or YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2496" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3184: -1 + - s_3199: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2497" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3186: -1 + - s_3200: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2498" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3188: -1 + - s_3201: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2499" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3190: -1 + - s_3202: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2500" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3192: -1 + - s_3203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2501" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3194: -1 + - s_3204: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2502" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3196: -1 + - s_3205: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2503" + - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3198: -1 + - s_3206: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2504" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3199: -1 + - s_3207: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2505" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3200: -1 + - s_3208: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2506" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3201: -1 + - s_3209: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2507" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3202: -1 + - s_3210: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2508" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3203: -1 + - s_3211: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2509" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3204: -1 + - s_3212: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2510" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3205: -1 + - s_3213: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2511" + - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_3182: -1 + - s_3183: 1 + - s_3206: -1 + - s_3214: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR073C" + - eccodes: "2.1.1.17; 2.1.1.71" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2512" + - name: "DAG kinase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2954: 1 + - s_2967: -1 + - s_3083: -1 + - s_3215: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR311C" + - eccodes: "2.7.1.174" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.174" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2513" - - name: "DAG kinase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2956: 1 - - s_2969: -1 - - s_3083: -1 - - s_3215: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR311C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2513" + - name: "DAG kinase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2956: 1 + - s_2969: -1 + - s_3083: -1 + - s_3215: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR311C" + - eccodes: "2.7.1.174" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.174" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2514" - - name: "DAG kinase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2958: 1 - - s_2971: -1 - - s_3083: -1 - - s_3215: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR311C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2514" + - name: "DAG kinase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2958: 1 + - s_2971: -1 + - s_3083: -1 + - s_3215: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR311C" + - eccodes: "2.7.1.174" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.174" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2515" - - name: "DAG kinase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2960: 1 - - s_2973: -1 - - s_3083: -1 - - s_3215: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR311C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2515" + - name: "DAG kinase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2960: 1 + - s_2973: -1 + - s_3083: -1 + - s_3215: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR311C" + - eccodes: "2.7.1.174" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.174" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2516" - - name: "DAG kinase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2955: 1 - - s_2968: -1 - - s_3083: -1 - - s_3215: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR311C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2516" + - name: "DAG kinase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2955: 1 + - s_2968: -1 + - s_3083: -1 + - s_3215: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR311C" + - eccodes: "2.7.1.174" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.174" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2517" - - name: "DAG kinase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2957: 1 - - s_2970: -1 - - s_3083: -1 - - s_3215: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR311C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2517" + - name: "DAG kinase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2957: 1 + - s_2970: -1 + - s_3083: -1 + - s_3215: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR311C" + - eccodes: "2.7.1.174" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.174" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2518" - - name: "DAG kinase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2959: 1 - - s_2972: -1 - - s_3083: -1 - - s_3215: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR311C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2518" + - name: "DAG kinase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2959: 1 + - s_2972: -1 + - s_3083: -1 + - s_3215: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR311C" + - eccodes: "2.7.1.174" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.174" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2519" - - name: "DAG kinase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: -1 - - s_2961: 1 - - s_2974: -1 - - s_3083: -1 - - s_3215: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR311C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2519" + - name: "DAG kinase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: -1 + - s_2961: 1 + - s_2974: -1 + - s_3083: -1 + - s_3215: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR311C" + - eccodes: "2.7.1.174" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.174" - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2520" - - name: "ethanolaminephosphotransferase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2967: -1 - - s_3108: 1 - - s_3181: 1 - - s_3216: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2521" - - name: "ethanolaminephosphotransferase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2969: -1 - - s_3108: 1 - - s_3185: 1 - - s_3216: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2522" - - name: "ethanolaminephosphotransferase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2971: -1 - - s_3108: 1 - - s_3187: 1 - - s_3216: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2523" - - name: "ethanolaminephosphotransferase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2973: -1 - - s_3108: 1 - - s_3189: 1 - - s_3216: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2524" - - name: "ethanolaminephosphotransferase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2968: -1 - - s_3108: 1 - - s_3191: 1 - - s_3216: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2525" - - name: "ethanolaminephosphotransferase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2970: -1 - - s_3108: 1 - - s_3193: 1 - - s_3216: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2526" - - name: "ethanolaminephosphotransferase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2972: -1 - - s_3108: 1 - - s_3195: 1 - - s_3216: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2527" - - name: "ethanolaminephosphotransferase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2974: -1 - - s_3108: 1 - - s_3197: 1 - - s_3216: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2528" - - name: "cholinephosphotransferase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2967: -1 - - s_3108: 1 - - s_3207: 1 - - s_3217: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W or YNL130C" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2529" - - name: "cholinephosphotransferase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2969: -1 - - s_3108: 1 - - s_3208: 1 - - s_3217: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W or YNL130C" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2530" - - name: "cholinephosphotransferase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2971: -1 - - s_3108: 1 - - s_3209: 1 - - s_3217: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W or YNL130C" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2531" - - name: "cholinephosphotransferase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2973: -1 - - s_3108: 1 - - s_3210: 1 - - s_3217: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W or YNL130C" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2532" - - name: "cholinephosphotransferase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2968: -1 - - s_3108: 1 - - s_3211: 1 - - s_3217: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W or YNL130C" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2533" - - name: "cholinephosphotransferase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2970: -1 - - s_3108: 1 - - s_3212: 1 - - s_3217: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W or YNL130C" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2534" - - name: "cholinephosphotransferase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2972: -1 - - s_3108: 1 - - s_3213: 1 - - s_3217: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W or YNL130C" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2535" - - name: "cholinephosphotransferase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2974: -1 - - s_3108: 1 - - s_3214: 1 - - s_3217: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR123W or YNL130C" - - annotation: !!omap - - ec-code: - - "2.7.8.1" - - "2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2536" - - name: "phosphatidylglycerolphosphate synthase (1-16:0, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3096: -1 - - s_3218: -1 - - s_3219: 1 - - s_3220: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL004W" - - annotation: !!omap + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2520" + - name: "ethanolaminephosphotransferase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2967: -1 + - s_3108: 1 + - s_3181: 1 + - s_3216: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2521" + - name: "ethanolaminephosphotransferase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2969: -1 + - s_3108: 1 + - s_3185: 1 + - s_3216: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2522" + - name: "ethanolaminephosphotransferase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2971: -1 + - s_3108: 1 + - s_3187: 1 + - s_3216: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2523" + - name: "ethanolaminephosphotransferase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2973: -1 + - s_3108: 1 + - s_3189: 1 + - s_3216: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2524" + - name: "ethanolaminephosphotransferase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2968: -1 + - s_3108: 1 + - s_3191: 1 + - s_3216: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2525" + - name: "ethanolaminephosphotransferase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2970: -1 + - s_3108: 1 + - s_3193: 1 + - s_3216: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2526" + - name: "ethanolaminephosphotransferase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2972: -1 + - s_3108: 1 + - s_3195: 1 + - s_3216: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2527" + - name: "ethanolaminephosphotransferase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2974: -1 + - s_3108: 1 + - s_3197: 1 + - s_3216: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2528" + - name: "cholinephosphotransferase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2967: -1 + - s_3108: 1 + - s_3207: 1 + - s_3217: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W or YNL130C" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2529" + - name: "cholinephosphotransferase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2969: -1 + - s_3108: 1 + - s_3208: 1 + - s_3217: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W or YNL130C" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2530" + - name: "cholinephosphotransferase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2971: -1 + - s_3108: 1 + - s_3209: 1 + - s_3217: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W or YNL130C" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2531" + - name: "cholinephosphotransferase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2973: -1 + - s_3108: 1 + - s_3210: 1 + - s_3217: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W or YNL130C" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2532" + - name: "cholinephosphotransferase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2968: -1 + - s_3108: 1 + - s_3211: 1 + - s_3217: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W or YNL130C" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2533" + - name: "cholinephosphotransferase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2970: -1 + - s_3108: 1 + - s_3212: 1 + - s_3217: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W or YNL130C" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2534" + - name: "cholinephosphotransferase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2972: -1 + - s_3108: 1 + - s_3213: 1 + - s_3217: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W or YNL130C" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2535" + - name: "cholinephosphotransferase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2974: -1 + - s_3108: 1 + - s_3214: 1 + - s_3217: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR123W or YNL130C" + - eccodes: "2.7.8.1; 2.7.8.2" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2536" + - name: "phosphatidylglycerolphosphate synthase (1-16:0, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3096: -1 + - s_3218: -1 + - s_3219: 1 + - s_3220: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL004W" + - eccodes: "2.7.8.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2537" - - name: "phosphatidylglycerolphosphate synthase (1-16:1, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3098: -1 - - s_3218: -1 - - s_3219: 1 - - s_3221: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL004W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2537" + - name: "phosphatidylglycerolphosphate synthase (1-16:1, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3098: -1 + - s_3218: -1 + - s_3219: 1 + - s_3221: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL004W" + - eccodes: "2.7.8.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2538" - - name: "phosphatidylglycerolphosphate synthase (1-18:0, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3100: -1 - - s_3218: -1 - - s_3219: 1 - - s_3222: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL004W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2538" + - name: "phosphatidylglycerolphosphate synthase (1-18:0, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3100: -1 + - s_3218: -1 + - s_3219: 1 + - s_3222: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL004W" + - eccodes: "2.7.8.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2539" - - name: "phosphatidylglycerolphosphate synthase (1-18:1, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3102: -1 - - s_3218: -1 - - s_3219: 1 - - s_3223: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL004W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2539" + - name: "phosphatidylglycerolphosphate synthase (1-18:1, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3102: -1 + - s_3218: -1 + - s_3219: 1 + - s_3223: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL004W" + - eccodes: "2.7.8.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2540" - - name: "phosphatidylglycerolphosphate synthase (1-16:0, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3104: -1 - - s_3218: -1 - - s_3219: 1 - - s_3224: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL004W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2540" + - name: "phosphatidylglycerolphosphate synthase (1-16:0, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3104: -1 + - s_3218: -1 + - s_3219: 1 + - s_3224: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL004W" + - eccodes: "2.7.8.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2541" - - name: "phosphatidylglycerolphosphate synthase (1-16:1, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3106: -1 - - s_3218: -1 - - s_3219: 1 - - s_3225: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCL004W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2541" + - name: "phosphatidylglycerolphosphate synthase (1-16:1, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3106: -1 + - s_3218: -1 + - s_3219: 1 + - s_3225: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCL004W" + - eccodes: "2.7.8.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2542" - - name: "PGP phosphatase (1-16:0, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3220: -1 - - s_3226: -1 - - s_3227: 1 - - s_3228: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR100C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2542" + - name: "PGP phosphatase (1-16:0, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3220: -1 + - s_3226: -1 + - s_3227: 1 + - s_3228: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR100C" + - eccodes: "3.1.3.27" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.27" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2543" - - name: "PGP phosphatase (1-16:1, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3221: -1 - - s_3226: -1 - - s_3228: 1 - - s_3229: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR100C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2543" + - name: "PGP phosphatase (1-16:1, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3221: -1 + - s_3226: -1 + - s_3228: 1 + - s_3229: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR100C" + - eccodes: "3.1.3.27" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.27" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2544" - - name: "PGP phosphatase (1-18:0, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3222: -1 - - s_3226: -1 - - s_3228: 1 - - s_3230: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR100C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2544" + - name: "PGP phosphatase (1-18:0, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3222: -1 + - s_3226: -1 + - s_3228: 1 + - s_3230: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR100C" + - eccodes: "3.1.3.27" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.27" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2545" - - name: "PGP phosphatase (1-18:1, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3223: -1 - - s_3226: -1 - - s_3228: 1 - - s_3231: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR100C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2545" + - name: "PGP phosphatase (1-18:1, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3223: -1 + - s_3226: -1 + - s_3228: 1 + - s_3231: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR100C" + - eccodes: "3.1.3.27" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.27" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2546" - - name: "PGP phosphatase (1-16:0, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3224: -1 - - s_3226: -1 - - s_3228: 1 - - s_3232: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR100C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2546" + - name: "PGP phosphatase (1-16:0, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3224: -1 + - s_3226: -1 + - s_3228: 1 + - s_3232: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR100C" + - eccodes: "3.1.3.27" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.27" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2547" - - name: "PGP phosphatase (1-16:1, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3225: -1 - - s_3226: -1 - - s_3228: 1 - - s_3233: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR100C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2547" + - name: "PGP phosphatase (1-16:1, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3225: -1 + - s_3226: -1 + - s_3228: 1 + - s_3233: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR100C" + - eccodes: "3.1.3.27" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.27" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2548" - - name: "CL synthase (1-16:0, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3096: -1 - - s_3219: 1 - - s_3227: -1 - - s_3234: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2548" + - name: "CL synthase (1-16:0, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3096: -1 + - s_3219: 1 + - s_3227: -1 + - s_3234: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2549" - - name: "CL synthase (1-16:0, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3096: -1 - - s_3219: 1 - - s_3229: -1 - - s_3235: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2549" + - name: "CL synthase (1-16:0, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3096: -1 + - s_3219: 1 + - s_3229: -1 + - s_3235: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2550" - - name: "CL synthase (1-16:0, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3096: -1 - - s_3219: 1 - - s_3230: -1 - - s_3236: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2550" + - name: "CL synthase (1-16:0, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3096: -1 + - s_3219: 1 + - s_3230: -1 + - s_3236: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2551" - - name: "CL synthase (1-16:0, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3096: -1 - - s_3219: 1 - - s_3231: -1 - - s_3237: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2551" + - name: "CL synthase (1-16:0, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3096: -1 + - s_3219: 1 + - s_3231: -1 + - s_3237: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2552" - - name: "CL synthase (1-16:0, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3096: -1 - - s_3219: 1 - - s_3232: -1 - - s_3238: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2552" + - name: "CL synthase (1-16:0, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3096: -1 + - s_3219: 1 + - s_3232: -1 + - s_3238: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2553" - - name: "CL synthase (1-16:0, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3096: -1 - - s_3219: 1 - - s_3233: -1 - - s_3239: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2553" + - name: "CL synthase (1-16:0, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3096: -1 + - s_3219: 1 + - s_3233: -1 + - s_3239: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2554" - - name: "CL synthase (1-16:1, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3098: -1 - - s_3219: 1 - - s_3227: -1 - - s_3240: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2554" + - name: "CL synthase (1-16:1, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3098: -1 + - s_3219: 1 + - s_3227: -1 + - s_3240: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2555" - - name: "CL synthase (1-16:1, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3098: -1 - - s_3219: 1 - - s_3229: -1 - - s_3241: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2555" + - name: "CL synthase (1-16:1, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3098: -1 + - s_3219: 1 + - s_3229: -1 + - s_3241: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2556" - - name: "CL synthase (1-16:1, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3098: -1 - - s_3219: 1 - - s_3230: -1 - - s_3242: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2556" + - name: "CL synthase (1-16:1, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3098: -1 + - s_3219: 1 + - s_3230: -1 + - s_3242: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2557" - - name: "CL synthase (1-16:1, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3098: -1 - - s_3219: 1 - - s_3231: -1 - - s_3243: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2557" + - name: "CL synthase (1-16:1, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3098: -1 + - s_3219: 1 + - s_3231: -1 + - s_3243: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2558" - - name: "CL synthase (1-16:1, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3098: -1 - - s_3219: 1 - - s_3232: -1 - - s_3244: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2558" + - name: "CL synthase (1-16:1, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3098: -1 + - s_3219: 1 + - s_3232: -1 + - s_3244: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2559" - - name: "CL synthase (1-16:1, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3098: -1 - - s_3219: 1 - - s_3233: -1 - - s_3245: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2559" + - name: "CL synthase (1-16:1, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3098: -1 + - s_3219: 1 + - s_3233: -1 + - s_3245: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2560" - - name: "CL synthase (1-18:0, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3100: -1 - - s_3219: 1 - - s_3227: -1 - - s_3246: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2560" + - name: "CL synthase (1-18:0, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3100: -1 + - s_3219: 1 + - s_3227: -1 + - s_3246: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2561" - - name: "CL synthase (1-18:0, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3100: -1 - - s_3219: 1 - - s_3229: -1 - - s_3247: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2561" + - name: "CL synthase (1-18:0, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3100: -1 + - s_3219: 1 + - s_3229: -1 + - s_3247: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2562" - - name: "CL synthase (1-18:0, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3100: -1 - - s_3219: 1 - - s_3230: -1 - - s_3248: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2562" + - name: "CL synthase (1-18:0, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3100: -1 + - s_3219: 1 + - s_3230: -1 + - s_3248: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2563" - - name: "CL synthase (1-18:0, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3100: -1 - - s_3219: 1 - - s_3231: -1 - - s_3249: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2563" + - name: "CL synthase (1-18:0, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3100: -1 + - s_3219: 1 + - s_3231: -1 + - s_3249: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2564" - - name: "CL synthase (1-18:0, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3100: -1 - - s_3219: 1 - - s_3232: -1 - - s_3250: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2564" + - name: "CL synthase (1-18:0, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3100: -1 + - s_3219: 1 + - s_3232: -1 + - s_3250: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2565" - - name: "CL synthase (1-18:0, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3100: -1 - - s_3219: 1 - - s_3233: -1 - - s_3251: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2565" + - name: "CL synthase (1-18:0, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3100: -1 + - s_3219: 1 + - s_3233: -1 + - s_3251: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2566" - - name: "CL synthase (1-18:1, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3102: -1 - - s_3219: 1 - - s_3227: -1 - - s_3252: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2566" + - name: "CL synthase (1-18:1, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3102: -1 + - s_3219: 1 + - s_3227: -1 + - s_3252: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2567" - - name: "CL synthase (1-18:1, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3102: -1 - - s_3219: 1 - - s_3229: -1 - - s_3253: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2567" + - name: "CL synthase (1-18:1, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3102: -1 + - s_3219: 1 + - s_3229: -1 + - s_3253: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2568" - - name: "CL synthase (1-18:1, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3102: -1 - - s_3219: 1 - - s_3230: -1 - - s_3254: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2568" + - name: "CL synthase (1-18:1, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3102: -1 + - s_3219: 1 + - s_3230: -1 + - s_3254: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2569" - - name: "CL synthase (1-18:1, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3102: -1 - - s_3219: 1 - - s_3231: -1 - - s_3255: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2569" + - name: "CL synthase (1-18:1, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3102: -1 + - s_3219: 1 + - s_3231: -1 + - s_3255: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2570" - - name: "CL synthase (1-18:1, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3102: -1 - - s_3219: 1 - - s_3232: -1 - - s_3256: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2570" + - name: "CL synthase (1-18:1, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3102: -1 + - s_3219: 1 + - s_3232: -1 + - s_3256: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2571" - - name: "CL synthase (1-18:1, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3102: -1 - - s_3219: 1 - - s_3233: -1 - - s_3257: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2571" + - name: "CL synthase (1-18:1, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3102: -1 + - s_3219: 1 + - s_3233: -1 + - s_3257: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2572" - - name: "CL synthase (1-16:0, 2-18:1, 3-16:0, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3104: -1 - - s_3219: 1 - - s_3227: -1 - - s_3258: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2572" + - name: "CL synthase (1-16:0, 2-18:1, 3-16:0, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3104: -1 + - s_3219: 1 + - s_3227: -1 + - s_3258: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2573" - - name: "CL synthase (1-16:0, 2-18:1, 3-16:1, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3104: -1 - - s_3219: 1 - - s_3229: -1 - - s_3259: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2573" + - name: "CL synthase (1-16:0, 2-18:1, 3-16:1, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3104: -1 + - s_3219: 1 + - s_3229: -1 + - s_3259: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2574" - - name: "CL synthase (1-16:0, 2-18:1, 3-18:0, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3104: -1 - - s_3219: 1 - - s_3230: -1 - - s_3260: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2574" + - name: "CL synthase (1-16:0, 2-18:1, 3-18:0, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3104: -1 + - s_3219: 1 + - s_3230: -1 + - s_3260: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2575" - - name: "CL synthase (1-16:0, 2-18:1, 3-18:1, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3104: -1 - - s_3219: 1 - - s_3231: -1 - - s_3261: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2575" + - name: "CL synthase (1-16:0, 2-18:1, 3-18:1, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3104: -1 + - s_3219: 1 + - s_3231: -1 + - s_3261: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2576" - - name: "CL synthase (1-16:0, 2-18:1, 3-16:0, 4-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3104: -1 - - s_3219: 1 - - s_3232: -1 - - s_3262: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2576" + - name: "CL synthase (1-16:0, 2-18:1, 3-16:0, 4-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3104: -1 + - s_3219: 1 + - s_3232: -1 + - s_3262: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2577" - - name: "CL synthase (1-16:0, 2-18:1, 3-16:1, 4-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3104: -1 - - s_3219: 1 - - s_3233: -1 - - s_3263: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2577" + - name: "CL synthase (1-16:0, 2-18:1, 3-16:1, 4-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3104: -1 + - s_3219: 1 + - s_3233: -1 + - s_3263: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2578" - - name: "CL synthase (1-16:1, 2-18:1, 3-16:0, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3106: -1 - - s_3219: 1 - - s_3227: -1 - - s_3264: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2578" + - name: "CL synthase (1-16:1, 2-18:1, 3-16:0, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3106: -1 + - s_3219: 1 + - s_3227: -1 + - s_3264: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2579" - - name: "CL synthase (1-16:1, 2-18:1, 3-16:1, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3106: -1 - - s_3219: 1 - - s_3229: -1 - - s_3265: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2579" + - name: "CL synthase (1-16:1, 2-18:1, 3-16:1, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3106: -1 + - s_3219: 1 + - s_3229: -1 + - s_3265: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2580" - - name: "CL synthase (1-16:1, 2-18:1, 3-18:0, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3106: -1 - - s_3219: 1 - - s_3230: -1 - - s_3266: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2580" + - name: "CL synthase (1-16:1, 2-18:1, 3-18:0, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3106: -1 + - s_3219: 1 + - s_3230: -1 + - s_3266: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2581" - - name: "CL synthase (1-16:1, 2-18:1, 3-18:1, 4-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3106: -1 - - s_3219: 1 - - s_3231: -1 - - s_3267: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2581" + - name: "CL synthase (1-16:1, 2-18:1, 3-18:1, 4-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3106: -1 + - s_3219: 1 + - s_3231: -1 + - s_3267: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2582" - - name: "CL synthase (1-16:1, 2-18:1, 3-16:0, 4-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3106: -1 - - s_3219: 1 - - s_3232: -1 - - s_3268: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2582" + - name: "CL synthase (1-16:1, 2-18:1, 3-16:0, 4-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3106: -1 + - s_3219: 1 + - s_3232: -1 + - s_3268: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2583" - - name: "CL synthase (1-16:1, 2-18:1, 3-16:1, 4-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3106: -1 - - s_3219: 1 - - s_3233: -1 - - s_3269: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDL142C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2583" + - name: "CL synthase (1-16:1, 2-18:1, 3-16:1, 4-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3106: -1 + - s_3219: 1 + - s_3233: -1 + - s_3269: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL142C" + - eccodes: "2.7.8.41" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2584" - - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3234: -1 - - s_3270: 1 - - s_3271: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2584" + - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3234: -1 + - s_3270: 1 + - s_3271: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2585" - - name: "CL (1-16:0, 2-16:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3235: -1 - - s_3271: 1 - - s_3272: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2585" + - name: "CL (1-16:0, 2-16:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3235: -1 + - s_3271: 1 + - s_3272: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2586" - - name: "CL (1-16:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3236: -1 - - s_3271: 1 - - s_3273: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2586" + - name: "CL (1-16:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3236: -1 + - s_3271: 1 + - s_3273: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2587" - - name: "CL (1-16:0, 2-16:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3237: -1 - - s_3271: 1 - - s_3274: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2587" + - name: "CL (1-16:0, 2-16:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3237: -1 + - s_3271: 1 + - s_3274: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2588" - - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3238: -1 - - s_3271: 1 - - s_3275: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2588" + - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3238: -1 + - s_3271: 1 + - s_3275: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2589" - - name: "CL (1-16:0, 2-16:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3239: -1 - - s_3271: 1 - - s_3276: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2589" + - name: "CL (1-16:0, 2-16:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3239: -1 + - s_3271: 1 + - s_3276: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2590" - - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3246: -1 - - s_3270: 1 - - s_3277: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2590" + - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3246: -1 + - s_3270: 1 + - s_3277: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2591" - - name: "CL (1-18:0, 2-16:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3247: -1 - - s_3272: 1 - - s_3277: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2591" + - name: "CL (1-18:0, 2-16:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3247: -1 + - s_3272: 1 + - s_3277: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2592" - - name: "CL (1-18:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3248: -1 - - s_3273: 1 - - s_3277: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2592" + - name: "CL (1-18:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3248: -1 + - s_3273: 1 + - s_3277: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2593" - - name: "CL (1-18:0, 2-16:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3249: -1 - - s_3274: 1 - - s_3277: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2593" + - name: "CL (1-18:0, 2-16:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3249: -1 + - s_3274: 1 + - s_3277: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2594" - - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3250: -1 - - s_3275: 1 - - s_3277: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2594" + - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3250: -1 + - s_3275: 1 + - s_3277: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2595" - - name: "CL (1-18:0, 2-16:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3251: -1 - - s_3276: 1 - - s_3277: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2595" + - name: "CL (1-18:0, 2-16:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3251: -1 + - s_3276: 1 + - s_3277: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2596" - - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3258: -1 - - s_3271: 1 - - s_3278: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2596" + - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3258: -1 + - s_3271: 1 + - s_3278: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2597" - - name: "CL (1-16:0, 2-18:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3259: -1 - - s_3271: 1 - - s_3279: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2597" + - name: "CL (1-16:0, 2-18:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3259: -1 + - s_3271: 1 + - s_3279: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2598" - - name: "CL (1-16:0, 2-18:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3260: -1 - - s_3271: 1 - - s_3280: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2598" + - name: "CL (1-16:0, 2-18:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3260: -1 + - s_3271: 1 + - s_3280: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2599" - - name: "CL (1-16:0, 2-18:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3261: -1 - - s_3271: 1 - - s_3281: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2599" + - name: "CL (1-16:0, 2-18:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3261: -1 + - s_3271: 1 + - s_3281: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2600" - - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3262: -1 - - s_3271: 1 - - s_3282: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2600" + - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3262: -1 + - s_3271: 1 + - s_3282: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2601" - - name: "CL (1-16:0, 2-18:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3263: -1 - - s_3271: 1 - - s_3283: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2601" + - name: "CL (1-16:0, 2-18:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3263: -1 + - s_3271: 1 + - s_3283: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2602" - - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3234: -1 - - s_3271: 1 - - s_3284: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2602" + - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3234: -1 + - s_3271: 1 + - s_3284: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2603" - - name: "CL (1-16:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3236: -1 - - s_3277: 1 - - s_3284: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2603" + - name: "CL (1-16:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3236: -1 + - s_3277: 1 + - s_3284: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2604" - - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3238: -1 - - s_3271: 1 - - s_3285: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2604" + - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3238: -1 + - s_3271: 1 + - s_3285: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2605" - - name: "CL (1-16:1, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3240: -1 - - s_3271: 1 - - s_3286: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2605" + - name: "CL (1-16:1, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3240: -1 + - s_3271: 1 + - s_3286: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2606" - - name: "CL (1-16:1, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3242: -1 - - s_3277: 1 - - s_3286: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2606" + - name: "CL (1-16:1, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3242: -1 + - s_3277: 1 + - s_3286: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2607" - - name: "CL (1-16:1, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3244: -1 - - s_3271: 1 - - s_3287: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2607" + - name: "CL (1-16:1, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3244: -1 + - s_3271: 1 + - s_3287: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2608" - - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3246: -1 - - s_3271: 1 - - s_3288: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2608" + - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3246: -1 + - s_3271: 1 + - s_3288: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2609" - - name: "CL (1-18:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3248: -1 - - s_3277: 1 - - s_3288: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2609" + - name: "CL (1-18:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3248: -1 + - s_3277: 1 + - s_3288: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2610" - - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3250: -1 - - s_3271: 1 - - s_3289: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2610" + - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3250: -1 + - s_3271: 1 + - s_3289: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2611" - - name: "CL (1-18:1, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3252: -1 - - s_3271: 1 - - s_3290: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2611" + - name: "CL (1-18:1, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3252: -1 + - s_3271: 1 + - s_3290: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2612" - - name: "CL (1-18:1, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3254: -1 - - s_3277: 1 - - s_3290: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2612" + - name: "CL (1-18:1, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3254: -1 + - s_3277: 1 + - s_3290: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2613" - - name: "CL (1-18:1, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3256: -1 - - s_3271: 1 - - s_3291: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2613" + - name: "CL (1-18:1, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3256: -1 + - s_3271: 1 + - s_3291: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2614" - - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3258: -1 - - s_3271: 1 - - s_3292: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2614" + - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3258: -1 + - s_3271: 1 + - s_3292: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2615" - - name: "CL (1-16:0, 2-18:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3260: -1 - - s_3277: 1 - - s_3292: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2615" + - name: "CL (1-16:0, 2-18:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3260: -1 + - s_3277: 1 + - s_3292: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2616" - - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3262: -1 - - s_3271: 1 - - s_3293: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2616" + - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3262: -1 + - s_3271: 1 + - s_3293: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2617" - - name: "CL (1-16:1, 2-18:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3264: -1 - - s_3271: 1 - - s_3294: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2617" + - name: "CL (1-16:1, 2-18:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3264: -1 + - s_3271: 1 + - s_3294: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2618" - - name: "CL (1-16:1, 2-18:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3266: -1 - - s_3277: 1 - - s_3294: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2618" + - name: "CL (1-16:1, 2-18:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3266: -1 + - s_3277: 1 + - s_3294: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2619" - - name: "CL (1-16:1, 2-18:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 1 - - s_3226: -1 - - s_3268: -1 - - s_3271: 1 - - s_3295: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR110W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2619" + - name: "CL (1-16:1, 2-18:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 1 + - s_3226: -1 + - s_3268: -1 + - s_3271: 1 + - s_3295: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR110W" + - eccodes: "3.5.1.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2620" - - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3240: 1 - - s_3270: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2620" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3240: 1 + - s_3270: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2621" - - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3240: 1 - - s_3270: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2621" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3240: 1 + - s_3270: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2622" - - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3240: 1 - - s_3270: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2622" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3240: 1 + - s_3270: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2623" - - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3240: 1 - - s_3270: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2623" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3240: 1 + - s_3270: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2624" - - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3252: 1 - - s_3270: -1 - - s_3297: 1 - - s_3304: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2624" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3252: 1 + - s_3270: -1 + - s_3297: 1 + - s_3304: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2625" - - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3252: 1 - - s_3270: -1 - - s_3299: 1 - - s_3305: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2625" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3252: 1 + - s_3270: -1 + - s_3299: 1 + - s_3305: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2626" - - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3252: 1 - - s_3270: -1 - - s_3301: 1 - - s_3306: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2626" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3252: 1 + - s_3270: -1 + - s_3301: 1 + - s_3306: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2627" - - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3252: 1 - - s_3270: -1 - - s_3303: 1 - - s_3307: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2627" + - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3252: 1 + - s_3270: -1 + - s_3303: 1 + - s_3307: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2628" - - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3241: 1 - - s_3272: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2628" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3241: 1 + - s_3272: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2629" - - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3241: 1 - - s_3272: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2629" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3241: 1 + - s_3272: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2630" - - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3241: 1 - - s_3272: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2630" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3241: 1 + - s_3272: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2631" - - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3241: 1 - - s_3272: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2631" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3241: 1 + - s_3272: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2632" - - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3253: 1 - - s_3272: -1 - - s_3297: 1 - - s_3304: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2632" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3253: 1 + - s_3272: -1 + - s_3297: 1 + - s_3304: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2633" - - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3253: 1 - - s_3272: -1 - - s_3299: 1 - - s_3305: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2633" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3253: 1 + - s_3272: -1 + - s_3299: 1 + - s_3305: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2634" - - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3253: 1 - - s_3272: -1 - - s_3301: 1 - - s_3306: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2634" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3253: 1 + - s_3272: -1 + - s_3301: 1 + - s_3306: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2635" - - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3253: 1 - - s_3272: -1 - - s_3303: 1 - - s_3307: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2635" + - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3253: 1 + - s_3272: -1 + - s_3303: 1 + - s_3307: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2636" - - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3242: 1 - - s_3273: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2636" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3242: 1 + - s_3273: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2637" - - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3242: 1 - - s_3273: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2637" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3242: 1 + - s_3273: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2638" - - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3242: 1 - - s_3273: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2638" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3242: 1 + - s_3273: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2639" - - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3242: 1 - - s_3273: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2639" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3242: 1 + - s_3273: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2640" - - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3254: 1 - - s_3273: -1 - - s_3297: 1 - - s_3304: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2640" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3254: 1 + - s_3273: -1 + - s_3297: 1 + - s_3304: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2641" - - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3254: 1 - - s_3273: -1 - - s_3299: 1 - - s_3305: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2641" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3254: 1 + - s_3273: -1 + - s_3299: 1 + - s_3305: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2642" - - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3254: 1 - - s_3273: -1 - - s_3301: 1 - - s_3306: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2642" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3254: 1 + - s_3273: -1 + - s_3301: 1 + - s_3306: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2643" - - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3254: 1 - - s_3273: -1 - - s_3303: 1 - - s_3307: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2643" + - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3254: 1 + - s_3273: -1 + - s_3303: 1 + - s_3307: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2644" - - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3243: 1 - - s_3274: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2644" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3243: 1 + - s_3274: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2645" - - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3243: 1 - - s_3274: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2645" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3243: 1 + - s_3274: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2646" - - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3243: 1 - - s_3274: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2646" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3243: 1 + - s_3274: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2647" - - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3243: 1 - - s_3274: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2647" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3243: 1 + - s_3274: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2648" - - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3255: 1 - - s_3274: -1 - - s_3297: 1 - - s_3304: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2648" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3255: 1 + - s_3274: -1 + - s_3297: 1 + - s_3304: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2649" - - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3255: 1 - - s_3274: -1 - - s_3299: 1 - - s_3305: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2649" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3255: 1 + - s_3274: -1 + - s_3299: 1 + - s_3305: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2650" - - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3255: 1 - - s_3274: -1 - - s_3301: 1 - - s_3306: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2650" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3255: 1 + - s_3274: -1 + - s_3301: 1 + - s_3306: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2651" - - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3255: 1 - - s_3274: -1 - - s_3303: 1 - - s_3307: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2651" + - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3255: 1 + - s_3274: -1 + - s_3303: 1 + - s_3307: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2652" - - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3244: 1 - - s_3275: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2652" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3244: 1 + - s_3275: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2653" - - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3244: 1 - - s_3275: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2653" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3244: 1 + - s_3275: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2654" - - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3244: 1 - - s_3275: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2654" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3244: 1 + - s_3275: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2655" - - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3244: 1 - - s_3275: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2655" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3244: 1 + - s_3275: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2656" - - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3256: 1 - - s_3275: -1 - - s_3297: 1 - - s_3304: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2656" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3256: 1 + - s_3275: -1 + - s_3297: 1 + - s_3304: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2657" - - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3256: 1 - - s_3275: -1 - - s_3299: 1 - - s_3305: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2657" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3256: 1 + - s_3275: -1 + - s_3299: 1 + - s_3305: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2658" - - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3256: 1 - - s_3275: -1 - - s_3301: 1 - - s_3306: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2658" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3256: 1 + - s_3275: -1 + - s_3301: 1 + - s_3306: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2659" - - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3256: 1 - - s_3275: -1 - - s_3303: 1 - - s_3307: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2659" + - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3256: 1 + - s_3275: -1 + - s_3303: 1 + - s_3307: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2660" - - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3245: 1 - - s_3276: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2660" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3245: 1 + - s_3276: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2661" - - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3245: 1 - - s_3276: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2661" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3245: 1 + - s_3276: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2662" - - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3245: 1 - - s_3276: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2662" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3245: 1 + - s_3276: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2663" - - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3245: 1 - - s_3276: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2663" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3245: 1 + - s_3276: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2664" - - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3257: 1 - - s_3276: -1 - - s_3297: 1 - - s_3304: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2664" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3257: 1 + - s_3276: -1 + - s_3297: 1 + - s_3304: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2665" - - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3257: 1 - - s_3276: -1 - - s_3299: 1 - - s_3305: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2665" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3257: 1 + - s_3276: -1 + - s_3299: 1 + - s_3305: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2666" - - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3257: 1 - - s_3276: -1 - - s_3301: 1 - - s_3306: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2666" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3257: 1 + - s_3276: -1 + - s_3301: 1 + - s_3306: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2667" - - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3257: 1 - - s_3276: -1 - - s_3303: 1 - - s_3307: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2667" + - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3257: 1 + - s_3276: -1 + - s_3303: 1 + - s_3307: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2668" - - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3264: 1 - - s_3278: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2668" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3264: 1 + - s_3278: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2669" - - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3264: 1 - - s_3278: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2669" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3264: 1 + - s_3278: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2670" - - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3264: 1 - - s_3278: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2670" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3264: 1 + - s_3278: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2671" - - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3264: 1 - - s_3278: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2671" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3264: 1 + - s_3278: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2672" - - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3278: -1 - - s_3297: 1 - - s_3304: -1 - - s_3308: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2672" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3278: -1 + - s_3297: 1 + - s_3304: -1 + - s_3308: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2673" - - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3278: -1 - - s_3299: 1 - - s_3305: -1 - - s_3308: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2673" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3278: -1 + - s_3299: 1 + - s_3305: -1 + - s_3308: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2674" - - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3278: -1 - - s_3301: 1 - - s_3306: -1 - - s_3308: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2674" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3278: -1 + - s_3301: 1 + - s_3306: -1 + - s_3308: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2675" - - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3278: -1 - - s_3303: 1 - - s_3307: -1 - - s_3308: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2675" + - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3278: -1 + - s_3303: 1 + - s_3307: -1 + - s_3308: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2676" - - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3265: 1 - - s_3279: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2676" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3265: 1 + - s_3279: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2677" - - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3265: 1 - - s_3279: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2677" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3265: 1 + - s_3279: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2678" - - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3265: 1 - - s_3279: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2678" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3265: 1 + - s_3279: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2679" - - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3265: 1 - - s_3279: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2679" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3265: 1 + - s_3279: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2680" - - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3279: -1 - - s_3297: 1 - - s_3304: -1 - - s_3309: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2680" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3279: -1 + - s_3297: 1 + - s_3304: -1 + - s_3309: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2681" - - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3279: -1 - - s_3299: 1 - - s_3305: -1 - - s_3309: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2681" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3279: -1 + - s_3299: 1 + - s_3305: -1 + - s_3309: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2682" - - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3279: -1 - - s_3301: 1 - - s_3306: -1 - - s_3309: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2682" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3279: -1 + - s_3301: 1 + - s_3306: -1 + - s_3309: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2683" - - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3279: -1 - - s_3303: 1 - - s_3307: -1 - - s_3309: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2683" + - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3279: -1 + - s_3303: 1 + - s_3307: -1 + - s_3309: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2684" - - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3266: 1 - - s_3280: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2684" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3266: 1 + - s_3280: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2685" - - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3266: 1 - - s_3280: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2685" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3266: 1 + - s_3280: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2686" - - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3266: 1 - - s_3280: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2686" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3266: 1 + - s_3280: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2687" - - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3266: 1 - - s_3280: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2687" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3266: 1 + - s_3280: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2688" - - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3280: -1 - - s_3297: 1 - - s_3304: -1 - - s_3310: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2688" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3280: -1 + - s_3297: 1 + - s_3304: -1 + - s_3310: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2689" - - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3280: -1 - - s_3299: 1 - - s_3305: -1 - - s_3310: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2689" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3280: -1 + - s_3299: 1 + - s_3305: -1 + - s_3310: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2690" - - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3280: -1 - - s_3301: 1 - - s_3306: -1 - - s_3310: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2690" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3280: -1 + - s_3301: 1 + - s_3306: -1 + - s_3310: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2691" - - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3280: -1 - - s_3303: 1 - - s_3307: -1 - - s_3310: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2691" + - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3280: -1 + - s_3303: 1 + - s_3307: -1 + - s_3310: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2692" - - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3267: 1 - - s_3281: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2692" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3267: 1 + - s_3281: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2693" - - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3267: 1 - - s_3281: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2693" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3267: 1 + - s_3281: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2694" - - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3267: 1 - - s_3281: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2694" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3267: 1 + - s_3281: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2695" - - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3267: 1 - - s_3281: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2695" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3267: 1 + - s_3281: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2696" - - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3281: -1 - - s_3297: 1 - - s_3304: -1 - - s_3311: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2696" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3281: -1 + - s_3297: 1 + - s_3304: -1 + - s_3311: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2697" - - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3281: -1 - - s_3299: 1 - - s_3305: -1 - - s_3311: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2697" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3281: -1 + - s_3299: 1 + - s_3305: -1 + - s_3311: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2698" - - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3281: -1 - - s_3301: 1 - - s_3306: -1 - - s_3311: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2698" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3281: -1 + - s_3301: 1 + - s_3306: -1 + - s_3311: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2699" - - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3281: -1 - - s_3303: 1 - - s_3307: -1 - - s_3311: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2699" + - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3281: -1 + - s_3303: 1 + - s_3307: -1 + - s_3311: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2700" - - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3268: 1 - - s_3282: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2700" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3268: 1 + - s_3282: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2701" - - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3268: 1 - - s_3282: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2701" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3268: 1 + - s_3282: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2702" - - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3268: 1 - - s_3282: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2702" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3268: 1 + - s_3282: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2703" - - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3268: 1 - - s_3282: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2703" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3268: 1 + - s_3282: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2704" - - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3282: -1 - - s_3297: 1 - - s_3304: -1 - - s_3312: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2704" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3282: -1 + - s_3297: 1 + - s_3304: -1 + - s_3312: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2705" - - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3282: -1 - - s_3299: 1 - - s_3305: -1 - - s_3312: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2705" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3282: -1 + - s_3299: 1 + - s_3305: -1 + - s_3312: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2706" - - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3282: -1 - - s_3301: 1 - - s_3306: -1 - - s_3312: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2706" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3282: -1 + - s_3301: 1 + - s_3306: -1 + - s_3312: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2707" - - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3282: -1 - - s_3303: 1 - - s_3307: -1 - - s_3312: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2707" + - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3282: -1 + - s_3303: 1 + - s_3307: -1 + - s_3312: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2708" - - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3269: 1 - - s_3283: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2708" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3269: 1 + - s_3283: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2709" - - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3269: 1 - - s_3283: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2709" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3269: 1 + - s_3283: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2710" - - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3269: 1 - - s_3283: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2710" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3269: 1 + - s_3283: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2711" - - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3269: 1 - - s_3283: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2711" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3269: 1 + - s_3283: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2712" - - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3283: -1 - - s_3297: 1 - - s_3304: -1 - - s_3313: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2712" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3283: -1 + - s_3297: 1 + - s_3304: -1 + - s_3313: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2713" - - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3283: -1 - - s_3299: 1 - - s_3305: -1 - - s_3313: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2713" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3283: -1 + - s_3299: 1 + - s_3305: -1 + - s_3313: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2714" - - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3283: -1 - - s_3301: 1 - - s_3306: -1 - - s_3313: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2714" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3283: -1 + - s_3301: 1 + - s_3306: -1 + - s_3313: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2715" - - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3283: -1 - - s_3303: 1 - - s_3307: -1 - - s_3313: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2715" + - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3283: -1 + - s_3303: 1 + - s_3307: -1 + - s_3313: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2716" - - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3235: 1 - - s_3284: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2716" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3235: 1 + - s_3284: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2717" - - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3235: 1 - - s_3284: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2717" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3235: 1 + - s_3284: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2718" - - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3235: 1 - - s_3284: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2718" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3235: 1 + - s_3284: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2719" - - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3235: 1 - - s_3284: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2719" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3235: 1 + - s_3284: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2720" - - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3237: 1 - - s_3284: -1 - - s_3297: 1 - - s_3304: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2720" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3237: 1 + - s_3284: -1 + - s_3297: 1 + - s_3304: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2721" - - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3237: 1 - - s_3284: -1 - - s_3299: 1 - - s_3305: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2721" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3237: 1 + - s_3284: -1 + - s_3299: 1 + - s_3305: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2722" - - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3237: 1 - - s_3284: -1 - - s_3301: 1 - - s_3306: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2722" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3237: 1 + - s_3284: -1 + - s_3301: 1 + - s_3306: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2723" - - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3237: 1 - - s_3284: -1 - - s_3303: 1 - - s_3307: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2723" + - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3237: 1 + - s_3284: -1 + - s_3303: 1 + - s_3307: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2724" - - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3239: 1 - - s_3285: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2724" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3239: 1 + - s_3285: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2725" - - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3239: 1 - - s_3285: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2725" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3239: 1 + - s_3285: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2726" - - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3239: 1 - - s_3285: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2726" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3239: 1 + - s_3285: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2727" - - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3239: 1 - - s_3285: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2727" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3239: 1 + - s_3285: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2728" - - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3285: -1 - - s_3297: 1 - - s_3304: -1 - - s_3314: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2728" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3285: -1 + - s_3297: 1 + - s_3304: -1 + - s_3314: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2729" - - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3285: -1 - - s_3299: 1 - - s_3305: -1 - - s_3314: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2729" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3285: -1 + - s_3299: 1 + - s_3305: -1 + - s_3314: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2730" - - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3285: -1 - - s_3301: 1 - - s_3306: -1 - - s_3314: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2730" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3285: -1 + - s_3301: 1 + - s_3306: -1 + - s_3314: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2731" - - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3285: -1 - - s_3303: 1 - - s_3307: -1 - - s_3314: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2731" + - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3285: -1 + - s_3303: 1 + - s_3307: -1 + - s_3314: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2732" - - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3241: 1 - - s_3286: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2732" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3241: 1 + - s_3286: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2733" - - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3241: 1 - - s_3286: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2733" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3241: 1 + - s_3286: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2734" - - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3241: 1 - - s_3286: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2734" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3241: 1 + - s_3286: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2735" - - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3241: 1 - - s_3286: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2735" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3241: 1 + - s_3286: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2736" - - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3243: 1 - - s_3286: -1 - - s_3297: 1 - - s_3304: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2736" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3243: 1 + - s_3286: -1 + - s_3297: 1 + - s_3304: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2737" - - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3243: 1 - - s_3286: -1 - - s_3299: 1 - - s_3305: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2737" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3243: 1 + - s_3286: -1 + - s_3299: 1 + - s_3305: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2738" - - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3243: 1 - - s_3286: -1 - - s_3301: 1 - - s_3306: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2738" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3243: 1 + - s_3286: -1 + - s_3301: 1 + - s_3306: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2739" - - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3243: 1 - - s_3286: -1 - - s_3303: 1 - - s_3307: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2739" + - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3243: 1 + - s_3286: -1 + - s_3303: 1 + - s_3307: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2740" - - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3245: 1 - - s_3287: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2740" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3245: 1 + - s_3287: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2741" - - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3245: 1 - - s_3287: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2741" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3245: 1 + - s_3287: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2742" - - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3245: 1 - - s_3287: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2742" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3245: 1 + - s_3287: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2743" - - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3245: 1 - - s_3287: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2743" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3245: 1 + - s_3287: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2744" - - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3287: -1 - - s_3297: 1 - - s_3304: -1 - - s_3315: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2744" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3287: -1 + - s_3297: 1 + - s_3304: -1 + - s_3315: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2745" - - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3287: -1 - - s_3299: 1 - - s_3305: -1 - - s_3315: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2745" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3287: -1 + - s_3299: 1 + - s_3305: -1 + - s_3315: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2746" - - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3287: -1 - - s_3301: 1 - - s_3306: -1 - - s_3315: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2746" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3287: -1 + - s_3301: 1 + - s_3306: -1 + - s_3315: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2747" - - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3287: -1 - - s_3303: 1 - - s_3307: -1 - - s_3315: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2747" + - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3287: -1 + - s_3303: 1 + - s_3307: -1 + - s_3315: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2748" - - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3247: 1 - - s_3288: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2748" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3247: 1 + - s_3288: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2749" - - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3247: 1 - - s_3288: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2749" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3247: 1 + - s_3288: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2750" - - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3247: 1 - - s_3288: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2750" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3247: 1 + - s_3288: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2751" - - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3247: 1 - - s_3288: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2751" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3247: 1 + - s_3288: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2752" - - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3249: 1 - - s_3288: -1 - - s_3297: 1 - - s_3304: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2752" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3249: 1 + - s_3288: -1 + - s_3297: 1 + - s_3304: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2753" - - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3249: 1 - - s_3288: -1 - - s_3299: 1 - - s_3305: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2753" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3249: 1 + - s_3288: -1 + - s_3299: 1 + - s_3305: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2754" - - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3249: 1 - - s_3288: -1 - - s_3301: 1 - - s_3306: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2754" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3249: 1 + - s_3288: -1 + - s_3301: 1 + - s_3306: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2755" - - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3249: 1 - - s_3288: -1 - - s_3303: 1 - - s_3307: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2755" + - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3249: 1 + - s_3288: -1 + - s_3303: 1 + - s_3307: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2756" - - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3251: 1 - - s_3289: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2756" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3251: 1 + - s_3289: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2757" - - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3251: 1 - - s_3289: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2757" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3251: 1 + - s_3289: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2758" - - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3251: 1 - - s_3289: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2758" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3251: 1 + - s_3289: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2759" - - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3251: 1 - - s_3289: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2759" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3251: 1 + - s_3289: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2760" - - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3289: -1 - - s_3297: 1 - - s_3304: -1 - - s_3316: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2760" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3289: -1 + - s_3297: 1 + - s_3304: -1 + - s_3316: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2761" - - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3289: -1 - - s_3299: 1 - - s_3305: -1 - - s_3316: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2761" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3289: -1 + - s_3299: 1 + - s_3305: -1 + - s_3316: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2762" - - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3289: -1 - - s_3301: 1 - - s_3306: -1 - - s_3316: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2762" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3289: -1 + - s_3301: 1 + - s_3306: -1 + - s_3316: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2763" - - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3289: -1 - - s_3303: 1 - - s_3307: -1 - - s_3316: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2763" + - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3289: -1 + - s_3303: 1 + - s_3307: -1 + - s_3316: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2764" - - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3253: 1 - - s_3290: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2764" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3253: 1 + - s_3290: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2765" - - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3253: 1 - - s_3290: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2765" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3253: 1 + - s_3290: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2766" - - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3253: 1 - - s_3290: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2766" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3253: 1 + - s_3290: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2767" - - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3253: 1 - - s_3290: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2767" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3253: 1 + - s_3290: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2768" - - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3255: 1 - - s_3290: -1 - - s_3297: 1 - - s_3304: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2768" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3255: 1 + - s_3290: -1 + - s_3297: 1 + - s_3304: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2769" - - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3255: 1 - - s_3290: -1 - - s_3299: 1 - - s_3305: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2769" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3255: 1 + - s_3290: -1 + - s_3299: 1 + - s_3305: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2770" - - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3255: 1 - - s_3290: -1 - - s_3301: 1 - - s_3306: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2770" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3255: 1 + - s_3290: -1 + - s_3301: 1 + - s_3306: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2771" - - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3255: 1 - - s_3290: -1 - - s_3303: 1 - - s_3307: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2771" + - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3255: 1 + - s_3290: -1 + - s_3303: 1 + - s_3307: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2772" - - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3257: 1 - - s_3291: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2772" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3257: 1 + - s_3291: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2773" - - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3257: 1 - - s_3291: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2773" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3257: 1 + - s_3291: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2774" - - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3257: 1 - - s_3291: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2774" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3257: 1 + - s_3291: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2775" - - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3257: 1 - - s_3291: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2775" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3257: 1 + - s_3291: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2776" - - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3291: -1 - - s_3297: 1 - - s_3304: -1 - - s_3317: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2776" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3291: -1 + - s_3297: 1 + - s_3304: -1 + - s_3317: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2777" - - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3291: -1 - - s_3299: 1 - - s_3305: -1 - - s_3317: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2777" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3291: -1 + - s_3299: 1 + - s_3305: -1 + - s_3317: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2778" - - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3291: -1 - - s_3301: 1 - - s_3306: -1 - - s_3317: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2778" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3291: -1 + - s_3301: 1 + - s_3306: -1 + - s_3317: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2779" - - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3291: -1 - - s_3303: 1 - - s_3307: -1 - - s_3317: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2779" + - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3291: -1 + - s_3303: 1 + - s_3307: -1 + - s_3317: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2780" - - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3259: 1 - - s_3292: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2780" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3259: 1 + - s_3292: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2781" - - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3259: 1 - - s_3292: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2781" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3259: 1 + - s_3292: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2782" - - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3259: 1 - - s_3292: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2782" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3259: 1 + - s_3292: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2783" - - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3259: 1 - - s_3292: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2783" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3259: 1 + - s_3292: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2784" - - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3261: 1 - - s_3292: -1 - - s_3297: 1 - - s_3304: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2784" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3261: 1 + - s_3292: -1 + - s_3297: 1 + - s_3304: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2785" - - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3261: 1 - - s_3292: -1 - - s_3299: 1 - - s_3305: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2785" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3261: 1 + - s_3292: -1 + - s_3299: 1 + - s_3305: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2786" - - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3261: 1 - - s_3292: -1 - - s_3301: 1 - - s_3306: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2786" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3261: 1 + - s_3292: -1 + - s_3301: 1 + - s_3306: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2787" - - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3261: 1 - - s_3292: -1 - - s_3303: 1 - - s_3307: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2787" + - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3261: 1 + - s_3292: -1 + - s_3303: 1 + - s_3307: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2788" - - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3263: 1 - - s_3293: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2788" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3263: 1 + - s_3293: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2789" - - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3263: 1 - - s_3293: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2789" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3263: 1 + - s_3293: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2790" - - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3263: 1 - - s_3293: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2790" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3263: 1 + - s_3293: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2791" - - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3263: 1 - - s_3293: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2791" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3263: 1 + - s_3293: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2792" - - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3293: -1 - - s_3297: 1 - - s_3304: -1 - - s_3318: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2792" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3293: -1 + - s_3297: 1 + - s_3304: -1 + - s_3318: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2793" - - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3293: -1 - - s_3299: 1 - - s_3305: -1 - - s_3318: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2793" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3293: -1 + - s_3299: 1 + - s_3305: -1 + - s_3318: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2794" - - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3293: -1 - - s_3301: 1 - - s_3306: -1 - - s_3318: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2794" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3293: -1 + - s_3301: 1 + - s_3306: -1 + - s_3318: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2795" - - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3293: -1 - - s_3303: 1 - - s_3307: -1 - - s_3318: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2795" + - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3293: -1 + - s_3303: 1 + - s_3307: -1 + - s_3318: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2796" - - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3265: 1 - - s_3294: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2796" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3265: 1 + - s_3294: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2797" - - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3265: 1 - - s_3294: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2797" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3265: 1 + - s_3294: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2798" - - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3265: 1 - - s_3294: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2798" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3265: 1 + - s_3294: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2799" - - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3265: 1 - - s_3294: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2799" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3265: 1 + - s_3294: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2800" - - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3267: 1 - - s_3294: -1 - - s_3297: 1 - - s_3304: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2800" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3267: 1 + - s_3294: -1 + - s_3297: 1 + - s_3304: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2801" - - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3267: 1 - - s_3294: -1 - - s_3299: 1 - - s_3305: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2801" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3267: 1 + - s_3294: -1 + - s_3299: 1 + - s_3305: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2802" - - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3267: 1 - - s_3294: -1 - - s_3301: 1 - - s_3306: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2802" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3267: 1 + - s_3294: -1 + - s_3301: 1 + - s_3306: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2803" - - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3267: 1 - - s_3294: -1 - - s_3303: 1 - - s_3307: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2803" + - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3267: 1 + - s_3294: -1 + - s_3303: 1 + - s_3307: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2804" - - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3269: 1 - - s_3295: -1 - - s_3296: -1 - - s_3297: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2804" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3269: 1 + - s_3295: -1 + - s_3296: -1 + - s_3297: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2805" - - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3269: 1 - - s_3295: -1 - - s_3298: -1 - - s_3299: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2805" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3269: 1 + - s_3295: -1 + - s_3298: -1 + - s_3299: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2806" - - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3269: 1 - - s_3295: -1 - - s_3300: -1 - - s_3301: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2806" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3269: 1 + - s_3295: -1 + - s_3300: -1 + - s_3301: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2807" - - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3269: 1 - - s_3295: -1 - - s_3302: -1 - - s_3303: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2807" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3269: 1 + - s_3295: -1 + - s_3302: -1 + - s_3303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2808" - - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3295: -1 - - s_3297: 1 - - s_3304: -1 - - s_3319: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2808" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3295: -1 + - s_3297: 1 + - s_3304: -1 + - s_3319: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2809" - - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3295: -1 - - s_3299: 1 - - s_3305: -1 - - s_3319: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2809" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3295: -1 + - s_3299: 1 + - s_3305: -1 + - s_3319: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2810" - - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3295: -1 - - s_3301: 1 - - s_3306: -1 - - s_3319: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2810" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3295: -1 + - s_3301: 1 + - s_3306: -1 + - s_3319: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2811" - - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" - - metabolites: !!omap - - s_3295: -1 - - s_3303: 1 - - s_3307: -1 - - s_3319: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR140W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2811" + - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" + - metabolites: !!omap + - s_3295: -1 + - s_3303: 1 + - s_3307: -1 + - s_3319: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR140W" + - eccodes: "2.3.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2812" - - name: "lysoPC acyltransferase (1-16:0, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3296: 1 - - s_3297: -1 - - s_3320: -1 - - s_3321: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2813" - - name: "lysoPC acyltransferase (1-16:0, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3297: -1 - - s_3304: 1 - - s_3321: 1 - - s_3322: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2814" - - name: "lysoPC acyltransferase (1-16:1, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3298: 1 - - s_3299: -1 - - s_3320: -1 - - s_3321: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2815" - - name: "lysoPC acyltransferase (1-16:1, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3299: -1 - - s_3305: 1 - - s_3321: 1 - - s_3322: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2816" - - name: "lysoPC acyltransferase (1-18:0, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3300: 1 - - s_3301: -1 - - s_3320: -1 - - s_3321: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2817" - - name: "lysoPC acyltransferase (1-18:0, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3301: -1 - - s_3306: 1 - - s_3321: 1 - - s_3322: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2818" - - name: "lysoPC acyltransferase (1-18:1, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3302: 1 - - s_3303: -1 - - s_3320: -1 - - s_3321: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2819" - - name: "lysoPC acyltransferase (1-18:1, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3303: -1 - - s_3307: 1 - - s_3321: 1 - - s_3322: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_2820" - - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3323: -1 - - s_3324: 1 - - s_3325: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W or YLR305C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2820" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3323: -1 + - s_3324: 1 + - s_3325: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W or YLR305C" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2821" - - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3326: -1 - - s_3327: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W or YLR305C" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2821" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3326: -1 + - s_3327: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W or YLR305C" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2822" - - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3328: -1 - - s_3329: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W or YLR305C" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2822" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3328: -1 + - s_3329: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W or YLR305C" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2823" - - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3330: -1 - - s_3331: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W or YLR305C" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2823" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3330: -1 + - s_3331: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W or YLR305C" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2824" - - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3332: -1 - - s_3333: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W or YLR305C" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2824" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3332: -1 + - s_3333: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W or YLR305C" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2825" - - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3334: -1 - - s_3335: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W or YLR305C" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2825" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3334: -1 + - s_3335: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W or YLR305C" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2826" - - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3336: -1 - - s_3337: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W or YLR305C" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2826" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3336: -1 + - s_3337: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W or YLR305C" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2827" - - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3338: -1 - - s_3339: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W or YLR305C" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2827" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3338: -1 + - s_3339: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W or YLR305C" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2828" - - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3340: -1 - - s_3341: -1 - - s_3342: 1 - - s_3343: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2828" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3340: -1 + - s_3341: -1 + - s_3342: 1 + - s_3343: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2829" - - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3344: -1 - - s_3345: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2829" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3344: -1 + - s_3345: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2830" - - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3346: -1 - - s_3347: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2830" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3346: -1 + - s_3347: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2831" - - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3348: -1 - - s_3349: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2831" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3348: -1 + - s_3349: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2832" - - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3350: -1 - - s_3351: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2832" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3350: -1 + - s_3351: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2833" - - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3352: -1 - - s_3353: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2833" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3352: -1 + - s_3353: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2834" - - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3354: -1 - - s_3355: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2834" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3354: -1 + - s_3355: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2835" - - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3356: -1 - - s_3357: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL100W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2835" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3356: -1 + - s_3357: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL100W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2836" - - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_3146: -1 - - s_3358: -1 - - s_3359: -1 - - s_3360: 1 - - s_3361: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR373W and YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2836" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_3146: -1 + - s_3358: -1 + - s_3359: -1 + - s_3360: 1 + - s_3361: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR373W and YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2837" - - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3362: -1 - - s_3363: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR373W and YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2837" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3362: -1 + - s_3363: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR373W and YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2838" - - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3364: -1 - - s_3365: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR373W and YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2838" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3364: -1 + - s_3365: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR373W and YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2839" - - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3366: -1 - - s_3367: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR373W and YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2839" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3366: -1 + - s_3367: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR373W and YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2840" - - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3368: -1 - - s_3369: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR373W and YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2840" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3368: -1 + - s_3369: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR373W and YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2841" - - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3370: -1 - - s_3371: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR373W and YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2841" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3370: -1 + - s_3371: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR373W and YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2842" - - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3372: -1 - - s_3373: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR373W and YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2842" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3372: -1 + - s_3373: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR373W and YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2843" - - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3374: -1 - - s_3375: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR373W and YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2843" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3374: -1 + - s_3375: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR373W and YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2844" - - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3376: -1 - - s_3377: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2844" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3376: -1 + - s_3377: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2845" - - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3378: -1 - - s_3379: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2845" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3378: -1 + - s_3379: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2846" - - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3380: -1 - - s_3381: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2846" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3380: -1 + - s_3381: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2847" - - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3382: -1 - - s_3383: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2847" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3382: -1 + - s_3383: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2848" - - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3384: -1 - - s_3385: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2848" + - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3384: -1 + - s_3385: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2849" - - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3386: -1 - - s_3387: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2849" + - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3386: -1 + - s_3387: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2850" - - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3388: -1 - - s_3389: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2850" + - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3388: -1 + - s_3389: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2851" - - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3390: -1 - - s_3391: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL267W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2851" + - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3390: -1 + - s_3391: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL267W" + - eccodes: "2.7.1.67" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.67" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2852" - - name: "phosphatidylinositol 3-kinase (1-16:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3340: -1 - - s_3341: -1 - - s_3342: 1 - - s_3392: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR097W and YLR240W" - - annotation: !!omap - - ec-code: - - "2.7.1.137" - - "2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2853" - - name: "phosphatidylinositol 3-kinase (1-16:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3344: -1 - - s_3393: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR097W and YLR240W" - - annotation: !!omap - - ec-code: - - "2.7.1.137" - - "2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2854" - - name: "phosphatidylinositol 3-kinase (1-18:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3346: -1 - - s_3394: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR097W and YLR240W" - - annotation: !!omap - - ec-code: - - "2.7.1.137" - - "2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2855" - - name: "phosphatidylinositol 3-kinase (1-18:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3348: -1 - - s_3395: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR097W and YLR240W" - - annotation: !!omap - - ec-code: - - "2.7.1.137" - - "2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2856" - - name: "phosphatidylinositol 3-kinase (1-16:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3350: -1 - - s_3396: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR097W and YLR240W" - - annotation: !!omap - - ec-code: - - "2.7.1.137" - - "2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2857" - - name: "phosphatidylinositol 3-kinase (1-16:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3352: -1 - - s_3397: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR097W and YLR240W" - - annotation: !!omap - - ec-code: - - "2.7.1.137" - - "2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2858" - - name: "phosphatidylinositol 3-kinase (1-18:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3354: -1 - - s_3398: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR097W and YLR240W" - - annotation: !!omap - - ec-code: - - "2.7.1.137" - - "2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2859" - - name: "phosphatidylinositol 3-kinase (1-18:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3356: -1 - - s_3399: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR097W and YLR240W" - - annotation: !!omap - - ec-code: - - "2.7.1.137" - - "2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2860" - - name: "PI 4-P 5-kinase (1-16:0, 2-16:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3377: -1 - - s_3400: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2852" + - name: "phosphatidylinositol 3-kinase (1-16:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3340: -1 + - s_3341: -1 + - s_3342: 1 + - s_3392: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR097W and YLR240W" + - eccodes: "2.7.1.137; 2.7.11.1" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2853" + - name: "phosphatidylinositol 3-kinase (1-16:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3344: -1 + - s_3393: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR097W and YLR240W" + - eccodes: "2.7.1.137; 2.7.11.1" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2854" + - name: "phosphatidylinositol 3-kinase (1-18:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3346: -1 + - s_3394: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR097W and YLR240W" + - eccodes: "2.7.1.137; 2.7.11.1" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2855" + - name: "phosphatidylinositol 3-kinase (1-18:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3348: -1 + - s_3395: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR097W and YLR240W" + - eccodes: "2.7.1.137; 2.7.11.1" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2856" + - name: "phosphatidylinositol 3-kinase (1-16:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3350: -1 + - s_3396: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR097W and YLR240W" + - eccodes: "2.7.1.137; 2.7.11.1" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2857" + - name: "phosphatidylinositol 3-kinase (1-16:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3352: -1 + - s_3397: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR097W and YLR240W" + - eccodes: "2.7.1.137; 2.7.11.1" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2858" + - name: "phosphatidylinositol 3-kinase (1-18:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3354: -1 + - s_3398: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR097W and YLR240W" + - eccodes: "2.7.1.137; 2.7.11.1" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2859" + - name: "phosphatidylinositol 3-kinase (1-18:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3356: -1 + - s_3399: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR097W and YLR240W" + - eccodes: "2.7.1.137; 2.7.11.1" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2860" + - name: "PI 4-P 5-kinase (1-16:0, 2-16:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3377: -1 + - s_3400: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2861" - - name: "PI 4-P 5-kinase (1-16:1, 2-16:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3379: -1 - - s_3401: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2861" + - name: "PI 4-P 5-kinase (1-16:1, 2-16:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3379: -1 + - s_3401: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2862" - - name: "PI 4-P 5-kinase (1-18:0, 2-16:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3381: -1 - - s_3402: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2862" + - name: "PI 4-P 5-kinase (1-18:0, 2-16:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3381: -1 + - s_3402: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2863" - - name: "PI 4-P 5-kinase (1-18:1, 2-16:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3383: -1 - - s_3403: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2863" + - name: "PI 4-P 5-kinase (1-18:1, 2-16:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3383: -1 + - s_3403: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2864" - - name: "PI 4-P 5-kinase (1-16:0, 2-18:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3385: -1 - - s_3404: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2864" + - name: "PI 4-P 5-kinase (1-16:0, 2-18:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3385: -1 + - s_3404: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2865" - - name: "PI 4-P 5-kinase (1-16:1, 2-18:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3387: -1 - - s_3405: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2865" + - name: "PI 4-P 5-kinase (1-16:1, 2-18:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3387: -1 + - s_3405: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2866" - - name: "PI 4-P 5-kinase (1-18:0, 2-18:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3389: -1 - - s_3406: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2866" + - name: "PI 4-P 5-kinase (1-18:0, 2-18:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3389: -1 + - s_3406: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2867" - - name: "PI 4-P 5-kinase (1-18:1, 2-18:1), nucleus" - - metabolites: !!omap - - s_0398: 1 - - s_0438: -1 - - s_0800: -1 - - s_3391: -1 - - s_3407: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2867" + - name: "PI 4-P 5-kinase (1-18:1, 2-18:1), nucleus" + - metabolites: !!omap + - s_0398: 1 + - s_0438: -1 + - s_0800: -1 + - s_3391: -1 + - s_3407: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2868" - - name: "PI 4-P 5-kinase (1-16:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3325: -1 - - s_3408: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2868" + - name: "PI 4-P 5-kinase (1-16:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3325: -1 + - s_3408: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2869" - - name: "PI 4-P 5-kinase (1-16:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3327: -1 - - s_3409: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2869" + - name: "PI 4-P 5-kinase (1-16:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3327: -1 + - s_3409: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2870" - - name: "PI 4-P 5-kinase (1-18:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3329: -1 - - s_3410: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2870" + - name: "PI 4-P 5-kinase (1-18:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3329: -1 + - s_3410: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2871" - - name: "PI 4-P 5-kinase (1-18:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3331: -1 - - s_3411: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2871" + - name: "PI 4-P 5-kinase (1-18:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3331: -1 + - s_3411: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2872" - - name: "PI 4-P 5-kinase (1-16:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3333: -1 - - s_3412: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2872" + - name: "PI 4-P 5-kinase (1-16:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3333: -1 + - s_3412: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2873" - - name: "PI 4-P 5-kinase (1-16:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3335: -1 - - s_3413: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2873" + - name: "PI 4-P 5-kinase (1-16:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3335: -1 + - s_3413: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2874" - - name: "PI 4-P 5-kinase (1-18:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3337: -1 - - s_3414: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2874" + - name: "PI 4-P 5-kinase (1-18:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3337: -1 + - s_3414: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2875" - - name: "PI 4-P 5-kinase (1-18:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: -1 - - s_2856: -1 - - s_3324: 1 - - s_3339: -1 - - s_3415: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR208W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2875" + - name: "PI 4-P 5-kinase (1-18:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: -1 + - s_2856: -1 + - s_3324: 1 + - s_3339: -1 + - s_3415: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR208W" + - eccodes: "2.7.1.68" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.68" - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2876" - - name: "PI 3-P 5-kinase (1-16:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3392: -1 - - s_3416: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR019W" - - annotation: !!omap + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2876" + - name: "PI 3-P 5-kinase (1-16:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3392: -1 + - s_3416: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR019W" + - eccodes: "2.7.1.150" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.150" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2877" - - name: "PI 3-P 5-kinase (1-16:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3393: -1 - - s_3417: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR019W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2877" + - name: "PI 3-P 5-kinase (1-16:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3393: -1 + - s_3417: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR019W" + - eccodes: "2.7.1.150" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.150" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2878" - - name: "PI 3-P 5-kinase (1-18:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3394: -1 - - s_3418: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR019W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2878" + - name: "PI 3-P 5-kinase (1-18:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3394: -1 + - s_3418: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR019W" + - eccodes: "2.7.1.150" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.150" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2879" - - name: "PI 3-P 5-kinase (1-18:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3395: -1 - - s_3419: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR019W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2879" + - name: "PI 3-P 5-kinase (1-18:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3395: -1 + - s_3419: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR019W" + - eccodes: "2.7.1.150" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.150" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2880" - - name: "PI 3-P 5-kinase (1-16:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3396: -1 - - s_3420: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR019W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2880" + - name: "PI 3-P 5-kinase (1-16:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3396: -1 + - s_3420: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR019W" + - eccodes: "2.7.1.150" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.150" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2881" - - name: "PI 3-P 5-kinase (1-16:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3397: -1 - - s_3421: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR019W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2881" + - name: "PI 3-P 5-kinase (1-16:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3397: -1 + - s_3421: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR019W" + - eccodes: "2.7.1.150" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.150" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2882" - - name: "PI 3-P 5-kinase (1-18:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3398: -1 - - s_3422: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR019W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2882" + - name: "PI 3-P 5-kinase (1-18:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3398: -1 + - s_3422: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR019W" + - eccodes: "2.7.1.150" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.150" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2883" - - name: "PI 3-P 5-kinase (1-18:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3399: -1 - - s_3423: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YFR019W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2883" + - name: "PI 3-P 5-kinase (1-18:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3399: -1 + - s_3423: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFR019W" + - eccodes: "2.7.1.150" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.150" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2884" - - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3019: 1 - - s_3181: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_2884" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3019: 1 + - s_3181: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2885" - - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3019: 1 - - s_3185: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2885" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3019: 1 + - s_3185: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2886" - - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3019: 1 - - s_3187: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2886" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3019: 1 + - s_3187: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2887" - - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3019: 1 - - s_3189: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2887" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3019: 1 + - s_3189: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2888" - - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3035: 1 - - s_3191: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2888" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3035: 1 + - s_3191: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2889" - - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3035: 1 - - s_3193: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2889" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3035: 1 + - s_3193: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2890" - - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3035: 1 - - s_3195: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2890" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3035: 1 + - s_3195: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2891" - - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3035: 1 - - s_3197: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2891" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3035: 1 + - s_3197: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2892" - - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3021: 1 - - s_3181: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2892" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3021: 1 + - s_3181: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2893" - - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3021: 1 - - s_3185: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2893" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3021: 1 + - s_3185: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2894" - - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3021: 1 - - s_3187: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2894" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3021: 1 + - s_3187: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2895" - - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3021: 1 - - s_3189: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2895" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3021: 1 + - s_3189: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2896" - - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3037: 1 - - s_3191: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2896" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3037: 1 + - s_3191: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2897" - - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3037: 1 - - s_3193: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2897" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3037: 1 + - s_3193: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2898" - - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3037: 1 - - s_3195: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2898" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3037: 1 + - s_3195: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2899" - - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3037: 1 - - s_3197: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2899" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3037: 1 + - s_3197: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2900" - - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3023: 1 - - s_3181: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2900" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3023: 1 + - s_3181: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2901" - - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3023: 1 - - s_3185: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2901" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3023: 1 + - s_3185: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2902" - - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3023: 1 - - s_3187: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2902" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3023: 1 + - s_3187: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2903" - - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3023: 1 - - s_3189: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2903" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3023: 1 + - s_3189: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2904" - - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3039: 1 - - s_3191: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2904" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3039: 1 + - s_3191: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2905" - - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3039: 1 - - s_3193: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2905" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3039: 1 + - s_3193: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2906" - - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3039: 1 - - s_3195: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2906" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3039: 1 + - s_3195: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2907" - - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3039: 1 - - s_3197: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2907" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3039: 1 + - s_3197: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2908" - - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3025: 1 - - s_3181: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2908" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3025: 1 + - s_3181: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2909" - - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3025: 1 - - s_3185: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2909" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3025: 1 + - s_3185: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2910" - - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3025: 1 - - s_3187: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2910" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3025: 1 + - s_3187: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2911" - - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3025: 1 - - s_3189: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2911" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3025: 1 + - s_3189: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2912" - - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3041: 1 - - s_3191: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2912" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3041: 1 + - s_3191: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2913" - - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3041: 1 - - s_3193: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2913" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3041: 1 + - s_3193: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2914" - - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3041: 1 - - s_3195: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2914" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3041: 1 + - s_3195: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2915" - - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3041: 1 - - s_3197: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2915" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3041: 1 + - s_3197: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2916" - - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3020: 1 - - s_3181: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2916" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3020: 1 + - s_3181: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2917" - - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3020: 1 - - s_3185: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2917" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3020: 1 + - s_3185: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2918" - - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3020: 1 - - s_3187: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2918" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3020: 1 + - s_3187: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2919" - - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3020: 1 - - s_3189: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2919" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3020: 1 + - s_3189: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2920" - - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3036: 1 - - s_3191: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2920" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3036: 1 + - s_3191: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2921" - - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3036: 1 - - s_3193: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2921" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3036: 1 + - s_3193: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2922" - - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3036: 1 - - s_3195: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2922" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3036: 1 + - s_3195: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2923" - - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3036: 1 - - s_3197: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2923" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3036: 1 + - s_3197: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2924" - - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3022: 1 - - s_3181: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2924" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3022: 1 + - s_3181: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2925" - - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3022: 1 - - s_3185: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2925" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3022: 1 + - s_3185: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2926" - - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3022: 1 - - s_3187: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2926" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3022: 1 + - s_3187: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2927" - - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3022: 1 - - s_3189: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2927" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3022: 1 + - s_3189: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2928" - - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3038: 1 - - s_3191: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2928" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3038: 1 + - s_3191: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2929" - - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3038: 1 - - s_3193: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2929" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3038: 1 + - s_3193: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2930" - - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3038: 1 - - s_3195: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2930" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3038: 1 + - s_3195: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2931" - - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3038: 1 - - s_3197: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2931" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3038: 1 + - s_3197: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2932" - - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3024: 1 - - s_3181: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2932" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3024: 1 + - s_3181: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2933" - - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3024: 1 - - s_3185: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2933" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3024: 1 + - s_3185: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2934" - - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3024: 1 - - s_3187: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2934" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3024: 1 + - s_3187: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2935" - - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3024: 1 - - s_3189: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2935" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3024: 1 + - s_3189: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2936" - - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3040: 1 - - s_3191: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2936" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3040: 1 + - s_3191: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2937" - - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3040: 1 - - s_3193: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2937" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3040: 1 + - s_3193: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2938" - - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3040: 1 - - s_3195: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2938" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3040: 1 + - s_3195: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2939" - - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3040: 1 - - s_3197: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2939" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3040: 1 + - s_3197: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2940" - - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3026: 1 - - s_3181: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2940" + - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3026: 1 + - s_3181: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2941" - - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3026: 1 - - s_3185: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2941" + - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3026: 1 + - s_3185: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2942" - - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3026: 1 - - s_3187: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2942" + - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3026: 1 + - s_3187: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2943" - - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3026: 1 - - s_3189: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2943" + - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3026: 1 + - s_3189: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2944" - - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3042: 1 - - s_3191: -1 - - s_3424: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2944" + - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3042: 1 + - s_3191: -1 + - s_3424: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2945" - - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3042: 1 - - s_3193: -1 - - s_3425: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2945" + - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3042: 1 + - s_3193: -1 + - s_3425: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2946" - - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3042: 1 - - s_3195: -1 - - s_3426: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2946" + - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3042: 1 + - s_3195: -1 + - s_3426: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2947" - - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3042: 1 - - s_3197: -1 - - s_3427: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2947" + - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3042: 1 + - s_3197: -1 + - s_3427: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2948" - - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3019: 1 - - s_3207: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2948" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3019: 1 + - s_3207: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2949" - - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3019: 1 - - s_3208: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2949" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3019: 1 + - s_3208: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2950" - - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3019: 1 - - s_3209: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2950" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3019: 1 + - s_3209: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2951" - - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3019: 1 - - s_3210: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2951" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3019: 1 + - s_3210: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2952" - - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3035: 1 - - s_3211: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2952" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3035: 1 + - s_3211: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2953" - - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3035: 1 - - s_3212: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2953" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3035: 1 + - s_3212: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2954" - - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3035: 1 - - s_3213: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2954" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3035: 1 + - s_3213: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2955" - - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2967: -1 - - s_3035: 1 - - s_3214: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2955" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2967: -1 + - s_3035: 1 + - s_3214: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2956" - - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3021: 1 - - s_3207: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2956" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3021: 1 + - s_3207: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2957" - - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3021: 1 - - s_3208: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2957" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3021: 1 + - s_3208: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2958" - - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3021: 1 - - s_3209: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2958" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3021: 1 + - s_3209: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2959" - - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3021: 1 - - s_3210: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2959" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3021: 1 + - s_3210: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2960" - - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3037: 1 - - s_3211: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2960" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3037: 1 + - s_3211: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2961" - - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3037: 1 - - s_3212: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2961" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3037: 1 + - s_3212: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2962" - - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3037: 1 - - s_3213: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2962" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3037: 1 + - s_3213: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2963" - - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3037: 1 - - s_3214: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2963" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3037: 1 + - s_3214: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2964" - - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3023: 1 - - s_3207: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2964" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3023: 1 + - s_3207: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2965" - - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3023: 1 - - s_3208: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2965" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3023: 1 + - s_3208: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2966" - - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3023: 1 - - s_3209: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2966" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3023: 1 + - s_3209: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2967" - - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3023: 1 - - s_3210: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2967" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3023: 1 + - s_3210: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2968" - - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3039: 1 - - s_3211: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2968" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3039: 1 + - s_3211: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2969" - - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3039: 1 - - s_3212: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2969" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3039: 1 + - s_3212: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2970" - - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3039: 1 - - s_3213: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2970" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3039: 1 + - s_3213: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2971" - - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3039: 1 - - s_3214: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2971" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3039: 1 + - s_3214: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2972" - - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3025: 1 - - s_3207: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2972" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3025: 1 + - s_3207: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2973" - - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3025: 1 - - s_3208: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2973" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3025: 1 + - s_3208: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2974" - - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3025: 1 - - s_3209: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2974" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3025: 1 + - s_3209: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2975" - - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3025: 1 - - s_3210: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2975" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3025: 1 + - s_3210: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2976" - - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3041: 1 - - s_3211: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2976" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3041: 1 + - s_3211: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2977" - - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3041: 1 - - s_3212: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2977" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3041: 1 + - s_3212: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2978" - - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3041: 1 - - s_3213: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2978" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3041: 1 + - s_3213: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2979" - - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3041: 1 - - s_3214: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2979" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3041: 1 + - s_3214: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2980" - - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3020: 1 - - s_3207: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2980" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3020: 1 + - s_3207: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2981" - - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3020: 1 - - s_3208: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2981" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3020: 1 + - s_3208: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2982" - - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3020: 1 - - s_3209: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2982" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3020: 1 + - s_3209: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2983" - - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3020: 1 - - s_3210: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2983" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3020: 1 + - s_3210: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2984" - - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3036: 1 - - s_3211: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2984" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3036: 1 + - s_3211: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2985" - - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3036: 1 - - s_3212: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2985" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3036: 1 + - s_3212: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2986" - - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3036: 1 - - s_3213: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2986" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3036: 1 + - s_3213: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2987" - - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2968: -1 - - s_3036: 1 - - s_3214: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2987" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2968: -1 + - s_3036: 1 + - s_3214: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2988" - - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3022: 1 - - s_3207: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2988" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3022: 1 + - s_3207: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2989" - - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3022: 1 - - s_3208: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2989" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3022: 1 + - s_3208: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2990" - - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3022: 1 - - s_3209: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2990" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3022: 1 + - s_3209: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2991" - - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3022: 1 - - s_3210: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2991" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3022: 1 + - s_3210: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2992" - - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3038: 1 - - s_3211: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2992" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3038: 1 + - s_3211: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2993" - - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3038: 1 - - s_3212: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2993" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3038: 1 + - s_3212: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2994" - - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3038: 1 - - s_3213: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2994" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3038: 1 + - s_3213: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2995" - - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3038: 1 - - s_3214: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2995" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3038: 1 + - s_3214: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2996" - - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3024: 1 - - s_3207: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2996" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3024: 1 + - s_3207: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2997" - - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3024: 1 - - s_3208: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2997" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3024: 1 + - s_3208: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2998" - - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3024: 1 - - s_3209: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2998" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3024: 1 + - s_3209: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_2999" - - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3024: 1 - - s_3210: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_2999" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3024: 1 + - s_3210: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3000" - - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3040: 1 - - s_3211: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3000" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3040: 1 + - s_3211: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3001" - - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3040: 1 - - s_3212: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3001" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3040: 1 + - s_3212: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3002" - - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3040: 1 - - s_3213: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3002" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3040: 1 + - s_3213: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3003" - - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3040: 1 - - s_3214: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3003" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3040: 1 + - s_3214: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3004" - - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3026: 1 - - s_3207: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3004" + - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3026: 1 + - s_3207: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3005" - - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3026: 1 - - s_3208: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3005" + - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3026: 1 + - s_3208: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3006" - - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3026: 1 - - s_3209: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3006" + - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3026: 1 + - s_3209: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3007" - - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3026: 1 - - s_3210: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3007" + - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3026: 1 + - s_3210: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3008" - - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3042: 1 - - s_3211: -1 - - s_3428: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3008" + - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3042: 1 + - s_3211: -1 + - s_3428: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3009" - - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3042: 1 - - s_3212: -1 - - s_3429: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3009" + - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3042: 1 + - s_3212: -1 + - s_3429: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3010" - - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3042: 1 - - s_3213: -1 - - s_3430: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3010" + - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3042: 1 + - s_3213: -1 + - s_3430: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3011" - - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3042: 1 - - s_3214: -1 - - s_3431: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR008W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3011" + - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3042: 1 + - s_3214: -1 + - s_3431: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR008W" + - eccodes: "2.3.1.158" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3022" - - name: "PC phospholipase B (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2837: 1 - - s_3207: -1 - - s_3428: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML059C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3022" + - name: "PC phospholipase B (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2837: 1 + - s_3207: -1 + - s_3428: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML059C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3023" - - name: "PC phospholipase B (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2837: 1 - - s_3208: -1 - - s_3429: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML059C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3023" + - name: "PC phospholipase B (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2837: 1 + - s_3208: -1 + - s_3429: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML059C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3024" - - name: "PC phospholipase B (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2837: 1 - - s_3209: -1 - - s_3430: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML059C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3024" + - name: "PC phospholipase B (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2837: 1 + - s_3209: -1 + - s_3430: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML059C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3025" - - name: "PC phospholipase B (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2837: 1 - - s_3210: -1 - - s_3431: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML059C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3025" + - name: "PC phospholipase B (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2837: 1 + - s_3210: -1 + - s_3431: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML059C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3026" - - name: "PC phospholipase B (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2839: 1 - - s_3211: -1 - - s_3428: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML059C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3026" + - name: "PC phospholipase B (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2839: 1 + - s_3211: -1 + - s_3428: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML059C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3027" - - name: "PC phospholipase B (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2839: 1 - - s_3212: -1 - - s_3429: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML059C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3027" + - name: "PC phospholipase B (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2839: 1 + - s_3212: -1 + - s_3429: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML059C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3028" - - name: "PC phospholipase B (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2839: 1 - - s_3213: -1 - - s_3430: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML059C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3028" + - name: "PC phospholipase B (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2839: 1 + - s_3213: -1 + - s_3430: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML059C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3029" - - name: "PC phospholipase B (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2839: 1 - - s_3214: -1 - - s_3431: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML059C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3029" + - name: "PC phospholipase B (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2839: 1 + - s_3214: -1 + - s_3431: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML059C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3030" - - name: "LPC phospholipase B (16:0), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2836: 1 - - s_3428: -1 - - s_3447: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML059C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3030" + - name: "LPC phospholipase B (16:0), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2836: 1 + - s_3428: -1 + - s_3447: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML059C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3031" - - name: "LPC phospholipase B (16:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2837: 1 - - s_3429: -1 - - s_3447: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML059C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3031" + - name: "LPC phospholipase B (16:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2837: 1 + - s_3429: -1 + - s_3447: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML059C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3032" - - name: "LPC phospholipase B (18:0), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2838: 1 - - s_3430: -1 - - s_3447: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML059C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3032" + - name: "LPC phospholipase B (18:0), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2838: 1 + - s_3430: -1 + - s_3447: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML059C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3033" - - name: "LPC phospholipase B (18:1), ER membrane" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2839: 1 - - s_3431: -1 - - s_3447: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YML059C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3033" + - name: "LPC phospholipase B (18:1), ER membrane" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2839: 1 + - s_3431: -1 + - s_3447: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YML059C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3034" - - name: "PC phospholipase B (1-16:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3448: -1 - - s_3449: -1 - - s_3450: 1 - - s_3451: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3034" + - name: "PC phospholipase B (1-16:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3448: -1 + - s_3449: -1 + - s_3450: 1 + - s_3451: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3035" - - name: "PC phospholipase B (1-16:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3452: -1 - - s_3453: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3035" + - name: "PC phospholipase B (1-16:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3452: -1 + - s_3453: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3036" - - name: "PC phospholipase B (1-18:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3454: -1 - - s_3455: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3036" + - name: "PC phospholipase B (1-18:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3454: -1 + - s_3455: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3037" - - name: "PC phospholipase B (1-18:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3456: -1 - - s_3457: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3037" + - name: "PC phospholipase B (1-18:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3456: -1 + - s_3457: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3038" - - name: "PC phospholipase B (1-16:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3450: 1 - - s_3458: -1 - - s_3459: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3038" + - name: "PC phospholipase B (1-16:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3450: 1 + - s_3458: -1 + - s_3459: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3039" - - name: "PC phospholipase B (1-16:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3453: 1 - - s_3459: 1 - - s_3460: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3039" + - name: "PC phospholipase B (1-16:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3453: 1 + - s_3459: 1 + - s_3460: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3040" - - name: "PC phospholipase B (1-18:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3455: 1 - - s_3459: 1 - - s_3461: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3040" + - name: "PC phospholipase B (1-18:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3455: 1 + - s_3459: 1 + - s_3461: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3041" - - name: "PC phospholipase B (1-18:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3457: 1 - - s_3459: 1 - - s_3462: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3041" + - name: "PC phospholipase B (1-18:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3457: 1 + - s_3459: 1 + - s_3462: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3042" - - name: "LPC phospholipase B (16:0), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_1432: 1 - - s_3449: -1 - - s_3450: -1 - - s_3463: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3042" + - name: "LPC phospholipase B (16:0), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_1432: 1 + - s_3449: -1 + - s_3450: -1 + - s_3463: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3043" - - name: "LPC phospholipase B (16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_1432: 1 - - s_3449: -1 - - s_3451: 1 - - s_3453: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3043" + - name: "LPC phospholipase B (16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_1432: 1 + - s_3449: -1 + - s_3451: 1 + - s_3453: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3044" - - name: "LPC phospholipase B (18:0), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_1432: 1 - - s_3449: -1 - - s_3455: -1 - - s_3464: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3044" + - name: "LPC phospholipase B (18:0), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_1432: 1 + - s_3449: -1 + - s_3455: -1 + - s_3464: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3045" - - name: "LPC phospholipase B (18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_1432: 1 - - s_3449: -1 - - s_3457: -1 - - s_3459: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3045" + - name: "LPC phospholipase B (18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_1432: 1 + - s_3449: -1 + - s_3457: -1 + - s_3459: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3046" - - name: "PE phospholipase B (1-16:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3465: -1 - - s_3466: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3046" + - name: "PE phospholipase B (1-16:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3465: -1 + - s_3466: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3047" - - name: "PE phospholipase B (1-16:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3467: -1 - - s_3468: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3047" + - name: "PE phospholipase B (1-16:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3467: -1 + - s_3468: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3048" - - name: "PE phospholipase B (1-18:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3469: -1 - - s_3470: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3048" + - name: "PE phospholipase B (1-18:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3469: -1 + - s_3470: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3049" - - name: "PE phospholipase B (1-18:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3471: -1 - - s_3472: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3049" + - name: "PE phospholipase B (1-18:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3471: -1 + - s_3472: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3050" - - name: "PE phospholipase B (1-16:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3459: 1 - - s_3466: 1 - - s_3473: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3050" + - name: "PE phospholipase B (1-16:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3459: 1 + - s_3466: 1 + - s_3473: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3051" - - name: "PE phospholipase B (1-16:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3459: 1 - - s_3468: 1 - - s_3474: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3051" + - name: "PE phospholipase B (1-16:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3459: 1 + - s_3468: 1 + - s_3474: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3052" - - name: "PE phospholipase B (1-18:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3459: 1 - - s_3470: 1 - - s_3475: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3052" + - name: "PE phospholipase B (1-18:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3459: 1 + - s_3470: 1 + - s_3475: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3053" - - name: "PE phospholipase B (1-18:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3459: 1 - - s_3472: 1 - - s_3476: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3053" + - name: "PE phospholipase B (1-18:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3459: 1 + - s_3472: 1 + - s_3476: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3054" - - name: "LPE phospholipase B (16:0), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3463: 1 - - s_3466: -1 - - s_3477: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3054" + - name: "LPE phospholipase B (16:0), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3463: 1 + - s_3466: -1 + - s_3477: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3055" - - name: "LPE phospholipase B (16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3468: -1 - - s_3477: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3055" + - name: "LPE phospholipase B (16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3468: -1 + - s_3477: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3056" - - name: "LPE phospholipase B (18:0), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3464: 1 - - s_3470: -1 - - s_3477: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3056" + - name: "LPE phospholipase B (18:0), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3464: 1 + - s_3470: -1 + - s_3477: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3057" - - name: "LPE phospholipase B (18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3459: 1 - - s_3472: -1 - - s_3477: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YMR008C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3057" + - name: "LPE phospholipase B (18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3459: 1 + - s_3472: -1 + - s_3477: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YMR008C" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3058" - - name: "PS phospholipase B (1-16:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3478: -1 - - s_3479: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3058" + - name: "PS phospholipase B (1-16:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3478: -1 + - s_3479: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3059" - - name: "PS phospholipase B (1-16:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3480: -1 - - s_3481: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3059" + - name: "PS phospholipase B (1-16:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3480: -1 + - s_3481: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3060" - - name: "PS phospholipase B (1-18:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3482: -1 - - s_3483: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3060" + - name: "PS phospholipase B (1-18:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3482: -1 + - s_3483: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3061" - - name: "PS phospholipase B (1-18:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3484: -1 - - s_3485: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3061" + - name: "PS phospholipase B (1-18:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3484: -1 + - s_3485: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3062" - - name: "PS phospholipase B (1-16:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3459: 1 - - s_3479: 1 - - s_3486: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3062" + - name: "PS phospholipase B (1-16:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3459: 1 + - s_3479: 1 + - s_3486: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3063" - - name: "PS phospholipase B (1-16:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3459: 1 - - s_3481: 1 - - s_3487: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3063" + - name: "PS phospholipase B (1-16:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3459: 1 + - s_3481: 1 + - s_3487: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3064" - - name: "PS phospholipase B (1-18:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3459: 1 - - s_3483: 1 - - s_3488: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3064" + - name: "PS phospholipase B (1-18:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3459: 1 + - s_3483: 1 + - s_3488: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3065" - - name: "PS phospholipase B (1-18:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3459: 1 - - s_3485: 1 - - s_3489: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3065" + - name: "PS phospholipase B (1-18:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3459: 1 + - s_3485: 1 + - s_3489: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3066" - - name: "LPS phospholipase B (16:0), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3463: 1 - - s_3479: -1 - - s_3490: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3066" + - name: "LPS phospholipase B (16:0), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3463: 1 + - s_3479: -1 + - s_3490: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3067" - - name: "LPS phospholipase B (16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3451: 1 - - s_3481: -1 - - s_3490: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3067" + - name: "LPS phospholipase B (16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3451: 1 + - s_3481: -1 + - s_3490: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3068" - - name: "LPS phospholipase B (18:0), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3464: 1 - - s_3483: -1 - - s_3490: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3068" + - name: "LPS phospholipase B (18:0), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3464: 1 + - s_3483: -1 + - s_3490: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3069" - - name: "LPS phospholipase B (18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3449: -1 - - s_3459: 1 - - s_3485: -1 - - s_3490: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR006C or YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3069" + - name: "LPS phospholipase B (18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3449: -1 + - s_3459: 1 + - s_3485: -1 + - s_3490: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR006C or YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3070" - - name: "PI phospholipase B (1-16:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3323: -1 - - s_3449: -1 - - s_3451: 1 - - s_3491: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3070" + - name: "PI phospholipase B (1-16:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3323: -1 + - s_3449: -1 + - s_3451: 1 + - s_3491: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3071" - - name: "PI phospholipase B (1-16:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3326: -1 - - s_3449: -1 - - s_3451: 1 - - s_3492: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3071" + - name: "PI phospholipase B (1-16:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3326: -1 + - s_3449: -1 + - s_3451: 1 + - s_3492: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3072" - - name: "PI phospholipase B (1-18:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3328: -1 - - s_3449: -1 - - s_3451: 1 - - s_3493: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3072" + - name: "PI phospholipase B (1-18:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3328: -1 + - s_3449: -1 + - s_3451: 1 + - s_3493: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3073" - - name: "PI phospholipase B (1-18:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3330: -1 - - s_3449: -1 - - s_3451: 1 - - s_3494: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3073" + - name: "PI phospholipase B (1-18:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3330: -1 + - s_3449: -1 + - s_3451: 1 + - s_3494: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3074" - - name: "PI phospholipase B (1-16:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3332: -1 - - s_3449: -1 - - s_3459: 1 - - s_3491: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3074" + - name: "PI phospholipase B (1-16:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3332: -1 + - s_3449: -1 + - s_3459: 1 + - s_3491: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3075" - - name: "PI phospholipase B (1-16:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3334: -1 - - s_3449: -1 - - s_3459: 1 - - s_3492: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3075" + - name: "PI phospholipase B (1-16:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3334: -1 + - s_3449: -1 + - s_3459: 1 + - s_3492: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3076" - - name: "PI phospholipase B (1-18:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3336: -1 - - s_3449: -1 - - s_3459: 1 - - s_3493: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3076" + - name: "PI phospholipase B (1-18:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3336: -1 + - s_3449: -1 + - s_3459: 1 + - s_3493: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3077" - - name: "PI phospholipase B (1-18:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_3338: -1 - - s_3449: -1 - - s_3459: 1 - - s_3494: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3077" + - name: "PI phospholipase B (1-18:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_3338: -1 + - s_3449: -1 + - s_3459: 1 + - s_3494: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3078" - - name: "LPI phospholipase B (16:0), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3449: -1 - - s_3463: 1 - - s_3491: -1 - - s_3495: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3078" + - name: "LPI phospholipase B (16:0), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3449: -1 + - s_3463: 1 + - s_3491: -1 + - s_3495: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3079" - - name: "LPI phospholipase B (16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3449: -1 - - s_3451: 1 - - s_3492: -1 - - s_3495: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3079" + - name: "LPI phospholipase B (16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3449: -1 + - s_3451: 1 + - s_3492: -1 + - s_3495: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3080" - - name: "LPI phospholipase B (18:0), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3449: -1 - - s_3464: 1 - - s_3493: -1 - - s_3495: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3080" + - name: "LPI phospholipase B (18:0), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3449: -1 + - s_3464: 1 + - s_3493: -1 + - s_3495: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3081" - - name: "LPI phospholipase B (18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3449: -1 - - s_3459: 1 - - s_3494: -1 - - s_3495: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL011W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3081" + - name: "LPI phospholipase B (18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3449: -1 + - s_3459: 1 + - s_3494: -1 + - s_3495: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL011W" + - eccodes: "3.1.1.5" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3082" - - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 6 - - s_0803: -1 - - s_3496: -1 - - s_3497: 1 - - s_3498: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3082" + - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 6 + - s_0803: -1 + - s_3496: -1 + - s_3497: 1 + - s_3498: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3083" - - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 6 - - s_0803: -1 - - s_3498: 1 - - s_3499: -1 - - s_3500: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3083" + - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 6 + - s_0803: -1 + - s_3498: 1 + - s_3499: -1 + - s_3500: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3084" - - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 6 - - s_0803: -1 - - s_3498: 1 - - s_3501: -1 - - s_3502: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3084" + - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 6 + - s_0803: -1 + - s_3498: 1 + - s_3501: -1 + - s_3502: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3085" - - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 6 - - s_0803: -1 - - s_3498: 1 - - s_3503: -1 - - s_3504: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3085" + - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 6 + - s_0803: -1 + - s_3498: 1 + - s_3503: -1 + - s_3504: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3086" - - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 6 - - s_0803: -1 - - s_3498: 1 - - s_3505: -1 - - s_3506: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3086" + - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 6 + - s_0803: -1 + - s_3498: 1 + - s_3505: -1 + - s_3506: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3087" - - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 6 - - s_0803: -1 - - s_3498: 1 - - s_3507: -1 - - s_3508: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3087" + - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 6 + - s_0803: -1 + - s_3498: 1 + - s_3507: -1 + - s_3508: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3088" - - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 6 - - s_0803: -1 - - s_3498: 1 - - s_3509: -1 - - s_3510: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3088" + - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 6 + - s_0803: -1 + - s_3498: 1 + - s_3509: -1 + - s_3510: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3089" - - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 6 - - s_0803: -1 - - s_3498: 1 - - s_3511: -1 - - s_3512: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3089" + - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 6 + - s_0803: -1 + - s_3498: 1 + - s_3511: -1 + - s_3512: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3090" - - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-16:1), nucleus" - - metabolites: !!omap - - s_0125: 1 - - s_0800: 6 - - s_0808: -1 - - s_3400: -1 - - s_3513: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3090" + - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-16:1), nucleus" + - metabolites: !!omap + - s_0125: 1 + - s_0800: 6 + - s_0808: -1 + - s_3400: -1 + - s_3513: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3091" - - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-16:1), nucleus" - - metabolites: !!omap - - s_0125: 1 - - s_0800: 6 - - s_0808: -1 - - s_3401: -1 - - s_3514: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3091" + - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-16:1), nucleus" + - metabolites: !!omap + - s_0125: 1 + - s_0800: 6 + - s_0808: -1 + - s_3401: -1 + - s_3514: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3092" - - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-16:1), nucleus" - - metabolites: !!omap - - s_0125: 1 - - s_0800: 6 - - s_0808: -1 - - s_3402: -1 - - s_3515: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3092" + - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-16:1), nucleus" + - metabolites: !!omap + - s_0125: 1 + - s_0800: 6 + - s_0808: -1 + - s_3402: -1 + - s_3515: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3093" - - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-16:1), nucleus" - - metabolites: !!omap - - s_0125: 1 - - s_0800: 6 - - s_0808: -1 - - s_3403: -1 - - s_3516: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3093" + - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-16:1), nucleus" + - metabolites: !!omap + - s_0125: 1 + - s_0800: 6 + - s_0808: -1 + - s_3403: -1 + - s_3516: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3094" - - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-18:1), nucleus" - - metabolites: !!omap - - s_0125: 1 - - s_0800: 6 - - s_0808: -1 - - s_3404: -1 - - s_3517: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3094" + - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-18:1), nucleus" + - metabolites: !!omap + - s_0125: 1 + - s_0800: 6 + - s_0808: -1 + - s_3404: -1 + - s_3517: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3095" - - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-18:1), nucleus" - - metabolites: !!omap - - s_0125: 1 - - s_0800: 6 - - s_0808: -1 - - s_3405: -1 - - s_3518: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3095" + - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-18:1), nucleus" + - metabolites: !!omap + - s_0125: 1 + - s_0800: 6 + - s_0808: -1 + - s_3405: -1 + - s_3518: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3096" - - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-18:1), nucleus" - - metabolites: !!omap - - s_0125: 1 - - s_0800: 6 - - s_0808: -1 - - s_3406: -1 - - s_3519: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3096" + - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-18:1), nucleus" + - metabolites: !!omap + - s_0125: 1 + - s_0800: 6 + - s_0808: -1 + - s_3406: -1 + - s_3519: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3097" - - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-18:1), nucleus" - - metabolites: !!omap - - s_0125: 1 - - s_0800: 6 - - s_0808: -1 - - s_3407: -1 - - s_3520: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL268W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3097" + - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-18:1), nucleus" + - metabolites: !!omap + - s_0125: 1 + - s_0800: 6 + - s_0808: -1 + - s_3407: -1 + - s_3520: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL268W" + - eccodes: "3.1.4.11" + - references: "17382260" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.11" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" + - "sce00562" + - "sce04070" + - "sce04933" - pmid: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3098" - - name: "PG phospholipase C (1-16:0, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3218: 1 - - s_3226: -1 - - s_3227: -1 - - s_3521: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL206C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3098" + - name: "PG phospholipase C (1-16:0, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3218: 1 + - s_3226: -1 + - s_3227: -1 + - s_3521: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL206C" + - eccodes: "3.1.4.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3099" - - name: "PG phospholipase C (1-16:1, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3218: 1 - - s_3226: -1 - - s_3229: -1 - - s_3522: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL206C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3099" + - name: "PG phospholipase C (1-16:1, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3218: 1 + - s_3226: -1 + - s_3229: -1 + - s_3522: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL206C" + - eccodes: "3.1.4.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3100" - - name: "PG phospholipase C (1-18:0, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3218: 1 - - s_3226: -1 - - s_3230: -1 - - s_3523: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL206C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3100" + - name: "PG phospholipase C (1-18:0, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3218: 1 + - s_3226: -1 + - s_3230: -1 + - s_3523: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL206C" + - eccodes: "3.1.4.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3101" - - name: "PG phospholipase C (1-18:1, 2-16:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3218: 1 - - s_3226: -1 - - s_3231: -1 - - s_3524: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL206C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3101" + - name: "PG phospholipase C (1-18:1, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3218: 1 + - s_3226: -1 + - s_3231: -1 + - s_3524: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL206C" + - eccodes: "3.1.4.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3102" - - name: "PG phospholipase C (1-16:0, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3218: 1 - - s_3226: -1 - - s_3232: -1 - - s_3525: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL206C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3102" + - name: "PG phospholipase C (1-16:0, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3218: 1 + - s_3226: -1 + - s_3232: -1 + - s_3525: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL206C" + - eccodes: "3.1.4.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3103" - - name: "PG phospholipase C (1-16:1, 2-18:1), mitochondrial membrane" - - metabolites: !!omap - - s_3094: 2 - - s_3218: 1 - - s_3226: -1 - - s_3233: -1 - - s_3526: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YPL206C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3103" + - name: "PG phospholipase C (1-16:1, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3094: 2 + - s_3218: 1 + - s_3226: -1 + - s_3233: -1 + - s_3526: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL206C" + - eccodes: "3.1.4.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.-" - kegg.pathway: "sce00564" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3104" - - name: "PC phospholipase D (1-16:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0511: 1 - - s_0793: -1 - - s_3448: -1 - - s_3449: -1 - - s_3527: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR031C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3104" + - name: "PC phospholipase D (1-16:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0511: 1 + - s_0793: -1 + - s_3448: -1 + - s_3449: -1 + - s_3527: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR031C" + - eccodes: "3.1.4.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.4" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3105" - - name: "PC phospholipase D (1-16:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0511: 1 - - s_0793: -1 - - s_3449: -1 - - s_3452: -1 - - s_3528: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR031C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3105" + - name: "PC phospholipase D (1-16:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0511: 1 + - s_0793: -1 + - s_3449: -1 + - s_3452: -1 + - s_3528: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR031C" + - eccodes: "3.1.4.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.4" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3106" - - name: "PC phospholipase D (1-18:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0511: 1 - - s_0793: -1 - - s_3449: -1 - - s_3454: -1 - - s_3529: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR031C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3106" + - name: "PC phospholipase D (1-18:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0511: 1 + - s_0793: -1 + - s_3449: -1 + - s_3454: -1 + - s_3529: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR031C" + - eccodes: "3.1.4.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.4" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3107" - - name: "PC phospholipase D (1-18:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0511: 1 - - s_0793: -1 - - s_3449: -1 - - s_3456: -1 - - s_3530: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR031C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3107" + - name: "PC phospholipase D (1-18:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0511: 1 + - s_0793: -1 + - s_3449: -1 + - s_3456: -1 + - s_3530: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR031C" + - eccodes: "3.1.4.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.4" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3108" - - name: "PC phospholipase D (1-16:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0511: 1 - - s_0793: -1 - - s_3449: -1 - - s_3458: -1 - - s_3531: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR031C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3108" + - name: "PC phospholipase D (1-16:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0511: 1 + - s_0793: -1 + - s_3449: -1 + - s_3458: -1 + - s_3531: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR031C" + - eccodes: "3.1.4.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.4" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3109" - - name: "PC phospholipase D (1-16:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0511: 1 - - s_0793: -1 - - s_3449: -1 - - s_3460: -1 - - s_3532: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR031C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3109" + - name: "PC phospholipase D (1-16:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0511: 1 + - s_0793: -1 + - s_3449: -1 + - s_3460: -1 + - s_3532: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR031C" + - eccodes: "3.1.4.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.4" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3110" - - name: "PC phospholipase D (1-18:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0511: 1 - - s_0793: -1 - - s_3449: -1 - - s_3461: -1 - - s_3533: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR031C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3110" + - name: "PC phospholipase D (1-18:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0511: 1 + - s_0793: -1 + - s_3449: -1 + - s_3461: -1 + - s_3533: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR031C" + - eccodes: "3.1.4.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.4" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3111" - - name: "PC phospholipase D (1-18:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0511: 1 - - s_0793: -1 - - s_3449: -1 - - s_3462: -1 - - s_3534: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR031C" - - annotation: !!omap + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3111" + - name: "PC phospholipase D (1-18:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0511: 1 + - s_0793: -1 + - s_3449: -1 + - s_3462: -1 + - s_3534: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR031C" + - eccodes: "3.1.4.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.4" - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3112" - - name: "PI 3-P phosphatase (1-16:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3323: 1 - - s_3449: -1 - - s_3535: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3113" - - name: "PI 3-P phosphatase (1-16:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3326: 1 - - s_3449: -1 - - s_3536: 1 - - s_3537: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3114" - - name: "PI 3-P phosphatase (1-18:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3328: 1 - - s_3449: -1 - - s_3536: 1 - - s_3538: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3115" - - name: "PI 3-P phosphatase (1-18:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3330: 1 - - s_3449: -1 - - s_3536: 1 - - s_3539: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3116" - - name: "PI 3-P phosphatase (1-16:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3332: 1 - - s_3449: -1 - - s_3536: 1 - - s_3540: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3117" - - name: "PI 3-P phosphatase (1-16:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3334: 1 - - s_3449: -1 - - s_3536: 1 - - s_3541: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3118" - - name: "PI 3-P phosphatase (1-18:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3336: 1 - - s_3449: -1 - - s_3536: 1 - - s_3542: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3119" - - name: "PI 3-P phosphatase (1-18:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3338: 1 - - s_3449: -1 - - s_3536: 1 - - s_3543: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3120" - - name: "PI 3-P phosphatase (1-16:0, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3544: -1 - - s_3545: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - "3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3121" - - name: "PI 3-P phosphatase (1-16:1, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3546: -1 - - s_3547: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - "3.1.3.64" + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3112" + - name: "PI 3-P phosphatase (1-16:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3323: 1 + - s_3449: -1 + - s_3535: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3113" + - name: "PI 3-P phosphatase (1-16:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3326: 1 + - s_3449: -1 + - s_3536: 1 + - s_3537: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3114" + - name: "PI 3-P phosphatase (1-18:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3328: 1 + - s_3449: -1 + - s_3536: 1 + - s_3538: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3115" + - name: "PI 3-P phosphatase (1-18:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3330: 1 + - s_3449: -1 + - s_3536: 1 + - s_3539: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3116" + - name: "PI 3-P phosphatase (1-16:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3332: 1 + - s_3449: -1 + - s_3536: 1 + - s_3540: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3117" + - name: "PI 3-P phosphatase (1-16:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3334: 1 + - s_3449: -1 + - s_3536: 1 + - s_3541: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3118" + - name: "PI 3-P phosphatase (1-18:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3336: 1 + - s_3449: -1 + - s_3536: 1 + - s_3542: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3119" + - name: "PI 3-P phosphatase (1-18:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3338: 1 + - s_3449: -1 + - s_3536: 1 + - s_3543: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3120" + - name: "PI 3-P phosphatase (1-16:0, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3544: -1 + - s_3545: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3121" + - name: "PI 3-P phosphatase (1-16:1, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3546: -1 + - s_3547: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - bigg.reaction: "PIP3P_HDE_HDE_c" - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3122" - - name: "PI 3-P phosphatase (1-18:0, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3548: -1 - - s_3549: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - "3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3123" - - name: "PI 3-P phosphatase (1-18:1, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3550: -1 - - s_3551: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - "3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3124" - - name: "PI 3-P phosphatase (1-16:0, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3552: -1 - - s_3553: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - "3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3125" - - name: "PI 3-P phosphatase (1-16:1, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3554: -1 - - s_3555: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - "3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3126" - - name: "PI 3-P phosphatase (1-18:0, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3556: -1 - - s_3557: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - "3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3127" - - name: "PI 3-P phosphatase (1-18:1, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3558: -1 - - s_3559: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - "3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3128" - - name: "PI 3-P phosphatase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3118: 1 - - s_3560: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3122" + - name: "PI 3-P phosphatase (1-18:0, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3548: -1 + - s_3549: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3123" + - name: "PI 3-P phosphatase (1-18:1, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3550: -1 + - s_3551: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3124" + - name: "PI 3-P phosphatase (1-16:0, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3552: -1 + - s_3553: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3125" + - name: "PI 3-P phosphatase (1-16:1, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3554: -1 + - s_3555: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3126" + - name: "PI 3-P phosphatase (1-18:0, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3556: -1 + - s_3557: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3127" + - name: "PI 3-P phosphatase (1-18:1, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3558: -1 + - s_3559: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3128" + - name: "PI 3-P phosphatase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3118: 1 + - s_3560: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3129" - - name: "PI 3-P phosphatase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3119: 1 - - s_3561: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3129" + - name: "PI 3-P phosphatase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3119: 1 + - s_3561: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3130" - - name: "PI 3-P phosphatase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3120: 1 - - s_3562: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3130" + - name: "PI 3-P phosphatase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3120: 1 + - s_3562: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3131" - - name: "PI 3-P phosphatase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3121: 1 - - s_3563: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3131" + - name: "PI 3-P phosphatase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3121: 1 + - s_3563: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3132" - - name: "PI 3-P phosphatase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3122: 1 - - s_3564: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3132" + - name: "PI 3-P phosphatase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3122: 1 + - s_3564: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3133" - - name: "PI 3-P phosphatase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3123: 1 - - s_3565: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3133" + - name: "PI 3-P phosphatase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3123: 1 + - s_3565: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3134" - - name: "PI 3-P phosphatase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3124: 1 - - s_3566: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3134" + - name: "PI 3-P phosphatase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3124: 1 + - s_3566: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3135" - - name: "PI 3-P phosphatase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3125: 1 - - s_3567: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3135" + - name: "PI 3-P phosphatase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3125: 1 + - s_3567: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3136" - - name: "PI 3-P phosphatase (1-16:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3358: 1 - - s_3568: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3136" + - name: "PI 3-P phosphatase (1-16:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3358: 1 + - s_3568: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3137" - - name: "PI 3-P phosphatase (1-16:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3362: 1 - - s_3569: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3137" + - name: "PI 3-P phosphatase (1-16:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3362: 1 + - s_3569: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3138" - - name: "PI 3-P phosphatase (1-18:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3364: 1 - - s_3570: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3138" + - name: "PI 3-P phosphatase (1-18:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3364: 1 + - s_3570: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3139" - - name: "PI 3-P phosphatase (1-18:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3366: 1 - - s_3571: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3139" + - name: "PI 3-P phosphatase (1-18:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3366: 1 + - s_3571: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3140" - - name: "PI 3-P phosphatase (1-16:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3368: 1 - - s_3572: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3140" + - name: "PI 3-P phosphatase (1-16:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3368: 1 + - s_3572: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3141" - - name: "PI 3-P phosphatase (1-16:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3370: 1 - - s_3573: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3141" + - name: "PI 3-P phosphatase (1-16:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3370: 1 + - s_3573: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3142" - - name: "PI 3-P phosphatase (1-18:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3372: 1 - - s_3574: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3142" + - name: "PI 3-P phosphatase (1-18:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3372: 1 + - s_3574: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3143" - - name: "PI 3-P phosphatase (1-18:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3374: 1 - - s_3575: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3143" + - name: "PI 3-P phosphatase (1-18:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3374: 1 + - s_3575: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3144" - - name: "PI 4-P phosphatase (1-16:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3323: 1 - - s_3325: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3145" - - name: "PI 4-P phosphatase (1-16:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3326: 1 - - s_3327: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3146" - - name: "PI 4-P phosphatase (1-18:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3328: 1 - - s_3329: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3147" - - name: "PI 4-P phosphatase (1-18:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3330: 1 - - s_3331: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3148" - - name: "PI 4-P phosphatase (1-16:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3332: 1 - - s_3333: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3149" - - name: "PI 4-P phosphatase (1-16:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3334: 1 - - s_3335: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3150" - - name: "PI 4-P phosphatase (1-18:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3336: 1 - - s_3337: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3151" - - name: "PI 4-P phosphatase (1-18:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3338: 1 - - s_3339: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3152" - - name: "PI 4-P phosphatase (1-16:0, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3545: 1 - - s_3576: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3153" - - name: "PI 4-P phosphatase (1-16:1, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3547: 1 - - s_3577: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3154" - - name: "PI 4-P phosphatase (1-18:0, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3549: 1 - - s_3578: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3155" - - name: "PI 4-P phosphatase (1-18:1, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3551: 1 - - s_3579: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3156" - - name: "PI 4-P phosphatase (1-16:0, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3553: 1 - - s_3580: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3157" - - name: "PI 4-P phosphatase (1-16:1, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3555: 1 - - s_3581: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3158" - - name: "PI 4-P phosphatase (1-18:0, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3557: 1 - - s_3582: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3159" - - name: "PI 4-P phosphatase (1-18:1, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3559: 1 - - s_3583: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3160" - - name: "PI 4-P phosphatase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3118: 1 - - s_3584: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3144" + - name: "PI 4-P phosphatase (1-16:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3323: 1 + - s_3325: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3145" + - name: "PI 4-P phosphatase (1-16:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3326: 1 + - s_3327: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3146" + - name: "PI 4-P phosphatase (1-18:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3328: 1 + - s_3329: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3147" + - name: "PI 4-P phosphatase (1-18:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3330: 1 + - s_3331: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3148" + - name: "PI 4-P phosphatase (1-16:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3332: 1 + - s_3333: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3149" + - name: "PI 4-P phosphatase (1-16:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3334: 1 + - s_3335: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3150" + - name: "PI 4-P phosphatase (1-18:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3336: 1 + - s_3337: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3151" + - name: "PI 4-P phosphatase (1-18:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3338: 1 + - s_3339: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3152" + - name: "PI 4-P phosphatase (1-16:0, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3545: 1 + - s_3576: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3153" + - name: "PI 4-P phosphatase (1-16:1, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3547: 1 + - s_3577: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3154" + - name: "PI 4-P phosphatase (1-18:0, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3549: 1 + - s_3578: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3155" + - name: "PI 4-P phosphatase (1-18:1, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3551: 1 + - s_3579: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3156" + - name: "PI 4-P phosphatase (1-16:0, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3553: 1 + - s_3580: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3157" + - name: "PI 4-P phosphatase (1-16:1, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3555: 1 + - s_3581: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3158" + - name: "PI 4-P phosphatase (1-18:0, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3557: 1 + - s_3582: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3159" + - name: "PI 4-P phosphatase (1-18:1, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3559: 1 + - s_3583: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3160" + - name: "PI 4-P phosphatase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3118: 1 + - s_3584: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3161" - - name: "PI 4-P phosphatase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3119: 1 - - s_3585: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3161" + - name: "PI 4-P phosphatase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3119: 1 + - s_3585: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3162" - - name: "PI 4-P phosphatase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3120: 1 - - s_3586: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3162" + - name: "PI 4-P phosphatase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3120: 1 + - s_3586: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3163" - - name: "PI 4-P phosphatase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3121: 1 - - s_3587: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3163" + - name: "PI 4-P phosphatase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3121: 1 + - s_3587: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3164" - - name: "PI 4-P phosphatase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3122: 1 - - s_3588: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3164" + - name: "PI 4-P phosphatase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3122: 1 + - s_3588: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3165" - - name: "PI 4-P phosphatase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3123: 1 - - s_3589: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3165" + - name: "PI 4-P phosphatase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3123: 1 + - s_3589: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3166" - - name: "PI 4-P phosphatase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3124: 1 - - s_3590: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3166" + - name: "PI 4-P phosphatase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3124: 1 + - s_3590: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3167" - - name: "PI 4-P phosphatase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3125: 1 - - s_3591: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3167" + - name: "PI 4-P phosphatase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3125: 1 + - s_3591: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3168" - - name: "PI 4-P phosphatase (1-16:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3358: 1 - - s_3361: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3168" + - name: "PI 4-P phosphatase (1-16:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3358: 1 + - s_3361: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3169" - - name: "PI 4-P phosphatase (1-16:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3362: 1 - - s_3363: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3169" + - name: "PI 4-P phosphatase (1-16:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3362: 1 + - s_3363: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3170" - - name: "PI 4-P phosphatase (1-18:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3364: 1 - - s_3365: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3170" + - name: "PI 4-P phosphatase (1-18:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3364: 1 + - s_3365: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3171" - - name: "PI 4-P phosphatase (1-18:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3366: 1 - - s_3367: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3171" + - name: "PI 4-P phosphatase (1-18:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3366: 1 + - s_3367: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3172" - - name: "PI 4-P phosphatase (1-16:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3368: 1 - - s_3369: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3172" + - name: "PI 4-P phosphatase (1-16:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3368: 1 + - s_3369: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3173" - - name: "PI 4-P phosphatase (1-16:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3370: 1 - - s_3371: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3173" + - name: "PI 4-P phosphatase (1-16:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3370: 1 + - s_3371: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3174" - - name: "PI 4-P phosphatase (1-18:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3372: 1 - - s_3373: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3174" + - name: "PI 4-P phosphatase (1-18:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3372: 1 + - s_3373: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3175" - - name: "PI 4-P phosphatase (1-18:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3374: 1 - - s_3375: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL212W" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3175" + - name: "PI 4-P phosphatase (1-18:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3374: 1 + - s_3375: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL212W" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3176" - - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3449: -1 - - s_3535: 1 - - s_3536: 1 - - s_3592: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3177" - - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3449: -1 - - s_3536: 1 - - s_3537: 1 - - s_3593: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3178" - - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3449: -1 - - s_3536: 1 - - s_3538: 1 - - s_3594: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3179" - - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3449: -1 - - s_3536: 1 - - s_3539: 1 - - s_3595: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3180" - - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3449: -1 - - s_3536: 1 - - s_3540: 1 - - s_3596: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3181" - - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3449: -1 - - s_3536: 1 - - s_3541: 1 - - s_3597: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3182" - - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3449: -1 - - s_3536: 1 - - s_3542: 1 - - s_3598: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3183" - - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3449: -1 - - s_3536: 1 - - s_3543: 1 - - s_3599: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3184" - - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3544: 1 - - s_3600: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3185" - - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3546: 1 - - s_3601: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3186" - - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3548: 1 - - s_3602: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3187" - - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3550: 1 - - s_3603: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3188" - - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3552: 1 - - s_3604: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3189" - - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3554: 1 - - s_3605: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3190" - - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3556: 1 - - s_3606: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3191" - - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3558: 1 - - s_3607: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3192" - - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3325: 1 - - s_3408: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3193" - - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3327: 1 - - s_3409: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3194" - - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3329: 1 - - s_3410: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3195" - - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3331: 1 - - s_3411: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3196" - - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3333: 1 - - s_3412: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3197" - - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3335: 1 - - s_3413: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3198" - - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3337: 1 - - s_3414: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3199" - - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), cell envelope" - - metabolites: !!omap - - s_0793: 2 - - s_3339: 1 - - s_3415: -1 - - s_3449: -1 - - s_3536: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3200" - - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3496: -1 - - s_3576: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3201" - - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3499: -1 - - s_3577: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3202" - - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3501: -1 - - s_3578: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3203" - - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3503: -1 - - s_3579: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3204" - - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3505: -1 - - s_3580: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3205" - - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3507: -1 - - s_3581: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3206" - - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3509: -1 - - s_3582: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3207" - - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3511: -1 - - s_3583: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3208" - - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3584: 1 - - s_3608: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL065C" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3176" + - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3449: -1 + - s_3535: 1 + - s_3536: 1 + - s_3592: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3177" + - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3449: -1 + - s_3536: 1 + - s_3537: 1 + - s_3593: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3178" + - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3449: -1 + - s_3536: 1 + - s_3538: 1 + - s_3594: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3179" + - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3449: -1 + - s_3536: 1 + - s_3539: 1 + - s_3595: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3180" + - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3449: -1 + - s_3536: 1 + - s_3540: 1 + - s_3596: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3181" + - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3449: -1 + - s_3536: 1 + - s_3541: 1 + - s_3597: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3182" + - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3449: -1 + - s_3536: 1 + - s_3542: 1 + - s_3598: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3183" + - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3449: -1 + - s_3536: 1 + - s_3543: 1 + - s_3599: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3184" + - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3544: 1 + - s_3600: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3185" + - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3546: 1 + - s_3601: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3186" + - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3548: 1 + - s_3602: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3187" + - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3550: 1 + - s_3603: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3188" + - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3552: 1 + - s_3604: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3189" + - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3554: 1 + - s_3605: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3190" + - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3556: 1 + - s_3606: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3191" + - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3558: 1 + - s_3607: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3192" + - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3325: 1 + - s_3408: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3193" + - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3327: 1 + - s_3409: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3194" + - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3329: 1 + - s_3410: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3195" + - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3331: 1 + - s_3411: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3196" + - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3333: 1 + - s_3412: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3197" + - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3335: 1 + - s_3413: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3198" + - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3337: 1 + - s_3414: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3199" + - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), cell envelope" + - metabolites: !!omap + - s_0793: 2 + - s_3339: 1 + - s_3415: -1 + - s_3449: -1 + - s_3536: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3200" + - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3496: -1 + - s_3576: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3201" + - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3499: -1 + - s_3577: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3202" + - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3501: -1 + - s_3578: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3203" + - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3503: -1 + - s_3579: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3204" + - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3505: -1 + - s_3580: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3205" + - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3507: -1 + - s_3581: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3206" + - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3509: -1 + - s_3582: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3207" + - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3511: -1 + - s_3583: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" + - eccodes: "3.1.3.-; 3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3208" + - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3584: 1 + - s_3608: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL065C" + - eccodes: "3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.36" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3209" - - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3585: 1 - - s_3609: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL065C" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3209" + - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3585: 1 + - s_3609: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL065C" + - eccodes: "3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.36" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3210" - - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3586: 1 - - s_3610: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL065C" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3210" + - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3586: 1 + - s_3610: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL065C" + - eccodes: "3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.36" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3211" - - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3587: 1 - - s_3611: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL065C" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3211" + - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3587: 1 + - s_3611: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL065C" + - eccodes: "3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.36" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3212" - - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3588: 1 - - s_3612: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL065C" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3212" + - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3588: 1 + - s_3612: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL065C" + - eccodes: "3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.36" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3213" - - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3589: 1 - - s_3613: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL065C" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3213" + - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3589: 1 + - s_3613: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL065C" + - eccodes: "3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.36" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3214" - - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3590: 1 - - s_3614: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL065C" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3214" + - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3590: 1 + - s_3614: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL065C" + - eccodes: "3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.36" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3215" - - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), ER membrane" - - metabolites: !!omap - - s_2783: 2 - - s_2808: -1 - - s_2966: 1 - - s_3591: 1 - - s_3615: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOL065C" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3215" + - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), ER membrane" + - metabolites: !!omap + - s_2783: 2 + - s_2808: -1 + - s_2966: 1 + - s_3591: 1 + - s_3615: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL065C" + - eccodes: "3.1.3.36" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.36" - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3216" - - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3392: 1 - - s_3416: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR386W and YNL325C" - - annotation: !!omap + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3216" + - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3392: 1 + - s_3416: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR386W and YNL325C" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3217" - - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3393: 1 - - s_3417: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR386W and YNL325C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3217" + - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3393: 1 + - s_3417: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR386W and YNL325C" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3218" - - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3394: 1 - - s_3418: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR386W and YNL325C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3218" + - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3394: 1 + - s_3418: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR386W and YNL325C" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3219" - - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3395: 1 - - s_3419: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR386W and YNL325C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3219" + - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3395: 1 + - s_3419: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR386W and YNL325C" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3220" - - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3396: 1 - - s_3420: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR386W and YNL325C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3220" + - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3396: 1 + - s_3420: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR386W and YNL325C" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3221" - - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3397: 1 - - s_3421: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR386W and YNL325C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3221" + - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3397: 1 + - s_3421: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR386W and YNL325C" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3222" - - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3398: 1 - - s_3422: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR386W and YNL325C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3222" + - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3398: 1 + - s_3422: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR386W and YNL325C" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3223" - - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3399: 1 - - s_3423: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR386W and YNL325C" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3223" + - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3399: 1 + - s_3423: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR386W and YNL325C" + - eccodes: "3.1.3.-" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - pmid: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3224" - - name: "DGPP phosphatase (1-16:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2975: 1 - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3616: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3225" - - name: "DGPP phosphatase (1-16:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2981: 1 - - s_3164: 2 - - s_3617: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3226" - - name: "DGPP phosphatase (1-18:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2985: 1 - - s_3164: 2 - - s_3618: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3227" - - name: "DGPP phosphatase (1-18:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2989: 1 - - s_3164: 2 - - s_3619: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3228" - - name: "DGPP phosphatase (1-16:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2979: 1 - - s_3164: 2 - - s_3620: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3229" - - name: "DGPP phosphatase (1-16:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2983: 1 - - s_3164: 2 - - s_3621: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3230" - - name: "DGPP phosphatase (1-18:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2987: 1 - - s_3164: 2 - - s_3622: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3231" - - name: "DGPP phosphatase (1-18:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_2991: 1 - - s_3164: 2 - - s_3623: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3232" - - name: "DGPP phosphatase (1-16:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2993: 1 - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3624: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3233" - - name: "DGPP phosphatase (1-16:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_2999: 1 - - s_3146: 2 - - s_3625: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3234" - - name: "DGPP phosphatase (1-18:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3003: 1 - - s_3146: 2 - - s_3626: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3235" - - name: "DGPP phosphatase (1-18:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3007: 1 - - s_3146: 2 - - s_3627: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3236" - - name: "DGPP phosphatase (1-16:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_2997: 1 - - s_3146: 2 - - s_3628: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3237" - - name: "DGPP phosphatase (1-16:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3001: 1 - - s_3146: 2 - - s_3629: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3238" - - name: "DGPP phosphatase (1-18:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3005: 1 - - s_3146: 2 - - s_3630: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3239" - - name: "DGPP phosphatase (1-18:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3009: 1 - - s_3146: 2 - - s_3631: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3240" - - name: "lysoPA phosphatase (16:0), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3632: -1 - - s_3633: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER037W" - - annotation: !!omap - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3241" - - name: "lysoPA phosphatase (16:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3634: -1 - - s_3635: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER037W" - - annotation: !!omap - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3242" - - name: "lysoPA phosphatase (18:0), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3636: -1 - - s_3637: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER037W" - - annotation: !!omap - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3243" - - name: "lysoPA phosphatase (18:1), cytoplasm" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1322: 1 - - s_3638: -1 - - s_3639: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER037W" - - annotation: !!omap - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3244" - - name: "lysoPA phosphatase (16:0), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3640: -1 - - s_3641: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3245" - - name: "lysoPA phosphatase (16:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3642: -1 - - s_3643: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3246" - - name: "lysoPA phosphatase (18:0), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3644: -1 - - s_3645: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3247" - - name: "lysoPA phosphatase (18:1), vacuolar membrane" - - metabolites: !!omap - - s_2976: -1 - - s_2977: 1 - - s_3164: 2 - - s_3646: -1 - - s_3647: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR284C" - - annotation: !!omap - - ec-code: - - "3.1.3.4" - - "3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3248" - - name: "lysoPA phosphatase (16:0), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3648: -1 - - s_3649: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3249" - - name: "lysoPA phosphatase (16:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3650: -1 - - s_3651: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3250" - - name: "lysoPA phosphatase (18:0), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3652: -1 - - s_3653: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3251" - - name: "lysoPA phosphatase (18:1), Golgi membrane" - - metabolites: !!omap - - s_2994: -1 - - s_2995: 1 - - s_3146: 2 - - s_3654: -1 - - s_3655: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR503C" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3252" - - name: "ergosteryl ester hydrolase (16:1), lipid particle" - - metabolites: !!omap - - s_0669: 1 - - s_0798: 1 - - s_2848: 1 - - s_3656: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL140W or YLL012W" - - annotation: !!omap + - confidence_score: 3 + - !!omap + - id: "r_3224" + - name: "DGPP phosphatase (1-16:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2975: 1 + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3616: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3225" + - name: "DGPP phosphatase (1-16:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2981: 1 + - s_3164: 2 + - s_3617: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3226" + - name: "DGPP phosphatase (1-18:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2985: 1 + - s_3164: 2 + - s_3618: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3227" + - name: "DGPP phosphatase (1-18:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2989: 1 + - s_3164: 2 + - s_3619: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3228" + - name: "DGPP phosphatase (1-16:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2979: 1 + - s_3164: 2 + - s_3620: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3229" + - name: "DGPP phosphatase (1-16:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2983: 1 + - s_3164: 2 + - s_3621: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3230" + - name: "DGPP phosphatase (1-18:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2987: 1 + - s_3164: 2 + - s_3622: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3231" + - name: "DGPP phosphatase (1-18:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_2991: 1 + - s_3164: 2 + - s_3623: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3232" + - name: "DGPP phosphatase (1-16:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2993: 1 + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3624: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3233" + - name: "DGPP phosphatase (1-16:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_2999: 1 + - s_3146: 2 + - s_3625: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3234" + - name: "DGPP phosphatase (1-18:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3003: 1 + - s_3146: 2 + - s_3626: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3235" + - name: "DGPP phosphatase (1-18:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3007: 1 + - s_3146: 2 + - s_3627: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3236" + - name: "DGPP phosphatase (1-16:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_2997: 1 + - s_3146: 2 + - s_3628: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3237" + - name: "DGPP phosphatase (1-16:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3001: 1 + - s_3146: 2 + - s_3629: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3238" + - name: "DGPP phosphatase (1-18:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3005: 1 + - s_3146: 2 + - s_3630: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3239" + - name: "DGPP phosphatase (1-18:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3009: 1 + - s_3146: 2 + - s_3631: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3240" + - name: "lysoPA phosphatase (16:0), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3632: -1 + - s_3633: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER037W" + - eccodes: "" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3241" + - name: "lysoPA phosphatase (16:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3634: -1 + - s_3635: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER037W" + - eccodes: "" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3242" + - name: "lysoPA phosphatase (18:0), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3636: -1 + - s_3637: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER037W" + - eccodes: "" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3243" + - name: "lysoPA phosphatase (18:1), cytoplasm" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1322: 1 + - s_3638: -1 + - s_3639: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER037W" + - eccodes: "" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3244" + - name: "lysoPA phosphatase (16:0), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3640: -1 + - s_3641: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3245" + - name: "lysoPA phosphatase (16:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3642: -1 + - s_3643: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3246" + - name: "lysoPA phosphatase (18:0), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3644: -1 + - s_3645: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3247" + - name: "lysoPA phosphatase (18:1), vacuolar membrane" + - metabolites: !!omap + - s_2976: -1 + - s_2977: 1 + - s_3164: 2 + - s_3646: -1 + - s_3647: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR284C" + - eccodes: "3.1.3.4; 3.1.3.81" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3248" + - name: "lysoPA phosphatase (16:0), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3648: -1 + - s_3649: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3249" + - name: "lysoPA phosphatase (16:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3650: -1 + - s_3651: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3250" + - name: "lysoPA phosphatase (18:0), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3652: -1 + - s_3653: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3251" + - name: "lysoPA phosphatase (18:1), Golgi membrane" + - metabolites: !!omap + - s_2994: -1 + - s_2995: 1 + - s_3146: 2 + - s_3654: -1 + - s_3655: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR503C" + - eccodes: "3.1.3.-; 3.1.3.4" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3252" + - name: "ergosteryl ester hydrolase (16:1), lipid particle" + - metabolites: !!omap + - s_0669: 1 + - s_0798: 1 + - s_2848: 1 + - s_3656: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL140W or YLL012W" + - eccodes: "3.1.1.13" + - references: "16835446; 14640980" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.13" + - kegg.pathway: "sce00100" + - pmid: + - "16835446" + - "14640980" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3253" + - name: "ergosteryl ester hydrolase (18:1), lipid particle" + - metabolites: !!omap + - s_0669: 1 + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3658: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL140W or YLL012W" + - eccodes: "3.1.1.13" + - references: "16835446; 14640980" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.13" - kegg.pathway: "sce00100" + - metanetx.reaction: "MNXR119162" + - pmid: + - "16835446" + - "14640980" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3254" + - name: "episteryl ester hydrolase (16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3657: -1 + - s_3659: -1 + - s_3660: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL012W" + - eccodes: "3.1.1.13" + - references: "16835446" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3255" + - name: "episteryl ester hydrolase (18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3660: 1 + - s_3661: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL012W" + - eccodes: "3.1.1.13" + - references: "16835446" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3256" + - name: "fecosteryl ester hydrolase (16:1), lipid particle" + - metabolites: !!omap + - s_0703: 1 + - s_0798: 1 + - s_2848: 1 + - s_3657: -1 + - s_3662: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL012W" + - eccodes: "3.1.1.13" + - references: "16835446" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3257" + - name: "fecosteryl ester hydrolase (18:1), lipid particle" + - metabolites: !!omap + - s_0703: 1 + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3663: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL012W" + - eccodes: "3.1.1.13" + - references: "16835446" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3258" + - name: "lanosteryl ester hydrolase (16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3657: -1 + - s_3664: -1 + - s_3665: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL012W" + - eccodes: "3.1.1.13" + - references: "16835446" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3259" + - name: "lanosteryl ester hydrolase (18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3665: 1 + - s_3666: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL012W" + - eccodes: "3.1.1.13" + - references: "16835446" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.13" + - metanetx.reaction: "MNXR119160" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3260" + - name: "zymosteryl ester hydrolase (16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_1572: 1 + - s_2848: 1 + - s_3657: -1 + - s_3667: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL012W" + - eccodes: "3.1.1.13" + - references: "16835446" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3261" + - name: "zymosteryl ester hydrolase (18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_1572: 1 + - s_2852: 1 + - s_3657: -1 + - s_3668: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL012W" + - eccodes: "3.1.1.13" + - references: "16835446" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3262" + - name: "zymosteryl ester hydrolase (16:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_1568: 1 + - s_3449: -1 + - s_3451: 1 + - s_3669: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR020C" + - eccodes: "3.1.1.13" + - references: "15632184" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.13" + - pmid: "15632184" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3263" + - name: "zymosteryl ester hydrolase (18:1), cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_1568: 1 + - s_3449: -1 + - s_3459: 1 + - s_3670: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR020C" + - eccodes: "3.1.1.13" + - references: "15632184" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.13" + - pmid: "15632184" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3264" + - name: "TAG lipase (1-16:0, 2-16:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2846: 1 + - s_3043: 1 + - s_3044: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C or YCR068W" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3265" + - name: "TAG lipase (1-16:0, 2-16:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3043: 1 + - s_3059: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3266" + - name: "TAG lipase (1-16:0, 2-16:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2850: 1 + - s_3043: 1 + - s_3067: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3267" + - name: "TAG lipase (1-16:0, 2-16:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3043: 1 + - s_3075: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3268" + - name: "TAG lipase (1-16:1, 2-16:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2846: 1 + - s_3047: 1 + - s_3048: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3269" + - name: "TAG lipase (1-16:1, 2-16:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3047: 1 + - s_3061: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3270" + - name: "TAG lipase (1-16:1, 2-16:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2850: 1 + - s_3047: 1 + - s_3069: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3271" + - name: "TAG lipase (1-16:1, 2-16:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3047: 1 + - s_3077: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3272" + - name: "TAG lipase (1-18:0, 2-16:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2846: 1 + - s_3051: 1 + - s_3052: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3273" + - name: "TAG lipase (1-18:0, 2-16:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3051: 1 + - s_3063: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3274" + - name: "TAG lipase (1-18:0, 2-16:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2850: 1 + - s_3051: 1 + - s_3071: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3275" + - name: "TAG lipase (1-18:0, 2-16:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3051: 1 + - s_3079: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3276" + - name: "TAG lipase (1-18:1, 2-16:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2846: 1 + - s_3055: 1 + - s_3056: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3277" + - name: "TAG lipase (1-18:1, 2-16:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3055: 1 + - s_3065: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3278" + - name: "TAG lipase (1-18:1, 2-16:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2850: 1 + - s_3055: 1 + - s_3073: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3279" + - name: "TAG lipase (1-18:1, 2-16:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3055: 1 + - s_3081: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3280" + - name: "TAG lipase (1-16:0, 2-18:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2846: 1 + - s_3045: 1 + - s_3046: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3281" + - name: "TAG lipase (1-16:0, 2-18:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3045: 1 + - s_3060: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3282" + - name: "TAG lipase (1-16:0, 2-18:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2850: 1 + - s_3045: 1 + - s_3068: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3283" + - name: "TAG lipase (1-16:0, 2-18:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3045: 1 + - s_3076: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3284" + - name: "TAG lipase (1-16:1, 2-18:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2846: 1 + - s_3049: 1 + - s_3050: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3285" + - name: "TAG lipase (1-16:1, 2-18:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3049: 1 + - s_3062: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3286" + - name: "TAG lipase (1-16:1, 2-18:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2850: 1 + - s_3049: 1 + - s_3070: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3287" + - name: "TAG lipase (1-16:1, 2-18:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3049: 1 + - s_3078: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3288" + - name: "TAG lipase (1-18:0, 2-18:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2846: 1 + - s_3053: 1 + - s_3054: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3289" + - name: "TAG lipase (1-18:0, 2-18:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3053: 1 + - s_3064: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3290" + - name: "TAG lipase (1-18:0, 2-18:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2850: 1 + - s_3053: 1 + - s_3072: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3291" + - name: "TAG lipase (1-18:0, 2-18:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3053: 1 + - s_3080: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3292" + - name: "TAG lipase (1-18:1, 2-18:1, 3-16:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2846: 1 + - s_3057: 1 + - s_3058: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3293" + - name: "TAG lipase (1-18:1, 2-18:1, 3-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3057: 1 + - s_3066: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3294" + - name: "TAG lipase (1-18:1, 2-18:1, 3-18:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2850: 1 + - s_3057: 1 + - s_3074: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3295" + - name: "TAG lipase (1-18:1, 2-18:1, 3-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3057: 1 + - s_3082: -1 + - s_3657: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" + - eccodes: "3.1.1.-; 3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3296" + - name: "DAG lipase (1-16:0, 2-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3043: -1 + - s_3657: -1 + - s_3671: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR313C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3297" + - name: "DAG lipase (1-16:1, 2-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3047: -1 + - s_3657: -1 + - s_3672: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR068W or YMR313C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3298" + - name: "DAG lipase (1-18:0, 2-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3051: -1 + - s_3657: -1 + - s_3673: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR313C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3299" + - name: "DAG lipase (1-18:1, 2-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3055: -1 + - s_3657: -1 + - s_3674: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR313C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3300" + - name: "DAG lipase (1-16:0, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3045: -1 + - s_3657: -1 + - s_3671: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR313C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3301" + - name: "DAG lipase (1-16:1, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3049: -1 + - s_3657: -1 + - s_3672: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR313C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3302" + - name: "DAG lipase (1-18:0, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3053: -1 + - s_3657: -1 + - s_3673: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR313C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3303" + - name: "DAG lipase (1-18:1, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3057: -1 + - s_3657: -1 + - s_3674: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR313C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3304" + - name: "DAG lipase (1-16:0, 2-18:1), mitochondrion" + - metabolites: !!omap + - s_0799: 1 + - s_0807: -1 + - s_3675: -1 + - s_3676: 1 + - s_3677: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR058C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3305" + - name: "DAG lipase (1-16:1, 2-18:1), mitochondrion" + - metabolites: !!omap + - s_0799: 1 + - s_0807: -1 + - s_3677: 1 + - s_3678: -1 + - s_3679: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR058C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3306" + - name: "DAG lipase (1-18:0, 2-18:1), mitochondrion" + - metabolites: !!omap + - s_0799: 1 + - s_0807: -1 + - s_3677: 1 + - s_3680: -1 + - s_3681: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR058C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3307" + - name: "DAG lipase (1-18:1, 2-18:1), mitochondrion" + - metabolites: !!omap + - s_0799: 1 + - s_0807: -1 + - s_3677: 1 + - s_3682: -1 + - s_3683: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR058C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3308" + - name: "MAG lipase (1-16:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2846: 1 + - s_3657: -1 + - s_3671: -1 + - s_3684: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL094W" + - eccodes: "3.1.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.23" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3309" + - name: "MAG lipase (1-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3657: -1 + - s_3672: -1 + - s_3684: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL094W" + - eccodes: "3.1.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.23" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3310" + - name: "MAG lipase (1-18:0), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2850: 1 + - s_3657: -1 + - s_3673: -1 + - s_3684: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL094W" + - eccodes: "3.1.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.23" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3311" + - name: "MAG lipase (1-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3674: -1 + - s_3684: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL094W" + - eccodes: "3.1.1.23" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.23" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3312" + - name: "lysoPE (1-16:0) oleoyl-CoA acyltransferase, lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_3685: -1 + - s_3686: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR313C" + - eccodes: "3.1.1.3" + - references: "20016004" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "20016004" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3313" + - name: "lysoPE (1-16:1) oleoyl-CoA acyltransferase, lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_3687: -1 + - s_3688: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR313C" + - eccodes: "3.1.1.3" + - references: "20016004" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "20016004" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3314" + - name: "lysoPE (1-18:0) oleoyl-CoA acyltransferase, lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_3689: -1 + - s_3690: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR313C" + - eccodes: "3.1.1.3" + - references: "20016004" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "20016004" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3315" + - name: "lysoPE (1-18:1) oleoyl-CoA acyltransferase, lipid particle" + - metabolites: !!omap + - s_0531: 1 + - s_2853: -1 + - s_3691: -1 + - s_3692: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR313C" + - eccodes: "3.1.1.3" + - references: "20016004" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "20016004" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3316" + - name: "PC phospholipase A2 (1-16:0, 2-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3657: -1 + - s_3693: -1 + - s_3694: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3317" + - name: "PC phospholipase A2 (1-16:1, 2-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3657: -1 + - s_3695: -1 + - s_3696: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3318" + - name: "PC phospholipase A2 (1-18:0, 2-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3657: -1 + - s_3697: -1 + - s_3698: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3319" + - name: "PC phospholipase A2 (1-18:1, 2-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3657: -1 + - s_3699: -1 + - s_3700: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3320" + - name: "PC phospholipase A2 (1-16:0, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3694: 1 + - s_3701: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3321" + - name: "PC phospholipase A2 (1-16:1, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3696: 1 + - s_3702: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3322" + - name: "PC phospholipase A2 (1-18:0, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3698: 1 + - s_3703: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3323" + - name: "PC phospholipase A2 (1-18:1, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3700: 1 + - s_3704: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3324" + - name: "PE phospholipase A2 (1-16:0, 2-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3657: -1 + - s_3685: 1 + - s_3705: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3325" + - name: "PE phospholipase A2 (1-16:1, 2-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3657: -1 + - s_3687: 1 + - s_3706: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3326" + - name: "PE phospholipase A2 (1-18:0, 2-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3657: -1 + - s_3689: 1 + - s_3707: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3327" + - name: "PE phospholipase A2 (1-18:1, 2-16:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2848: 1 + - s_3657: -1 + - s_3691: 1 + - s_3708: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3328" + - name: "PE phospholipase A2 (1-16:0, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3685: 1 + - s_3686: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3329" + - name: "PE phospholipase A2 (1-16:1, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3687: 1 + - s_3688: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3330" + - name: "PE phospholipase A2 (1-18:0, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3689: 1 + - s_3690: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3331" + - name: "PE phospholipase A2 (1-18:1, 2-18:1), lipid particle" + - metabolites: !!omap + - s_0798: 1 + - s_2852: 1 + - s_3657: -1 + - s_3691: 1 + - s_3692: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKR089C" + - eccodes: "3.1.1.3" + - references: "22345606" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_4039" + - name: "succinyl-CoA:acetate CoA transferase" + - metabolites: !!omap + - s_0365: -1 + - s_0376: 1 + - s_1460: 1 + - s_1464: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBL015W" + - eccodes: "3.1.2.1" + - references: "19298859" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.2.1" + - kegg.pathway: "sce00620" + - kegg.reaction: "R10343" + - metanetx.reaction: "MNXR104636" + - pmid: "19298859" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_4042" + - name: "raffinose invertase" + - metabolites: !!omap + - s_0554: 1 + - s_0805: -1 + - s_3715: -1 + - s_3716: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "4967422" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.reaction: "R02410" + - metanetx.reaction: "MNXR103420" + - pmid: "4967422" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_4045" + - name: "uridine hydrolase" + - metabolites: !!omap + - s_0575: 1 + - s_0803: -1 + - s_1550: 1 + - s_1556: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR400W" + - eccodes: "3.2.2.3" + - references: "23670538" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.2.2.3" + - bigg.reaction: "URIH" + - kegg.pathway: + - "sce00240" + - "sce00760" + - kegg.reaction: "R01080" + - metanetx.reaction: "MNXR105161" + - pmid: "23670538" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_0964" + - name: "reduced glutathione via ABC system" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0750: -1 + - s_0753: 1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR135C" + - eccodes: "" + - references: "9729482" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR100447" + - pmid: "9729482" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1028" + - name: "taurcholate via ABC system" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_1473: -1 + - s_1474: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL048C" + - eccodes: "" + - references: "9182565" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR104744" + - pmid: "9182565" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1085" + - name: "V-ATPase, Golgi" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: -1 + - s_0797: 2 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR127C and YDL185W and YEL027W and YEL051W and YGR020C and YHR026W and YHR039C-A and YKL080W and YLR447C and YMR054W and YOR332W and YPL234C and YPR036W" + - eccodes: "3.1.-.-; 3.6.3.14" + - references: "11278748; 11836511" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.-.-; 3.6.3.14" + - kegg.pathway: + - "sce00190" + - "sce04145" + - metanetx.reaction: "MNXR96133" + - pmid: + - "11278748" + - "11836511" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1086" + - name: "V-ATPase, vacuole" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: -1 + - s_0802: 2 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR127C and YDL185W and YEL027W and YEL051W and YGR020C and YHR026W and YHR039C-A and YKL080W and YLR447C and YOR270C and YOR332W and YPL234C and YPR036W" + - eccodes: "3.1.-.-; 3.6.3.14" + - references: "11278748; 11836511" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.-.-; 3.6.3.14" + - kegg.pathway: + - "sce00190" + - "sce04145" + - metanetx.reaction: "MNXR96133" + - pmid: + - "11278748" + - "11836511" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1096" + - name: "(R)-mevalonate transport" + - metabolites: !!omap + - s_0028: 1 + - s_0029: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "15215118" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "MEV_Rt" + - metanetx.reaction: "MNXR105406" + - pmid: "15215118" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1097" + - name: "(R,R)-butanediol transport" + - metabolites: !!omap + - s_0035: -1 + - s_0036: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "10938079" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "BTDt_RR" + - metanetx.reaction: "MNXR136615" + - pmid: "10938079" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1098" + - name: "2-methylbutyl transport" + - metabolites: !!omap + - s_0172: -1 + - s_0173: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "10653746" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2MBACt" + - metanetx.reaction: "MNXR94808" + - pmid: "10653746" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1099" + - name: "2-oxoadipate and 2-oxoglutarate transport" + - metabolites: !!omap + - s_0176: 1 + - s_0177: -1 + - s_0180: -1 + - s_0182: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR222W or YPL134C" + - eccodes: "" + - references: "16844075; 11013234" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2OXOADPTm" + - metanetx.reaction: "MNXR94819" + - pmid: + - "16844075" + - "11013234" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1100" + - name: "3-hexaprenyl-4,5-dihydroxybenzoate transport" + - metabolites: !!omap + - s_0212: -1 + - s_0213: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "11583838" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "3DH5HPBtm" + - metanetx.reaction: "MNXR94863" + - pmid: "11583838" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1101" + - name: "4-aminobutyrate transport" + - metabolites: !!omap + - s_0734: 1 + - s_0736: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL210W or YOR348C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ABUTt2r" + - metanetx.reaction: "MNXR94994" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1102" + - name: "5-aminolevulinate transport" + - metabolites: !!omap + - s_0315: 1 + - s_0316: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL210W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "5AOPt2" + - metanetx.reaction: "MNXR95061" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1103" + - name: "5-formyltetrahydrofolic acid transport" + - metabolites: !!omap + - s_0319: 1 + - s_0320: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "8573145" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR95074" + - pmid: "8573145" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1104" + - name: "8-Amino-7-oxononanoate transport" + - metabolites: !!omap + - s_0352: 1 + - s_0354: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR056C" + - eccodes: "" + - references: "10333520" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "8AONNt2" + - metanetx.reaction: "MNXR95113" + - pmid: "10333520" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1106" + - name: "acetate transport" + - metabolites: !!omap + - s_0362: -1 + - s_0364: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR010C" + - eccodes: "" + - references: "14968426" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ACtr" + - metanetx.reaction: "MNXR95431" + - pmid: "14968426" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1107" + - name: "acetic ester transport" + - metabolites: !!omap + - s_0685: -1 + - s_0686: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "10653746" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "10653746" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1108" + - name: "adenine transport" + - metabolites: !!omap + - s_0383: 1 + - s_0384: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER056C or YER060W or YER060W-A or YGL186C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ADEt2" + - metanetx.reaction: "MNXR95446" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1109" + - name: "adenosine transport" + - metabolites: !!omap + - s_0386: 1 + - s_0387: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL022C" + - eccodes: "" + - references: "10827169" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ADNt2" + - metanetx.reaction: "MNXR95461" + - pmid: "10827169" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1110" + - name: "ADP/ATP transporter" + - metabolites: !!omap + - s_0394: -1 + - s_0397: 1 + - s_0434: 1 + - s_0437: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBL030C or YBR085W or YMR056C" + - eccodes: "" + - references: "22672422; 7003152; 14998997" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ATPtm" + - kegg.reaction: "R00124" + - metanetx.reaction: "MNXR96123" - pmid: - - "16835446" - - "14640980" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3253" - - name: "ergosteryl ester hydrolase (18:1), lipid particle" - - metabolites: !!omap - - s_0669: 1 - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3658: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL140W or YLL012W" - - annotation: !!omap - - ec-code: "3.1.1.13" - - kegg.pathway: "sce00100" - - metanetx.reaction: "MNXR119162" + - "22672422" + - "7003152" + - "14998997" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1111" + - name: "ADP/ATP transporter" + - metabolites: !!omap + - s_0394: 1 + - s_0399: -1 + - s_0434: -1 + - s_0439: 1 + - s_0794: 1 + - s_0801: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR128C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ATPtp_H" + - metanetx.reaction: "MNXR96139" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1112" + - name: "AKG transporter, mitochonrial" + - metabolites: !!omap + - s_0180: -1 + - s_0182: 1 + - s_0522: 1 + - s_0524: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR241W" + - eccodes: "" + - references: "20371607" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "AKGCITtm" + - metanetx.reaction: "MNXR95654" + - pmid: "20371607" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1113" + - name: "allantoate uniport" + - metabolites: !!omap + - s_0405: 1 + - s_0406: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ALLTTti" + - metanetx.reaction: "MNXR95773" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1114" + - name: "allantoin uniport" + - metabolites: !!omap + - s_0407: 1 + - s_0408: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIR028W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ALLTNti" + - metanetx.reaction: "MNXR95771" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1115" + - name: "ammonia transport" + - metabolites: !!omap + - s_0419: 1 + - s_0420: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR384C or YGR121C or YNL142W or YPR138C" + - eccodes: "" + - references: "12966084" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NH4t" + - metanetx.reaction: "MNXR101950" + - pmid: "12966084" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1116" + - name: "AMP/ATP transporter" + - metabolites: !!omap + - s_0423: 1 + - s_0426: -1 + - s_0434: -1 + - s_0439: 1 + - s_0794: 1 + - s_0801: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR128C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ATP2tp_H" + - metanetx.reaction: "MNXR96125" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1118" + - name: "aspartate-glutamate transporter" + - metabolites: !!omap + - s_0973: 1 + - s_0975: -1 + - s_0991: -1 + - s_0993: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR021C" + - eccodes: "" + - references: "14622413" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ASPGLU2m" + - metanetx.reaction: "MNXR96083" + - pmid: "14622413" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1119" + - name: "biotin uptake" + - metabolites: !!omap + - s_0451: 1 + - s_0452: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR065C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "BTNt2i" + - metanetx.reaction: "MNXR96334" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1120" + - name: "carnithine-acetylcarnithine carrier" + - metabolites: !!omap + - s_0021: 1 + - s_0023: -1 + - s_1235: -1 + - s_1236: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR100C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CRNCARtm" + - metanetx.reaction: "MNXR96898" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1121" + - name: "ceramide-2' (sphinganine:n-C24:0OH) transport" + - metabolites: !!omap + - s_0487: -1 + - s_0488: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "12484746" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "12484746" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1122" + - name: "ceramide-2' (sphinganine:n-C26:0OH) transport" + - metabolites: !!omap + - s_0490: -1 + - s_0491: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "12484746" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "12484746" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1123" + - name: "ceramide-3 (Phytosphingosine:n-C24:0OH) transport" + - metabolites: !!omap + - s_0493: -1 + - s_0494: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "12484746" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "12484746" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1124" + - name: "ceramide-3 (Phytosphingosine:n-C26:0OH) transport" + - metabolites: !!omap + - s_0496: -1 + - s_0497: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "12484746" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "12484746" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1125" + - name: "choline transport" + - metabolites: !!omap + - s_0512: 1 + - s_0513: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL077C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CHLt2" + - metanetx.reaction: "MNXR96692" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1126" + - name: "citrate transport" + - metabolites: !!omap + - s_0066: 1 + - s_0068: -1 + - s_0522: -1 + - s_0524: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR291C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CITtam" + - metanetx.reaction: "MNXR96753" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1127" + - name: "citrate transport" + - metabolites: !!omap + - s_0522: -1 + - s_0524: 1 + - s_1360: 1 + - s_1361: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR291C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CITtbm" + - metanetx.reaction: "MNXR96754" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1128" + - name: "citrate transport" + - metabolites: !!omap + - s_0522: -1 + - s_0524: 1 + - s_0940: 1 + - s_0941: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR291C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CITtcm" + - metanetx.reaction: "MNXR96755" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1129" + - name: "coenzyme A transport" + - metabolites: !!omap + - s_0529: -1 + - s_0532: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR002W" + - eccodes: "" + - references: "11158296" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "COAtim" + - metanetx.reaction: "MNXR96815" + - pmid: "11158296" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1130" + - name: "CTP transport" + - metabolites: !!omap + - s_0526: 1 + - s_0528: -1 + - s_0539: -1 + - s_0541: 1 + - s_0794: -1 + - s_0799: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR192W" + - eccodes: "" + - references: "16844075" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "16844075" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1131" + - name: "CTP/CMP antiport" + - metabolites: !!omap + - s_0526: 1 + - s_0528: -1 + - s_0539: -1 + - s_0541: 1 + - s_0794: -2 + - s_0799: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR192W" + - eccodes: "" + - references: "16194150" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CTPtm" + - metanetx.reaction: "MNXR96947" + - pmid: "16194150" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1132" + - name: "cytidine transport" + - metabolites: !!omap + - s_0543: 1 + - s_0544: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL022C" + - eccodes: "" + - references: "10827170" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CYTDt2" + - metanetx.reaction: "MNXR97044" + - pmid: "10827170" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1133" + - name: "cytosine transport" + - metabolites: !!omap + - s_0545: 1 + - s_0546: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER056C or YER060W or YER060W-A or YGL186C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CSNt2" + - metanetx.reaction: "MNXR96929" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1134" + - name: "D-fructose transport" + - metabolites: !!omap + - s_0553: 1 + - s_0554: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FRUt2" + - kegg.pathway: "sce04113" + - metanetx.reaction: "MNXR99664" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1135" + - name: "D-galactose transport" + - metabolites: !!omap + - s_0558: 1 + - s_0559: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR536W or YFL011W or YJL219W or YLR081W or YNL318C or YOL156W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GALt2" + - kegg.pathway: "sce04113" + - metanetx.reaction: "MNXR100026" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1136" + - name: "D-lactate transport" + - metabolites: !!omap + - s_0025: 1 + - s_0026: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL217W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "D_LACt2" + - metanetx.reaction: "MNXR97838" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1137" + - name: "D-lactate transport" + - metabolites: !!omap + - s_0025: -1 + - s_0027: 1 + - s_0794: -1 + - s_0799: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "14871487" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "D_LACtm" + - metanetx.reaction: "MNXR97838" + - pmid: "14871487" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1138" + - name: "D-lactate/pyruvate antiport" + - metabolites: !!omap + - s_0025: -1 + - s_0027: 1 + - s_1399: 1 + - s_1401: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "14871487" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "D_LACt2m" + - metanetx.reaction: "MNXR97839" + - pmid: "14871487" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1139" + - name: "D-mannose transport" + - metabolites: !!omap + - s_0571: 1 + - s_0572: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "MANt2" + - kegg.pathway: "sce04113" + - metanetx.reaction: "MNXR101403" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1146" + - name: "episterol transport" + - metabolites: !!omap + - s_0657: 1 + - s_0659: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL013C or YOR011W" + - eccodes: "" + - references: "12077145" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EPISTt" + - metanetx.reaction: "MNXR97944" + - pmid: "12077145" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1147" + - name: "ergosterol transport" + - metabolites: !!omap + - s_0666: 1 + - s_0668: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL013C or YOR011W" + - eccodes: "" + - references: "12077145" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ERGSTt" + - metanetx.reaction: "MNXR97950" + - pmid: "12077145" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1148" + - name: "ergosterol transport" + - metabolites: !!omap + - s_0665: -1 + - s_0666: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL013C or YOR011W" + - eccodes: "" + - references: "17434796" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR97950" + - pmid: "17434796" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1149" + - name: "ethanolamine transport" + - metabolites: !!omap + - s_0683: 1 + - s_0684: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL077C" + - eccodes: "" + - references: "15201274" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ETHAt" + - metanetx.reaction: "MNXR97974" + - pmid: "15201274" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1151" + - name: "fadH2 transport" + - metabolites: !!omap + - s_0689: 1 + - s_0690: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL134W" + - eccodes: "" + - references: "8631763" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FADH2tm" + - metanetx.reaction: "MNXR99212" + - pmid: "8631763" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1161" + - name: "fecosterol transport" + - metabolites: !!omap + - s_0700: 1 + - s_0702: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL013C or YOR011W" + - eccodes: "" + - references: "12077145" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FECOSTt" + - metanetx.reaction: "MNXR99529" + - pmid: "12077145" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1162" + - name: "fecosterol transport" + - metabolites: !!omap + - s_0699: -1 + - s_0700: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL013C or YOR011W" + - eccodes: "" + - references: "17434796" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR99529" + - pmid: "17434796" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1164" + - name: "folic acid transport" + - metabolites: !!omap + - s_0719: 1 + - s_0720: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "15215118" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "r0963" + - metanetx.reaction: "MNXR105408" + - pmid: "15215118" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1165" + - name: "GDP-mannose antiport" + - metabolites: !!omap + - s_0743: -1 + - s_0744: 1 + - s_0782: 1 + - s_0783: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL225W" + - eccodes: "" + - references: "9395539" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GDPMANNtg" + - metanetx.reaction: "MNXR100090" + - pmid: "9395539" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1166" + - name: "glucose transport" + - metabolites: !!omap + - s_0563: 1 + - s_0565: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL245C or YDL247W or YDR342C or YDR343C or YDR345C or YDR536W or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YJR160C or YLR081W or YMR011W or YNR072W or YOL156W or YDR387C" + - eccodes: "" + - references: "10618490" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLCt1" + - kegg.pathway: "sce04113" + - metanetx.reaction: "MNXR100188" + - pmid: "10618490" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1167" + - name: "glutathione transport" + - metabolites: !!omap + - s_0750: 1 + - s_0751: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL212C" + - eccodes: "" + - references: "10788431" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GTHRDt2" + - metanetx.reaction: "MNXR100449" + - pmid: "10788431" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1168" + - name: "glutathione transport" + - metabolites: !!omap + - s_0750: -1 + - s_0753: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR135C or YLL015W" + - eccodes: "" + - references: "10790694" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR100449" + - pmid: "10790694" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1169" + - name: "glycero-3-phospho-1-inositol transport" + - metabolites: !!omap + - s_0079: 1 + - s_0080: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR098C" + - eccodes: "" + - references: "15145930" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "G3PIt" + - metanetx.reaction: "MNXR99888" + - pmid: "15145930" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1170" + - name: "glycero-3-phosphocholine transport" + - metabolites: !!omap + - s_1433: 1 + - s_1435: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR098C" + - eccodes: "" + - references: "15145930" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "G3PCt" + - metanetx.reaction: "MNXR99874" + - pmid: "15145930" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1171" + - name: "glycerol transport" + - metabolites: !!omap + - s_0765: 1 + - s_0766: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR536W or YGL084C or YPL189W" + - eccodes: "" + - references: "15703210; 21623372" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLYCt2" + - metanetx.reaction: "MNXR100344" + - pmid: + - "15703210" + - "21623372" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1172" + - name: "glycerol transport via channel" + - metabolites: !!omap + - s_0765: -1 + - s_0766: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFL054C or YLL043W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLYCt" + - metanetx.reaction: "MNXR100343" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1173" + - name: "glycine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1003: 1 + - s_1004: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCL025C or YKR039W or YOL020W or YOR348C or YPL265W" + - eccodes: "" + - references: "9573211" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLYt2r" + - metanetx.reaction: "MNXR100368" + - pmid: "9573211" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1174" + - name: "glycogen vacuolar 'transport' via autophagy" + - metabolites: !!omap + - s_0773: -1 + - s_0774: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "11486014" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLCNtv" + - metanetx.reaction: "MNXR100211" + - pmid: "11486014" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1175" + - name: "GTP/GDP translocase" + - metabolites: !!omap + - s_0739: 1 + - s_0741: -1 + - s_0785: -1 + - s_0786: 1 + - s_0794: -1 + - s_0799: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL198C" + - eccodes: "" + - references: "14998997" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GTPt2m" + - metanetx.reaction: "MNXR100461" + - pmid: "14998997" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1176" + - name: "guanine transport" + - metabolites: !!omap + - s_0787: 1 + - s_0788: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER056C or YER060W or YER060W-A or YGL186C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GUAt2r" + - metanetx.reaction: "MNXR100466" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1177" + - name: "inositol transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1153: 1 + - s_1154: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR497C or YOL103W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "INSTt2" + - metanetx.reaction: "MNXR100841" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1178" + - name: "iron (II) transport" + - metabolites: !!omap + - s_0924: 1 + - s_0925: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR319C or YMR058W" + - eccodes: "" + - references: "9115232" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FE2t" + - metanetx.reaction: "MNXR99505" + - pmid: "9115232" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1179" + - name: "iron (II) transport" + - metabolites: !!omap + - s_0924: -1 + - s_0926: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL133W or YKR052C" + - eccodes: "" + - references: "9660806" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FE2utm" + - metanetx.reaction: "MNXR99505" + - pmid: "9660806" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1180" + - name: "isoamyl acetate transport" + - metabolites: !!omap + - s_0927: -1 + - s_0928: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "10653746" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "IAMACt" + - metanetx.reaction: "MNXR100774" + - pmid: "10653746" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1181" + - name: "isobutyl acetate transport" + - metabolites: !!omap + - s_0935: -1 + - s_0936: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "10653746" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "IBUTACt" + - metanetx.reaction: "MNXR100779" + - pmid: "10653746" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1182" + - name: "isopentenyl diphosphate transport" + - metabolites: !!omap + - s_0943: -1 + - s_0945: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "11583838" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "IPDPtm" + - metanetx.reaction: "MNXR100876" + - pmid: "11583838" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1183" + - name: "L-alanine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_0955: 1 + - s_0956: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR068C or YCL025C or YDR046C or YKR039W or YOL020W or YOR348C or YPL265W" + - eccodes: "" + - references: "7495881; 9489675" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ALAt2r" + - metanetx.reaction: "MNXR95704" + - pmid: + - "7495881" + - "9489675" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1184" + - name: "L-arganine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_0965: 1 + - s_0966: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YEL063C or YKR039W or YNL270C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ARGt2r" + - metanetx.reaction: "MNXR95953" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1185" + - name: "L-arganine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_0965: -1 + - s_0968: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL092W or YBR293W" + - eccodes: "" + - references: "15572352" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ARGt6" + - metanetx.reaction: "MNXR95954" + - pmid: "15572352" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1186" + - name: "L-asparagine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_0969: 1 + - s_0970: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCL025C or YDR508C or YKR039W or YPL265W" + - eccodes: "" + - references: "8660458" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ASNt2r" + - metanetx.reaction: "MNXR96066" + - pmid: "8660458" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1187" + - name: "L-asparagine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_0969: -1 + - s_0972: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR001W" + - eccodes: "" + - references: "11274162" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ASNt6" + - metanetx.reaction: "MNXR96067" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1188" + - name: "L-aspartate transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_0969: 1 + - s_0972: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL146W or YNL101W" + - eccodes: "" + - references: "11274162" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ASNt7" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR96066" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1189" + - name: "L-aspartate transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_0973: 1 + - s_0977: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER119C" + - eccodes: "" + - references: "11274162" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ASPt7" + - metanetx.reaction: "MNXR96106" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1190" + - name: "L-aspartate transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_0973: 1 + - s_0974: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YFL055W or YKR039W or YPL265W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ASPt2r" + - metanetx.reaction: "MNXR96106" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1191" + - name: "L-carnitine transport" + - metabolites: !!omap + - s_0021: 1 + - s_0022: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR132C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CRNt" + - metanetx.reaction: "MNXR96906" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1192" + - name: "L-cystine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_0981: 1 + - s_0982: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YDR508C or YKR039W or YOL020W" + - eccodes: "" + - references: "9573211" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CYSt2r" + - metanetx.reaction: "MNXR97027" + - pmid: "9573211" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1193" + - name: "L-cystine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_0984: 1 + - s_0985: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR075C" + - eccodes: "" + - references: "11689434" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "LCYSTintv" + - metanetx.reaction: "MNXR101034" + - pmid: "11689434" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1194" + - name: "L-glutamate transport" + - metabolites: !!omap + - s_0991: -1 + - s_0993: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPR021C" + - eccodes: "" + - references: "14622413" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLUt7m" + - metanetx.reaction: "MNXR100301" + - pmid: "14622413" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1195" + - name: "L-glutamate transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_0991: 1 + - s_0996: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER119C" + - eccodes: "" + - references: "11274162" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLUt7" + - metanetx.reaction: "MNXR100300" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1196" + - name: "L-glutamate transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_0991: 1 + - s_0992: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCL025C or YFL055W or YKR039W or YPL265W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLUt2r" + - metanetx.reaction: "MNXR100300" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1197" + - name: "L-glutamine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_0999: -1 + - s_1002: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR001W" + - eccodes: "" + - references: "11274162" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLNt6" + - metanetx.reaction: "MNXR100262" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1198" + - name: "L-glutamine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_0999: 1 + - s_1002: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL146W or YNL101W" + - eccodes: "" + - references: "11274162" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLNt7" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR100260" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1199" + - name: "L-glutamine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_0999: 1 + - s_1000: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCL025C or YDR508C or YKR039W or YPL265W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLNt2r" + - metanetx.reaction: "MNXR100260" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1200" + - name: "L-histidine transport, vacuolar" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_1006: -1 + - s_1009: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL092W or YBR293W or YCL069W or YMR088C" + - eccodes: "" + - references: "15572352" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HISt6" + - metanetx.reaction: "MNXR100647" + - pmid: "15572352" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1201" + - name: "L-histidine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1006: 1 + - s_1007: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR069C or YGR191W or YKR039W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HISt2r" + - metanetx.reaction: "MNXR100645" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1202" + - name: "L-isoleucine transport" + - metabolites: !!omap + - s_1016: 1 + - s_1019: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCL038C" + - eccodes: "" + - references: "17021250" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR100824" + - pmid: "17021250" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1203" + - name: "L-isoleucine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_1016: -1 + - s_1019: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR001W" + - eccodes: "" + - references: "11274162" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ILEt6" + - metanetx.reaction: "MNXR100825" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1204" + - name: "L-isoleucine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_1016: 1 + - s_1019: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL146W or YNL101W" + - eccodes: "" + - references: "11274162" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ILEt7" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR100822" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1205" + - name: "L-isoleucine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1016: 1 + - s_1017: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YKR039W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ILEt2r" + - metanetx.reaction: "MNXR100822" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1206" + - name: "L-lactate transport" + - metabolites: !!omap + - s_0063: -1 + - s_0065: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL217W" + - eccodes: "" + - references: "17761666" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "L_LACtcm" + - metanetx.reaction: "MNXR100999" + - pmid: "17761666" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1207" + - name: "L-lactate transport" + - metabolites: !!omap + - s_0063: 1 + - s_0064: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL217W" + - eccodes: "" + - references: "10198029" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "L_LACt2r" + - metanetx.reaction: "MNXR101277" + - pmid: "10198029" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1208" + - name: "L-leucine transport, vacuoluar" + - metabolites: !!omap + - s_1021: 1 + - s_1024: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCL038C" + - eccodes: "" + - references: "17021250" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR101057" + - pmid: "17021250" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1209" + - name: "L-leucine transport, vacuoluar" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_1021: -1 + - s_1024: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR001W" + - eccodes: "" + - references: "11274162" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "LEUt6" + - metanetx.reaction: "MNXR101058" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1210" + - name: "L-leucine transport, vacuoluar" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_1021: 1 + - s_1024: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL146W or YNL101W" + - eccodes: "" + - references: "11274162" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "LEUt7" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR101055" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1211" + - name: "L-leucine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1021: 1 + - s_1022: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YDR508C or YKR039W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "LEUt2r" + - metanetx.reaction: "MNXR101055" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1212" + - name: "L-lysine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_1025: -1 + - s_1028: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOL092W or YBR293W or YCL069W or YMR088C" + - eccodes: "" + - references: "15572352" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "LYSt6" + - metanetx.reaction: "MNXR101267" + - pmid: "15572352" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1213" + - name: "L-lysine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1025: 1 + - s_1026: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKR039W or YNL268W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "LYSt2r" + - metanetx.reaction: "MNXR101266" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1214" + - name: "L-methionine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1029: 1 + - s_1030: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR068C or YCL025C or YDR046C or YDR508C or YGR055W or YHL036W or YKR039W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "METt2r" + - metanetx.reaction: "MNXR101490" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1215" + - name: "L-phenylalanine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1032: 1 + - s_1033: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR068C or YCL025C or YDR046C or YKR039W or YOL020W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PHEt2r" + - metanetx.reaction: "MNXR102635" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1216" + - name: "L-proline transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1035: 1 + - s_1036: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKR039W or YOR348C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PROt2r" + - metanetx.reaction: "MNXR103211" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1217" + - name: "L-serine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1039: 1 + - s_1041: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCL025C or YDR508C or YFL055W or YKR039W or YPL265W or YDR105C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SERt2r" + - metanetx.reaction: "MNXR104352" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1218" + - name: "L-threonine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1045: 1 + - s_1046: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR069C or YCL025C or YDR046C or YDR508C or YKR039W" + - eccodes: "" + - references: "9489675" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "THRt2r" + - metanetx.reaction: "MNXR104850" + - pmid: "9489675" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1219" + - name: "L-tryptophan transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1048: 1 + - s_1049: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR068C or YBR069C or YDR046C or YKR039W or YOL020W" + - eccodes: "" + - references: "9573211" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "TRPt2r" + - metanetx.reaction: "MNXR104950" + - pmid: "9573211" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1220" + - name: "L-tyrosine transport" + - metabolites: !!omap + - s_1051: 1 + - s_1055: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCL038C" + - eccodes: "" + - references: "17021250" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR105002" + - pmid: "17021250" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1221" + - name: "L-tyrosine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_1051: -1 + - s_1055: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR293W or YJR001W" + - eccodes: "" + - references: "15572352" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "TYRt6" + - metanetx.reaction: "MNXR105005" + - pmid: "15572352" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1222" + - name: "L-tyrosine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_1051: 1 + - s_1055: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL146W or YNL101W" + - eccodes: "" + - references: "11274162" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "TYRt7" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR105003" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1223" + - name: "L-tyrosine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1051: 1 + - s_1052: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YKR039W or YOL020W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "TYRt2r" + - metanetx.reaction: "MNXR105003" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1224" + - name: "L-valine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1056: 1 + - s_1057: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YKR039W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "VALt2r" + - metanetx.reaction: "MNXR105188" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1225" + - name: "lanosterol transport" + - metabolites: !!omap + - s_1059: 1 + - s_1061: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL013C or YOR011W" + - eccodes: "" + - references: "12077145" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "LANOSTt" + - metanetx.reaction: "MNXR101014" + - pmid: "12077145" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1226" + - name: "malate transport" + - metabolites: !!omap + - s_0066: -1 + - s_0068: 1 + - s_1322: 1 + - s_1326: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR348C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "MALtm" + - metanetx.reaction: "MNXR101374" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1227" + - name: "maltose transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1105: 1 + - s_1106: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR298C or YDL247W or YGR289C or YJR160C" + - eccodes: "" + - references: "7483839" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "MALTt2" + - metanetx.reaction: "MNXR101365" + - pmid: "7483839" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1228" + - name: "N,N'-diformyldityrosine transport" + - metabolites: !!omap + - s_1185: -1 + - s_1186: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR180W" + - eccodes: "" + - references: "12455697" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "12455697" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1229" + - name: "NAD transport" + - metabolites: !!omap + - s_1198: -1 + - s_1200: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YEL006W or YIL006W" + - eccodes: "" + - references: "16291748; 9169870" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NADtm" + - metanetx.reaction: "MNXR101900" - pmid: - - "16835446" - - "14640980" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3254" - - name: "episteryl ester hydrolase (16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3657: -1 - - s_3659: -1 - - s_3660: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL012W" - - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3255" - - name: "episteryl ester hydrolase (18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3660: 1 - - s_3661: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL012W" - - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3256" - - name: "fecosteryl ester hydrolase (16:1), lipid particle" - - metabolites: !!omap - - s_0703: 1 - - s_0798: 1 - - s_2848: 1 - - s_3657: -1 - - s_3662: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL012W" - - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3257" - - name: "fecosteryl ester hydrolase (18:1), lipid particle" - - metabolites: !!omap - - s_0703: 1 - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3663: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL012W" - - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3258" - - name: "lanosteryl ester hydrolase (16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3657: -1 - - s_3664: -1 - - s_3665: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL012W" - - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3259" - - name: "lanosteryl ester hydrolase (18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3665: 1 - - s_3666: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL012W" - - annotation: !!omap - - ec-code: "3.1.1.13" - - metanetx.reaction: "MNXR119160" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3260" - - name: "zymosteryl ester hydrolase (16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_1572: 1 - - s_2848: 1 - - s_3657: -1 - - s_3667: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL012W" - - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3261" - - name: "zymosteryl ester hydrolase (18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_1572: 1 - - s_2852: 1 - - s_3657: -1 - - s_3668: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL012W" - - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3262" - - name: "zymosteryl ester hydrolase (16:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_1568: 1 - - s_3449: -1 - - s_3451: 1 - - s_3669: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR020C" - - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "15632184" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3263" - - name: "zymosteryl ester hydrolase (18:1), cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_1568: 1 - - s_3449: -1 - - s_3459: 1 - - s_3670: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR020C" - - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "15632184" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3264" - - name: "TAG lipase (1-16:0, 2-16:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2846: 1 - - s_3043: 1 - - s_3044: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C or YCR068W" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3265" - - name: "TAG lipase (1-16:0, 2-16:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3043: 1 - - s_3059: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3266" - - name: "TAG lipase (1-16:0, 2-16:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2850: 1 - - s_3043: 1 - - s_3067: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3267" - - name: "TAG lipase (1-16:0, 2-16:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3043: 1 - - s_3075: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3268" - - name: "TAG lipase (1-16:1, 2-16:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2846: 1 - - s_3047: 1 - - s_3048: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3269" - - name: "TAG lipase (1-16:1, 2-16:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3047: 1 - - s_3061: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3270" - - name: "TAG lipase (1-16:1, 2-16:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2850: 1 - - s_3047: 1 - - s_3069: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3271" - - name: "TAG lipase (1-16:1, 2-16:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3047: 1 - - s_3077: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3272" - - name: "TAG lipase (1-18:0, 2-16:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2846: 1 - - s_3051: 1 - - s_3052: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3273" - - name: "TAG lipase (1-18:0, 2-16:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3051: 1 - - s_3063: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3274" - - name: "TAG lipase (1-18:0, 2-16:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2850: 1 - - s_3051: 1 - - s_3071: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3275" - - name: "TAG lipase (1-18:0, 2-16:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3051: 1 - - s_3079: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3276" - - name: "TAG lipase (1-18:1, 2-16:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2846: 1 - - s_3055: 1 - - s_3056: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3277" - - name: "TAG lipase (1-18:1, 2-16:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3055: 1 - - s_3065: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3278" - - name: "TAG lipase (1-18:1, 2-16:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2850: 1 - - s_3055: 1 - - s_3073: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3279" - - name: "TAG lipase (1-18:1, 2-16:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3055: 1 - - s_3081: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3280" - - name: "TAG lipase (1-16:0, 2-18:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2846: 1 - - s_3045: 1 - - s_3046: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3281" - - name: "TAG lipase (1-16:0, 2-18:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3045: 1 - - s_3060: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3282" - - name: "TAG lipase (1-16:0, 2-18:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2850: 1 - - s_3045: 1 - - s_3068: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3283" - - name: "TAG lipase (1-16:0, 2-18:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3045: 1 - - s_3076: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3284" - - name: "TAG lipase (1-16:1, 2-18:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2846: 1 - - s_3049: 1 - - s_3050: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3285" - - name: "TAG lipase (1-16:1, 2-18:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3049: 1 - - s_3062: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3286" - - name: "TAG lipase (1-16:1, 2-18:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2850: 1 - - s_3049: 1 - - s_3070: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3287" - - name: "TAG lipase (1-16:1, 2-18:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3049: 1 - - s_3078: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3288" - - name: "TAG lipase (1-18:0, 2-18:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2846: 1 - - s_3053: 1 - - s_3054: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3289" - - name: "TAG lipase (1-18:0, 2-18:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3053: 1 - - s_3064: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3290" - - name: "TAG lipase (1-18:0, 2-18:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2850: 1 - - s_3053: 1 - - s_3072: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3291" - - name: "TAG lipase (1-18:0, 2-18:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3053: 1 - - s_3080: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3292" - - name: "TAG lipase (1-18:1, 2-18:1, 3-16:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2846: 1 - - s_3057: 1 - - s_3058: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3293" - - name: "TAG lipase (1-18:1, 2-18:1, 3-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3057: 1 - - s_3066: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3294" - - name: "TAG lipase (1-18:1, 2-18:1, 3-18:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2850: 1 - - s_3057: 1 - - s_3074: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3295" - - name: "TAG lipase (1-18:1, 2-18:1, 3-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3057: 1 - - s_3082: -1 - - s_3657: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3296" - - name: "DAG lipase (1-16:0, 2-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3043: -1 - - s_3657: -1 - - s_3671: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR313C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3297" - - name: "DAG lipase (1-16:1, 2-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3047: -1 - - s_3657: -1 - - s_3672: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR068W or YMR313C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3298" - - name: "DAG lipase (1-18:0, 2-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3051: -1 - - s_3657: -1 - - s_3673: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR313C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3299" - - name: "DAG lipase (1-18:1, 2-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3055: -1 - - s_3657: -1 - - s_3674: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR313C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3300" - - name: "DAG lipase (1-16:0, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3045: -1 - - s_3657: -1 - - s_3671: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR313C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3301" - - name: "DAG lipase (1-16:1, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3049: -1 - - s_3657: -1 - - s_3672: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR313C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3302" - - name: "DAG lipase (1-18:0, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3053: -1 - - s_3657: -1 - - s_3673: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR313C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3303" - - name: "DAG lipase (1-18:1, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3057: -1 - - s_3657: -1 - - s_3674: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR313C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3304" - - name: "DAG lipase (1-16:0, 2-18:1), mitochondrion" - - metabolites: !!omap - - s_0799: 1 - - s_0807: -1 - - s_3675: -1 - - s_3676: 1 - - s_3677: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR058C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3305" - - name: "DAG lipase (1-16:1, 2-18:1), mitochondrion" - - metabolites: !!omap - - s_0799: 1 - - s_0807: -1 - - s_3677: 1 - - s_3678: -1 - - s_3679: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR058C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3306" - - name: "DAG lipase (1-18:0, 2-18:1), mitochondrion" - - metabolites: !!omap - - s_0799: 1 - - s_0807: -1 - - s_3677: 1 - - s_3680: -1 - - s_3681: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR058C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3307" - - name: "DAG lipase (1-18:1, 2-18:1), mitochondrion" - - metabolites: !!omap - - s_0799: 1 - - s_0807: -1 - - s_3677: 1 - - s_3682: -1 - - s_3683: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR058C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3308" - - name: "MAG lipase (1-16:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2846: 1 - - s_3657: -1 - - s_3671: -1 - - s_3684: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL094W" - - annotation: !!omap - - ec-code: "3.1.1.23" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3309" - - name: "MAG lipase (1-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3657: -1 - - s_3672: -1 - - s_3684: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL094W" - - annotation: !!omap - - ec-code: "3.1.1.23" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3310" - - name: "MAG lipase (1-18:0), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2850: 1 - - s_3657: -1 - - s_3673: -1 - - s_3684: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL094W" - - annotation: !!omap - - ec-code: "3.1.1.23" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3311" - - name: "MAG lipase (1-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3674: -1 - - s_3684: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL094W" - - annotation: !!omap - - ec-code: "3.1.1.23" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3312" - - name: "lysoPE (1-16:0) oleoyl-CoA acyltransferase, lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_3685: -1 - - s_3686: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR313C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "20016004" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3313" - - name: "lysoPE (1-16:1) oleoyl-CoA acyltransferase, lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_3687: -1 - - s_3688: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR313C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "20016004" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3314" - - name: "lysoPE (1-18:0) oleoyl-CoA acyltransferase, lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_3689: -1 - - s_3690: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR313C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "20016004" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3315" - - name: "lysoPE (1-18:1) oleoyl-CoA acyltransferase, lipid particle" - - metabolites: !!omap - - s_0531: 1 - - s_2853: -1 - - s_3691: -1 - - s_3692: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR313C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "20016004" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3316" - - name: "PC phospholipase A2 (1-16:0, 2-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3657: -1 - - s_3693: -1 - - s_3694: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3317" - - name: "PC phospholipase A2 (1-16:1, 2-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3657: -1 - - s_3695: -1 - - s_3696: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3318" - - name: "PC phospholipase A2 (1-18:0, 2-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3657: -1 - - s_3697: -1 - - s_3698: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3319" - - name: "PC phospholipase A2 (1-18:1, 2-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3657: -1 - - s_3699: -1 - - s_3700: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3320" - - name: "PC phospholipase A2 (1-16:0, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3694: 1 - - s_3701: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3321" - - name: "PC phospholipase A2 (1-16:1, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3696: 1 - - s_3702: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3322" - - name: "PC phospholipase A2 (1-18:0, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3698: 1 - - s_3703: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3323" - - name: "PC phospholipase A2 (1-18:1, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3700: 1 - - s_3704: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3324" - - name: "PE phospholipase A2 (1-16:0, 2-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3657: -1 - - s_3685: 1 - - s_3705: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3325" - - name: "PE phospholipase A2 (1-16:1, 2-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3657: -1 - - s_3687: 1 - - s_3706: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3326" - - name: "PE phospholipase A2 (1-18:0, 2-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3657: -1 - - s_3689: 1 - - s_3707: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3327" - - name: "PE phospholipase A2 (1-18:1, 2-16:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2848: 1 - - s_3657: -1 - - s_3691: 1 - - s_3708: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3328" - - name: "PE phospholipase A2 (1-16:0, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3685: 1 - - s_3686: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" + - "16291748" + - "9169870" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1230" + - name: "NAD transport" + - metabolites: !!omap + - s_0584: 1 + - s_0585: -1 + - s_1198: -1 + - s_1200: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL006W" + - eccodes: "" + - references: "16291748" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "16291748" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1231" + - name: "NAD transport" + - metabolites: !!omap + - s_0423: 1 + - s_0424: -1 + - s_1198: -1 + - s_1200: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL006W" + - eccodes: "" + - references: "16291748" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "16291748" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1232" + - name: "NAD transport" + - metabolites: !!omap + - s_0615: 1 + - s_0616: -1 + - s_1198: -1 + - s_1200: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL006W" + - eccodes: "" + - references: "16291748" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "16291748" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1235" + - name: "nicotinate transport" + - metabolites: !!omap + - s_1219: 1 + - s_1220: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR260W" + - eccodes: "" + - references: "10869563" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NACt" + - metanetx.reaction: "MNXR101808" + - pmid: "10869563" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1236" + - name: "octadecanoate (n-C18:0) transport" + - metabolites: !!omap + - s_1449: -1 + - s_1451: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "8993619" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR99109" + - pmid: "8993619" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1237" + - name: "ornithine transport" + - metabolites: !!omap + - s_0794: -1 + - s_0799: 1 + - s_1266: 1 + - s_1268: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR130C" + - eccodes: "" + - references: "10428783" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ORNt3m" + - metanetx.reaction: "MNXR102225" + - pmid: "10428783" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1238" + - name: "orntithine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1266: 1 + - s_1267: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YEL063C or YKR039W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ORNt2r" + - metanetx.reaction: "MNXR102224" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1239" + - name: "oxaloacetate transport" + - metabolites: !!omap + - s_0794: -1 + - s_0799: 1 + - s_1271: -1 + - s_1273: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL120W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "OAAt2m" + - metanetx.reaction: "MNXR102102" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1241" + - name: "pantothenate transport" + - metabolites: !!omap + - s_0031: 1 + - s_0032: -1 + - s_0794: 1 + - s_0796: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR028C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PNTOt2" + - metanetx.reaction: "MNXR103053" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1242" + - name: "pentaprenyl diphosphate transport" + - metabolites: !!omap + - s_1311: -1 + - s_1313: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "11583838" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PENDPtm" + - metanetx.reaction: "MNXR102483" + - pmid: "11583838" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1243" + - name: "phenethyl acetate transport" + - metabolites: !!omap + - s_1316: -1 + - s_1317: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "10653746" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PHEACt" + - metanetx.reaction: "MNXR102622" + - pmid: "10653746" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1244" + - name: "phosphate transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1322: 1 + - s_1324: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR296C or YCR037C or YJL198W or YML123C or YNR013C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PIt2r" + - metanetx.reaction: "MNXR102872" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1245" + - name: "phosphate transport" + - metabolites: !!omap + - s_0794: -1 + - s_0799: 1 + - s_1322: -1 + - s_1326: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER053C or YJR077C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PIt2m" + - metanetx.reaction: "MNXR102872" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1249" + - name: "potassium transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1373: 1 + - s_1374: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR456W or YJL129C" + - eccodes: "" + - references: "3043197" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "Kt2r" + - pmid: "3043197" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1250" + - name: "putrescine excretion" + - metabolites: !!omap + - s_1389: -1 + - s_1390: 1 + - lower_bound: 0 + - upper_bound: 0 + - gene_reaction_rule: "YKL174C" + - eccodes: "" + - references: "15668236" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PTRCtex2" + - metanetx.reaction: "MNXR103339" + - pmid: "15668236" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1251" + - name: "putrescine transport" + - metabolites: !!omap + - s_0794: -1 + - s_0796: 1 + - s_1389: 1 + - s_1390: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLL028W or YOR273C" + - eccodes: "" + - references: "9920864" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PTRCt3i" + - metanetx.reaction: "MNXR103341" + - pmid: "9920864" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1252" + - name: "putrescine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_1389: -1 + - s_1391: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLL028W or YOR273C" + - eccodes: "" + - references: "11171066" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR103341" + - pmid: "11171066" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1253" + - name: "pyridoxine symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1396: 1 + - s_1397: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL186C" + - eccodes: "" + - references: "12649274" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "12649274" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1254" + - name: "pyruvate transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1399: 1 + - s_1400: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL217W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PYRt2" + - metanetx.reaction: "MNXR103385" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1255" + - name: "S-adenosyl-L-methionine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1416: 1 + - s_1418: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL274W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "AMETt2" + - metanetx.reaction: "MNXR95810" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1256" + - name: "S-adenosyl-L-methionine transport" + - metabolites: !!omap + - s_1416: -1 + - s_1419: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL003C" + - eccodes: "" + - references: "14609944" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "AMETtm" + - metanetx.reaction: "MNXR95809" + - pmid: "14609944" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1257" + - name: "S-methylmethionine permease" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1424: 1 + - s_1425: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL061W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "MMETt2" + - metanetx.reaction: "MNXR101658" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1258" + - name: "sodium proton antiporter" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1437: -1 + - s_1438: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR456W or YLR138W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NAt3_1" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1259" + - name: "spermidine excretion" + - metabolites: !!omap + - s_1439: -1 + - s_1440: 1 + - lower_bound: 0 + - upper_bound: 0 + - gene_reaction_rule: "YKL174C" + - eccodes: "" + - references: "15668236" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SPMDtex2" + - metanetx.reaction: "MNXR104495" + - pmid: "15668236" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1260" + - name: "spermidine transport" + - metabolites: !!omap + - s_0794: -1 + - s_0796: 1 + - s_1439: 1 + - s_1440: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR132C or YHL016C or YKR039W or YLL028W or YOR273C or YPL274W" + - eccodes: "" + - references: "17218313; 9920864" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SPMDt3i" + - metanetx.reaction: "MNXR104497" + - pmid: + - "17218313" + - "9920864" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1261" + - name: "spermidine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_1439: -1 + - s_1441: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLL028W or YOR273C" + - eccodes: "" + - references: "11171066" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR104497" + - pmid: "11171066" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1262" + - name: "spermine transport" + - metabolites: !!omap + - s_0794: -1 + - s_0796: 1 + - s_1442: 1 + - s_1443: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR138C or YLL028W or YOR273C or YPR156C" + - eccodes: "" + - references: "9920864" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SPRMt2i" + - metanetx.reaction: "MNXR104501" + - pmid: "9920864" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1263" + - name: "spermine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0802: -1 + - s_1442: -1 + - s_1444: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR138C or YLL028W or YOR273C or YPR156C" + - eccodes: "" + - references: "11171066" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR104501" + - pmid: "11171066" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1264" + - name: "succinate transport" + - metabolites: !!omap + - s_1322: 1 + - s_1326: -1 + - s_1458: -1 + - s_1460: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR348C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SUCCtm" + - metanetx.reaction: "MNXR104626" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1265" + - name: "succinate-fumarate transport" + - metabolites: !!omap + - s_0725: 1 + - s_0727: -1 + - s_1458: -1 + - s_1460: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR095W" + - eccodes: "" + - references: "9395087" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SUCFUMtm" + - metanetx.reaction: "MNXR104633" + - pmid: "9395087" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1266" + - name: "sulfate uniport" + - metabolites: !!omap + - s_1467: 1 + - s_1468: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR294W or YLR092W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SO4ti" + - metanetx.reaction: "MNXR104469" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1267" + - name: "sulfite transport" + - metabolites: !!omap + - s_1469: -1 + - s_1470: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL092W" + - eccodes: "" + - references: "10870099" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SO3ti" + - metanetx.reaction: "MNXR104460" + - pmid: "10870099" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1268" + - name: "taurine transport" + - metabolites: !!omap + - s_1471: -1 + - s_1472: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "8293962" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "TAURt" + - metanetx.reaction: "MNXR104733" + - pmid: "8293962" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1269" + - name: "thiamine diphosphate transport" + - metabolites: !!omap + - s_1475: -1 + - s_1477: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR096W" + - eccodes: "" + - references: "12411483" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "THMPPt2m" + - metanetx.reaction: "MNXR104824" + - pmid: "12411483" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1270" + - name: "thiamine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1489: 1 + - s_1490: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR237W or YOR071C or YOR192C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "THMt2" + - metanetx.reaction: "MNXR138863" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1271" + - name: "UDPgalactose transport" + - metabolites: !!omap + - s_1541: -1 + - s_1542: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YPL244C" + - eccodes: "" + - references: "11284009" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "UDPGALt2g" + - metanetx.reaction: "MNXR105061" + - pmid: "11284009" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1272" + - name: "uracil transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1550: 1 + - s_1551: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR021W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "URAt2" + - metanetx.reaction: "MNXR105148" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1273" + - name: "urea transport" + - metabolites: !!omap + - s_0794: 2 + - s_0796: -2 + - s_1552: 1 + - s_1553: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHL016C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "UREA2t2" + - metanetx.reaction: "MNXR105154" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1274" + - name: "uridine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1556: 1 + - s_1557: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL042C" + - eccodes: "" + - references: "10827169" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "URIt2" + - metanetx.reaction: "MNXR105166" + - pmid: "10827169" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1275" + - name: "UTP transport" + - metabolites: !!omap + - s_0714: 1 + - s_0716: -1 + - s_0794: -1 + - s_0799: 1 + - s_1545: 1 + - s_1547: -1 + - s_1559: -1 + - s_1560: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR192W" + - eccodes: "" + - references: "16844075" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "16844075" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1276" + - name: "UTP/UMP antiport" + - metabolites: !!omap + - s_0794: -2 + - s_0799: 2 + - s_1545: 1 + - s_1547: -1 + - s_1559: -1 + - s_1560: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR192W" + - eccodes: "" + - references: "16194150" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "UTPtm" + - metanetx.reaction: "MNXR105175" + - pmid: "16194150" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1277" + - name: "water diffusion" + - metabolites: !!omap + - s_0803: 1 + - s_0805: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLL052C or YPR192W" + - eccodes: "" + - references: "9765289" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "H2Ot" + - metanetx.reaction: "MNXR98641" + - pmid: "9765289" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1278" + - name: "zymosterol transport" + - metabolites: !!omap + - s_1568: 1 + - s_1571: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL013C or YOR011W" + - eccodes: "" + - references: "12077145" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR105285" + - pmid: "12077145" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_1657" + - name: "arginine transport" + - metabolites: !!omap + - s_0794: -1 + - s_0799: 1 + - s_0965: -1 + - s_0967: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR147W" + - eccodes: "" + - references: "9874237" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ARGt2m" + - metanetx.reaction: "MNXR95953" + - pmid: "9874237" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2034" + - name: "pyruvate transport" + - metabolites: !!omap + - s_0794: -1 + - s_0799: 1 + - s_1399: -1 + - s_1401: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "(YGL080W and YGR243W) or (YGL080W and YHR162W)" + - eccodes: "" + - references: "22628558" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PYRt2m" + - metanetx.reaction: "MNXR103385" + - pmid: "22628558" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2079" + - name: "trehalose transporter" + - metabolites: !!omap + - s_0794: -1 + - s_0796: 1 + - s_1520: -1 + - s_1521: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR289C" + - eccodes: "" + - references: "10957961" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "TREt2" + - metanetx.reaction: "MNXR104932" + - pmid: "10957961" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2132" + - name: "oxoglutarate/malate exchange" + - metabolites: !!omap + - s_0066: -1 + - s_0068: 1 + - s_0180: 1 + - s_0182: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR222W or YPL134C" + - eccodes: "" + - references: "16844075" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "AKGMALtm" + - metanetx.reaction: "MNXR95659" + - pmid: "16844075" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2219" + - name: "fatty acyl-CoA transport via ABC system (C12:0)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1073: -1 + - s_1076: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "17010456" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2220" + - name: "fatty acyl-CoA transport via ABC system (C14:0)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1176: -1 + - s_1179: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "17010456" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2221" + - name: "fatty acyl-CoA transport via ABC system (C16:0)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1302: -1 + - s_1305: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "17010456" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FA160COAabcp_1" - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3329" - - name: "PE phospholipase A2 (1-16:1, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3687: 1 - - s_3688: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" + - "sce02010" + - "sce04146" + - metanetx.reaction: "MNXR99100" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2222" + - name: "fatty acyl-CoA transport via ABC system (C16:1)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_2854: 1 + - s_2877: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "17010456" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2223" + - name: "fatty acyl-CoA transport via ABC system (C18:0)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_1454: -1 + - s_1457: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "17010456" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "STCOATxc" - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3330" - - name: "PE phospholipase A2 (1-18:0, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3689: 1 - - s_3690: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" + - "sce02010" + - "sce04146" + - metanetx.reaction: "MNXR104597" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2224" + - name: "fatty acyl-CoA transport via ABC system (C18:1)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1262: -1 + - s_1265: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "17010456" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2225" + - name: "fatty acyl-CoA transport via ABC system (C20:0)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_2878: -1 + - s_2879: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "17010456" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2226" + - name: "fatty acyl-CoA transport via ABC system (C22:0)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_2880: -1 + - s_2881: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "17010456" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DOCOSCOAtxc" - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3331" - - name: "PE phospholipase A2 (1-18:1, 2-18:1), lipid particle" - - metabolites: !!omap - - s_0798: 1 - - s_2852: 1 - - s_3657: -1 - - s_3691: 1 - - s_3692: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKR089C" - - annotation: !!omap - - ec-code: "3.1.1.3" + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2227" + - name: "fatty acyl-CoA transport via ABC system (C24:0)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_1479: -1 + - s_1482: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "17010456" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "LGNCCOAtcx_1" - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3332" - - name: "PA kinase (1-16:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2993: -1 - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3624: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3333" - - name: "PA kinase (1-16:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_2999: -1 - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3625: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3334" - - name: "PA kinase (1-18:0, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_3003: -1 - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3626: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3335" - - name: "PA kinase (1-18:1, 2-16:1), Golgi membrane" - - metabolites: !!omap - - s_3007: -1 - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3627: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3336" - - name: "PA kinase (1-16:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_2997: -1 - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3628: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3337" - - name: "PA kinase (1-16:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_3001: -1 - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3629: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3338" - - name: "PA kinase (1-18:0, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_3005: -1 - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3630: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3339" - - name: "PA kinase (1-18:1, 2-18:1), Golgi membrane" - - metabolites: !!omap - - s_3009: -1 - - s_3146: -1 - - s_3359: -1 - - s_3360: 1 - - s_3631: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3340" - - name: "PA kinase (1-16:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2975: -1 - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3616: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3341" - - name: "PA kinase (1-16:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2981: -1 - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3617: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3342" - - name: "PA kinase (1-18:0, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2985: -1 - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3618: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3343" - - name: "PA kinase (1-18:1, 2-16:1), vacuolar membrane" - - metabolites: !!omap - - s_2989: -1 - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3619: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3344" - - name: "PA kinase (1-16:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2979: -1 - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3620: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3345" - - name: "PA kinase (1-16:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2983: -1 - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3621: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3346" - - name: "PA kinase (1-18:0, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2987: -1 - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3622: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3347" - - name: "PA kinase (1-18:1, 2-18:1), vacuolar membrane" - - metabolites: !!omap - - s_2991: -1 - - s_3164: -1 - - s_3341: -1 - - s_3342: 1 - - s_3623: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_3348" - - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-A (C24))" - - metabolites: !!omap - - s_0862: 1 - - s_1117: -1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_2228" + - name: "fatty acyl-CoA transport via ABC system (C26:0)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_0816: -1 + - s_0819: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "17010456" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 + - !!omap + - id: "r_3348" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-A (C24))" + - metabolites: !!omap + - s_0862: 1 + - s_1117: -1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3349" - - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-A (C24))" - - metabolites: !!omap - - s_0862: 1 - - s_1117: -1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3349" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-A (C24))" + - metabolites: !!omap + - s_0862: 1 + - s_1117: -1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3350" - - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-A (C24))" - - metabolites: !!omap - - s_0862: 1 - - s_1117: -1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3350" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-A (C24))" + - metabolites: !!omap + - s_0862: 1 + - s_1117: -1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3351" - - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-A (C24))" - - metabolites: !!omap - - s_0862: 1 - - s_1117: -1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3351" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-A (C24))" + - metabolites: !!omap + - s_0862: 1 + - s_1117: -1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3352" - - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-A (C24))" - - metabolites: !!omap - - s_0862: 1 - - s_1117: -1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3352" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-A (C24))" + - metabolites: !!omap + - s_0862: 1 + - s_1117: -1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3353" - - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-A (C24))" - - metabolites: !!omap - - s_0862: 1 - - s_1117: -1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3353" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-A (C24))" + - metabolites: !!omap + - s_0862: 1 + - s_1117: -1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3354" - - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-A (C24))" - - metabolites: !!omap - - s_0862: 1 - - s_1117: -1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3354" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-A (C24))" + - metabolites: !!omap + - s_0862: 1 + - s_1117: -1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3355" - - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-A (C24))" - - metabolites: !!omap - - s_0862: 1 - - s_1117: -1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3355" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-A (C24))" + - metabolites: !!omap + - s_0862: 1 + - s_1117: -1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3356" - - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-A (C26))" - - metabolites: !!omap - - s_0865: 1 - - s_1120: -1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3356" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-A (C26))" + - metabolites: !!omap + - s_0865: 1 + - s_1120: -1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3357" - - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-A (C26))" - - metabolites: !!omap - - s_0865: 1 - - s_1120: -1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3357" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-A (C26))" + - metabolites: !!omap + - s_0865: 1 + - s_1120: -1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3358" - - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-A (C26))" - - metabolites: !!omap - - s_0865: 1 - - s_1120: -1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3358" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-A (C26))" + - metabolites: !!omap + - s_0865: 1 + - s_1120: -1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3359" - - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-A (C26))" - - metabolites: !!omap - - s_0865: 1 - - s_1120: -1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3359" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-A (C26))" + - metabolites: !!omap + - s_0865: 1 + - s_1120: -1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3360" - - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-A (C26))" - - metabolites: !!omap - - s_0865: 1 - - s_1120: -1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3360" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-A (C26))" + - metabolites: !!omap + - s_0865: 1 + - s_1120: -1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3361" - - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-A (C26))" - - metabolites: !!omap - - s_0865: 1 - - s_1120: -1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3361" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-A (C26))" + - metabolites: !!omap + - s_0865: 1 + - s_1120: -1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3362" - - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-A (C26))" - - metabolites: !!omap - - s_0865: 1 - - s_1120: -1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3362" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-A (C26))" + - metabolites: !!omap + - s_0865: 1 + - s_1120: -1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3363" - - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-A (C26))" - - metabolites: !!omap - - s_0865: 1 - - s_1120: -1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3363" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-A (C26))" + - metabolites: !!omap + - s_0865: 1 + - s_1120: -1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3364" - - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B' (C24))" - - metabolites: !!omap - - s_0874: 1 - - s_1129: -1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3364" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B' (C24))" + - metabolites: !!omap + - s_0874: 1 + - s_1129: -1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3365" - - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B' (C24))" - - metabolites: !!omap - - s_0874: 1 - - s_1129: -1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3365" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B' (C24))" + - metabolites: !!omap + - s_0874: 1 + - s_1129: -1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3366" - - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B' (C24))" - - metabolites: !!omap - - s_0874: 1 - - s_1129: -1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3366" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B' (C24))" + - metabolites: !!omap + - s_0874: 1 + - s_1129: -1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3367" - - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B' (C24))" - - metabolites: !!omap - - s_0874: 1 - - s_1129: -1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3367" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B' (C24))" + - metabolites: !!omap + - s_0874: 1 + - s_1129: -1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3368" - - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B' (C24))" - - metabolites: !!omap - - s_0874: 1 - - s_1129: -1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3368" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B' (C24))" + - metabolites: !!omap + - s_0874: 1 + - s_1129: -1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3369" - - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B' (C24))" - - metabolites: !!omap - - s_0874: 1 - - s_1129: -1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3369" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B' (C24))" + - metabolites: !!omap + - s_0874: 1 + - s_1129: -1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3370" - - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B' (C24))" - - metabolites: !!omap - - s_0874: 1 - - s_1129: -1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3370" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B' (C24))" + - metabolites: !!omap + - s_0874: 1 + - s_1129: -1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3371" - - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B' (C24))" - - metabolites: !!omap - - s_0874: 1 - - s_1129: -1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3371" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B' (C24))" + - metabolites: !!omap + - s_0874: 1 + - s_1129: -1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3372" - - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B' (C26))" - - metabolites: !!omap - - s_0877: 1 - - s_1132: -1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3372" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B' (C26))" + - metabolites: !!omap + - s_0877: 1 + - s_1132: -1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3373" - - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B' (C26))" - - metabolites: !!omap - - s_0877: 1 - - s_1132: -1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3373" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B' (C26))" + - metabolites: !!omap + - s_0877: 1 + - s_1132: -1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3374" - - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B' (C26))" - - metabolites: !!omap - - s_0877: 1 - - s_1132: -1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3374" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B' (C26))" + - metabolites: !!omap + - s_0877: 1 + - s_1132: -1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3375" - - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B' (C26))" - - metabolites: !!omap - - s_0877: 1 - - s_1132: -1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3375" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B' (C26))" + - metabolites: !!omap + - s_0877: 1 + - s_1132: -1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3376" - - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B' (C26))" - - metabolites: !!omap - - s_0877: 1 - - s_1132: -1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3376" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B' (C26))" + - metabolites: !!omap + - s_0877: 1 + - s_1132: -1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3377" - - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B' (C26))" - - metabolites: !!omap - - s_0877: 1 - - s_1132: -1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3377" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B' (C26))" + - metabolites: !!omap + - s_0877: 1 + - s_1132: -1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3378" - - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B' (C26))" - - metabolites: !!omap - - s_0877: 1 - - s_1132: -1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3378" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B' (C26))" + - metabolites: !!omap + - s_0877: 1 + - s_1132: -1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3379" - - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B' (C26))" - - metabolites: !!omap - - s_0877: 1 - - s_1132: -1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3379" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B' (C26))" + - metabolites: !!omap + - s_0877: 1 + - s_1132: -1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3380" - - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B (C24))" - - metabolites: !!omap - - s_0868: 1 - - s_1123: -1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3380" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B (C24))" + - metabolites: !!omap + - s_0868: 1 + - s_1123: -1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3381" - - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B (C24))" - - metabolites: !!omap - - s_0868: 1 - - s_1123: -1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3381" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B (C24))" + - metabolites: !!omap + - s_0868: 1 + - s_1123: -1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3382" - - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B (C24))" - - metabolites: !!omap - - s_0868: 1 - - s_1123: -1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3382" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B (C24))" + - metabolites: !!omap + - s_0868: 1 + - s_1123: -1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3383" - - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B (C24))" - - metabolites: !!omap - - s_0868: 1 - - s_1123: -1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3383" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B (C24))" + - metabolites: !!omap + - s_0868: 1 + - s_1123: -1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3384" - - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B (C24))" - - metabolites: !!omap - - s_0868: 1 - - s_1123: -1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3384" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B (C24))" + - metabolites: !!omap + - s_0868: 1 + - s_1123: -1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3385" - - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B (C24))" - - metabolites: !!omap - - s_0868: 1 - - s_1123: -1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3385" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B (C24))" + - metabolites: !!omap + - s_0868: 1 + - s_1123: -1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3386" - - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B (C24))" - - metabolites: !!omap - - s_0868: 1 - - s_1123: -1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3386" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B (C24))" + - metabolites: !!omap + - s_0868: 1 + - s_1123: -1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3387" - - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B (C24))" - - metabolites: !!omap - - s_0868: 1 - - s_1123: -1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3387" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B (C24))" + - metabolites: !!omap + - s_0868: 1 + - s_1123: -1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3388" - - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B (C26))" - - metabolites: !!omap - - s_0871: 1 - - s_1126: -1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3388" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B (C26))" + - metabolites: !!omap + - s_0871: 1 + - s_1126: -1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3389" - - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B (C26))" - - metabolites: !!omap - - s_0871: 1 - - s_1126: -1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3389" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B (C26))" + - metabolites: !!omap + - s_0871: 1 + - s_1126: -1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3390" - - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B (C26))" - - metabolites: !!omap - - s_0871: 1 - - s_1126: -1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3390" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B (C26))" + - metabolites: !!omap + - s_0871: 1 + - s_1126: -1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3391" - - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B (C26))" - - metabolites: !!omap - - s_0871: 1 - - s_1126: -1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3391" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B (C26))" + - metabolites: !!omap + - s_0871: 1 + - s_1126: -1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3392" - - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B (C26))" - - metabolites: !!omap - - s_0871: 1 - - s_1126: -1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3392" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B (C26))" + - metabolites: !!omap + - s_0871: 1 + - s_1126: -1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3393" - - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B (C26))" - - metabolites: !!omap - - s_0871: 1 - - s_1126: -1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3393" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B (C26))" + - metabolites: !!omap + - s_0871: 1 + - s_1126: -1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3394" - - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B (C26))" - - metabolites: !!omap - - s_0871: 1 - - s_1126: -1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3394" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B (C26))" + - metabolites: !!omap + - s_0871: 1 + - s_1126: -1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3395" - - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B (C26))" - - metabolites: !!omap - - s_0871: 1 - - s_1126: -1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3395" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B (C26))" + - metabolites: !!omap + - s_0871: 1 + - s_1126: -1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3396" - - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-C (C24))" - - metabolites: !!omap - - s_0880: 1 - - s_1135: -1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3396" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-C (C24))" + - metabolites: !!omap + - s_0880: 1 + - s_1135: -1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3397" - - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-C (C24))" - - metabolites: !!omap - - s_0880: 1 - - s_1135: -1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3397" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-C (C24))" + - metabolites: !!omap + - s_0880: 1 + - s_1135: -1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3398" - - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-C (C24))" - - metabolites: !!omap - - s_0880: 1 - - s_1135: -1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3398" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-C (C24))" + - metabolites: !!omap + - s_0880: 1 + - s_1135: -1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3399" - - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-C (C24))" - - metabolites: !!omap - - s_0880: 1 - - s_1135: -1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3399" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-C (C24))" + - metabolites: !!omap + - s_0880: 1 + - s_1135: -1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3400" - - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-C (C24))" - - metabolites: !!omap - - s_0880: 1 - - s_1135: -1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3400" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-C (C24))" + - metabolites: !!omap + - s_0880: 1 + - s_1135: -1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3401" - - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-C (C24))" - - metabolites: !!omap - - s_0880: 1 - - s_1135: -1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3401" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-C (C24))" + - metabolites: !!omap + - s_0880: 1 + - s_1135: -1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3402" - - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-C (C24))" - - metabolites: !!omap - - s_0880: 1 - - s_1135: -1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3402" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-C (C24))" + - metabolites: !!omap + - s_0880: 1 + - s_1135: -1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3403" - - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-C (C24))" - - metabolites: !!omap - - s_0880: 1 - - s_1135: -1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3403" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-C (C24))" + - metabolites: !!omap + - s_0880: 1 + - s_1135: -1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3404" - - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-C (C26))" - - metabolites: !!omap - - s_0883: 1 - - s_1138: -1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3404" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-C (C26))" + - metabolites: !!omap + - s_0883: 1 + - s_1138: -1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3405" - - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-C (C26))" - - metabolites: !!omap - - s_0883: 1 - - s_1138: -1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3405" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-C (C26))" + - metabolites: !!omap + - s_0883: 1 + - s_1138: -1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3406" - - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-C (C26))" - - metabolites: !!omap - - s_0883: 1 - - s_1138: -1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3406" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-C (C26))" + - metabolites: !!omap + - s_0883: 1 + - s_1138: -1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3407" - - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-C (C26))" - - metabolites: !!omap - - s_0883: 1 - - s_1138: -1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3407" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-C (C26))" + - metabolites: !!omap + - s_0883: 1 + - s_1138: -1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3408" - - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-C (C26))" - - metabolites: !!omap - - s_0883: 1 - - s_1138: -1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3408" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-C (C26))" + - metabolites: !!omap + - s_0883: 1 + - s_1138: -1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3409" - - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-C (C26))" - - metabolites: !!omap - - s_0883: 1 - - s_1138: -1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3409" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-C (C26))" + - metabolites: !!omap + - s_0883: 1 + - s_1138: -1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3410" - - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-C (C26))" - - metabolites: !!omap - - s_0883: 1 - - s_1138: -1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3410" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-C (C26))" + - metabolites: !!omap + - s_0883: 1 + - s_1138: -1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3411" - - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-C (C26))" - - metabolites: !!omap - - s_0883: 1 - - s_1138: -1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3411" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-C (C26))" + - metabolites: !!omap + - s_0883: 1 + - s_1138: -1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3412" - - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-D (C24))" - - metabolites: !!omap - - s_0886: 1 - - s_1141: -1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3412" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-D (C24))" + - metabolites: !!omap + - s_0886: 1 + - s_1141: -1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3413" - - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-D (C24))" - - metabolites: !!omap - - s_0886: 1 - - s_1141: -1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3413" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-D (C24))" + - metabolites: !!omap + - s_0886: 1 + - s_1141: -1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3414" - - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-D (C24))" - - metabolites: !!omap - - s_0886: 1 - - s_1141: -1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3414" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-D (C24))" + - metabolites: !!omap + - s_0886: 1 + - s_1141: -1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3415" - - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-D (C24))" - - metabolites: !!omap - - s_0886: 1 - - s_1141: -1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3415" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-D (C24))" + - metabolites: !!omap + - s_0886: 1 + - s_1141: -1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3416" - - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-D (C24))" - - metabolites: !!omap - - s_0886: 1 - - s_1141: -1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3416" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-D (C24))" + - metabolites: !!omap + - s_0886: 1 + - s_1141: -1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3417" - - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-D (C24))" - - metabolites: !!omap - - s_0886: 1 - - s_1141: -1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3417" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-D (C24))" + - metabolites: !!omap + - s_0886: 1 + - s_1141: -1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3418" - - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-D (C24))" - - metabolites: !!omap - - s_0886: 1 - - s_1141: -1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3418" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-D (C24))" + - metabolites: !!omap + - s_0886: 1 + - s_1141: -1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3419" - - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-D (C24))" - - metabolites: !!omap - - s_0886: 1 - - s_1141: -1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3419" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-D (C24))" + - metabolites: !!omap + - s_0886: 1 + - s_1141: -1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3420" - - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-D (C26))" - - metabolites: !!omap - - s_0889: 1 - - s_1144: -1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3420" + - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-D (C26))" + - metabolites: !!omap + - s_0889: 1 + - s_1144: -1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3421" - - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-D (C26))" - - metabolites: !!omap - - s_0889: 1 - - s_1144: -1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3421" + - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-D (C26))" + - metabolites: !!omap + - s_0889: 1 + - s_1144: -1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3422" - - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-D (C26))" - - metabolites: !!omap - - s_0889: 1 - - s_1144: -1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3422" + - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-D (C26))" + - metabolites: !!omap + - s_0889: 1 + - s_1144: -1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3423" - - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-D (C26))" - - metabolites: !!omap - - s_0889: 1 - - s_1144: -1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3423" + - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-D (C26))" + - metabolites: !!omap + - s_0889: 1 + - s_1144: -1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3424" - - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-D (C26))" - - metabolites: !!omap - - s_0889: 1 - - s_1144: -1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3424" + - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-D (C26))" + - metabolites: !!omap + - s_0889: 1 + - s_1144: -1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3425" - - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-D (C26))" - - metabolites: !!omap - - s_0889: 1 - - s_1144: -1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3425" + - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-D (C26))" + - metabolites: !!omap + - s_0889: 1 + - s_1144: -1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3426" - - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-D (C26))" - - metabolites: !!omap - - s_0889: 1 - - s_1144: -1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3426" + - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-D (C26))" + - metabolites: !!omap + - s_0889: 1 + - s_1144: -1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3427" - - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-D (C26))" - - metabolites: !!omap - - s_0889: 1 - - s_1144: -1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR072C" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3427" + - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-D (C26))" + - metabolites: !!omap + - s_0889: 1 + - s_1144: -1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR072C" + - eccodes: "2.-.-.-" + - references: "18296751; 9368028" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3428" - - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-1 (C24))" - - metabolites: !!omap - - s_0476: -1 - - s_0895: 1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3428" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-1 (C24))" + - metabolites: !!omap + - s_0476: -1 + - s_0895: 1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3429" - - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-1 (C24))" - - metabolites: !!omap - - s_0476: -1 - - s_0895: 1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3429" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-1 (C24))" + - metabolites: !!omap + - s_0476: -1 + - s_0895: 1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3430" - - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-1 (C24))" - - metabolites: !!omap - - s_0476: -1 - - s_0895: 1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3430" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-1 (C24))" + - metabolites: !!omap + - s_0476: -1 + - s_0895: 1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3431" - - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-1 (C24))" - - metabolites: !!omap - - s_0476: -1 - - s_0895: 1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3431" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-1 (C24))" + - metabolites: !!omap + - s_0476: -1 + - s_0895: 1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3432" - - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-1 (C24))" - - metabolites: !!omap - - s_0476: -1 - - s_0895: 1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3432" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-1 (C24))" + - metabolites: !!omap + - s_0476: -1 + - s_0895: 1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3433" - - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-1 (C24))" - - metabolites: !!omap - - s_0476: -1 - - s_0895: 1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3433" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-1 (C24))" + - metabolites: !!omap + - s_0476: -1 + - s_0895: 1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3434" - - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-1 (C24))" - - metabolites: !!omap - - s_0476: -1 - - s_0895: 1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3434" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-1 (C24))" + - metabolites: !!omap + - s_0476: -1 + - s_0895: 1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3435" - - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-1 (C24))" - - metabolites: !!omap - - s_0476: -1 - - s_0895: 1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3435" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-1 (C24))" + - metabolites: !!omap + - s_0476: -1 + - s_0895: 1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3436" - - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-1 (C26))" - - metabolites: !!omap - - s_0479: -1 - - s_0898: 1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3436" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-1 (C26))" + - metabolites: !!omap + - s_0479: -1 + - s_0898: 1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3437" - - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-1 (C26))" - - metabolites: !!omap - - s_0479: -1 - - s_0898: 1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3437" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-1 (C26))" + - metabolites: !!omap + - s_0479: -1 + - s_0898: 1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3438" - - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-1 (C26))" - - metabolites: !!omap - - s_0479: -1 - - s_0898: 1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3438" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-1 (C26))" + - metabolites: !!omap + - s_0479: -1 + - s_0898: 1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3439" - - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-1 (C26))" - - metabolites: !!omap - - s_0479: -1 - - s_0898: 1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3439" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-1 (C26))" + - metabolites: !!omap + - s_0479: -1 + - s_0898: 1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3440" - - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-1 (C26))" - - metabolites: !!omap - - s_0479: -1 - - s_0898: 1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3440" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-1 (C26))" + - metabolites: !!omap + - s_0479: -1 + - s_0898: 1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3441" - - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-1 (C26))" - - metabolites: !!omap - - s_0479: -1 - - s_0898: 1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3441" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-1 (C26))" + - metabolites: !!omap + - s_0479: -1 + - s_0898: 1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3442" - - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-1 (C26))" - - metabolites: !!omap - - s_0479: -1 - - s_0898: 1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3442" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-1 (C26))" + - metabolites: !!omap + - s_0479: -1 + - s_0898: 1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3443" - - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-1 (C26))" - - metabolites: !!omap - - s_0479: -1 - - s_0898: 1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3443" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-1 (C26))" + - metabolites: !!omap + - s_0479: -1 + - s_0898: 1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3444" - - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2' (C24))" - - metabolites: !!omap - - s_0488: -1 - - s_0907: 1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3444" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2' (C24))" + - metabolites: !!omap + - s_0488: -1 + - s_0907: 1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3445" - - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2' (C24))" - - metabolites: !!omap - - s_0488: -1 - - s_0907: 1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3445" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2' (C24))" + - metabolites: !!omap + - s_0488: -1 + - s_0907: 1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3446" - - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2' (C24))" - - metabolites: !!omap - - s_0488: -1 - - s_0907: 1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3446" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2' (C24))" + - metabolites: !!omap + - s_0488: -1 + - s_0907: 1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3447" - - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2' (C24))" - - metabolites: !!omap - - s_0488: -1 - - s_0907: 1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3447" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2' (C24))" + - metabolites: !!omap + - s_0488: -1 + - s_0907: 1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3448" - - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2' (C24))" - - metabolites: !!omap - - s_0488: -1 - - s_0907: 1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3448" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2' (C24))" + - metabolites: !!omap + - s_0488: -1 + - s_0907: 1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3449" - - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2' (C24))" - - metabolites: !!omap - - s_0488: -1 - - s_0907: 1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3449" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2' (C24))" + - metabolites: !!omap + - s_0488: -1 + - s_0907: 1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3450" - - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2' (C24))" - - metabolites: !!omap - - s_0488: -1 - - s_0907: 1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3450" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2' (C24))" + - metabolites: !!omap + - s_0488: -1 + - s_0907: 1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3451" - - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2' (C24))" - - metabolites: !!omap - - s_0488: -1 - - s_0907: 1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3451" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2' (C24))" + - metabolites: !!omap + - s_0488: -1 + - s_0907: 1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3452" - - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2' (C26))" - - metabolites: !!omap - - s_0491: -1 - - s_0910: 1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3452" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2' (C26))" + - metabolites: !!omap + - s_0491: -1 + - s_0910: 1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3453" - - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2' (C26))" - - metabolites: !!omap - - s_0491: -1 - - s_0910: 1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3453" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2' (C26))" + - metabolites: !!omap + - s_0491: -1 + - s_0910: 1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3454" - - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2' (C26))" - - metabolites: !!omap - - s_0491: -1 - - s_0910: 1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3454" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2' (C26))" + - metabolites: !!omap + - s_0491: -1 + - s_0910: 1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3455" - - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2' (C26))" - - metabolites: !!omap - - s_0491: -1 - - s_0910: 1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3455" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2' (C26))" + - metabolites: !!omap + - s_0491: -1 + - s_0910: 1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3456" - - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2' (C26))" - - metabolites: !!omap - - s_0491: -1 - - s_0910: 1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3456" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2' (C26))" + - metabolites: !!omap + - s_0491: -1 + - s_0910: 1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3457" - - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2' (C26))" - - metabolites: !!omap - - s_0491: -1 - - s_0910: 1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3457" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2' (C26))" + - metabolites: !!omap + - s_0491: -1 + - s_0910: 1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3458" - - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2' (C26))" - - metabolites: !!omap - - s_0491: -1 - - s_0910: 1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3458" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2' (C26))" + - metabolites: !!omap + - s_0491: -1 + - s_0910: 1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3459" - - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2' (C26))" - - metabolites: !!omap - - s_0491: -1 - - s_0910: 1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3459" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2' (C26))" + - metabolites: !!omap + - s_0491: -1 + - s_0910: 1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3460" - - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2 (C24))" - - metabolites: !!omap - - s_0482: -1 - - s_0901: 1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3460" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2 (C24))" + - metabolites: !!omap + - s_0482: -1 + - s_0901: 1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3461" - - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2 (C24))" - - metabolites: !!omap - - s_0482: -1 - - s_0901: 1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3461" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2 (C24))" + - metabolites: !!omap + - s_0482: -1 + - s_0901: 1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3462" - - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2 (C24))" - - metabolites: !!omap - - s_0482: -1 - - s_0901: 1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3462" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2 (C24))" + - metabolites: !!omap + - s_0482: -1 + - s_0901: 1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3463" - - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2 (C24))" - - metabolites: !!omap - - s_0482: -1 - - s_0901: 1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3463" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2 (C24))" + - metabolites: !!omap + - s_0482: -1 + - s_0901: 1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3464" - - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2 (C24))" - - metabolites: !!omap - - s_0482: -1 - - s_0901: 1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3464" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2 (C24))" + - metabolites: !!omap + - s_0482: -1 + - s_0901: 1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3465" - - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2 (C24))" - - metabolites: !!omap - - s_0482: -1 - - s_0901: 1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3465" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2 (C24))" + - metabolites: !!omap + - s_0482: -1 + - s_0901: 1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3466" - - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2 (C24))" - - metabolites: !!omap - - s_0482: -1 - - s_0901: 1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3466" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2 (C24))" + - metabolites: !!omap + - s_0482: -1 + - s_0901: 1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3467" - - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2 (C24))" - - metabolites: !!omap - - s_0482: -1 - - s_0901: 1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3467" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2 (C24))" + - metabolites: !!omap + - s_0482: -1 + - s_0901: 1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3468" - - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2 (C26))" - - metabolites: !!omap - - s_0485: -1 - - s_0904: 1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3468" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2 (C26))" + - metabolites: !!omap + - s_0485: -1 + - s_0904: 1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3469" - - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2 (C26))" - - metabolites: !!omap - - s_0485: -1 - - s_0904: 1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3469" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2 (C26))" + - metabolites: !!omap + - s_0485: -1 + - s_0904: 1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3470" - - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2 (C26))" - - metabolites: !!omap - - s_0485: -1 - - s_0904: 1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3470" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2 (C26))" + - metabolites: !!omap + - s_0485: -1 + - s_0904: 1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3471" - - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2 (C26))" - - metabolites: !!omap - - s_0485: -1 - - s_0904: 1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3471" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2 (C26))" + - metabolites: !!omap + - s_0485: -1 + - s_0904: 1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3472" - - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2 (C26))" - - metabolites: !!omap - - s_0485: -1 - - s_0904: 1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3472" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2 (C26))" + - metabolites: !!omap + - s_0485: -1 + - s_0904: 1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3473" - - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2 (C26))" - - metabolites: !!omap - - s_0485: -1 - - s_0904: 1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3473" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2 (C26))" + - metabolites: !!omap + - s_0485: -1 + - s_0904: 1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3474" - - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2 (C26))" - - metabolites: !!omap - - s_0485: -1 - - s_0904: 1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3474" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2 (C26))" + - metabolites: !!omap + - s_0485: -1 + - s_0904: 1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3475" - - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2 (C26))" - - metabolites: !!omap - - s_0485: -1 - - s_0904: 1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3475" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2 (C26))" + - metabolites: !!omap + - s_0485: -1 + - s_0904: 1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3476" - - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-3 (C24))" - - metabolites: !!omap - - s_0494: -1 - - s_0913: 1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3476" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-3 (C24))" + - metabolites: !!omap + - s_0494: -1 + - s_0913: 1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3477" - - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-3 (C24))" - - metabolites: !!omap - - s_0494: -1 - - s_0913: 1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3477" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-3 (C24))" + - metabolites: !!omap + - s_0494: -1 + - s_0913: 1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3478" - - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-3 (C24))" - - metabolites: !!omap - - s_0494: -1 - - s_0913: 1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3478" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-3 (C24))" + - metabolites: !!omap + - s_0494: -1 + - s_0913: 1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3479" - - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-3 (C24))" - - metabolites: !!omap - - s_0494: -1 - - s_0913: 1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3479" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-3 (C24))" + - metabolites: !!omap + - s_0494: -1 + - s_0913: 1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3480" - - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-3 (C24))" - - metabolites: !!omap - - s_0494: -1 - - s_0913: 1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3480" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-3 (C24))" + - metabolites: !!omap + - s_0494: -1 + - s_0913: 1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3481" - - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-3 (C24))" - - metabolites: !!omap - - s_0494: -1 - - s_0913: 1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3481" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-3 (C24))" + - metabolites: !!omap + - s_0494: -1 + - s_0913: 1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3482" - - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-3 (C24))" - - metabolites: !!omap - - s_0494: -1 - - s_0913: 1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3482" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-3 (C24))" + - metabolites: !!omap + - s_0494: -1 + - s_0913: 1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3483" - - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-3 (C24))" - - metabolites: !!omap - - s_0494: -1 - - s_0913: 1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3483" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-3 (C24))" + - metabolites: !!omap + - s_0494: -1 + - s_0913: 1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3484" - - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-3 (C26))" - - metabolites: !!omap - - s_0497: -1 - - s_0916: 1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3484" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-3 (C26))" + - metabolites: !!omap + - s_0497: -1 + - s_0916: 1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3485" - - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-3 (C26))" - - metabolites: !!omap - - s_0497: -1 - - s_0916: 1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3485" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-3 (C26))" + - metabolites: !!omap + - s_0497: -1 + - s_0916: 1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3486" - - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-3 (C26))" - - metabolites: !!omap - - s_0497: -1 - - s_0916: 1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3486" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-3 (C26))" + - metabolites: !!omap + - s_0497: -1 + - s_0916: 1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3487" - - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-3 (C26))" - - metabolites: !!omap - - s_0497: -1 - - s_0916: 1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3487" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-3 (C26))" + - metabolites: !!omap + - s_0497: -1 + - s_0916: 1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3488" - - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-3 (C26))" - - metabolites: !!omap - - s_0497: -1 - - s_0916: 1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3488" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-3 (C26))" + - metabolites: !!omap + - s_0497: -1 + - s_0916: 1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3489" - - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-3 (C26))" - - metabolites: !!omap - - s_0497: -1 - - s_0916: 1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3489" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-3 (C26))" + - metabolites: !!omap + - s_0497: -1 + - s_0916: 1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3490" - - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-3 (C26))" - - metabolites: !!omap - - s_0497: -1 - - s_0916: 1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3490" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-3 (C26))" + - metabolites: !!omap + - s_0497: -1 + - s_0916: 1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3491" - - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-3 (C26))" - - metabolites: !!omap - - s_0497: -1 - - s_0916: 1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3491" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-3 (C26))" + - metabolites: !!omap + - s_0497: -1 + - s_0916: 1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3492" - - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-4 (C24))" - - metabolites: !!omap - - s_0500: -1 - - s_0919: 1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3492" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-4 (C24))" + - metabolites: !!omap + - s_0500: -1 + - s_0919: 1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3493" - - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-4 (C24))" - - metabolites: !!omap - - s_0500: -1 - - s_0919: 1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3493" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-4 (C24))" + - metabolites: !!omap + - s_0500: -1 + - s_0919: 1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3494" - - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-4 (C24))" - - metabolites: !!omap - - s_0500: -1 - - s_0919: 1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3494" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-4 (C24))" + - metabolites: !!omap + - s_0500: -1 + - s_0919: 1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3495" - - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-4 (C24))" - - metabolites: !!omap - - s_0500: -1 - - s_0919: 1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3495" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-4 (C24))" + - metabolites: !!omap + - s_0500: -1 + - s_0919: 1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3496" - - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-4 (C24))" - - metabolites: !!omap - - s_0500: -1 - - s_0919: 1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3496" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-4 (C24))" + - metabolites: !!omap + - s_0500: -1 + - s_0919: 1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3497" - - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-4 (C24))" - - metabolites: !!omap - - s_0500: -1 - - s_0919: 1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3497" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-4 (C24))" + - metabolites: !!omap + - s_0500: -1 + - s_0919: 1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3498" - - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-4 (C24))" - - metabolites: !!omap - - s_0500: -1 - - s_0919: 1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3498" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-4 (C24))" + - metabolites: !!omap + - s_0500: -1 + - s_0919: 1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3499" - - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-4 (C24))" - - metabolites: !!omap - - s_0500: -1 - - s_0919: 1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3499" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-4 (C24))" + - metabolites: !!omap + - s_0500: -1 + - s_0919: 1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3500" - - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-4 (C26))" - - metabolites: !!omap - - s_0503: -1 - - s_0922: 1 - - s_2996: 1 - - s_3358: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3500" + - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-4 (C26))" + - metabolites: !!omap + - s_0503: -1 + - s_0922: 1 + - s_2996: 1 + - s_3358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3501" - - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-4 (C26))" - - metabolites: !!omap - - s_0503: -1 - - s_0922: 1 - - s_3000: 1 - - s_3362: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3501" + - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-4 (C26))" + - metabolites: !!omap + - s_0503: -1 + - s_0922: 1 + - s_3000: 1 + - s_3362: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3502" - - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-4 (C26))" - - metabolites: !!omap - - s_0503: -1 - - s_0922: 1 - - s_3004: 1 - - s_3364: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3502" + - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-4 (C26))" + - metabolites: !!omap + - s_0503: -1 + - s_0922: 1 + - s_3004: 1 + - s_3364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3503" - - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-4 (C26))" - - metabolites: !!omap - - s_0503: -1 - - s_0922: 1 - - s_3008: 1 - - s_3366: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3503" + - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-4 (C26))" + - metabolites: !!omap + - s_0503: -1 + - s_0922: 1 + - s_3008: 1 + - s_3366: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3504" - - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-4 (C26))" - - metabolites: !!omap - - s_0503: -1 - - s_0922: 1 - - s_2998: 1 - - s_3368: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3504" + - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-4 (C26))" + - metabolites: !!omap + - s_0503: -1 + - s_0922: 1 + - s_2998: 1 + - s_3368: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3505" - - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-4 (C26))" - - metabolites: !!omap - - s_0503: -1 - - s_0922: 1 - - s_3002: 1 - - s_3370: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3505" + - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-4 (C26))" + - metabolites: !!omap + - s_0503: -1 + - s_0922: 1 + - s_3002: 1 + - s_3370: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3506" - - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-4 (C26))" - - metabolites: !!omap - - s_0503: -1 - - s_0922: 1 - - s_3006: 1 - - s_3372: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3506" + - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-4 (C26))" + - metabolites: !!omap + - s_0503: -1 + - s_0922: 1 + - s_3006: 1 + - s_3372: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3507" - - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-4 (C26))" - - metabolites: !!omap - - s_0503: -1 - - s_0922: 1 - - s_3010: 1 - - s_3374: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR367W and YKL004W" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_3507" + - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-4 (C26))" + - metabolites: !!omap + - s_0503: -1 + - s_0922: 1 + - s_3010: 1 + - s_3374: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR367W and YKL004W" + - eccodes: "2.-.-.-" + - references: "18296751; 9092515" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.-.-.-" - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_3508" - - name: "laurate transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1065: -1 - - s_2832: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 + - !!omap + - id: "r_1449" + - name: "inositol-P-ceramide B' (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0892: 0.910263542 + - s_0907: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1450" + - name: "inositol-P-ceramide B' (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0892: 0.938317302 + - s_0910: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1451" + - name: "inositol-P-ceramide C (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0892: 0.926262942 + - s_0913: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1452" + - name: "inositol-P-ceramide C (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0892: 0.954316702 + - s_0916: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1453" + - name: "inositol-P-ceramide A (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0892: 0.894264142 + - s_0895: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1454" + - name: "inositol-P-ceramide A (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0892: 0.922317902 + - s_0898: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1455" + - name: "inositol-P-ceramide B (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0892: 0.910263542 + - s_0901: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1456" + - name: "inositol-P-ceramide B (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0892: 0.938317302 + - s_0904: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1457" + - name: "inositol-P-ceramide D (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0892: 0.942262342 + - s_0919: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1458" + - name: "inositol-P-ceramide D (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0892: 0.970316102 + - s_0922: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1479" + - name: "inositol phosphomannosylinositol phosphoceramide A (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0859: 1.298528844 + - s_0862: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1480" + - name: "inositol phosphomannosylinositol phosphoceramide A (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0859: 1.326582604 + - s_0865: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1481" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0859: 1.314528244 + - s_0874: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1482" + - name: "inositol phosphomannosylinositol phosphoceramide B' (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0859: 1.342582004 + - s_0877: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1483" + - name: "inositol phosphomannosylinositol phosphoceramide B (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0859: 1.314528244 + - s_0868: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1484" + - name: "inositol phosphomannosylinositol phosphoceramide B (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0859: 1.342582004 + - s_0871: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1485" + - name: "inositol phosphomannosylinositol phosphoceramide C (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0859: 1.330527644 + - s_0880: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1486" + - name: "inositol phosphomannosylinositol phosphoceramide C (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0859: 1.358581404 + - s_0883: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1487" + - name: "inositol phosphomannosylinositol phosphoceramide D (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0859: 1.346527044 + - s_0886: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1488" + - name: "inositol phosphomannosylinositol phosphoceramide D (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0859: 1.374580804 + - s_0889: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1509" + - name: "mannosylinositol phosphorylceramide B' (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_1114: 1.072405942 + - s_1129: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1510" + - name: "mannosylinositol phosphorylceramide B' (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_1114: 1.100459702 + - s_1132: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1511" + - name: "mannosylinositol phosphorylceramide C (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_1114: 1.088405342 + - s_1135: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1512" + - name: "mannosylinositol phosphorylceramide C (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_1114: 1.116459102 + - s_1138: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1513" + - name: "mannosylinositol phosphorylceramide A (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_1114: 1.056406542 + - s_1117: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1514" + - name: "mannosylinositol phosphorylceramide A (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_1114: 1.084460302 + - s_1120: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1515" + - name: "mannosylinositol phosphorylceramide B (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_1114: 1.072405942 + - s_1123: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1516" + - name: "mannosylinositol phosphorylceramide B (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_1114: 1.100459702 + - s_1126: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1517" + - name: "mannosylinositol phosphorylceramide D (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_1114: 1.104404742 + - s_1141: -1 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1518" + - name: "mannosylinositol phosphorylceramide D (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_1114: 1.132458502 + - s_1144: -1 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3963" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) [cytoplasm] SLIME rxn" + - metabolites: !!omap + - s_0089: 0.809028342 + - s_3545: -1 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3964" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) [cytoplasm] SLIME rxn" + - metabolites: !!omap + - s_0089: 0.807012462 + - s_3547: -1 + - s_3741: 0.508826 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3965" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) [cytoplasm] SLIME rxn" + - metabolites: !!omap + - s_0089: 0.837082102 + - s_3549: -1 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3966" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) [cytoplasm] SLIME rxn" + - metabolites: !!omap + - s_0089: 0.835066222 + - s_3551: -1 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3967" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) [cytoplasm] SLIME rxn" + - metabolites: !!omap + - s_0089: 0.837082102 + - s_3553: -1 + - s_3740: 0.25642888 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3968" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) [cytoplasm] SLIME rxn" + - metabolites: !!omap + - s_0089: 0.835066222 + - s_3555: -1 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3969" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) [cytoplasm] SLIME rxn" + - metabolites: !!omap + - s_0089: 0.865135862 + - s_3557: -1 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3970" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) [cytoplasm] SLIME rxn" + - metabolites: !!omap + - s_0089: 0.863119982 + - s_3559: -1 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3971" + - name: "ergosteryl palmitoleate [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3443: -1 + - s_3709: 0.63305448 + - s_3741: 0.254413 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3972" + - name: "ergosteryl oleate [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3442: -1 + - s_3709: 0.66110824 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3975" + - name: "palmitate [cytoplasm] SLIME rxn" + - metabolites: !!omap + - s_0694: 0.25542094 + - s_1286: -1 + - s_3740: 0.25642888 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3976" + - name: "palmitoleate [cytoplasm] SLIME rxn" + - metabolites: !!omap + - s_0694: 0.25340506 + - s_1293: -1 + - s_3741: 0.254413 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3977" + - name: "stearate [cytoplasm] SLIME rxn" + - metabolites: !!omap + - s_0694: 0.2834747 + - s_1449: -1 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3978" + - name: "oleate [cytoplasm] SLIME rxn" + - metabolites: !!omap + - s_0694: 0.28145882 + - s_1260: -1 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3979" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3109: -1 + - s_3710: 0.733964182 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3980" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3110: -1 + - s_3710: 0.731948302 + - s_3741: 0.508826 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3981" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3111: -1 + - s_3710: 0.762017942 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3982" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3112: -1 + - s_3710: 0.760002062 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3983" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3113: -1 + - s_3710: 0.762017942 + - s_3740: 0.25642888 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3984" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3114: -1 + - s_3710: 0.760002062 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3985" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3115: -1 + - s_3710: 0.790071702 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3986" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3116: -1 + - s_3710: 0.788055822 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3988" + - name: "phosphatidylcholine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3207: -1 + - s_3711: 0.732035022 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3989" + - name: "phosphatidylcholine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3208: -1 + - s_3711: 0.730019142 + - s_3741: 0.508826 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3990" + - name: "phosphatidylcholine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3209: -1 + - s_3711: 0.744089382 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3991" + - name: "phosphatidylcholine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3210: -1 + - s_3711: 0.742073502 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3992" + - name: "phosphatidylcholine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3211: -1 + - s_3711: 0.760088782 + - s_3740: 0.25642888 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3993" + - name: "phosphatidylcholine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3212: -1 + - s_3711: 0.758072902 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3994" + - name: "phosphatidylcholine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3213: -1 + - s_3711: 0.772143142 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3995" + - name: "phosphatidylcholine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3214: -1 + - s_3711: 0.770127262 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3997" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3181: -1 + - s_3712: 0.689954382 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3998" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3185: -1 + - s_3712: 0.687938502 + - s_3741: 0.508826 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_3999" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3187: -1 + - s_3712: 0.718008142 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4000" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3189: -1 + - s_3712: 0.715992262 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4001" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3191: -1 + - s_3712: 0.718008142 + - s_3740: 0.25642888 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4002" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3193: -1 + - s_3712: 0.715992262 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4003" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3195: -1 + - s_3712: 0.746061902 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4004" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3197: -1 + - s_3712: 0.744046022 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4006" + - name: "triglyceride (1-16:0, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3011: -1 + - s_3713: 0.80531964 + - s_3740: 0.51285776 + - s_3741: 0.254413 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4007" + - name: "triglyceride (1-16:0, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3012: -1 + - s_3713: 0.8333734 + - s_3740: 0.51285776 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4008" + - name: "triglyceride (1-16:1, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3013: -1 + - s_3713: 0.80330376 + - s_3740: 0.25642888 + - s_3741: 0.508826 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4009" + - name: "triglyceride (1-16:1, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3014: -1 + - s_3713: 0.83135752 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4010" + - name: "triglyceride (1-18:0, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3015: -1 + - s_3713: 0.8333734 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4011" + - name: "triglyceride (1-18:0, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3016: -1 + - s_3713: 0.86142716 + - s_3740: 0.25642888 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4012" + - name: "triglyceride (1-18:1, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3017: -1 + - s_3713: 0.83135752 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4013" + - name: "triglyceride (1-18:1, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3018: -1 + - s_3713: 0.85941128 + - s_3740: 0.25642888 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4014" + - name: "triglyceride (1-16:0, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3019: -1 + - s_3713: 0.80330376 + - s_3740: 0.25642888 + - s_3741: 0.508826 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4015" + - name: "triglyceride (1-16:0, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3020: -1 + - s_3713: 0.83135752 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4016" + - name: "triglyceride (1-16:1, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3021: -1 + - s_3713: 0.80128788 + - s_3741: 0.763239 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4017" + - name: "triglyceride (1-16:1, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3022: -1 + - s_3713: 0.82934164 + - s_3741: 0.508826 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4018" + - name: "triglyceride (1-18:0, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3023: -1 + - s_3713: 0.83135752 + - s_3741: 0.508826 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4019" + - name: "triglyceride (1-18:0, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3024: -1 + - s_3713: 0.85941128 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4020" + - name: "triglyceride (1-18:1, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3025: -1 + - s_3713: 0.82934164 + - s_3741: 0.508826 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4021" + - name: "triglyceride (1-18:1, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3026: -1 + - s_3713: 0.8573954 + - s_3741: 0.254413 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4022" + - name: "triglyceride (1-16:0, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3027: -1 + - s_3713: 0.8333734 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4023" + - name: "triglyceride (1-16:0, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3028: -1 + - s_3713: 0.86142716 + - s_3740: 0.25642888 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4024" + - name: "triglyceride (1-16:1, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3029: -1 + - s_3713: 0.83135752 + - s_3741: 0.508826 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4025" + - name: "triglyceride (1-16:1, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3030: -1 + - s_3713: 0.85941128 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4026" + - name: "triglyceride (1-18:0, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3031: -1 + - s_3713: 0.86142716 + - s_3741: 0.254413 + - s_3742: 0.56896528 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4027" + - name: "triglyceride (1-18:0, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3032: -1 + - s_3713: 0.88948092 + - s_3742: 0.56896528 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4028" + - name: "triglyceride (1-18:1, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3033: -1 + - s_3713: 0.85941128 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4029" + - name: "triglyceride (1-18:1, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3034: -1 + - s_3713: 0.88746504 + - s_3742: 0.28448264 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4030" + - name: "triglyceride (1-16:0, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3035: -1 + - s_3713: 0.83135752 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4031" + - name: "triglyceride (1-16:0, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3036: -1 + - s_3713: 0.85941128 + - s_3740: 0.25642888 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4032" + - name: "triglyceride (1-16:1, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3037: -1 + - s_3713: 0.82934164 + - s_3741: 0.508826 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4033" + - name: "triglyceride (1-16:1, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3038: -1 + - s_3713: 0.8573954 + - s_3741: 0.254413 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4034" + - name: "triglyceride (1-18:0, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3039: -1 + - s_3713: 0.85941128 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4035" + - name: "triglyceride (1-18:0, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3040: -1 + - s_3713: 0.88746504 + - s_3742: 0.28448264 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4036" + - name: "triglyceride (1-18:1, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3041: -1 + - s_3713: 0.8573954 + - s_3741: 0.254413 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_4037" + - name: "triglyceride (1-18:1, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3042: -1 + - s_3713: 0.88544916 + - s_3743: 0.84740028 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_1542" + - name: "(1->3)-beta-D-glucan exchange" + - metabolites: !!omap + - s_0003: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_13BDglcn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1543" + - name: "(1->3)-beta-D-glucan transport" + - metabolites: !!omap + - s_0001: -1 + - s_0002: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1545" + - name: "(R)-carnitine exchange" + - metabolites: !!omap + - s_0022: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_crn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1546" + - name: "(R)-lactate exchange" + - metabolites: !!omap + - s_0026: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_lac__D_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1547" + - name: "(R)-mevalonate exchange" + - metabolites: !!omap + - s_0029: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_mev__R_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1548" + - name: "(R)-pantothenate exchange" + - metabolites: !!omap + - s_0032: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_pnto__R_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1549" + - name: "(R,R)-2,3-butanediol exchange" + - metabolites: !!omap + - s_0036: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_btd_RR_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1550" + - name: "(S)-3-methyl-2-oxopentanoate exchange" + - metabolites: !!omap + - s_0058: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_3mop_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1551" + - name: "(S)-lactate exchange" + - metabolites: !!omap + - s_0064: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_lac__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1552" + - name: "(S)-malate exchange" + - metabolites: !!omap + - s_0067: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_mal__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1553" + - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol exchange" + - metabolites: !!omap + - s_0080: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_g3pi_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1554" + - name: "1-acylglycerophosphocholine exchange" + - metabolites: !!omap + - s_0084: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_pchol_cho_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1560" + - name: "1D-myo-inositol 1,3,4,5,6-pentakisphosphate diffusion" + - metabolites: !!omap + - s_1156: -1 + - s_1157: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR125284" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1562" + - name: "1D-myo-inositol 1-phosphate transport" + - metabolites: !!omap + - s_0126: 1 + - s_0127: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR101573" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1563" + - name: "2'-deoxyadenosine exchange" + - metabolites: !!omap + - s_0133: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_dad_2_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1564" + - name: "2'-deoxyguanosine exchange" + - metabolites: !!omap + - s_0135: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_dgsn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1565" + - name: "2'-deoxyinosine exchange" + - metabolites: !!omap + - s_0137: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_din_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1566" + - name: "2'-deoxyuridine exchange" + - metabolites: !!omap + - s_0139: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_duri_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1567" + - name: "2-dehydro-3-deoxy-D-arabino-heptonate7-phohsphate transport" + - metabolites: !!omap + - s_0349: -1 + - s_0350: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2DDA7Ptm" + - metanetx.reaction: "MNXR94782" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1568" + - name: "2-dehydropantoate transport" + - metabolites: !!omap + - s_0149: -1 + - s_0150: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2DHPtm" + - metanetx.reaction: "MNXR94793" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1572" + - name: "2-isopropylmalate exchange" + - metabolites: !!omap + - s_0163: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_3c3hmp_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1573" + - name: "2-isopropylmalate transport" + - metabolites: !!omap + - s_0162: -1 + - s_0163: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "3C3HMPt" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1574" + - name: "2-isopropylmalate transport" + - metabolites: !!omap + - s_0162: -1 + - s_0164: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL120W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "3C3HMPtm" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1575" + - name: "2-methyl-1-butanol transport" + - metabolites: !!omap + - s_0169: -1 + - s_0170: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2MBTOHt" + - metanetx.reaction: "MNXR94810" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1576" + - name: "2-methyl-1-butanol transport" + - metabolites: !!omap + - s_0169: -1 + - s_0171: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2MBTOHtm" + - metanetx.reaction: "MNXR94810" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1577" + - name: "2-methylbutanal exchange" + - metabolites: !!omap + - s_0167: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_2mbald_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1578" + - name: "2-methylbutanal transport" + - metabolites: !!omap + - s_0166: -1 + - s_0167: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2MBALDt" + - metanetx.reaction: "MNXR94809" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1579" + - name: "2-methylbutanal transport" + - metabolites: !!omap + - s_0166: -1 + - s_0168: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2MBALDtm" + - metanetx.reaction: "MNXR94809" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1580" + - name: "2-methylbutanol exchange" + - metabolites: !!omap + - s_0170: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_2mbtoh_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1581" + - name: "2-methylbutyl acetate exchange" + - metabolites: !!omap + - s_0173: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_2mbac_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1582" + - name: "2-methylpropanal transport" + - metabolites: !!omap + - s_0937: -1 + - s_0938: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2MPPALt" + - metanetx.reaction: "MNXR94812" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1583" + - name: "2-methylpropanal transport" + - metabolites: !!omap + - s_0937: -1 + - s_0939: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2MPPALtm" + - metanetx.reaction: "MNXR94812" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1585" + - name: "2-oxobutanoate transporter" + - metabolites: !!omap + - s_0178: -1 + - s_0179: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2OBUTtm" + - metanetx.reaction: "MNXR94814" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1586" + - name: "2-oxoglutarate exchange" + - metabolites: !!omap + - s_0181: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_akg_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1587" + - name: "2-oxoglutarate transport" + - metabolites: !!omap + - s_0180: -1 + - s_0183: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR95663" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1588" + - name: "2-oxoglutarate transport" + - metabolites: !!omap + - s_0180: 1 + - s_0181: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR95663" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1589" + - name: "2-phenylethanol exchange" + - metabolites: !!omap + - s_0186: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_2phetoh_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1590" + - name: "2-phenylethanol transport" + - metabolites: !!omap + - s_0185: 1 + - s_0186: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2PHETOHt" + - metanetx.reaction: "MNXR94828" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1591" + - name: "2-phenylethanol transport" + - metabolites: !!omap + - s_0185: 1 + - s_0187: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "2PHETOHtm" + - metanetx.reaction: "MNXR94828" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1595" + - name: "3-carboxy-4-methyl-2-oxopentanoate transport" + - metabolites: !!omap + - s_0010: -1 + - s_0011: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "3C4MOPtm" + - metanetx.reaction: "MNXR94859" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1596" + - name: "3-methyl-2-oxopentanoate transport" + - metabolites: !!omap + - s_0056: -1 + - s_0060: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "3MOPtm" + - metanetx.reaction: "MNXR94926" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1597" + - name: "3-methyl-oxopentanoate trasport" + - metabolites: !!omap + - s_0056: 1 + - s_0058: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "3MOPt" + - metanetx.reaction: "MNXR94926" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1598" + - name: "3-methylbutanal exchange" + - metabolites: !!omap + - s_0235: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_3mbald_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1599" + - name: "3-methylbutanal transport" + - metabolites: !!omap + - s_0234: -1 + - s_0235: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "3MBALDt" + - metanetx.reaction: "MNXR137944" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1600" + - name: "3-methylbutanal transport" + - metabolites: !!omap + - s_0234: -1 + - s_0236: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "3MBALDtm" + - metanetx.reaction: "MNXR137944" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1601" + - name: "3-octaprenyl-4-hydroxybenzoate transport" + - metabolites: !!omap + - s_0215: -1 + - s_0216: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "3OPHB_5tm" + - metanetx.reaction: "MNXR94966" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1603" + - name: "4-amino-5-hydroxymethyl-2-methylpyrimidine synthetase" + - metabolites: !!omap + - s_0270: 1 + - s_0300: -1 + - s_0775: 1 + - s_0794: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YFL058W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "AHMMPS" + - metanetx.reaction: "MNXR95632" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_1604" + - name: "4-aminobenzoate exchange" + - metabolites: !!omap + - s_0272: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_4abz_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1605" + - name: "4-aminobenzoate transport" + - metabolites: !!omap + - s_0271: -1 + - s_0272: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "4ABZt" + - metanetx.reaction: "MNXR94995" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1606" + - name: "4-aminobenzoate transport" + - metabolites: !!omap + - s_0271: -1 + - s_0273: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "4ABZtm" + - metanetx.reaction: "MNXR94995" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1607" + - name: "4-aminobutanal transport" + - metabolites: !!omap + - s_0274: -1 + - s_0275: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "4ABUTNtm" + - metanetx.reaction: "MNXR94992" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1608" + - name: "4-aminobutyrate transport" + - metabolites: !!omap + - s_0734: -1 + - s_0738: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "4ABUTtm" + - metanetx.reaction: "MNXR94993" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1609" + - name: "4-hydroxy-2-oxoglutarate transport" + - metabolites: !!omap + - s_0282: -1 + - s_0283: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "4H2OGLTtm" + - metanetx.reaction: "MNXR95001" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1610" + - name: "4-hydroxy-2-oxoglutarate transport" + - metabolites: !!omap + - s_0282: -1 + - s_0284: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "4H2OGLTtp" + - metanetx.reaction: "MNXR95001" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1611" + - name: "4-hydroxybenzoate transport" + - metabolites: !!omap + - s_0286: -1 + - s_0287: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "4HBZtm" + - metanetx.reaction: "MNXR95013" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1613" + - name: "5'-nucleotidase (AMP)" + - metabolites: !!omap + - s_0386: 1 + - s_0423: -1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NTD7" + - kegg.reaction: "R00183" + - metanetx.reaction: "MNXR102037" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1614" + - name: "5'-nucleotidase (dAMP)" + - metabolites: !!omap + - s_0132: 1 + - s_0584: -1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NTD6" + - kegg.reaction: "R02088" + - metanetx.reaction: "MNXR102036" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1615" + - name: "5'-nucleotidase (dCMP)" + - metabolites: !!omap + - s_0589: -1 + - s_0610: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NTD3" + - kegg.reaction: "R01664" + - metanetx.reaction: "MNXR102033" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1616" + - name: "5'-nucleotidase (dGMP)" + - metabolites: !!omap + - s_0134: 1 + - s_0615: -1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NTD8" + - kegg.reaction: "R01968" + - metanetx.reaction: "MNXR102038" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1617" + - name: "5'-nucleotidase (dTMP)" + - metabolites: !!omap + - s_0649: -1 + - s_0803: -1 + - s_1322: 1 + - s_1493: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NTD5" + - kegg.reaction: "R01569" + - metanetx.reaction: "MNXR102035" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1618" + - name: "5'-nucleotidase (dUMP)" + - metabolites: !!omap + - s_0138: 1 + - s_0654: -1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NTD1" + - kegg.reaction: "R02102" + - metanetx.reaction: "MNXR102028" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1620" + - name: "5'-nucleotidase (XMP)" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_1563: 1 + - s_1565: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NTD10" + - kegg.reaction: "R02719" + - metanetx.reaction: "MNXR102029" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1621" + - name: "5-aminolevulinate exchange" + - metabolites: !!omap + - s_0316: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_5aop_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1622" + - name: "5-aminolevulinate transport" + - metabolites: !!omap + - s_0315: -1 + - s_0317: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "5AOPtm" + - metanetx.reaction: "MNXR95062" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1623" + - name: "5-formethyltetrahydrofolate cyclo-ligase" + - metabolites: !!omap + - s_0305: 1 + - s_0321: -1 + - s_0397: 1 + - s_0437: -1 + - s_1326: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER183C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FTHFCLm" + - kegg.reaction: "R02301" + - metanetx.reaction: "MNXR99668" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_1624" + - name: "5-formyltetrahydrofolate:10-formyltetrahydrofolate isomerase" + - metabolites: !!omap + - s_0120: 1 + - s_0319: -1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER183C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FTHFI" + - metanetx.reaction: "MNXR99671" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_1625" + - name: "5-formyltetrahydrofolic acid exchange" + - metabolites: !!omap + - s_0320: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_5fthf_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1627" + - name: "7,8-diaminononanoate exchange" + - metabolites: !!omap + - s_0342: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_dann_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1628" + - name: "7,8-diaminononanoate transport" + - metabolites: !!omap + - s_0341: 1 + - s_0342: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1629" + - name: "8-amino-7-oxononanoate exchange" + - metabolites: !!omap + - s_0354: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_8aonn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1630" + - name: "9H-xanthine exchange" + - metabolites: !!omap + - s_0358: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_xan_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1631" + - name: "acetaldehyde exchange" + - metabolites: !!omap + - s_0360: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_acald_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1632" + - name: "acetaldehyde transport" + - metabolites: !!omap + - s_0359: 1 + - s_0361: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ACALDtm" + - metanetx.reaction: "MNXR95212" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1633" + - name: "acetaldehyde transport" + - metabolites: !!omap + - s_0359: 1 + - s_0360: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ACALDt" + - metanetx.reaction: "MNXR95212" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1634" + - name: "acetate exchange" + - metabolites: !!omap + - s_0364: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ac_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1635" + - name: "acetate transport" + - metabolites: !!omap + - s_0362: -1 + - s_0366: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR95431" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1637" + - name: "acetyl-CoA transport" + - metabolites: !!omap + - s_0373: -1 + - s_0377: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ACCOAtn" + - metanetx.reaction: "MNXR95223" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1638" + - name: "acetylcarnitine transport" + - metabolites: !!omap + - s_1235: 1 + - s_1237: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ACRNtp" + - metanetx.reaction: "MNXR95412" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1639" + - name: "adenine exchange" + - metabolites: !!omap + - s_0384: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ade_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1640" + - name: "adenine transport" + - metabolites: !!omap + - s_0383: -1 + - s_0385: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ADEtm" + - metanetx.reaction: "MNXR95445" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1641" + - name: "adenosine 3',5'-bismonophosphate exchange" + - metabolites: !!omap + - s_0391: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_pap_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1642" + - name: "adenosine 3',5'-bisphosphate transport" + - metabolites: !!omap + - s_0390: -1 + - s_0392: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR011C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PAPtm" + - metanetx.reaction: "MNXR102382" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1643" + - name: "adenosine exchange" + - metabolites: !!omap + - s_0387: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_adn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1644" + - name: "ADP transport" + - metabolites: !!omap + - s_0394: -1 + - s_0398: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR95484" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1645" + - name: "ADP transport" + - metabolites: !!omap + - s_0394: -1 + - s_0395: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR95484" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1647" + - name: "AKG transporter, peroxisome" + - metabolites: !!omap + - s_0180: -1 + - s_0184: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "AKGtp" + - metanetx.reaction: "MNXR95663" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1648" + - name: "allantoate exchange" + - metabolites: !!omap + - s_0406: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_alltt_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1649" + - name: "allantoin exchange" + - metabolites: !!omap + - s_0408: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_alltn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1650" + - name: "trehalose exchange" + - metabolites: !!omap + - s_1521: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_tre_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1651" + - name: "alpha-D-glucosamine 6-phosphate exchange" + - metabolites: !!omap + - s_0413: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_gam6p_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1652" + - name: "alpha-ketoglutarate/malate transporter" + - metabolites: !!omap + - s_0066: 1 + - s_0067: -1 + - s_0180: -1 + - s_0181: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "AKGMAL" + - metanetx.reaction: "MNXR95659" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1654" + - name: "ammonium exchange" + - metabolites: !!omap + - s_0420: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_nh4_e" + - metanetx.reaction: "MNXR101948" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1656" + - name: "AMP transport" + - metabolites: !!omap + - s_0423: 1 + - s_0425: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "AMPtn" + - metanetx.reaction: "MNXR95830" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1658" + - name: "asparagine transport" + - metabolites: !!omap + - s_0969: -1 + - s_0971: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR508C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ASNtm" + - metanetx.reaction: "MNXR96069" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1659" + - name: "aspartate-glutamate transporter" + - metabolites: !!omap + - s_0973: -1 + - s_0976: 1 + - s_0991: 1 + - s_0995: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ASPGLUtp" + - metanetx.reaction: "MNXR96083" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1660" + - name: "ATP diffusion" + - metabolites: !!omap + - s_0434: -1 + - s_0438: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ATPtn" + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1661" + - name: "ATP transport" + - metabolites: !!omap + - s_0434: -1 + - s_0435: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1663" + - name: "bicarbonate exchange" + - metabolites: !!omap + - s_0446: -1 + - lower_bound: 0 + - upper_bound: 0 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_hco3_e" + - metanetx.reaction: "MNXR100483" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1664" + - name: "bicarbonate formation" + - metabolites: !!omap + - s_0447: 1 + - s_0460: -1 + - s_0799: 1 + - s_0807: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HCO3Em" + - kegg.reaction: "R00132" + - metanetx.reaction: "MNXR100482" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1665" + - name: "bicarbonate formation" + - metabolites: !!omap + - s_0448: 1 + - s_0461: -1 + - s_0800: 1 + - s_0808: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HCO3En" + - kegg.reaction: "R00132" + - metanetx.reaction: "MNXR100482" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1667" + - name: "bicarbonate formation" + - metabolites: !!omap + - s_0445: 1 + - s_0456: -1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL036W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HCO3E" + - kegg.reaction: "R00132" + - metanetx.reaction: "MNXR100482" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_1668" + - name: "bicarbonate formation" + - metabolites: !!omap + - s_0446: 1 + - s_0458: -1 + - s_0796: 1 + - s_0805: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HCO3Ee" + - kegg.reaction: "R00132" + - metanetx.reaction: "MNXR100482" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1669" + - name: "bicarbonate transport" + - metabolites: !!omap + - s_0445: -1 + - s_0448: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HCO3tn" + - metanetx.reaction: "MNXR100484" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1671" + - name: "biotin exchange" + - metabolites: !!omap + - s_0452: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_btn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1672" + - name: "carbon dioxide exchange" + - metabolites: !!omap + - s_0458: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_co2_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1673" + - name: "carnitine transport" + - metabolites: !!omap + - s_0021: -1 + - s_0024: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CRNtp" + - metanetx.reaction: "MNXR96906" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1674" + - name: "carnitine-acetylcarnitine carrier" + - metabolites: !!omap + - s_0021: -1 + - s_0024: 1 + - s_1235: 1 + - s_1237: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CRNCARtp" + - metanetx.reaction: "MNXR96898" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1675" + - name: "CDP transport" + - metabolites: !!omap + - s_0467: -1 + - s_0468: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CDPtn" + - metanetx.reaction: "MNXR96562" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1676" + - name: "ceramide transport" + - metabolites: !!omap + - s_0475: 1 + - s_0476: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR137412" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1677" + - name: "ceramide transport" + - metabolites: !!omap + - s_0481: 1 + - s_0482: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR137414" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1678" + - name: "ceramide transport" + - metabolites: !!omap + - s_0499: 1 + - s_0500: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1679" + - name: "ceramide transport" + - metabolites: !!omap + - s_0478: 1 + - s_0479: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR137413" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1680" + - name: "ceramide transport" + - metabolites: !!omap + - s_0484: 1 + - s_0485: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR137415" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1681" + - name: "ceramide transport" + - metabolites: !!omap + - s_0502: 1 + - s_0503: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1682" + - name: "cholestenol delta-isomerase, lumped reaction" + - metabolites: !!omap + - s_0662: 1 + - s_0794: 1 + - s_0803: 2 + - s_1275: -1 + - s_1413: 1 + - s_1416: -1 + - s_1569: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CHLSTI" + - metanetx.reaction: "MNXR96688" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1683" + - name: "choline exchange" + - metabolites: !!omap + - s_0513: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_chol_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1684" + - name: "choline transport" + - metabolites: !!omap + - s_0511: -1 + - s_0512: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL077C or YOR161C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR96693" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1685" + - name: "chorismate pyruvate lyase" + - metabolites: !!omap + - s_0286: 1 + - s_0515: -1 + - s_1399: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CHRPL" + - kegg.reaction: "R01302" + - metanetx.reaction: "MNXR96711" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1686" + - name: "citrate transport" + - metabolites: !!omap + - s_0522: 1 + - s_0523: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR96756" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1687" + - name: "citrate exchange" + - metabolites: !!omap + - s_0523: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_cit_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1688" + - name: "citrate/isocitrate antiport" + - metabolites: !!omap + - s_0522: -1 + - s_0525: 1 + - s_0940: 1 + - s_0942: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CITtcp" + - metanetx.reaction: "MNXR96755" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1689" + - name: "citrate/malate antiport" + - metabolites: !!omap + - s_0066: -1 + - s_0069: 1 + - s_0522: 1 + - s_0525: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CITtap" + - metanetx.reaction: "MNXR96753" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1690" + - name: "CMP nucleosidase" + - metabolites: !!omap + - s_0526: -1 + - s_0545: 1 + - s_0803: -1 + - s_1408: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CMPN" + - metanetx.reaction: "MNXR96804" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1691" + - name: "CO2 transport" + - metabolites: !!omap + - s_0456: -1 + - s_0457: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CO2ter" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1694" + - name: "CO2 transport" + - metabolites: !!omap + - s_0456: 1 + - s_0461: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CO2tn" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1695" + - name: "CO2 transport" + - metabolites: !!omap + - s_0456: -1 + - s_0462: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CO2tp" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1696" + - name: "CO2 transport" + - metabolites: !!omap + - s_0456: -1 + - s_0460: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CO2tm" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1697" + - name: "CO2 transport" + - metabolites: !!omap + - s_0456: -1 + - s_0458: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CO2t" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1698" + - name: "coenzyme A transport" + - metabolites: !!omap + - s_0529: -1 + - s_0530: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "COAtr" + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1699" + - name: "coenzyme A transport" + - metabolites: !!omap + - s_0529: -1 + - s_0533: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "COAtn" + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1700" + - name: "coenzyme A transport" + - metabolites: !!omap + - s_0529: 1 + - s_0534: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "COAtp" + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1702" + - name: "cytidine exchange" + - metabolites: !!omap + - s_0544: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_cytd_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1703" + - name: "cytidylate kinase (CMP)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0467: 1 + - s_0526: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CYTK1" + - kegg.reaction: "R00512" + - metanetx.reaction: "MNXR97047" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1704" + - name: "cytidylate kinase (dCMP)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0587: 1 + - s_0589: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CYTK2" + - kegg.reaction: "R01665" + - metanetx.reaction: "MNXR97053" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1705" + - name: "cytosine exchange" + - metabolites: !!omap + - s_0546: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_csn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1706" + - name: "D-arabinose exchange" + - metabolites: !!omap + - s_0549: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_arab__D_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1707" + - name: "D-arabinose transport" + - metabolites: !!omap + - s_0548: 1 + - s_0549: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR342C or YHR092C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ARAB_Dt" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1708" + - name: "D-erythrose 4-phosphate transport" + - metabolites: !!omap + - s_0551: -1 + - s_0552: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "E4Ptm" + - metanetx.reaction: "MNXR97843" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1709" + - name: "D-fructose exchange" + - metabolites: !!omap + - s_0554: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_fru_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1710" + - name: "D-galactose exchange" + - metabolites: !!omap + - s_0559: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_gal_e" + - kegg.reaction: "R10619" + - metanetx.reaction: "MNXR113944" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1711" + - name: "D-galacturonate exchange" + - metabolites: !!omap + - s_0560: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_galur_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1712" + - name: "D-glucitol exchange" + - metabolites: !!omap + - s_0562: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_sbt__D_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1713" + - name: "D-glucosamine 6-phosphate uniport" + - metabolites: !!omap + - s_0412: 1 + - s_0413: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GAM6Pt" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1714" + - name: "D-glucose exchange" + - metabolites: !!omap + - s_0565: -1 + - lower_bound: -1 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_glc__D_e" + - metanetx.reaction: "MNXR138465" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1715" + - name: "D-mannose exchange" + - metabolites: !!omap + - s_0572: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_man_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1716" + - name: "D-ribose exchange" + - metabolites: !!omap + - s_0576: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_rib__D_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1717" + - name: "D-sorbitol transport" + - metabolites: !!omap + - s_0561: 1 + - s_0562: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL245C or YEL069C or YJR158W or YNR072W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SBT_Dt" + - metanetx.reaction: "MNXR104288" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1718" + - name: "D-xylose exchange" + - metabolites: !!omap + - s_0579: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_xyl__D_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1719" + - name: "D-xylose transport" + - metabolites: !!omap + - s_0578: 1 + - s_0579: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR092C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "XYLt" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1720" + - name: "dADP transport" + - metabolites: !!omap + - s_0582: -1 + - s_0583: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DADPtn" + - metanetx.reaction: "MNXR97082" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1721" + - name: "dCDP transport" + - metabolites: !!omap + - s_0587: -1 + - s_0588: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DCDPtn" + - metanetx.reaction: "MNXR97182" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1722" + - name: "ATP deamination" + - metabolites: !!omap + - s_0419: 1 + - s_0434: -1 + - s_0794: -1 + - s_0803: -1 + - s_0950: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ATPHs" + - kegg.reaction: "R00088" + - metanetx.reaction: "MNXR96130" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1723" + - name: "dATP deamination" + - metabolites: !!omap + - s_0419: 1 + - s_0586: -1 + - s_0639: 1 + - s_0794: -1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DATPHs" + - metanetx.reaction: "MNXR97174" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1724" + - name: "ADP deamination" + - metabolites: !!omap + - s_0394: -1 + - s_0419: 1 + - s_0794: -1 + - s_0803: -1 + - s_0846: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.reaction: "R00123" + - metanetx.reaction: "MNXR106399" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1725" + - name: "dADP deamination" + - metabolites: !!omap + - s_0419: 1 + - s_0582: -1 + - s_0618: 1 + - s_0794: -1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1726" + - name: "deamino-NAD+ diffusion" + - metabolites: !!omap + - s_0591: -1 + - s_0593: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DNADtn" + - metanetx.reaction: "MNXR97625" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1727" + - name: "decanoate exchange" + - metabolites: !!omap + - s_0597: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_dca_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1728" + - name: "deoxyadenosine transport" + - metabolites: !!omap + - s_0132: 1 + - s_0133: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DADNt4" + - metanetx.reaction: "MNXR97081" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1729" + - name: "deoxyadenylate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0582: 1 + - s_0584: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL166C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DADK" + - kegg.reaction: "R01547" + - metanetx.reaction: "MNXR96117" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_1730" + - name: "deoxycytidine exchange" + - metabolites: !!omap + - s_0611: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_dcyt_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1731" + - name: "deoxycytidine transport" + - metabolites: !!omap + - s_0610: 1 + - s_0611: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DCYTt" + - metanetx.reaction: "MNXR97208" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1732" + - name: "deoxyguanosine transport" + - metabolites: !!omap + - s_0134: 1 + - s_0135: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DGSNt" + - metanetx.reaction: "MNXR97324" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1733" + - name: "deoxyinosine transport" + - metabolites: !!omap + - s_0136: 1 + - s_0137: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DINt" + - metanetx.reaction: "MNXR97466" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1734" + - name: "deoxyuridine kinase (ATP:deoxyuridine)" + - metabolites: !!omap + - s_0138: -1 + - s_0394: 1 + - s_0434: -1 + - s_0654: 1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DURIK1" + - kegg.reaction: "R02099" + - metanetx.reaction: "MNXR97817" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1735" + - name: "deoxyuridine transport" + - metabolites: !!omap + - s_0138: 1 + - s_0139: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL042C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DURIt" + - metanetx.reaction: "MNXR97819" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1736" + - name: "dephospho-CoA kinase" + - metabolites: !!omap + - s_0197: -1 + - s_0394: 1 + - s_0434: -1 + - s_0529: 1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DPCOAK" + - kegg.reaction: "R00130" + - metanetx.reaction: "MNXR97762" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1737" + - name: "dGDP transport" + - metabolites: !!omap + - s_0613: -1 + - s_0614: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DGDPtn" + - metanetx.reaction: "MNXR97314" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1738" + - name: "dhnpt transport" + - metabolites: !!omap + - s_0343: -1 + - s_0344: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DHNPTtm" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1739" + - name: "diamine transaminase" + - metabolites: !!omap + - s_0373: -1 + - s_0529: 1 + - s_0794: 1 + - s_1181: 1 + - s_1442: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR071C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DIAT" + - metanetx.reaction: "MNXR97455" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_1743" + - name: "dihydrofolate transport" + - metabolites: !!omap + - s_0625: -1 + - s_0626: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DHFtm" + - metanetx.reaction: "MNXR97404" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1744" + - name: "dihydroneopterin triphosphate pyrophosphatase" + - metabolites: !!omap + - s_0345: 1 + - s_0346: -1 + - s_0633: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DNTPPA" + - kegg.reaction: "R04638" + - metanetx.reaction: "MNXR97680" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1745" + - name: "dihydropteroate transport" + - metabolites: !!omap + - s_0347: -1 + - s_0348: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DHPTtm" + - metanetx.reaction: "MNXR142733" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1746" + - name: "dihydroxyacetone phosphate transport" + - metabolites: !!omap + - s_0629: 1 + - s_0632: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "22672422" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DHAPtm" + - metanetx.reaction: "MNXR97366" + - pmid: "22672422" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1747" + - name: "diphosphate transport" + - metabolites: !!omap + - s_0633: -1 + - s_0638: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PPItx" + - metanetx.reaction: "MNXR103112" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1748" + - name: "dolichol phosphate transport" + - metabolites: !!omap + - s_0645: -1 + - s_0646: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DOLP_ter" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1749" + - name: "dTTP exchange" + - metabolites: !!omap + - s_0651: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_dttp_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1750" + - name: "dTTP uniport" + - metabolites: !!omap + - s_0650: 1 + - s_0651: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DTTPt" + - metanetx.reaction: "MNXR97810" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1751" + - name: "dUDP diffusion" + - metabolites: !!omap + - s_0652: -1 + - s_0653: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DUDPtn" + - metanetx.reaction: "MNXR97812" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1752" + - name: "dUMP transport" + - metabolites: !!omap + - s_0654: -1 + - s_0655: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DUMPtn" + - metanetx.reaction: "MNXR97813" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1753" + - name: "episterol exchange" + - metabolites: !!omap + - s_0659: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_epist_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1754" + - name: "ergosta-5,6,22,24,(28)-tetraen-3beta-ol transport" + - metabolites: !!omap + - s_0662: -1 + - s_0663: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ERGTETROLter" + - metanetx.reaction: "MNXR97951" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1757" + - name: "ergosterol exchange" + - metabolites: !!omap + - s_0668: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ergst_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1758" + - name: "ergosterol transport" + - metabolites: !!omap + - s_0666: 1 + - s_0667: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ERGSTter" + - metanetx.reaction: "MNXR97950" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1759" + - name: "ergosterol transport" + - metabolites: !!omap + - s_0666: -1 + - s_0669: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR97950" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1761" + - name: "ethanol exchange" + - metabolites: !!omap + - s_0681: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_etoh_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1762" + - name: "ethanol transport" + - metabolites: !!omap + - s_0680: -1 + - s_0681: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ETOHt" + - metanetx.reaction: "MNXR97980" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1763" + - name: "ethanol transport, mitochondrial" + - metabolites: !!omap + - s_0680: -1 + - s_0682: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ETOHtm" + - metanetx.reaction: "MNXR97980" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1764" + - name: "ethanolamine exchange" + - metabolites: !!omap + - s_0684: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_etha_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1765" + - name: "ethyl acetate exchange" + - metabolites: !!omap + - s_0686: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1766" + - name: "farnesyl diphosphate transport" + - metabolites: !!omap + - s_0190: -1 + - s_0191: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FRDPtm" + - metanetx.reaction: "MNXR99646" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1770" + - name: "fatty acid transport" + - metabolites: !!omap + - s_0595: -1 + - s_0600: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FA100tp" + - metanetx.reaction: "MNXR135772" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1771" + - name: "fatty acid transport" + - metabolites: !!omap + - s_1065: -1 + - s_1070: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FA120tp" + - metanetx.reaction: "MNXR135773" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1772" + - name: "fatty acid transport" + - metabolites: !!omap + - s_1161: -1 + - s_1166: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FA140tp" + - metanetx.reaction: "MNXR128297" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1774" + - name: "fatty acid transport" + - metabolites: !!omap + - s_1286: -1 + - s_1291: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FA160tp" + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1775" + - name: "fatty acid transport" + - metabolites: !!omap + - s_1293: -1 + - s_1298: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FA161tp" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1776" + - name: "fatty acid transport" + - metabolites: !!omap + - s_1248: -1 + - s_1253: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FA80tp" + - metanetx.reaction: "MNXR99126" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1777" + - name: "myristate (n-C14:0) transport" + - metabolites: !!omap + - s_1161: 1 + - s_1163: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "TTDCAtr" + - metanetx.reaction: "MNXR128297" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1788" + - name: "fecosterol exchange" + - metabolites: !!omap + - s_0702: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_fecost_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1790" + - name: "FMN adenylyltransferase" + - metabolites: !!omap + - s_0437: -1 + - s_0636: 1 + - s_0688: 1 + - s_0716: -1 + - s_0799: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL045C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FMNATm" + - kegg.reaction: "R00161" + - metanetx.reaction: "MNXR95501" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_1791" + - name: "FMN exchange" + - metabolites: !!omap + - s_0715: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_fmn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1792" + - name: "folic acid exchange" + - metabolites: !!omap + - s_0720: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_fol_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1793" + - name: "formate exchange" + - metabolites: !!omap + - s_0723: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_for_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1794" + - name: "formate transport" + - metabolites: !!omap + - s_0722: 1 + - s_0724: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FORtm" + - metanetx.reaction: "MNXR99620" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1795" + - name: "formate transport" + - metabolites: !!omap + - s_0722: 1 + - s_0723: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL065W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FORt" + - metanetx.reaction: "MNXR99620" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1796" + - name: "formate transport" + - metabolites: !!omap + - s_0725: 1 + - s_0726: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FUMtr" + - metanetx.reaction: "MNXR99715" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1797" + - name: "fructose-1-phosphate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0555: 1 + - s_0556: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "FRUK" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1798" + - name: "fumarate exchange" + - metabolites: !!omap + - s_0726: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_fum_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1800" + - name: "gamma-aminobutyrate exchange" + - metabolites: !!omap + - s_0736: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_4abut_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1801" + - name: "GDP transport" + - metabolites: !!omap + - s_0739: 1 + - s_0740: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GDPtg" + - metanetx.reaction: "MNXR100096" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1802" + - name: "GDP transport" + - metabolites: !!omap + - s_0739: -1 + - s_0742: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GDPtn" + - metanetx.reaction: "MNXR100096" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1803" + - name: "GDP-alpha-D-mannose transport" + - metabolites: !!omap + - s_0743: -1 + - s_0744: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL225W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR131177" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1805" + - name: "glucose transport, vacuolar" + - metabolites: !!omap + - s_0563: -1 + - s_0566: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR241C or YGL104C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLCtv" + - metanetx.reaction: "MNXR100188" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1806" + - name: "glutathione disulfide exchange" + - metabolites: !!omap + - s_0755: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_gthox_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1807" + - name: "glutathione exchange" + - metabolites: !!omap + - s_0751: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_gthrd_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1808" + - name: "glycerol exchange" + - metabolites: !!omap + - s_0766: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_glyc_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1809" + - name: "glycerol-3-phosphate shuttle" + - metabolites: !!omap + - s_0767: -1 + - s_0770: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "22672422" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLYC3Ptm" + - metanetx.reaction: "MNXR100308" + - pmid: "22672422" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1810" + - name: "L-glycine exchange" + - metabolites: !!omap + - s_1004: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_gly_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1811" + - name: "glycine transport" + - metabolites: !!omap + - s_1003: -1 + - s_1005: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR058W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLYtm" + - metanetx.reaction: "MNXR100371" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1812" + - name: "glycoaldehyde transport" + - metabolites: !!omap + - s_0775: -1 + - s_0777: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GCALDtm" + - metanetx.reaction: "MNXR100061" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1813" + - name: "glycoaldehyde transport" + - metabolites: !!omap + - s_0775: 1 + - s_0776: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GCALDt" + - metanetx.reaction: "MNXR100061" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1814" + - name: "glycolaldehyde exchange" + - metabolites: !!omap + - s_0776: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_gcald_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1815" + - name: "glyoxylate exchange" + - metabolites: !!omap + - s_0780: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_glx_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1816" + - name: "glyoxylate transport" + - metabolites: !!omap + - s_0779: -1 + - s_0780: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL065W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLXt" + - metanetx.reaction: "MNXR100306" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1817" + - name: "glyoxylate transport" + - metabolites: !!omap + - s_0779: -1 + - s_0781: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GLXtp" + - metanetx.reaction: "MNXR100306" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1818" + - name: "guanine exchange" + - metabolites: !!omap + - s_0788: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_gua_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1819" + - name: "guanine transport" + - metabolites: !!omap + - s_0787: -1 + - s_0789: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GUAtm" + - metanetx.reaction: "MNXR100465" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1820" + - name: "guanosine exchange" + - metabolites: !!omap + - s_0791: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_gsn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1821" + - name: "guanosine kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0782: 1 + - s_0790: -1 + - s_0794: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GSNK" + - kegg.reaction: "R01228" + - metanetx.reaction: "MNXR100432" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1822" + - name: "guanosine transport" + - metabolites: !!omap + - s_0790: -1 + - s_0792: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GSNtm" + - metanetx.reaction: "MNXR100433" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1823" + - name: "guanosine transport" + - metabolites: !!omap + - s_0790: 1 + - s_0791: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GSNt" + - metanetx.reaction: "MNXR100433" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1824" + - name: "H+ diffusion" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "Ht" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1825" + - name: "H+ diffusion" + - metabolites: !!omap + - s_0794: -1 + - s_0795: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "Htr" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1826" + - name: "H+ diffusion" + - metabolites: !!omap + - s_0794: -1 + - s_0797: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "Htg" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1827" + - name: "H+ diffusion" + - metabolites: !!omap + - s_0794: -1 + - s_0798: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1829" + - name: "H+ diffusion" + - metabolites: !!omap + - s_0794: -1 + - s_0800: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HMR_1095" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1830" + - name: "H+ diffusion" + - metabolites: !!omap + - s_0794: -1 + - s_0801: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "Htx" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1831" + - name: "H+ diffusion" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1832" + - name: "H+ exchange" + - metabolites: !!omap + - s_0796: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_h_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1833" + - name: "hexacosanoyl-CoA transport" + - metabolites: !!omap + - s_0816: -1 + - s_0817: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR124347" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1834" + - name: "hexadecanal exchange" + - metabolites: !!omap + - s_0826: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1835" + - name: "hexadecanoate (n-C16:0) transport" + - metabolites: !!omap + - s_1286: 1 + - s_1288: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HDCAt" + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1836" + - name: "hexadecenoate (n-C16:1) transport" + - metabolites: !!omap + - s_1293: 1 + - s_1295: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HDCEAt" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1837" + - name: "L-histidine transport, mitochondrial" + - metabolites: !!omap + - s_1006: -1 + - s_1008: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR147W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR100649" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1839" + - name: "hydrogen peroxide transport" + - metabolites: !!omap + - s_0837: -1 + - s_0839: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "H2O2tn" + - metanetx.reaction: "MNXR98640" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1840" + - name: "hydroxymethylglutaryl-CoA transport" + - metabolites: !!omap + - s_0218: -1 + - s_0221: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HMGCOAtm" + - metanetx.reaction: "MNXR100661" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1841" + - name: "hypoxanthine exchange" + - metabolites: !!omap + - s_0844: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_hxan_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1842" + - name: "hypoxanthine transport" + - metabolites: !!omap + - s_0843: 1 + - s_0844: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HYXNt" + - metanetx.reaction: "MNXR100749" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1843" + - name: "indol-3-ylacetaldehyde exchange" + - metabolites: !!omap + - s_0851: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_id3acald_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1844" + - name: "indole-3-acetaldehyde transport" + - metabolites: !!omap + - s_0850: -1 + - s_0852: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ID3ACALDtm" + - metanetx.reaction: "MNXR100791" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1845" + - name: "indole-3-acetaldehyde transport" + - metabolites: !!omap + - s_0850: -1 + - s_0851: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ID3ACALDt" + - metanetx.reaction: "MNXR100791" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1846" + - name: "indole-3-acetate transport" + - metabolites: !!omap + - s_0853: -1 + - s_0854: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "IND3ACtm" + - metanetx.reaction: "MNXR100833" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1847" + - name: "inosine exchange" + - metabolites: !!omap + - s_0857: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ins_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1848" + - name: "inosine transport" + - metabolites: !!omap + - s_0856: 1 + - s_0857: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "INSt" + - metanetx.reaction: "MNXR100849" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1849" + - name: "inositol hexakisphosphate transport" + - metabolites: !!omap + - s_1158: -1 + - s_1159: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "MINOHPtn" + - metanetx.reaction: "MNXR101585" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1850" + - name: "insosine kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0849: 1 + - s_0856: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "INSK" + - kegg.reaction: "R01131" + - metanetx.reaction: "MNXR100845" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1851" + - name: "IPC transport" + - metabolites: !!omap + - s_0894: 1 + - s_0895: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1852" + - name: "IPC transport" + - metabolites: !!omap + - s_0900: 1 + - s_0901: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1853" + - name: "IPC transport" + - metabolites: !!omap + - s_0906: 1 + - s_0907: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1854" + - name: "IPC transport" + - metabolites: !!omap + - s_0912: 1 + - s_0913: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1855" + - name: "IPC transport" + - metabolites: !!omap + - s_0918: 1 + - s_0919: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1856" + - name: "IPC transport" + - metabolites: !!omap + - s_0897: 1 + - s_0898: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1857" + - name: "IPC transport" + - metabolites: !!omap + - s_0903: 1 + - s_0904: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1858" + - name: "IPC transport" + - metabolites: !!omap + - s_0909: 1 + - s_0910: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1859" + - name: "IPC transport" + - metabolites: !!omap + - s_0915: 1 + - s_0916: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1860" + - name: "IPC transport" + - metabolites: !!omap + - s_0921: 1 + - s_0922: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1861" + - name: "iron(2+) exchange" + - metabolites: !!omap + - s_0925: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_fe2_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1862" + - name: "isoamyl acetate exchange" + - metabolites: !!omap + - s_0928: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_iamac_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1863" + - name: "isoamyl alcohol transport" + - metabolites: !!omap + - s_0929: -1 + - s_0930: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "IAMOHt" + - metanetx.reaction: "MNXR100775" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1864" + - name: "isoamyl alcohol transport" + - metabolites: !!omap + - s_0929: -1 + - s_0931: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "IAMOHtm" + - metanetx.reaction: "MNXR100775" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1865" + - name: "isoamylol exchange" + - metabolites: !!omap + - s_0930: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_iamoh_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1866" + - name: "isobutanol exchange" + - metabolites: !!omap + - s_0933: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ibutoh_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1867" + - name: "isobutyl acetate exchange" + - metabolites: !!omap + - s_0936: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ibutac_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1868" + - name: "isobutyl alcohol transport" + - metabolites: !!omap + - s_0932: -1 + - s_0933: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "IBUTOHt" + - metanetx.reaction: "MNXR100780" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1869" + - name: "isobutyl alcohol transport" + - metabolites: !!omap + - s_0932: -1 + - s_0934: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "IBUTOHtm" + - metanetx.reaction: "MNXR100780" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1870" + - name: "isobutyraldehyde exchange" + - metabolites: !!omap + - s_0938: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_2mppal_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1871" + - name: "L-1-pyrroline-3-hydroxy-5-carboxylate spontaneous conversion to L-4-hydroxyglutamate semialdehyde" + - metabolites: !!omap + - s_0117: -1 + - s_0799: -1 + - s_0807: -1 + - s_0954: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PHCHGSm" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1872" + - name: "L-2-amino-3-oxobutanoate decarboxylation (spontaneous)" + - metabolites: !!omap + - s_0418: 1 + - s_0456: 1 + - s_0794: -1 + - s_0952: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "AOBUTDs" + - kegg.reaction: "R03758" + - metanetx.reaction: "MNXR95851" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1873" + - name: "L-alanine exchange" + - metabolites: !!omap + - s_0956: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ala__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1874" + - name: "L-alanine transport" + - metabolites: !!omap + - s_0955: 1 + - s_0957: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ALAtmi" + - metanetx.reaction: "MNXR95706" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1875" + - name: "L-arabinitol exchange" + - metabolites: !!omap + - s_0962: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_abt_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1876" + - name: "L-arabinitol transport" + - metabolites: !!omap + - s_0961: 1 + - s_0962: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ABTt" + - metanetx.reaction: "MNXR95190" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1877" + - name: "L-arabinoase transport" + - metabolites: !!omap + - s_0963: 1 + - s_0964: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR342C or YHR092C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ARAB_Lt" + - metanetx.reaction: "MNXR135734" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1878" + - name: "L-arabinose exchange" + - metabolites: !!omap + - s_0964: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_arab__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1879" + - name: "L-arginine exchange" + - metabolites: !!omap + - s_0966: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_arg__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1880" + - name: "L-asparagine exchange" + - metabolites: !!omap + - s_0970: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_asn__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1881" + - name: "L-aspartate exchange" + - metabolites: !!omap + - s_0974: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_asp__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1882" + - name: "L-carnitine transport" + - metabolites: !!omap + - s_0021: 1 + - s_0023: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR100C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "CRNtim" + - metanetx.reaction: "MNXR96906" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1883" + - name: "L-cysteine exchange" + - metabolites: !!omap + - s_0982: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_cys__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1884" + - name: "L-erythro-4-hydroxyglutamate transport" + - metabolites: !!omap + - s_0677: -1 + - s_0678: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "E4HGLUtm" + - metanetx.reaction: "MNXR97841" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1885" + - name: "L-erythro-4-hydroxyglutamate transport" + - metabolites: !!omap + - s_0677: -1 + - s_0679: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "E4HGLUtp" + - metanetx.reaction: "MNXR97841" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1886" + - name: "L-glucitol exchange" + - metabolites: !!omap + - s_0990: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_sbt__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1887" + - name: "L-glutamate 5-semialdehyde dehydratase" + - metabolites: !!omap + - s_0118: 1 + - s_0794: 1 + - s_0803: 1 + - s_0997: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "G5SADs" + - kegg.reaction: "R03314" + - metanetx.reaction: "MNXR99897" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1889" + - name: "L-glutamate exchange" + - metabolites: !!omap + - s_0992: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_glu__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1890" + - name: "L-glutamate transport" + - metabolites: !!omap + - s_0991: -1 + - s_0994: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR100301" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1891" + - name: "L-glutamine exchange" + - metabolites: !!omap + - s_1000: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_gln__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1892" + - name: "L-glutamine transport" + - metabolites: !!omap + - s_0999: -1 + - s_1001: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR100259" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1893" + - name: "L-histidine exchange" + - metabolites: !!omap + - s_1007: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_his__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1895" + - name: "L-homoserine transport" + - metabolites: !!omap + - s_1014: 1 + - s_1015: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "r2535" + - metanetx.reaction: "MNXR100678" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1896" + - name: "L-homoserine exchange" + - metabolites: !!omap + - s_1015: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_hom__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1897" + - name: "L-isoleucine exchange" + - metabolites: !!omap + - s_1017: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ile__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1898" + - name: "L-isoleucine transport" + - metabolites: !!omap + - s_1016: 1 + - s_1018: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ILEtmi" + - metanetx.reaction: "MNXR100824" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1899" + - name: "L-leucine exchange" + - metabolites: !!omap + - s_1022: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_leu__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1900" + - name: "L-lysine exchange" + - metabolites: !!omap + - s_1026: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_lys__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1901" + - name: "L-malate transport" + - metabolites: !!omap + - s_0066: 1 + - s_0067: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "MALt" + - metanetx.reaction: "MNXR101367" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1902" + - name: "L-methionine exchange" + - metabolites: !!omap + - s_1030: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_met__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1903" + - name: "L-phenylalanine exchange" + - metabolites: !!omap + - s_1033: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_phe__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1904" + - name: "L-proline exchange" + - metabolites: !!omap + - s_1036: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_pro__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1905" + - name: "L-proline transport" + - metabolites: !!omap + - s_1035: -1 + - s_1037: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PROtm" + - metanetx.reaction: "MNXR103213" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1906" + - name: "L-serine exchange" + - metabolites: !!omap + - s_1041: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ser__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1907" + - name: "L-serine transport" + - metabolites: !!omap + - s_1039: -1 + - s_1040: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKR039W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR104354" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1908" + - name: "L-sorbitol transport" + - metabolites: !!omap + - s_0989: 1 + - s_0990: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL245C or YEL069C or YJR158W or YNR072W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SBT_Lt" + - metanetx.reaction: "MNXR104289" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1909" + - name: "L-sorbose exchange" + - metabolites: !!omap + - s_1044: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_srb__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1910" + - name: "L-sorbose transport" + - metabolites: !!omap + - s_1043: 1 + - s_1044: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SRB_Lt" + - metanetx.reaction: "MNXR104533" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1911" + - name: "L-threonine exchange" + - metabolites: !!omap + - s_1046: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_thr__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1912" + - name: "L-tryptophan exchange" + - metabolites: !!omap + - s_1049: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_trp__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1913" + - name: "L-tyrosine exchange" + - metabolites: !!omap + - s_1052: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_tyr__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1914" + - name: "L-valine exchange" + - metabolites: !!omap + - s_1057: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_val__L_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1915" + - name: "lanosterol exchange" + - metabolites: !!omap + - s_1061: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_lanost_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1916" + - name: "laurate exchange" + - metabolites: !!omap + - s_1067: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ddca_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1919" + - name: "lysine transport" + - metabolites: !!omap + - s_1025: -1 + - s_1027: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR147W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR101269" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1920" + - name: "M(IP)2C transport" + - metabolites: !!omap + - s_0861: 1 + - s_0862: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1921" + - name: "M(IP)2C transport" + - metabolites: !!omap + - s_0867: 1 + - s_0868: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1922" + - name: "M(IP)2C transport" + - metabolites: !!omap + - s_0873: 1 + - s_0874: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1923" + - name: "M(IP)2C transport" + - metabolites: !!omap + - s_0879: 1 + - s_0880: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1924" + - name: "M(IP)2C transport" + - metabolites: !!omap + - s_0885: 1 + - s_0886: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1925" + - name: "M(IP)2C transport" + - metabolites: !!omap + - s_0864: 1 + - s_0865: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1926" + - name: "M(IP)2C transport" + - metabolites: !!omap + - s_0870: 1 + - s_0871: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1927" + - name: "M(IP)2C transport" + - metabolites: !!omap + - s_0876: 1 + - s_0877: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1928" + - name: "M(IP)2C transport" + - metabolites: !!omap + - s_0882: 1 + - s_0883: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1929" + - name: "M(IP)2C transport" + - metabolites: !!omap + - s_0888: 1 + - s_0889: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1930" + - name: "malate/oxaloacetate shuttle" + - metabolites: !!omap + - s_0066: 1 + - s_0069: -1 + - s_1271: -1 + - s_1274: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "MALOAAtp" + - metanetx.reaction: "MNXR101346" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1931" + - name: "maltose exchange" + - metabolites: !!omap + - s_1106: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_malt_e" + - metanetx.reaction: "MNXR123950" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1932" + - name: "mannan transport" + - metabolites: !!omap + - s_1107: -1 + - s_1108: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "MANNANter" + - metanetx.reaction: "MNXR101396" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1935" + - name: "methionine transport" + - metabolites: !!omap + - s_1029: 1 + - s_1031: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR508C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "METtm" + - metanetx.reaction: "MNXR101493" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1936" + - name: "methylglyoxal synthase" + - metabolites: !!omap + - s_0629: -1 + - s_1151: 1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "MGSA" + - kegg.reaction: "R01016" + - metanetx.reaction: "MNXR101551" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1937" + - name: "MIPC transport" + - metabolites: !!omap + - s_1116: 1 + - s_1117: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1938" + - name: "MIPC transport" + - metabolites: !!omap + - s_1122: 1 + - s_1123: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1939" + - name: "MIPC transport" + - metabolites: !!omap + - s_1128: 1 + - s_1129: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1940" + - name: "MIPC transport" + - metabolites: !!omap + - s_1134: 1 + - s_1135: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1941" + - name: "MIPC transport" + - metabolites: !!omap + - s_1140: 1 + - s_1141: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1942" + - name: "MIPC transport" + - metabolites: !!omap + - s_1119: 1 + - s_1120: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1943" + - name: "MIPC transport" + - metabolites: !!omap + - s_1125: 1 + - s_1126: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1944" + - name: "MIPC transport" + - metabolites: !!omap + - s_1131: 1 + - s_1132: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1945" + - name: "MIPC transport" + - metabolites: !!omap + - s_1137: 1 + - s_1138: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1946" + - name: "MIPC transport" + - metabolites: !!omap + - s_1143: 1 + - s_1144: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1947" + - name: "myo-inositol exchange" + - metabolites: !!omap + - s_1154: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_inost_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1952" + - name: "N,N'-diformyldityrosine exchange" + - metabolites: !!omap + - s_1186: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1963" + - name: "NADP(+) transport" + - metabolites: !!omap + - s_1207: -1 + - s_1208: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NADPtru" + - metanetx.reaction: "MNXR101896" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1964" + - name: "NADPH transport" + - metabolites: !!omap + - s_1212: -1 + - s_1213: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NADPHtru" + - metanetx.reaction: "MNXR101894" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1965" + - name: "NH3 transport" + - metabolites: !!omap + - s_0419: -1 + - s_0421: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NH4tm" + - metanetx.reaction: "MNXR101950" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1966" + - name: "nicotinamide diffusion" + - metabolites: !!omap + - s_1216: -1 + - s_1217: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR101918" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1967" + - name: "nicotinate exchange" + - metabolites: !!omap + - s_1220: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_nac_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1968" + - name: "NMN exchange" + - metabolites: !!omap + - s_1225: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_nmn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1970" + - name: "NMN transport" + - metabolites: !!omap + - s_1224: -1 + - s_1227: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NMNtn" + - metanetx.reaction: "MNXR101972" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1971" + - name: "NMN transport" + - metabolites: !!omap + - s_1224: -1 + - s_1228: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR101972" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1972" + - name: "NMN transport" + - metabolites: !!omap + - s_1224: 1 + - s_1225: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NMNP" + - metanetx.reaction: "MNXR101972" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1974" + - name: "nucleoside-diphosphatase (dGDP)" + - metabolites: !!omap + - s_0613: -1 + - s_0615: 1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NDP4" + - metanetx.reaction: "MNXR101929" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1975" + - name: "nucleoside-triphosphatase (dGTP)" + - metabolites: !!omap + - s_0613: 1 + - s_0617: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "NTP4" + - metanetx.reaction: "MNXR102044" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1976" + - name: "O-acetylcarnintine transport into mitochondria" + - metabolites: !!omap + - s_1235: -1 + - s_1236: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR100C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "ACRNtm" + - metanetx.reaction: "MNXR95412" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1977" + - name: "O2 transport" + - metabolites: !!omap + - s_1275: -1 + - s_1276: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "O2ter" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1978" + - name: "O2 transport" + - metabolites: !!omap + - s_1275: -1 + - s_1278: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "O2tm" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1979" + - name: "O2 transport" + - metabolites: !!omap + - s_1275: 1 + - s_1277: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "O2t" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1980" + - name: "O2 transport" + - metabolites: !!omap + - s_1275: -1 + - s_1279: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "O2tp" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1981" + - name: "octadecanoate (n-C18:0) transport" + - metabolites: !!omap + - s_1449: 1 + - s_1450: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "OCDCAt" + - metanetx.reaction: "MNXR99109" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1984" + - name: "octanoate exchange" + - metabolites: !!omap + - s_1250: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_octa_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1987" + - name: "ornithine exchange" + - metabolites: !!omap + - s_1267: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_orn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1988" + - name: "oxaloacetate transport" + - metabolites: !!omap + - s_1271: -1 + - s_1272: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "OAAt" + - metanetx.reaction: "MNXR102100" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1989" + - name: "oxaloacetate(2-) exchange" + - metabolites: !!omap + - s_1272: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_oaa_e" + - kegg.reaction: "R00363" + - metanetx.reaction: "MNXR125856" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1990" + - name: "oxidized glutathione uniport" + - metabolites: !!omap + - s_0754: 1 + - s_0755: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL212C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "GTHOXti" + - metanetx.reaction: "MNXR100443" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_1991" + - name: "oxidized thioredoxin transport" + - metabolites: !!omap + - s_1620: -1 + - s_1623: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "TRDOXtp" + - metanetx.reaction: "MNXR104921" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1992" + - name: "oxygen exchange" + - metabolites: !!omap + - s_1277: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_o2_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1993" + - name: "palmitate exchange" + - metabolites: !!omap + - s_1288: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_hdca_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1994" + - name: "palmitoleate exchange" + - metabolites: !!omap + - s_1295: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_hdcea_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_1995" + - name: "palmitoyl-CoA transport" + - metabolites: !!omap + - s_1302: -1 + - s_1303: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PMTCOAFABP1tc" + - metanetx.reaction: "MNXR103046" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1996" + - name: "panthetheine 4'-phosphate transport" + - metabolites: !!omap + - s_1307: -1 + - s_1308: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PAN4Ptm" + - metanetx.reaction: "MNXR102344" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1997" + - name: "panthetheine-phosphate adenylyltransferase" + - metabolites: !!omap + - s_0200: 1 + - s_0437: -1 + - s_0636: 1 + - s_0799: -1 + - s_1308: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PTPATim" + - kegg.reaction: "R03035" + - metanetx.reaction: "MNXR95892" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_1998" + - name: "PAP uniport" + - metabolites: !!omap + - s_0390: 1 + - s_0391: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PAPt" + - metanetx.reaction: "MNXR102382" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_1999" + - name: "pectin exchange" + - metabolites: !!omap + - s_1309: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_pectin_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2000" + - name: "phenethyl acetate exchange" + - metabolites: !!omap + - s_1317: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_pheac_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2001" + - name: "phenylacetaldehyde exchange" + - metabolites: !!omap + - s_1319: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_pacald_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2002" + - name: "phenylacetaldehyde transport" + - metabolites: !!omap + - s_1318: -1 + - s_1319: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PACALDt" + - metanetx.reaction: "MNXR102312" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2003" + - name: "phenylacetaldehyde transport" + - metabolites: !!omap + - s_1318: -1 + - s_1320: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PACALDtm" + - metanetx.reaction: "MNXR102312" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2004" + - name: "phenylalanine transport" + - metabolites: !!omap + - s_1032: -1 + - s_1034: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR102637" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2005" + - name: "phosphate exchange" + - metabolites: !!omap + - s_1324: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_pi_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2008" + - name: "phosphate transport" + - metabolites: !!omap + - s_1322: -1 + - s_1329: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR013C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_2020" + - name: "potassium exchange" + - metabolites: !!omap + - s_1374: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_k_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2022" + - name: "protoporphyrinogen IX transport" + - metabolites: !!omap + - s_1384: -1 + - s_1385: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PPPG9tm" + - metanetx.reaction: "MNXR103127" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2023" + - name: "PRPP transport" + - metabolites: !!omap + - s_1386: -1 + - s_1387: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PRPPtm" + - metanetx.reaction: "MNXR103216" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2024" + - name: "putrescine exchange" + - metabolites: !!omap + - s_1390: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ptrc_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2025" + - name: "pyridoxal kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_1392: -1 + - s_1393: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YNR027W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PYDXK" + - kegg.reaction: "R00174" + - metanetx.reaction: "MNXR103361" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_2026" + - name: "pyridoxamine kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_1394: -1 + - s_1395: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PYDAMK" + - kegg.reaction: "R02493" + - metanetx.reaction: "MNXR103357" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2027" + - name: "pyridoxamine phosphatase" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_1394: 1 + - s_1395: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HYPOE" + - kegg.reaction: "R02494" + - metanetx.reaction: "MNXR100763" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2028" + - name: "pyridoxine exchange" + - metabolites: !!omap + - s_1397: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_pydxn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2030" + - name: "pyrimidine phosphatase" + - metabolites: !!omap + - s_0313: -1 + - s_0314: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PMDPHT" + - kegg.reaction: "R07280" + - metanetx.reaction: "MNXR96145" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2031" + - name: "pyrimidine-nucleoside phosphorylase (uracil)" + - metabolites: !!omap + - s_0415: 1 + - s_1322: -1 + - s_1550: 1 + - s_1556: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PYNP2r" + - kegg.reaction: "R01876" + - metanetx.reaction: "MNXR103377" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2032" + - name: "pyrophosphate transport" + - metabolites: !!omap + - s_0633: -1 + - s_0636: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "PPItm" + - metanetx.reaction: "MNXR103112" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2033" + - name: "pyruvate exchange" + - metabolites: !!omap + - s_1400: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_pyr_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2036" + - name: "quinolinate transport" + - metabolites: !!omap + - s_1403: -1 + - s_1404: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "QULNtm" + - metanetx.reaction: "MNXR103401" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2037" + - name: "reduced thioredoxin transport" + - metabolites: !!omap + - s_1616: -1 + - s_1619: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "TRDRDtp" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2038" + - name: "riboflavin exchange" + - metabolites: !!omap + - s_1406: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ribflv_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2039" + - name: "riboflavin transport" + - metabolites: !!omap + - s_1405: -1 + - s_1407: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "RIBFLVtm" + - metanetx.reaction: "MNXR104033" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2040" + - name: "riboflavin transport" + - metabolites: !!omap + - s_1405: 1 + - s_1406: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR306C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "r1106" + - metanetx.reaction: "MNXR104033" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_2041" + - name: "ribose transporter" + - metabolites: !!omap + - s_0575: 1 + - s_0576: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR342C or YHR092C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "RIBt" + - metanetx.reaction: "MNXR104036" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_2042" + - name: "S-adenosyl-L-homocysteine transport" + - metabolites: !!omap + - s_1413: -1 + - s_1415: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "AHCYStm" + - metanetx.reaction: "MNXR95626" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2043" + - name: "S-adenosyl-L-methionine exchange" + - metabolites: !!omap + - s_1418: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_amet_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2044" + - name: "S-methyl-L-methionine exchange" + - metabolites: !!omap + - s_1425: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_mmet_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2045" + - name: "serine transport" + - metabolites: !!omap + - s_1039: -1 + - s_1042: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR508C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "r1435" + - metanetx.reaction: "MNXR104354" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_2046" + - name: "sn-glycero-3-phosphocholine exchange" + - metabolites: !!omap + - s_1435: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_g3pc_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2049" + - name: "sodium exchange" + - metabolites: !!omap + - s_1438: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_na1_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2050" + - name: "spermidine acetyltransferase" + - metabolites: !!omap + - s_0373: -1 + - s_0529: 1 + - s_0794: 1 + - s_1180: 1 + - s_1439: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SPMDAT1" + - metanetx.reaction: "MNXR104491" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2051" + - name: "spermidine exchange" + - metabolites: !!omap + - s_1440: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_spmd_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2052" + - name: "spermine exchange" + - metabolites: !!omap + - s_1443: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_sprm_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2053" + - name: "squalene transport" + - metabolites: !!omap + - s_1447: -1 + - s_1448: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SQLter" + - metanetx.reaction: "MNXR104530" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2054" + - name: "squalene-2,3-epoxide transport" + - metabolites: !!omap + - s_0037: 1 + - s_0038: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SQ23EPXter" + - metanetx.reaction: "MNXR104505" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2055" + - name: "stearate exchange" + - metabolites: !!omap + - s_1450: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ocdca_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2056" + - name: "succinate exchange" + - metabolites: !!omap + - s_1459: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_succ_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2057" + - name: "succinate transport" + - metabolites: !!omap + - s_1458: 1 + - s_1459: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "SUCCt" + - metanetx.reaction: "MNXR104619" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2058" + - name: "sucrose exchange" + - metabolites: !!omap + - s_1466: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_sucr_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2060" + - name: "sulphate exchange" + - metabolites: !!omap + - s_1468: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_so4_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2061" + - name: "sulphite exchange" + - metabolites: !!omap + - s_1470: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_so3_e" + - metanetx.reaction: "MNXR122251" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2062" + - name: "taurine exchange" + - metabolites: !!omap + - s_1472: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_taur_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2063" + - name: "tetracosanoyl-CoA transport" + - metabolites: !!omap + - s_1479: -1 + - s_1480: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR137463" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2064" + - name: "thiamin phosphatase" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_1489: 1 + - s_1497: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDL024C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "THMP" + - kegg.reaction: "R02135" + - metanetx.reaction: "MNXR104823" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_2065" + - name: "thiaminase" + - metabolites: !!omap + - s_0270: 1 + - s_0310: 1 + - s_0794: 1 + - s_0803: -1 + - s_1489: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "TMN" + - kegg.reaction: "R02133" + - metanetx.reaction: "MNXR104901" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2066" + - name: "thiamine(1+) diphosphate(1-) exchange" + - metabolites: !!omap + - s_1476: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_thmpp_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2067" + - name: "thiamine(1+) exchange" + - metabolites: !!omap + - s_1490: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_thm_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2068" + - name: "thiamine(1+) monophosphate exchange" + - metabolites: !!omap + - s_1498: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_thmmp_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2069" + - name: "thiamine-phosphate kinase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_1475: 1 + - s_1497: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "TMPK" + - kegg.reaction: "R00617" + - metanetx.reaction: "MNXR104907" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2070" + - name: "thiazole phosphate synthesis (ribose 5-phosphate)" + - metabolites: !!omap + - s_0293: 1 + - s_0362: 1 + - s_0419: 1 + - s_0456: 1 + - s_0734: 1 + - s_0794: -1 + - s_0803: 3 + - s_0981: -1 + - s_1003: -1 + - s_1233: -1 + - s_1399: 1 + - s_1408: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "THZPSN2_SC" + - metanetx.reaction: "MNXR104860" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2071" + - name: "thiazole phosphate synthesis (xylulose 5-phosphate)" + - metabolites: !!omap + - s_0293: 1 + - s_0362: 1 + - s_0419: 1 + - s_0456: 1 + - s_0581: -1 + - s_0734: 1 + - s_0794: -1 + - s_0803: 3 + - s_0981: -1 + - s_1003: -1 + - s_1233: -1 + - s_1399: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "THZPSN1_SC" + - metanetx.reaction: "MNXR104859" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2072" + - name: "threonine transport" + - metabolites: !!omap + - s_1045: -1 + - s_1047: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR508C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "thr_mt" + - metanetx.reaction: "MNXR104852" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_2073" + - name: "thymidine exchange" + - metabolites: !!omap + - s_1494: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_thymd_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2074" + - name: "thymidine kinase (ATP:thymidine)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0649: 1 + - s_0794: 1 + - s_1493: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "TMDK1" + - kegg.reaction: "R01567" + - metanetx.reaction: "MNXR104885" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2075" + - name: "thymidine transport" + - metabolites: !!omap + - s_1493: 1 + - s_1494: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "THYMDt1" + - metanetx.reaction: "MNXR104821" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2080" + - name: "trehalose vacuolar transport" + - metabolites: !!omap + - s_1520: -1 + - s_1522: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR104933" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2082" + - name: "tryptophan transport" + - metabolites: !!omap + - s_1048: -1 + - s_1050: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR104949" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2083" + - name: "tryptophol exchange" + - metabolites: !!omap + - s_1530: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ind3eth_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2084" + - name: "tryptophol transport" + - metabolites: !!omap + - s_1529: -1 + - s_1530: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "IND3ETHt" + - metanetx.reaction: "MNXR100834" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2085" + - name: "tryptophol transport" + - metabolites: !!omap + - s_1529: -1 + - s_1531: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "IND3ETHtm" + - metanetx.reaction: "MNXR100834" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2086" + - name: "tyrosine transport" + - metabolites: !!omap + - s_1051: -1 + - s_1053: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "r1078" + - metanetx.reaction: "MNXR105002" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2087" + - name: "tyrosine transport" + - metabolites: !!omap + - s_1051: -1 + - s_1054: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR105002" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2089" + - name: "UMP transport" + - metabolites: !!omap + - s_1545: -1 + - s_1548: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "UMPtn" + - metanetx.reaction: "MNXR105127" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2090" + - name: "uracil exchange" + - metabolites: !!omap + - s_1551: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ura_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2091" + - name: "urea exchange" + - metabolites: !!omap + - s_1553: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_urea_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2092" + - name: "uridine exchange" + - metabolites: !!omap + - s_1557: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_uri_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2093" + - name: "valine transport" + - metabolites: !!omap + - s_1056: -1 + - s_1058: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "VALt5m" + - metanetx.reaction: "MNXR105190" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2094" + - name: "water diffusion" + - metabolites: !!omap + - s_0803: -1 + - s_0804: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLL052C or YPR192W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "H2Oter" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_2095" + - name: "water diffusion" + - metabolites: !!omap + - s_0803: -1 + - s_0806: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "H2Otg" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2096" + - name: "water diffusion" + - metabolites: !!omap + - s_0803: -1 + - s_0807: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "H2Otm" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2097" + - name: "water diffusion" + - metabolites: !!omap + - s_0803: -1 + - s_0808: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "H2Otn" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2098" + - name: "water diffusion" + - metabolites: !!omap + - s_0803: -1 + - s_0809: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "H2Otp" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2099" + - name: "water diffusion" + - metabolites: !!omap + - s_0803: -1 + - s_0810: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "H2Otv" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2100" + - name: "water exchange" + - metabolites: !!omap + - s_0805: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_h2o_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2101" + - name: "xanthine transport" + - metabolites: !!omap + - s_0357: 1 + - s_0358: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "XANt" + - metanetx.reaction: "MNXR105226" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2102" + - name: "xanthosine exchange" + - metabolites: !!omap + - s_1564: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_xtsn_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2103" + - name: "xanthosine transport" + - metabolites: !!omap + - s_1563: 1 + - s_1564: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "XTSNtr" + - metanetx.reaction: "MNXR105247" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2104" + - name: "xylitol exchange" + - metabolites: !!omap + - s_1567: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_xylt_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2105" + - name: "xylitol transport" + - metabolites: !!omap + - s_1566: 1 + - s_1567: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL245C or YLL043W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "XYLTt" + - metanetx.reaction: "MNXR105264" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_2106" + - name: "zymosterol exchange" + - metabolites: !!omap + - s_1571: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_zymst_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2107" + - name: "zymosterol transport" + - metabolites: !!omap + - s_1568: -1 + - s_1569: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL013C or YOR011W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR105285" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_2108" + - name: "lipid pseudoreaction - merge" + - metabolites: !!omap + - s_1096: 1 + - s_3746: -1 + - s_3747: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "18687109" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - pmid: "18687109" + - sbo: "SBO:0000395" + - confidence_score: 1 + - !!omap + - id: "r_2111" + - name: "growth" + - metabolites: !!omap + - s_0450: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - objective_coefficient: 1 + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR137261" + - sbo: "SBO:0000632" + - confidence_score: 0 + - !!omap + - id: "r_2125" + - name: "coenzyme A: cytoplasm to LP" + - metabolites: !!omap + - s_0529: -1 + - s_0531: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "22672422" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - kegg.reaction: "R00197" + - metanetx.reaction: "MNXR138960" + - pmid: "22672422" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2129" + - name: "proton leak" + - metabolites: !!omap + - s_0794: -1 + - s_0799: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "22672422" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "Htm" + - metanetx.reaction: "MNXR100765" + - pmid: "22672422" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2134" + - name: "14-demethyllanosterol exchange" + - metabolites: !!omap + - s_2766: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2136" + - name: "14-demethyllanosterol transport" + - metabolites: !!omap + - s_0122: 1 + - s_2766: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR137169" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2137" + - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol exchange" + - metabolites: !!omap + - s_2768: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2139" + - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol transport" + - metabolites: !!omap + - s_0662: 1 + - s_2768: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR97951" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2184" + - name: "octanoate (n-C8:0) transport" + - metabolites: !!omap + - s_1248: 1 + - s_1250: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "OCTAt" + - metanetx.reaction: "MNXR99126" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2185" + - name: "decanoate (n-C10:0) transport" + - metabolites: !!omap + - s_0595: 1 + - s_0597: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "DCATDc" + - metanetx.reaction: "MNXR135772" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2186" + - name: "laurate (n-C12:0) transport" + - metabolites: !!omap + - s_1065: 1 + - s_1067: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "r2444" + - metanetx.reaction: "MNXR135773" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2187" + - name: "butyrate exchange" + - metabolites: !!omap + - s_2822: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_but_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2188" + - name: "hexanoate exchange" + - metabolites: !!omap + - s_2824: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_hxa_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2189" + - name: "oleate exchange" + - metabolites: !!omap + - s_2826: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ocdcea_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2190" + - name: "butyrate (n-C4:0) transport" + - metabolites: !!omap + - s_2822: -1 + - s_2828: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL065W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "BUTt" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_2191" + - name: "hexanoate (n-C6:0) transport" + - metabolites: !!omap + - s_2824: -1 + - s_2829: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL065W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HXAt3" + - metanetx.reaction: "MNXR100750" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_2192" + - name: "octadecenoate (n-C18:1) transport" + - metabolites: !!omap + - s_1260: 1 + - s_2826: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "OCDCEAt" + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2193" + - name: "myristate exchange" + - metabolites: !!omap + - s_1163: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "EX_ttdca_e" + - sbo: "SBO:0000627" + - !!omap + - id: "r_2229" + - name: "butyrate (n-C4:0) transport, cytoplasm-peroxisome" + - metabolites: !!omap + - s_2828: -1 + - s_2882: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2230" + - name: "hexanoate (n-C6:0) transport, cytoplasm-peroxisome" + - metabolites: !!omap + - s_2829: -1 + - s_2883: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - bigg.reaction: "HXAt2" + - metanetx.reaction: "MNXR100750" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_2231" + - name: "octadecenoate (n-C18:1) transport, cytoplasm-peroxisome" + - metabolites: !!omap + - s_1260: -1 + - s_2855: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL188C and YPL147W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_2812" + - name: "lysoPC acyltransferase (1-16:0, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3296: 1 + - s_3297: -1 + - s_3320: -1 + - s_3321: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2813" + - name: "lysoPC acyltransferase (1-16:0, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3297: -1 + - s_3304: 1 + - s_3321: 1 + - s_3322: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2814" + - name: "lysoPC acyltransferase (1-16:1, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3298: 1 + - s_3299: -1 + - s_3320: -1 + - s_3321: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2815" + - name: "lysoPC acyltransferase (1-16:1, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3299: -1 + - s_3305: 1 + - s_3321: 1 + - s_3322: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2816" + - name: "lysoPC acyltransferase (1-18:0, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3300: 1 + - s_3301: -1 + - s_3320: -1 + - s_3321: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2817" + - name: "lysoPC acyltransferase (1-18:0, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3301: -1 + - s_3306: 1 + - s_3321: 1 + - s_3322: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2818" + - name: "lysoPC acyltransferase (1-18:1, 2-16:1), mitochondrial membrane" + - metabolites: !!omap + - s_3302: 1 + - s_3303: -1 + - s_3320: -1 + - s_3321: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_2819" + - name: "lysoPC acyltransferase (1-18:1, 2-18:1), mitochondrial membrane" + - metabolites: !!omap + - s_3303: -1 + - s_3307: 1 + - s_3321: 1 + - s_3322: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3332" + - name: "PA kinase (1-16:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2993: -1 + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3624: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3333" + - name: "PA kinase (1-16:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_2999: -1 + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3625: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3334" + - name: "PA kinase (1-18:0, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_3003: -1 + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3626: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3335" + - name: "PA kinase (1-18:1, 2-16:1), Golgi membrane" + - metabolites: !!omap + - s_3007: -1 + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3627: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3336" + - name: "PA kinase (1-16:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_2997: -1 + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3628: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3337" + - name: "PA kinase (1-16:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_3001: -1 + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3629: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3338" + - name: "PA kinase (1-18:0, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_3005: -1 + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3630: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3339" + - name: "PA kinase (1-18:1, 2-18:1), Golgi membrane" + - metabolites: !!omap + - s_3009: -1 + - s_3146: -1 + - s_3359: -1 + - s_3360: 1 + - s_3631: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3340" + - name: "PA kinase (1-16:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2975: -1 + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3616: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3341" + - name: "PA kinase (1-16:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2981: -1 + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3617: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3342" + - name: "PA kinase (1-18:0, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2985: -1 + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3618: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3343" + - name: "PA kinase (1-18:1, 2-16:1), vacuolar membrane" + - metabolites: !!omap + - s_2989: -1 + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3619: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3344" + - name: "PA kinase (1-16:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2979: -1 + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3620: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3345" + - name: "PA kinase (1-16:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2983: -1 + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3621: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3346" + - name: "PA kinase (1-18:0, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2987: -1 + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3622: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3347" + - name: "PA kinase (1-18:1, 2-18:1), vacuolar membrane" + - metabolites: !!omap + - s_2991: -1 + - s_3164: -1 + - s_3341: -1 + - s_3342: 1 + - s_3623: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 + - !!omap + - id: "r_3508" + - name: "laurate transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1065: -1 + - s_2832: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR135773" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3509" - - name: "myristate transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1161: -1 - - s_2835: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3509" + - name: "myristate transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1161: -1 + - s_2835: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR128297" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3510" - - name: "palmitate transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1286: -1 - - s_2836: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3510" + - name: "palmitate transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1286: -1 + - s_2836: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3511" - - name: "palmitoleate transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1293: -1 - - s_2837: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3512" - - name: "stearate transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1449: -1 - - s_2838: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3511" + - name: "palmitoleate transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1293: -1 + - s_2837: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3512" + - name: "stearate transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1449: -1 + - s_2838: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3513" - - name: "oleate transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1260: -1 - - s_2839: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3513" + - name: "oleate transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1260: -1 + - s_2839: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3514" - - name: "malonyl-CoA transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1101: -1 - - s_2782: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3515" - - name: "lauroyl-CoA transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1073: -1 - - s_2781: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3516" - - name: "myristoyl-CoA transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1176: -1 - - s_2787: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3517" - - name: "palmitoyl-CoA transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1302: -1 - - s_2789: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3514" + - name: "malonyl-CoA transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1101: -1 + - s_2782: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3515" + - name: "lauroyl-CoA transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1073: -1 + - s_2781: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3516" + - name: "myristoyl-CoA transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1176: -1 + - s_2787: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3517" + - name: "palmitoyl-CoA transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1302: -1 + - s_2789: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR103046" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3518" - - name: "palmitoleoyl-CoA transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_2819: 1 - - s_2877: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3519" - - name: "stearoyl-CoA transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1454: -1 - - s_2791: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3518" + - name: "palmitoleoyl-CoA transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_2819: 1 + - s_2877: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3519" + - name: "stearoyl-CoA transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1454: -1 + - s_2791: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR104598" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3520" - - name: "oleoyl-CoA transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1262: -1 - - s_2821: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3520" + - name: "oleoyl-CoA transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1262: -1 + - s_2821: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR128426" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3521" - - name: "icosanoyl-CoA transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_2793: 1 - - s_2878: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3522" - - name: "docosanoyl-CoA transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_2795: 1 - - s_2880: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3523" - - name: "tetracosanoyl-CoA transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1479: -1 - - s_2797: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3521" + - name: "icosanoyl-CoA transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_2793: 1 + - s_2878: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3522" + - name: "docosanoyl-CoA transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_2795: 1 + - s_2880: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3523" + - name: "tetracosanoyl-CoA transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1479: -1 + - s_2797: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137463" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3524" - - name: "hexacosanoyl-CoA transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0816: -1 - - s_2816: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3524" + - name: "hexacosanoyl-CoA transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0816: -1 + - s_2816: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR124347" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3525" - - name: "H+ transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0794: -1 - - s_2783: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3525" + - name: "H+ transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0794: -1 + - s_2783: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3526" - - name: "H2O transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0803: -1 - - s_2808: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLL052C or YPR192W" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3526" + - name: "H2O transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0803: -1 + - s_2808: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLL052C or YPR192W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3527" - - name: "CO2 transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0456: -1 - - s_2784: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_3527" + - name: "CO2 transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0456: -1 + - s_2784: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3528" - - name: "coenzyme A transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0529: -1 - - s_2785: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3528" + - name: "coenzyme A transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0529: -1 + - s_2785: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96815" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3529" - - name: "NADPH transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1212: -1 - - s_2799: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3529" + - name: "NADPH transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1212: -1 + - s_2799: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101894" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3530" - - name: "NADP(+) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1207: -1 - - s_2800: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3530" + - name: "NADP(+) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1207: -1 + - s_2800: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101896" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3531" - - name: "O2 transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1275: -1 - - s_2817: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3531" + - name: "O2 transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1275: -1 + - s_2817: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR102090" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3532" - - name: "NADH transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1203: -1 - - s_2818: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3532" + - name: "NADH transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1203: -1 + - s_2818: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101881" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3533" - - name: "NAD transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1198: -1 - - s_2820: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3533" + - name: "NAD transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1198: -1 + - s_2820: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101900" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3534" - - name: "glycerol 3-phosphate transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0767: -1 - - s_2934: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3534" + - name: "glycerol 3-phosphate transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0767: -1 + - s_2934: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100308" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3535" - - name: "dihydroxyacetone phosphate transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0629: -1 - - s_2939: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3535" + - name: "dihydroxyacetone phosphate transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0629: -1 + - s_2939: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR97366" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3536" - - name: "diphosphate transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0633: -1 - - s_2834: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3536" + - name: "diphosphate transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0633: -1 + - s_2834: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR103112" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3537" - - name: "phosphate transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1322: -1 - - s_2966: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3537" + - name: "phosphate transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1322: -1 + - s_2966: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3538" - - name: "CTP transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0539: -1 - - s_3083: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3538" + - name: "CTP transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0539: -1 + - s_3083: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96946" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3539" - - name: "CDP transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0467: -1 - - s_3215: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3539" + - name: "CDP transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0467: -1 + - s_3215: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96562" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3540" - - name: "CMP transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0526: -1 - - s_3108: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3540" + - name: "CMP transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0526: -1 + - s_3108: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96806" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3541" - - name: "CDP-ethanolamine transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0474: -1 - - s_3216: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3542" - - name: "CDP-choline transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0469: -1 - - s_3217: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3541" + - name: "CDP-ethanolamine transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0474: -1 + - s_3216: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3542" + - name: "CDP-choline transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0469: -1 + - s_3217: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR105436" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3543" - - name: "ATP transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0434: -1 - - s_2831: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3543" + - name: "ATP transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0434: -1 + - s_2831: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3544" - - name: "AMP transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0423: -1 - - s_2833: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3544" + - name: "AMP transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0423: -1 + - s_2833: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR95830" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3545" - - name: "L-serine transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1039: -1 - - s_3107: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKR039W" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3545" + - name: "L-serine transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1039: -1 + - s_3107: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKR039W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR104354" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3546" - - name: "myo-inositol transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1153: -1 - - s_3117: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_3546" + - name: "myo-inositol transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1153: -1 + - s_3117: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100848" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3547" - - name: "S-adenosyl-L-methionine transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1416: -1 - - s_3182: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3547" + - name: "S-adenosyl-L-methionine transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1416: -1 + - s_3182: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR95809" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3548" - - name: "S-adenosyl-L-homocysteine transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1413: -1 - - s_3183: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3548" + - name: "S-adenosyl-L-homocysteine transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1413: -1 + - s_3183: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR95626" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3549" - - name: "episterol transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0657: -1 - - s_3432: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3549" + - name: "episterol transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0657: -1 + - s_3432: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR97944" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3550" - - name: "fecosterol transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0700: -1 - - s_3435: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3550" + - name: "fecosterol transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0700: -1 + - s_3435: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99529" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3551" - - name: "lanosterol transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1059: -1 - - s_3438: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3551" + - name: "lanosterol transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1059: -1 + - s_3438: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101014" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3552" - - name: "ergosterol transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_0666: -1 - - s_3441: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3552" + - name: "ergosterol transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_0666: -1 + - s_3441: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR97950" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3553" - - name: "zymosterol transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_1569: -1 - - s_3444: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3553" + - name: "zymosterol transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_1569: -1 + - s_3444: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR105285" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3554" - - name: "diglyceride (1-16:0, 2-16:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_2967: 1 - - s_3497: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3555" - - name: "diglyceride (1-16:1, 2-16:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_2969: 1 - - s_3500: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3556" - - name: "diglyceride (1-18:0, 2-16:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_2971: 1 - - s_3502: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3557" - - name: "diglyceride (1-18:1, 2-16:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_2973: 1 - - s_3504: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3558" - - name: "diglyceride (1-16:0, 2-18:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_2968: 1 - - s_3506: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3559" - - name: "diglyceride (1-16:1, 2-18:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_2970: 1 - - s_3508: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3560" - - name: "diglyceride (1-18:0, 2-18:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_2972: 1 - - s_3510: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3561" - - name: "diglyceride (1-18:1, 2-18:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_2974: 1 - - s_3512: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3562" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_3118: 1 - - s_3545: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3563" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_3119: 1 - - s_3547: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3564" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_3120: 1 - - s_3549: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3565" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_3121: 1 - - s_3551: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3566" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_3122: 1 - - s_3553: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3567" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_3123: 1 - - s_3555: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3568" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_3124: 1 - - s_3557: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3569" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, cytoplasm-ER membrane" - - metabolites: !!omap - - s_3125: 1 - - s_3559: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3570" - - name: "sn-glycero-3-phosphocholine transport, ER membrane-cytoplasm" - - metabolites: !!omap - - s_1433: 1 - - s_3447: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3554" + - name: "diglyceride (1-16:0, 2-16:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_2967: 1 + - s_3497: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3555" + - name: "diglyceride (1-16:1, 2-16:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_2969: 1 + - s_3500: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3556" + - name: "diglyceride (1-18:0, 2-16:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_2971: 1 + - s_3502: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3557" + - name: "diglyceride (1-18:1, 2-16:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_2973: 1 + - s_3504: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3558" + - name: "diglyceride (1-16:0, 2-18:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_2968: 1 + - s_3506: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3559" + - name: "diglyceride (1-16:1, 2-18:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_2970: 1 + - s_3508: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3560" + - name: "diglyceride (1-18:0, 2-18:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_2972: 1 + - s_3510: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3561" + - name: "diglyceride (1-18:1, 2-18:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_2974: 1 + - s_3512: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3562" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_3118: 1 + - s_3545: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3563" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_3119: 1 + - s_3547: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3564" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_3120: 1 + - s_3549: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3565" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_3121: 1 + - s_3551: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3566" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_3122: 1 + - s_3553: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3567" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_3123: 1 + - s_3555: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3568" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_3124: 1 + - s_3557: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3569" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, cytoplasm-ER membrane" + - metabolites: !!omap + - s_3125: 1 + - s_3559: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3570" + - name: "sn-glycero-3-phosphocholine transport, ER membrane-cytoplasm" + - metabolites: !!omap + - s_1433: 1 + - s_3447: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99874" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3571" - - name: "hexadecanoate (n-C16:0) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_1286: -1 - - s_2846: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3571" + - name: "hexadecanoate (n-C16:0) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_1286: -1 + - s_2846: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3572" - - name: "hexadecenoate (n-C16:1) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_1293: -1 - - s_2848: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3573" - - name: "octadecanoate (n-C18:0) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_1449: -1 - - s_2850: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3572" + - name: "hexadecenoate (n-C16:1) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_1293: -1 + - s_2848: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3573" + - name: "octadecanoate (n-C18:0) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_1449: -1 + - s_2850: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3574" - - name: "octadecenoate (n-C18:1) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_1260: -1 - - s_2852: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3574" + - name: "octadecenoate (n-C18:1) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_1260: -1 + - s_2852: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3575" - - name: "lauroyl-CoA transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_1073: -1 - - s_2843: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3576" - - name: "myristoyl-CoA transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_1176: -1 - - s_2845: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3577" - - name: "palmitoyl-CoA transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_1302: -1 - - s_2847: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3575" + - name: "lauroyl-CoA transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_1073: -1 + - s_2843: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3576" + - name: "myristoyl-CoA transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_1176: -1 + - s_2845: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3577" + - name: "palmitoyl-CoA transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_1302: -1 + - s_2847: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR103046" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3578" - - name: "palmitoleoyl-CoA transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_2849: 1 - - s_2877: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3579" - - name: "stearoyl-CoA transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_1454: -1 - - s_2851: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3578" + - name: "palmitoleoyl-CoA transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_2849: 1 + - s_2877: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3579" + - name: "stearoyl-CoA transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_1454: -1 + - s_2851: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR104598" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3580" - - name: "oleoyl-CoA transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_1262: -1 - - s_2853: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3580" + - name: "oleoyl-CoA transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_1262: -1 + - s_2853: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR128426" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3581" - - name: "glycerol 3-phosphate transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_0767: -1 - - s_0769: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3581" + - name: "glycerol 3-phosphate transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_0767: -1 + - s_0769: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100308" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3582" - - name: "dihydroxyacetone phosphate transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_0629: -1 - - s_0631: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3582" + - name: "dihydroxyacetone phosphate transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_0629: -1 + - s_0631: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR97366" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3583" - - name: "NADPH transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_1212: -1 - - s_2952: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3583" + - name: "NADPH transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_1212: -1 + - s_2952: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101894" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3584" - - name: "NADP(+) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_1207: -1 - - s_2953: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3584" + - name: "NADP(+) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_1207: -1 + - s_2953: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101896" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3585" - - name: "ATP transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_0434: -1 - - s_2840: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3585" + - name: "ATP transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_0434: -1 + - s_2840: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3586" - - name: "AMP transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_0423: -1 - - s_2842: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3586" + - name: "AMP transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_0423: -1 + - s_2842: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR95830" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3587" - - name: "diphosphate transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_0633: -1 - - s_0635: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3587" + - name: "diphosphate transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_0633: -1 + - s_0635: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR103112" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3588" - - name: "diglyceride (1-16:0, 2-16:1) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_3043: 1 - - s_3497: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3589" - - name: "diglyceride (1-16:1, 2-16:1) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_3047: 1 - - s_3500: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3590" - - name: "diglyceride (1-18:0, 2-16:1) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_3051: 1 - - s_3502: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3591" - - name: "diglyceride (1-18:1, 2-16:1) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_3055: 1 - - s_3504: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3592" - - name: "diglyceride (1-16:0, 2-18:1) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_3045: 1 - - s_3506: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3593" - - name: "diglyceride (1-16:1, 2-18:1) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_3049: 1 - - s_3508: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3594" - - name: "diglyceride (1-18:0, 2-18:1) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_3053: 1 - - s_3510: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3595" - - name: "diglyceride (1-18:1, 2-18:1) transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_3057: 1 - - s_3512: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3596" - - name: "H2O transport, cytoplasm-lipid particle" - - metabolites: !!omap - - s_0803: -1 - - s_3657: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3588" + - name: "diglyceride (1-16:0, 2-16:1) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_3043: 1 + - s_3497: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3589" + - name: "diglyceride (1-16:1, 2-16:1) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_3047: 1 + - s_3500: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3590" + - name: "diglyceride (1-18:0, 2-16:1) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_3051: 1 + - s_3502: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3591" + - name: "diglyceride (1-18:1, 2-16:1) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_3055: 1 + - s_3504: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3592" + - name: "diglyceride (1-16:0, 2-18:1) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_3045: 1 + - s_3506: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3593" + - name: "diglyceride (1-16:1, 2-18:1) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_3049: 1 + - s_3508: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3594" + - name: "diglyceride (1-18:0, 2-18:1) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_3053: 1 + - s_3510: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3595" + - name: "diglyceride (1-18:1, 2-18:1) transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_3057: 1 + - s_3512: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3596" + - name: "H2O transport, cytoplasm-lipid particle" + - metabolites: !!omap + - s_0803: -1 + - s_3657: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3597" - - name: "glycerol transport, lipid particle-cytoplasm" - - metabolites: !!omap - - s_0765: 1 - - s_3684: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3597" + - name: "glycerol transport, lipid particle-cytoplasm" + - metabolites: !!omap + - s_0765: 1 + - s_3684: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100343" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3598" - - name: "docosanoyl-CoA transport, lipid particle-cytoplasm" - - metabolites: !!omap - - s_2872: -1 - - s_2880: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3599" - - name: "tetracosanoyl-CoA transport, lipid particle-cytoplasm" - - metabolites: !!omap - - s_1479: 1 - - s_2874: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3598" + - name: "docosanoyl-CoA transport, lipid particle-cytoplasm" + - metabolites: !!omap + - s_2872: -1 + - s_2880: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3599" + - name: "tetracosanoyl-CoA transport, lipid particle-cytoplasm" + - metabolites: !!omap + - s_1479: 1 + - s_2874: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137463" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3600" - - name: "hexacosanoyl-CoA transport, lipid particle-cytoplasm" - - metabolites: !!omap - - s_0816: 1 - - s_2876: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3600" + - name: "hexacosanoyl-CoA transport, lipid particle-cytoplasm" + - metabolites: !!omap + - s_0816: 1 + - s_2876: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR124347" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3601" - - name: "ATP transport, cytoplasm-cell envelope" - - metabolites: !!omap - - s_0434: -1 - - s_2856: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3601" + - name: "ATP transport, cytoplasm-cell envelope" + - metabolites: !!omap + - s_0434: -1 + - s_2856: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3602" - - name: "ADP transport, cytoplasm-cell envelope" - - metabolites: !!omap - - s_0394: -1 - - s_3324: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3602" + - name: "ADP transport, cytoplasm-cell envelope" + - metabolites: !!omap + - s_0394: -1 + - s_3324: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3603" - - name: "H+ transport, cytoplasm-cell envelope" - - metabolites: !!omap - - s_0793: 1 - - s_0794: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3603" + - name: "H+ transport, cytoplasm-cell envelope" + - metabolites: !!omap + - s_0793: 1 + - s_0794: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3604" - - name: "H2O transport, cytoplasm-cell envelope" - - metabolites: !!omap - - s_0803: -1 - - s_3449: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLL052C or YLL053C or YPR192W" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3604" + - name: "H2O transport, cytoplasm-cell envelope" + - metabolites: !!omap + - s_0803: -1 + - s_3449: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLL052C or YLL053C or YPR192W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3605" - - name: "phosphate transport, cytoplasm-cell envelope" - - metabolites: !!omap - - s_1322: -1 - - s_3536: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR037C or YJL198W or YML123C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_3605" + - name: "phosphate transport, cytoplasm-cell envelope" + - metabolites: !!omap + - s_1322: -1 + - s_3536: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR037C or YJL198W or YML123C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3606" - - name: "sn-glycero-3-phosphocholine transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_1432: -1 - - s_1433: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR098C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_3606" + - name: "sn-glycero-3-phosphocholine transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_1432: -1 + - s_1433: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR098C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99874" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3607" - - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_0079: 1 - - s_3495: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR098C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_3607" + - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_0079: 1 + - s_3495: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR098C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99888" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3608" - - name: "palmitate transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_1286: 1 - - s_3463: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_3608" + - name: "palmitate transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_1286: 1 + - s_3463: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3609" - - name: "palmitoleate transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_1293: 1 - - s_3451: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3610" - - name: "stearate transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_1449: 1 - - s_3464: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3609" + - name: "palmitoleate transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_1293: 1 + - s_3451: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3610" + - name: "stearate transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_1449: 1 + - s_3464: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3611" - - name: "oleate transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_1260: 1 - - s_3459: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3611" + - name: "oleate transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_1260: 1 + - s_3459: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3612" - - name: "icosanoyl-CoA transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_2861: -1 - - s_2878: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3613" - - name: "docosanoyl-CoA transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_2863: -1 - - s_2880: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3614" - - name: "tetracosanoyl-CoA transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_1479: 1 - - s_2865: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3612" + - name: "icosanoyl-CoA transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_2861: -1 + - s_2878: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3613" + - name: "docosanoyl-CoA transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_2863: -1 + - s_2880: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3614" + - name: "tetracosanoyl-CoA transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_1479: 1 + - s_2865: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137463" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3615" - - name: "hexacosanoyl-CoA transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_0816: 1 - - s_2867: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3615" + - name: "hexacosanoyl-CoA transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_0816: 1 + - s_2867: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR124347" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3616" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3408: -1 - - s_3496: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3617" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3409: -1 - - s_3499: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3618" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3410: -1 - - s_3501: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3619" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3411: -1 - - s_3503: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3620" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3412: -1 - - s_3505: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3621" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3413: -1 - - s_3507: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3622" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3414: -1 - - s_3509: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3623" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3415: -1 - - s_3511: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3624" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3325: -1 - - s_3576: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3625" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3327: -1 - - s_3577: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3626" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3329: -1 - - s_3578: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3627" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3331: -1 - - s_3579: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3628" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3333: -1 - - s_3580: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3629" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3335: -1 - - s_3581: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3630" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3337: -1 - - s_3582: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3631" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) transport, cell envelope-cytoplasm" - - metabolites: !!omap - - s_3339: -1 - - s_3583: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3632" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3400: -1 - - s_3496: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3633" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3401: -1 - - s_3499: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3634" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3402: -1 - - s_3501: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3635" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3403: -1 - - s_3503: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3636" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3404: -1 - - s_3505: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3637" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3405: -1 - - s_3507: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3638" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3406: -1 - - s_3509: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3639" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3407: -1 - - s_3511: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3640" - - name: "diglyceride (1-16:0, 2-16:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3497: 1 - - s_3513: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3641" - - name: "diglyceride (1-16:1, 2-16:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3500: 1 - - s_3514: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3642" - - name: "diglyceride (1-18:0, 2-16:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3502: 1 - - s_3515: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3643" - - name: "diglyceride (1-18:1, 2-16:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3504: 1 - - s_3516: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3644" - - name: "diglyceride (1-16:0, 2-18:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3506: 1 - - s_3517: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3645" - - name: "diglyceride (1-16:1, 2-18:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3508: 1 - - s_3518: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3646" - - name: "diglyceride (1-18:0, 2-18:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3510: 1 - - s_3519: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3647" - - name: "diglyceride (1-18:1, 2-18:1) transport, nucleus-cytoplasm" - - metabolites: !!omap - - s_3512: 1 - - s_3520: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3648" - - name: "H2O transport, cytoplasm-vacuolar membrane" - - metabolites: !!omap - - s_0803: -1 - - s_2976: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3616" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3408: -1 + - s_3496: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3617" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3409: -1 + - s_3499: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3618" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3410: -1 + - s_3501: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3619" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3411: -1 + - s_3503: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3620" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3412: -1 + - s_3505: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3621" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3413: -1 + - s_3507: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3622" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3414: -1 + - s_3509: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3623" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3415: -1 + - s_3511: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3624" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3325: -1 + - s_3576: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3625" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3327: -1 + - s_3577: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3626" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3329: -1 + - s_3578: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3627" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3331: -1 + - s_3579: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3628" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3333: -1 + - s_3580: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3629" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3335: -1 + - s_3581: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3630" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3337: -1 + - s_3582: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3631" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) transport, cell envelope-cytoplasm" + - metabolites: !!omap + - s_3339: -1 + - s_3583: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3632" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3400: -1 + - s_3496: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3633" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3401: -1 + - s_3499: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3634" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3402: -1 + - s_3501: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3635" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3403: -1 + - s_3503: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3636" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3404: -1 + - s_3505: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3637" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3405: -1 + - s_3507: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3638" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3406: -1 + - s_3509: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3639" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3407: -1 + - s_3511: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3640" + - name: "diglyceride (1-16:0, 2-16:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3497: 1 + - s_3513: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3641" + - name: "diglyceride (1-16:1, 2-16:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3500: 1 + - s_3514: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3642" + - name: "diglyceride (1-18:0, 2-16:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3502: 1 + - s_3515: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3643" + - name: "diglyceride (1-18:1, 2-16:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3504: 1 + - s_3516: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3644" + - name: "diglyceride (1-16:0, 2-18:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3506: 1 + - s_3517: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3645" + - name: "diglyceride (1-16:1, 2-18:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3508: 1 + - s_3518: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3646" + - name: "diglyceride (1-18:0, 2-18:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3510: 1 + - s_3519: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3647" + - name: "diglyceride (1-18:1, 2-18:1) transport, nucleus-cytoplasm" + - metabolites: !!omap + - s_3512: 1 + - s_3520: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3648" + - name: "H2O transport, cytoplasm-vacuolar membrane" + - metabolites: !!omap + - s_0803: -1 + - s_2976: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3649" - - name: "phosphate transport, cytoplasm-vacuolar membrane" - - metabolites: !!omap - - s_1322: -1 - - s_2977: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR013C" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3649" + - name: "phosphate transport, cytoplasm-vacuolar membrane" + - metabolites: !!omap + - s_1322: -1 + - s_2977: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR013C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3650" - - name: "H+ transport, cytoplasm-vacuolar membrane" - - metabolites: !!omap - - s_0794: -1 - - s_3164: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_3650" + - name: "H+ transport, cytoplasm-vacuolar membrane" + - metabolites: !!omap + - s_0794: -1 + - s_3164: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3651" - - name: "ATP transport, cytoplasm-vacuolar membrane" - - metabolites: !!omap - - s_0434: -1 - - s_3341: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3651" + - name: "ATP transport, cytoplasm-vacuolar membrane" + - metabolites: !!omap + - s_0434: -1 + - s_3341: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3652" - - name: "ADP transport, cytoplasm-vacuolar membrane" - - metabolites: !!omap - - s_0394: -1 - - s_3342: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3652" + - name: "ADP transport, cytoplasm-vacuolar membrane" + - metabolites: !!omap + - s_0394: -1 + - s_3342: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3653" - - name: "carbon dioxide transport, cytoplasm-vacuolar membrane" - - metabolites: !!omap - - s_0456: -1 - - s_3165: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3653" + - name: "carbon dioxide transport, cytoplasm-vacuolar membrane" + - metabolites: !!omap + - s_0456: -1 + - s_3165: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3654" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) transport, vacuolar membrane-cytoplasm" - - metabolites: !!omap - - s_3416: -1 - - s_3600: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3655" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) transport, vacuolar membrane-cytoplasm" - - metabolites: !!omap - - s_3417: -1 - - s_3601: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3656" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) transport, vacuolar membrane-cytoplasm" - - metabolites: !!omap - - s_3418: -1 - - s_3602: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3657" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) transport, vacuolar membrane-cytoplasm" - - metabolites: !!omap - - s_3419: -1 - - s_3603: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3658" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) transport, vacuolar membrane-cytoplasm" - - metabolites: !!omap - - s_3420: -1 - - s_3604: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3659" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) transport, vacuolar membrane-cytoplasm" - - metabolites: !!omap - - s_3421: -1 - - s_3605: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3660" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) transport, vacuolar membrane-cytoplasm" - - metabolites: !!omap - - s_3422: -1 - - s_3606: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3661" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) transport, vacuolar membrane-cytoplasm" - - metabolites: !!omap - - s_3423: -1 - - s_3607: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3662" - - name: "H2O transport, cytoplasm-Golgi membrane" - - metabolites: !!omap - - s_0803: -1 - - s_2994: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3654" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) transport, vacuolar membrane-cytoplasm" + - metabolites: !!omap + - s_3416: -1 + - s_3600: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3655" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) transport, vacuolar membrane-cytoplasm" + - metabolites: !!omap + - s_3417: -1 + - s_3601: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3656" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) transport, vacuolar membrane-cytoplasm" + - metabolites: !!omap + - s_3418: -1 + - s_3602: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3657" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) transport, vacuolar membrane-cytoplasm" + - metabolites: !!omap + - s_3419: -1 + - s_3603: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3658" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) transport, vacuolar membrane-cytoplasm" + - metabolites: !!omap + - s_3420: -1 + - s_3604: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3659" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) transport, vacuolar membrane-cytoplasm" + - metabolites: !!omap + - s_3421: -1 + - s_3605: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3660" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) transport, vacuolar membrane-cytoplasm" + - metabolites: !!omap + - s_3422: -1 + - s_3606: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3661" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) transport, vacuolar membrane-cytoplasm" + - metabolites: !!omap + - s_3423: -1 + - s_3607: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3662" + - name: "H2O transport, cytoplasm-Golgi membrane" + - metabolites: !!omap + - s_0803: -1 + - s_2994: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3663" - - name: "phosphate transport, cytoplasm-Golgi membrane" - - metabolites: !!omap - - s_1322: -1 - - s_2995: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3663" + - name: "phosphate transport, cytoplasm-Golgi membrane" + - metabolites: !!omap + - s_1322: -1 + - s_2995: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3664" - - name: "H+ transport, cytoplasm-Golgi membrane" - - metabolites: !!omap - - s_0794: -1 - - s_3146: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3664" + - name: "H+ transport, cytoplasm-Golgi membrane" + - metabolites: !!omap + - s_0794: -1 + - s_3146: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3665" - - name: "carbon dioxide transport, cytoplasm-Golgi membrane" - - metabolites: !!omap - - s_0456: -1 - - s_3147: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3665" + - name: "carbon dioxide transport, cytoplasm-Golgi membrane" + - metabolites: !!omap + - s_0456: -1 + - s_3147: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3666" - - name: "ATP transport, cytoplasm-Golgi membrane" - - metabolites: !!omap - - s_0434: -1 - - s_3359: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3666" + - name: "ATP transport, cytoplasm-Golgi membrane" + - metabolites: !!omap + - s_0434: -1 + - s_3359: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3667" - - name: "ADP transport, cytoplasm-Golgi membrane" - - metabolites: !!omap - - s_0394: -1 - - s_3360: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3667" + - name: "ADP transport, cytoplasm-Golgi membrane" + - metabolites: !!omap + - s_0394: -1 + - s_3360: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3668" - - name: "H2O transport, cytoplasm-mitochondrial membrane" - - metabolites: !!omap - - s_0803: -1 - - s_3226: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3668" + - name: "H2O transport, cytoplasm-mitochondrial membrane" + - metabolites: !!omap + - s_0803: -1 + - s_3226: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3669" - - name: "carbon dioxide transport, cytoplasm-mitochondrial membrane" - - metabolites: !!omap - - s_0456: -1 - - s_3129: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3669" + - name: "carbon dioxide transport, cytoplasm-mitochondrial membrane" + - metabolites: !!omap + - s_0456: -1 + - s_3129: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3670" - - name: "palmitoleoyl-CoA transport, cytoplasm-mitochondrial membrane" - - metabolites: !!omap - - s_2877: -1 - - s_3320: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3671" - - name: "oleoyl-CoA transport, cytoplasm-mitochondrial membrane" - - metabolites: !!omap - - s_1262: -1 - - s_3322: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3670" + - name: "palmitoleoyl-CoA transport, cytoplasm-mitochondrial membrane" + - metabolites: !!omap + - s_2877: -1 + - s_3320: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3671" + - name: "oleoyl-CoA transport, cytoplasm-mitochondrial membrane" + - metabolites: !!omap + - s_1262: -1 + - s_3322: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR128426" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3672" - - name: "diglyceride (1-16:0, 2-16:1) transport, mitochondrial membrane-cytoplasm" - - metabolites: !!omap - - s_3497: 1 - - s_3521: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3673" - - name: "diglyceride (1-16:1, 2-16:1) transport, mitochondrial membrane-cytoplasm" - - metabolites: !!omap - - s_3500: 1 - - s_3522: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3674" - - name: "diglyceride (1-18:0, 2-16:1) transport, mitochondrial membrane-cytoplasm" - - metabolites: !!omap - - s_3502: 1 - - s_3523: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3675" - - name: "diglyceride (1-18:1, 2-16:1) transport, mitochondrial membrane-cytoplasm" - - metabolites: !!omap - - s_3504: 1 - - s_3524: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3676" - - name: "diglyceride (1-16:0, 2-18:1) transport, mitochondrial membrane-cytoplasm" - - metabolites: !!omap - - s_3506: 1 - - s_3525: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3677" - - name: "diglyceride (1-16:1, 2-18:1) transport, mitochondrial membrane-cytoplasm" - - metabolites: !!omap - - s_3508: 1 - - s_3526: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3678" - - name: "palmitate transport, mitochondrial membrane-cytoplasm" - - metabolites: !!omap - - s_1286: 1 - - s_3271: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3672" + - name: "diglyceride (1-16:0, 2-16:1) transport, mitochondrial membrane-cytoplasm" + - metabolites: !!omap + - s_3497: 1 + - s_3521: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3673" + - name: "diglyceride (1-16:1, 2-16:1) transport, mitochondrial membrane-cytoplasm" + - metabolites: !!omap + - s_3500: 1 + - s_3522: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3674" + - name: "diglyceride (1-18:0, 2-16:1) transport, mitochondrial membrane-cytoplasm" + - metabolites: !!omap + - s_3502: 1 + - s_3523: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3675" + - name: "diglyceride (1-18:1, 2-16:1) transport, mitochondrial membrane-cytoplasm" + - metabolites: !!omap + - s_3504: 1 + - s_3524: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3676" + - name: "diglyceride (1-16:0, 2-18:1) transport, mitochondrial membrane-cytoplasm" + - metabolites: !!omap + - s_3506: 1 + - s_3525: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3677" + - name: "diglyceride (1-16:1, 2-18:1) transport, mitochondrial membrane-cytoplasm" + - metabolites: !!omap + - s_3508: 1 + - s_3526: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3678" + - name: "palmitate transport, mitochondrial membrane-cytoplasm" + - metabolites: !!omap + - s_1286: 1 + - s_3271: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3679" - - name: "stearate transport, mitochondrial membrane-cytoplasm" - - metabolites: !!omap - - s_1449: 1 - - s_3277: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3679" + - name: "stearate transport, mitochondrial membrane-cytoplasm" + - metabolites: !!omap + - s_1449: 1 + - s_3277: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3680" - - name: "coenzyme A transport, mitochondrial membrane-cytoplasm" - - metabolites: !!omap - - s_0529: 1 - - s_3321: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR002W" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3680" + - name: "coenzyme A transport, mitochondrial membrane-cytoplasm" + - metabolites: !!omap + - s_0529: 1 + - s_3321: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR002W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96815" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3681" - - name: "laurate transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_2832: -1 - - s_2841: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_3681" + - name: "laurate transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_2832: -1 + - s_2841: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR135773" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3682" - - name: "myristate transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_2835: -1 - - s_2844: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3682" + - name: "myristate transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_2835: -1 + - s_2844: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR128297" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3683" - - name: "lignoceric acid transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_2869: -1 - - s_2873: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3683" + - name: "lignoceric acid transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_2869: -1 + - s_2873: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR128298" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3684" - - name: "cerotic acid transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_2870: -1 - - s_2875: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3684" + - name: "cerotic acid transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_2870: -1 + - s_2875: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR136128" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3685" - - name: "TAG (1-16:0, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3011: -1 - - s_3044: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3686" - - name: "TAG (1-16:0, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3019: -1 - - s_3059: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3687" - - name: "TAG (1-16:0, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3027: -1 - - s_3067: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3688" - - name: "TAG (1-16:0, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3035: -1 - - s_3075: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3689" - - name: "TAG (1-16:1, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3013: -1 - - s_3048: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3690" - - name: "TAG (1-16:1, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3021: -1 - - s_3061: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3691" - - name: "TAG (1-16:1, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3029: -1 - - s_3069: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3692" - - name: "TAG (1-16:1, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3037: -1 - - s_3077: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3693" - - name: "TAG (1-18:0, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3015: -1 - - s_3052: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3694" - - name: "TAG (1-18:0, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3023: -1 - - s_3063: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3695" - - name: "TAG (1-18:0, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3031: -1 - - s_3071: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3696" - - name: "TAG (1-18:0, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3039: -1 - - s_3079: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3697" - - name: "TAG (1-18:1, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3017: -1 - - s_3056: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3698" - - name: "TAG (1-18:1, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3025: -1 - - s_3065: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3699" - - name: "TAG (1-18:1, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3033: -1 - - s_3073: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3700" - - name: "TAG (1-18:1, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3041: -1 - - s_3081: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3701" - - name: "TAG (1-16:0, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3012: -1 - - s_3046: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3702" - - name: "TAG (1-16:0, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3020: -1 - - s_3060: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3703" - - name: "TAG (1-16:0, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3028: -1 - - s_3068: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3704" - - name: "TAG (1-16:0, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3036: -1 - - s_3076: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3705" - - name: "TAG (1-16:1, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3014: -1 - - s_3050: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3706" - - name: "TAG (1-16:1, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3022: -1 - - s_3062: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3707" - - name: "TAG (1-16:1, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3030: -1 - - s_3070: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3708" - - name: "TAG (1-16:1, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3038: -1 - - s_3078: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3709" - - name: "TAG (1-18:0, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3016: -1 - - s_3054: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3710" - - name: "TAG (1-18:0, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3024: -1 - - s_3064: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3711" - - name: "TAG (1-18:0, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3032: -1 - - s_3072: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3712" - - name: "TAG (1-18:0, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3040: -1 - - s_3080: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3713" - - name: "TAG (1-18:1, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3018: -1 - - s_3058: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3714" - - name: "TAG (1-18:1, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3026: -1 - - s_3066: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3715" - - name: "TAG (1-18:1, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3034: -1 - - s_3074: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3716" - - name: "TAG (1-18:1, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3042: -1 - - s_3082: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3717" - - name: "episterol transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3432: -1 - - s_3660: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3685" + - name: "TAG (1-16:0, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3011: -1 + - s_3044: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3686" + - name: "TAG (1-16:0, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3019: -1 + - s_3059: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3687" + - name: "TAG (1-16:0, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3027: -1 + - s_3067: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3688" + - name: "TAG (1-16:0, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3035: -1 + - s_3075: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3689" + - name: "TAG (1-16:1, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3013: -1 + - s_3048: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3690" + - name: "TAG (1-16:1, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3021: -1 + - s_3061: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3691" + - name: "TAG (1-16:1, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3029: -1 + - s_3069: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3692" + - name: "TAG (1-16:1, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3037: -1 + - s_3077: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3693" + - name: "TAG (1-18:0, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3015: -1 + - s_3052: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3694" + - name: "TAG (1-18:0, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3023: -1 + - s_3063: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3695" + - name: "TAG (1-18:0, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3031: -1 + - s_3071: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3696" + - name: "TAG (1-18:0, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3039: -1 + - s_3079: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3697" + - name: "TAG (1-18:1, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3017: -1 + - s_3056: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3698" + - name: "TAG (1-18:1, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3025: -1 + - s_3065: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3699" + - name: "TAG (1-18:1, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3033: -1 + - s_3073: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3700" + - name: "TAG (1-18:1, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3041: -1 + - s_3081: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3701" + - name: "TAG (1-16:0, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3012: -1 + - s_3046: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3702" + - name: "TAG (1-16:0, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3020: -1 + - s_3060: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3703" + - name: "TAG (1-16:0, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3028: -1 + - s_3068: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3704" + - name: "TAG (1-16:0, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3036: -1 + - s_3076: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3705" + - name: "TAG (1-16:1, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3014: -1 + - s_3050: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3706" + - name: "TAG (1-16:1, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3022: -1 + - s_3062: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3707" + - name: "TAG (1-16:1, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3030: -1 + - s_3070: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3708" + - name: "TAG (1-16:1, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3038: -1 + - s_3078: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3709" + - name: "TAG (1-18:0, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3016: -1 + - s_3054: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3710" + - name: "TAG (1-18:0, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3024: -1 + - s_3064: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3711" + - name: "TAG (1-18:0, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3032: -1 + - s_3072: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3712" + - name: "TAG (1-18:0, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3040: -1 + - s_3080: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3713" + - name: "TAG (1-18:1, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3018: -1 + - s_3058: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3714" + - name: "TAG (1-18:1, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3026: -1 + - s_3066: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3715" + - name: "TAG (1-18:1, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3034: -1 + - s_3074: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3716" + - name: "TAG (1-18:1, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3042: -1 + - s_3082: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3717" + - name: "episterol transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3432: -1 + - s_3660: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR97944" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3718" - - name: "fecosterol transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_0703: 1 - - s_3435: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3718" + - name: "fecosterol transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_0703: 1 + - s_3435: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99529" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3719" - - name: "lanosterol transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3438: -1 - - s_3665: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3719" + - name: "lanosterol transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3438: -1 + - s_3665: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101014" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3720" - - name: "zymosterol transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_1572: 1 - - s_3444: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3720" + - name: "zymosterol transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_1572: 1 + - s_3444: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR105285" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3721" - - name: "ergosteryl palmitoleate transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3443: -1 - - s_3656: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3722" - - name: "ergosteryl oleate transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3442: -1 - - s_3658: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3723" - - name: "episteryl palmitoleate transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3434: -1 - - s_3659: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3724" - - name: "episteryl oleate transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3433: -1 - - s_3661: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3725" - - name: "fecosteryl palmitoleate transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3437: -1 - - s_3662: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3726" - - name: "fecosteryl oleate transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3436: -1 - - s_3663: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3727" - - name: "lanosteryl palmitoleate transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3440: -1 - - s_3664: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3728" - - name: "lanosteryl oleate transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3439: -1 - - s_3666: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3729" - - name: "zymosteryl palmitoleate transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3446: -1 - - s_3667: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3730" - - name: "zymosteryl oleate transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3445: -1 - - s_3668: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3731" - - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3207: -1 - - s_3693: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3732" - - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3208: -1 - - s_3695: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3733" - - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3209: -1 - - s_3697: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3734" - - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3210: -1 - - s_3699: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3735" - - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3211: -1 - - s_3701: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3736" - - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3212: -1 - - s_3702: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3737" - - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3213: -1 - - s_3703: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3738" - - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3214: -1 - - s_3704: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3739" - - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3181: -1 - - s_3705: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3740" - - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3185: -1 - - s_3706: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3741" - - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3187: -1 - - s_3707: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3742" - - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3189: -1 - - s_3708: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3743" - - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3191: -1 - - s_3686: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3744" - - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3193: -1 - - s_3688: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3745" - - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3195: -1 - - s_3690: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3746" - - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3197: -1 - - s_3692: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3747" - - name: "1-acylglycerophosphocholine (16:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3428: -1 - - s_3694: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3748" - - name: "1-acylglycerophosphocholine (16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3429: -1 - - s_3696: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3749" - - name: "1-acylglycerophosphocholine (18:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3430: -1 - - s_3698: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3750" - - name: "1-acylglycerophosphocholine (18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3431: -1 - - s_3700: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3751" - - name: "1-acylglycerophosphoethanolamine (16:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3424: -1 - - s_3685: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3752" - - name: "1-acylglycerophosphoethanolamine (16:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3425: -1 - - s_3687: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3753" - - name: "1-acylglycerophosphoethanolamine (18:0) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3426: -1 - - s_3689: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3754" - - name: "1-acylglycerophosphoethanolamine (18:1) transport, ER membrane-lipid particle" - - metabolites: !!omap - - s_3427: -1 - - s_3691: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3755" - - name: "phosphatidate (1-16:0, 2-18:1) transport, lipid particle-ER membrane" - - metabolites: !!omap - - s_2955: 1 - - s_2962: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3756" - - name: "phosphatidate (1-16:1, 2-18:1) transport, lipid particle-ER membrane" - - metabolites: !!omap - - s_2957: 1 - - s_2963: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3757" - - name: "phosphatidate (1-18:0, 2-18:1) transport, lipid particle-ER membrane" - - metabolites: !!omap - - s_2959: 1 - - s_2964: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3758" - - name: "phosphatidate (1-18:1, 2-18:1) transport, lipid particle-ER membrane" - - metabolites: !!omap - - s_2961: 1 - - s_2965: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3759" - - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_2954: -1 - - s_3092: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3760" - - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_2956: -1 - - s_3097: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3761" - - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_2958: -1 - - s_3099: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3762" - - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_2960: -1 - - s_3101: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3763" - - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_2955: -1 - - s_3103: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3764" - - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_2957: -1 - - s_3105: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3765" - - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3109: -1 - - s_3128: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3766" - - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3110: -1 - - s_3131: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3767" - - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3111: -1 - - s_3133: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3768" - - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3112: -1 - - s_3135: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3769" - - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3113: -1 - - s_3137: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3770" - - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3114: -1 - - s_3139: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3771" - - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3115: -1 - - s_3141: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3772" - - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3116: -1 - - s_3143: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3773" - - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, mitochondrial membrane-ER membrane" - - metabolites: !!omap - - s_3130: -1 - - s_3181: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3774" - - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, mitochondrial membrane-ER membrane" - - metabolites: !!omap - - s_3132: -1 - - s_3185: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3775" - - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, mitochondrial membrane-ER membrane" - - metabolites: !!omap - - s_3134: -1 - - s_3187: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3776" - - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, mitochondrial membrane-ER membrane" - - metabolites: !!omap - - s_3136: -1 - - s_3189: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3777" - - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, mitochondrial membrane-ER membrane" - - metabolites: !!omap - - s_3138: -1 - - s_3191: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3778" - - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, mitochondrial membrane-ER membrane" - - metabolites: !!omap - - s_3140: -1 - - s_3193: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3779" - - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, mitochondrial membrane-ER membrane" - - metabolites: !!omap - - s_3142: -1 - - s_3195: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3780" - - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, mitochondrial membrane-ER membrane" - - metabolites: !!omap - - s_3144: -1 - - s_3197: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3781" - - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3207: -1 - - s_3296: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3782" - - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3208: -1 - - s_3298: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3783" - - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3209: -1 - - s_3300: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3784" - - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3210: -1 - - s_3302: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3785" - - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3211: -1 - - s_3304: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3786" - - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3212: -1 - - s_3305: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3787" - - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3213: -1 - - s_3306: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3788" - - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-mitochondrial membrane" - - metabolites: !!omap - - s_3214: -1 - - s_3307: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3789" - - name: "diglyceride (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2967: -1 - - s_2996: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3790" - - name: "diglyceride (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2969: -1 - - s_3000: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3791" - - name: "diglyceride (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2971: -1 - - s_3004: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3792" - - name: "diglyceride (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2973: -1 - - s_3008: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3793" - - name: "diglyceride (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2968: -1 - - s_2998: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3794" - - name: "diglyceride (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2970: -1 - - s_3002: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3795" - - name: "diglyceride (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2972: -1 - - s_3006: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3796" - - name: "diglyceride (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2974: -1 - - s_3010: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3797" - - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2954: -1 - - s_2993: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3798" - - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2956: -1 - - s_2999: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3799" - - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2958: -1 - - s_3003: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3800" - - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2960: -1 - - s_3007: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3801" - - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2955: -1 - - s_2997: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3802" - - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2957: -1 - - s_3001: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3803" - - name: "phosphatidate (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2959: -1 - - s_3005: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3804" - - name: "phosphatidate (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_2961: -1 - - s_3009: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3805" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3118: -1 - - s_3358: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3806" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3119: -1 - - s_3362: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3807" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3120: -1 - - s_3364: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3808" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3121: -1 - - s_3366: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3809" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3122: -1 - - s_3368: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3810" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3123: -1 - - s_3370: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3811" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3124: -1 - - s_3372: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3812" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3125: -1 - - s_3374: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3813" - - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3109: -1 - - s_3145: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W or YMR162C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3814" - - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3110: -1 - - s_3149: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W or YMR162C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3815" - - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3111: -1 - - s_3151: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W or YMR162C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3816" - - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3112: -1 - - s_3153: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W or YMR162C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3817" - - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3113: -1 - - s_3155: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W or YMR162C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3818" - - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3114: -1 - - s_3157: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W or YMR162C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3819" - - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3115: -1 - - s_3159: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W or YMR162C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3820" - - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" - - metabolites: !!omap - - s_3116: -1 - - s_3161: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W or YMR162C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3821" - - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, Golgi membrane-ER membrane" - - metabolites: !!omap - - s_3148: -1 - - s_3181: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3822" - - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, Golgi membrane-ER membrane" - - metabolites: !!omap - - s_3150: -1 - - s_3185: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3823" - - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, Golgi membrane-ER membrane" - - metabolites: !!omap - - s_3152: -1 - - s_3187: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3824" - - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, Golgi membrane-ER membrane" - - metabolites: !!omap - - s_3154: -1 - - s_3189: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3825" - - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, Golgi membrane-ER membrane" - - metabolites: !!omap - - s_3156: -1 - - s_3191: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3826" - - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, Golgi membrane-ER membrane" - - metabolites: !!omap - - s_3158: -1 - - s_3193: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3827" - - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, Golgi membrane-ER membrane" - - metabolites: !!omap - - s_3160: -1 - - s_3195: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3828" - - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, Golgi membrane-ER membrane" - - metabolites: !!omap - - s_3162: -1 - - s_3197: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3829" - - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_2954: -1 - - s_2975: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3830" - - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_2956: -1 - - s_2981: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3831" - - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_2958: -1 - - s_2985: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3832" - - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_2960: -1 - - s_2989: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3833" - - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_2955: -1 - - s_2979: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3834" - - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_2957: -1 - - s_2983: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3835" - - name: "phosphatidate (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_2959: -1 - - s_2987: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3836" - - name: "phosphatidate (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_2961: -1 - - s_2991: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3837" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3118: -1 - - s_3340: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3838" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3119: -1 - - s_3344: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3839" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3120: -1 - - s_3346: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3840" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3121: -1 - - s_3348: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3841" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3122: -1 - - s_3350: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3842" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3123: -1 - - s_3352: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3843" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3124: -1 - - s_3354: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3844" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3125: -1 - - s_3356: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3845" - - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3109: -1 - - s_3163: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3846" - - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3110: -1 - - s_3167: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3847" - - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3111: -1 - - s_3169: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3848" - - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3112: -1 - - s_3171: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3849" - - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3113: -1 - - s_3173: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3850" - - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3114: -1 - - s_3175: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3851" - - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3115: -1 - - s_3177: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3852" - - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" - - metabolites: !!omap - - s_3116: -1 - - s_3179: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3853" - - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3166: -1 - - s_3181: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3854" - - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3168: -1 - - s_3185: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3855" - - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3170: -1 - - s_3187: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3856" - - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3172: -1 - - s_3189: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3857" - - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3174: -1 - - s_3191: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3858" - - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3176: -1 - - s_3193: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3859" - - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3178: -1 - - s_3195: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3860" - - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3180: -1 - - s_3197: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3861" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3392: -1 - - s_3560: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3862" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3393: -1 - - s_3561: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3863" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3394: -1 - - s_3562: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3864" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3395: -1 - - s_3563: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3865" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3396: -1 - - s_3564: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3866" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3397: -1 - - s_3565: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3867" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3398: -1 - - s_3566: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3868" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) transport, vacuolar membrane-ER membrane" - - metabolites: !!omap - - s_3399: -1 - - s_3567: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3869" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3118: -1 - - s_3323: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3870" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3119: -1 - - s_3326: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3871" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3120: -1 - - s_3328: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3872" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3121: -1 - - s_3330: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3873" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3122: -1 - - s_3332: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3874" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3123: -1 - - s_3334: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3875" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3124: -1 - - s_3336: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3876" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3125: -1 - - s_3338: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3877" - - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3207: -1 - - s_3448: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3878" - - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3208: -1 - - s_3452: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3879" - - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3209: -1 - - s_3454: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3880" - - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3210: -1 - - s_3456: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3881" - - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3211: -1 - - s_3458: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3882" - - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3212: -1 - - s_3460: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3883" - - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3213: -1 - - s_3461: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3884" - - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3214: -1 - - s_3462: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3885" - - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3181: -1 - - s_3465: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3886" - - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3185: -1 - - s_3467: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3887" - - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3187: -1 - - s_3469: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3888" - - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3189: -1 - - s_3471: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3889" - - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3191: -1 - - s_3473: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3890" - - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3193: -1 - - s_3474: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3891" - - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3195: -1 - - s_3475: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3892" - - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3197: -1 - - s_3476: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL026C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3893" - - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3109: -1 - - s_3478: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3894" - - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3110: -1 - - s_3480: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3895" - - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3111: -1 - - s_3482: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3896" - - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3112: -1 - - s_3484: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3897" - - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3113: -1 - - s_3486: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3898" - - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3114: -1 - - s_3487: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3899" - - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3115: -1 - - s_3488: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3900" - - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3116: -1 - - s_3489: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL048W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3901" - - name: "lignoceric acid transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_2864: -1 - - s_2869: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3721" + - name: "ergosteryl palmitoleate transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3443: -1 + - s_3656: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3722" + - name: "ergosteryl oleate transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3442: -1 + - s_3658: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3723" + - name: "episteryl palmitoleate transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3434: -1 + - s_3659: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3724" + - name: "episteryl oleate transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3433: -1 + - s_3661: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3725" + - name: "fecosteryl palmitoleate transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3437: -1 + - s_3662: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3726" + - name: "fecosteryl oleate transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3436: -1 + - s_3663: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3727" + - name: "lanosteryl palmitoleate transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3440: -1 + - s_3664: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3728" + - name: "lanosteryl oleate transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3439: -1 + - s_3666: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3729" + - name: "zymosteryl palmitoleate transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3446: -1 + - s_3667: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3730" + - name: "zymosteryl oleate transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3445: -1 + - s_3668: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3731" + - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3207: -1 + - s_3693: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3732" + - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3208: -1 + - s_3695: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3733" + - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3209: -1 + - s_3697: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3734" + - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3210: -1 + - s_3699: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3735" + - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3211: -1 + - s_3701: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3736" + - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3212: -1 + - s_3702: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3737" + - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3213: -1 + - s_3703: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3738" + - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3214: -1 + - s_3704: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3739" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3181: -1 + - s_3705: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3740" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3185: -1 + - s_3706: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3741" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3187: -1 + - s_3707: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3742" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3189: -1 + - s_3708: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3743" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3191: -1 + - s_3686: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3744" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3193: -1 + - s_3688: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3745" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3195: -1 + - s_3690: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3746" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3197: -1 + - s_3692: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3747" + - name: "1-acylglycerophosphocholine (16:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3428: -1 + - s_3694: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3748" + - name: "1-acylglycerophosphocholine (16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3429: -1 + - s_3696: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3749" + - name: "1-acylglycerophosphocholine (18:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3430: -1 + - s_3698: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3750" + - name: "1-acylglycerophosphocholine (18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3431: -1 + - s_3700: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3751" + - name: "1-acylglycerophosphoethanolamine (16:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3424: -1 + - s_3685: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3752" + - name: "1-acylglycerophosphoethanolamine (16:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3425: -1 + - s_3687: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3753" + - name: "1-acylglycerophosphoethanolamine (18:0) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3426: -1 + - s_3689: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3754" + - name: "1-acylglycerophosphoethanolamine (18:1) transport, ER membrane-lipid particle" + - metabolites: !!omap + - s_3427: -1 + - s_3691: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3755" + - name: "phosphatidate (1-16:0, 2-18:1) transport, lipid particle-ER membrane" + - metabolites: !!omap + - s_2955: 1 + - s_2962: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3756" + - name: "phosphatidate (1-16:1, 2-18:1) transport, lipid particle-ER membrane" + - metabolites: !!omap + - s_2957: 1 + - s_2963: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3757" + - name: "phosphatidate (1-18:0, 2-18:1) transport, lipid particle-ER membrane" + - metabolites: !!omap + - s_2959: 1 + - s_2964: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3758" + - name: "phosphatidate (1-18:1, 2-18:1) transport, lipid particle-ER membrane" + - metabolites: !!omap + - s_2961: 1 + - s_2965: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3759" + - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_2954: -1 + - s_3092: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3760" + - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_2956: -1 + - s_3097: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3761" + - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_2958: -1 + - s_3099: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3762" + - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_2960: -1 + - s_3101: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3763" + - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_2955: -1 + - s_3103: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3764" + - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_2957: -1 + - s_3105: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3765" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3109: -1 + - s_3128: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3766" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3110: -1 + - s_3131: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3767" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3111: -1 + - s_3133: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3768" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3112: -1 + - s_3135: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3769" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3113: -1 + - s_3137: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3770" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3114: -1 + - s_3139: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3771" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3115: -1 + - s_3141: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3772" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3116: -1 + - s_3143: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3773" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, mitochondrial membrane-ER membrane" + - metabolites: !!omap + - s_3130: -1 + - s_3181: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3774" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, mitochondrial membrane-ER membrane" + - metabolites: !!omap + - s_3132: -1 + - s_3185: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3775" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, mitochondrial membrane-ER membrane" + - metabolites: !!omap + - s_3134: -1 + - s_3187: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3776" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, mitochondrial membrane-ER membrane" + - metabolites: !!omap + - s_3136: -1 + - s_3189: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3777" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, mitochondrial membrane-ER membrane" + - metabolites: !!omap + - s_3138: -1 + - s_3191: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3778" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, mitochondrial membrane-ER membrane" + - metabolites: !!omap + - s_3140: -1 + - s_3193: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3779" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, mitochondrial membrane-ER membrane" + - metabolites: !!omap + - s_3142: -1 + - s_3195: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3780" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, mitochondrial membrane-ER membrane" + - metabolites: !!omap + - s_3144: -1 + - s_3197: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3781" + - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3207: -1 + - s_3296: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3782" + - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3208: -1 + - s_3298: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3783" + - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3209: -1 + - s_3300: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3784" + - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3210: -1 + - s_3302: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3785" + - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3211: -1 + - s_3304: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3786" + - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3212: -1 + - s_3305: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3787" + - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3213: -1 + - s_3306: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3788" + - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-mitochondrial membrane" + - metabolites: !!omap + - s_3214: -1 + - s_3307: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3789" + - name: "diglyceride (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2967: -1 + - s_2996: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3790" + - name: "diglyceride (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2969: -1 + - s_3000: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3791" + - name: "diglyceride (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2971: -1 + - s_3004: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3792" + - name: "diglyceride (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2973: -1 + - s_3008: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3793" + - name: "diglyceride (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2968: -1 + - s_2998: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3794" + - name: "diglyceride (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2970: -1 + - s_3002: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3795" + - name: "diglyceride (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2972: -1 + - s_3006: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3796" + - name: "diglyceride (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2974: -1 + - s_3010: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3797" + - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2954: -1 + - s_2993: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3798" + - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2956: -1 + - s_2999: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3799" + - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2958: -1 + - s_3003: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3800" + - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2960: -1 + - s_3007: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3801" + - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2955: -1 + - s_2997: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3802" + - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2957: -1 + - s_3001: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3803" + - name: "phosphatidate (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2959: -1 + - s_3005: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3804" + - name: "phosphatidate (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_2961: -1 + - s_3009: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3805" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3118: -1 + - s_3358: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3806" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3119: -1 + - s_3362: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3807" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3120: -1 + - s_3364: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3808" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3121: -1 + - s_3366: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3809" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3122: -1 + - s_3368: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3810" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3123: -1 + - s_3370: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3811" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3124: -1 + - s_3372: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3812" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3125: -1 + - s_3374: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3813" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3109: -1 + - s_3145: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W or YMR162C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3814" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3110: -1 + - s_3149: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W or YMR162C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3815" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3111: -1 + - s_3151: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W or YMR162C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3816" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3112: -1 + - s_3153: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W or YMR162C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3817" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3113: -1 + - s_3155: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W or YMR162C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3818" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3114: -1 + - s_3157: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W or YMR162C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3819" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3115: -1 + - s_3159: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W or YMR162C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3820" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" + - metabolites: !!omap + - s_3116: -1 + - s_3161: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W or YMR162C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3821" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, Golgi membrane-ER membrane" + - metabolites: !!omap + - s_3148: -1 + - s_3181: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3822" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, Golgi membrane-ER membrane" + - metabolites: !!omap + - s_3150: -1 + - s_3185: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3823" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, Golgi membrane-ER membrane" + - metabolites: !!omap + - s_3152: -1 + - s_3187: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3824" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, Golgi membrane-ER membrane" + - metabolites: !!omap + - s_3154: -1 + - s_3189: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3825" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, Golgi membrane-ER membrane" + - metabolites: !!omap + - s_3156: -1 + - s_3191: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3826" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, Golgi membrane-ER membrane" + - metabolites: !!omap + - s_3158: -1 + - s_3193: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3827" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, Golgi membrane-ER membrane" + - metabolites: !!omap + - s_3160: -1 + - s_3195: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3828" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, Golgi membrane-ER membrane" + - metabolites: !!omap + - s_3162: -1 + - s_3197: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3829" + - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_2954: -1 + - s_2975: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3830" + - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_2956: -1 + - s_2981: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3831" + - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_2958: -1 + - s_2985: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3832" + - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_2960: -1 + - s_2989: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3833" + - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_2955: -1 + - s_2979: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3834" + - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_2957: -1 + - s_2983: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3835" + - name: "phosphatidate (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_2959: -1 + - s_2987: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3836" + - name: "phosphatidate (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_2961: -1 + - s_2991: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3837" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3118: -1 + - s_3340: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3838" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3119: -1 + - s_3344: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3839" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3120: -1 + - s_3346: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3840" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3121: -1 + - s_3348: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3841" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3122: -1 + - s_3350: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3842" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3123: -1 + - s_3352: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3843" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3124: -1 + - s_3354: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3844" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3125: -1 + - s_3356: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3845" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3109: -1 + - s_3163: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3846" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3110: -1 + - s_3167: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3847" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3111: -1 + - s_3169: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3848" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3112: -1 + - s_3171: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3849" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3113: -1 + - s_3173: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3850" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3114: -1 + - s_3175: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3851" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3115: -1 + - s_3177: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3852" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" + - metabolites: !!omap + - s_3116: -1 + - s_3179: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3853" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3166: -1 + - s_3181: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3854" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3168: -1 + - s_3185: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3855" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3170: -1 + - s_3187: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3856" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3172: -1 + - s_3189: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3857" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3174: -1 + - s_3191: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3858" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3176: -1 + - s_3193: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3859" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3178: -1 + - s_3195: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3860" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3180: -1 + - s_3197: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3861" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3392: -1 + - s_3560: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3862" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3393: -1 + - s_3561: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3863" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3394: -1 + - s_3562: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3864" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3395: -1 + - s_3563: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3865" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3396: -1 + - s_3564: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3866" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3397: -1 + - s_3565: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3867" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3398: -1 + - s_3566: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3868" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) transport, vacuolar membrane-ER membrane" + - metabolites: !!omap + - s_3399: -1 + - s_3567: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3869" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3118: -1 + - s_3323: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3870" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3119: -1 + - s_3326: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3871" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3120: -1 + - s_3328: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3872" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3121: -1 + - s_3330: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3873" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3122: -1 + - s_3332: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3874" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3123: -1 + - s_3334: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3875" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3124: -1 + - s_3336: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3876" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3125: -1 + - s_3338: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3877" + - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3207: -1 + - s_3448: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3878" + - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3208: -1 + - s_3452: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3879" + - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3209: -1 + - s_3454: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3880" + - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3210: -1 + - s_3456: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3881" + - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3211: -1 + - s_3458: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3882" + - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3212: -1 + - s_3460: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3883" + - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3213: -1 + - s_3461: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3884" + - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3214: -1 + - s_3462: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3885" + - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3181: -1 + - s_3465: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3886" + - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3185: -1 + - s_3467: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3887" + - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3187: -1 + - s_3469: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3888" + - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3189: -1 + - s_3471: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3889" + - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3191: -1 + - s_3473: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3890" + - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3193: -1 + - s_3474: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3891" + - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3195: -1 + - s_3475: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3892" + - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3197: -1 + - s_3476: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL026C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3893" + - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3109: -1 + - s_3478: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3894" + - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3110: -1 + - s_3480: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3895" + - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3111: -1 + - s_3482: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3896" + - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3112: -1 + - s_3484: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3897" + - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3113: -1 + - s_3486: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3898" + - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3114: -1 + - s_3487: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3899" + - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3115: -1 + - s_3488: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3900" + - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3116: -1 + - s_3489: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL048W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_3901" + - name: "lignoceric acid transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_2864: -1 + - s_2869: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR128298" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3902" - - name: "cerotic acid transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_2866: -1 - - s_2870: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3902" + - name: "cerotic acid transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_2866: -1 + - s_2870: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR136128" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3903" - - name: "phosphatidate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_2954: 1 - - s_3527: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3904" - - name: "phosphatidate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_2956: 1 - - s_3528: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3905" - - name: "phosphatidate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_2958: 1 - - s_3529: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3906" - - name: "phosphatidate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_2960: 1 - - s_3530: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3907" - - name: "phosphatidate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_2955: 1 - - s_3531: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3908" - - name: "phosphatidate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_2957: 1 - - s_3532: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3909" - - name: "phosphatidate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_2959: 1 - - s_3533: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3910" - - name: "phosphatidate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_2961: 1 - - s_3534: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3911" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3325: -1 - - s_3584: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3912" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3327: -1 - - s_3585: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3913" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3329: -1 - - s_3586: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3914" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3331: -1 - - s_3587: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3915" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3333: -1 - - s_3588: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3916" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3335: -1 - - s_3589: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3917" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3337: -1 - - s_3590: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3918" - - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3339: -1 - - s_3591: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3919" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3408: -1 - - s_3608: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3920" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3409: -1 - - s_3609: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3921" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3410: -1 - - s_3610: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3922" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3411: -1 - - s_3611: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3923" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3412: -1 - - s_3612: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3924" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3413: -1 - - s_3613: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3925" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3414: -1 - - s_3614: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3926" - - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" - - metabolites: !!omap - - s_3415: -1 - - s_3615: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3927" - - name: "zymosteryl palmitoleate transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3446: -1 - - s_3669: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3928" - - name: "zymosteryl oleate transport, ER membrane-cell envelope" - - metabolites: !!omap - - s_3445: -1 - - s_3670: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3929" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-nucleus" - - metabolites: !!omap - - s_3118: -1 - - s_3376: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3930" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-nucleus" - - metabolites: !!omap - - s_3119: -1 - - s_3378: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3931" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-nucleus" - - metabolites: !!omap - - s_3120: -1 - - s_3380: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3932" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-nucleus" - - metabolites: !!omap - - s_3121: -1 - - s_3382: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3933" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-nucleus" - - metabolites: !!omap - - s_3122: -1 - - s_3384: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3934" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-nucleus" - - metabolites: !!omap - - s_3123: -1 - - s_3386: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3935" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-nucleus" - - metabolites: !!omap - - s_3124: -1 - - s_3388: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3936" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-nucleus" - - metabolites: !!omap - - s_3125: -1 - - s_3390: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3937" - - name: "lignoceric acid transport, ER membrane-ER" - - metabolites: !!omap - - s_1085: 1 - - s_2869: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3903" + - name: "phosphatidate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_2954: 1 + - s_3527: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3904" + - name: "phosphatidate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_2956: 1 + - s_3528: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3905" + - name: "phosphatidate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_2958: 1 + - s_3529: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3906" + - name: "phosphatidate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_2960: 1 + - s_3530: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3907" + - name: "phosphatidate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_2955: 1 + - s_3531: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3908" + - name: "phosphatidate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_2957: 1 + - s_3532: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3909" + - name: "phosphatidate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_2959: 1 + - s_3533: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3910" + - name: "phosphatidate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_2961: 1 + - s_3534: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3911" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3325: -1 + - s_3584: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3912" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3327: -1 + - s_3585: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3913" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3329: -1 + - s_3586: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3914" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3331: -1 + - s_3587: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3915" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3333: -1 + - s_3588: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3916" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3335: -1 + - s_3589: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3917" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3337: -1 + - s_3590: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3918" + - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3339: -1 + - s_3591: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3919" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3408: -1 + - s_3608: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3920" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3409: -1 + - s_3609: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3921" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3410: -1 + - s_3610: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3922" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3411: -1 + - s_3611: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3923" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3412: -1 + - s_3612: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3924" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3413: -1 + - s_3613: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3925" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3414: -1 + - s_3614: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3926" + - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" + - metabolites: !!omap + - s_3415: -1 + - s_3615: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3927" + - name: "zymosteryl palmitoleate transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3446: -1 + - s_3669: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3928" + - name: "zymosteryl oleate transport, ER membrane-cell envelope" + - metabolites: !!omap + - s_3445: -1 + - s_3670: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3929" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-nucleus" + - metabolites: !!omap + - s_3118: -1 + - s_3376: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3930" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-nucleus" + - metabolites: !!omap + - s_3119: -1 + - s_3378: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3931" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-nucleus" + - metabolites: !!omap + - s_3120: -1 + - s_3380: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3932" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-nucleus" + - metabolites: !!omap + - s_3121: -1 + - s_3382: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3933" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-nucleus" + - metabolites: !!omap + - s_3122: -1 + - s_3384: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3934" + - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-nucleus" + - metabolites: !!omap + - s_3123: -1 + - s_3386: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3935" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-nucleus" + - metabolites: !!omap + - s_3124: -1 + - s_3388: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3936" + - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-nucleus" + - metabolites: !!omap + - s_3125: -1 + - s_3390: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3937" + - name: "lignoceric acid transport, ER membrane-ER" + - metabolites: !!omap + - s_1085: 1 + - s_2869: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR128298" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3938" - - name: "cerotic acid transport, ER membrane-ER" - - metabolites: !!omap - - s_0507: 1 - - s_2870: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3938" + - name: "cerotic acid transport, ER membrane-ER" + - metabolites: !!omap + - s_0507: 1 + - s_2870: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR136128" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3939" - - name: "ergosterol transport, ER-ER membrane" - - metabolites: !!omap - - s_0667: -1 - - s_3441: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3939" + - name: "ergosterol transport, ER-ER membrane" + - metabolites: !!omap + - s_0667: -1 + - s_3441: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR97950" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3940" - - name: "phosphate transport, ER-ER membrane" - - metabolites: !!omap - - s_1323: -1 - - s_2966: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3940" + - name: "phosphate transport, ER-ER membrane" + - metabolites: !!omap + - s_1323: -1 + - s_2966: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3941" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) transport, vacuolar membrane-Golgi membrane" - - metabolites: !!omap - - s_3392: -1 - - s_3568: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3942" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) transport, vacuolar membrane-Golgi membrane" - - metabolites: !!omap - - s_3393: -1 - - s_3569: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3943" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) transport, vacuolar membrane-Golgi membrane" - - metabolites: !!omap - - s_3394: -1 - - s_3570: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3944" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) transport, vacuolar membrane-Golgi membrane" - - metabolites: !!omap - - s_3395: -1 - - s_3571: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3945" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) transport, vacuolar membrane-Golgi membrane" - - metabolites: !!omap - - s_3396: -1 - - s_3572: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3946" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) transport, vacuolar membrane-Golgi membrane" - - metabolites: !!omap - - s_3397: -1 - - s_3573: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3947" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) transport, vacuolar membrane-Golgi membrane" - - metabolites: !!omap - - s_3398: -1 - - s_3574: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3948" - - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) transport, vacuolar membrane-Golgi membrane" - - metabolites: !!omap - - s_3399: -1 - - s_3575: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3949" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) transport, vacuolar membrane-cell envelope" - - metabolites: !!omap - - s_3416: -1 - - s_3592: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3950" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) transport, vacuolar membrane-cell envelope" - - metabolites: !!omap - - s_3417: -1 - - s_3593: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3951" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) transport, vacuolar membrane-cell envelope" - - metabolites: !!omap - - s_3418: -1 - - s_3594: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3952" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) transport, vacuolar membrane-cell envelope" - - metabolites: !!omap - - s_3419: -1 - - s_3595: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3953" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) transport, vacuolar membrane-cell envelope" - - metabolites: !!omap - - s_3420: -1 - - s_3596: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3954" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) transport, vacuolar membrane-cell envelope" - - metabolites: !!omap - - s_3421: -1 - - s_3597: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3955" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) transport, vacuolar membrane-cell envelope" - - metabolites: !!omap - - s_3422: -1 - - s_3598: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3956" - - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) transport, vacuolar membrane-cell envelope" - - metabolites: !!omap - - s_3423: -1 - - s_3599: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3957" - - name: "H+ transport, mitochondrion-mitochondrial membrane" - - metabolites: !!omap - - s_0799: -1 - - s_3094: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3941" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) transport, vacuolar membrane-Golgi membrane" + - metabolites: !!omap + - s_3392: -1 + - s_3568: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3942" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) transport, vacuolar membrane-Golgi membrane" + - metabolites: !!omap + - s_3393: -1 + - s_3569: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3943" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) transport, vacuolar membrane-Golgi membrane" + - metabolites: !!omap + - s_3394: -1 + - s_3570: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3944" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) transport, vacuolar membrane-Golgi membrane" + - metabolites: !!omap + - s_3395: -1 + - s_3571: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3945" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) transport, vacuolar membrane-Golgi membrane" + - metabolites: !!omap + - s_3396: -1 + - s_3572: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3946" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) transport, vacuolar membrane-Golgi membrane" + - metabolites: !!omap + - s_3397: -1 + - s_3573: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3947" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) transport, vacuolar membrane-Golgi membrane" + - metabolites: !!omap + - s_3398: -1 + - s_3574: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3948" + - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) transport, vacuolar membrane-Golgi membrane" + - metabolites: !!omap + - s_3399: -1 + - s_3575: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3949" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) transport, vacuolar membrane-cell envelope" + - metabolites: !!omap + - s_3416: -1 + - s_3592: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3950" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) transport, vacuolar membrane-cell envelope" + - metabolites: !!omap + - s_3417: -1 + - s_3593: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3951" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) transport, vacuolar membrane-cell envelope" + - metabolites: !!omap + - s_3418: -1 + - s_3594: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3952" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) transport, vacuolar membrane-cell envelope" + - metabolites: !!omap + - s_3419: -1 + - s_3595: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3953" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) transport, vacuolar membrane-cell envelope" + - metabolites: !!omap + - s_3420: -1 + - s_3596: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3954" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) transport, vacuolar membrane-cell envelope" + - metabolites: !!omap + - s_3421: -1 + - s_3597: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3955" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) transport, vacuolar membrane-cell envelope" + - metabolites: !!omap + - s_3422: -1 + - s_3598: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3956" + - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) transport, vacuolar membrane-cell envelope" + - metabolites: !!omap + - s_3423: -1 + - s_3599: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_3957" + - name: "H+ transport, mitochondrion-mitochondrial membrane" + - metabolites: !!omap + - s_0799: -1 + - s_3094: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3958" - - name: "glycerol 3-phosphate transport, mitochondrion-mitochondrial membrane" - - metabolites: !!omap - - s_0770: -1 - - s_3218: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3958" + - name: "glycerol 3-phosphate transport, mitochondrion-mitochondrial membrane" + - metabolites: !!omap + - s_0770: -1 + - s_3218: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100308" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3959" - - name: "CMP transport, mitochondrion-mitochondrial membrane" - - metabolites: !!omap - - s_0528: -1 - - s_3219: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR192W" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3959" + - name: "CMP transport, mitochondrion-mitochondrial membrane" + - metabolites: !!omap + - s_0528: -1 + - s_3219: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR192W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96806" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3960" - - name: "CTP transport, mitochondrion-mitochondrial membrane" - - metabolites: !!omap - - s_0541: -1 - - s_3093: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR192W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_3960" + - name: "CTP transport, mitochondrion-mitochondrial membrane" + - metabolites: !!omap + - s_0541: -1 + - s_3093: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR192W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96946" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3961" - - name: "phosphate transport, mitochondrion-mitochondrial membrane" - - metabolites: !!omap - - s_1326: -1 - - s_3228: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER053C or YJR077C or YLR348C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_3961" + - name: "phosphate transport, mitochondrion-mitochondrial membrane" + - metabolites: !!omap + - s_1326: -1 + - s_3228: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER053C or YJR077C or YLR348C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_3962" - - name: "diphosphate transport, mitochondrion-mitochondrial membrane" - - metabolites: !!omap - - s_0636: -1 - - s_3095: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_3962" + - name: "diphosphate transport, mitochondrion-mitochondrial membrane" + - metabolites: !!omap + - s_0636: -1 + - s_3095: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR103112" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_3963" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) [cytoplasm] SLIME rxn" - - metabolites: !!omap - - s_0089: 0.80903 - - s_3545: -1 - - s_3740: 0.25643 - - s_3741: 0.25441 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3964" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) [cytoplasm] SLIME rxn" - - metabolites: !!omap - - s_0089: 0.80701 - - s_3547: -1 - - s_3741: 0.50883 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3965" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) [cytoplasm] SLIME rxn" - - metabolites: !!omap - - s_0089: 0.83708 - - s_3549: -1 - - s_3741: 0.25441 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3966" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) [cytoplasm] SLIME rxn" - - metabolites: !!omap - - s_0089: 0.83507 - - s_3551: -1 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3967" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) [cytoplasm] SLIME rxn" - - metabolites: !!omap - - s_0089: 0.83708 - - s_3553: -1 - - s_3740: 0.25643 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3968" - - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) [cytoplasm] SLIME rxn" - - metabolites: !!omap - - s_0089: 0.83507 - - s_3555: -1 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3969" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) [cytoplasm] SLIME rxn" - - metabolites: !!omap - - s_0089: 0.86514 - - s_3557: -1 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3970" - - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) [cytoplasm] SLIME rxn" - - metabolites: !!omap - - s_0089: 0.86312 - - s_3559: -1 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3971" - - name: "ergosteryl palmitoleate [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3443: -1 - - s_3709: 0.63305 - - s_3741: 0.25441 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3972" - - name: "ergosteryl oleate [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3442: -1 - - s_3709: 0.66111 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3973" - - name: "ergosterol ester transport, ER membrane-cytoplasm" - - metabolites: !!omap - - s_0672: 1 - - s_3709: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_3975" - - name: "palmitate [cytoplasm] SLIME rxn" - - metabolites: !!omap - - s_0694: 0.25542 - - s_1286: -1 - - s_3740: 0.25643 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3976" - - name: "palmitoleate [cytoplasm] SLIME rxn" - - metabolites: !!omap - - s_0694: 0.25341 - - s_1293: -1 - - s_3741: 0.25441 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3977" - - name: "stearate [cytoplasm] SLIME rxn" - - metabolites: !!omap - - s_0694: 0.28347 - - s_1449: -1 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3978" - - name: "oleate [cytoplasm] SLIME rxn" - - metabolites: !!omap - - s_0694: 0.28146 - - s_1260: -1 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3979" - - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3109: -1 - - s_3710: 0.73396 - - s_3740: 0.25643 - - s_3741: 0.25441 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3980" - - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3110: -1 - - s_3710: 0.73195 - - s_3741: 0.50883 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3981" - - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3111: -1 - - s_3710: 0.76202 - - s_3741: 0.25441 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3982" - - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3112: -1 - - s_3710: 0.76 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3983" - - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3113: -1 - - s_3710: 0.76202 - - s_3740: 0.25643 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3984" - - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3114: -1 - - s_3710: 0.76 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3985" - - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3115: -1 - - s_3710: 0.79007 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3986" - - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3116: -1 - - s_3710: 0.78806 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3987" - - name: "phosphatidyl-L-serine transport, ER membrane-cytoplasm" - - metabolites: !!omap - - s_1337: 1 - - s_3710: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_3973" + - name: "ergosterol ester transport, ER membrane-cytoplasm" + - metabolites: !!omap + - s_0672: 1 + - s_3709: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_3987" + - name: "phosphatidyl-L-serine transport, ER membrane-cytoplasm" + - metabolites: !!omap + - s_1337: 1 + - s_3710: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR103315" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_3988" - - name: "phosphatidylcholine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3207: -1 - - s_3711: 0.73204 - - s_3740: 0.25643 - - s_3741: 0.25441 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3989" - - name: "phosphatidylcholine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3208: -1 - - s_3711: 0.73002 - - s_3741: 0.50883 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3990" - - name: "phosphatidylcholine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3209: -1 - - s_3711: 0.74409 - - s_3741: 0.25441 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3991" - - name: "phosphatidylcholine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3210: -1 - - s_3711: 0.74207 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3992" - - name: "phosphatidylcholine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3211: -1 - - s_3711: 0.76009 - - s_3740: 0.25643 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3993" - - name: "phosphatidylcholine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3212: -1 - - s_3711: 0.75807 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3994" - - name: "phosphatidylcholine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3213: -1 - - s_3711: 0.77214 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3995" - - name: "phosphatidylcholine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3214: -1 - - s_3711: 0.77013 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3996" - - name: "phosphatidylcholine transport, ER membrane-cytoplasm" - - metabolites: !!omap - - s_1346: 1 - - s_3711: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_3996" + - name: "phosphatidylcholine transport, ER membrane-cytoplasm" + - metabolites: !!omap + - s_1346: 1 + - s_3711: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR102406" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_3997" - - name: "phosphatidylethanolamine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3181: -1 - - s_3712: 0.68995 - - s_3740: 0.25643 - - s_3741: 0.25441 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3998" - - name: "phosphatidylethanolamine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3185: -1 - - s_3712: 0.68794 - - s_3741: 0.50883 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_3999" - - name: "phosphatidylethanolamine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3187: -1 - - s_3712: 0.71801 - - s_3741: 0.25441 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4000" - - name: "phosphatidylethanolamine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3189: -1 - - s_3712: 0.71599 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4001" - - name: "phosphatidylethanolamine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3191: -1 - - s_3712: 0.71801 - - s_3740: 0.25643 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4002" - - name: "phosphatidylethanolamine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3193: -1 - - s_3712: 0.71599 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4003" - - name: "phosphatidylethanolamine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3195: -1 - - s_3712: 0.74606 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4004" - - name: "phosphatidylethanolamine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3197: -1 - - s_3712: 0.74405 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4005" - - name: "phosphatidylethanolamine transport, ER membrane-cytoplasm" - - metabolites: !!omap - - s_1351: 1 - - s_3712: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4005" + - name: "phosphatidylethanolamine transport, ER membrane-cytoplasm" + - metabolites: !!omap + - s_1351: 1 + - s_3712: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR102505" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4006" - - name: "triglyceride (1-16:0, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3011: -1 - - s_3713: 0.80532 - - s_3740: 0.51286 - - s_3741: 0.25441 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4007" - - name: "triglyceride (1-16:0, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3012: -1 - - s_3713: 0.83337 - - s_3740: 0.51286 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4008" - - name: "triglyceride (1-16:1, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3013: -1 - - s_3713: 0.8033 - - s_3740: 0.25643 - - s_3741: 0.50883 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4009" - - name: "triglyceride (1-16:1, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3014: -1 - - s_3713: 0.83136 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4010" - - name: "triglyceride (1-18:0, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3015: -1 - - s_3713: 0.83337 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4011" - - name: "triglyceride (1-18:0, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3016: -1 - - s_3713: 0.86143 - - s_3740: 0.25643 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4012" - - name: "triglyceride (1-18:1, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3017: -1 - - s_3713: 0.83136 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4013" - - name: "triglyceride (1-18:1, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3018: -1 - - s_3713: 0.85941 - - s_3740: 0.25643 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4014" - - name: "triglyceride (1-16:0, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3019: -1 - - s_3713: 0.8033 - - s_3740: 0.25643 - - s_3741: 0.50883 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4015" - - name: "triglyceride (1-16:0, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3020: -1 - - s_3713: 0.83136 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4016" - - name: "triglyceride (1-16:1, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3021: -1 - - s_3713: 0.80129 - - s_3741: 0.76324 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4017" - - name: "triglyceride (1-16:1, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3022: -1 - - s_3713: 0.82934 - - s_3741: 0.50883 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4018" - - name: "triglyceride (1-18:0, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3023: -1 - - s_3713: 0.83136 - - s_3741: 0.50883 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4019" - - name: "triglyceride (1-18:0, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3024: -1 - - s_3713: 0.85941 - - s_3741: 0.25441 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4020" - - name: "triglyceride (1-18:1, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3025: -1 - - s_3713: 0.82934 - - s_3741: 0.50883 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4021" - - name: "triglyceride (1-18:1, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3026: -1 - - s_3713: 0.8574 - - s_3741: 0.25441 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4022" - - name: "triglyceride (1-16:0, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3027: -1 - - s_3713: 0.83337 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4023" - - name: "triglyceride (1-16:0, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3028: -1 - - s_3713: 0.86143 - - s_3740: 0.25643 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4024" - - name: "triglyceride (1-16:1, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3029: -1 - - s_3713: 0.83136 - - s_3741: 0.50883 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4025" - - name: "triglyceride (1-16:1, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3030: -1 - - s_3713: 0.85941 - - s_3741: 0.25441 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4026" - - name: "triglyceride (1-18:0, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3031: -1 - - s_3713: 0.86143 - - s_3741: 0.25441 - - s_3742: 0.56897 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4027" - - name: "triglyceride (1-18:0, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3032: -1 - - s_3713: 0.88948 - - s_3742: 0.56897 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4028" - - name: "triglyceride (1-18:1, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3033: -1 - - s_3713: 0.85941 - - s_3741: 0.25441 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4029" - - name: "triglyceride (1-18:1, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3034: -1 - - s_3713: 0.88747 - - s_3742: 0.28448 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4030" - - name: "triglyceride (1-16:0, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3035: -1 - - s_3713: 0.83136 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4031" - - name: "triglyceride (1-16:0, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3036: -1 - - s_3713: 0.85941 - - s_3740: 0.25643 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4032" - - name: "triglyceride (1-16:1, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3037: -1 - - s_3713: 0.82934 - - s_3741: 0.50883 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4033" - - name: "triglyceride (1-16:1, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3038: -1 - - s_3713: 0.8574 - - s_3741: 0.25441 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4034" - - name: "triglyceride (1-18:0, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3039: -1 - - s_3713: 0.85941 - - s_3741: 0.25441 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4035" - - name: "triglyceride (1-18:0, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3040: -1 - - s_3713: 0.88747 - - s_3742: 0.28448 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4036" - - name: "triglyceride (1-18:1, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3041: -1 - - s_3713: 0.8574 - - s_3741: 0.25441 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4037" - - name: "triglyceride (1-18:1, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3042: -1 - - s_3713: 0.88545 - - s_3743: 0.8474 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4038" - - name: "triglyceride transport, ER membrane-cytoplasm" - - metabolites: !!omap - - s_1524: 1 - - s_3713: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4038" + - name: "triglyceride transport, ER membrane-cytoplasm" + - metabolites: !!omap + - s_1524: 1 + - s_3713: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR104713" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4039" - - name: "succinyl-CoA:acetate CoA transferase" - - metabolites: !!omap - - s_0365: -1 - - s_0376: 1 - - s_1460: 1 - - s_1464: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBL015W" - - annotation: !!omap - - ec-code: "3.1.2.1" - - kegg.pathway: "sce00620" - - kegg.reaction: "R10343" - - metanetx.reaction: "MNXR104636" - - pmid: "19298859" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_4040" - - name: "heme a transport" - - metabolites: !!omap - - s_0811: -1 - - s_3714: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4041" - - name: "biomass pseudoreaction" - - metabolites: !!omap - - s_0394: 55.3 - - s_0434: -55.3 - - s_0450: 1 - - s_0794: 55.3 - - s_0803: -55.3 - - s_1096: -1 - - s_1322: 55.3 - - s_3717: -1 - - s_3718: -1 - - s_3719: -1 - - s_3720: -1 - - s_4205: -1 - - s_4206: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000629" - - confidence_score: 1 - - !!omap - - id: "r_4042" - - name: "raffinose invertase" - - metabolites: !!omap - - s_0554: 1 - - s_0805: -1 - - s_3715: -1 - - s_3716: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - kegg.reaction: "R02410" - - metanetx.reaction: "MNXR103420" - - pmid: "4967422" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_4043" - - name: "raffinose exchange" - - metabolites: !!omap - - s_3715: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4040" + - name: "heme a transport" + - metabolites: !!omap + - s_0811: -1 + - s_3714: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 + - !!omap + - id: "r_4043" + - name: "raffinose exchange" + - metabolites: !!omap + - s_3715: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_raffin_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4044" - - name: "melibiose exchange" - - metabolites: !!omap - - s_3716: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4044" + - name: "melibiose exchange" + - metabolites: !!omap + - s_3716: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_melib_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4045" - - name: "uridine hydrolase" - - metabolites: !!omap - - s_0575: 1 - - s_0803: -1 - - s_1550: 1 - - s_1556: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR400W" - - annotation: !!omap - - ec-code: "3.2.2.3" - - bigg.reaction: "URIH" - - kegg.pathway: - - "sce00240" - - "sce00760" - - kegg.reaction: "R01080" - - metanetx.reaction: "MNXR105161" - - pmid: "23670538" - - sbo: "SBO:0000176" - - confidence_score: 3 - - !!omap - - id: "r_4046" - - name: "non-growth associated maintenance reaction" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0.7 - - upper_bound: 0.7 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4041" + - name: "biomass pseudoreaction" + - metabolites: !!omap + - s_0394: 55.3 + - s_0434: -55.3 + - s_0450: 1 + - s_0794: 55.3 + - s_0803: -55.3 + - s_1096: -1 + - s_1322: 55.3 + - s_3717: -1 + - s_3718: -1 + - s_3719: -1 + - s_3720: -1 + - s_4205: -1 + - s_4206: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000629" + - confidence_score: 1 + - !!omap + - id: "r_4046" + - name: "non-growth associated maintenance reaction" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0.7 + - upper_bound: 0.7 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "ATPM" - sbo: "SBO:0000630" - - confidence_score: 0 - - !!omap - - id: "r_4047" - - name: "protein pseudoreaction" - - metabolites: !!omap - - s_0404: -0.52701 - - s_0428: -0.18459 - - s_0430: -0.11682 - - s_0432: -0.34173 - - s_0542: -0.0075813 - - s_0747: -0.12107 - - s_0748: -0.34667 - - s_0757: -0.33358 - - s_0832: -0.076157 - - s_0847: -0.22135 - - s_1077: -0.34047 - - s_1099: -0.32875 - - s_1148: -0.058238 - - s_1314: -0.15381 - - s_1379: -0.18919 - - s_1428: -0.21296 - - s_1491: -0.21986 - - s_1527: -0.032622 - - s_1533: -0.11716 - - s_1561: -0.30394 - - s_1582: 0.52701 - - s_1583: 0.18459 - - s_1585: 0.11682 - - s_1587: 0.34173 - - s_1589: 0.0075813 - - s_1590: 0.12107 - - s_1591: 0.34667 - - s_1593: 0.33358 - - s_1594: 0.076157 - - s_1596: 0.22135 - - s_1598: 0.34047 - - s_1600: 0.32875 - - s_1602: 0.058238 - - s_1604: 0.15381 - - s_1606: 0.18919 - - s_1607: 0.21296 - - s_1608: 0.21986 - - s_1610: 0.032622 - - s_1612: 0.11716 - - s_1614: 0.30394 - - s_3717: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4047" + - name: "protein pseudoreaction" + - metabolites: !!omap + - s_0404: -0.527012401965 + - s_0428: -0.184592178971 + - s_0430: -0.116820320233 + - s_0432: -0.341731040134 + - s_0542: -0.00758125964441 + - s_0747: -0.121070423838 + - s_0748: -0.346670343715 + - s_0757: -0.333575424354 + - s_0832: -0.0761571964321 + - s_0847: -0.221349807714 + - s_1077: -0.340467492581 + - s_1099: -0.328750973172 + - s_1148: -0.0582378601226 + - s_1314: -0.153807679448 + - s_1379: -0.189186891122 + - s_1428: -0.21296447002 + - s_1491: -0.219856538246 + - s_1527: -0.0326223903741 + - s_1533: -0.117164920221 + - s_1561: -0.303939602869 + - s_1582: 0.527012401965 + - s_1583: 0.184592178971 + - s_1585: 0.116820320233 + - s_1587: 0.341731040134 + - s_1589: 0.00758125964441 + - s_1590: 0.121070423838 + - s_1591: 0.346670343715 + - s_1593: 0.333575424354 + - s_1594: 0.0761571964321 + - s_1596: 0.221349807714 + - s_1598: 0.340467492581 + - s_1600: 0.328750973172 + - s_1602: 0.0582378601226 + - s_1604: 0.153807679448 + - s_1606: 0.189186891122 + - s_1607: 0.21296447002 + - s_1608: 0.219856538246 + - s_1610: 0.0326223903741 + - s_1612: 0.117164920221 + - s_1614: 0.303939602869 + - s_3717: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4048" - - name: "carbohydrate pseudoreaction" - - metabolites: !!omap - - s_0001: -0.74851 - - s_0004: -0.25009 - - s_0773: -0.36141 - - s_1107: -0.71094 - - s_1520: -0.13828 - - s_3718: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4048" + - name: "carbohydrate pseudoreaction" + - metabolites: !!omap + - s_0001: -0.748514964335 + - s_0004: -0.250091654489 + - s_0773: -0.361414527576 + - s_1107: -0.71093962537 + - s_1520: -0.138275712087 + - s_3718: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4049" - - name: "RNA pseudoreaction" - - metabolites: !!omap - - s_0423: -0.044535 - - s_0526: -0.043276 - - s_0782: -0.044535 - - s_1545: -0.057992 - - s_3719: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4049" + - name: "RNA pseudoreaction" + - metabolites: !!omap + - s_0423: -0.0445348319234 + - s_0526: -0.0432762391845 + - s_0782: -0.0445348319234 + - s_1545: -0.0579920969092 + - s_3719: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4050" - - name: "DNA pseudoreaction" - - metabolites: !!omap - - s_0584: -0.0036 - - s_0589: -0.0024 - - s_0615: -0.0024 - - s_0649: -0.0036 - - s_3720: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4050" + - name: "DNA pseudoreaction" + - metabolites: !!omap + - s_0584: -0.00359999993816 + - s_0589: -0.00240000011399 + - s_0615: -0.00240000011399 + - s_0649: -0.00359999993816 + - s_3720: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4051" - - name: "ceramide transport" - - metabolites: !!omap - - s_3721: -1 - - s_3722: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4052" - - name: "inositol phosphomannosylinositol phosphoceramide transport" - - metabolites: !!omap - - s_0859: -1 - - s_3723: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4053" - - name: "inositol-P-ceramide transport" - - metabolites: !!omap - - s_0892: -1 - - s_3724: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4054" - - name: "mannosylinositol phosphorylceramide transport" - - metabolites: !!omap - - s_1114: -1 - - s_3725: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4055" - - name: "long-chain base transport" - - metabolites: !!omap - - s_3726: -1 - - s_3727: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4056" - - name: "long-chain base phosphate transport" - - metabolites: !!omap - - s_3728: -1 - - s_3729: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4057" - - name: "phosphatidate transport" - - metabolites: !!omap - - s_3730: -1 - - s_3731: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4058" - - name: "diglyceride transport" - - metabolites: !!omap - - s_3732: -1 - - s_3733: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4059" - - name: "sn-2-acyl-1-lysophosphatidylinositol transport" - - metabolites: !!omap - - s_3734: -1 - - s_3735: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4060" - - name: "phosphatidylglycerol transport" - - metabolites: !!omap - - s_3736: -1 - - s_3737: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4061" - - name: "cardiolipin transport" - - metabolites: !!omap - - s_3738: -1 - - s_3739: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4062" - - name: "lipid backbone exchange" - - metabolites: !!omap - - s_3746: -1 - - lower_bound: 0 - - upper_bound: 0 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4051" + - name: "ceramide transport" + - metabolites: !!omap + - s_3721: -1 + - s_3722: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4052" + - name: "inositol phosphomannosylinositol phosphoceramide transport" + - metabolites: !!omap + - s_0859: -1 + - s_3723: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4053" + - name: "inositol-P-ceramide transport" + - metabolites: !!omap + - s_0892: -1 + - s_3724: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4054" + - name: "mannosylinositol phosphorylceramide transport" + - metabolites: !!omap + - s_1114: -1 + - s_3725: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4055" + - name: "long-chain base transport" + - metabolites: !!omap + - s_3726: -1 + - s_3727: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4056" + - name: "long-chain base phosphate transport" + - metabolites: !!omap + - s_3728: -1 + - s_3729: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4057" + - name: "phosphatidate transport" + - metabolites: !!omap + - s_3730: -1 + - s_3731: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4058" + - name: "diglyceride transport" + - metabolites: !!omap + - s_3732: -1 + - s_3733: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4059" + - name: "sn-2-acyl-1-lysophosphatidylinositol transport" + - metabolites: !!omap + - s_3734: -1 + - s_3735: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4060" + - name: "phosphatidylglycerol transport" + - metabolites: !!omap + - s_3736: -1 + - s_3737: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4061" + - name: "cardiolipin transport" + - metabolites: !!omap + - s_3738: -1 + - s_3739: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4062" + - name: "lipid backbone exchange" + - metabolites: !!omap + - s_3746: -1 + - lower_bound: 0 + - upper_bound: 0 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000632" - - !!omap - - id: "r_4063" - - name: "lipid backbone pseudoreaction" - - metabolites: !!omap - - s_0089: -0.0069103 - - s_0666: -0.026583 - - s_0672: -0.0068058 - - s_0694: -0.0014801 - - s_1337: -0.0059508 - - s_1346: -0.025783 - - s_1351: -0.0069293 - - s_1524: -0.0068571 - - s_3746: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4063" + - name: "lipid backbone pseudoreaction" + - metabolites: !!omap + - s_0089: -0.00691029997543 + - s_0666: -0.0265829002485 + - s_0672: -0.00680580006447 + - s_0694: -0.00148009998957 + - s_1337: -0.00595080018975 + - s_1346: -0.0257830007933 + - s_1351: -0.0069293001201 + - s_1524: -0.00685710001271 + - s_3746: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4064" - - name: "lipid chain exchange" - - metabolites: !!omap - - s_3747: -1 - - lower_bound: 0 - - upper_bound: 0 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4064" + - name: "lipid chain exchange" + - metabolites: !!omap + - s_3747: -1 + - lower_bound: 0 + - upper_bound: 0 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000632" - - !!omap - - id: "r_4065" - - name: "lipid chain pseudoreaction" - - metabolites: !!omap - - s_3740: -0.0080858 - - s_3741: -0.02373 - - s_3742: -0.0022663 - - s_3743: -0.0087066 - - s_3747: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4065" + - name: "lipid chain pseudoreaction" + - metabolites: !!omap + - s_3740: -0.00808584038168 + - s_3741: -0.0237302090973 + - s_3742: -0.00226631597616 + - s_3743: -0.0087066385895 + - s_3747: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4066" - - name: "ceramide-1 (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0476: -1 - - s_3721: 0.65214 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4066" + - name: "ceramide-1 (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0476: -1 + - s_3721: 0.65214184 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4067" - - name: "ceramide-1 (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0479: -1 - - s_3721: 0.6802 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4067" + - name: "ceramide-1 (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0479: -1 + - s_3721: 0.6801956 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4068" - - name: "ceramide-2 (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0482: -1 - - s_3721: 0.66814 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4068" + - name: "ceramide-2 (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0482: -1 + - s_3721: 0.66814124 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4069" - - name: "ceramide-2 (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0485: -1 - - s_3721: 0.6962 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4069" + - name: "ceramide-2 (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0485: -1 + - s_3721: 0.696195 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4070" - - name: "ceramide-2' (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0488: -1 - - s_3721: 0.66814 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4070" + - name: "ceramide-2' (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0488: -1 + - s_3721: 0.66814124 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4071" - - name: "ceramide-2' (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0491: -1 - - s_3721: 0.6962 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4071" + - name: "ceramide-2' (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0491: -1 + - s_3721: 0.696195 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4072" - - name: "ceramide-3 (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0494: -1 - - s_3721: 0.68414 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4072" + - name: "ceramide-3 (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0494: -1 + - s_3721: 0.68414064 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4073" - - name: "ceramide-3 (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0497: -1 - - s_3721: 0.71219 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4073" + - name: "ceramide-3 (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0497: -1 + - s_3721: 0.7121944 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4074" - - name: "ceramide-4 (C24) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0500: -1 - - s_3721: 0.70014 - - s_3742: 0.28448 - - s_3744: 0.36864 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4074" + - name: "ceramide-4 (C24) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0500: -1 + - s_3721: 0.70014004 + - s_3742: 0.28448264 + - s_3744: 0.36864392 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4075" - - name: "ceramide-4 (C26) [Golgi] SLIME rxn" - - metabolites: !!omap - - s_0503: -1 - - s_3721: 0.72819 - - s_3742: 0.28448 - - s_3745: 0.3967 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4075" + - name: "ceramide-4 (C26) [Golgi] SLIME rxn" + - metabolites: !!omap + - s_0503: -1 + - s_3721: 0.7281938 + - s_3742: 0.28448264 + - s_3745: 0.39669768 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4076" - - name: "phytosphingosine [endoplasmic reticulum] SLIME rxn" - - metabolites: !!omap - - s_1366: -1 - - s_3726: 0.31751 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4076" + - name: "phytosphingosine [endoplasmic reticulum] SLIME rxn" + - metabolites: !!omap + - s_1366: -1 + - s_3726: 0.3175126 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4077" - - name: "phytosphingosine 1-phosphate [endoplasmic reticulum] SLIME rxn" - - metabolites: !!omap - - s_1367: -1 - - s_3728: 0.39749 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4077" + - name: "phytosphingosine 1-phosphate [endoplasmic reticulum] SLIME rxn" + - metabolites: !!omap + - s_1367: -1 + - s_3728: 0.397492502 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4078" - - name: "sphinganine [endoplasmic reticulum] SLIME rxn" - - metabolites: !!omap - - s_1445: -1 - - s_3726: 0.30252 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4078" + - name: "sphinganine [endoplasmic reticulum] SLIME rxn" + - metabolites: !!omap + - s_1445: -1 + - s_3726: 0.30252114 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4079" - - name: "sphinganine 1-phosphate [endoplasmic reticulum] SLIME rxn" - - metabolites: !!omap - - s_1446: -1 - - s_3728: 0.38049 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4079" + - name: "sphinganine 1-phosphate [endoplasmic reticulum] SLIME rxn" + - metabolites: !!omap + - s_1446: -1 + - s_3728: 0.380485162 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4080" - - name: "phosphatidate (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2954: -1 - - s_3730: 0.64487 - - s_3740: 0.25643 - - s_3741: 0.25441 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4080" + - name: "phosphatidate (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2954: -1 + - s_3730: 0.644870062 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4081" - - name: "phosphatidate (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2955: -1 - - s_3730: 0.67494 - - s_3740: 0.25643 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4081" + - name: "phosphatidate (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2955: -1 + - s_3730: 0.674939702 + - s_3740: 0.25642888 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4082" - - name: "phosphatidate (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2956: -1 - - s_3730: 0.64487 - - s_3741: 0.50883 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4082" + - name: "phosphatidate (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2956: -1 + - s_3730: 0.644870062 + - s_3741: 0.508826 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4083" - - name: "phosphatidate (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2957: -1 - - s_3730: 0.67292 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4083" + - name: "phosphatidate (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2957: -1 + - s_3730: 0.672923822 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4084" - - name: "phosphatidate (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2958: -1 - - s_3730: 0.67494 - - s_3741: 0.25441 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4084" + - name: "phosphatidate (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2958: -1 + - s_3730: 0.674939702 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4085" - - name: "phosphatidate (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2959: -1 - - s_3730: 0.70299 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4085" + - name: "phosphatidate (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2959: -1 + - s_3730: 0.702993462 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4086" - - name: "phosphatidate (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2960: -1 - - s_3730: 0.67292 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4086" + - name: "phosphatidate (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2960: -1 + - s_3730: 0.672923822 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4087" - - name: "phosphatidate (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2961: -1 - - s_3730: 0.70098 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4087" + - name: "phosphatidate (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2961: -1 + - s_3730: 0.700977582 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4088" - - name: "diglyceride (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2967: -1 - - s_3732: 0.56892 - - s_3740: 0.25643 - - s_3741: 0.25441 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4088" + - name: "diglyceride (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2967: -1 + - s_3732: 0.56892192 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4089" - - name: "diglyceride (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2968: -1 - - s_3732: 0.59496 - - s_3740: 0.25643 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4089" + - name: "diglyceride (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2968: -1 + - s_3732: 0.5949598 + - s_3740: 0.25642888 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4090" - - name: "diglyceride (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2969: -1 - - s_3732: 0.56489 - - s_3741: 0.50883 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4090" + - name: "diglyceride (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2969: -1 + - s_3732: 0.56489016 + - s_3741: 0.508826 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4091" - - name: "diglyceride (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2970: -1 - - s_3732: 0.59294 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4091" + - name: "diglyceride (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2970: -1 + - s_3732: 0.59294392 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4092" - - name: "diglyceride (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2971: -1 - - s_3732: 0.59496 - - s_3741: 0.25441 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4092" + - name: "diglyceride (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2971: -1 + - s_3732: 0.5949598 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4093" - - name: "diglyceride (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2972: -1 - - s_3732: 0.62301 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4093" + - name: "diglyceride (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2972: -1 + - s_3732: 0.62301356 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4094" - - name: "diglyceride (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2973: -1 - - s_3732: 0.59294 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4094" + - name: "diglyceride (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2973: -1 + - s_3732: 0.59294392 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4095" - - name: "diglyceride (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_2974: -1 - - s_3732: 0.621 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4095" + - name: "diglyceride (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_2974: -1 + - s_3732: 0.62099768 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4096" - - name: "sn-2-acyl-1-lysophosphatidylinositol (16:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3126: -1 - - s_3734: 0.56457 - - s_3741: 0.25441 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4096" + - name: "sn-2-acyl-1-lysophosphatidylinositol (16:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3126: -1 + - s_3734: 0.564567102 + - s_3741: 0.254413 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4097" - - name: "sn-2-acyl-1-lysophosphatidylinositol (18:1) [endoplasmic reticulum membrane] SLIME rxn" - - metabolites: !!omap - - s_3127: -1 - - s_3734: 0.59262 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4097" + - name: "sn-2-acyl-1-lysophosphatidylinositol (18:1) [endoplasmic reticulum membrane] SLIME rxn" + - metabolites: !!omap + - s_3127: -1 + - s_3734: 0.592620862 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4098" - - name: "phosphatidylglycerol (1-16:0, 2-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3227: -1 - - s_3736: 0.72097 - - s_3740: 0.25643 - - s_3741: 0.25441 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4098" + - name: "phosphatidylglycerol (1-16:0, 2-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3227: -1 + - s_3736: 0.720965382 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4099" - - name: "phosphatidylglycerol (1-16:1, 2-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3229: -1 - - s_3736: 0.71895 - - s_3741: 0.50883 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4099" + - name: "phosphatidylglycerol (1-16:1, 2-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3229: -1 + - s_3736: 0.718949502 + - s_3741: 0.508826 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4100" - - name: "phosphatidylglycerol (1-18:0, 2-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3230: -1 - - s_3736: 0.74902 - - s_3741: 0.25441 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4100" + - name: "phosphatidylglycerol (1-18:0, 2-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3230: -1 + - s_3736: 0.749019142 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4101" - - name: "phosphatidylglycerol (1-18:1, 2-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3231: -1 - - s_3736: 0.747 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4101" + - name: "phosphatidylglycerol (1-18:1, 2-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3231: -1 + - s_3736: 0.747003262 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4102" - - name: "phosphatidylglycerol (1-16:0, 2-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3232: -1 - - s_3736: 0.74902 - - s_3740: 0.25643 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4102" + - name: "phosphatidylglycerol (1-16:0, 2-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3232: -1 + - s_3736: 0.749019142 + - s_3740: 0.25642888 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4103" - - name: "phosphatidylglycerol (1-16:1, 2-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3233: -1 - - s_3736: 0.747 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4103" + - name: "phosphatidylglycerol (1-16:1, 2-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3233: -1 + - s_3736: 0.747003262 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4104" - - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3234: -1 - - s_3738: 1.3519 - - s_3740: 0.51286 - - s_3741: 0.50883 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4104" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3234: -1 + - s_3738: 1.351851924 + - s_3740: 0.51285776 + - s_3741: 0.508826 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4105" - - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3235: -1 - - s_3738: 1.3478 - - s_3740: 0.25643 - - s_3741: 0.76324 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4105" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3235: -1 + - s_3738: 1.347820164 + - s_3740: 0.25642888 + - s_3741: 0.763239 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4106" - - name: "cardiolipin (1-16:0, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3236: -1 - - s_3738: 1.3799 - - s_3740: 0.25643 - - s_3741: 0.50883 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4106" + - name: "cardiolipin (1-16:0, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3236: -1 + - s_3738: 1.379905684 + - s_3740: 0.25642888 + - s_3741: 0.508826 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4107" - - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3237: -1 - - s_3738: 1.3759 - - s_3740: 0.25643 - - s_3741: 0.50883 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4107" + - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3237: -1 + - s_3738: 1.375873924 + - s_3740: 0.25642888 + - s_3741: 0.508826 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4108" - - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3238: -1 - - s_3738: 1.3799 - - s_3740: 0.51286 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4108" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3238: -1 + - s_3738: 1.379905684 + - s_3740: 0.51285776 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4109" - - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3239: -1 - - s_3738: 1.3759 - - s_3740: 0.25643 - - s_3741: 0.50883 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4109" + - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3239: -1 + - s_3738: 1.375873924 + - s_3740: 0.25642888 + - s_3741: 0.508826 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4110" - - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3240: -1 - - s_3738: 1.3498 - - s_3740: 0.25643 - - s_3741: 0.76324 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4110" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3240: -1 + - s_3738: 1.349836044 + - s_3740: 0.25642888 + - s_3741: 0.763239 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4111" - - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3241: -1 - - s_3738: 1.3458 - - s_3741: 1.0177 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4111" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3241: -1 + - s_3738: 1.345804284 + - s_3741: 1.017652 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4112" - - name: "cardiolipin (1-16:1, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3242: -1 - - s_3738: 1.3779 - - s_3741: 0.76324 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4112" + - name: "cardiolipin (1-16:1, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3242: -1 + - s_3738: 1.377889804 + - s_3741: 0.763239 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4113" - - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3243: -1 - - s_3738: 1.3739 - - s_3741: 0.76324 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4113" + - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3243: -1 + - s_3738: 1.373858044 + - s_3741: 0.763239 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4114" - - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3244: -1 - - s_3738: 1.3779 - - s_3740: 0.25643 - - s_3741: 0.50883 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4114" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3244: -1 + - s_3738: 1.377889804 + - s_3740: 0.25642888 + - s_3741: 0.508826 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4115" - - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3245: -1 - - s_3738: 1.3739 - - s_3741: 0.76324 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4115" + - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3245: -1 + - s_3738: 1.373858044 + - s_3741: 0.763239 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4116" - - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3246: -1 - - s_3738: 1.3799 - - s_3740: 0.25643 - - s_3741: 0.50883 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4116" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3246: -1 + - s_3738: 1.379905684 + - s_3740: 0.25642888 + - s_3741: 0.508826 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4117" - - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3247: -1 - - s_3738: 1.3759 - - s_3741: 0.76324 - - s_3742: 0.28448 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4117" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3247: -1 + - s_3738: 1.375873924 + - s_3741: 0.763239 + - s_3742: 0.28448264 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4118" - - name: "cardiolipin (1-18:0, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3248: -1 - - s_3738: 1.408 - - s_3741: 0.50883 - - s_3742: 0.56897 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4118" + - name: "cardiolipin (1-18:0, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3248: -1 + - s_3738: 1.407959444 + - s_3741: 0.508826 + - s_3742: 0.56896528 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4119" - - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3249: -1 - - s_3738: 1.4039 - - s_3741: 0.50883 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4119" + - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3249: -1 + - s_3738: 1.403927684 + - s_3741: 0.508826 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4120" - - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3250: -1 - - s_3738: 1.408 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4120" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3250: -1 + - s_3738: 1.407959444 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4121" - - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3251: -1 - - s_3738: 1.4039 - - s_3741: 0.50883 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4121" + - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3251: -1 + - s_3738: 1.403927684 + - s_3741: 0.508826 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4122" - - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3252: -1 - - s_3738: 1.3779 - - s_3740: 0.25643 - - s_3741: 0.50883 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4122" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3252: -1 + - s_3738: 1.377889804 + - s_3740: 0.25642888 + - s_3741: 0.508826 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4123" - - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3253: -1 - - s_3738: 1.3739 - - s_3741: 0.76324 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4123" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3253: -1 + - s_3738: 1.373858044 + - s_3741: 0.763239 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4124" - - name: "cardiolipin (1-18:1, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3254: -1 - - s_3738: 1.4059 - - s_3741: 0.50883 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4124" + - name: "cardiolipin (1-18:1, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3254: -1 + - s_3738: 1.405943564 + - s_3741: 0.508826 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4125" - - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3255: -1 - - s_3738: 1.4019 - - s_3741: 0.50883 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4125" + - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3255: -1 + - s_3738: 1.401911804 + - s_3741: 0.508826 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4126" - - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3256: -1 - - s_3738: 1.4059 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4126" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3256: -1 + - s_3738: 1.405943564 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4127" - - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3257: -1 - - s_3738: 1.4019 - - s_3741: 0.50883 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4127" + - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3257: -1 + - s_3738: 1.401911804 + - s_3741: 0.508826 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4128" - - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3258: -1 - - s_3738: 1.3799 - - s_3740: 0.51286 - - s_3741: 0.25441 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4128" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3258: -1 + - s_3738: 1.379905684 + - s_3740: 0.51285776 + - s_3741: 0.254413 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4129" - - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3259: -1 - - s_3738: 1.3759 - - s_3740: 0.25643 - - s_3741: 0.50883 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4129" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3259: -1 + - s_3738: 1.375873924 + - s_3740: 0.25642888 + - s_3741: 0.508826 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4130" - - name: "cardiolipin (1-16:0, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3260: -1 - - s_3738: 1.408 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4130" + - name: "cardiolipin (1-16:0, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3260: -1 + - s_3738: 1.407959444 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4131" - - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3261: -1 - - s_3738: 1.4039 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4131" + - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3261: -1 + - s_3738: 1.403927684 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4132" - - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3262: -1 - - s_3738: 1.408 - - s_3740: 0.51286 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4132" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3262: -1 + - s_3738: 1.407959444 + - s_3740: 0.51285776 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4133" - - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3263: -1 - - s_3738: 1.4039 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4133" + - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3263: -1 + - s_3738: 1.403927684 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4134" - - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3264: -1 - - s_3738: 1.3779 - - s_3740: 0.25643 - - s_3741: 0.50883 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4134" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3264: -1 + - s_3738: 1.377889804 + - s_3740: 0.25642888 + - s_3741: 0.508826 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4135" - - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3265: -1 - - s_3738: 1.3739 - - s_3741: 0.76324 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4135" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3265: -1 + - s_3738: 1.373858044 + - s_3741: 0.763239 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4136" - - name: "cardiolipin (1-16:1, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3266: -1 - - s_3738: 1.4059 - - s_3741: 0.50883 - - s_3742: 0.28448 - - s_3743: 0.28247 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4136" + - name: "cardiolipin (1-16:1, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3266: -1 + - s_3738: 1.405943564 + - s_3741: 0.508826 + - s_3742: 0.28448264 + - s_3743: 0.28246676 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4137" - - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3267: -1 - - s_3738: 1.4019 - - s_3741: 0.50883 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4137" + - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3267: -1 + - s_3738: 1.401911804 + - s_3741: 0.508826 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4138" - - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3268: -1 - - s_3738: 1.4059 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4138" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3268: -1 + - s_3738: 1.405943564 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4139" - - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3269: -1 - - s_3738: 1.4019 - - s_3741: 0.50883 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4139" + - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3269: -1 + - s_3738: 1.401911804 + - s_3741: 0.508826 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4140" - - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3308: -1 - - s_3738: 1.4059 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4140" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3308: -1 + - s_3738: 1.405943564 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4141" - - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3309: -1 - - s_3738: 1.4019 - - s_3741: 0.50883 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4141" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3309: -1 + - s_3738: 1.401911804 + - s_3741: 0.508826 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4142" - - name: "cardiolipin (1-18:1, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3310: -1 - - s_3738: 1.434 - - s_3741: 0.25441 - - s_3742: 0.28448 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4142" + - name: "cardiolipin (1-18:1, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3310: -1 + - s_3738: 1.433997324 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4143" - - name: "cardiolipin (1-18:1, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3311: -1 - - s_3738: 1.43 - - s_3741: 0.25441 - - s_3743: 0.8474 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4143" + - name: "cardiolipin (1-18:1, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3311: -1 + - s_3738: 1.429965564 + - s_3741: 0.254413 + - s_3743: 0.84740028 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4144" - - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3312: -1 - - s_3738: 1.434 - - s_3740: 0.25643 - - s_3743: 0.8474 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4144" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3312: -1 + - s_3738: 1.433997324 + - s_3740: 0.25642888 + - s_3743: 0.84740028 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4145" - - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3313: -1 - - s_3738: 1.43 - - s_3741: 0.25441 - - s_3743: 0.8474 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4145" + - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3313: -1 + - s_3738: 1.429965564 + - s_3741: 0.254413 + - s_3743: 0.84740028 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4146" - - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3314: -1 - - s_3738: 1.4039 - - s_3740: 0.25643 - - s_3741: 0.25441 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4146" + - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3314: -1 + - s_3738: 1.403927684 + - s_3740: 0.25642888 + - s_3741: 0.254413 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4147" - - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3315: -1 - - s_3738: 1.4019 - - s_3741: 0.50883 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4147" + - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3315: -1 + - s_3738: 1.401911804 + - s_3741: 0.508826 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4148" - - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3316: -1 - - s_3738: 1.432 - - s_3741: 0.25441 - - s_3742: 0.28448 - - s_3743: 0.56493 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4148" + - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3316: -1 + - s_3738: 1.431981444 + - s_3741: 0.254413 + - s_3742: 0.28448264 + - s_3743: 0.56493352 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4149" - - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3317: -1 - - s_3738: 1.43 - - s_3741: 0.25441 - - s_3743: 0.8474 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4149" + - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3317: -1 + - s_3738: 1.429965564 + - s_3741: 0.254413 + - s_3743: 0.84740028 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4150" - - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3318: -1 - - s_3738: 1.432 - - s_3740: 0.25643 - - s_3743: 0.8474 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4150" + - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3318: -1 + - s_3738: 1.431981444 + - s_3740: 0.25642888 + - s_3743: 0.84740028 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4151" - - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" - - metabolites: !!omap - - s_3319: -1 - - s_3738: 1.43 - - s_3741: 0.25441 - - s_3743: 0.8474 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4151" + - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" + - metabolites: !!omap + - s_3319: -1 + - s_3738: 1.429965564 + - s_3741: 0.254413 + - s_3743: 0.84740028 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4152" - - name: "Cytochrome c apocytochrome-c-lyase" - - metabolites: !!omap - - s_0712: 1 - - s_3748: -1 - - s_3749: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL039C or YKL087C" - - annotation: !!omap - - ec-code: - - "4.4.1.17" - - "4.4.1.-" + - confidence_score: 1 + - !!omap + - id: "r_4152" + - name: "Cytochrome c apocytochrome-c-lyase" + - metabolites: !!omap + - s_0712: 1 + - s_3748: -1 + - s_3749: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL039C or YKL087C" + - eccodes: "4.4.1.17; 4.4.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.4.1.17; 4.4.1.-" - bigg.reaction: "HEMELm" - kegg.reaction: "R02480" - metanetx.reaction: "MNXR138510" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4153" - - name: "(R)-Acetoin:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0020: 1 - - s_0794: -1 - - s_1198: 1 - - s_1203: -1 - - s_3750: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YAL061W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4153" + - name: "(R)-Acetoin:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0020: 1 + - s_0794: -1 + - s_1198: 1 + - s_1203: -1 + - s_3750: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YAL061W" + - eccodes: "1.1.1.303" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.303" - bigg.reaction: "ACTD" - kegg.reaction: "R02855" - metanetx.reaction: "MNXR95419" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4154" - - name: "Probable diacetyl reductase [(R)-acetoin forming] 2 (EC 1.1.1.303)" - - metabolites: !!omap - - s_0794: 1 - - s_1201: -1 - - s_3751: -1 - - s_3752: 1 - - s_3753: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YAL061W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4154" + - name: "Probable diacetyl reductase [(R)-acetoin forming] 2 (EC 1.1.1.303)" + - metabolites: !!omap + - s_0794: 1 + - s_1201: -1 + - s_3751: -1 + - s_3752: 1 + - s_3753: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YAL061W" + - eccodes: "1.1.1.303" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.303" - kegg.reaction: "R02855" - metanetx.reaction: "MNXR95419" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4155" - - name: "Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial (Glu-AdT subunit B) (EC 6.3.5.-) (Cytochrome c oxidase assembly factor PET112)" - - metabolites: !!omap - - s_0397: 1 - - s_0437: -1 - - s_0799: 1 - - s_0807: -1 - - s_0993: 1 - - s_1326: 1 - - s_3754: -1 - - s_3755: -1 - - s_3756: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBL080C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4155" + - name: "Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial (Glu-AdT subunit B) (EC 6.3.5.-) (Cytochrome c oxidase assembly factor PET112)" + - metabolites: !!omap + - s_0397: 1 + - s_0437: -1 + - s_0799: 1 + - s_0807: -1 + - s_0993: 1 + - s_1326: 1 + - s_3754: -1 + - s_3755: -1 + - s_3756: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBL080C" + - eccodes: "6.3.5.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.5.-" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4156" - - name: "Methionine aminopeptidase 2 (MAP 2) (MetAP 2) (EC 3.4.11.18) (Peptidase M)" - - metabolites: !!omap - - s_0810: -1 - - s_3757: -1 - - s_3758: 1 - - s_3759: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBL091C or YLR244C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4156" + - name: "Methionine aminopeptidase 2 (MAP 2) (MetAP 2) (EC 3.4.11.18) (Peptidase M)" + - metabolites: !!omap + - s_0810: -1 + - s_3757: -1 + - s_3758: 1 + - s_3759: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBL091C or YLR244C" + - eccodes: "3.4.11.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.11.18" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4157" - - name: "ADP-ribose 1''-phosphate phosphatase (EC 3.1.3.84) (EC 3.2.2.-) ([Protein ADP-ribosylglutamate] hydrolase)" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_3760: -1 - - s_3761: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR022W or YMR087W" - - annotation: !!omap - - ec-code: - - "3.1.3.84" - - "3.2.2.-" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4158" - - name: "NADPH2:quinone oxidoreductase" - - metabolites: !!omap - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_3762: -2 - - s_3763: 2 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR046C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4157" + - name: "ADP-ribose 1''-phosphate phosphatase (EC 3.1.3.84) (EC 3.2.2.-) ([Protein ADP-ribosylglutamate] hydrolase)" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_3760: -1 + - s_3761: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR022W or YMR087W" + - eccodes: "3.1.3.84; 3.2.2.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.84; 3.2.2.-" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4158" + - name: "NADPH2:quinone oxidoreductase" + - metabolites: !!omap + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_3762: -2 + - s_3763: 2 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR046C" + - eccodes: "1.6.5.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.6.5.5" - kegg.reaction: "R02364" - metanetx.reaction: "MNXR107466" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4159" - - name: "UDP-N-acetylglucosamine transferase subunit ALG14 (Asparagine-linked glycosylation protein 14)" - - metabolites: !!omap - - s_0795: 1 - - s_3764: -1 - - s_3765: -1 - - s_3766: 1 - - s_3767: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR070C and YGL047W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4159" + - name: "UDP-N-acetylglucosamine transferase subunit ALG14 (Asparagine-linked glycosylation protein 14)" + - metabolites: !!omap + - s_0795: 1 + - s_3764: -1 + - s_3765: -1 + - s_3766: 1 + - s_3767: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR070C and YGL047W" + - eccodes: "2.4.1.141" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.141" - kegg.reaction: "R05970" - metanetx.reaction: "MNXR100208" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4160" - - name: "ADP-ribose pyrophosphatase (EC 3.6.1.13) (ADP-ribose diphosphatase) (ADP-ribose phosphohydrolase) (Adenosine diphosphoribose pyrophosphatase) (ADPR-PPase)" - - metabolites: !!omap - - s_0423: 1 - - s_0794: 2 - - s_0803: -1 - - s_3761: -1 - - s_3768: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR111C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4160" + - name: "ADP-ribose pyrophosphatase (EC 3.6.1.13) (ADP-ribose diphosphatase) (ADP-ribose phosphohydrolase) (Adenosine diphosphoribose pyrophosphatase) (ADPR-PPase)" + - metabolites: !!omap + - s_0423: 1 + - s_0794: 2 + - s_0803: -1 + - s_3761: -1 + - s_3768: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR111C" + - eccodes: "3.6.1.13" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.13" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4161" - - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" - - metabolites: !!omap - - s_0965: 1 - - s_0968: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR147W or YDR352W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4162" - - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" - - metabolites: !!omap - - s_1006: 1 - - s_1009: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR147W or YDR352W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4163" - - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" - - metabolites: !!omap - - s_1025: 1 - - s_1028: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR147W or YDR352W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4164" - - name: "oxalate:CoA ligase (AMP-forming)" - - metabolites: !!omap - - s_0426: 1 - - s_0439: -1 - - s_0534: -1 - - s_0638: 1 - - s_3769: -1 - - s_3770: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR222C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4161" + - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" + - metabolites: !!omap + - s_0965: 1 + - s_0968: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR147W or YDR352W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4162" + - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" + - metabolites: !!omap + - s_1006: 1 + - s_1009: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR147W or YDR352W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4163" + - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" + - metabolites: !!omap + - s_1025: 1 + - s_1028: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR147W or YDR352W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4164" + - name: "oxalate:CoA ligase (AMP-forming)" + - metabolites: !!omap + - s_0426: 1 + - s_0439: -1 + - s_0534: -1 + - s_0638: 1 + - s_3769: -1 + - s_3770: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR222C" + - eccodes: "6.-.-.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.-.-.-" - kegg.reaction: "R01558" - metanetx.reaction: "MNXR102232" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4165" - - name: "Glucosidase 2 subunit alpha (EC 3.2.1.84) (Alpha-glucosidase II subunit alpha) (Glucosidase II subunit alpha) (Reversal of TOR2 lethality protein 2)" - - metabolites: !!omap - - s_0804: -1 - - s_3771: -1 - - s_3772: 1 - - s_3773: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR229C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4165" + - name: "Glucosidase 2 subunit alpha (EC 3.2.1.84) (Alpha-glucosidase II subunit alpha) (Glucosidase II subunit alpha) (Reversal of TOR2 lethality protein 2)" + - metabolites: !!omap + - s_0804: -1 + - s_3771: -1 + - s_3772: 1 + - s_3773: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR229C" + - eccodes: "3.2.1.84" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.84" - kegg.reaction: "R05980" - metanetx.reaction: "MNXR109971" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4166" - - name: "Glucosidase 2 subunit alpha (EC 3.2.1.84) (Alpha-glucosidase II subunit alpha) (Glucosidase II subunit alpha) (Reversal of TOR2 lethality protein 2)" - - metabolites: !!omap - - s_0804: -1 - - s_3772: 1 - - s_3773: -1 - - s_3774: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR229C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4166" + - name: "Glucosidase 2 subunit alpha (EC 3.2.1.84) (Alpha-glucosidase II subunit alpha) (Glucosidase II subunit alpha) (Reversal of TOR2 lethality protein 2)" + - metabolites: !!omap + - s_0804: -1 + - s_3772: 1 + - s_3773: -1 + - s_3774: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR229C" + - eccodes: "3.2.1.84" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.84" - kegg.reaction: "R05981" - metanetx.reaction: "MNXR109972" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4167" - - name: "Vacuolar cation-chloride cotransporter 1 (Vacuolar homolog of CCC family protein 1)" - - metabolites: !!omap - - s_1373: 1 - - s_1437: 1 - - s_3775: -1 - - s_3776: -1 - - s_3777: -1 - - s_3778: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR235W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4167" + - name: "Vacuolar cation-chloride cotransporter 1 (Vacuolar homolog of CCC family protein 1)" + - metabolites: !!omap + - s_1373: 1 + - s_1437: 1 + - s_3775: -1 + - s_3776: -1 + - s_3777: -1 + - s_3778: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR235W" + - eccodes: "3.6.3.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.3.7" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4168" - - name: "Probable metabolite transport protein YBR241C" - - metabolites: !!omap - - s_0553: -1 - - s_3779: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR241C or YGL104C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4169" - - name: "Probable metabolite transport protein YBR241C" - - metabolites: !!omap - - s_0558: -1 - - s_3780: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR241C or YGL104C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4170" - - name: "UDP-N-acetyl-D-glucosamine:dolichyl-phosphate N-acetyl-D-glucosamine phosphotransferase" - - metabolites: !!omap - - s_0646: -1 - - s_3764: -1 - - s_3765: 1 - - s_3781: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR243C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4168" + - name: "Probable metabolite transport protein YBR241C" + - metabolites: !!omap + - s_0553: -1 + - s_3779: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR241C or YGL104C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4169" + - name: "Probable metabolite transport protein YBR241C" + - metabolites: !!omap + - s_0558: -1 + - s_3780: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR241C or YGL104C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4170" + - name: "UDP-N-acetyl-D-glucosamine:dolichyl-phosphate N-acetyl-D-glucosamine phosphotransferase" + - metabolites: !!omap + - s_0646: -1 + - s_3764: -1 + - s_3765: 1 + - s_3781: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR243C" + - eccodes: "2.7.8.15" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.8.15" - kegg.reaction: "R01007" - metanetx.reaction: "MNXR106786" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4171" - - name: "(5-glutamyl)-peptide:amino-acid 5-glutamyltransferase" - - metabolites: !!omap - - s_0750: -1 - - s_0803: -1 - - s_0983: 1 - - s_0991: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR281C and YNL191W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4171" + - name: "(5-glutamyl)-peptide:amino-acid 5-glutamyltransferase" + - metabolites: !!omap + - s_0750: -1 + - s_0803: -1 + - s_0983: 1 + - s_0991: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR281C and YNL191W" + - eccodes: "3.4.-.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.-.-" - bigg.reaction: "GTHRDH_syn" - kegg.reaction: "R03916" - metanetx.reaction: "MNXR108524" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4172" - - name: "P-type cation-transporting ATPase (EC 3.6.3.3) (Cadmium resistance protein 2) (Cadmium-translocating P-type ATPase) (Cd(2+)-exporting ATPase)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_3782: -1 - - s_3783: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR295W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4172" + - name: "P-type cation-transporting ATPase (EC 3.6.3.3) (Cadmium resistance protein 2) (Cadmium-translocating P-type ATPase) (Cd(2+)-exporting ATPase)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_3782: -1 + - s_3783: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR295W" + - eccodes: "3.6.3.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.3.3" - bigg.reaction: "CD2abc1" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4173" - - name: "L-cysteine:sulfur-acceptor sulfurtransferase" - - metabolites: !!omap - - s_0957: 1 - - s_3784: -1 - - s_3785: -1 - - s_3786: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCL017C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4173" + - name: "L-cysteine:sulfur-acceptor sulfurtransferase" + - metabolites: !!omap + - s_0957: 1 + - s_3784: -1 + - s_3785: -1 + - s_3786: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCL017C" + - eccodes: "2.8.1.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.8.1.7" - kegg.reaction: "R11528" - metanetx.reaction: "MNXR114822" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4174" - - name: "Probable ATP-dependent permease" - - metabolites: !!omap - - s_3787: -1 - - s_3788: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR011C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4175" - - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" - - metabolites: !!omap - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_3789: -1 - - s_3790: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4174" + - name: "Probable ATP-dependent permease" + - metabolites: !!omap + - s_3787: -1 + - s_3788: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR011C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4175" + - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" + - metabolites: !!omap + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_3789: -1 + - s_3790: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" + - eccodes: "1.1.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.-" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4176" - - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" - - metabolites: !!omap - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_3791: -1 - - s_3792: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4176" + - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" + - metabolites: !!omap + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_3791: -1 + - s_3792: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" + - eccodes: "1.1.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.-" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4177" - - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" - - metabolites: !!omap - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_3793: -1 - - s_3794: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4177" + - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" + - metabolites: !!omap + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_3793: -1 + - s_3794: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" + - eccodes: "1.1.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.-" - bigg.reaction: "3MBZALDH" - kegg.reaction: "R05347" - metanetx.reaction: "MNXR94914" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4178" - - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" - - metabolites: !!omap - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_3795: -1 - - s_3796: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4178" + - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" + - metabolites: !!omap + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_3795: -1 + - s_3796: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" + - eccodes: "1.1.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.-" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4179" - - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" - - metabolites: !!omap - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_3797: -1 - - s_3798: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4179" + - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" + - metabolites: !!omap + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_3797: -1 + - s_3798: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" + - eccodes: "1.1.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.-" - bigg.reaction: "4MBZALDH" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4180" - - name: "Benzyl alcohol:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_3799: -1 - - s_3800: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4180" + - name: "Benzyl alcohol:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_3799: -1 + - s_3800: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" + - eccodes: "1.1.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.-" - bigg.reaction: "BZALDH" - kegg.reaction: "R01763" - metanetx.reaction: "MNXR96362" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4181" - - name: "Manganese-transporting ATPase 1 (EC 3.6.3.-)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_3801: -1 - - s_3802: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YEL031W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4181" + - name: "Manganese-transporting ATPase 1 (EC 3.6.3.-)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_3801: -1 + - s_3802: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YEL031W" + - eccodes: "3.6.3.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.3.-" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4183" - - name: "D-Mannitol:NAD+ 2-oxidoreductase" - - metabolites: !!omap - - s_0553: 1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_3805: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YEL070W or YNR073C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4183" + - name: "D-Mannitol:NAD+ 2-oxidoreductase" + - metabolites: !!omap + - s_0553: 1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_3805: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YEL070W or YNR073C" + - eccodes: "1.1.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.-" - bigg.reaction: "MNLDH2" - kegg.reaction: "R00868" - metanetx.reaction: "MNXR101675" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4184" - - name: "4-hydroxy-4-methyl-2-oxoglutarate pyruvate-lyase (pyruvate-forming)" - - metabolites: !!omap - - s_1399: 2 - - s_3806: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER010C" - - annotation: !!omap - - ec-code: - - "4.1.3.17" - - "4.1.1.3" + - confidence_score: 2 + - !!omap + - id: "r_4184" + - name: "4-hydroxy-4-methyl-2-oxoglutarate pyruvate-lyase (pyruvate-forming)" + - metabolites: !!omap + - s_1399: 2 + - s_3806: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER010C" + - eccodes: "4.1.3.17; 4.1.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.1.3.17; 4.1.1.3" - kegg.reaction: "R00008" - metanetx.reaction: "MNXR106336" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4185" - - name: "oxaloacetate carboxy-lyase (pyruvate-forming)" - - metabolites: !!omap - - s_0456: 1 - - s_0794: -1 - - s_1271: -1 - - s_1399: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER010C" - - annotation: !!omap - - ec-code: - - "4.1.3.17" - - "4.1.1.3" + - confidence_score: 2 + - !!omap + - id: "r_4185" + - name: "oxaloacetate carboxy-lyase (pyruvate-forming)" + - metabolites: !!omap + - s_0456: 1 + - s_0794: -1 + - s_1271: -1 + - s_1399: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER010C" + - eccodes: "4.1.3.17; 4.1.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.1.3.17; 4.1.1.3" - bigg.reaction: "OAADC" - kegg.reaction: "R00217" - metanetx.reaction: "MNXR102097" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4186" - - name: "L-methionine:thioredoxin-disulfide S-oxidoreductase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_1029: -1 - - s_1616: 1 - - s_1620: -1 - - s_3807: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YER042W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4186" + - name: "L-methionine:thioredoxin-disulfide S-oxidoreductase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_1029: -1 + - s_1616: 1 + - s_1620: -1 + - s_3807: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YER042W" + - eccodes: "1.8.4.11" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.8.4.11" - kegg.reaction: "R07606" - metanetx.reaction: "MNXR101484" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4187" - - name: "L-proline:tRNA(Pro) ligase (AMP-forming)" - - metabolites: !!omap - - s_0424: 1 - - s_0437: -1 - - s_0636: 1 - - s_1037: -1 - - s_3808: -1 - - s_3809: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER087W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4187" + - name: "L-proline:tRNA(Pro) ligase (AMP-forming)" + - metabolites: !!omap + - s_0424: 1 + - s_0437: -1 + - s_0636: 1 + - s_1037: -1 + - s_3808: -1 + - s_3809: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER087W" + - eccodes: "6.1.1.15" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.1.1.15" - kegg.reaction: "R03661" - metanetx.reaction: "MNXR103208" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4188" - - name: "Glutathione-specific gamma-glutamylcyclotransferase (Gamma-GCG) (EC 4.3.2.-)" - - metabolites: !!omap - - s_0750: -1 - - s_0983: 1 - - s_3810: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YER163C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4188" + - name: "Glutathione-specific gamma-glutamylcyclotransferase (Gamma-GCG) (EC 4.3.2.-)" + - metabolites: !!omap + - s_0750: -1 + - s_0983: 1 + - s_3810: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YER163C" + - eccodes: "4.3.2.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.3.2.-" - bigg.reaction: "GGCLUT2" - kegg.reaction: "R11861" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4189" - - name: "4a-hydroxytetrahydrobiopterin hydro-lyase" - - metabolites: !!omap - - s_0807: 1 - - s_3811: -1 - - s_3812: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHL018W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4189" + - name: "4a-hydroxytetrahydrobiopterin hydro-lyase" + - metabolites: !!omap + - s_0807: 1 + - s_3811: -1 + - s_3812: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHL018W" + - eccodes: "4.2.1.96" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.96" - kegg.reaction: "R04734" - metanetx.reaction: "MNXR143540" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4190" - - name: "superoxide:superoxide oxidoreductase" - - metabolites: !!omap - - s_0799: -2 - - s_0838: 1 - - s_1278: 1 - - s_3813: -2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR008C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4190" + - name: "superoxide:superoxide oxidoreductase" + - metabolites: !!omap + - s_0799: -2 + - s_0838: 1 + - s_1278: 1 + - s_3813: -2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR008C" + - eccodes: "1.15.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.15.1.1" - bigg.reaction: "SPODMm" - kegg.reaction: "R00275" - metanetx.reaction: "MNXR104498" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4191" - - name: "2-Deoxy-D-glucose 6-phosphate phosphohydrolase" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_3814: -1 - - s_3815: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR043C or YHR044C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4191" + - name: "2-Deoxy-D-glucose 6-phosphate phosphohydrolase" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_3814: -1 + - s_3815: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR043C or YHR044C" + - eccodes: "3.1.3.68" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.68" - bigg.reaction: "2DOXG6PP" - kegg.reaction: "R02587" - metanetx.reaction: "MNXR94794" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4192" - - name: "Cytochrome c lysine N-methyltransferase 1 (EC 2.1.1.59)" - - metabolites: !!omap - - s_0794: 1 - - s_1413: 1 - - s_1416: -1 - - s_3816: -1 - - s_3817: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR109W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4192" + - name: "Cytochrome c lysine N-methyltransferase 1 (EC 2.1.1.59)" + - metabolites: !!omap + - s_0794: 1 + - s_1413: 1 + - s_1416: -1 + - s_3816: -1 + - s_3817: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR109W" + - eccodes: "2.1.1.59" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.59" - kegg.reaction: "R03875" - metanetx.reaction: "MNXR108494" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4193" - - name: "S-Adenosyl-L-methionine:histone-L-lysine N6-methyltransferase" - - metabolites: !!omap - - s_0800: 1 - - s_3818: -1 - - s_3819: -1 - - s_3820: 1 - - s_3821: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR119W or YDR440W or YJL168C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4193" + - name: "S-Adenosyl-L-methionine:histone-L-lysine N6-methyltransferase" + - metabolites: !!omap + - s_0800: 1 + - s_3818: -1 + - s_3819: -1 + - s_3820: 1 + - s_3821: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR119W or YDR440W or YJL168C" + - eccodes: "2.1.1.43" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.43" - kegg.reaction: "R03938" - metanetx.reaction: "MNXR108541" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4194" - - name: "Zinc transporter YKE4" - - metabolites: !!omap - - s_3822: -1 - - s_3823: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL023C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4195" - - name: "Zinc transporter YKE4" - - metabolites: !!omap - - s_4026: -1 - - s_4027: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR243C or YOR316C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4196" - - name: "NADH:ferricytochrome-b5 oxidoreductase" - - metabolites: !!omap - - s_2783: 1 - - s_2818: -1 - - s_4209: 2 - - s_4210: -2 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL043C or YML125C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4194" + - name: "Zinc transporter YKE4" + - metabolites: !!omap + - s_3822: -1 + - s_3823: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL023C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4195" + - name: "Zinc transporter YKE4" + - metabolites: !!omap + - s_4026: -1 + - s_4027: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR243C or YOR316C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4196" + - name: "NADH:ferricytochrome-b5 oxidoreductase" + - metabolites: !!omap + - s_2783: 1 + - s_2818: -1 + - s_4209: 2 + - s_4210: -2 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL043C or YML125C" + - eccodes: "1.6.2.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.6.2.2" - kegg.reaction: "R00100" - metanetx.reaction: "MNXR106388" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4197" - - name: "NADH-cytochrome b5 reductase 1 (EC 1.6.2.2) (Microsomal cytochrome b reductase) (P35)" - - metabolites: !!omap - - s_0799: 1 - - s_1200: 1 - - s_1205: -1 - - s_3826: -2 - - s_3827: 2 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIL043C or YKL150W or YML125C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4197" + - name: "NADH-cytochrome b5 reductase 1 (EC 1.6.2.2) (Microsomal cytochrome b reductase) (P35)" + - metabolites: !!omap + - s_0799: 1 + - s_1200: 1 + - s_1205: -1 + - s_3826: -2 + - s_3827: 2 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIL043C or YKL150W or YML125C" + - eccodes: "1.6.2.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.6.2.2" - bigg.reaction: "FCYTOB5OXR_m" - kegg.reaction: "R00100" - metanetx.reaction: "MNXR106388" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4198" - - name: "Benzil reductase ((S)-benzoin forming) IRC24 (EC 1.1.1.320) (Increased recombination centers protein 24)" - - metabolites: !!omap - - s_0794: 1 - - s_1207: -1 - - s_1212: 1 - - s_3828: -1 - - s_3829: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIR036C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4198" + - name: "Benzil reductase ((S)-benzoin forming) IRC24 (EC 1.1.1.320) (Increased recombination centers protein 24)" + - metabolites: !!omap + - s_0794: 1 + - s_1207: -1 + - s_1212: 1 + - s_3828: -1 + - s_3829: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIR036C" + - eccodes: "1.1.1.320" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.320" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4199" - - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" - - metabolites: !!omap - - s_3830: -1 - - s_3831: -1 - - s_3832: 1 - - s_3833: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YIR038C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4199" + - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" + - metabolites: !!omap + - s_3830: -1 + - s_3831: -1 + - s_3832: 1 + - s_3833: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YIR038C" + - eccodes: "2.5.1.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.18" - kegg.reaction: "R03522" - metanetx.reaction: "MNXR125877" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4200" - - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" - - metabolites: !!omap - - s_0750: -1 - - s_3834: -1 - - s_3835: 1 - - s_3836: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR251W or YKR076W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4200" + - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" + - metabolites: !!omap + - s_0750: -1 + - s_3834: -1 + - s_3835: 1 + - s_3836: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR251W or YKR076W" + - eccodes: "2.5.1.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.18" - kegg.reaction: "R03522" - metanetx.reaction: "MNXR125877" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4201" - - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" - - metabolites: !!omap - - s_0752: -1 - - s_4028: -1 - - s_4029: 1 - - s_4030: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLL060C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4201" + - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" + - metabolites: !!omap + - s_0752: -1 + - s_4028: -1 + - s_4029: 1 + - s_4030: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLL060C" + - eccodes: "2.5.1.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.18" - kegg.reaction: "R03522" - metanetx.reaction: "MNXR125877" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4202" - - name: "L-methionine:oxidized-thioredoxin S-oxidoreductase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_1029: -1 - - s_1616: 1 - - s_1620: -1 - - s_3837: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL069W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4202" + - name: "L-methionine:oxidized-thioredoxin S-oxidoreductase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_1029: -1 + - s_1616: 1 + - s_1620: -1 + - s_3837: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL069W" + - eccodes: "1.8.4.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.8.4.14" - bigg.reaction: "METSOXR1" - kegg.reaction: "R02025" - metanetx.reaction: "MNXR101484" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4203" - - name: "Vacuolar aminopeptidase 1 (EC 3.4.11.22) (Aminopeptidase yscI) (Leucine aminopeptidase IV) (LAPIV) (Lysosomal aminopeptidase III) (Polypeptidase) (Vacuolar aminopeptidase I)" - - metabolites: !!omap - - s_0810: -1 - - s_3759: 1 - - s_3838: -1 - - s_3839: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL103C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4203" + - name: "Vacuolar aminopeptidase 1 (EC 3.4.11.22) (Aminopeptidase yscI) (Leucine aminopeptidase IV) (LAPIV) (Lysosomal aminopeptidase III) (Polypeptidase) (Vacuolar aminopeptidase I)" + - metabolites: !!omap + - s_0810: -1 + - s_3759: 1 + - s_3838: -1 + - s_3839: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL103C" + - eccodes: "3.4.11.22" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.11.22" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4204" - - name: "Vacuolar aminopeptidase 1 (EC 3.4.11.22) (Aminopeptidase yscI) (Leucine aminopeptidase IV) (LAPIV) (Lysosomal aminopeptidase III) (Polypeptidase) (Vacuolar aminopeptidase I)" - - metabolites: !!omap - - s_0810: -1 - - s_1024: 1 - - s_3759: 1 - - s_3840: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL103C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4204" + - name: "Vacuolar aminopeptidase 1 (EC 3.4.11.22) (Aminopeptidase yscI) (Leucine aminopeptidase IV) (LAPIV) (Lysosomal aminopeptidase III) (Polypeptidase) (Vacuolar aminopeptidase I)" + - metabolites: !!omap + - s_0810: -1 + - s_1024: 1 + - s_3759: 1 + - s_3840: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL103C" + - eccodes: "3.4.11.22" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.11.22" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4205" - - name: "5-oxo-L-proline amidohydrolase (ATP-hydrolysing)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -2 - - s_0991: 1 - - s_1322: 1 - - s_3810: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YKL215C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4205" + - name: "5-oxo-L-proline amidohydrolase (ATP-hydrolysing)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -2 + - s_0991: 1 + - s_1322: 1 + - s_3810: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YKL215C" + - eccodes: "3.5.2.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.2.9" - bigg.reaction: "OPAH" - kegg.reaction: "R00251" - metanetx.reaction: "MNXR138674" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4206" - - name: "threo-3-hydroxy-L-aspartate ammonia-lyase" - - metabolites: !!omap - - s_0419: 1 - - s_1271: 1 - - s_3841: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKL218C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4206" + - name: "threo-3-hydroxy-L-aspartate ammonia-lyase" + - metabolites: !!omap + - s_0419: 1 + - s_1271: 1 + - s_3841: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKL218C" + - eccodes: "4.3.1.16" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.3.1.16" - kegg.reaction: "R05758" - metanetx.reaction: "MNXR109814" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4207" - - name: "Glutathione S-transferase omega-like 2 (EC 2.5.1.18) (Extracellular mutant protein 4) (Glutathione-dependent dehydroascorbate reductase) (EC 1.8.5.1)" - - metabolites: !!omap - - s_3842: -1 - - s_3843: -1 - - s_3844: 1 - - s_3845: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR154C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4207" + - name: "Glutathione S-transferase omega-like 2 (EC 2.5.1.18) (Extracellular mutant protein 4) (Glutathione-dependent dehydroascorbate reductase) (EC 1.8.5.1)" + - metabolites: !!omap + - s_3842: -1 + - s_3843: -1 + - s_3844: 1 + - s_3845: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR154C" + - eccodes: "2.5.1.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.18" - kegg.reaction: "R03522" - metanetx.reaction: "MNXR125877" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4208" - - name: "glutathione:dehydroascorbate oxidoreductase" - - metabolites: !!omap - - s_0750: -2 - - s_0754: 1 - - s_3846: -1 - - s_3847: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKR076W" - - annotation: !!omap - - ec-code: - - "2.5.1.18" - - "1.8.5.1" + - confidence_score: 2 + - !!omap + - id: "r_4208" + - name: "glutathione:dehydroascorbate oxidoreductase" + - metabolites: !!omap + - s_0750: -2 + - s_0754: 1 + - s_3846: -1 + - s_3847: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKR076W" + - eccodes: "2.5.1.18; 1.8.5.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.18; 1.8.5.1" - bigg.reaction: "GTHDH" - kegg.reaction: "R01108" - metanetx.reaction: "MNXR138490" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4209" - - name: "Glutathione S-transferase omega-like 2 (EC 2.5.1.18) (Extracellular mutant protein 4) (Glutathione-dependent dehydroascorbate reductase) (EC 1.8.5.1)" - - metabolites: !!omap - - s_3843: -2 - - s_3848: -1 - - s_3849: 1 - - s_3850: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR154C" - - annotation: !!omap - - ec-code: - - "2.5.1.18" - - "1.8.5.1" + - confidence_score: 2 + - !!omap + - id: "r_4209" + - name: "Glutathione S-transferase omega-like 2 (EC 2.5.1.18) (Extracellular mutant protein 4) (Glutathione-dependent dehydroascorbate reductase) (EC 1.8.5.1)" + - metabolites: !!omap + - s_3843: -2 + - s_3848: -1 + - s_3849: 1 + - s_3850: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR154C" + - eccodes: "2.5.1.18; 1.8.5.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.18; 1.8.5.1" - kegg.reaction: "R01108" - metanetx.reaction: "MNXR138490" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4210" - - name: "urea hydro-lyase (cyanamide-forming)" - - metabolites: !!omap - - s_0803: 1 - - s_1552: -1 - - s_3851: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YFL061W or YNL335W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4210" + - name: "urea hydro-lyase (cyanamide-forming)" + - metabolites: !!omap + - s_0803: 1 + - s_1552: -1 + - s_3851: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YFL061W or YNL335W" + - eccodes: "4.2.1.69" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.69" - kegg.reaction: "R00778" - metanetx.reaction: "MNXR106683" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4211" - - name: "D-ribose 5-phosphate,D-glyceraldehyde 3-phosphate pyridoxal 5-phosphate-lyase (glutamine-hydrolyzing)" - - metabolites: !!omap - - s_0764: -1 - - s_0794: 1 - - s_0803: 3 - - s_0991: 1 - - s_0999: -1 - - s_1322: 1 - - s_1393: 1 - - s_3852: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YFL060C or YNL334C" - - annotation: !!omap - - ec-code: - - "4.3.3.6" - - "3.5.1.2" + - confidence_score: 2 + - !!omap + - id: "r_4211" + - name: "D-ribose 5-phosphate,D-glyceraldehyde 3-phosphate pyridoxal 5-phosphate-lyase (glutamine-hydrolyzing)" + - metabolites: !!omap + - s_0764: -1 + - s_0794: 1 + - s_0803: 3 + - s_0991: 1 + - s_0999: -1 + - s_1322: 1 + - s_1393: 1 + - s_3852: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YFL060C or YNL334C" + - eccodes: "4.3.3.6; 3.5.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.3.3.6; 3.5.1.2" - kegg.reaction: "R10089" - metanetx.reaction: "MNXR140225" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4212" - - name: "D-ribulose 5-phosphate,D-glyceraldehyde 3-phosphate pyridoxal 5-phosphate-lyase" - - metabolites: !!omap - - s_0577: -1 - - s_0764: -1 - - s_0794: 1 - - s_0803: 3 - - s_0991: 1 - - s_0999: -1 - - s_1322: 1 - - s_1393: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YFL059W or YNL333W" - - annotation: !!omap - - ec-code: - - "4.3.3.6" - - "3.5.1.2" + - confidence_score: 2 + - !!omap + - id: "r_4212" + - name: "D-ribulose 5-phosphate,D-glyceraldehyde 3-phosphate pyridoxal 5-phosphate-lyase" + - metabolites: !!omap + - s_0577: -1 + - s_0764: -1 + - s_0794: 1 + - s_0803: 3 + - s_0991: 1 + - s_0999: -1 + - s_1322: 1 + - s_1393: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YFL059W or YNL333W" + - eccodes: "4.3.3.6; 3.5.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.3.3.6; 3.5.1.2" - bigg.reaction: "PYDXS" - kegg.reaction: "R07456" - metanetx.reaction: "MNXR103369" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4214" - - name: "L-cysteinylglycine dipeptidase" - - metabolites: !!omap - - s_0803: -1 - - s_0981: 1 - - s_0983: -1 - - s_1003: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YFR044C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4214" + - name: "L-cysteinylglycine dipeptidase" + - metabolites: !!omap + - s_0803: -1 + - s_0981: 1 + - s_0983: -1 + - s_1003: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YFR044C" + - eccodes: "3.4.13.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.13.-" - bigg.reaction: "AMPTASECG" - kegg.reaction: "R00899" - metanetx.reaction: "MNXR95828" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4215" - - name: "Cys-Gly metallodipeptidase DUG1 (EC 3.4.13.-) (Deficient in utilization of glutathione protein 1) (GSH degradosomal complex subunit DUG1)" - - metabolites: !!omap - - s_0803: -1 - - s_1003: 1 - - s_3853: -1 - - s_3854: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YFR044C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4215" + - name: "Cys-Gly metallodipeptidase DUG1 (EC 3.4.13.-) (Deficient in utilization of glutathione protein 1) (GSH degradosomal complex subunit DUG1)" + - metabolites: !!omap + - s_0803: -1 + - s_1003: 1 + - s_3853: -1 + - s_3854: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YFR044C" + - eccodes: "3.4.13.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.13.-" - kegg.reaction: "R04951" - metanetx.reaction: "MNXR109244" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4216" - - name: "riboflavin-5-phosphate phosphohydrolase" - - metabolites: !!omap - - s_0714: -1 - - s_0803: -1 - - s_1322: 1 - - s_1405: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL024C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4216" + - name: "riboflavin-5-phosphate phosphohydrolase" + - metabolites: !!omap + - s_0714: -1 + - s_0803: -1 + - s_1322: 1 + - s_1405: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL024C" + - eccodes: "3.1.3.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.2" - bigg.reaction: "ACP1_FMN" - kegg.reaction: "R00548" - metanetx.reaction: "MNXR95393" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4217" - - name: "Fe(II):oxygen oxidoreductase; Fe2+:oxygen oxidoreductase" - - metabolites: !!omap - - s_0799: -4 - - s_0807: 2 - - s_0926: -4 - - s_1278: -1 - - s_3855: 4 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL120W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4217" + - name: "Fe(II):oxygen oxidoreductase; Fe2+:oxygen oxidoreductase" + - metabolites: !!omap + - s_0799: -4 + - s_0807: 2 + - s_0926: -4 + - s_1278: -1 + - s_3855: 4 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL120W" + - eccodes: "1.16.3.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.16.3.1" - kegg.reaction: "R00078" - metanetx.reaction: "MNXR99561" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4218" - - name: "D-aminoacyl-tRNA deacylase (DTD) (EC 3.1.1.96) (D-tyrosyl-tRNA(Tyr) deacylase) (Gly-tRNA(Ala) deacylase) (EC 3.1.1.-)" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_1003: 1 - - s_1582: 1 - - s_3856: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL219W" - - annotation: !!omap - - ec-code: - - "3.1.1.96" - - "3.1.1.-" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4219" - - name: "D-aminoacyl-tRNA deacylase (DTD) (EC 3.1.1.96) (D-tyrosyl-tRNA(Tyr) deacylase) (Gly-tRNA(Ala) deacylase) (EC 3.1.1.-)" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_1612: 1 - - s_3857: -1 - - s_3858: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL219W" - - annotation: !!omap - - ec-code: - - "3.1.1.96" - - "3.1.1.-" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4220" - - name: "4-nitrophenyl phosphate phosphohydrolase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_3859: -1 - - s_3860: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL236W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4218" + - name: "D-aminoacyl-tRNA deacylase (DTD) (EC 3.1.1.96) (D-tyrosyl-tRNA(Tyr) deacylase) (Gly-tRNA(Ala) deacylase) (EC 3.1.1.-)" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_1003: 1 + - s_1582: 1 + - s_3856: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL219W" + - eccodes: "3.1.1.96; 3.1.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.96; 3.1.1.-" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4219" + - name: "D-aminoacyl-tRNA deacylase (DTD) (EC 3.1.1.96) (D-tyrosyl-tRNA(Tyr) deacylase) (Gly-tRNA(Ala) deacylase) (EC 3.1.1.-)" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_1612: 1 + - s_3857: -1 + - s_3858: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL219W" + - eccodes: "3.1.1.96; 3.1.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.96; 3.1.1.-" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4220" + - name: "4-nitrophenyl phosphate phosphohydrolase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_3859: -1 + - s_3860: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL236W" + - eccodes: "3.1.3.41" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.41" - kegg.reaction: "R03024" - metanetx.reaction: "MNXR107896" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4221" - - name: "D-Iditol:NAD+ 2-oxidoreductase" - - metabolites: !!omap - - s_0794: 1 - - s_1043: 1 - - s_1198: -1 - - s_1203: 1 - - s_3861: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL246C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4221" + - name: "D-Iditol:NAD+ 2-oxidoreductase" + - metabolites: !!omap + - s_0794: 1 + - s_1043: 1 + - s_1198: -1 + - s_1203: 1 + - s_3861: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL246C" + - eccodes: "1.1.1.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.14" - bigg.reaction: "RE1317C" - kegg.reaction: "R02896" - metanetx.reaction: "MNXR107809" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4222" - - name: "ATP:alpha-D-galactose 1-phosphotransferase" - - metabolites: !!omap - - s_0394: 1 - - s_0410: 1 - - s_0434: -1 - - s_0794: 1 - - s_3862: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR009W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4222" + - name: "ATP:alpha-D-galactose 1-phosphotransferase" + - metabolites: !!omap + - s_0394: 1 + - s_0410: 1 + - s_0434: -1 + - s_0794: 1 + - s_3862: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR009W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "GALK2" - kegg.reaction: "R01092" - metanetx.reaction: "MNXR99985" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4223" - - name: "3-Hydroxy-2-methylpropanoyl-CoA hydrolase" - - metabolites: !!omap - - s_0532: 1 - - s_0799: 1 - - s_0807: -1 - - s_3863: -1 - - s_3864: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR036C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4223" + - name: "3-Hydroxy-2-methylpropanoyl-CoA hydrolase" + - metabolites: !!omap + - s_0532: 1 + - s_0799: 1 + - s_0807: -1 + - s_3863: -1 + - s_3864: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR036C" + - eccodes: "3.1.2.4" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.2.4" - kegg.reaction: "R03352" - metanetx.reaction: "MNXR108112" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4224" - - name: "Sodium transport ATPase 5 (EC 3.6.3.7)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_1437: -1 - - s_1438: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR038C or YDR039C or YDR040C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4224" + - name: "Sodium transport ATPase 5 (EC 3.6.3.7)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_1437: -1 + - s_1438: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR038C or YDR039C or YDR040C" + - eccodes: "3.6.3.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.3.7" - bigg.reaction: "NAabcO" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4225" - - name: "Broad-range acid phosphatase DET1 (EC 3.1.3.-) (Decreased ergosterol transport protein 1)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_3865: -1 - - s_3866: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR051C or YOL075C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4225" + - name: "Broad-range acid phosphatase DET1 (EC 3.1.3.-) (Decreased ergosterol transport protein 1)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_3865: -1 + - s_3866: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR051C or YOL075C" + - eccodes: "3.1.3.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4226" - - name: "L-Alanine:2-oxoglutarate aminotransferase" - - metabolites: !!omap - - s_0180: -1 - - s_0955: -1 - - s_0991: 1 - - s_1399: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR111C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4226" + - name: "L-Alanine:2-oxoglutarate aminotransferase" + - metabolites: !!omap + - s_0180: -1 + - s_0955: -1 + - s_0991: 1 + - s_1399: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR111C" + - eccodes: "2.6.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.2" - bigg.reaction: "ALATA_L" - kegg.reaction: "R00258" - metanetx.reaction: "MNXR95698" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4227" - - name: "2-phenylacetamide amidohydrolase" - - metabolites: !!omap - - s_0419: 1 - - s_0803: -1 - - s_1321: 1 - - s_3867: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR242W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4227" + - name: "2-phenylacetamide amidohydrolase" + - metabolites: !!omap + - s_0419: 1 + - s_0803: -1 + - s_1321: 1 + - s_3867: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR242W" + - eccodes: "3.5.1.4" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.4" - bigg.reaction: "AMID2" - kegg.reaction: "R02540" - metanetx.reaction: "MNXR95813" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4228" - - name: "Indole-3-acetamide amidohydrolase" - - metabolites: !!omap - - s_0419: 1 - - s_0803: -1 - - s_0853: 1 - - s_3868: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR242W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4228" + - name: "Indole-3-acetamide amidohydrolase" + - metabolites: !!omap + - s_0419: 1 + - s_0803: -1 + - s_0853: 1 + - s_3868: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR242W" + - eccodes: "3.5.1.4" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.4" - bigg.reaction: "AMID3" - kegg.reaction: "R03096" - metanetx.reaction: "MNXR95814" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4230" - - name: "Probable amidase (EC 3.5.1.4)" - - metabolites: !!omap - - s_0419: -1 - - s_0803: 1 - - s_3871: -1 - - s_3872: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR242W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4230" + - name: "Probable amidase (EC 3.5.1.4)" + - metabolites: !!omap + - s_0419: -1 + - s_0803: 1 + - s_3871: -1 + - s_3872: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR242W" + - eccodes: "3.5.1.4" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.4" - bigg.reaction: "AMID5" - kegg.reaction: "R05551" - metanetx.reaction: "MNXR95816" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4231" - - name: "Acylamide aminohydrolase" - - metabolites: !!omap - - s_0419: 1 - - s_0803: -1 - - s_3873: -1 - - s_3874: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR242W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4231" + - name: "Acylamide aminohydrolase" + - metabolites: !!omap + - s_0419: 1 + - s_0803: -1 + - s_3873: -1 + - s_3874: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR242W" + - eccodes: "3.5.1.4" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.4" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4232" - - name: "ATP:D-Gluconate 6-phosphotransferase" - - metabolites: !!omap - - s_0340: 1 - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_3875: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR248C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4232" + - name: "ATP:D-Gluconate 6-phosphotransferase" + - metabolites: !!omap + - s_0340: 1 + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_3875: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR248C" + - eccodes: "2.7.1.12" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.12" - bigg.reaction: "GNK" - kegg.reaction: "R01737" - metanetx.reaction: "MNXR100390" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4233" - - name: "S-Adenosyl-L-methionine:protein-C-terminal-S-farnesyl-L-cysteine O-methyltransferase" - - metabolites: !!omap - - s_1413: 1 - - s_1416: -1 - - s_3876: -1 - - s_3877: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR410C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4233" + - name: "S-Adenosyl-L-methionine:protein-C-terminal-S-farnesyl-L-cysteine O-methyltransferase" + - metabolites: !!omap + - s_1413: 1 + - s_1416: -1 + - s_3876: -1 + - s_3877: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR410C" + - eccodes: "2.1.1.100" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.100" - kegg.reaction: "R04496" - metanetx.reaction: "MNXR108926" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4234" - - name: "Phosphatidylinositol N-acetylglucosaminyltransferase subunit GPI19 (GPI-GlcNAc transferase complex subunit GPI19) (GPI-GnT subunit GPI19) (EC 2.4.1.198)" - - metabolites: !!omap - - s_0795: 1 - - s_3764: -1 - - s_3766: 1 - - s_3878: -1 - - s_3879: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR437W and YGR216C and YNL038W and YPL076W and YPL175W and YPL096C-A" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4234" + - name: "Phosphatidylinositol N-acetylglucosaminyltransferase subunit GPI19 (GPI-GlcNAc transferase complex subunit GPI19) (GPI-GnT subunit GPI19) (EC 2.4.1.198)" + - metabolites: !!omap + - s_0795: 1 + - s_3764: -1 + - s_3766: 1 + - s_3878: -1 + - s_3879: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR437W and YGR216C and YNL038W and YPL076W and YPL175W and YPL096C-A" + - eccodes: "2.4.1.198" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.198" - kegg.reaction: "R05916" - metanetx.reaction: "MNXR109940" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4236" - - name: "(R)-lactate hydro-lyase" - - metabolites: !!omap - - s_0025: -1 - - s_0794: -1 - - s_0803: 1 - - s_1151: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR533C or YMR322C or YOR391C or YPL280W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4236" + - name: "(R)-lactate hydro-lyase" + - metabolites: !!omap + - s_0025: -1 + - s_0794: -1 + - s_0803: 1 + - s_1151: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR533C or YMR322C or YOR391C or YPL280W" + - eccodes: "4.2.1.130" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.130" - bigg.reaction: "GLYOX3" - kegg.reaction: "R09796" - metanetx.reaction: "MNXR100354" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4237" - - name: "Calcium-transporting ATPase 2 (EC 3.6.3.8) (Vacuolar Ca(2+)-ATPase)" - - metabolites: !!omap - - s_0802: 1 - - s_0810: -1 - - s_1329: 1 - - s_3880: -1 - - s_3881: -1 - - s_3882: 1 - - s_3883: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL006W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4237" + - name: "Calcium-transporting ATPase 2 (EC 3.6.3.8) (Vacuolar Ca(2+)-ATPase)" + - metabolites: !!omap + - s_0802: 1 + - s_0810: -1 + - s_1329: 1 + - s_3880: -1 + - s_3881: -1 + - s_3882: 1 + - s_3883: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL006W" + - eccodes: "3.6.3.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.3.8" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4238" - - name: "Calcium-transporting ATPase 2 (EC 3.6.3.8) (Golgi Ca(2+)-ATPase)" - - metabolites: !!omap - - s_0797: 1 - - s_0806: -1 - - s_1325: 1 - - s_3880: -1 - - s_4196: -1 - - s_4197: 1 - - s_4198: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL167C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4238" + - name: "Calcium-transporting ATPase 2 (EC 3.6.3.8) (Golgi Ca(2+)-ATPase)" + - metabolites: !!omap + - s_0797: 1 + - s_0806: -1 + - s_1325: 1 + - s_3880: -1 + - s_4196: -1 + - s_4197: 1 + - s_4198: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL167C" + - eccodes: "3.6.3.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.3.8" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4239" - - name: "L-arginyl-tRNA(Arg):protein arginyltransferase" - - metabolites: !!omap - - s_0428: -1 - - s_0794: 1 - - s_1583: 1 - - s_3884: -1 - - s_3885: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL017W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4239" + - name: "L-arginyl-tRNA(Arg):protein arginyltransferase" + - metabolites: !!omap + - s_0428: -1 + - s_0794: 1 + - s_1583: 1 + - s_3884: -1 + - s_3885: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL017W" + - eccodes: "2.3.2.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.2.8" - kegg.reaction: "R03862" - metanetx.reaction: "MNXR108483" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4240" - - name: "Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3 (Oligosaccharyl transferase subunit STT3) (EC 2.4.99.18)" - - metabolites: !!omap - - s_0795: 1 - - s_3886: -1 - - s_3887: -1 - - s_3888: 1 - - s_3889: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL022W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4240" + - name: "Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3 (Oligosaccharyl transferase subunit STT3) (EC 2.4.99.18)" + - metabolites: !!omap + - s_0795: 1 + - s_3886: -1 + - s_3887: -1 + - s_3888: 1 + - s_3889: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL022W" + - eccodes: "2.4.99.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.99.18" - kegg.reaction: "R05976" - metanetx.reaction: "MNXR109968" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4241" - - name: "Mannosyl-oligosaccharide glucosidase (EC 3.2.1.106) (Processing A-glucosidase I) (Glucosidase I)" - - metabolites: !!omap - - s_0804: -1 - - s_3771: 1 - - s_3772: 1 - - s_3889: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL027C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4241" + - name: "Mannosyl-oligosaccharide glucosidase (EC 3.2.1.106) (Processing A-glucosidase I) (Glucosidase I)" + - metabolites: !!omap + - s_0804: -1 + - s_3771: 1 + - s_3772: 1 + - s_3889: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL027C" + - eccodes: "3.2.1.106" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.106" - kegg.reaction: "R05979" - metanetx.reaction: "MNXR109970" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4242" - - name: "Initiation-specific alpha-1,6-mannosyltransferase (EC 2.4.1.232) (Outer chain elongation protein 1)" - - metabolites: !!omap - - s_0795: 1 - - s_3890: -1 - - s_3891: -1 - - s_3892: 1 - - s_3893: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL038C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4242" + - name: "Initiation-specific alpha-1,6-mannosyltransferase (EC 2.4.1.232) (Outer chain elongation protein 1)" + - metabolites: !!omap + - s_0795: 1 + - s_3890: -1 + - s_3891: -1 + - s_3892: 1 + - s_3893: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL038C" + - eccodes: "2.4.1.232" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.232" - kegg.reaction: "R08599" - metanetx.reaction: "MNXR112120" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4243" - - name: "Alpha-1,3/1,6-mannosyltransferase ALG2 (EC 2.4.1.132) (EC 2.4.1.257) (Asparagine-linked glycosylation protein 2) (GDP-Man:Man(1)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase) (GDP-Man:Man(1)GlcNAc(2)-PP-dolichol mannosyltransferase) (GDP-Man:Man(2)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase)" - - metabolites: !!omap - - s_0795: 1 - - s_3890: -1 - - s_3892: 1 - - s_3894: -1 - - s_3895: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL065C" - - annotation: !!omap - - ec-code: - - "2.4.1.132" - - "2.4.1.257" + - confidence_score: 2 + - !!omap + - id: "r_4243" + - name: "Alpha-1,3/1,6-mannosyltransferase ALG2 (EC 2.4.1.132) (EC 2.4.1.257) (Asparagine-linked glycosylation protein 2) (GDP-Man:Man(1)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase) (GDP-Man:Man(1)GlcNAc(2)-PP-dolichol mannosyltransferase) (GDP-Man:Man(2)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase)" + - metabolites: !!omap + - s_0795: 1 + - s_3890: -1 + - s_3892: 1 + - s_3894: -1 + - s_3895: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL065C" + - eccodes: "2.4.1.132; 2.4.1.257" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.4.1.132; 2.4.1.257" - kegg.reaction: "R05973" - metanetx.reaction: "MNXR109280" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4244" - - name: "GDP-D-mannose:D-Man-alpha-(1->3)-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-6-mannosyltransferase" - - metabolites: !!omap - - s_0795: 1 - - s_3890: -1 - - s_3892: 1 - - s_3895: -1 - - s_3896: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL065C" - - annotation: !!omap - - ec-code: - - "2.4.1.132" - - "2.4.1.257" + - confidence_score: 2 + - !!omap + - id: "r_4244" + - name: "GDP-D-mannose:D-Man-alpha-(1->3)-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-6-mannosyltransferase" + - metabolites: !!omap + - s_0795: 1 + - s_3890: -1 + - s_3892: 1 + - s_3895: -1 + - s_3896: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL065C" + - eccodes: "2.4.1.132; 2.4.1.257" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.4.1.132; 2.4.1.257" - kegg.reaction: "R06238" - metanetx.reaction: "MNXR110084" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4245" - - name: "2-O-(6-phospho-alpha-D-mannosyl)-D-glycerate 6-phosphomannohydrolase" - - metabolites: !!omap - - s_0810: -1 - - s_3897: -1 - - s_3898: 1 - - s_3899: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL156W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4245" + - name: "2-O-(6-phospho-alpha-D-mannosyl)-D-glycerate 6-phosphomannohydrolase" + - metabolites: !!omap + - s_0810: -1 + - s_3897: -1 + - s_3898: 1 + - s_3899: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL156W" + - eccodes: "3.2.1.24" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.24" - kegg.reaction: "R09645" - metanetx.reaction: "MNXR101397" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4246" - - name: "Alpha-mannosidase (EC 3.2.1.24) (Alpha-D-mannoside mannohydrolase)" - - metabolites: !!omap - - s_0810: -1 - - s_3900: -1 - - s_3901: 1 - - s_3902: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL156W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4246" + - name: "Alpha-mannosidase (EC 3.2.1.24) (Alpha-D-mannoside mannohydrolase)" + - metabolites: !!omap + - s_0810: -1 + - s_3900: -1 + - s_3901: 1 + - s_3902: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL156W" + - eccodes: "3.2.1.24" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.24" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4247" - - name: "ATP:L-threonyl,bicarbonate adenylyltransferase" - - metabolites: !!omap - - s_0434: -1 - - s_0445: -1 - - s_0633: 1 - - s_0803: 1 - - s_1045: -1 - - s_3903: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL169W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4247" + - name: "ATP:L-threonyl,bicarbonate adenylyltransferase" + - metabolites: !!omap + - s_0434: -1 + - s_0445: -1 + - s_0633: 1 + - s_0803: 1 + - s_1045: -1 + - s_3903: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL169W" + - eccodes: "2.7.7.87" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.87" - kegg.reaction: "R10463" - metanetx.reaction: "MNXR113802" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4248" - - name: "D-serine ammonia-lyase" - - metabolites: !!omap - - s_0419: 1 - - s_1399: 1 - - s_3904: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL196W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4248" + - name: "D-serine ammonia-lyase" + - metabolites: !!omap + - s_0419: 1 + - s_1399: 1 + - s_3904: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL196W" + - eccodes: "4.3.1.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.3.1.18" - bigg.reaction: "SERD_D" - kegg.reaction: "R00221" - metanetx.reaction: "MNXR104338" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4249" - - name: "O3-acetyl-L-serine:hydrogen-sulfide 2-amino-2-carboxyethyltransferase; O3-acetyl-L-serine acetate-lyase (adding hydrogen sulfide)" - - metabolites: !!omap - - s_0365: 1 - - s_3785: 1 - - s_3905: -1 - - s_3906: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR012W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4249" + - name: "O3-acetyl-L-serine:hydrogen-sulfide 2-amino-2-carboxyethyltransferase; O3-acetyl-L-serine acetate-lyase (adding hydrogen sulfide)" + - metabolites: !!omap + - s_0365: 1 + - s_3785: 1 + - s_3905: -1 + - s_3906: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR012W" + - eccodes: "2.5.1.47" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.47" - bigg.reaction: "CYSS_m" - kegg.reaction: "R00897" - metanetx.reaction: "MNXR97007" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4250" - - name: "Dolichyl-diphosphate phosphohydrolase" - - metabolites: !!omap - - s_0646: 1 - - s_0795: -1 - - s_0804: -1 - - s_1323: 1 - - s_3888: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR036C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4250" + - name: "Dolichyl-diphosphate phosphohydrolase" + - metabolites: !!omap + - s_0646: 1 + - s_0795: -1 + - s_0804: -1 + - s_1323: 1 + - s_3888: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR036C" + - eccodes: "3.6.1.43" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.43" - kegg.reaction: "R01004" - metanetx.reaction: "MNXR106783" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4251" - - name: "CTP:phosphatidate cytidyltransferase" - - metabolites: !!omap - - s_0541: -1 - - s_0636: 1 - - s_0799: -1 - - s_3907: -1 - - s_3908: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR046W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4251" + - name: "CTP:phosphatidate cytidyltransferase" + - metabolites: !!omap + - s_0541: -1 + - s_0636: 1 + - s_0799: -1 + - s_3907: -1 + - s_3908: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR046W" + - eccodes: "2.7.7.41" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.7.41" - kegg.reaction: "R01799" - metanetx.reaction: "MNXR107177" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4252" - - name: "Thiamine thiazole synthase (Thiazole biosynthetic enzyme)" - - metabolites: !!omap - - s_0803: 3 - - s_1003: -1 - - s_1198: -1 - - s_1216: 1 - - s_3909: -1 - - s_3910: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR144W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4252" + - name: "Thiamine thiazole synthase (Thiazole biosynthetic enzyme)" + - metabolites: !!omap + - s_0803: 3 + - s_1003: -1 + - s_1198: -1 + - s_1216: 1 + - s_3909: -1 + - s_3910: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR144W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - kegg.reaction: "R10685" - metanetx.reaction: "MNXR139808" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4253" - - name: "dolichyl beta-D-glucosyl phosphate:D-Glc-alpha-(1->3)-D-Glc-alpha-(1->3)-D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,2-glucosyltransferase" - - metabolites: !!omap - - s_0646: 1 - - s_0795: -1 - - s_3887: 1 - - s_3911: -1 - - s_3912: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR227W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4253" + - name: "dolichyl beta-D-glucosyl phosphate:D-Glc-alpha-(1->3)-D-Glc-alpha-(1->3)-D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,2-glucosyltransferase" + - metabolites: !!omap + - s_0646: 1 + - s_0795: -1 + - s_3887: 1 + - s_3911: -1 + - s_3912: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR227W" + - eccodes: "2.4.1.256" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.256" - kegg.reaction: "R06264" - metanetx.reaction: "MNXR110098" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4254" - - name: "nitric oxide, NADH2:oxygen oxidoreductase" - - metabolites: !!omap - - s_0794: 1 - - s_1198: 1 - - s_1203: -1 - - s_1275: -2 - - s_3913: -2 - - s_3914: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR234W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4254" + - name: "nitric oxide, NADH2:oxygen oxidoreductase" + - metabolites: !!omap + - s_0794: 1 + - s_1198: 1 + - s_1203: -1 + - s_1275: -2 + - s_3913: -2 + - s_3914: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR234W" + - eccodes: "1.14.12.17" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.12.17" - bigg.reaction: "NODOx" - kegg.reaction: "R05724" - metanetx.reaction: "MNXR101996" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4255" - - name: "nitric oxide, NADPH2:oxygen oxidoreductase" - - metabolites: !!omap - - s_0794: 1 - - s_1207: 1 - - s_1212: -1 - - s_1275: -2 - - s_3913: -2 - - s_3914: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR234W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4255" + - name: "nitric oxide, NADPH2:oxygen oxidoreductase" + - metabolites: !!omap + - s_0794: 1 + - s_1207: 1 + - s_1212: -1 + - s_1275: -2 + - s_3913: -2 + - s_3914: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR234W" + - eccodes: "1.14.12.17" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.12.17" - bigg.reaction: "NODOy" - kegg.reaction: "R05725" - metanetx.reaction: "MNXR101997" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4256" - - name: "Putative lipoate-protein ligase A (EC 6.3.1.20) (Altered inheritance rate of mitochondria protein 22)" - - metabolites: !!omap - - s_0434: -1 - - s_0633: 1 - - s_0794: -1 - - s_3915: -1 - - s_3916: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL046W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4256" + - name: "Putative lipoate-protein ligase A (EC 6.3.1.20) (Altered inheritance rate of mitochondria protein 22)" + - metabolites: !!omap + - s_0434: -1 + - s_0633: 1 + - s_0794: -1 + - s_3915: -1 + - s_3916: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL046W" + - eccodes: "6.3.1.20" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.1.20" - kegg.reaction: "R07770" - metanetx.reaction: "MNXR101081" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4258" - - name: "[lipoyl-carrier protein]-L-lysine:lipoate ligase (AMP-forming)" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_3915: -1 - - s_3917: -1 - - s_3918: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJL046W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4258" + - name: "[lipoyl-carrier protein]-L-lysine:lipoate ligase (AMP-forming)" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_3915: -1 + - s_3917: -1 + - s_3918: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJL046W" + - eccodes: "6.3.1.20" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.1.20" - kegg.reaction: "R11143" - metanetx.reaction: "MNXR114442" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4260" - - name: "Deaminated glutathione amidase (dGSH amidase) (EC 3.5.1.-) (Nitrilase homolog 1)" - - metabolites: !!omap - - s_0180: 1 - - s_0803: -1 - - s_0983: 1 - - s_3923: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL126W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4260" + - name: "Deaminated glutathione amidase (dGSH amidase) (EC 3.5.1.-) (Nitrilase homolog 1)" + - metabolites: !!omap + - s_0180: 1 + - s_0803: -1 + - s_0983: 1 + - s_3923: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL126W" + - eccodes: "3.5.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.reaction: "R12024" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4261" - - name: "Deaminated glutathione amidase (dGSH amidase) (EC 3.5.1.-) (Nitrilase homolog 1)" - - metabolites: !!omap - - s_0182: 1 - - s_0807: -1 - - s_3924: -1 - - s_3925: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL126W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4261" + - name: "Deaminated glutathione amidase (dGSH amidase) (EC 3.5.1.-) (Nitrilase homolog 1)" + - metabolites: !!omap + - s_0182: 1 + - s_0807: -1 + - s_3924: -1 + - s_3925: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL126W" + - eccodes: "3.5.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.-" - kegg.reaction: "R12024" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4262" - - name: "citrate hydroxymutase" - - metabolites: !!omap - - s_0524: -1 - - s_0941: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJL200C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4262" + - name: "citrate hydroxymutase" + - metabolites: !!omap + - s_0524: -1 + - s_0941: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJL200C" + - eccodes: "4.2.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.2.1.-" - bigg.reaction: "ACONTm" - kegg.reaction: "R01324" - metanetx.reaction: "MNXR95384" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4263" - - name: "Anion/proton exchange transporter GEF1 (CLC protein GEF1) (ClC-A) (ClC-Y1) (Voltage-gated chloride channel) [Cleaved into: GEF1 N-terminal; GEF1 C-terminal]" - - metabolites: !!omap - - s_3778: 1 - - s_3926: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR040W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4264" - - name: "succinate:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0727: -1 - - s_0799: -1 - - s_1200: 1 - - s_1205: -1 - - s_1460: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR051W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4263" + - name: "Anion/proton exchange transporter GEF1 (CLC protein GEF1) (ClC-A) (ClC-Y1) (Voltage-gated chloride channel) [Cleaved into: GEF1 N-terminal; GEF1 C-terminal]" + - metabolites: !!omap + - s_3778: 1 + - s_3926: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR040W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4264" + - name: "succinate:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0727: -1 + - s_0799: -1 + - s_1200: 1 + - s_1205: -1 + - s_1460: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR051W" + - eccodes: "1.3.1.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.3.1.6" - kegg.reaction: "R00402" - metanetx.reaction: "MNXR106516" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4265" - - name: "nucleoside-triphosphate diphosphohydrolase" - - metabolites: !!omap - - s_0633: 1 - - s_0794: 1 - - s_0803: -1 - - s_3927: -1 - - s_3928: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR069C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4265" + - name: "nucleoside-triphosphate diphosphohydrolase" + - metabolites: !!omap + - s_0633: 1 + - s_0794: 1 + - s_0803: -1 + - s_3927: -1 + - s_3928: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR069C" + - eccodes: "3.6.1.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.9" - kegg.reaction: "R01532" - metanetx.reaction: "MNXR107043" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4266" - - name: "Inosine triphosphate pyrophosphatase (ITPase) (Inosine triphosphatase) (EC 3.6.1.9) (Hydroxylaminopurine sensitivity protein 1) (Non-canonical purine NTP pyrophosphatase) (Non-standard purine NTP pyrophosphatase) (Nucleoside-triphosphate diphosphatase) (Nucleoside-triphosphate pyrophosphatase) (NTPase)" - - metabolites: !!omap - - s_0584: 1 - - s_0586: -1 - - s_0633: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR069C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4266" + - name: "Inosine triphosphate pyrophosphatase (ITPase) (Inosine triphosphatase) (EC 3.6.1.9) (Hydroxylaminopurine sensitivity protein 1) (Non-canonical purine NTP pyrophosphatase) (Non-standard purine NTP pyrophosphatase) (Nucleoside-triphosphate diphosphatase) (Nucleoside-triphosphate pyrophosphatase) (NTPase)" + - metabolites: !!omap + - s_0584: 1 + - s_0586: -1 + - s_0633: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR069C" + - eccodes: "3.6.1.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.9" - bigg.reaction: "NTPP5" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4267" - - name: "2'-Deoxyguanosine 5'-triphosphate diphosphohydrolase" - - metabolites: !!omap - - s_0615: 1 - - s_0617: -1 - - s_0633: 1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR069C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4267" + - name: "2'-Deoxyguanosine 5'-triphosphate diphosphohydrolase" + - metabolites: !!omap + - s_0615: 1 + - s_0617: -1 + - s_0633: 1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR069C" + - eccodes: "3.6.1.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.9" - bigg.reaction: "NTPP1" - kegg.reaction: "R01855" - metanetx.reaction: "MNXR102049" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4268" - - name: "dTTP diphosphohydrolase" - - metabolites: !!omap - - s_0633: 1 - - s_0649: 1 - - s_0650: -1 - - s_0794: 1 - - s_0803: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR069C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4268" + - name: "dTTP diphosphohydrolase" + - metabolites: !!omap + - s_0633: 1 + - s_0649: 1 + - s_0650: -1 + - s_0794: 1 + - s_0803: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR069C" + - eccodes: "3.6.1.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.9" - bigg.reaction: "NTPP7" - kegg.reaction: "R11323" - metanetx.reaction: "MNXR97809" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4269" - - name: "Inosine triphosphate pyrophosphatase (ITPase) (Inosine triphosphatase) (EC 3.6.1.9) (Hydroxylaminopurine sensitivity protein 1) (Non-canonical purine NTP pyrophosphatase) (Non-standard purine NTP pyrophosphatase) (Nucleoside-triphosphate diphosphatase) (Nucleoside-triphosphate pyrophosphatase) (NTPase)" - - metabolites: !!omap - - s_0633: 1 - - s_0794: 1 - - s_0803: -1 - - s_3929: -1 - - s_3930: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR069C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4269" + - name: "Inosine triphosphate pyrophosphatase (ITPase) (Inosine triphosphatase) (EC 3.6.1.9) (Hydroxylaminopurine sensitivity protein 1) (Non-canonical purine NTP pyrophosphatase) (Non-standard purine NTP pyrophosphatase) (Nucleoside-triphosphate diphosphatase) (Nucleoside-triphosphate pyrophosphatase) (NTPase)" + - metabolites: !!omap + - s_0633: 1 + - s_0794: 1 + - s_0803: -1 + - s_3929: -1 + - s_3930: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR069C" + - eccodes: "3.6.1.9" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.9" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4270" - - name: "superoxide:superoxide oxidoreductase" - - metabolites: !!omap - - s_0794: -2 - - s_0837: 1 - - s_1275: 1 - - s_3931: -2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YJR104C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4270" + - name: "superoxide:superoxide oxidoreductase" + - metabolites: !!omap + - s_0794: -2 + - s_0837: 1 + - s_1275: 1 + - s_3931: -2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YJR104C" + - eccodes: "1.15.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.15.1.1" - bigg.reaction: "SPODM" - kegg.reaction: "R00275" - metanetx.reaction: "MNXR104498" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4271" - - name: "Endoplasmic reticulum mannosyl-oligosaccharide 1,2-alpha-mannosidase (EC 3.2.1.113) (ER alpha-1,2-mannosidase) (Man(9)-alpha-mannosidase)" - - metabolites: !!omap - - s_0804: -4 - - s_3774: -1 - - s_3932: 1 - - s_3933: 4 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR131W or YLR057W" - - annotation: !!omap - - ec-code: - - "3.2.1.113" - - "3.2.1.-" + - confidence_score: 2 + - !!omap + - id: "r_4271" + - name: "Endoplasmic reticulum mannosyl-oligosaccharide 1,2-alpha-mannosidase (EC 3.2.1.113) (ER alpha-1,2-mannosidase) (Man(9)-alpha-mannosidase)" + - metabolites: !!omap + - s_0804: -4 + - s_3774: -1 + - s_3932: 1 + - s_3933: 4 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR131W or YLR057W" + - eccodes: "3.2.1.113; 3.2.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.2.1.113; 3.2.1.-" - kegg.reaction: "R05982" - metanetx.reaction: "MNXR109973" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4272" - - name: "alpha 1,2-mannosyloligosaccharide alpha-D-mannohydrolase" - - metabolites: !!omap - - s_0804: -1 - - s_3774: -1 - - s_3891: 1 - - s_3933: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR131W or YLR057W" - - annotation: !!omap - - ec-code: - - "3.2.1.113" - - "3.2.1.-" + - confidence_score: 2 + - !!omap + - id: "r_4272" + - name: "alpha 1,2-mannosyloligosaccharide alpha-D-mannohydrolase" + - metabolites: !!omap + - s_0804: -1 + - s_3774: -1 + - s_3891: 1 + - s_3933: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR131W or YLR057W" + - eccodes: "3.2.1.113; 3.2.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.2.1.113; 3.2.1.-" - kegg.reaction: "R06722" - metanetx.reaction: "MNXR110483" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4273" - - name: "ethylnitronate:oxygen 2-oxidoreductase (nitrite-forming)" - - metabolites: !!omap - - s_0359: 1 - - s_0714: 1 - - s_0717: -1 - - s_0794: 2 - - s_0803: 1 - - s_1275: -1 - - s_3934: -1 - - s_3935: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR149W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4273" + - name: "ethylnitronate:oxygen 2-oxidoreductase (nitrite-forming)" + - metabolites: !!omap + - s_0359: 1 + - s_0714: 1 + - s_0717: -1 + - s_0794: 2 + - s_0803: 1 + - s_1275: -1 + - s_3934: -1 + - s_3935: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR149W" + - eccodes: "1.13.12.16" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.13.12.16" - kegg.reaction: "R00025" - metanetx.reaction: "MNXR106342" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4274" - - name: "O-Succinyl-L-homoserine succinate-lyase (deaminating; 2-oxobutanoate-forming)" - - metabolites: !!omap - - s_0178: 1 - - s_0419: 1 - - s_0794: 1 - - s_0803: -1 - - s_1241: -1 - - s_1458: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLL058W or YML082W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4274" + - name: "O-Succinyl-L-homoserine succinate-lyase (deaminating; 2-oxobutanoate-forming)" + - metabolites: !!omap + - s_0178: 1 + - s_0419: 1 + - s_0794: 1 + - s_0803: -1 + - s_1241: -1 + - s_1458: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLL058W or YML082W" + - eccodes: "2.5.1.48" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.5.1.48" - bigg.reaction: "SHSL4r" - kegg.reaction: "R00999" - metanetx.reaction: "MNXR104384" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4275" - - name: "Fe(II):NADP+ oxidoreductase" - - metabolites: !!omap - - s_0794: 1 - - s_0924: 2 - - s_1207: 1 - - s_1212: -1 - - s_3936: -2 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR047C or YKL220C or YLR214W or YNR060W or YOL152W or YOR381W or YOR384W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4275" + - name: "Fe(II):NADP+ oxidoreductase" + - metabolites: !!omap + - s_0794: 1 + - s_0924: 2 + - s_1207: 1 + - s_1212: -1 + - s_3936: -2 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR047C or YKL220C or YLR214W or YNR060W or YOL152W or YOR381W or YOR384W" + - eccodes: "1.16.1.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.16.1.7" - kegg.reaction: "R09541" - metanetx.reaction: "MNXR112960" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4276" - - name: "Fe(II):NADP+ oxidoreductase" - - metabolites: !!omap - - s_0794: 1 - - s_0924: 2 - - s_1207: 1 - - s_1212: -1 - - s_4031: -2 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLL051C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4276" + - name: "Fe(II):NADP+ oxidoreductase" + - metabolites: !!omap + - s_0794: 1 + - s_0924: 2 + - s_1207: 1 + - s_1212: -1 + - s_4031: -2 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLL051C" + - eccodes: "1.16.1.7" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.16.1.7" - kegg.reaction: "R09541" - metanetx.reaction: "MNXR112960" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4277" - - name: "acyl-CoA:sn-glycerol-3-phosphate 1-O-acyltransferase" - - metabolites: !!omap - - s_0530: 1 - - s_3937: -1 - - s_3938: -1 - - s_3939: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR099C or YPR139C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4277" + - name: "acyl-CoA:sn-glycerol-3-phosphate 1-O-acyltransferase" + - metabolites: !!omap + - s_0530: 1 + - s_3937: -1 + - s_3938: -1 + - s_3939: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR099C or YPR139C" + - eccodes: "2.3.1.51" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.51" - kegg.reaction: "R00851" - metanetx.reaction: "MNXR106715" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4278" - - name: "diphthine:ammonia ligase (AMP-forming)" - - metabolites: !!omap - - s_0419: -1 - - s_0423: 1 - - s_0434: -1 - - s_0633: 1 - - s_0794: 1 - - s_3940: -1 - - s_3941: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR143W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4278" + - name: "diphthine:ammonia ligase (AMP-forming)" + - metabolites: !!omap + - s_0419: -1 + - s_0423: 1 + - s_0434: -1 + - s_0633: 1 + - s_0794: 1 + - s_3940: -1 + - s_3941: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR143W" + - eccodes: "6.3.1.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.3.1.14" - kegg.reaction: "R03613" - metanetx.reaction: "MNXR108295" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4279" - - name: "8-oxo-dGTP diphosphohydrolase" - - metabolites: !!omap - - s_0638: 1 - - s_0801: 1 - - s_0809: -1 - - s_3942: -1 - - s_3943: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR151C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4279" + - name: "8-oxo-dGTP diphosphohydrolase" + - metabolites: !!omap + - s_0638: 1 + - s_0801: 1 + - s_0809: -1 + - s_3942: -1 + - s_3943: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR151C" + - eccodes: "3.6.1.55" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.55" - kegg.reaction: "R09832" - metanetx.reaction: "MNXR113234" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4280" - - name: "octanoyl-[acp]:protein N6-octanoyltransferase" - - metabolites: !!omap - - s_1254: -1 - - s_1845: 1 - - s_3944: -1 - - s_3945: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR239C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4280" + - name: "octanoyl-[acp]:protein N6-octanoyltransferase" + - metabolites: !!omap + - s_1254: -1 + - s_1845: 1 + - s_3944: -1 + - s_3945: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR239C" + - eccodes: "2.3.1.181" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.181" - kegg.reaction: "R07766" - metanetx.reaction: "MNXR111354" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4281" - - name: "lipoyl-[acp]:protein N6-lipoyltransferase" - - metabolites: !!omap - - s_1845: 1 - - s_3944: -1 - - s_3946: -1 - - s_3947: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR239C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4281" + - name: "lipoyl-[acp]:protein N6-lipoyltransferase" + - metabolites: !!omap + - s_1845: 1 + - s_3944: -1 + - s_3946: -1 + - s_3947: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR239C" + - eccodes: "2.3.1.181" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.181" - kegg.reaction: "R07769" - metanetx.reaction: "MNXR111357" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4282" - - name: "ATP:D-fructose-6-phosphate 2-phosphotransferase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0442: 1 - - s_0794: 1 - - s_3948: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR345W" - - annotation: !!omap - - ec-code: - - "2.7.1.105" - - "3.1.3.46" + - confidence_score: 2 + - !!omap + - id: "r_4282" + - name: "ATP:D-fructose-6-phosphate 2-phosphotransferase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0442: 1 + - s_0794: 1 + - s_3948: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR345W" + - eccodes: "2.7.1.105; 3.1.3.46" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.7.1.105; 3.1.3.46" - bigg.reaction: "PFK26_1" - kegg.reaction: "R02732" - metanetx.reaction: "MNXR102508" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4283" - - name: "ATP:D-fructose 6-phosphotransferase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0553: -1 - - s_0794: 1 - - s_3948: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR446W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4283" + - name: "ATP:D-fructose 6-phosphotransferase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0553: -1 + - s_0794: 1 + - s_3948: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR446W" + - eccodes: "2.7.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.1" - kegg.reaction: "R00867" - metanetx.reaction: "MNXR100614" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4284" - - name: "ATP:beta-D-glucose 6-phosphotransferase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_3949: -1 - - s_3950: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR446W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4284" + - name: "ATP:beta-D-glucose 6-phosphotransferase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_3949: -1 + - s_3950: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR446W" + - eccodes: "2.7.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.1" - bigg.reaction: "GLUK_syn" - kegg.reaction: "R01600" - metanetx.reaction: "MNXR107081" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4285" - - name: "ATP:alpha-D-glucose 6-phosphotransferase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_3951: -1 - - s_3952: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR446W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4285" + - name: "ATP:alpha-D-glucose 6-phosphotransferase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_3951: -1 + - s_3952: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR446W" + - eccodes: "2.7.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.1" - bigg.reaction: "GLUKA" - kegg.reaction: "R01786" - metanetx.reaction: "MNXR100284" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4286" - - name: "ATP:D-glucosamine 6-phosphotransferase" - - metabolites: !!omap - - s_0394: 1 - - s_0412: 1 - - s_0434: -1 - - s_0794: 1 - - s_3953: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR446W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4286" + - name: "ATP:D-glucosamine 6-phosphotransferase" + - metabolites: !!omap + - s_0394: 1 + - s_0412: 1 + - s_0434: -1 + - s_0794: 1 + - s_3953: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR446W" + - eccodes: "2.7.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.1" - bigg.reaction: "HEX10" - kegg.reaction: "R01961" - metanetx.reaction: "MNXR100613" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4287" - - name: "ATP:D-fructose 6-phosphotransferase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_3948: 1 - - s_3954: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YLR446W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4287" + - name: "ATP:D-fructose 6-phosphotransferase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_3948: 1 + - s_3954: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YLR446W" + - eccodes: "2.7.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.1" - bigg.reaction: "ABFPT" - kegg.reaction: "R03920" - metanetx.reaction: "MNXR95167" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4288" - - name: "alpha-D-Glucose 6-phosphate ketol-isomerase" - - metabolites: !!omap - - s_3950: 1 - - s_3952: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR099C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4288" + - name: "alpha-D-Glucose 6-phosphate ketol-isomerase" + - metabolites: !!omap + - s_3950: 1 + - s_3952: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR099C" + - eccodes: "5.1.3.15" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.1.3.15" - bigg.reaction: "G6PI_1" - kegg.reaction: "R02739" - metanetx.reaction: "MNXR99911" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4291" - - name: "D-Glyceraldehyde:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0570: -1 - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3958: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4291" + - name: "D-Glyceraldehyde:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0570: -1 + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3958: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - bigg.reaction: "GLYALDDr" - kegg.reaction: "R01752" - metanetx.reaction: "MNXR100310" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4292" - - name: "4-Aminobutyraldehyde:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0274: -1 - - s_0734: 1 - - s_0794: 2 - - s_0803: -1 - - s_1207: -1 - - s_1212: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4292" + - name: "4-Aminobutyraldehyde:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0274: -1 + - s_0734: 1 + - s_0794: 2 + - s_0803: -1 + - s_1207: -1 + - s_1212: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - bigg.reaction: "4ABUTD" - kegg.reaction: "R01986" - metanetx.reaction: "MNXR94991" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4293" - - name: "4-aminobutanal:NAD+ 1-oxidoreductase; 4-aminobutyraldehyde:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0274: -1 - - s_0734: 1 - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4293" + - name: "4-aminobutanal:NAD+ 1-oxidoreductase; 4-aminobutyraldehyde:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0274: -1 + - s_0734: 1 + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - bigg.reaction: "ABUTD" - kegg.reaction: "R02549" - metanetx.reaction: "MNXR95191" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4294" - - name: "Indole-3-acetaldehyde:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_0850: -1 - - s_0853: 1 - - s_1198: -1 - - s_1203: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4294" + - name: "Indole-3-acetaldehyde:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_0850: -1 + - s_0853: 1 + - s_1198: -1 + - s_1203: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - bigg.reaction: "ALDD20x" - kegg.reaction: "R02678" - metanetx.reaction: "MNXR95744" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4295" - - name: "2-Propyn-1-al:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3959: -1 - - s_3960: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4295" + - name: "2-Propyn-1-al:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3959: -1 + - s_3960: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - kegg.reaction: "R02940" - metanetx.reaction: "MNXR107839" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4296" - - name: "D-Glucuronolactone:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 3 - - s_0803: -2 - - s_1198: -1 - - s_1203: 1 - - s_3961: -1 - - s_3962: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4296" + - name: "D-Glucuronolactone:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 3 + - s_0803: -2 + - s_1198: -1 + - s_1203: 1 + - s_3961: -1 + - s_3962: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - bigg.reaction: "ALDD32" - kegg.reaction: "R02957" - metanetx.reaction: "MNXR95753" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4297" - - name: "4-Trimethylammoniobutanal:NAD+ 1-oxidoreductase; 4-Trimethylammoniobutanal:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3963: -1 - - s_3964: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4297" + - name: "4-Trimethylammoniobutanal:NAD+ 1-oxidoreductase; 4-Trimethylammoniobutanal:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3963: -1 + - s_3964: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - kegg.reaction: "R03283" - metanetx.reaction: "MNXR108074" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4298" - - name: "(S)-Methylmalonate semialdehyde:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3965: -1 - - s_3966: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4298" + - name: "(S)-Methylmalonate semialdehyde:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3965: -1 + - s_3966: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - kegg.reaction: "R03869" - metanetx.reaction: "MNXR95762" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4299" - - name: "Imidazole acetaldehyde:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3967: -1 - - s_3968: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4299" + - name: "Imidazole acetaldehyde:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3967: -1 + - s_3968: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - kegg.reaction: "R04065" - metanetx.reaction: "MNXR95745" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4300" - - name: "3alpha,7alpha-Dihydroxy-5beta-cholestan-26-al:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3969: -1 - - s_3970: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4300" + - name: "3alpha,7alpha-Dihydroxy-5beta-cholestan-26-al:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3969: -1 + - s_3970: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - bigg.reaction: "r0688" - kegg.reaction: "R04506" - metanetx.reaction: "MNXR108934" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4301" - - name: "5-Hydroxyindoleacetaldehyde:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3971: -1 - - s_3972: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4301" + - name: "5-Hydroxyindoleacetaldehyde:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3971: -1 + - s_3972: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - kegg.reaction: "R04903" - metanetx.reaction: "MNXR109205" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4302" - - name: "N4-Acetylaminobutanal:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3973: -1 - - s_3974: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4302" + - name: "N4-Acetylaminobutanal:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3973: -1 + - s_3974: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - bigg.reaction: "NABTNO" - kegg.reaction: "R05050" - metanetx.reaction: "MNXR101805" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4303" - - name: "Fatty aldehyde dehydrogenase HFD1 (EC 1.2.1.3)" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3975: -1 - - s_3976: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4303" + - name: "Fatty aldehyde dehydrogenase HFD1 (EC 1.2.1.3)" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3975: -1 + - s_3976: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - kegg.reaction: "R05237" - metanetx.reaction: "MNXR109413" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4304" - - name: "Fatty aldehyde dehydrogenase HFD1 (EC 1.2.1.3)" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3977: -1 - - s_3978: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4304" + - name: "Fatty aldehyde dehydrogenase HFD1 (EC 1.2.1.3)" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3977: -1 + - s_3978: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - kegg.reaction: "R05238" - metanetx.reaction: "MNXR109414" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4305" - - name: "Chloroacetaldehyde:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3979: -1 - - s_3980: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4305" + - name: "Chloroacetaldehyde:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3979: -1 + - s_3980: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - kegg.reaction: "R05286" - metanetx.reaction: "MNXR109457" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4306" - - name: "Aldehyde:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3981: -1 - - s_3982: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4306" + - name: "Aldehyde:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3981: -1 + - s_3982: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - kegg.reaction: "R06366" - metanetx.reaction: "MNXR110183" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4307" - - name: "farnesal:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 2 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_3983: -1 - - s_3984: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR110C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4307" + - name: "farnesal:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 2 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_3983: -1 + - s_3984: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR110C" + - eccodes: "1.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.3" - kegg.reaction: "R08146" - metanetx.reaction: "MNXR111724" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4308" - - name: "Probable phospholipid-transporting ATPase DNF3 (EC 3.6.3.1) (Aminophospholipid translocase) (APT) (Phospholipid translocase) (PLT)" - - metabolites: !!omap - - s_2783: 1 - - s_2808: -1 - - s_2831: -1 - - s_2966: 1 - - s_3985: -1 - - s_3986: 1 - - s_3987: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR162C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4308" + - name: "Probable phospholipid-transporting ATPase DNF3 (EC 3.6.3.1) (Aminophospholipid translocase) (APT) (Phospholipid translocase) (PLT)" + - metabolites: !!omap + - s_2783: 1 + - s_2808: -1 + - s_2831: -1 + - s_2966: 1 + - s_3985: -1 + - s_3986: 1 + - s_3987: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR162C" + - eccodes: "3.6.3.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.3.1" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4309" - - name: "Putative esterase YMR210W (EC 3.1.1.-)" - - metabolites: !!omap - - s_0765: 1 - - s_0794: 1 - - s_0803: -1 - - s_1260: 1 - - s_3988: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YMR210W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4309" + - name: "Putative esterase YMR210W (EC 3.1.1.-)" + - metabolites: !!omap + - s_0765: 1 + - s_0794: 1 + - s_0803: -1 + - s_1260: 1 + - s_3988: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YMR210W" + - eccodes: "3.1.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.1.-" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4310" - - name: "GDP-mannose:glycolipid 1,2-alpha-D-mannosyltransferase" - - metabolites: !!omap - - s_0795: 2 - - s_3890: -2 - - s_3892: 2 - - s_3896: -1 - - s_3989: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL048W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4310" + - name: "GDP-mannose:glycolipid 1,2-alpha-D-mannosyltransferase" + - metabolites: !!omap + - s_0795: 2 + - s_3890: -2 + - s_3892: 2 + - s_3896: -1 + - s_3989: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL048W" + - eccodes: "2.4.1.131" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.131" - kegg.reaction: "R06127" - metanetx.reaction: "MNXR110030" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4311" - - name: "GDP-mannose:glycolipid 1,2-alpha-D-mannosyltransferase" - - metabolites: !!omap - - s_0795: 2 - - s_3890: -2 - - s_3892: 2 - - s_3989: -1 - - s_3990: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL048W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4311" + - name: "GDP-mannose:glycolipid 1,2-alpha-D-mannosyltransferase" + - metabolites: !!omap + - s_0795: 2 + - s_3890: -2 + - s_3892: 2 + - s_3989: -1 + - s_3990: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL048W" + - eccodes: "2.4.1.131" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.131" - kegg.reaction: "R06128" - metanetx.reaction: "MNXR110031" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4312" - - name: "S-adenosyl-L-methionine:carnosine N-methyltransferase" - - metabolites: !!omap - - s_0794: 1 - - s_1413: 1 - - s_1416: -1 - - s_3991: -1 - - s_3992: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL092W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4312" + - name: "S-adenosyl-L-methionine:carnosine N-methyltransferase" + - metabolites: !!omap + - s_0794: 1 + - s_1413: 1 + - s_1416: -1 + - s_3991: -1 + - s_3992: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL092W" + - eccodes: "2.1.1.22" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.1.1.22" - kegg.reaction: "R02144" - metanetx.reaction: "MNXR107333" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4313" - - name: "Alpha-1,2-mannosyltransferase ALG9 (EC 2.4.1.259) (EC 2.4.1.261) (Asparagine-linked glycosylation protein 9) (Dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) (Dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase)" - - metabolites: !!omap - - s_0644: -1 - - s_0646: 1 - - s_3993: -1 - - s_3994: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL219C" - - annotation: !!omap - - ec-code: - - "2.4.1.259" - - "2.4.1.261" + - confidence_score: 2 + - !!omap + - id: "r_4313" + - name: "Alpha-1,2-mannosyltransferase ALG9 (EC 2.4.1.259) (EC 2.4.1.261) (Asparagine-linked glycosylation protein 9) (Dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) (Dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase)" + - metabolites: !!omap + - s_0644: -1 + - s_0646: 1 + - s_3993: -1 + - s_3994: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL219C" + - eccodes: "2.4.1.259; 2.4.1.261" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.4.1.259; 2.4.1.261" - kegg.reaction: "R06259" - metanetx.reaction: "MNXR110093" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4314" - - name: "Alpha-1,2-mannosyltransferase ALG9 (EC 2.4.1.259) (EC 2.4.1.261) (Asparagine-linked glycosylation protein 9) (Dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) (Dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase)" - - metabolites: !!omap - - s_0644: -1 - - s_0646: 1 - - s_3995: -1 - - s_3996: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL219C" - - annotation: !!omap - - ec-code: - - "2.4.1.259" - - "2.4.1.261" + - confidence_score: 2 + - !!omap + - id: "r_4314" + - name: "Alpha-1,2-mannosyltransferase ALG9 (EC 2.4.1.259) (EC 2.4.1.261) (Asparagine-linked glycosylation protein 9) (Dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) (Dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase)" + - metabolites: !!omap + - s_0644: -1 + - s_0646: 1 + - s_3995: -1 + - s_3996: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL219C" + - eccodes: "2.4.1.259; 2.4.1.261" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.4.1.259; 2.4.1.261" - kegg.reaction: "R06261" - metanetx.reaction: "MNXR110095" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4315" - - name: "Glycolate:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0779: 1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_3997: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL274C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4315" + - name: "Glycolate:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0779: 1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_3997: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL274C" + - eccodes: "1.1.1.26" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.26" - bigg.reaction: "GLYCLTDx" - kegg.reaction: "R00717" - metanetx.reaction: "MNXR100331" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4316" - - name: "Dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase (EC 2.4.1.260) (Asparagine-linked glycosylation protein 12) (Dolichyl-P-Man:Man(7)GlcNAc(2)-PP-dolichyl-alpha-1,6-mannosyltransferase) (Extracellular mutant protein 39) (Mannosyltransferase ALG12)" - - metabolites: !!omap - - s_0644: -1 - - s_0646: 1 - - s_3994: -1 - - s_3995: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNR030W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4316" + - name: "Dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase (EC 2.4.1.260) (Asparagine-linked glycosylation protein 12) (Dolichyl-P-Man:Man(7)GlcNAc(2)-PP-dolichyl-alpha-1,6-mannosyltransferase) (Extracellular mutant protein 39) (Mannosyltransferase ALG12)" + - metabolites: !!omap + - s_0644: -1 + - s_0646: 1 + - s_3994: -1 + - s_3995: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNR030W" + - eccodes: "2.4.1.260" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.260" - kegg.reaction: "R06260" - metanetx.reaction: "MNXR110094" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4317" - - name: "sucrose glucohydrolase" - - metabolites: !!omap - - s_0553: 1 - - s_0563: 1 - - s_0803: -1 - - s_3998: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOL157C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4317" + - name: "sucrose glucohydrolase" + - metabolites: !!omap + - s_0553: 1 + - s_0563: 1 + - s_0803: -1 + - s_3998: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOL157C" + - eccodes: "3.2.1.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.10" - bigg.reaction: "SUCR" - kegg.reaction: "R00801" - metanetx.reaction: "MNXR104638" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4318" - - name: "Isomaltose 6-alpha-D-glucanohydrolase" - - metabolites: !!omap - - s_0563: 1 - - s_0803: -1 - - s_3951: 1 - - s_3999: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOL157C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4318" + - name: "Isomaltose 6-alpha-D-glucanohydrolase" + - metabolites: !!omap + - s_0563: 1 + - s_0803: -1 + - s_3951: 1 + - s_3999: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOL157C" + - eccodes: "3.2.1.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.10" - kegg.reaction: "R01718" - metanetx.reaction: "MNXR107140" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4319" - - name: "Dextrin 6-alpha-D-glucanohydrolase" - - metabolites: !!omap - - s_0563: 2 - - s_0803: -2 - - s_4000: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOL157C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4319" + - name: "Dextrin 6-alpha-D-glucanohydrolase" + - metabolites: !!omap + - s_0563: 2 + - s_0803: -2 + - s_4000: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOL157C" + - eccodes: "3.2.1.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.10" - kegg.reaction: "R01791" - metanetx.reaction: "MNXR107171" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4320" - - name: "dolichyl beta-D-glucosyl phosphate:D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,3-glucosyltransferase" - - metabolites: !!omap - - s_0646: 1 - - s_0795: -1 - - s_3911: -1 - - s_3996: -1 - - s_4001: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR002W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4320" + - name: "dolichyl beta-D-glucosyl phosphate:D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,3-glucosyltransferase" + - metabolites: !!omap + - s_0646: 1 + - s_0795: -1 + - s_3911: -1 + - s_3996: -1 + - s_4001: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR002W" + - eccodes: "2.4.1.267" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.267" - kegg.reaction: "R06262" - metanetx.reaction: "MNXR110096" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4321" - - name: "dolichyl beta-D-glucosyl phosphate:D-Glc-alpha-(1->3)-D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,3-glucosyltransferase" - - metabolites: !!omap - - s_0646: 1 - - s_0795: -1 - - s_3911: -1 - - s_3912: 1 - - s_4001: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR067C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4321" + - name: "dolichyl beta-D-glucosyl phosphate:D-Glc-alpha-(1->3)-D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,3-glucosyltransferase" + - metabolites: !!omap + - s_0646: 1 + - s_0795: -1 + - s_3911: -1 + - s_3912: 1 + - s_4001: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR067C" + - eccodes: "2.4.1.265" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.265" - kegg.reaction: "R06263" - metanetx.reaction: "MNXR110097" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4322" - - name: "GPI mannosyltransferase 4 (EC 2.4.1.-) (GPI mannosyltransferase IV) (GPI-MT-IV)" - - metabolites: !!omap - - s_0644: -1 - - s_0646: 1 - - s_0795: 1 - - s_4002: -1 - - s_4003: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR149C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4322" + - name: "GPI mannosyltransferase 4 (EC 2.4.1.-) (GPI mannosyltransferase IV) (GPI-MT-IV)" + - metabolites: !!omap + - s_0644: -1 + - s_0646: 1 + - s_0795: 1 + - s_4002: -1 + - s_4003: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR149C" + - eccodes: "2.4.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.-" - kegg.reaction: "R07129" - metanetx.reaction: "MNXR110833" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4323" - - name: "protein N6-(octanoyl)lysine:sulfur sulfurtransferase" - - metabolites: !!omap - - s_1031: 2 - - s_1419: -2 - - s_3945: -1 - - s_3947: 1 - - s_4004: -2 - - s_4005: 2 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR196C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4323" + - name: "protein N6-(octanoyl)lysine:sulfur sulfurtransferase" + - metabolites: !!omap + - s_1031: 2 + - s_1419: -2 + - s_3945: -1 + - s_3947: 1 + - s_4004: -2 + - s_4005: 2 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR196C" + - eccodes: "2.8.1.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.8.1.8" - kegg.reaction: "R07767" - metanetx.reaction: "MNXR111355" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4324" - - name: "octanoyl-[acp]:sulfur sulfurtransferase" - - metabolites: !!omap - - s_1031: 2 - - s_1254: -1 - - s_1419: -2 - - s_3946: 1 - - s_4004: -2 - - s_4005: 2 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR196C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4324" + - name: "octanoyl-[acp]:sulfur sulfurtransferase" + - metabolites: !!omap + - s_1031: 2 + - s_1254: -1 + - s_1419: -2 + - s_3946: 1 + - s_4004: -2 + - s_4005: 2 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR196C" + - eccodes: "2.8.1.8" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.8.1.8" - kegg.reaction: "R07768" - metanetx.reaction: "MNXR111356" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4325" - - name: "Iron sulfur cluster assembly protein 2, mitochondrial (Iron sulfur cluster scaffold protein 2)" - - metabolites: !!omap - - s_4006: -1 - - s_4007: -1 - - s_4008: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YOR226C or YPL135W" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4326" - - name: "thiosulfate:cyanide sulfurtranserase" - - metabolites: !!omap - - s_0799: 2 - - s_4009: -1 - - s_4010: -1 - - s_4011: 1 - - s_4012: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR251C or YOR285W or YOR286W" - - annotation: !!omap - - ec-code: - - "2.8.1.1" - - "2.8.1.-" + - confidence_score: 2 + - !!omap + - id: "r_4325" + - name: "Iron sulfur cluster assembly protein 2, mitochondrial (Iron sulfur cluster scaffold protein 2)" + - metabolites: !!omap + - s_4006: -1 + - s_4007: -1 + - s_4008: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YOR226C or YPL135W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4326" + - name: "thiosulfate:cyanide sulfurtranserase" + - metabolites: !!omap + - s_0799: 2 + - s_4009: -1 + - s_4010: -1 + - s_4011: 1 + - s_4012: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR251C or YOR285W or YOR286W" + - eccodes: "2.8.1.1; 2.8.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.8.1.1; 2.8.1.-" - bigg.reaction: "CYANSTm" - kegg.reaction: "R01931" - metanetx.reaction: "MNXR138187" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4327" - - name: "Magnesium transporter MRS2, mitochondrial (RNA-splicing protein MRS2)" - - metabolites: !!omap - - s_4013: -1 - - s_4014: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR334W or YPL060W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4328" - - name: "UDPglucose:dolichyl-phosphate beta-D-glucosyltransferase" - - metabolites: !!omap - - s_0646: -1 - - s_0795: 2 - - s_3766: 1 - - s_3911: 1 - - s_4015: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPL227C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4327" + - name: "Magnesium transporter MRS2, mitochondrial (RNA-splicing protein MRS2)" + - metabolites: !!omap + - s_4013: -1 + - s_4014: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR334W or YPL060W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4328" + - name: "UDPglucose:dolichyl-phosphate beta-D-glucosyltransferase" + - metabolites: !!omap + - s_0646: -1 + - s_0795: 2 + - s_3766: 1 + - s_3911: 1 + - s_4015: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPL227C" + - eccodes: "2.4.1.117" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.117" - kegg.reaction: "R01005" - metanetx.reaction: "MNXR143462" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4329" - - name: "Putative sulfate transporter YPR003C" - - metabolites: !!omap - - s_1467: -1 - - s_4016: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR003C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4329" + - name: "Putative sulfate transporter YPR003C" + - metabolites: !!omap + - s_1467: -1 + - s_4016: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR003C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "HMR_9626" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4330" - - name: "Pyridoxine:NADP+ 4-oxidoreductase" - - metabolites: !!omap - - s_0794: 1 - - s_1207: -1 - - s_1212: 1 - - s_1392: 1 - - s_1396: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YPR127W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4330" + - name: "Pyridoxine:NADP+ 4-oxidoreductase" + - metabolites: !!omap + - s_0794: 1 + - s_1207: -1 + - s_1212: 1 + - s_1392: 1 + - s_1396: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YPR127W" + - eccodes: "1.1.1.65" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.65" - bigg.reaction: "PYDXOR" - kegg.reaction: "R01708" - metanetx.reaction: "MNXR103366" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4331" - - name: "[1,4-(N-Acetyl-beta-D-glucosaminyl)]n glycanohydrolase" - - metabolites: !!omap - - s_0509: -1 - - s_0803: -1 - - s_4017: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR371W or YLR286C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4331" + - name: "[1,4-(N-Acetyl-beta-D-glucosaminyl)]n glycanohydrolase" + - metabolites: !!omap + - s_0509: -1 + - s_0803: -1 + - s_4017: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR371W or YLR286C" + - eccodes: "3.2.1.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.14" - kegg.reaction: "R01206" - metanetx.reaction: "MNXR106866" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4332" - - name: "Protein PNS1 (pH nine-sensitive protein 1)" - - metabolites: !!omap - - s_0512: -1 - - s_0513: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR161C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4332" + - name: "Protein PNS1 (pH nine-sensitive protein 1)" + - metabolites: !!omap + - s_0512: -1 + - s_0513: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR161C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "CHOLtu" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4333" - - name: "Polyphosphate phosphohydrolase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_1322: 2 - - s_4018: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR201C or YDR452W" - - annotation: !!omap - - ec-code: - - "3.6.1.10" - - "3.6.1.-" - - "3.6.1.11" + - confidence_score: 2 + - !!omap + - id: "r_4333" + - name: "Polyphosphate phosphohydrolase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_1322: 2 + - s_4018: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR201C or YDR452W" + - eccodes: "3.6.1.10; 3.6.1.-; 3.6.1.11" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.6.1.10; 3.6.1.-; 3.6.1.11" - kegg.reaction: "R03042" - metanetx.reaction: "MNXR107906" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4334" - - name: "Copper-transporting ATPase (EC 3.6.3.54) (Cu(2+)-ATPase)" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - s_4019: -1 - - s_4020: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR270W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4334" + - name: "Copper-transporting ATPase (EC 3.6.3.54) (Cu(2+)-ATPase)" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - s_4019: -1 + - s_4020: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR270W" + - eccodes: "3.6.3.54" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.3.54" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4335" - - name: "Endopolyphosphatase (EC 3.6.1.10) (Deoxyadenosine triphosphate phosphohydrolase) (dATP phosphohydrolase) (EC 3.6.1.-) (Exopolyphosphatase) (EC 3.6.1.11) (Phosphate metabolism protein 5)" - - metabolites: !!omap - - s_0582: 1 - - s_0586: -1 - - s_0794: 1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YDR452W" - - annotation: !!omap - - ec-code: - - "3.6.1.10" - - "3.6.1.-" - - "3.6.1.11" + - confidence_score: 2 + - !!omap + - id: "r_4335" + - name: "Endopolyphosphatase (EC 3.6.1.10) (Deoxyadenosine triphosphate phosphohydrolase) (dATP phosphohydrolase) (EC 3.6.1.-) (Exopolyphosphatase) (EC 3.6.1.11) (Phosphate metabolism protein 5)" + - metabolites: !!omap + - s_0582: 1 + - s_0586: -1 + - s_0794: 1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YDR452W" + - eccodes: "3.6.1.10; 3.6.1.-; 3.6.1.11" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.6.1.10; 3.6.1.-; 3.6.1.11" - bigg.reaction: "NTP2" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4336" - - name: "Monoamide of a dicarboxylic acid amidohydrolase" - - metabolites: !!omap - - s_0180: 1 - - s_0419: 1 - - s_0803: -1 - - s_4021: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YLR351C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4336" + - name: "Monoamide of a dicarboxylic acid amidohydrolase" + - metabolites: !!omap + - s_0180: 1 + - s_0419: 1 + - s_0803: -1 + - s_4021: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YLR351C" + - eccodes: "3.5.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.3" - bigg.reaction: "r0085" - kegg.reaction: "R03804" - metanetx.reaction: "MNXR108439" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4337" - - name: "Iron-sulfur clusters transporter ATM1, mitochondrial" - - metabolites: !!omap - - s_0397: 1 - - s_0437: -1 - - s_0799: 1 - - s_0807: -1 - - s_1326: 1 - - s_4022: -1 - - s_4023: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR301C" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4338" - - name: "Oligo-1,6-glucosidase IMA2 (EC 3.2.1.10) (Alpha-glucosidase) (Isomaltase 2)" - - metabolites: !!omap - - s_0803: -1 - - s_3951: 2 - - s_4024: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOL157C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4337" + - name: "Iron-sulfur clusters transporter ATM1, mitochondrial" + - metabolites: !!omap + - s_0397: 1 + - s_0437: -1 + - s_0799: 1 + - s_0807: -1 + - s_1326: 1 + - s_4022: -1 + - s_4023: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR301C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4338" + - name: "Oligo-1,6-glucosidase IMA2 (EC 3.2.1.10) (Alpha-glucosidase) (Isomaltase 2)" + - metabolites: !!omap + - s_0803: -1 + - s_3951: 2 + - s_4024: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOL157C" + - eccodes: "3.2.1.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.10" - kegg.reaction: "R06199" - metanetx.reaction: "MNXR110064" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4339" - - name: "UDP-N-acetylglucosamine transporter YEA4" - - metabolites: !!omap - - s_3764: -1 - - s_4025: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YEL004W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4340" - - name: "D-amino-acid N-acetyltransferase HPA3 (DNT) (EC 2.3.1.36) (EC 2.3.1.48) (Histone and other protein acetyltransferase 3)" - - metabolites: !!omap - - s_0373: -1 - - s_0529: 1 - - s_0794: 1 - - s_4032: -1 - - s_4033: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YEL066W" - - annotation: !!omap - - ec-code: - - "2.3.1.36" - - "2.3.1.48" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4341" - - name: "glycerol 2-phosphate(2-) transport" - - metabolites: !!omap - - s_4062: 1 - - s_4063: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4339" + - name: "UDP-N-acetylglucosamine transporter YEA4" + - metabolites: !!omap + - s_3764: -1 + - s_4025: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YEL004W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4340" + - name: "D-amino-acid N-acetyltransferase HPA3 (DNT) (EC 2.3.1.36) (EC 2.3.1.48) (Histone and other protein acetyltransferase 3)" + - metabolites: !!omap + - s_0373: -1 + - s_0529: 1 + - s_0794: 1 + - s_4032: -1 + - s_4033: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YEL066W" + - eccodes: "2.3.1.36; 2.3.1.48" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.3.1.36; 2.3.1.48" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4341" + - name: "glycerol 2-phosphate(2-) transport" + - metabolites: !!omap + - s_4062: 1 + - s_4063: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100319" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4342" - - name: "Glycerol-2-phosphate phosphohydrolase" - - metabolites: !!omap - - s_0765: 1 - - s_0803: -1 - - s_1322: 1 - - s_4062: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4342" + - name: "Glycerol-2-phosphate phosphohydrolase" + - metabolites: !!omap + - s_0765: 1 + - s_0803: -1 + - s_1322: 1 + - s_4062: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.19" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.19" - bigg.reaction: "G2PP" - kegg.reaction: "R01043" - metanetx.reaction: "MNXR99852" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4343" - - name: "L-Threonine phosphate transport in via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4064: 1 - - s_4065: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4343" + - name: "L-Threonine phosphate transport in via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4064: 1 + - s_4065: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR136678" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4344" - - name: "acid phosphatase / phosphotransferase" - - metabolites: !!omap - - s_0803: -1 - - s_1045: 1 - - s_1322: 1 - - s_4064: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4344" + - name: "acid phosphatase / phosphotransferase" + - metabolites: !!omap + - s_0803: -1 + - s_1045: 1 + - s_1322: 1 + - s_4064: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - metanetx.reaction: "MNXR103332" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4345" - - name: "alkaline phosphatase" - - metabolites: !!omap - - s_0790: 1 - - s_0803: -1 - - s_1322: 1 - - s_4066: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4345" + - name: "alkaline phosphatase" + - metabolites: !!omap + - s_0790: 1 + - s_0803: -1 + - s_1322: 1 + - s_4066: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - metanetx.reaction: "MNXR118732" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4346" - - name: "Guanosine transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4066: 1 - - s_4067: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4347" - - name: "Guanosine 3'-phosphate phosphohydrolase" - - metabolites: !!omap - - s_0790: 1 - - s_0803: -1 - - s_1322: 1 - - s_4068: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4346" + - name: "Guanosine transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4066: 1 + - s_4067: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4347" + - name: "Guanosine 3'-phosphate phosphohydrolase" + - metabolites: !!omap + - s_0790: 1 + - s_0803: -1 + - s_1322: 1 + - s_4068: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.6" - bigg.reaction: "3NUCLE4" - kegg.reaction: "R02148" - metanetx.reaction: "MNXR94936" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4348" - - name: "Guanosine transport via proton symport(for 3'-GMP)" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4068: 1 - - s_4069: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4348" + - name: "Guanosine transport via proton symport(for 3'-GMP)" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4068: 1 + - s_4069: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "3GMPt6" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4349" - - name: "2-Phosphoglycolate transport in/out via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4070: -1 - - s_4071: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4349" + - name: "2-Phosphoglycolate transport in/out via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4070: -1 + - s_4071: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "2PGLYCt6" - metanetx.reaction: "MNXR94822" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4350" - - name: "2-phosphoglycolate phosphohydrolase" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_3997: 1 - - s_4071: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4350" + - name: "2-phosphoglycolate phosphohydrolase" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_3997: 1 + - s_4071: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.18" - bigg.reaction: "PGLYCP" - kegg.reaction: "R01334" - metanetx.reaction: "MNXR102543" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4351" - - name: "alkaline phosphatase" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_4072: -1 - - s_4073: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4351" + - name: "alkaline phosphatase" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_4072: -1 + - s_4073: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - metanetx.reaction: "MNXR118734" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4352" - - name: "cysteamine S-phosphate transport via proton symport" - - metabolites: !!omap - - s_4072: 1 - - s_4075: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4353" - - name: "Cysteamine:oxygen oxidoreductase" - - metabolites: !!omap - - s_0794: 1 - - s_1275: -1 - - s_4073: -1 - - s_4076: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4352" + - name: "cysteamine S-phosphate transport via proton symport" + - metabolites: !!omap + - s_4072: 1 + - s_4075: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4353" + - name: "Cysteamine:oxygen oxidoreductase" + - metabolites: !!omap + - s_0794: 1 + - s_1275: -1 + - s_4073: -1 + - s_4076: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.13.11.19" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.13.11.19" - kegg.reaction: "R02467" - metanetx.reaction: "MNXR107528" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4354" - - name: "hypotaurine:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_1471: 1 - - s_4076: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4354" + - name: "hypotaurine:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_1471: 1 + - s_4076: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.8.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.8.1.3" - kegg.reaction: "R01681" - metanetx.reaction: "MNXR107116" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4355" - - name: "2-aminobutanoate:2-oxoglutarate aminotransferase" - - metabolites: !!omap - - s_0178: -1 - - s_0180: 1 - - s_0991: -1 - - s_4079: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4355" + - name: "2-aminobutanoate:2-oxoglutarate aminotransferase" + - metabolites: !!omap + - s_0178: -1 + - s_0180: 1 + - s_0991: -1 + - s_4079: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "2.6.1.42" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.6.1.42" - bigg.reaction: "RE2034C" - kegg.reaction: "R10991" - metanetx.reaction: "MNXR103594" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4356" - - name: "2-aminobutyrate transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4079: 1 - - s_4080: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4357" - - name: "alkaline phosphatase" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_1556: 1 - - s_4081: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4356" + - name: "2-aminobutyrate transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4079: 1 + - s_4080: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4357" + - name: "alkaline phosphatase" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_1556: 1 + - s_4081: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - metanetx.reaction: "MNXR118730" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4358" - - name: "Uridine 2'-phosphate transport in via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4081: 1 - - s_4082: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4358" + - name: "Uridine 2'-phosphate transport in via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4081: 1 + - s_4082: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR136675" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4359" - - name: "Uridine 3'-monophosphate phosphohydrolase" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_1556: 1 - - s_4083: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4359" + - name: "Uridine 3'-monophosphate phosphohydrolase" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_1556: 1 + - s_4083: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.6" - bigg.reaction: "3NUCLE2" - kegg.reaction: "R01877" - metanetx.reaction: "MNXR94932" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4360" - - name: "3'-UMP transport in via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4083: 1 - - s_4084: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4360" + - name: "3'-UMP transport in via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4083: 1 + - s_4084: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "3UMPt6" - metanetx.reaction: "MNXR94982" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4361" - - name: "Gly-Met transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4085: -1 - - s_4086: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W or YKR093W" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4361" + - name: "Gly-Met transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4085: -1 + - s_4086: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W or YKR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137072" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4362" - - name: "dipeptidase" - - metabolites: !!omap - - s_0810: -1 - - s_3758: 1 - - s_3839: 1 - - s_4087: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4362" + - name: "dipeptidase" + - metabolites: !!omap + - s_0810: -1 + - s_3758: 1 + - s_3839: 1 + - s_4087: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.4.13.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123343" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4363" - - name: "R07420" - - metabolites: !!omap - - s_1322: 1 - - s_4088: -1 - - s_4089: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4363" + - name: "R07420" + - metabolites: !!omap + - s_1322: 1 + - s_4088: -1 + - s_4089: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - kegg.reaction: "R07420" - metanetx.reaction: "MNXR111061" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4364" - - name: "N-phosphocreatine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4088: 1 - - s_4090: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4365" - - name: "creatinine transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4089: 1 - - s_4091: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4366" - - name: "ATP:L-arginine Nomega-phosphotransferase" - - metabolites: !!omap - - s_0394: -1 - - s_0434: 1 - - s_0794: -1 - - s_0965: 1 - - s_4092: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4364" + - name: "N-phosphocreatine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4088: 1 + - s_4090: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4365" + - name: "creatinine transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4089: 1 + - s_4091: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4366" + - name: "ATP:L-arginine Nomega-phosphotransferase" + - metabolites: !!omap + - s_0394: -1 + - s_0434: 1 + - s_0794: -1 + - s_0965: 1 + - s_4092: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "2.7.3.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.3.3" - bigg.reaction: "ARGKr" - kegg.reaction: "R00554" - metanetx.reaction: "MNXR95943" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4367" - - name: "L-arginine phosphate transport in/out via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4092: 1 - - s_4093: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4367" + - name: "L-arginine phosphate transport in/out via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4092: 1 + - s_4093: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "ARGPt6" - metanetx.reaction: "MNXR95947" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4368" - - name: "acid phosphatase / phosphotransferase" - - metabolites: !!omap - - s_0803: -1 - - s_1051: 1 - - s_1322: 1 - - s_4096: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4368" + - name: "acid phosphatase / phosphotransferase" + - metabolites: !!omap + - s_0803: -1 + - s_1051: 1 + - s_1322: 1 + - s_4096: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR104998" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4369" - - name: "Tripolyphosphate transport in via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4098: 1 - - s_4099: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4369" + - name: "Tripolyphosphate transport in via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4098: 1 + - s_4099: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR135003" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4370" - - name: "alkaline phosphatase" - - metabolites: !!omap - - s_0543: 1 - - s_0803: -1 - - s_1322: 1 - - s_4100: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4370" + - name: "alkaline phosphatase" + - metabolites: !!omap + - s_0543: 1 + - s_0803: -1 + - s_1322: 1 + - s_4100: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - metanetx.reaction: "MNXR118731" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4371" - - name: "Cytidine- 2'- Monophosphate transport in via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4100: 1 - - s_4101: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4371" + - name: "Cytidine- 2'- Monophosphate transport in via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4100: 1 + - s_4101: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR135010" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4372" - - name: "cyclic phosphodiesterase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_4081: 1 - - s_4102: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4372" + - name: "cyclic phosphodiesterase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_4081: 1 + - s_4102: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.4.37" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.37" - metanetx.reaction: "MNXR117327" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4373" - - name: "2',3'-Cyclic UMP transport in via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4102: 1 - - s_4103: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4373" + - name: "2',3'-Cyclic UMP transport in via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4102: 1 + - s_4103: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR136674" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4374" - - name: "3-Sulfino-L-alanine 4-carboxy-lyase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_0955: 1 - - s_1469: 1 - - s_4104: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4374" + - name: "3-Sulfino-L-alanine 4-carboxy-lyase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_0955: 1 + - s_1469: 1 + - s_4104: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.13.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.13.1.-" - kegg.reaction: "R00863" - metanetx.reaction: "MNXR123155" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4375" - - name: "3-Sulfino-L-alanine transport via proton antiport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4104: 1 - - s_4105: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4375" + - name: "3-Sulfino-L-alanine transport via proton antiport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4104: 1 + - s_4105: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137086" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4376" - - name: "adenosine 3'-phosphate phosphohydrolase" - - metabolites: !!omap - - s_0386: 1 - - s_0803: -1 - - s_1322: 1 - - s_4106: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4376" + - name: "adenosine 3'-phosphate phosphohydrolase" + - metabolites: !!omap + - s_0386: 1 + - s_0803: -1 + - s_1322: 1 + - s_4106: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.6" - bigg.reaction: "3NUCLE1" - kegg.reaction: "R01562" - metanetx.reaction: "MNXR94935" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4377" - - name: "3AMP transport via diffusion (extracellular to periplasm)" - - metabolites: !!omap - - s_4106: 1 - - s_4107: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4377" + - name: "3AMP transport via diffusion (extracellular to periplasm)" + - metabolites: !!omap + - s_4106: 1 + - s_4107: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR94857" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4378" - - name: "alpha-glucosidase" - - metabolites: !!omap - - s_0553: 1 - - s_0563: 1 - - s_0803: -1 - - s_4108: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4378" + - name: "alpha-glucosidase" + - metabolites: !!omap + - s_0553: 1 + - s_0563: 1 + - s_0803: -1 + - s_4108: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.2.1.20" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.20" - metanetx.reaction: "MNXR130717" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4379" - - name: "Palatinose transport in via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4108: 1 - - s_4109: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4379" + - name: "Palatinose transport in via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4108: 1 + - s_4109: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "PALAt2" - metanetx.reaction: "MNXR102339" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4380" - - name: "Amino-Acid N-Acetyltransferase" - - metabolites: !!omap - - s_0373: 1 - - s_0529: -1 - - s_0794: -1 - - s_0981: 1 - - s_4110: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4380" + - name: "Amino-Acid N-Acetyltransferase" + - metabolites: !!omap + - s_0373: 1 + - s_0529: -1 + - s_0794: -1 + - s_0981: 1 + - s_4110: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR103637" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4381" - - name: "Acetylcysteine transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4110: 1 - - s_4111: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4381" + - name: "Acetylcysteine transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4110: 1 + - s_4111: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137052" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4382" - - name: "thiosulfate:ferricytochrome-c oxidoreductase" - - metabolites: !!omap - - s_0709: -2 - - s_0710: 2 - - s_4112: 1 - - s_4113: -2 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4382" + - name: "thiosulfate:ferricytochrome-c oxidoreductase" + - metabolites: !!omap + - s_0709: -2 + - s_0710: 2 + - s_4112: 1 + - s_4113: -2 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.8.2.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.8.2.2" - kegg.reaction: "R00029" - metanetx.reaction: "MNXR138952" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4383" - - name: "etrathionate transport via diffusion" - - metabolites: !!omap - - s_4112: 1 - - s_4114: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4383" + - name: "etrathionate transport via diffusion" + - metabolites: !!omap + - s_4112: 1 + - s_4114: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR104796" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4384" - - name: "D-Gluconate:NADP+ 5-oxidoreductase" - - metabolites: !!omap - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_3875: 1 - - s_4117: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.69" + - confidence_score: 1 + - !!omap + - id: "r_4384" + - name: "D-Gluconate:NADP+ 5-oxidoreductase" + - metabolites: !!omap + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_3875: 1 + - s_4117: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.1.1.-; 1.1.1.69" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.69" - bigg.reaction: "5DGLCNR" - kegg.reaction: "R01740" - metanetx.reaction: "MNXR95065" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4385" - - name: "5-Dehydro-D-gluconate transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4117: 1 - - s_4118: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4385" + - name: "5-Dehydro-D-gluconate transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4117: 1 + - s_4118: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR95066" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4386" - - name: "dipeptidase" - - metabolites: !!omap - - s_0810: -1 - - s_0977: 1 - - s_3759: 1 - - s_4121: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4386" + - name: "dipeptidase" + - metabolites: !!omap + - s_0810: -1 + - s_0977: 1 + - s_3759: 1 + - s_4121: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.4.13.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123344" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4387" - - name: "ala-L-asp-L transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4119: -1 - - s_4120: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W or YKR093W" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4387" + - name: "ala-L-asp-L transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4119: -1 + - s_4120: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W or YKR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137135" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4388" - - name: "cyclic phosphodiesterase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_4100: 1 - - s_4126: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4388" + - name: "cyclic phosphodiesterase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_4100: 1 + - s_4126: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.4.37" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.37" - metanetx.reaction: "MNXR117326" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4389" - - name: "2',3'-Cyclic CMP transport in via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4126: 1 - - s_4127: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4389" + - name: "2',3'-Cyclic CMP transport in via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4126: 1 + - s_4127: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR136673" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4390" - - name: "beta-glucosidase (methyl-alpha-D-glucoside)" - - metabolites: !!omap - - s_0563: 1 - - s_0803: -1 - - s_4122: -1 - - s_4123: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4390" + - name: "beta-glucosidase (methyl-alpha-D-glucoside)" + - metabolites: !!omap + - s_0563: 1 + - s_0803: -1 + - s_4122: -1 + - s_4123: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.2.1.21" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.21" - metanetx.reaction: "MNXR142673" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4391" - - name: "Methanol diffusion" - - metabolites: !!omap - - s_4123: -1 - - s_4124: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4391" + - name: "Methanol diffusion" + - metabolites: !!omap + - s_4123: -1 + - s_4124: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "MEOHt2" - metanetx.reaction: "MNXR101464" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4392" - - name: "alpha-Methyl-D-glucoside transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4122: 1 - - s_4125: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4392" + - name: "alpha-Methyl-D-glucoside transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4122: 1 + - s_4125: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR144815" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4393" - - name: "ATP:D-tagatose 6-phosphotransferase" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_0794: 1 - - s_4128: -1 - - s_4129: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4393" + - name: "ATP:D-tagatose 6-phosphotransferase" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_0794: 1 + - s_4128: -1 + - s_4129: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "2.7.1.101" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.101" - kegg.reaction: "R02927" - metanetx.reaction: "MNXR107830" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4394" - - name: "D-tagatose 6-phosphate 4-epimerase" - - metabolites: !!omap - - s_0557: 1 - - s_4129: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4395" - - name: "D-tagatose uptake via diffusion" - - metabolites: !!omap - - s_4128: 1 - - s_4130: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4394" + - name: "D-tagatose 6-phosphate 4-epimerase" + - metabolites: !!omap + - s_0557: 1 + - s_4129: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 1 + - !!omap + - id: "r_4395" + - name: "D-tagatose uptake via diffusion" + - metabolites: !!omap + - s_4128: 1 + - s_4130: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "TAGAT_Dt" - metanetx.reaction: "MNXR104707" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4396" - - name: "Acetoacetate:CoA ligase (AMP-forming)" - - metabolites: !!omap - - s_0367: 1 - - s_0423: 1 - - s_0434: -1 - - s_0529: -1 - - s_0633: 1 - - s_4132: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4396" + - name: "Acetoacetate:CoA ligase (AMP-forming)" + - metabolites: !!omap + - s_0367: 1 + - s_0423: 1 + - s_0434: -1 + - s_0529: -1 + - s_0633: 1 + - s_4132: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "6.2.1.16" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.16" - bigg.reaction: "AACOAT" - kegg.reaction: "R01357" - metanetx.reaction: "MNXR95136" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4397" - - name: "N-Acyl-Aliphatic-L-Amino Acid Amidohydrolase" - - metabolites: !!omap - - s_0362: 1 - - s_0803: -1 - - s_1029: 1 - - s_4134: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4397" + - name: "N-Acyl-Aliphatic-L-Amino Acid Amidohydrolase" + - metabolites: !!omap + - s_0362: 1 + - s_0803: -1 + - s_1029: 1 + - s_4134: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.5.1.14" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.5.1.14" - bigg.reaction: "RE2640C" - metanetx.reaction: "MNXR103709" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4398" - - name: "Ala-Gln transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4034: -1 - - s_4035: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W or YKR093W" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4398" + - name: "Ala-Gln transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4034: -1 + - s_4035: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W or YKR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137087" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4399" - - name: "L-alanyl-L-glutamate transport in via proton symport" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_4038: -1 - - s_4039: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4399" + - name: "L-alanyl-L-glutamate transport in via proton symport" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_4038: -1 + - s_4039: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101006" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4400" - - name: "Maltodextrin glucosidase (maltotriose)" - - metabolites: !!omap - - s_0565: 1 - - s_0805: -1 - - s_1106: 1 - - s_4140: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4400" + - name: "Maltodextrin glucosidase (maltotriose)" + - metabolites: !!omap + - s_0565: 1 + - s_0805: -1 + - s_1106: 1 + - s_4140: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.2.1.20" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.20" - bigg.reaction: "MLTG1e" - kegg.reaction: "R05196" - metanetx.reaction: "MNXR101619" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4401" - - name: "Ala-Thr transport via proton symport" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_4041: -1 - - s_4042: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4402" - - name: "Ala-Thr transport via proton symport (extracellular to cytosol)" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4040: -1 - - s_4041: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W or YKR093W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4403" - - name: "Triphosphate phosphohydrolase" - - metabolites: !!omap - - s_0633: 1 - - s_0803: -1 - - s_1322: 1 - - s_4098: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YHR201C or YDR452W" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4401" + - name: "Ala-Thr transport via proton symport" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_4041: -1 + - s_4042: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4402" + - name: "Ala-Thr transport via proton symport (extracellular to cytosol)" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4040: -1 + - s_4041: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W or YKR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4403" + - name: "Triphosphate phosphohydrolase" + - metabolites: !!omap + - s_0633: 1 + - s_0803: -1 + - s_1322: 1 + - s_4098: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YHR201C or YDR452W" + - eccodes: "3.6.1.25" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.6.1.25" - kegg.reaction: "R00138" - metanetx.reaction: "MNXR103069" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4404" - - name: "Gly-Asn transport via proton symport (extracellular to cytosol)" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4053: -1 - - s_4054: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W or YKR093W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4405" - - name: "glycerol 1-phosphate transport" - - metabolites: !!omap - - s_4048: 1 - - s_4049: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4406" - - name: "D-O-Phosphoserine transport in/out via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4077: 1 - - s_4078: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4404" + - name: "Gly-Asn transport via proton symport (extracellular to cytosol)" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4053: -1 + - s_4054: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W or YKR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4405" + - name: "glycerol 1-phosphate transport" + - metabolites: !!omap + - s_4048: 1 + - s_4049: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4406" + - name: "D-O-Phosphoserine transport in/out via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4077: 1 + - s_4078: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "PSER_Dt6" - metanetx.reaction: "MNXR103244" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4407" - - name: "D-O-Phosphoserine phosphohydrolase" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_3904: 1 - - s_4077: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4407" + - name: "D-O-Phosphoserine phosphohydrolase" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_3904: 1 + - s_4077: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.3" - bigg.reaction: "PSP_D" - kegg.reaction: "R02853" - metanetx.reaction: "MNXR103265" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4408" - - name: "L-alanyl-L-glutamate transport in via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4037: -1 - - s_4038: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W or YKR093W" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4408" + - name: "L-alanyl-L-glutamate transport in via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4037: -1 + - s_4038: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W or YKR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101006" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4409" - - name: "L-alanyl-gamma-L-glutamate peptidase" - - metabolites: !!omap - - s_0810: -1 - - s_0996: 1 - - s_3759: 1 - - s_4039: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4409" + - name: "L-alanyl-gamma-L-glutamate peptidase" + - metabolites: !!omap + - s_0810: -1 + - s_0996: 1 + - s_3759: 1 + - s_4039: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.4.13.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR101011" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4410" - - name: "3-oxalomalate glyoxylate-lyase (oxaloacetate-forming)" - - metabolites: !!omap - - s_0779: 1 - - s_1271: 1 - - s_4136: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4410" + - name: "3-oxalomalate glyoxylate-lyase (oxaloacetate-forming)" + - metabolites: !!omap + - s_0779: 1 + - s_1271: 1 + - s_4136: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "4.1.3.13" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.3.13" - kegg.reaction: "R00477" - metanetx.reaction: "MNXR106549" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4411" - - name: "L-cysteate bisulfite-lyase (deaminating)" - - metabolites: !!omap - - s_0419: 1 - - s_0794: 1 - - s_0803: -1 - - s_1399: 1 - - s_1469: 1 - - s_4138: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4411" + - name: "L-cysteate bisulfite-lyase (deaminating)" + - metabolites: !!omap + - s_0419: 1 + - s_0794: 1 + - s_0803: -1 + - s_1399: 1 + - s_1469: 1 + - s_4138: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "4.4.1.25" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.4.1.25" - kegg.reaction: "R07634" - metanetx.reaction: "MNXR111236" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4412" - - name: "cyclic phosphodiesterase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_4066: 1 - - s_4094: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4412" + - name: "cyclic phosphodiesterase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_4066: 1 + - s_4094: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.4.37" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.4.37" - metanetx.reaction: "MNXR117325" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4413" - - name: "deoxynucleotide 3'-phosphatase" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_1493: 1 - - s_4044: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4413" + - name: "deoxynucleotide 3'-phosphatase" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_1493: 1 + - s_4044: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.34" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.34" - metanetx.reaction: "MNXR118741" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4414" - - name: "cytosol nonspecific dipeptidase" - - metabolites: !!omap - - s_0810: -1 - - s_1002: 1 - - s_3759: 1 - - s_4036: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4414" + - name: "cytosol nonspecific dipeptidase" + - metabolites: !!omap + - s_0810: -1 + - s_1002: 1 + - s_3759: 1 + - s_4036: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.4.13.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123345" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4415" - - name: "Cytosol non-specific dipeptidase" - - metabolites: !!omap - - s_0810: -1 - - s_1009: 1 - - s_3759: 1 - - s_4052: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4415" + - name: "Cytosol non-specific dipeptidase" + - metabolites: !!omap + - s_0810: -1 + - s_1009: 1 + - s_3759: 1 + - s_4052: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.4.13.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123347" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4416" - - name: "Cytosol non-specific dipeptidase" - - metabolites: !!omap - - s_0810: -1 - - s_3759: 1 - - s_4042: -1 - - s_4043: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4416" + - name: "Cytosol non-specific dipeptidase" + - metabolites: !!omap + - s_0810: -1 + - s_3759: 1 + - s_4042: -1 + - s_4043: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.4.13.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123349" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4417" - - name: "Cytosol non-specific dipeptidase" - - metabolites: !!omap - - s_0810: -1 - - s_0972: 1 - - s_3839: 1 - - s_4055: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4417" + - name: "Cytosol non-specific dipeptidase" + - metabolites: !!omap + - s_0810: -1 + - s_0972: 1 + - s_3839: 1 + - s_4055: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.4.13.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123350" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4418" - - name: "Cytosol non-specific dipeptidase" - - metabolites: !!omap - - s_0810: -1 - - s_1002: 1 - - s_3839: 1 - - s_4058: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4418" + - name: "Cytosol non-specific dipeptidase" + - metabolites: !!omap + - s_0810: -1 + - s_1002: 1 + - s_3839: 1 + - s_4058: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.4.13.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123351" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4419" - - name: "L-Cysteate transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4138: 1 - - s_4139: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4419" + - name: "L-Cysteate transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4138: 1 + - s_4139: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR124424" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4420" - - name: "alpha-glucosidase" - - metabolites: !!omap - - s_0554: 1 - - s_0565: 1 - - s_0805: -1 - - s_4131: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4420" + - name: "alpha-glucosidase" + - metabolites: !!omap + - s_0554: 1 + - s_0565: 1 + - s_0805: -1 + - s_4131: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.2.1.20" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.20" - metanetx.reaction: "MNXR130716" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4421" - - name: "2-Hydroxyethanesulfonate transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4115: 1 - - s_4116: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4421" + - name: "2-Hydroxyethanesulfonate transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4115: 1 + - s_4116: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137058" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4422" - - name: "3-Oxalomalate transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4136: 1 - - s_4137: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4422" + - name: "3-Oxalomalate transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4136: 1 + - s_4137: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137067" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4423" - - name: "Gly-Met transport via proton symport" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_4086: -1 - - s_4087: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4423" + - name: "Gly-Met transport via proton symport" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_4086: -1 + - s_4087: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137072" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4424" - - name: "Gly-Gln transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4056: -1 - - s_4057: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W or YKR093W" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4424" + - name: "Gly-Gln transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4056: -1 + - s_4057: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W or YKR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137074" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4425" - - name: "Gly-Gln transport via proton symport" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_4057: -1 - - s_4058: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4425" + - name: "Gly-Gln transport via proton symport" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_4057: -1 + - s_4058: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137074" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4426" - - name: "Ala-Gln transport via proton symport" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_4035: -1 - - s_4036: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4426" + - name: "Ala-Gln transport via proton symport" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_4035: -1 + - s_4036: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137087" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4427" - - name: "N-Acetylmethionine transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4134: 1 - - s_4135: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4427" + - name: "N-Acetylmethionine transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4134: 1 + - s_4135: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137089" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4428" - - name: "Phosphotyrosine transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4096: 1 - - s_4097: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4428" + - name: "Phosphotyrosine transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4096: 1 + - s_4097: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137095" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4429" - - name: "Ala-His transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4050: -1 - - s_4051: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W or YKR093W" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4429" + - name: "Ala-His transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4050: -1 + - s_4051: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W or YKR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137107" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4430" - - name: "Ala-His transport via proton symport" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_4051: -1 - - s_4052: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4430" + - name: "Ala-His transport via proton symport" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_4051: -1 + - s_4052: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137107" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4431" - - name: "ala-L-asp-L transport via proton symport" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_4120: -1 - - s_4121: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4431" + - name: "ala-L-asp-L transport via proton symport" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_4120: -1 + - s_4121: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137135" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4432" - - name: "FMNH2-dependent alkanesulfonate monooxygenase" - - metabolites: !!omap - - s_0714: 1 - - s_0717: -1 - - s_0775: 1 - - s_0794: 2 - - s_0803: 1 - - s_1275: -1 - - s_1469: 1 - - s_4115: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4432" + - name: "FMNH2-dependent alkanesulfonate monooxygenase" + - metabolites: !!omap + - s_0714: 1 + - s_0717: -1 + - s_0775: 1 + - s_0794: 2 + - s_0803: 1 + - s_1275: -1 + - s_1469: 1 + - s_4115: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.14.14.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.14.14.5" - bigg.reaction: "FDMO" - metanetx.reaction: "MNXR99485" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4433" - - name: "thymidine 3-monophosphate transport" - - metabolites: !!omap - - s_4044: 1 - - s_4045: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4434" - - name: "thymidine 5-monophosphate transport" - - metabolites: !!omap - - s_4046: 1 - - s_4047: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4435" - - name: "glycerol-1-phosphate phosphohydrolase" - - metabolites: !!omap - - s_0765: 1 - - s_0803: -1 - - s_1322: 1 - - s_4048: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YIL053W or YER062C" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4433" + - name: "thymidine 3-monophosphate transport" + - metabolites: !!omap + - s_4044: 1 + - s_4045: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4434" + - name: "thymidine 5-monophosphate transport" + - metabolites: !!omap + - s_4046: 1 + - s_4047: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4435" + - name: "glycerol-1-phosphate phosphohydrolase" + - metabolites: !!omap + - s_0765: 1 + - s_0803: -1 + - s_1322: 1 + - s_4048: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YIL053W or YER062C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - kegg.reaction: "R08658" - metanetx.reaction: "MNXR112173" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4436" - - name: "nucleotide-specific phosphatase (thymidine 5'-monophosphate)" - - metabolites: !!omap - - s_0803: -1 - - s_1322: 1 - - s_1493: 1 - - s_4046: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4437" - - name: "Gly-Glu transport via proton symport (extracellular to cytosol)" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4059: -1 - - s_4060: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W or YKR093W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4438" - - name: "Gly-Glu transport via proton symport (cytosol to vacuole)" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_4060: -1 - - s_4061: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4439" - - name: "cytosol nonspecific dipeptidase" - - metabolites: !!omap - - s_0810: -1 - - s_0996: 1 - - s_3839: 1 - - s_4061: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4436" + - name: "nucleotide-specific phosphatase (thymidine 5'-monophosphate)" + - metabolites: !!omap + - s_0803: -1 + - s_1322: 1 + - s_1493: 1 + - s_4046: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 1 + - !!omap + - id: "r_4437" + - name: "Gly-Glu transport via proton symport (extracellular to cytosol)" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4059: -1 + - s_4060: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W or YKR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4438" + - name: "Gly-Glu transport via proton symport (cytosol to vacuole)" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_4060: -1 + - s_4061: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4439" + - name: "cytosol nonspecific dipeptidase" + - metabolites: !!omap + - s_0810: -1 + - s_0996: 1 + - s_3839: 1 + - s_4061: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.4.13.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123352" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4440" - - name: "L-methionine transport, vacuoluar" - - metabolites: !!omap - - s_1029: -1 - - s_3758: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4441" - - name: "L-threonine transport, vacuoluar" - - metabolites: !!omap - - s_1045: -1 - - s_4043: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4442" - - name: "cysteamine exchange" - - metabolites: !!omap - - s_4074: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4440" + - name: "L-methionine transport, vacuoluar" + - metabolites: !!omap + - s_1029: -1 + - s_3758: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4441" + - name: "L-threonine transport, vacuoluar" + - metabolites: !!omap + - s_1045: -1 + - s_4043: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4442" + - name: "cysteamine exchange" + - metabolites: !!omap + - s_4074: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_cysam_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4443" - - name: "23cGMP transport via diffusion (extracellular to periplasm)" - - metabolites: !!omap - - s_4094: 1 - - s_4095: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4443" + - name: "23cGMP transport via diffusion (extracellular to periplasm)" + - metabolites: !!omap + - s_4094: 1 + - s_4095: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR94721" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4444" - - name: "D-Glycerate 2-phosphate transport in/out via proton symport" - - metabolites: !!omap - - s_0188: 1 - - s_0794: 1 - - s_0796: -1 - - s_4141: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4444" + - name: "D-Glycerate 2-phosphate transport in/out via proton symport" + - metabolites: !!omap + - s_0188: 1 + - s_0794: 1 + - s_0796: -1 + - s_4141: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "2PGt6" - metanetx.reaction: "MNXR94824" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4445" - - name: "3-Phospho-D-glycerate transport in/out via proton symport" - - metabolites: !!omap - - s_0260: 1 - - s_0794: 1 - - s_0796: -1 - - s_4142: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4445" + - name: "3-Phospho-D-glycerate transport in/out via proton symport" + - metabolites: !!omap + - s_0260: 1 + - s_0794: 1 + - s_0796: -1 + - s_4142: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "3PGt6" - metanetx.reaction: "MNXR94973" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4446" - - name: "D-glucose 1-phosphate transport via diffusion" - - metabolites: !!omap - - s_0567: 1 - - s_4145: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4446" + - name: "D-glucose 1-phosphate transport via diffusion" + - metabolites: !!omap + - s_0567: 1 + - s_4145: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99849" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4447" - - name: "carbamoyl phosphate nuclear transport via diffusion" - - metabolites: !!omap - - s_0455: 1 - - s_4146: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4447" + - name: "carbamoyl phosphate nuclear transport via diffusion" + - metabolites: !!omap + - s_0455: 1 + - s_4146: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96488" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4448" - - name: "Met-Ala transport via proton symport (extracellular to cytosol)" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4143: -1 - - s_4144: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W or YKR093W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4449" - - name: "Met-Ala transport via proton symport (cytosol to vacuole)" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_3757: 1 - - s_4144: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4450" - - name: "O-Phospho-L-serine transport in via proton symport" - - metabolites: !!omap - - s_0259: 1 - - s_0794: 1 - - s_0796: -1 - - s_4147: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4448" + - name: "Met-Ala transport via proton symport (extracellular to cytosol)" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4143: -1 + - s_4144: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W or YKR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4449" + - name: "Met-Ala transport via proton symport (cytosol to vacuole)" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_3757: 1 + - s_4144: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4450" + - name: "O-Phospho-L-serine transport in via proton symport" + - metabolites: !!omap + - s_0259: 1 + - s_0794: 1 + - s_0796: -1 + - s_4147: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "PSER_Lt6" - metanetx.reaction: "MNXR103245" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4451" - - name: "GMP transport via proton symport" - - metabolites: !!omap - - s_0782: 1 - - s_0794: 1 - - s_0796: -1 - - s_4148: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4451" + - name: "GMP transport via proton symport" + - metabolites: !!omap + - s_0782: 1 + - s_0794: 1 + - s_0796: -1 + - s_4148: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "GMPt6" - metanetx.reaction: "MNXR100385" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4452" - - name: "myo-inositol phosphate transport via diffusion (extracellular to periplasm)" - - metabolites: !!omap - - s_1158: 1 - - s_4149: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4452" + - name: "myo-inositol phosphate transport via diffusion (extracellular to periplasm)" + - metabolites: !!omap + - s_1158: 1 + - s_4149: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101585" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4453" - - name: "D-glucose 6-phosphate transport" - - metabolites: !!omap - - s_0568: 1 - - s_4150: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4453" + - name: "D-glucose 6-phosphate transport" + - metabolites: !!omap + - s_0568: 1 + - s_4150: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99915" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4454" - - name: "UMP transport" - - metabolites: !!omap - - s_1545: 1 - - s_4151: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4454" + - name: "UMP transport" + - metabolites: !!omap + - s_1545: 1 + - s_4151: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR105127" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4455" - - name: "Phosphoenolpyruvate transport in via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1360: 1 - - s_4152: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4455" + - name: "Phosphoenolpyruvate transport in via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1360: 1 + - s_4152: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "PEPt6" - metanetx.reaction: "MNXR102493" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4456" - - name: "Mannose 6-phosphate transport via diffusion (extracellular to periplasm)" - - metabolites: !!omap - - s_0574: 1 - - s_4153: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4456" + - name: "Mannose 6-phosphate transport via diffusion (extracellular to periplasm)" + - metabolites: !!omap + - s_0574: 1 + - s_4153: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101385" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4457" - - name: "O-Phosphoryl-Ethanolamine transport in via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_1239: 1 - - s_4154: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR093W" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4457" + - name: "O-Phosphoryl-Ethanolamine transport in via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_1239: 1 + - s_4154: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR135002" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4458" - - name: "6-Phospho-D-gluconate transport in/out via proton symport" - - metabolites: !!omap - - s_0340: 1 - - s_0794: 1 - - s_0796: -1 - - s_4155: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4458" + - name: "6-Phospho-D-gluconate transport in/out via proton symport" + - metabolites: !!omap + - s_0340: 1 + - s_0794: 1 + - s_0796: -1 + - s_4155: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "6PGCt6" - metanetx.reaction: "MNXR95102" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4459" - - name: "MAN1P transport in/out via proton symport" - - metabolites: !!omap - - s_0573: 1 - - s_0794: 1 - - s_0796: -1 - - s_4156: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4459" + - name: "MAN1P transport in/out via proton symport" + - metabolites: !!omap + - s_0573: 1 + - s_0794: 1 + - s_0796: -1 + - s_4156: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "MAN1Pt6" - metanetx.reaction: "MNXR101377" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4460" - - name: "Pyrophosphate transport in via proton symport" - - metabolites: !!omap - - s_0633: 1 - - s_0794: 2 - - s_0796: -2 - - s_4157: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4460" + - name: "Pyrophosphate transport in via proton symport" + - metabolites: !!omap + - s_0633: 1 + - s_0794: 2 + - s_0796: -2 + - s_4157: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR136667" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4461" - - name: "Choline phosphate intracellular transport" - - metabolites: !!omap - - s_0514: 1 - - s_4158: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4461" + - name: "Choline phosphate intracellular transport" + - metabolites: !!omap + - s_0514: 1 + - s_4158: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "CHOLPtr" - metanetx.reaction: "MNXR96703" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4462" - - name: "thiosulfate transport" - - metabolites: !!omap - - s_4113: 1 - - s_4159: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4462" + - name: "thiosulfate transport" + - metabolites: !!omap + - s_4113: 1 + - s_4159: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "TSULt" - metanetx.reaction: "MNXR104966" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4463" - - name: "AMP transport in/out via proton symport" - - metabolites: !!omap - - s_0423: 1 - - s_0794: 1 - - s_0796: -1 - - s_4160: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4463" + - name: "AMP transport in/out via proton symport" + - metabolites: !!omap + - s_0423: 1 + - s_0794: 1 + - s_0796: -1 + - s_4160: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "AMPt6" - metanetx.reaction: "MNXR95831" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4464" - - name: "23cAMP transport via diffusion (extracellular to periplasm)" - - metabolites: !!omap - - s_0131: 1 - - s_4161: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4464" + - name: "23cAMP transport via diffusion (extracellular to periplasm)" + - metabolites: !!omap + - s_0131: 1 + - s_4161: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR94718" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4465" - - name: "Adenosine- 2'-Monophosphate transport in via proton symport" - - metabolites: !!omap - - s_0389: 1 - - s_0794: 1 - - s_0796: -1 - - s_4162: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4465" + - name: "Adenosine- 2'-Monophosphate transport in via proton symport" + - metabolites: !!omap + - s_0389: 1 + - s_0794: 1 + - s_0796: -1 + - s_4162: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR135007" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4466" - - name: "CMP transport in/out via proton symport" - - metabolites: !!omap - - s_0526: 1 - - s_0794: 1 - - s_0796: -1 - - s_4163: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4466" + - name: "CMP transport in/out via proton symport" + - metabolites: !!omap + - s_0526: 1 + - s_0794: 1 + - s_0796: -1 + - s_4163: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "CMPt6" - metanetx.reaction: "MNXR96805" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4467" - - name: "D-glucosamine transport via diffusion (extracellular to periplasm)" - - metabolites: !!omap - - s_3953: 1 - - s_4164: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4467" + - name: "D-glucosamine transport via diffusion (extracellular to periplasm)" + - metabolites: !!omap + - s_3953: 1 + - s_4164: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "GAMt1r" - metanetx.reaction: "MNXR100035" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4468" - - name: "2-deoxy-D-ribose transport" - - metabolites: !!omap - - s_0152: 1 - - s_4165: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YDR342C or YHR092C" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4468" + - name: "2-deoxy-D-ribose transport" + - metabolites: !!omap + - s_0152: 1 + - s_4165: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YDR342C or YHR092C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "DRIBt" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4469" - - name: "L-Citrulline transport in via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_0979: 1 - - s_4166: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YKR039W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4469" + - name: "L-Citrulline transport in via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_0979: 1 + - s_4166: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YKR039W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "CITRt2r" - metanetx.reaction: "MNXR96737" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4470" - - name: "Dihydroxyacetone transport via facilitated diffusion" - - metabolites: !!omap - - s_0771: 1 - - s_4167: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4470" + - name: "Dihydroxyacetone transport via facilitated diffusion" + - metabolites: !!omap + - s_0771: 1 + - s_4167: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "DHAt" - metanetx.reaction: "MNXR97367" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4471" - - name: "Ala-Leu transport via proton symport (extracellular to cytosol)" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4168: -1 - - s_4169: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W or YKR093W" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4472" - - name: "Ala-Leu transport via proton symport (cytosol to vacuole)" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_3840: 1 - - s_4169: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4473" - - name: "L-alanylglycine transport via proton antiport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4170: -1 - - s_4171: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR152W or YKR093W" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4471" + - name: "Ala-Leu transport via proton symport (extracellular to cytosol)" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4168: -1 + - s_4169: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W or YKR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4472" + - name: "Ala-Leu transport via proton symport (cytosol to vacuole)" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_3840: 1 + - s_4169: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4473" + - name: "L-alanylglycine transport via proton antiport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4170: -1 + - s_4171: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR152W or YKR093W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137133" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4474" - - name: "L-alanylglycine transport via proton antiport" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_3838: 1 - - s_4171: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4474" + - name: "L-alanylglycine transport via proton antiport" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_3838: 1 + - s_4171: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137133" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4475" - - name: "N-acetyl-L-glutamate transport" - - metabolites: !!omap - - s_4172: -1 - - s_4173: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4475" + - name: "N-acetyl-L-glutamate transport" + - metabolites: !!omap + - s_4172: -1 + - s_4173: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "ACGLUtd" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4476" - - name: "N-acetyl-L-glutamate transport" - - metabolites: !!omap - - s_1192: 1 - - s_4173: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4476" + - name: "N-acetyl-L-glutamate transport" + - metabolites: !!omap + - s_1192: 1 + - s_4173: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "ACGLUtm" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4477" - - name: "Lipoamide transport via proton symport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4174: -1 - - s_4175: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4477" + - name: "Lipoamide transport via proton symport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4174: -1 + - s_4175: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "LPAMt" - metanetx.reaction: "MNXR137094" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4478" - - name: "L-methionine S-oxide transport via diffusion (extracellular)" - - metabolites: !!omap - - s_3837: 1 - - s_4176: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4478" + - name: "L-methionine S-oxide transport via diffusion (extracellular)" + - metabolites: !!omap + - s_3837: 1 + - s_4176: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101483" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4479" - - name: "Gly-Asn transport via proton symport" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_4054: -1 - - s_4055: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4480" - - name: "Cysteamine transport via proton antiport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4073: 1 - - s_4074: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4479" + - name: "Gly-Asn transport via proton symport" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_4054: -1 + - s_4055: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 + - !!omap + - id: "r_4480" + - name: "Cysteamine transport via proton antiport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4073: 1 + - s_4074: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137130" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4481" - - name: "Hydrogen sulfide oxidation" - - metabolites: !!omap - - s_0794: 1 - - s_0841: -1 - - s_1275: -2 - - s_1467: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4482" - - name: "L-alanine transport in via proton symport" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_0955: -1 - - s_3759: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4481" + - name: "Hydrogen sulfide oxidation" + - metabolites: !!omap + - s_0794: 1 + - s_0841: -1 + - s_1275: -2 + - s_1467: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 1 + - !!omap + - id: "r_4482" + - name: "L-alanine transport in via proton symport" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_0955: -1 + - s_3759: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR95704" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4483" - - name: "Glycine transport (vacuole)" - - metabolites: !!omap - - s_0794: -1 - - s_0802: 1 - - s_1003: -1 - - s_3839: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4483" + - name: "Glycine transport (vacuole)" + - metabolites: !!omap + - s_0794: -1 + - s_0802: 1 + - s_1003: -1 + - s_3839: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100368" - sbo: "SBO:0000655" - - confidence_score: 1 - - !!omap - - id: "r_4484" - - name: "O4-succinyl-L-homoserine:hydrogen sulfide S-(3-amino-3-carboxypropyl)transferase; O-succinyl-L-homoserine succinate-lyase (adding hydrogen sulfide)" - - metabolites: !!omap - - s_0841: -1 - - s_1012: 1 - - s_1241: -1 - - s_1458: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YJR130C or YLL058W or YML082W" - - annotation: !!omap - - ec-code: - - "2.5.1.-" - - "2.5.1.48" + - confidence_score: 1 + - !!omap + - id: "r_4484" + - name: "O4-succinyl-L-homoserine:hydrogen sulfide S-(3-amino-3-carboxypropyl)transferase; O-succinyl-L-homoserine succinate-lyase (adding hydrogen sulfide)" + - metabolites: !!omap + - s_0841: -1 + - s_1012: 1 + - s_1241: -1 + - s_1458: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YJR130C or YLL058W or YML082W" + - eccodes: "2.5.1.-; 2.5.1.48" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.5.1.-; 2.5.1.48" - bigg.reaction: "SHSL2" - kegg.reaction: "R01288" - metanetx.reaction: "MNXR104382" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4485" - - name: "4-Hydroxyphenylpyruvate:oxygen oxidoreductase (hydroxylating,decarboxylating)" - - metabolites: !!omap - - s_0204: -1 - - s_0456: 1 - - s_1275: -1 - - s_4177: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4485" + - name: "4-Hydroxyphenylpyruvate:oxygen oxidoreductase (hydroxylating,decarboxylating)" + - metabolites: !!omap + - s_0204: -1 + - s_0456: 1 + - s_1275: -1 + - s_4177: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.13.11.27" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.13.11.27" - bigg.reaction: "34HPPOR" - kegg.reaction: "R02521" - metanetx.reaction: "MNXR94843" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4486" - - name: "Homogentisate:oxygen 1,2-oxidoreductase (decyclizing)" - - metabolites: !!omap - - s_0794: 1 - - s_1275: -1 - - s_4177: -1 - - s_4178: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4486" + - name: "Homogentisate:oxygen 1,2-oxidoreductase (decyclizing)" + - metabolites: !!omap + - s_0794: 1 + - s_1275: -1 + - s_4177: -1 + - s_4178: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.13.11.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.13.11.5" - bigg.reaction: "HGNTOR" - kegg.reaction: "R02519" - metanetx.reaction: "MNXR100628" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4487" - - name: "4-Maleylacetoacetate cis-trans-isomerase" - - metabolites: !!omap - - s_4178: -1 - - s_4179: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4487" + - name: "4-Maleylacetoacetate cis-trans-isomerase" + - metabolites: !!omap + - s_4178: -1 + - s_4179: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "5.2.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "5.2.1.2" - bigg.reaction: "MACACI" - kegg.reaction: "R03181" - metanetx.reaction: "MNXR101325" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4488" - - name: "4-fumarylacetoacetate fumarylhydrolase" - - metabolites: !!omap - - s_0725: 1 - - s_0794: 1 - - s_0803: -1 - - s_4132: 1 - - s_4179: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4488" + - name: "4-fumarylacetoacetate fumarylhydrolase" + - metabolites: !!omap + - s_0725: 1 + - s_0794: 1 + - s_0803: -1 + - s_4132: 1 + - s_4179: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.7.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.7.1.2" - bigg.reaction: "FUMAC" - kegg.reaction: "R01364" - metanetx.reaction: "MNXR99706" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4489" - - name: "L-arabinitol:NAD+ 4-oxidoreductase (L-xylulose-forming)" - - metabolites: !!omap - - s_0794: 1 - - s_0961: -1 - - s_1198: -1 - - s_1203: 1 - - s_4180: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4489" + - name: "L-arabinitol:NAD+ 4-oxidoreductase (L-xylulose-forming)" + - metabolites: !!omap + - s_0794: 1 + - s_0961: -1 + - s_1198: -1 + - s_1203: 1 + - s_4180: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.1.1.12" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.12" - bigg.reaction: "ABTD" - kegg.reaction: "R01903" - metanetx.reaction: "MNXR137988" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4490" - - name: "Xylitol:NADP+ 4-oxidoreductase (L-xylulose-forming)" - - metabolites: !!omap - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_1566: 1 - - s_4180: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4490" + - name: "Xylitol:NADP+ 4-oxidoreductase (L-xylulose-forming)" + - metabolites: !!omap + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_1566: 1 + - s_4180: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.1.1.10" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.10" - bigg.reaction: "XYLUR" - kegg.reaction: "R01904" - metanetx.reaction: "MNXR105265" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4491" - - name: "arabinose reductase (D-arabinose)" - - metabolites: !!omap - - s_0548: -1 - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_4181: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4492" - - name: "D-arabinitol:NAT 4-oxidoreductase" - - metabolites: !!omap - - s_0580: 1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_4181: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4491" + - name: "arabinose reductase (D-arabinose)" + - metabolites: !!omap + - s_0548: -1 + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_4181: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 1 + - !!omap + - id: "r_4492" + - name: "D-arabinitol:NAT 4-oxidoreductase" + - metabolites: !!omap + - s_0580: 1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_4181: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.1.1.11" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.11" - bigg.reaction: "ABTDG" - kegg.reaction: "R05604" - metanetx.reaction: "MNXR95188" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4493" - - name: "Acetoacetate transport via diffusion" - - metabolites: !!omap - - s_4132: 1 - - s_4133: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL065W" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4493" + - name: "Acetoacetate transport via diffusion" + - metabolites: !!omap + - s_4132: 1 + - s_4133: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL065W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR95208" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4494" - - name: "methanol exchange" - - metabolites: !!omap - - s_4124: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4494" + - name: "methanol exchange" + - metabolites: !!omap + - s_4124: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_meoh_e" - metanetx.reaction: "MNXR101464" - sbo: "SBO:0000627" - - !!omap - - id: "r_4495" - - name: "alkaline phosphatase" - - metabolites: !!omap - - s_0386: 1 - - s_0389: -1 - - s_0803: -1 - - s_1322: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4495" + - name: "alkaline phosphatase" + - metabolites: !!omap + - s_0386: 1 + - s_0389: -1 + - s_0803: -1 + - s_1322: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.1.3.-" - metanetx.reaction: "MNXR118733" - sbo: "SBO:0000176" - - confidence_score: 1 - - !!omap - - id: "r_4496" - - name: "Ala-Gly exchange" - - metabolites: !!omap - - s_4170: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4496" + - name: "Ala-Gly exchange" + - metabolites: !!omap + - s_4170: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_L_alagly_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4497" - - name: "3-oxalomalate(3-) exchange" - - metabolites: !!omap - - s_4137: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4497" + - name: "3-oxalomalate(3-) exchange" + - metabolites: !!omap + - s_4137: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4498" - - name: "6-O-alpha-D-glucopyranosyl-D-fructofuranose exchange" - - metabolites: !!omap - - s_4109: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4498" + - name: "6-O-alpha-D-glucopyranosyl-D-fructofuranose exchange" + - metabolites: !!omap + - s_4109: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_pala_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4499" - - name: "5-dehydro-D-gluconate exchange" - - metabolites: !!omap - - s_4118: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4499" + - name: "5-dehydro-D-gluconate exchange" + - metabolites: !!omap + - s_4118: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_5dglcn_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4500" - - name: "D-tagatose exchange" - - metabolites: !!omap - - s_4130: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4500" + - name: "D-tagatose exchange" + - metabolites: !!omap + - s_4130: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_tag__D_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4501" - - name: "turanose exchange" - - metabolites: !!omap - - s_4131: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4501" + - name: "turanose exchange" + - metabolites: !!omap + - s_4131: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4502" - - name: "D-glucose 6-phosphate exchange" - - metabolites: !!omap - - s_4150: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4502" + - name: "D-glucose 6-phosphate exchange" + - metabolites: !!omap + - s_4150: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_g6p_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4503" - - name: "alpha-maltotriose exchange" - - metabolites: !!omap - - s_4140: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4503" + - name: "alpha-maltotriose exchange" + - metabolites: !!omap + - s_4140: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_malttr_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4504" - - name: "D-glucose 1-phosphate exchange" - - metabolites: !!omap - - s_4145: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4504" + - name: "D-glucose 1-phosphate exchange" + - metabolites: !!omap + - s_4145: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_g1p_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4505" - - name: "methyl alpha-D-glucopyranoside exchange" - - metabolites: !!omap - - s_4125: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4505" + - name: "methyl alpha-D-glucopyranoside exchange" + - metabolites: !!omap + - s_4125: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_madg_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4506" - - name: "D-Glucosamine exchange" - - metabolites: !!omap - - s_4164: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4506" + - name: "D-Glucosamine exchange" + - metabolites: !!omap + - s_4164: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_gam_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4507" - - name: "glycerone exchange" - - metabolites: !!omap - - s_4167: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4507" + - name: "glycerone exchange" + - metabolites: !!omap + - s_4167: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_dha_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4508" - - name: "Ala-Gln exchange" - - metabolites: !!omap - - s_4034: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4508" + - name: "Ala-Gln exchange" + - metabolites: !!omap + - s_4034: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_ala_L_gln__L_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4509" - - name: "Ala-Leu exchange" - - metabolites: !!omap - - s_4168: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4509" + - name: "Ala-Leu exchange" + - metabolites: !!omap + - s_4168: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4510" - - name: "Gly-Gln exchange" - - metabolites: !!omap - - s_4056: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4510" + - name: "Gly-Gln exchange" + - metabolites: !!omap + - s_4056: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_gly_gln__L_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4511" - - name: "Ala-His exchange" - - metabolites: !!omap - - s_4050: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4511" + - name: "Ala-His exchange" + - metabolites: !!omap + - s_4050: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_ala_L_his__L_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4512" - - name: "Gly-Asn exchange" - - metabolites: !!omap - - s_4053: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4512" + - name: "Gly-Asn exchange" + - metabolites: !!omap + - s_4053: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_gly_asn__L_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4513" - - name: "Ala-Glu exchange" - - metabolites: !!omap - - s_4037: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4513" + - name: "Ala-Glu exchange" + - metabolites: !!omap + - s_4037: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_LalaLglu_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4514" - - name: "Gly-Met exchange" - - metabolites: !!omap - - s_4085: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4514" + - name: "Gly-Met exchange" + - metabolites: !!omap + - s_4085: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_gly_met__L_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4515" - - name: "Ala-Asp exchange" - - metabolites: !!omap - - s_4119: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4515" + - name: "Ala-Asp exchange" + - metabolites: !!omap + - s_4119: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_ala_L_asp__L_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4516" - - name: "Gly-Glu exchange" - - metabolites: !!omap - - s_4059: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4516" + - name: "Gly-Glu exchange" + - metabolites: !!omap + - s_4059: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_gly_glu__L_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4517" - - name: "Ala-Thr exchange" - - metabolites: !!omap - - s_4040: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4517" + - name: "Ala-Thr exchange" + - metabolites: !!omap + - s_4040: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_ala_L_Thr__L_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4518" - - name: "Met-Ala exchange" - - metabolites: !!omap - - s_4143: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4518" + - name: "Met-Ala exchange" + - metabolites: !!omap + - s_4143: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_met_L_ala__L_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4519" - - name: "L-citrulline exchange" - - metabolites: !!omap - - s_4166: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4519" + - name: "L-citrulline exchange" + - metabolites: !!omap + - s_4166: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_citr__L_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4520" - - name: "2-aminobutanoate exchange" - - metabolites: !!omap - - s_4080: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4520" + - name: "2-aminobutanoate exchange" + - metabolites: !!omap + - s_4080: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_C02356_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4521" - - name: "choline phosphate exchange" - - metabolites: !!omap - - s_4158: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4521" + - name: "choline phosphate exchange" + - metabolites: !!omap + - s_4158: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_cholp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4522" - - name: "glycerol 1-phosphate exchange" - - metabolites: !!omap - - s_4049: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4522" + - name: "glycerol 1-phosphate exchange" + - metabolites: !!omap + - s_4049: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4523" - - name: "2-phospho-D-glyceric acid exchange" - - metabolites: !!omap - - s_4141: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4523" + - name: "2-phospho-D-glyceric acid exchange" + - metabolites: !!omap + - s_4141: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_2pg_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4524" - - name: "GMP exchange" - - metabolites: !!omap - - s_4148: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4524" + - name: "GMP exchange" + - metabolites: !!omap + - s_4148: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_gmp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4525" - - name: "3-phospho-serine exchange" - - metabolites: !!omap - - s_4147: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4525" + - name: "3-phospho-serine exchange" + - metabolites: !!omap + - s_4147: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_pser__L_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4526" - - name: "O-phosphonatooxy-D-serine(2-) exchange" - - metabolites: !!omap - - s_4078: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4526" + - name: "O-phosphonatooxy-D-serine(2-) exchange" + - metabolites: !!omap + - s_4078: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_pser__D_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4527" - - name: "diphosphate exchange" - - metabolites: !!omap - - s_4157: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4527" + - name: "diphosphate exchange" + - metabolites: !!omap + - s_4157: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_ppi_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4528" - - name: "triphosphate exchange" - - metabolites: !!omap - - s_4099: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4528" + - name: "triphosphate exchange" + - metabolites: !!omap + - s_4099: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4529" - - name: "phosphoenolpyruvate exchange" - - metabolites: !!omap - - s_4152: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4529" + - name: "phosphoenolpyruvate exchange" + - metabolites: !!omap + - s_4152: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_pep_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4530" - - name: "N(omega)-phospho-L-arginine exchange" - - metabolites: !!omap - - s_4093: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4530" + - name: "N(omega)-phospho-L-arginine exchange" + - metabolites: !!omap + - s_4093: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_argp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4531" - - name: "carbamoyl phosphate exchange" - - metabolites: !!omap - - s_4146: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4531" + - name: "carbamoyl phosphate exchange" + - metabolites: !!omap + - s_4146: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4532" - - name: "O-phosphoethanolamine exchange" - - metabolites: !!omap - - s_4154: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4532" + - name: "O-phosphoethanolamine exchange" + - metabolites: !!omap + - s_4154: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_ethamp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4533" - - name: "cysteamine S-phosphate exchange" - - metabolites: !!omap - - s_4075: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4533" + - name: "cysteamine S-phosphate exchange" + - metabolites: !!omap + - s_4075: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4534" - - name: "guanosine 2'-monophosphate exchange" - - metabolites: !!omap - - s_4067: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4534" + - name: "guanosine 2'-monophosphate exchange" + - metabolites: !!omap + - s_4067: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4535" - - name: "glycerol 2-phosphate(2-) exchange" - - metabolites: !!omap - - s_4063: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4535" + - name: "glycerol 2-phosphate(2-) exchange" + - metabolites: !!omap + - s_4063: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_glyc2p_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4536" - - name: "3'-GMP exchange" - - metabolites: !!omap - - s_4069: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4536" + - name: "3'-GMP exchange" + - metabolites: !!omap + - s_4069: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_3gmp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4537" - - name: "2-phosphoglycolate exchange" - - metabolites: !!omap - - s_4070: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4537" + - name: "2-phosphoglycolate exchange" + - metabolites: !!omap + - s_4070: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_2pglyc_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4538" - - name: "6-phospho-D-gluconate exchange" - - metabolites: !!omap - - s_4155: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4538" + - name: "6-phospho-D-gluconate exchange" + - metabolites: !!omap + - s_4155: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_6pgc_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4539" - - name: "D-mannose 6-phosphate exchange" - - metabolites: !!omap - - s_4153: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4539" + - name: "D-mannose 6-phosphate exchange" + - metabolites: !!omap + - s_4153: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_man6p_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4540" - - name: "2',3'-cyclic GMP exchange" - - metabolites: !!omap - - s_4095: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4540" + - name: "2',3'-cyclic GMP exchange" + - metabolites: !!omap + - s_4095: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_23cgmp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4541" - - name: "O(4)-phospho-L-tyrosine exchange" - - metabolites: !!omap - - s_4097: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4541" + - name: "O(4)-phospho-L-tyrosine exchange" + - metabolites: !!omap + - s_4097: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_tyrp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4542" - - name: "O-phospho-L-threonine exchange" - - metabolites: !!omap - - s_4065: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4542" + - name: "O-phospho-L-threonine exchange" + - metabolites: !!omap + - s_4065: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_thrp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4543" - - name: "3-phosphonato-D-glycerate(3-) exchange" - - metabolites: !!omap - - s_4142: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4543" + - name: "3-phosphonato-D-glycerate(3-) exchange" + - metabolites: !!omap + - s_4142: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_3pg_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4544" - - name: "adenosine 2'-phosphate exchange" - - metabolites: !!omap - - s_4162: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4544" + - name: "adenosine 2'-phosphate exchange" + - metabolites: !!omap + - s_4162: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4545" - - name: "3'-AMP exchange" - - metabolites: !!omap - - s_4107: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4545" + - name: "3'-AMP exchange" + - metabolites: !!omap + - s_4107: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_3amp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4546" - - name: "2',3'-cyclic AMP exchange" - - metabolites: !!omap - - s_4161: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4546" + - name: "2',3'-cyclic AMP exchange" + - metabolites: !!omap + - s_4161: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_23camp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4547" - - name: "D-mannose 1-phosphate exchange" - - metabolites: !!omap - - s_4156: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4547" + - name: "D-mannose 1-phosphate exchange" + - metabolites: !!omap + - s_4156: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_man1p_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4548" - - name: "AMP exchange" - - metabolites: !!omap - - s_4160: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4548" + - name: "AMP exchange" + - metabolites: !!omap + - s_4160: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_amp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4549" - - name: "N(alpha)-acetyl-L-methionine exchange" - - metabolites: !!omap - - s_4135: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4549" + - name: "N(alpha)-acetyl-L-methionine exchange" + - metabolites: !!omap + - s_4135: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_C02712_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4550" - - name: "L-Methionine S-oxide exchange" - - metabolites: !!omap - - s_4176: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4550" + - name: "L-Methionine S-oxide exchange" + - metabolites: !!omap + - s_4176: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_metsox_S__L_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4551" - - name: "3-sulfino-L-alanine exchange" - - metabolites: !!omap - - s_4105: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4551" + - name: "3-sulfino-L-alanine exchange" + - metabolites: !!omap + - s_4105: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4552" - - name: "N-acetyl-L-cysteine exchange" - - metabolites: !!omap - - s_4111: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4552" + - name: "N-acetyl-L-cysteine exchange" + - metabolites: !!omap + - s_4111: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_CE1310_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4553" - - name: "L-cysteate exchange" - - metabolites: !!omap - - s_4139: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4553" + - name: "L-cysteate exchange" + - metabolites: !!omap + - s_4139: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_Lcyst_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4554" - - name: "2-hydroxyethane-1-sulfonate exchange" - - metabolites: !!omap - - s_4116: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4554" + - name: "2-hydroxyethane-1-sulfonate exchange" + - metabolites: !!omap + - s_4116: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_isetac_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4555" - - name: "acetoacetate exchange" - - metabolites: !!omap - - s_4133: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4555" + - name: "acetoacetate exchange" + - metabolites: !!omap + - s_4133: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_acac_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4556" - - name: "N-acetyl-L-glutamate exchange" - - metabolites: !!omap - - s_4172: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4556" + - name: "N-acetyl-L-glutamate exchange" + - metabolites: !!omap + - s_4172: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_acglu_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4557" - - name: "UMP exchange" - - metabolites: !!omap - - s_4151: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4557" + - name: "UMP exchange" + - metabolites: !!omap + - s_4151: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_ump_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4558" - - name: "CMP exchange" - - metabolites: !!omap - - s_4163: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4558" + - name: "CMP exchange" + - metabolites: !!omap + - s_4163: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_cmp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4559" - - name: "thymidine 5'-monophosphate exchange" - - metabolites: !!omap - - s_4047: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4559" + - name: "thymidine 5'-monophosphate exchange" + - metabolites: !!omap + - s_4047: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4560" - - name: "thymidine 3'-monophosphate exchange" - - metabolites: !!omap - - s_4045: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4560" + - name: "thymidine 3'-monophosphate exchange" + - metabolites: !!omap + - s_4045: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4561" - - name: "cytidine 2'-phosphate exchange" - - metabolites: !!omap - - s_4101: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4561" + - name: "cytidine 2'-phosphate exchange" + - metabolites: !!omap + - s_4101: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4562" - - name: "uridine 2'-phosphate exchange" - - metabolites: !!omap - - s_4082: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4562" + - name: "uridine 2'-phosphate exchange" + - metabolites: !!omap + - s_4082: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - !!omap - - id: "r_4563" - - name: "3'-UMP exchange" - - metabolites: !!omap - - s_4084: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4563" + - name: "3'-UMP exchange" + - metabolites: !!omap + - s_4084: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_3ump_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4564" - - name: "2',3'-cyclic CMP exchange" - - metabolites: !!omap - - s_4127: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4564" + - name: "2',3'-cyclic CMP exchange" + - metabolites: !!omap + - s_4127: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_23ccmp_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4565" - - name: "2',3'-cyclic UMP exchange" - - metabolites: !!omap - - s_4103: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4565" + - name: "2',3'-cyclic UMP exchange" + - metabolites: !!omap + - s_4103: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_23cump_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4566" - - name: "ATP:D-Gluconate 6-phosphotransferase" - - metabolites: !!omap - - s_0340: -1 - - s_0394: -1 - - s_0434: 1 - - s_0794: -1 - - s_3875: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4566" + - name: "ATP:D-Gluconate 6-phosphotransferase" + - metabolites: !!omap + - s_0340: -1 + - s_0394: -1 + - s_0434: 1 + - s_0794: -1 + - s_3875: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "2.7.1.12" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.1.12" - kegg.reaction: "R01737" - metanetx.reaction: "MNXR100390" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4567" - - name: "6-phosphogluconate phosphatase" - - metabolites: !!omap - - s_0340: -1 - - s_0803: -1 - - s_1322: 1 - - s_3875: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - ec-code: - - "3.1.3.-" - - "3.1.3.2" - - "3.1.3.29" + - confidence_score: 0 + - !!omap + - id: "r_4567" + - name: "6-phosphogluconate phosphatase" + - metabolites: !!omap + - s_0340: -1 + - s_0803: -1 + - s_1322: 1 + - s_3875: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.3.-; 3.1.3.2; 3.1.3.29" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.3.-; 3.1.3.2; 3.1.3.29" - metanetx.reaction: "MNXR123213" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4568" - - name: "R06790" - - metabolites: !!omap - - s_0794: -1 - - s_1321: -1 - - s_4194: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4568" + - name: "R06790" + - metabolites: !!omap + - s_0794: -1 + - s_1321: -1 + - s_4194: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - kegg.reaction: "R06790" - metanetx.reaction: "MNXR139469" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4569" - - name: "Carboxylic ester hydrolases" - - metabolites: !!omap - - s_0362: -1 - - s_0794: -1 - - s_0803: 1 - - s_4194: 1 - - s_4195: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - ec-code: - - "3.1.1.-" - - "3.1.1.2" + - confidence_score: 0 + - !!omap + - id: "r_4569" + - name: "Carboxylic ester hydrolases" + - metabolites: !!omap + - s_0362: -1 + - s_0794: -1 + - s_0803: 1 + - s_4194: 1 + - s_4195: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.1.-; 3.1.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.1.-; 3.1.1.2" - kegg.reaction: "R06893" - metanetx.reaction: "MNXR110621" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4570" - - name: "phosphoglycerate dehydrogenase" - - metabolites: !!omap - - s_0180: 1 - - s_0794: 1 - - s_1198: -1 - - s_1203: 1 - - s_4182: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4570" + - name: "phosphoglycerate dehydrogenase" + - metabolites: !!omap + - s_0180: 1 + - s_0794: 1 + - s_1198: -1 + - s_1203: 1 + - s_4182: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.1.1.95" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.95" - kegg.reaction: "R08198" - metanetx.reaction: "MNXR111769" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4571" - - name: "seed:rxn00681" - - metabolites: !!omap - - s_0529: -1 - - s_0779: 1 - - s_0794: -1 - - s_0803: 1 - - s_4182: -1 - - s_4183: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4571" + - name: "seed:rxn00681" + - metabolites: !!omap + - s_0529: -1 + - s_0779: 1 + - s_0794: -1 + - s_0803: 1 + - s_4182: -1 + - s_4183: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR134240" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4572" - - name: "beta-alanine:2-oxoglutarate aminotransferase" - - metabolites: !!omap - - s_0180: -1 - - s_0441: -1 - - s_0991: 1 - - s_4184: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - ec-code: - - "2.6.1.19" - - "2.6.1.55" + - confidence_score: 0 + - !!omap + - id: "r_4572" + - name: "beta-alanine:2-oxoglutarate aminotransferase" + - metabolites: !!omap + - s_0180: -1 + - s_0441: -1 + - s_0991: 1 + - s_4184: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "2.6.1.19; 2.6.1.55" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "2.6.1.19; 2.6.1.55" - kegg.reaction: "R00908" - metanetx.reaction: "MNXR95862" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4573" - - name: "3-Oxopropanoate:NAD+ oxidoreductase (decarboxylating, CoA-acetylating)" - - metabolites: !!omap - - s_0373: 1 - - s_0456: 1 - - s_0529: -1 - - s_1198: -1 - - s_1203: 1 - - s_4184: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - ec-code: - - "1.2.1.-" - - "1.2.1.18" - - "1.2.1.27" + - confidence_score: 0 + - !!omap + - id: "r_4573" + - name: "3-Oxopropanoate:NAD+ oxidoreductase (decarboxylating, CoA-acetylating)" + - metabolites: !!omap + - s_0373: 1 + - s_0456: 1 + - s_0529: -1 + - s_1198: -1 + - s_1203: 1 + - s_4184: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.2.1.-; 1.2.1.18; 1.2.1.27" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.2.1.-; 1.2.1.18; 1.2.1.27" - bigg.reaction: "MMSAD3" - kegg.reaction: "R00705" - metanetx.reaction: "MNXR101665" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4574" - - name: "3-Oxopropanoate:NADP+ oxidoreductase (decarboxylating, CoA-acetylating)" - - metabolites: !!omap - - s_0373: 1 - - s_0456: 1 - - s_0529: -1 - - s_1207: -1 - - s_1212: 1 - - s_4184: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - ec-code: - - "1.2.1.-" - - "1.2.1.18" + - confidence_score: 0 + - !!omap + - id: "r_4574" + - name: "3-Oxopropanoate:NADP+ oxidoreductase (decarboxylating, CoA-acetylating)" + - metabolites: !!omap + - s_0373: 1 + - s_0456: 1 + - s_0529: -1 + - s_1207: -1 + - s_1212: 1 + - s_4184: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.2.1.-; 1.2.1.18" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.2.1.-; 1.2.1.18" - kegg.reaction: "R00706" - metanetx.reaction: "MNXR106650" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4575" - - name: "3-oxopropanoate carboxy-lyase" - - metabolites: !!omap - - s_0359: 1 - - s_0456: 1 - - s_0794: -1 - - s_4184: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - ec-code: - - "4.1.1.-" - - "4.2.1.155" + - confidence_score: 0 + - !!omap + - id: "r_4575" + - name: "3-oxopropanoate carboxy-lyase" + - metabolites: !!omap + - s_0359: 1 + - s_0456: 1 + - s_0794: -1 + - s_4184: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "4.1.1.-; 4.2.1.155" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "4.1.1.-; 4.2.1.155" - kegg.reaction: "R06973" - metanetx.reaction: "MNXR110693" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4576" - - name: "(R)-2,3-Dihydroxy-3-methylbutanoate:NADP+ oxidoreductase (isomerizing)" - - metabolites: !!omap - - s_0794: 1 - - s_1207: -1 - - s_1212: 1 - - s_4185: -1 - - s_4186: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4576" + - name: "(R)-2,3-Dihydroxy-3-methylbutanoate:NADP+ oxidoreductase (isomerizing)" + - metabolites: !!omap + - s_0794: 1 + - s_1207: -1 + - s_1212: 1 + - s_4185: -1 + - s_4186: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.1.1.86" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.86" - kegg.reaction: "R04440" - metanetx.reaction: "MNXR100904" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4577" - - name: "Dihydroxy-acid dehydratase, mitochondrial" - - metabolites: !!omap - - s_0232: -1 - - s_0803: -1 - - s_4208: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4577" + - name: "Dihydroxy-acid dehydratase, mitochondrial" + - metabolites: !!omap + - s_0232: -1 + - s_0803: -1 + - s_4208: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - kegg.reaction: "R01209" - metanetx.reaction: "MNXR106867" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4578" - - name: "Ketol-acid reductoisomerase, mitochondrial" - - metabolites: !!omap - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_4185: 1 - - s_4187: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4578" + - name: "Ketol-acid reductoisomerase, mitochondrial" + - metabolites: !!omap + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_4185: 1 + - s_4187: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR137279" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4579" - - name: "pyruvate:pyruvate acetaldehydetransferase (decarboxylating); (S)-2-acetolactate pyruvate-lyase (carboxylating)" - - metabolites: !!omap - - s_0456: 1 - - s_0794: -1 - - s_1399: -2 - - s_4188: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4579" + - name: "pyruvate:pyruvate acetaldehydetransferase (decarboxylating); (S)-2-acetolactate pyruvate-lyase (carboxylating)" + - metabolites: !!omap + - s_0456: 1 + - s_0794: -1 + - s_1399: -2 + - s_4188: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "2.2.1.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.2.1.6" - bigg.reaction: "ACLS" - kegg.reaction: "R00226" - metanetx.reaction: "MNXR95271" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4580" - - name: "(R)-2,3-dihydroxy-3-methylbutanoate:NADP+ oxidoreductase (isomerizing)" - - metabolites: !!omap - - s_0794: 1 - - s_1207: -1 - - s_1212: 1 - - s_4185: -1 - - s_4188: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - ec-code: - - "1.1.1.383" - - "1.1.1.86" + - confidence_score: 0 + - !!omap + - id: "r_4580" + - name: "(R)-2,3-dihydroxy-3-methylbutanoate:NADP+ oxidoreductase (isomerizing)" + - metabolites: !!omap + - s_0794: 1 + - s_1207: -1 + - s_1212: 1 + - s_4185: -1 + - s_4188: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.1.1.383; 1.1.1.86" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.383; 1.1.1.86" - bigg.reaction: "KARA1" - kegg.reaction: "R04439" - metanetx.reaction: "MNXR97523" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4581" - - name: "(2R,3S)-3-methylmalate:NAD+ oxidoreductase" - - metabolites: !!omap - - s_0178: 1 - - s_0456: 1 - - s_1198: -1 - - s_1203: 1 - - s_4189: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.85" + - confidence_score: 0 + - !!omap + - id: "r_4581" + - name: "(2R,3S)-3-methylmalate:NAD+ oxidoreductase" + - metabolites: !!omap + - s_0178: 1 + - s_0456: 1 + - s_1198: -1 + - s_1203: 1 + - s_4189: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "1.1.1.-; 1.1.1.85" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.85" - bigg.reaction: "ERTHMMOR" - kegg.reaction: "R00994" - metanetx.reaction: "MNXR106779" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4582" - - name: "malate/beta-methylmalate synthase" - - metabolites: !!omap - - s_0529: 1 - - s_0779: -1 - - s_0794: 1 - - s_0803: -1 - - s_4183: -1 - - s_4189: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4582" + - name: "malate/beta-methylmalate synthase" + - metabolites: !!omap + - s_0529: 1 + - s_0779: -1 + - s_0794: 1 + - s_0803: -1 + - s_4183: -1 + - s_4189: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "2.3.3.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.3.-" - metanetx.reaction: "MNXR121603" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4583" - - name: "palmitoyl-CoA hydrolase" - - metabolites: !!omap - - s_0529: 1 - - s_0794: 1 - - s_0803: -1 - - s_4190: -1 - - s_4191: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - ec-code: - - "3.1.2.-" - - "3.1.2.2" + - confidence_score: 0 + - !!omap + - id: "r_4583" + - name: "palmitoyl-CoA hydrolase" + - metabolites: !!omap + - s_0529: 1 + - s_0794: 1 + - s_0803: -1 + - s_4190: -1 + - s_4191: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.1.2.-; 3.1.2.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "3.1.2.-; 3.1.2.2" - bigg.reaction: "FACOAE1829Z12Z" - kegg.reaction: "R08177" - metanetx.reaction: "MNXR99136" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4584" - - name: "long-chain-fatty-acid---CoA ligase" - - metabolites: !!omap - - s_0423: 1 - - s_0434: -1 - - s_0529: -1 - - s_0633: 1 - - s_4190: 1 - - s_4191: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4584" + - name: "long-chain-fatty-acid---CoA ligase" + - metabolites: !!omap + - s_0423: 1 + - s_0434: -1 + - s_0529: -1 + - s_0633: 1 + - s_4190: 1 + - s_4191: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "6.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL1821" - metanetx.reaction: "MNXR99175" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4585" - - name: "a-galactosidase (stachyose)" - - metabolites: !!omap - - s_0558: 1 - - s_0803: -1 - - s_4192: -1 - - s_4193: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4585" + - name: "a-galactosidase (stachyose)" + - metabolites: !!omap + - s_0558: 1 + - s_0803: -1 + - s_4192: -1 + - s_4193: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "3.2.1.22" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "3.2.1.22" - bigg.reaction: "STACHGALACT" - kegg.reaction: "R03634" - metanetx.reaction: "MNXR100010" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4586" - - name: "stachyose synthase" - - metabolites: !!omap - - s_3998: -1 - - s_4192: -1 - - s_4193: 2 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4586" + - name: "stachyose synthase" + - metabolites: !!omap + - s_3998: -1 + - s_4192: -1 + - s_4193: 2 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "2.4.1.-" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.4.1.-" - metanetx.reaction: "MNXR122225" - sbo: "SBO:0000176" - - confidence_score: 0 - - !!omap - - id: "r_4587" - - name: "Ca(2+) transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_3880: 1 - - s_4199: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOL122C" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4587" + - name: "Ca(2+) transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_3880: 1 + - s_4199: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOL122C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR96437" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4588" - - name: "chloride transport" - - metabolites: !!omap - - s_3778: 1 - - s_4200: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YNL275W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4588" + - name: "chloride transport" + - metabolites: !!omap + - s_3778: 1 + - s_4200: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YNL275W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "Clt" - metanetx.reaction: "MNXR96797" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4589" - - name: "Cu2(+) transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4019: 1 - - s_4201: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOL122C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4589" + - name: "Cu2(+) transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4019: 1 + - s_4201: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOL122C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR126350" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4590" - - name: "Mn(2+) transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_3801: 1 - - s_4202: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOL130W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4590" + - name: "Mn(2+) transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_3801: 1 + - s_4202: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOL130W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "MNt2" - metanetx.reaction: "MNXR101669" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4591" - - name: "Zn(2+) transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_3822: 1 - - s_4203: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGL255W or YLR130C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4591" + - name: "Zn(2+) transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_3822: 1 + - s_4203: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGL255W or YLR130C" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "r2073_1" - metanetx.reaction: "MNXR105278" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4592" - - name: "Mg(2+) transport" - - metabolites: !!omap - - s_0794: 1 - - s_0796: -1 - - s_4013: 1 - - s_4204: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR191W or YOL130W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4592" + - name: "Mg(2+) transport" + - metabolites: !!omap + - s_0794: 1 + - s_0796: -1 + - s_4013: 1 + - s_4204: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR191W or YOL130W" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101553" - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4593" - - name: "chloride exchange" - - metabolites: !!omap - - s_4200: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4593" + - name: "chloride exchange" + - metabolites: !!omap + - s_4200: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_cl_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4594" - - name: "Cu2(+) exchange" - - metabolites: !!omap - - s_4201: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4594" + - name: "Cu2(+) exchange" + - metabolites: !!omap + - s_4201: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_cu2_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4595" - - name: "Mn(2+) exchange" - - metabolites: !!omap - - s_4202: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4595" + - name: "Mn(2+) exchange" + - metabolites: !!omap + - s_4202: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_mn2_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4596" - - name: "Zn(2+) exchange" - - metabolites: !!omap - - s_4203: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4596" + - name: "Zn(2+) exchange" + - metabolites: !!omap + - s_4203: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_zn2_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4597" - - name: "Mg(2+) exchange" - - metabolites: !!omap - - s_4204: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4597" + - name: "Mg(2+) exchange" + - metabolites: !!omap + - s_4204: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_mg2_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4598" - - name: "cofactor pseudoreaction" - - metabolites: !!omap - - s_0529: -0.00019 - - s_0687: -1e-05 - - s_1198: -0.00265 - - s_1203: -0.00015 - - s_1207: -0.00057 - - s_1212: -0.0027 - - s_1405: -0.00099 - - s_1475: -1.2e-06 - - s_1487: -6.34e-05 - - s_3714: -1e-06 - - s_4205: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4598" + - name: "cofactor pseudoreaction" + - metabolites: !!omap + - s_0529: -0.000190000006114 + - s_0687: -9.99999974738e-06 + - s_1198: -0.00264999992214 + - s_1203: -0.000150000007125 + - s_1207: -0.000569999974687 + - s_1212: -0.00270000007004 + - s_1405: -0.000989999971353 + - s_1475: -1.20000004245e-06 + - s_1487: -6.34000025457e-05 + - s_3714: -9.99999997475e-07 + - s_4205: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4599" - - name: "ion pseudoreaction" - - metabolites: !!omap - - s_0924: -3.04e-05 - - s_1373: -0.00363 - - s_1437: -0.00397 - - s_1467: -0.02 - - s_3778: -0.00129 - - s_3801: -0.00273 - - s_3822: -0.000748 - - s_3880: -0.000217 - - s_4013: -0.0012425 - - s_4019: -0.000659 - - s_4206: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4599" + - name: "ion pseudoreaction" + - metabolites: !!omap + - s_0924: -3.04000004689e-05 + - s_1373: -0.00362999993376 + - s_1437: -0.00396999996155 + - s_1467: -0.019999999553 + - s_3778: -0.00129000004381 + - s_3801: -0.00273000006564 + - s_3822: -0.00074799999129 + - s_3880: -0.000216999993427 + - s_4013: -0.00124254298862 + - s_4019: -0.000659000012092 + - s_4206: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 - - !!omap - - id: "r_4600" - - name: "Ca(2+) exchange" - - metabolites: !!omap - - s_4199: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 1 + - !!omap + - id: "r_4600" + - name: "Ca(2+) exchange" + - metabolites: !!omap + - s_4199: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "EX_ca2_e" - sbo: "SBO:0000627" - - !!omap - - id: "r_4601" - - name: "3-(4-hydroxyphenyl)pyruvate transport" - - metabolites: !!omap - - s_0204: -1 - - s_0206: 1 - - s_0794: -1 - - s_0801: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - !!omap + - id: "r_4601" + - name: "3-(4-hydroxyphenyl)pyruvate transport" + - metabolites: !!omap + - s_0204: -1 + - s_0206: 1 + - s_0794: -1 + - s_0801: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR94845" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4602" - - name: "acetate transport" - - metabolites: !!omap - - s_0362: -1 - - s_0363: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4602" + - name: "acetate transport" + - metabolites: !!omap + - s_0362: -1 + - s_0363: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR95431" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4603" - - name: "ADP-ribose transport" - - metabolites: !!omap - - s_0402: 1 - - s_3761: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4603" + - name: "ADP-ribose transport" + - metabolites: !!omap + - s_0402: 1 + - s_3761: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "ADPRIBt" - metanetx.reaction: "MNXR95481" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4604" - - name: "farnesyl diphosphate transport" - - metabolites: !!omap - - s_0190: -1 - - s_0692: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4604" + - name: "farnesyl diphosphate transport" + - metabolites: !!omap + - s_0190: -1 + - s_0692: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99646" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4605" - - name: "nicotinate transport" - - metabolites: !!omap - - s_0794: -1 - - s_0799: 1 - - s_1219: -1 - - s_1221: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4605" + - name: "nicotinate transport" + - metabolites: !!omap + - s_0794: -1 + - s_0799: 1 + - s_1219: -1 + - s_1221: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101858" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4606" - - name: "O-phosphoethanolamine transport" - - metabolites: !!omap - - s_0794: -1 - - s_0795: 1 - - s_1239: -1 - - s_1240: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4606" + - name: "O-phosphoethanolamine transport" + - metabolites: !!omap + - s_0794: -1 + - s_0795: 1 + - s_1239: -1 + - s_1240: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR135002" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4607" - - name: "phosphate transport" - - metabolites: !!omap - - s_1322: -1 - - s_1325: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4607" + - name: "phosphate transport" + - metabolites: !!omap + - s_1322: -1 + - s_1325: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "PItg" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4608" - - name: "propionyl-CoA transport" - - metabolites: !!omap - - s_0397: 1 - - s_0434: -1 - - s_0799: 1 - - s_0803: -1 - - s_1326: 1 - - s_1382: 1 - - s_4183: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4608" + - name: "propionyl-CoA transport" + - metabolites: !!omap + - s_0397: 1 + - s_0434: -1 + - s_0799: 1 + - s_0803: -1 + - s_1326: 1 + - s_1382: 1 + - s_4183: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "r2499" - metanetx.reaction: "MNXR106312" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4609" - - name: "UDP transport" - - metabolites: !!omap - - s_1538: -1 - - s_1539: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4609" + - name: "UDP transport" + - metabolites: !!omap + - s_1538: -1 + - s_1539: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "UDPtg" - metanetx.reaction: "MNXR105076" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4610" - - name: "UDP transport" - - metabolites: !!omap - - s_1538: -1 - - s_1540: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4610" + - name: "UDP transport" + - metabolites: !!omap + - s_1538: -1 + - s_1540: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "UDPtg" - metanetx.reaction: "MNXR105076" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4611" - - name: "UMP transport" - - metabolites: !!omap - - s_1545: -1 - - s_1546: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4611" + - name: "UMP transport" + - metabolites: !!omap + - s_1545: -1 + - s_1546: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR105127" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4612" - - name: "TRX1 disulphide transport" - - metabolites: !!omap - - s_1620: -1 - - s_1622: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4612" + - name: "TRX1 disulphide transport" + - metabolites: !!omap + - s_1620: -1 + - s_1622: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR104921" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4613" - - name: "oleate transport" - - metabolites: !!omap - - s_1260: -1 - - s_3677: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4613" + - name: "oleate transport" + - metabolites: !!omap + - s_1260: -1 + - s_3677: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4614" - - name: "(R)-acetoin transport" - - metabolites: !!omap - - s_0020: -1 - - s_0794: -1 - - s_0800: 1 - - s_3751: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4614" + - name: "(R)-acetoin transport" + - metabolites: !!omap + - s_0020: -1 + - s_0794: -1 + - s_0800: 1 + - s_3751: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "ACTNt2r" - metanetx.reaction: "MNXR95426" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4615" - - name: "L-glutamine transport" - - metabolites: !!omap - - s_0999: -1 - - s_3755: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4615" + - name: "L-glutamine transport" + - metabolites: !!omap + - s_0999: -1 + - s_3755: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "GLNtm" - metanetx.reaction: "MNXR100259" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4616" - - name: "UMP transport" - - metabolites: !!omap - - s_1545: -1 - - s_3781: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4616" + - name: "UMP transport" + - metabolites: !!omap + - s_1545: -1 + - s_3781: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR105127" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4617" - - name: "S-adenosyl-L-methionine transport" - - metabolites: !!omap - - s_1416: -1 - - s_3818: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4617" + - name: "S-adenosyl-L-methionine transport" + - metabolites: !!omap + - s_1416: -1 + - s_3818: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "AMETtn" - metanetx.reaction: "MNXR95809" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4618" - - name: "glutathione transport" - - metabolites: !!omap - - s_0750: -1 - - s_3831: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4618" + - name: "glutathione transport" + - metabolites: !!omap + - s_0750: -1 + - s_3831: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100449" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4619" - - name: "ATP transport" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_3881: 1 - - s_3883: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4619" + - name: "ATP transport" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_3881: 1 + - s_3883: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "2.7.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.6" - metanetx.reaction: "MNXR96123" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4620" - - name: "D-mannose 6-phosphate transport" - - metabolites: !!omap - - s_0574: -1 - - s_3898: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4620" + - name: "D-mannose 6-phosphate transport" + - metabolites: !!omap + - s_0574: -1 + - s_3898: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR101385" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4621" - - name: "O-acetyl-L-serine transport" - - metabolites: !!omap - - s_1234: -1 - - s_3905: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4621" + - name: "O-acetyl-L-serine transport" + - metabolites: !!omap + - s_1234: -1 + - s_3905: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - bigg.reaction: "ACSERtmi" - metanetx.reaction: "MNXR95416" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4622" - - name: "hydrogen sulfide transport" - - metabolites: !!omap - - s_0841: -1 - - s_3906: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4622" + - name: "hydrogen sulfide transport" + - metabolites: !!omap + - s_0841: -1 + - s_3906: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR100494" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4623" - - name: "L-cysteinylglycine transport" - - metabolites: !!omap - - s_0794: -1 - - s_0799: 1 - - s_0983: -1 - - s_3925: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4623" + - name: "L-cysteinylglycine transport" + - metabolites: !!omap + - s_0794: -1 + - s_0799: 1 + - s_0983: -1 + - s_3925: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR97002" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4624" - - name: "ATP transport" - - metabolites: !!omap - - s_0394: 1 - - s_0434: -1 - - s_2831: 1 - - s_3987: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4624" + - name: "ATP transport" + - metabolites: !!omap + - s_0394: 1 + - s_0434: -1 + - s_2831: 1 + - s_3987: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "2.7.4.6" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.7.4.6" - metanetx.reaction: "MNXR96123" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4625" - - name: "thiosulfate transport" - - metabolites: !!omap - - s_4010: 1 - - s_4113: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4625" + - name: "thiosulfate transport" + - metabolites: !!omap + - s_4010: 1 + - s_4113: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR104966" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4626" - - name: "sulphite transport" - - metabolites: !!omap - - s_1469: -1 - - s_4011: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4626" + - name: "sulphite transport" + - metabolites: !!omap + - s_1469: -1 + - s_4011: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR104460" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4627" - - name: "UDP-D-glucose transport" - - metabolites: !!omap - - s_1543: -1 - - s_4015: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4627" + - name: "UDP-D-glucose transport" + - metabolites: !!omap + - s_1543: -1 + - s_4015: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR105071" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4628" - - name: "UDP-N-acetyl-alpha-D-glucosamine transport" - - metabolites: !!omap - - s_1544: -1 - - s_4025: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4628" + - name: "UDP-N-acetyl-alpha-D-glucosamine transport" + - metabolites: !!omap + - s_1544: -1 + - s_4025: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - metanetx.reaction: "MNXR105021" - sbo: "SBO:0000655" - - confidence_score: 0 - - !!omap - - id: "r_4629" - - name: "alcohol acyltransferase (hexanoyl-CoA)" - - metabolites: !!omap - - s_0532: 1 - - s_0682: -1 - - s_4211: -1 - - s_4212: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR177C or YPL095C" - - annotation: !!omap + - confidence_score: 0 + - !!omap + - id: "r_4629" + - name: "alcohol acyltransferase (hexanoyl-CoA)" + - metabolites: !!omap + - s_0532: 1 + - s_0682: -1 + - s_4211: -1 + - s_4212: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR177C or YPL095C" + - eccodes: "2.3.1.84" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - kegg.reaction: "R00627" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4630" - - name: "alcohol acyltransferase (octanoyl-CoA)" - - metabolites: !!omap - - s_0532: 1 - - s_0682: -1 - - s_4213: -1 - - s_4214: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR177C or YPL095C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4630" + - name: "alcohol acyltransferase (octanoyl-CoA)" + - metabolites: !!omap + - s_0532: 1 + - s_0682: -1 + - s_4213: -1 + - s_4214: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR177C or YPL095C" + - eccodes: "2.3.1.84" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - kegg.reaction: "R00627" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4631" - - name: "alcohol acyltransferase (butyryl-CoA)" - - metabolites: !!omap - - s_0532: 1 - - s_0682: -1 - - s_4215: -1 - - s_4216: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR177C or YPL095C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4631" + - name: "alcohol acyltransferase (butyryl-CoA)" + - metabolites: !!omap + - s_0532: 1 + - s_0682: -1 + - s_4215: -1 + - s_4216: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR177C or YPL095C" + - eccodes: "2.3.1.84" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - kegg.reaction: "R00627" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4632" - - name: "alcohol acetyltransferase (hexanol)" - - metabolites: !!omap - - s_0376: -1 - - s_0532: 1 - - s_4217: -1 - - s_4218: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4632" + - name: "alcohol acetyltransferase (hexanol)" + - metabolites: !!omap + - s_0376: -1 + - s_0532: 1 + - s_4217: -1 + - s_4218: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" + - eccodes: "2.3.1.84" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - kegg.reaction: "R00627" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4633" - - name: "alcohol acyltransferase (decanoyl-CoA)" - - metabolites: !!omap - - s_0532: 1 - - s_0682: -1 - - s_4219: -1 - - s_4220: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR177C or YPL095C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4633" + - name: "alcohol acyltransferase (decanoyl-CoA)" + - metabolites: !!omap + - s_0532: 1 + - s_0682: -1 + - s_4219: -1 + - s_4220: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR177C or YPL095C" + - eccodes: "2.3.1.84" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - kegg.reaction: "R00627" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4634" - - name: "ethyl hexanoate transport, mitochondrial" - - metabolites: !!omap - - s_4212: -1 - - s_4221: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4635" - - name: "ethyl octanoate transport, mitochondrial" - - metabolites: !!omap - - s_4214: -1 - - s_4222: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4636" - - name: "ethyl butanoate transport, mitochondrial" - - metabolites: !!omap - - s_4216: -1 - - s_4223: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4637" - - name: "hexyl acetate transport, mitochondrial" - - metabolites: !!omap - - s_4218: -1 - - s_4224: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4638" - - name: "ethyl decanoate transport, mitochondrial" - - metabolites: !!omap - - s_4220: -1 - - s_4225: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4639" - - name: "ethyl hexanoate transport" - - metabolites: !!omap - - s_4221: -1 - - s_4226: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4640" - - name: "ethyl octanoate transport" - - metabolites: !!omap - - s_4222: -1 - - s_4227: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4641" - - name: "ethyl butanoate transport" - - metabolites: !!omap - - s_4223: -1 - - s_4228: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4642" - - name: "hexyl acetate transport" - - metabolites: !!omap - - s_4224: -1 - - s_4229: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4643" - - name: "ethyl decanoate transport" - - metabolites: !!omap - - s_4225: -1 - - s_4230: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4644" - - name: "ethyl hexanoate exchange" - - metabolites: !!omap - - s_4226: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4634" + - name: "ethyl hexanoate transport, mitochondrial" + - metabolites: !!omap + - s_4212: -1 + - s_4221: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4635" + - name: "ethyl octanoate transport, mitochondrial" + - metabolites: !!omap + - s_4214: -1 + - s_4222: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4636" + - name: "ethyl butanoate transport, mitochondrial" + - metabolites: !!omap + - s_4216: -1 + - s_4223: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4637" + - name: "hexyl acetate transport, mitochondrial" + - metabolites: !!omap + - s_4218: -1 + - s_4224: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4638" + - name: "ethyl decanoate transport, mitochondrial" + - metabolites: !!omap + - s_4220: -1 + - s_4225: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4639" + - name: "ethyl hexanoate transport" + - metabolites: !!omap + - s_4221: -1 + - s_4226: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4640" + - name: "ethyl octanoate transport" + - metabolites: !!omap + - s_4222: -1 + - s_4227: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4641" + - name: "ethyl butanoate transport" + - metabolites: !!omap + - s_4223: -1 + - s_4228: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4642" + - name: "hexyl acetate transport" + - metabolites: !!omap + - s_4224: -1 + - s_4229: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4643" + - name: "ethyl decanoate transport" + - metabolites: !!omap + - s_4225: -1 + - s_4230: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4644" + - name: "ethyl hexanoate exchange" + - metabolites: !!omap + - s_4226: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4645" - - name: "ethyl octanoate exchange" - - metabolites: !!omap - - s_4227: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4645" + - name: "ethyl octanoate exchange" + - metabolites: !!omap + - s_4227: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4646" - - name: "ethyl butanoate exchange" - - metabolites: !!omap - - s_4228: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4646" + - name: "ethyl butanoate exchange" + - metabolites: !!omap + - s_4228: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4647" - - name: "hexyl acetate exchange" - - metabolites: !!omap - - s_4229: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4647" + - name: "hexyl acetate exchange" + - metabolites: !!omap + - s_4229: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4648" - - name: "ethyl decanoate exchange" - - metabolites: !!omap - - s_4230: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4648" + - name: "ethyl decanoate exchange" + - metabolites: !!omap + - s_4230: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4649" - - name: "mitochondrial ethanol O-acetyltransferase" - - metabolites: !!omap - - s_0376: -1 - - s_0532: 1 - - s_0682: -1 - - s_4231: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR015C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4649" + - name: "mitochondrial ethanol O-acetyltransferase" + - metabolites: !!omap + - s_0376: -1 + - s_0532: 1 + - s_0682: -1 + - s_4231: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR015C" + - eccodes: "2.3.1.268" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.268" - kegg.reaction: "R11957" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4650" - - name: "ethyl acetate transport, mitochondrial" - - metabolites: !!omap - - s_0685: 1 - - s_4231: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4651" - - name: "pyruvate decarboxylase (aldedyde-forming)" - - metabolites: !!omap - - s_0178: -1 - - s_0456: 1 - - s_0794: -1 - - s_4232: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4650" + - name: "ethyl acetate transport, mitochondrial" + - metabolites: !!omap + - s_0685: 1 + - s_4231: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4651" + - name: "pyruvate decarboxylase (aldedyde-forming)" + - metabolites: !!omap + - s_0178: -1 + - s_0456: 1 + - s_0794: -1 + - s_4232: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" + - eccodes: "4.1.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.1" - kegg.reaction: "R00636" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4652" - - name: "aldehyde dehydrogenase (1-propanol, NAD)" - - metabolites: !!omap - - s_0794: -1 - - s_1198: 1 - - s_1203: -1 - - s_4232: -1 - - s_4233: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.1" - - "1.1.1.284" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" + - confidence_score: 2 + - !!omap + - id: "r_4652" + - name: "aldehyde dehydrogenase (1-propanol, NAD)" + - metabolites: !!omap + - s_0794: -1 + - s_1198: 1 + - s_1203: -1 + - s_4232: -1 + - s_4233: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" + - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R00754" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4653" - - name: "aldehyde dehydrogenase (1-propanol, NAD)" - - metabolites: !!omap - - s_0799: -1 - - s_1200: 1 - - s_1205: -1 - - s_4234: -1 - - s_4235: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL256W or YMR083W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4653" + - name: "aldehyde dehydrogenase (1-propanol, NAD)" + - metabolites: !!omap + - s_0799: -1 + - s_1200: 1 + - s_1205: -1 + - s_4234: -1 + - s_4235: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL256W or YMR083W" + - eccodes: "1.1.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.1" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4654" - - name: "aldehyde dehydrogenase (1-propanol, NADP)" - - metabolites: !!omap - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_4232: -1 - - s_4233: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.2" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4655" - - name: "1-propyl alcohol transport, mitochondrial" - - metabolites: !!omap - - s_4233: 1 - - s_4235: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4656" - - name: "propanal transport, cytosol" - - metabolites: !!omap - - s_4232: -1 - - s_4236: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4657" - - name: "1-propyl alcohol transport, cytosol" - - metabolites: !!omap - - s_4233: -1 - - s_4237: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4658" - - name: "propanal exchange" - - metabolites: !!omap - - s_4236: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4654" + - name: "aldehyde dehydrogenase (1-propanol, NADP)" + - metabolites: !!omap + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_4232: -1 + - s_4233: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" + - eccodes: "1.1.1.-; 1.1.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.2" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4655" + - name: "1-propyl alcohol transport, mitochondrial" + - metabolites: !!omap + - s_4233: 1 + - s_4235: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4656" + - name: "propanal transport, cytosol" + - metabolites: !!omap + - s_4232: -1 + - s_4236: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4657" + - name: "1-propyl alcohol transport, cytosol" + - metabolites: !!omap + - s_4233: -1 + - s_4237: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4658" + - name: "propanal exchange" + - metabolites: !!omap + - s_4236: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4659" - - name: "propanol exchange" - - metabolites: !!omap - - s_4237: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4659" + - name: "propanol exchange" + - metabolites: !!omap + - s_4237: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4660" - - name: "2-oxo acid decarboxylase" - - metabolites: !!omap - - s_0294: -1 - - s_0456: 1 - - s_0794: -1 - - s_4238: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YHR137W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4660" + - name: "2-oxo acid decarboxylase" + - metabolites: !!omap + - s_0294: -1 + - s_0456: 1 + - s_0794: -1 + - s_4238: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YHR137W" + - eccodes: "4.1.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.1" - kegg.reaction: "R00636" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4661" - - name: "aldehyde dehydrogenase (methionol, NAD)" - - metabolites: !!omap - - s_0794: -1 - - s_1198: 1 - - s_1203: -1 - - s_4238: -1 - - s_4239: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.1" - - "1.1.1.284" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" + - confidence_score: 2 + - !!omap + - id: "r_4661" + - name: "aldehyde dehydrogenase (methionol, NAD)" + - metabolites: !!omap + - s_0794: -1 + - s_1198: 1 + - s_1203: -1 + - s_4238: -1 + - s_4239: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" + - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" - kegg.reaction: "R00754" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4662" - - name: "aldehyde dehydrogenase (methionol, NAD)" - - metabolites: !!omap - - s_0799: -1 - - s_1200: 1 - - s_1205: -1 - - s_4240: -1 - - s_4241: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL256W or YMR083W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4662" + - name: "aldehyde dehydrogenase (methionol, NAD)" + - metabolites: !!omap + - s_0799: -1 + - s_1200: 1 + - s_1205: -1 + - s_4240: -1 + - s_4241: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL256W or YMR083W" + - eccodes: "1.1.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.1" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4663" - - name: "aldehyde dehydrogenase (methionol, NADP)" - - metabolites: !!omap - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_4238: -1 - - s_4239: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.2" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4664" - - name: "methionol transport, mitochondrial" - - metabolites: !!omap - - s_4239: 1 - - s_4241: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4665" - - name: "methional transport, cytosol" - - metabolites: !!omap - - s_4238: -1 - - s_4242: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4666" - - name: "methionol transport, cytosol" - - metabolites: !!omap - - s_4239: -1 - - s_4243: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4667" - - name: "methional exchange" - - metabolites: !!omap - - s_4242: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4663" + - name: "aldehyde dehydrogenase (methionol, NADP)" + - metabolites: !!omap + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_4238: -1 + - s_4239: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" + - eccodes: "1.1.1.-; 1.1.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.2" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4664" + - name: "methionol transport, mitochondrial" + - metabolites: !!omap + - s_4239: 1 + - s_4241: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4665" + - name: "methional transport, cytosol" + - metabolites: !!omap + - s_4238: -1 + - s_4242: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4666" + - name: "methionol transport, cytosol" + - metabolites: !!omap + - s_4239: -1 + - s_4243: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4667" + - name: "methional exchange" + - metabolites: !!omap + - s_4242: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4668" - - name: "methionol exchange" - - metabolites: !!omap - - s_4243: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4668" + - name: "methionol exchange" + - metabolites: !!omap + - s_4243: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4669" - - name: "pyruvate decarboxylase (hydroxy-phenyl)" - - metabolites: !!omap - - s_0204: -1 - - s_0456: 1 - - s_0794: -1 - - s_4244: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4669" + - name: "pyruvate decarboxylase (hydroxy-phenyl)" + - metabolites: !!omap + - s_0204: -1 + - s_0456: 1 + - s_0794: -1 + - s_4244: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" + - eccodes: "4.1.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "4.1.1.1" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4670" - - name: "aldehyde dehydrogenase (tyrosol, NAD)" - - metabolites: !!omap - - s_0794: -1 - - s_1198: 1 - - s_1203: -1 - - s_4244: -1 - - s_4245: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.1" - - "1.1.1.284" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4671" - - name: "aldehyde dehydrogenase (tyrosol, NAD)" - - metabolites: !!omap - - s_0799: -1 - - s_1200: 1 - - s_1205: -1 - - s_4246: -1 - - s_4247: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGL256W or YMR083W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4670" + - name: "aldehyde dehydrogenase (tyrosol, NAD)" + - metabolites: !!omap + - s_0794: -1 + - s_1198: 1 + - s_1203: -1 + - s_4244: -1 + - s_4245: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" + - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4671" + - name: "aldehyde dehydrogenase (tyrosol, NAD)" + - metabolites: !!omap + - s_0799: -1 + - s_1200: 1 + - s_1205: -1 + - s_4246: -1 + - s_4247: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGL256W or YMR083W" + - eccodes: "1.1.1.1" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.1.1.1" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4672" - - name: "aldehyde dehydrogenase (tyrosol, NADP)" - - metabolites: !!omap - - s_0794: -1 - - s_1207: 1 - - s_1212: -1 - - s_4244: -1 - - s_4245: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - - annotation: !!omap - - ec-code: - - "1.1.1.-" - - "1.1.1.2" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4673" - - name: "tyrosol transport, mitochondrial" - - metabolites: !!omap - - s_4245: 1 - - s_4247: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4674" - - name: "(4-hydroxyphenyl)acetaldehyde transport, cytosol" - - metabolites: !!omap - - s_4244: -1 - - s_4248: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4675" - - name: "tyrosol transport, cytosol" - - metabolites: !!omap - - s_4245: -1 - - s_4249: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4676" - - name: "(4-hydroxyphenyl)acetaldehyde exchange" - - metabolites: !!omap - - s_4248: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4672" + - name: "aldehyde dehydrogenase (tyrosol, NADP)" + - metabolites: !!omap + - s_0794: -1 + - s_1207: 1 + - s_1212: -1 + - s_4244: -1 + - s_4245: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" + - eccodes: "1.1.1.-; 1.1.1.2" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "1.1.1.-; 1.1.1.2" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4673" + - name: "tyrosol transport, mitochondrial" + - metabolites: !!omap + - s_4245: 1 + - s_4247: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4674" + - name: "(4-hydroxyphenyl)acetaldehyde transport, cytosol" + - metabolites: !!omap + - s_4244: -1 + - s_4248: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4675" + - name: "tyrosol transport, cytosol" + - metabolites: !!omap + - s_4245: -1 + - s_4249: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4676" + - name: "(4-hydroxyphenyl)acetaldehyde exchange" + - metabolites: !!omap + - s_4248: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4677" - - name: "tyrosol exchange" - - metabolites: !!omap - - s_4249: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4677" + - name: "tyrosol exchange" + - metabolites: !!omap + - s_4249: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4678" - - name: "aldehyde dehydrogenase" - - metabolites: !!omap - - s_0794: 1 - - s_0803: -1 - - s_1198: -1 - - s_1203: 1 - - s_4232: -1 - - s_4250: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YMR170C or YMR169C or YOR374W" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4678" + - name: "aldehyde dehydrogenase" + - metabolites: !!omap + - s_0794: 1 + - s_0803: -1 + - s_1198: -1 + - s_1203: 1 + - s_4232: -1 + - s_4250: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YMR170C or YMR169C or YOR374W" + - eccodes: "1.2.1.5" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "1.2.1.5" - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4679" - - name: "short-chain-fatty-acid-CoA ligase (propionate)" - - metabolites: !!omap - - s_0426: 1 - - s_0439: -1 - - s_0534: -1 - - s_0638: 1 - - s_4251: -1 - - s_4252: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YOR317W or YER015W or YIL009W or YMR246W" - - annotation: !!omap + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4679" + - name: "short-chain-fatty-acid-CoA ligase (propionate)" + - metabolites: !!omap + - s_0426: 1 + - s_0439: -1 + - s_0534: -1 + - s_0638: 1 + - s_4251: -1 + - s_4252: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YOR317W or YER015W or YIL009W or YMR246W" + - eccodes: "6.2.1.3" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "6.2.1.3" - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4680" - - name: "alcohol acyltransferase (propionyl-CoA)" - - metabolites: !!omap - - s_0532: 1 - - s_0682: -1 - - s_1382: -1 - - s_4253: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "YBR177C or YPL095C" - - annotation: !!omap + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - sbo: "SBO:0000176" + - confidence_score: 2 + - !!omap + - id: "r_4680" + - name: "alcohol acyltransferase (propionyl-CoA)" + - metabolites: !!omap + - s_0532: 1 + - s_0682: -1 + - s_1382: -1 + - s_4253: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "YBR177C or YPL095C" + - eccodes: "2.3.1.84" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4681" - - name: "propionyl-CoA transport, mitochondrial" - - metabolites: !!omap - - s_1382: 1 - - s_4252: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4682" - - name: "butyryl-CoA transport, mitochondrial" - - metabolites: !!omap - - s_2884: -1 - - s_4215: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4683" - - name: "hexanoyl-CoA transport, mitochondrial" - - metabolites: !!omap - - s_2885: -1 - - s_4211: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4684" - - name: "octanoyl-CoA transport, mitochondrial" - - metabolites: !!omap - - s_1258: -1 - - s_4213: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4685" - - name: "decanoyl-CoA transport, mitochondrial" - - metabolites: !!omap - - s_0605: -1 - - s_4219: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4686" - - name: "propionate transport, cytosol" - - metabolites: !!omap - - s_4250: 1 - - s_4251: -1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4687" - - name: "alcohol acetyltransferase (tyrosol)" - - metabolites: !!omap - - s_0373: -1 - - s_0529: 1 - - s_4245: -1 - - s_4254: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4681" + - name: "propionyl-CoA transport, mitochondrial" + - metabolites: !!omap + - s_1382: 1 + - s_4252: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4682" + - name: "butyryl-CoA transport, mitochondrial" + - metabolites: !!omap + - s_2884: -1 + - s_4215: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4683" + - name: "hexanoyl-CoA transport, mitochondrial" + - metabolites: !!omap + - s_2885: -1 + - s_4211: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4684" + - name: "octanoyl-CoA transport, mitochondrial" + - metabolites: !!omap + - s_1258: -1 + - s_4213: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4685" + - name: "decanoyl-CoA transport, mitochondrial" + - metabolites: !!omap + - s_0605: -1 + - s_4219: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4686" + - name: "propionate transport, cytosol" + - metabolites: !!omap + - s_4250: 1 + - s_4251: -1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4687" + - name: "alcohol acetyltransferase (tyrosol)" + - metabolites: !!omap + - s_0373: -1 + - s_0529: 1 + - s_4245: -1 + - s_4254: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" + - eccodes: "2.3.1.84" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4688" - - name: "tyrosyl acetate transport" - - metabolites: !!omap - - s_4254: -1 - - s_4255: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4689" - - name: "tyrosyl acetate exchange" - - metabolites: !!omap - - s_4255: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4688" + - name: "tyrosyl acetate transport" + - metabolites: !!omap + - s_4254: -1 + - s_4255: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4689" + - name: "tyrosyl acetate exchange" + - metabolites: !!omap + - s_4255: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4690" - - name: "alcohol acetyltransferase (methionol)" - - metabolites: !!omap - - s_0373: -1 - - s_0529: 1 - - s_4239: -1 - - s_4256: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4690" + - name: "alcohol acetyltransferase (methionol)" + - metabolites: !!omap + - s_0373: -1 + - s_0529: 1 + - s_4239: -1 + - s_4256: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" + - eccodes: "2.3.1.84" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4691" - - name: "methionyl acetate transport" - - metabolites: !!omap - - s_4256: -1 - - s_4257: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4692" - - name: "methionyl acetate exchange" - - metabolites: !!omap - - s_4257: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4691" + - name: "methionyl acetate transport" + - metabolites: !!omap + - s_4256: -1 + - s_4257: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4692" + - name: "methionyl acetate exchange" + - metabolites: !!omap + - s_4257: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4693" - - name: "alcohol acetyltransferase (propanol)" - - metabolites: !!omap - - s_0373: -1 - - s_0529: 1 - - s_4233: -1 - - s_4258: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4693" + - name: "alcohol acetyltransferase (propanol)" + - metabolites: !!omap + - s_0373: -1 + - s_0529: 1 + - s_4233: -1 + - s_4258: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" + - eccodes: "2.3.1.84" + - references: "" + - subsystem: + - "" + - annotation: !!omap - ec-code: "2.3.1.84" - sbo: "SBO:0000176" - - confidence_score: 2 - - !!omap - - id: "r_4694" - - name: "propyl acetate transport" - - metabolites: !!omap - - s_4258: -1 - - s_4259: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4695" - - name: "propyl acetate exchange" - - metabolites: !!omap - - s_4259: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4694" + - name: "propyl acetate transport" + - metabolites: !!omap + - s_4258: -1 + - s_4259: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4695" + - name: "propyl acetate exchange" + - metabolites: !!omap + - s_4259: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 - - !!omap - - id: "r_4697" - - name: "ethyl propionate transport, mitochondrial" - - metabolites: !!omap - - s_4253: -1 - - s_4261: 1 - - lower_bound: -1000 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4698" - - name: "ethyl propionate transport" - - metabolites: !!omap - - s_4261: -1 - - s_4262: 1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap - - sbo: "SBO:0000655" - - confidence_score: 2 - - !!omap - - id: "r_4699" - - name: "ethyl propionate exchange" - - metabolites: !!omap - - s_4262: -1 - - lower_bound: 0 - - upper_bound: 1000 - - gene_reaction_rule: "" - - annotation: !!omap + - confidence_score: 2 + - !!omap + - id: "r_4697" + - name: "ethyl propionate transport, mitochondrial" + - metabolites: !!omap + - s_4253: -1 + - s_4261: 1 + - lower_bound: -1000 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4698" + - name: "ethyl propionate transport" + - metabolites: !!omap + - s_4261: -1 + - s_4262: 1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 + - !!omap + - id: "r_4699" + - name: "ethyl propionate exchange" + - metabolites: !!omap + - s_4262: -1 + - lower_bound: 0 + - upper_bound: 1000 + - gene_reaction_rule: "" + - eccodes: "" + - references: "" + - subsystem: + - "" + - annotation: !!omap + - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - genes: - - !!omap - - id: "Q0045" - - name: "COX1" - - !!omap - - id: "Q0080" - - name: "ATP8" - - !!omap - - id: "Q0085" - - name: "ATP6" - - !!omap - - id: "Q0105" - - name: "COB" - - !!omap - - id: "Q0130" - - name: "OLI1" - - !!omap - - id: "Q0250" - - name: "COX2" - - !!omap - - id: "Q0275" - - name: "COX3" - - !!omap - - id: "YAL012W" - - name: "CYS3" - - !!omap - - id: "YAL022C" - - name: "FUN26" - - !!omap - - id: "YAL023C" - - name: "PMT2" - - !!omap - - id: "YAL026C" - - name: "DRS2" - - !!omap - - id: "YAL035W" - - name: "FUN12" - - !!omap - - id: "YAL038W" - - name: "CDC19" - - !!omap - - id: "YAL039C" - - name: "CYC3" - - !!omap - - id: "YAL044C" - - name: "GCV3" - - !!omap - - id: "YAL054C" - - name: "ACS1" - - !!omap - - id: "YAL060W" - - name: "BDH1" - - !!omap - - id: "YAL061W" - - name: "BDH2" - - !!omap - - id: "YAL062W" - - name: "GDH3" - - !!omap - - id: "YAR015W" - - name: "ADE1" - - !!omap - - id: "YAR035W" - - name: "YAT1" - - !!omap - - id: "YAR071W" - - name: "PHO11" - - !!omap - - id: "YBL011W" - - name: "SCT1" - - !!omap - - id: "YBL013W" - - name: "FMT1" - - !!omap - - id: "YBL015W" - - name: "ACH1" - - !!omap - - id: "YBL030C" - - name: "PET9" - - !!omap - - id: "YBL033C" - - name: "RIB1" - - !!omap - - id: "YBL039C" - - name: "URA7" - - !!omap - - id: "YBL042C" - - name: "FUI1" - - !!omap - - id: "YBL045C" - - name: "COR1" - - !!omap - - id: "YBL064C" - - name: "PRX1" - - !!omap - - id: "YBL068W" - - name: "PRS4" - - !!omap - - id: "YBL076C" - - name: "ILS1" - - !!omap - - id: "YBL080C" - - name: "PET112" - - !!omap - - id: "YBL091C" - - name: "MAP2" - - !!omap - - id: "YBL098W" - - name: "BNA4" - - !!omap - - id: "YBL099W" - - name: "ATP1" - - !!omap - - id: "YBR001C" - - name: "NTH2" - - !!omap - - id: "YBR002C" - - name: "RER2" - - !!omap - - id: "YBR003W" - - name: "COQ1" - - !!omap - - id: "YBR004C" - - name: "GPI18" - - !!omap - - id: "YBR006W" - - name: "UGA2" - - !!omap - - id: "YBR011C" - - name: "IPP1" - - !!omap - - id: "YBR018C" - - name: "GAL7" - - !!omap - - id: "YBR019C" - - name: "GAL10" - - !!omap - - id: "YBR020W" - - name: "GAL1" - - !!omap - - id: "YBR021W" - - name: "FUR4" - - !!omap - - id: "YBR022W" - - name: "POA1" - - !!omap - - id: "YBR023C" - - name: "CHS3" - - !!omap - - id: "YBR026C" - - name: "ETR1" - - !!omap - - id: "YBR029C" - - name: "CDS1" - - !!omap - - id: "YBR034C" - - name: "HMT1" - - !!omap - - id: "YBR035C" - - name: "PDX3" - - !!omap - - id: "YBR036C" - - name: "CSG2" - - !!omap - - id: "YBR038W" - - name: "CHS2" - - !!omap - - id: "YBR039W" - - name: "ATP3" - - !!omap - - id: "YBR041W" - - name: "FAT1" - - !!omap - - id: "YBR042C" - - name: "CST26" - - !!omap - - id: "YBR046C" - - name: "ZTA1" - - !!omap - - id: "YBR058C-A" - - name: "TSC3" - - !!omap - - id: "YBR068C" - - name: "BAP2" - - !!omap - - id: "YBR069C" - - name: "TAT1" - - !!omap - - id: "YBR070C" - - name: "ALG14" - - !!omap - - id: "YBR084W" - - name: "MIS1" - - !!omap - - id: "YBR085W" - - name: "AAC3" - - !!omap - - id: "YBR092C" - - name: "PHO3" - - !!omap - - id: "YBR093C" - - name: "PHO5" - - !!omap - - id: "YBR097W" - - name: "VPS15" - - !!omap - - id: "YBR110W" - - name: "ALG1" - - !!omap - - id: "YBR111C" - - name: "YSA1" - - !!omap - - id: "YBR115C" - - name: "LYS2" - - !!omap - - id: "YBR117C" - - name: "TKL2" - - !!omap - - id: "YBR121C" - - name: "GRS1" - - !!omap - - id: "YBR126C" - - name: "TPS1" - - !!omap - - id: "YBR127C" - - name: "VMA2" - - !!omap - - id: "YBR132C" - - name: "AGP2" - - !!omap - - id: "YBR145W" - - name: "ADH5" - - !!omap - - id: "YBR147W" - - name: "RTC2" - - !!omap - - id: "YBR149W" - - name: "ARA1" - - !!omap - - id: "YBR153W" - - name: "RIB7" - - !!omap - - id: "YBR159W" - - name: "IFA38" - - !!omap - - id: "YBR161W" - - name: "CSH1" - - !!omap - - id: "YBR166C" - - name: "TYR1" - - !!omap - - id: "YBR176W" - - name: "ECM31" - - !!omap - - id: "YBR177C" - - name: "EHT1" - - !!omap - - id: "YBR180W" - - name: "DTR1" - - !!omap - - id: "YBR183W" - - name: "YPC1" - - !!omap - - id: "YBR192W" - - name: "RIM2" - - !!omap - - id: "YBR196C" - - name: "PGI1" - - !!omap - - id: "YBR199W" - - name: "KTR4" - - !!omap - - id: "YBR204C" - - name: "LDH1" - - !!omap - - id: "YBR205W" - - name: "KTR3" - - !!omap - - id: "YBR208C" - - name: "DUR1,2" - - !!omap - - id: "YBR213W" - - name: "MET8" - - !!omap - - id: "YBR218C" - - name: "PYC2" - - !!omap - - id: "YBR221C" - - name: "PDB1" - - !!omap - - id: "YBR222C" - - name: "PCS60" - - !!omap - - id: "YBR229C" - - name: "ROT2" - - !!omap - - id: "YBR235W" - - name: "VHC1" - - !!omap - - id: "YBR241C" - - name: "YBR241C" - - !!omap - - id: "YBR243C" - - name: "ALG7" - - !!omap - - id: "YBR244W" - - name: "GPX2" - - !!omap - - id: "YBR248C" - - name: "HIS7" - - !!omap - - id: "YBR249C" - - name: "ARO4" - - !!omap - - id: "YBR252W" - - name: "DUT1" - - !!omap - - id: "YBR256C" - - name: "RIB5" - - !!omap - - id: "YBR263W" - - name: "SHM1" - - !!omap - - id: "YBR265W" - - name: "TSC10" - - !!omap - - id: "YBR281C" - - name: "DUG2" - - !!omap - - id: "YBR291C" - - name: "CTP1" - - !!omap - - id: "YBR293W" - - name: "VBA2" - - !!omap - - id: "YBR294W" - - name: "SUL1" - - !!omap - - id: "YBR295W" - - name: "PCA1" - - !!omap - - id: "YBR296C" - - name: "PHO89" - - !!omap - - id: "YBR298C" - - name: "MAL31" - - !!omap - - id: "YBR299W" - - name: "MAL32" - - !!omap - - id: "YCL004W" - - name: "PGS1" - - !!omap - - id: "YCL005W-A" - - name: "VMA9" - - !!omap - - id: "YCL009C" - - name: "ILV6" - - !!omap - - id: "YCL017C" - - name: "NFS1" - - !!omap - - id: "YCL018W" - - name: "LEU2" - - !!omap - - id: "YCL025C" - - name: "AGP1" - - !!omap - - id: "YCL030C" - - name: "HIS4" - - !!omap - - id: "YCL035C" - - name: "GRX1" - - !!omap - - id: "YCL038C" - - name: "ATG22" - - !!omap - - id: "YCL040W" - - name: "GLK1" - - !!omap - - id: "YCL047C" - - name: "POF1" - - !!omap - - id: "YCL050C" - - name: "APA1" - - !!omap - - id: "YCL052C" - - name: "PBN1" - - !!omap - - id: "YCL064C" - - name: "CHA1" - - !!omap - - id: "YCL069W" - - name: "VBA3" - - !!omap - - id: "YCR005C" - - name: "CIT2" - - !!omap - - id: "YCR010C" - - name: "ADY2" - - !!omap - - id: "YCR011C" - - name: "ADP1" - - !!omap - - id: "YCR012W" - - name: "PGK1" - - !!omap - - id: "YCR024C" - - name: "SLM5" - - !!omap - - id: "YCR024C-A" - - name: "PMP1" - - !!omap - - id: "YCR028C" - - name: "FEN2" - - !!omap - - id: "YCR034W" - - name: "ELO2" - - !!omap - - id: "YCR036W" - - name: "RBK1" - - !!omap - - id: "YCR037C" - - name: "PHO87" - - !!omap - - id: "YCR048W" - - name: "ARE1" - - !!omap - - id: "YCR053W" - - name: "THR4" - - !!omap - - id: "YCR068W" - - name: "ATG15" - - !!omap - - id: "YCR075C" - - name: "ERS1" - - !!omap - - id: "YCR083W" - - name: "TRX3" - - !!omap - - id: "YCR098C" - - name: "GIT1" - - !!omap - - id: "YCR105W" - - name: "ADH7" - - !!omap - - id: "YCR107W" - - name: "AAD3" - - !!omap - - id: "YDL004W" - - name: "ATP16" - - !!omap - - id: "YDL015C" - - name: "TSC13" - - !!omap - - id: "YDL022W" - - name: "GPD1" - - !!omap - - id: "YDL024C" - - name: "DIA3" - - !!omap - - id: "YDL040C" - - name: "NAT1" - - !!omap - - id: "YDL042C" - - name: "SIR2" - - !!omap - - id: "YDL045C" - - name: "FAD1" - - !!omap - - id: "YDL052C" - - name: "SLC1" - - !!omap - - id: "YDL055C" - - name: "PSA1" - - !!omap - - id: "YDL066W" - - name: "IDP1" - - !!omap - - id: "YDL067C" - - name: "COX9" - - !!omap - - id: "YDL078C" - - name: "MDH3" - - !!omap - - id: "YDL080C" - - name: "THI3" - - !!omap - - id: "YDL085W" - - name: "NDE2" - - !!omap - - id: "YDL090C" - - name: "RAM1" - - !!omap - - id: "YDL093W" - - name: "PMT5" - - !!omap - - id: "YDL095W" - - name: "PMT1" - - !!omap - - id: "YDL100C" - - name: "GET3" - - !!omap - - id: "YDL103C" - - name: "QRI1" - - !!omap - - id: "YDL120W" - - name: "YFH1" - - !!omap - - id: "YDL131W" - - name: "LYS21" - - !!omap - - id: "YDL141W" - - name: "BPL1" - - !!omap - - id: "YDL142C" - - name: "CRD1" - - !!omap - - id: "YDL166C" - - name: "FAP7" - - !!omap - - id: "YDL168W" - - name: "SFA1" - - !!omap - - id: "YDL171C" - - name: "GLT1" - - !!omap - - id: "YDL174C" - - name: "DLD1" - - !!omap - - id: "YDL178W" - - name: "DLD2" - - !!omap - - id: "YDL182W" - - name: "LYS20" - - !!omap - - id: "YDL185W" - - name: "VMA1" - - !!omap - - id: "YDL198C" - - name: "GGC1" - - !!omap - - id: "YDL205C" - - name: "HEM3" - - !!omap - - id: "YDL210W" - - name: "UGA4" - - !!omap - - id: "YDL215C" - - name: "GDH2" - - !!omap - - id: "YDL219W" - - name: "DTD1" - - !!omap - - id: "YDL236W" - - name: "PHO13" - - !!omap - - id: "YDL238C" - - name: "GUD1" - - !!omap - - id: "YDL243C" - - name: "AAD4" - - !!omap - - id: "YDL245C" - - name: "HXT15" - - !!omap - - id: "YDL246C" - - name: "SOR2" - - !!omap - - id: "YDL247W" - - name: "MPH2" - - !!omap - - id: "YDR001C" - - name: "NTH1" - - !!omap - - id: "YDR007W" - - name: "TRP1" - - !!omap - - id: "YDR009W" - - name: "GAL3" - - !!omap - - id: "YDR017C" - - name: "KCS1" - - !!omap - - id: "YDR019C" - - name: "GCV1" - - !!omap - - id: "YDR020C" - - name: "DAS2" - - !!omap - - id: "YDR023W" - - name: "SES1" - - !!omap - - id: "YDR035W" - - name: "ARO3" - - !!omap - - id: "YDR036C" - - name: "EHD3" - - !!omap - - id: "YDR037W" - - name: "KRS1" - - !!omap - - id: "YDR038C" - - name: "ENA5" - - !!omap - - id: "YDR039C" - - name: "ENA2" - - !!omap - - id: "YDR040C" - - name: "ENA1" - - !!omap - - id: "YDR044W" - - name: "HEM13" - - !!omap - - id: "YDR046C" - - name: "BAP3" - - !!omap - - id: "YDR047W" - - name: "HEM12" - - !!omap - - id: "YDR050C" - - name: "TPI1" - - !!omap - - id: "YDR051C" - - name: "DET1" - - !!omap - - id: "YDR058C" - - name: "TGL2" - - !!omap - - id: "YDR062W" - - name: "LCB2" - - !!omap - - id: "YDR071C" - - name: "PAA1" - - !!omap - - id: "YDR072C" - - name: "IPT1" - - !!omap - - id: "YDR074W" - - name: "TPS2" - - !!omap - - id: "YDR093W" - - name: "DNF2" - - !!omap - - id: "YDR098C" - - name: "GRX3" - - !!omap - - id: "YDR105C" - - name: "TMS1" - - !!omap - - id: "YDR111C" - - name: "ALT2" - - !!omap - - id: "YDR127W" - - name: "ARO1" - - !!omap - - id: "YDR135C" - - name: "YCF1" - - !!omap - - id: "YDR147W" - - name: "EKI1" - - !!omap - - id: "YDR148C" - - name: "KGD2" - - !!omap - - id: "YDR158W" - - name: "HOM2" - - !!omap - - id: "YDR173C" - - name: "ARG82" - - !!omap - - id: "YDR178W" - - name: "SDH4" - - !!omap - - id: "YDR191W" - - name: "HST4" - - !!omap - - id: "YDR196C" - - name: "CAB5" - - !!omap - - id: "YDR204W" - - name: "COQ4" - - !!omap - - id: "YDR208W" - - name: "MSS4" - - !!omap - - id: "YDR226W" - - name: "ADK1" - - !!omap - - id: "YDR231C" - - name: "COX20" - - !!omap - - id: "YDR232W" - - name: "HEM1" - - !!omap - - id: "YDR234W" - - name: "LYS4" - - !!omap - - id: "YDR236C" - - name: "FMN1" - - !!omap - - id: "YDR242W" - - name: "AMD2" - - !!omap - - id: "YDR248C" - - name: "YDR248C" - - !!omap - - id: "YDR256C" - - name: "CTA1" - - !!omap - - id: "YDR261C" - - name: "EXG2" - - !!omap - - id: "YDR268W" - - name: "MSW1" - - !!omap - - id: "YDR270W" - - name: "CCC2" - - !!omap - - id: "YDR272W" - - name: "GLO2" - - !!omap - - id: "YDR284C" - - name: "DPP1" - - !!omap - - id: "YDR287W" - - name: "INM2" - - !!omap - - id: "YDR294C" - - name: "DPL1" - - !!omap - - id: "YDR297W" - - name: "SUR2" - - !!omap - - id: "YDR298C" - - name: "ATP5" - - !!omap - - id: "YDR300C" - - name: "PRO1" - - !!omap - - id: "YDR302W" - - name: "GPI11" - - !!omap - - id: "YDR305C" - - name: "HNT2" - - !!omap - - id: "YDR315C" - - name: "IPK1" - - !!omap - - id: "YDR321W" - - name: "ASP1" - - !!omap - - id: "YDR322C-A" - - name: "TIM11" - - !!omap - - id: "YDR341C" - - name: "YDR341C" - - !!omap - - id: "YDR342C" - - name: "HXT7" - - !!omap - - id: "YDR343C" - - name: "HXT6" - - !!omap - - id: "YDR345C" - - name: "HXT3" - - !!omap - - id: "YDR352W" - - name: "YPQ2" - - !!omap - - id: "YDR353W" - - name: "TRR1" - - !!omap - - id: "YDR354W" - - name: "TRP4" - - !!omap - - id: "YDR367W" - - name: "KEI1" - - !!omap - - id: "YDR368W" - - name: "YPR1" - - !!omap - - id: "YDR371W" - - name: "CTS2" - - !!omap - - id: "YDR373W" - - name: "FRQ1" - - !!omap - - id: "YDR376W" - - name: "ARH1" - - !!omap - - id: "YDR377W" - - name: "ATP17" - - !!omap - - id: "YDR380W" - - name: "ARO10" - - !!omap - - id: "YDR384C" - - name: "ATO3" - - !!omap - - id: "YDR387C" - - name: "CIN10" - - !!omap - - id: "YDR399W" - - name: "HPT1" - - !!omap - - id: "YDR400W" - - name: "URH1" - - !!omap - - id: "YDR402C" - - name: "DIT2" - - !!omap - - id: "YDR403W" - - name: "DIT1" - - !!omap - - id: "YDR408C" - - name: "ADE8" - - !!omap - - id: "YDR410C" - - name: "STE14" - - !!omap - - id: "YDR428C" - - name: "BNA7" - - !!omap - - id: "YDR437W" - - name: "GPI19" - - !!omap - - id: "YDR440W" - - name: "DOT1" - - !!omap - - id: "YDR441C" - - name: "APT2" - - !!omap - - id: "YDR452W" - - name: "PPN1" - - !!omap - - id: "YDR453C" - - name: "TSA2" - - !!omap - - id: "YDR454C" - - name: "GUK1" - - !!omap - - id: "YDR456W" - - name: "NHX1" - - !!omap - - id: "YDR481C" - - name: "PHO8" - - !!omap - - id: "YDR483W" - - name: "KRE2" - - !!omap - - id: "YDR487C" - - name: "RIB3" - - !!omap - - id: "YDR497C" - - name: "ITR1" - - !!omap - - id: "YDR502C" - - name: "SAM2" - - !!omap - - id: "YDR503C" - - name: "LPP1" - - !!omap - - id: "YDR508C" - - name: "GNP1" - - !!omap - - id: "YDR513W" - - name: "GRX2" - - !!omap - - id: "YDR516C" - - name: "EMI2" - - !!omap - - id: "YDR529C" - - name: "QCR7" - - !!omap - - id: "YDR530C" - - name: "APA2" - - !!omap - - id: "YDR531W" - - name: "CAB1" - - !!omap - - id: "YDR533C" - - name: "HSP31" - - !!omap - - id: "YDR536W" - - name: "STL1" - - !!omap - - id: "YDR538W" - - name: "PAD1" - - !!omap - - id: "YDR539W" - - name: "FDC1" - - !!omap - - id: "YEL004W" - - name: "YEA4" - - !!omap - - id: "YEL006W" - - name: "YEA6" - - !!omap - - id: "YEL017C-A" - - name: "PMP2" - - !!omap - - id: "YEL021W" - - name: "URA3" - - !!omap - - id: "YEL024W" - - name: "RIP1" - - !!omap - - id: "YEL027W" - - name: "VMA3" - - !!omap - - id: "YEL029C" - - name: "BUD16" - - !!omap - - id: "YEL031W" - - name: "SPF1" - - !!omap - - id: "YEL038W" - - name: "UTR4" - - !!omap - - id: "YEL039C" - - name: "CYC7" - - !!omap - - id: "YEL041W" - - name: "YEF1" - - !!omap - - id: "YEL042W" - - name: "GDA1" - - !!omap - - id: "YEL046C" - - name: "GLY1" - - !!omap - - id: "YEL047C" - - name: "FRD1" - - !!omap - - id: "YEL051W" - - name: "VMA8" - - !!omap - - id: "YEL058W" - - name: "PCM1" - - !!omap - - id: "YEL063C" - - name: "CAN1" - - !!omap - - id: "YEL066W" - - name: "HPA3" - - !!omap - - id: "YEL069C" - - name: "HXT13" - - !!omap - - id: "YEL070W" - - name: "DSF1" - - !!omap - - id: "YEL071W" - - name: "DLD3" - - !!omap - - id: "YER003C" - - name: "PMI40" - - !!omap - - id: "YER005W" - - name: "YND1" - - !!omap - - id: "YER010C" - - name: "YER010C" - - !!omap - - id: "YER014W" - - name: "HEM14" - - !!omap - - id: "YER015W" - - name: "FAA2" - - !!omap - - id: "YER019W" - - name: "ISC1" - - !!omap - - id: "YER023W" - - name: "PRO3" - - !!omap - - id: "YER024W" - - name: "YAT2" - - !!omap - - id: "YER026C" - - name: "CHO1" - - !!omap - - id: "YER037W" - - name: "PHM8" - - !!omap - - id: "YER042W" - - name: "MXR1" - - !!omap - - id: "YER043C" - - name: "SAH1" - - !!omap - - id: "YER052C" - - name: "HOM3" - - !!omap - - id: "YER053C" - - name: "PIC2" - - !!omap - - id: "YER055C" - - name: "HIS1" - - !!omap - - id: "YER056C" - - name: "FCY2" - - !!omap - - id: "YER060W" - - name: "FCY21" - - !!omap - - id: "YER060W-A" - - name: "FCY22" - - !!omap - - id: "YER061C" - - name: "CEM1" - - !!omap - - id: "YER062C" - - name: "GPP2" - - !!omap - - id: "YER065C" - - name: "ICL1" - - !!omap - - id: "YER069W" - - name: "ARG5,6" - - !!omap - - id: "YER070W" - - name: "RNR1" - - !!omap - - id: "YER073W" - - name: "ALD5" - - !!omap - - id: "YER081W" - - name: "SER3" - - !!omap - - id: "YER086W" - - name: "ILV1" - - !!omap - - id: "YER087W" - - name: "AIM10" - - !!omap - - id: "YER090W" - - name: "TRP2" - - !!omap - - id: "YER091C" - - name: "MET6" - - !!omap - - id: "YER099C" - - name: "PRS2" - - !!omap - - id: "YER119C" - - name: "AVT6" - - !!omap - - id: "YER141W" - - name: "COX15" - - !!omap - - id: "YER152C" - - name: "YER152C" - - !!omap - - id: "YER163C" - - name: "GCG1" - - !!omap - - id: "YER170W" - - name: "ADK2" - - !!omap - - id: "YER174C" - - name: "GRX4" - - !!omap - - id: "YER175C" - - name: "TMT1" - - !!omap - - id: "YER178W" - - name: "PDA1" - - !!omap - - id: "YER183C" - - name: "FAU1" - - !!omap - - id: "YFL001W" - - name: "DEG1" - - !!omap - - id: "YFL011W" - - name: "HXT10" - - !!omap - - id: "YFL017C" - - name: "GNA1" - - !!omap - - id: "YFL018C" - - name: "LPD1" - - !!omap - - id: "YFL022C" - - name: "FRS2" - - !!omap - - id: "YFL030W" - - name: "AGX1" - - !!omap - - id: "YFL045C" - - name: "SEC53" - - !!omap - - id: "YFL053W" - - name: "DAK2" - - !!omap - - id: "YFL054C" - - name: "AQY3" - - !!omap - - id: "YFL055W" - - name: "AGP3" - - !!omap - - id: "YFL058W" - - name: "THI5" - - !!omap - - id: "YFL059W" - - name: "SNZ3" - - !!omap - - id: "YFL060C" - - name: "SNO3" - - !!omap - - id: "YFL061W" - - name: "DDI2" - - !!omap - - id: "YFR015C" - - name: "GSY1" - - !!omap - - id: "YFR019W" - - name: "FAB1" - - !!omap - - id: "YFR025C" - - name: "HIS2" - - !!omap - - id: "YFR030W" - - name: "MET10" - - !!omap - - id: "YFR033C" - - name: "QCR6" - - !!omap - - id: "YFR044C" - - name: "DUG1" - - !!omap - - id: "YFR047C" - - name: "BNA6" - - !!omap - - id: "YFR053C" - - name: "HXK1" - - !!omap - - id: "YFR055W" - - name: "IRC7" - - !!omap - - id: "YGL001C" - - name: "ERG26" - - !!omap - - id: "YGL006W" - - name: "PMC1" - - !!omap - - id: "YGL008C" - - name: "PMA1" - - !!omap - - id: "YGL009C" - - name: "LEU1" - - !!omap - - id: "YGL012W" - - name: "ERG4" - - !!omap - - id: "YGL017W" - - name: "ATE1" - - !!omap - - id: "YGL022W" - - name: "STT3" - - !!omap - - id: "YGL026C" - - name: "TRP5" - - !!omap - - id: "YGL027C" - - name: "CWH41" - - !!omap - - id: "YGL037C" - - name: "PNC1" - - !!omap - - id: "YGL038C" - - name: "OCH1" - - !!omap - - id: "YGL040C" - - name: "HEM2" - - !!omap - - id: "YGL047W" - - name: "ALG13" - - !!omap - - id: "YGL055W" - - name: "OLE1" - - !!omap - - id: "YGL062W" - - name: "PYC1" - - !!omap - - id: "YGL063W" - - name: "PUS2" - - !!omap - - id: "YGL065C" - - name: "ALG2" - - !!omap - - id: "YGL067W" - - name: "NPY1" - - !!omap - - id: "YGL077C" - - name: "HNM1" - - !!omap - - id: "YGL080W" - - name: "MPC1" - - !!omap - - id: "YGL084C" - - name: "GUP1" - - !!omap - - id: "YGL104C" - - name: "VPS73" - - !!omap - - id: "YGL119W" - - name: "COQ8" - - !!omap - - id: "YGL125W" - - name: "MET13" - - !!omap - - id: "YGL142C" - - name: "GPI10" - - !!omap - - id: "YGL148W" - - name: "ARO2" - - !!omap - - id: "YGL154C" - - name: "LYS5" - - !!omap - - id: "YGL156W" - - name: "AMS1" - - !!omap - - id: "YGL167C" - - name: "PMR1" - - !!omap - - id: "YGL169W" - - name: "SUA5" - - !!omap - - id: "YGL184C" - - name: "STR3" - - !!omap - - id: "YGL186C" - - name: "TPN1" - - !!omap - - id: "YGL187C" - - name: "COX4" - - !!omap - - id: "YGL191W" - - name: "COX13" - - !!omap - - id: "YGL196W" - - name: "DSD1" - - !!omap - - id: "YGL202W" - - name: "ARO8" - - !!omap - - id: "YGL205W" - - name: "POX1" - - !!omap - - id: "YGL224C" - - name: "SDT1" - - !!omap - - id: "YGL225W" - - name: "VRG4" - - !!omap - - id: "YGL234W" - - name: "ADE5,7" - - !!omap - - id: "YGL245W" - - name: "GUS1" - - !!omap - - id: "YGL248W" - - name: "PDE1" - - !!omap - - id: "YGL253W" - - name: "HXK2" - - !!omap - - id: "YGL255W" - - name: "ZRT1" - - !!omap - - id: "YGL256W" - - name: "ADH4" - - !!omap - - id: "YGR007W" - - name: "ECT1" - - !!omap - - id: "YGR010W" - - name: "NMA2" - - !!omap - - id: "YGR012W" - - name: "MCY1" - - !!omap - - id: "YGR015C" - - name: "EAT1" - - !!omap - - id: "YGR019W" - - name: "UGA1" - - !!omap - - id: "YGR020C" - - name: "VMA7" - - !!omap - - id: "YGR032W" - - name: "GSC2" - - !!omap - - id: "YGR036C" - - name: "CAX4" - - !!omap - - id: "YGR043C" - - name: "NQM1" - - !!omap - - id: "YGR046W" - - name: "TAM41" - - !!omap - - id: "YGR055W" - - name: "MUP1" - - !!omap - - id: "YGR060W" - - name: "ERG25" - - !!omap - - id: "YGR061C" - - name: "ADE6" - - !!omap - - id: "YGR062C" - - name: "COX18" - - !!omap - - id: "YGR065C" - - name: "VHT1" - - !!omap - - id: "YGR087C" - - name: "PDC6" - - !!omap - - id: "YGR088W" - - name: "CTT1" - - !!omap - - id: "YGR094W" - - name: "VAS1" - - !!omap - - id: "YGR096W" - - name: "TPC1" - - !!omap - - id: "YGR110W" - - name: "CLD1" - - !!omap - - id: "YGR121C" - - name: "MEP1" - - !!omap - - id: "YGR124W" - - name: "ASN2" - - !!omap - - id: "YGR138C" - - name: "TPO2" - - !!omap - - id: "YGR143W" - - name: "SKN1" - - !!omap - - id: "YGR144W" - - name: "THI4" - - !!omap - - id: "YGR147C" - - name: "NAT2" - - !!omap - - id: "YGR154C" - - name: "GTO1" - - !!omap - - id: "YGR155W" - - name: "CYS4" - - !!omap - - id: "YGR157W" - - name: "CHO2" - - !!omap - - id: "YGR170W" - - name: "PSD2" - - !!omap - - id: "YGR171C" - - name: "MSM1" - - !!omap - - id: "YGR175C" - - name: "ERG1" - - !!omap - - id: "YGR177C" - - name: "ATF2" - - !!omap - - id: "YGR180C" - - name: "RNR4" - - !!omap - - id: "YGR183C" - - name: "QCR9" - - !!omap - - id: "YGR185C" - - name: "TYS1" - - !!omap - - id: "YGR191W" - - name: "HIP1" - - !!omap - - id: "YGR192C" - - name: "TDH3" - - !!omap - - id: "YGR193C" - - name: "PDX1" - - !!omap - - id: "YGR194C" - - name: "XKS1" - - !!omap - - id: "YGR202C" - - name: "PCT1" - - !!omap - - id: "YGR204W" - - name: "ADE3" - - !!omap - - id: "YGR208W" - - name: "SER2" - - !!omap - - id: "YGR209C" - - name: "TRX2" - - !!omap - - id: "YGR216C" - - name: "GPI1" - - !!omap - - id: "YGR227W" - - name: "DIE2" - - !!omap - - id: "YGR234W" - - name: "YHB1" - - !!omap - - id: "YGR240C" - - name: "PFK1" - - !!omap - - id: "YGR243W" - - name: "MPC3" - - !!omap - - id: "YGR244C" - - name: "LSC2" - - !!omap - - id: "YGR247W" - - name: "CPD1" - - !!omap - - id: "YGR248W" - - name: "SOL4" - - !!omap - - id: "YGR254W" - - name: "ENO1" - - !!omap - - id: "YGR255C" - - name: "COQ6" - - !!omap - - id: "YGR256W" - - name: "GND2" - - !!omap - - id: "YGR260W" - - name: "TNA1" - - !!omap - - id: "YGR264C" - - name: "MES1" - - !!omap - - id: "YGR267C" - - name: "FOL2" - - !!omap - - id: "YGR277C" - - name: "CAB4" - - !!omap - - id: "YGR282C" - - name: "BGL2" - - !!omap - - id: "YGR286C" - - name: "BIO2" - - !!omap - - id: "YGR287C" - - name: "IMA1" - - !!omap - - id: "YGR289C" - - name: "MAL11" - - !!omap - - id: "YGR292W" - - name: "MAL12" - - !!omap - - id: "YHL003C" - - name: "LAG1" - - !!omap - - id: "YHL011C" - - name: "PRS3" - - !!omap - - id: "YHL012W" - - name: "YHL012W" - - !!omap - - id: "YHL016C" - - name: "DUR3" - - !!omap - - id: "YHL018W" - - name: "YHL018W" - - !!omap - - id: "YHL032C" - - name: "GUT1" - - !!omap - - id: "YHL036W" - - name: "MUP3" - - !!omap - - id: "YHR001W-A" - - name: "QCR10" - - !!omap - - id: "YHR002W" - - name: "LEU5" - - !!omap - - id: "YHR007C" - - name: "ERG11" - - !!omap - - id: "YHR008C" - - name: "SOD2" - - !!omap - - id: "YHR011W" - - name: "DIA4" - - !!omap - - id: "YHR013C" - - name: "ARD1" - - !!omap - - id: "YHR018C" - - name: "ARG4" - - !!omap - - id: "YHR019C" - - name: "DED81" - - !!omap - - id: "YHR020W" - - name: "YHR020W" - - !!omap - - id: "YHR025W" - - name: "THR1" - - !!omap - - id: "YHR026W" - - name: "VMA16" - - !!omap - - id: "YHR037W" - - name: "PUT2" - - !!omap - - id: "YHR039C-A" - - name: "VMA10" - - !!omap - - id: "YHR042W" - - name: "NCP1" - - !!omap - - id: "YHR043C" - - name: "DOG2" - - !!omap - - id: "YHR044C" - - name: "DOG1" - - !!omap - - id: "YHR046C" - - name: "INM1" - - !!omap - - id: "YHR051W" - - name: "COX6" - - !!omap - - id: "YHR063C" - - name: "PAN5" - - !!omap - - id: "YHR067W" - - name: "HTD2" - - !!omap - - id: "YHR068W" - - name: "DYS1" - - !!omap - - id: "YHR072W" - - name: "ERG7" - - !!omap - - id: "YHR074W" - - name: "QNS1" - - !!omap - - id: "YHR091C" - - name: "MSR1" - - !!omap - - id: "YHR092C" - - name: "HXT4" - - !!omap - - id: "YHR094C" - - name: "HXT1" - - !!omap - - id: "YHR096C" - - name: "HXT5" - - !!omap - - id: "YHR100C" - - name: "GEP4" - - !!omap - - id: "YHR104W" - - name: "GRE3" - - !!omap - - id: "YHR106W" - - name: "TRR2" - - !!omap - - id: "YHR109W" - - name: "CTM1" - - !!omap - - id: "YHR116W" - - name: "COX23" - - !!omap - - id: "YHR119W" - - name: "SET1" - - !!omap - - id: "YHR123W" - - name: "EPT1" - - !!omap - - id: "YHR128W" - - name: "FUR1" - - !!omap - - id: "YHR137W" - - name: "ARO9" - - !!omap - - id: "YHR144C" - - name: "DCD1" - - !!omap - - id: "YHR162W" - - name: "MPC2" - - !!omap - - id: "YHR163W" - - name: "SOL3" - - !!omap - - id: "YHR174W" - - name: "ENO2" - - !!omap - - id: "YHR183W" - - name: "GND1" - - !!omap - - id: "YHR190W" - - name: "ERG9" - - !!omap - - id: "YHR201C" - - name: "PPX1" - - !!omap - - id: "YHR208W" - - name: "BAT1" - - !!omap - - id: "YHR215W" - - name: "PHO12" - - !!omap - - id: "YHR216W" - - name: "IMD2" - - !!omap - - id: "YIL002C" - - name: "INP51" - - !!omap - - id: "YIL006W" - - name: "YIA6" - - !!omap - - id: "YIL009W" - - name: "FAA3" - - !!omap - - id: "YIL010W" - - name: "DOT5" - - !!omap - - id: "YIL013C" - - name: "PDR11" - - !!omap - - id: "YIL020C" - - name: "HIS6" - - !!omap - - id: "YIL023C" - - name: "YKE4" - - !!omap - - id: "YIL043C" - - name: "CBR1" - - !!omap - - id: "YIL048W" - - name: "NEO1" - - !!omap - - id: "YIL053W" - - name: "GPP1" - - !!omap - - id: "YIL066C" - - name: "RNR3" - - !!omap - - id: "YIL074C" - - name: "SER33" - - !!omap - - id: "YIL078W" - - name: "THS1" - - !!omap - - id: "YIL083C" - - name: "CAB2" - - !!omap - - id: "YIL094C" - - name: "LYS12" - - !!omap - - id: "YIL099W" - - name: "SGA1" - - !!omap - - id: "YIL107C" - - name: "PFK26" - - !!omap - - id: "YIL111W" - - name: "COX5B" - - !!omap - - id: "YIL116W" - - name: "HIS5" - - !!omap - - id: "YIL124W" - - name: "AYR1" - - !!omap - - id: "YIL125W" - - name: "KGD1" - - !!omap - - id: "YIL134W" - - name: "FLX1" - - !!omap - - id: "YIL145C" - - name: "PAN6" - - !!omap - - id: "YIL155C" - - name: "GUT2" - - !!omap - - id: "YIL160C" - - name: "POT1" - - !!omap - - id: "YIL162W" - - name: "SUC2" - - !!omap - - id: "YIL172C" - - name: "IMA3" - - !!omap - - id: "YIR027C" - - name: "DAL1" - - !!omap - - id: "YIR028W" - - name: "DAL4" - - !!omap - - id: "YIR029W" - - name: "DAL2" - - !!omap - - id: "YIR031C" - - name: "DAL7" - - !!omap - - id: "YIR032C" - - name: "DAL3" - - !!omap - - id: "YIR034C" - - name: "LYS1" - - !!omap - - id: "YIR036C" - - name: "IRC24" - - !!omap - - id: "YIR037W" - - name: "HYR1" - - !!omap - - id: "YIR038C" - - name: "GTT1" - - !!omap - - id: "YJL003W" - - name: "COX16" - - !!omap - - id: "YJL005W" - - name: "CYR1" - - !!omap - - id: "YJL026W" - - name: "RNR2" - - !!omap - - id: "YJL045W" - - name: "YJL045W" - - !!omap - - id: "YJL046W" - - name: "AIM22" - - !!omap - - id: "YJL052W" - - name: "TDH1" - - !!omap - - id: "YJL060W" - - name: "BNA3" - - !!omap - - id: "YJL068C" - - name: "YJL068C" - - !!omap - - id: "YJL071W" - - name: "ARG2" - - !!omap - - id: "YJL088W" - - name: "ARG3" - - !!omap - - id: "YJL091C" - - name: "GWT1" - - !!omap - - id: "YJL097W" - - name: "PHS1" - - !!omap - - id: "YJL100W" - - name: "LSB6" - - !!omap - - id: "YJL101C" - - name: "GSH1" - - !!omap - - id: "YJL121C" - - name: "RPE1" - - !!omap - - id: "YJL126W" - - name: "NIT2" - - !!omap - - id: "YJL129C" - - name: "TRK1" - - !!omap - - id: "YJL130C" - - name: "URA2" - - !!omap - - id: "YJL133W" - - name: "MRS3" - - !!omap - - id: "YJL134W" - - name: "LCB3" - - !!omap - - id: "YJL137C" - - name: "GLG2" - - !!omap - - id: "YJL139C" - - name: "YUR1" - - !!omap - - id: "YJL153C" - - name: "INO1" - - !!omap - - id: "YJL155C" - - name: "FBP26" - - !!omap - - id: "YJL166W" - - name: "QCR8" - - !!omap - - id: "YJL167W" - - name: "ERG20" - - !!omap - - id: "YJL168C" - - name: "SET2" - - !!omap - - id: "YJL180C" - - name: "ATP12" - - !!omap - - id: "YJL196C" - - name: "ELO1" - - !!omap - - id: "YJL198W" - - name: "PHO90" - - !!omap - - id: "YJL200C" - - name: "ACO2" - - !!omap - - id: "YJL212C" - - name: "OPT1" - - !!omap - - id: "YJL214W" - - name: "HXT8" - - !!omap - - id: "YJL216C" - - name: "IMA5" - - !!omap - - id: "YJL219W" - - name: "HXT9" - - !!omap - - id: "YJL221C" - - name: "IMA4" - - !!omap - - id: "YJR001W" - - name: "AVT1" - - !!omap - - id: "YJR009C" - - name: "TDH2" - - !!omap - - id: "YJR010W" - - name: "MET3" - - !!omap - - id: "YJR013W" - - name: "GPI14" - - !!omap - - id: "YJR016C" - - name: "ILV3" - - !!omap - - id: "YJR019C" - - name: "TES1" - - !!omap - - id: "YJR024C" - - name: "MDE1" - - !!omap - - id: "YJR025C" - - name: "BNA1" - - !!omap - - id: "YJR040W" - - name: "GEF1" - - !!omap - - id: "YJR048W" - - name: "CYC1" - - !!omap - - id: "YJR049C" - - name: "UTR1" - - !!omap - - id: "YJR051W" - - name: "OSM1" - - !!omap - - id: "YJR057W" - - name: "CDC8" - - !!omap - - id: "YJR069C" - - name: "HAM1" - - !!omap - - id: "YJR073C" - - name: "OPI3" - - !!omap - - id: "YJR077C" - - name: "MIR1" - - !!omap - - id: "YJR078W" - - name: "BNA2" - - !!omap - - id: "YJR095W" - - name: "SFC1" - - !!omap - - id: "YJR103W" - - name: "URA8" - - !!omap - - id: "YJR104C" - - name: "SOD1" - - !!omap - - id: "YJR105W" - - name: "ADO1" - - !!omap - - id: "YJR109C" - - name: "CPA2" - - !!omap - - id: "YJR110W" - - name: "YMR1" - - !!omap - - id: "YJR121W" - - name: "ATP2" - - !!omap - - id: "YJR130C" - - name: "STR2" - - !!omap - - id: "YJR131W" - - name: "MNS1" - - !!omap - - id: "YJR133W" - - name: "XPT1" - - !!omap - - id: "YJR137C" - - name: "MET5" - - !!omap - - id: "YJR139C" - - name: "HOM6" - - !!omap - - id: "YJR143C" - - name: "PMT4" - - !!omap - - id: "YJR148W" - - name: "BAT2" - - !!omap - - id: "YJR149W" - - name: "YJR149W" - - !!omap - - id: "YJR152W" - - name: "DAL5" - - !!omap - - id: "YJR153W" - - name: "PGU1" - - !!omap - - id: "YJR155W" - - name: "AAD10" - - !!omap - - id: "YJR158W" - - name: "HXT16" - - !!omap - - id: "YJR159W" - - name: "SOR1" - - !!omap - - id: "YJR160C" - - name: "MPH3" - - !!omap - - id: "YKL001C" - - name: "MET14" - - !!omap - - id: "YKL004W" - - name: "AUR1" - - !!omap - - id: "YKL008C" - - name: "LAC1" - - !!omap - - id: "YKL016C" - - name: "ATP7" - - !!omap - - id: "YKL019W" - - name: "RAM2" - - !!omap - - id: "YKL024C" - - name: "URA6" - - !!omap - - id: "YKL026C" - - name: "GPX1" - - !!omap - - id: "YKL029C" - - name: "MAE1" - - !!omap - - id: "YKL035W" - - name: "UGP1" - - !!omap - - id: "YKL055C" - - name: "OAR1" - - !!omap - - id: "YKL060C" - - name: "FBA1" - - !!omap - - id: "YKL067W" - - name: "YNK1" - - !!omap - - id: "YKL069W" - - name: "YKL069W" - - !!omap - - id: "YKL080W" - - name: "VMA5" - - !!omap - - id: "YKL085W" - - name: "MDH1" - - !!omap - - id: "YKL087C" - - name: "CYT2" - - !!omap - - id: "YKL088W" - - name: "CAB3" - - !!omap - - id: "YKL094W" - - name: "YJU3" - - !!omap - - id: "YKL103C" - - name: "APE1" - - !!omap - - id: "YKL104C" - - name: "GFA1" - - !!omap - - id: "YKL106W" - - name: "AAT1" - - !!omap - - id: "YKL120W" - - name: "OAC1" - - !!omap - - id: "YKL127W" - - name: "PGM1" - - !!omap - - id: "YKL132C" - - name: "RMA1" - - !!omap - - id: "YKL140W" - - name: "TGL1" - - !!omap - - id: "YKL141W" - - name: "SDH3" - - !!omap - - id: "YKL146W" - - name: "AVT3" - - !!omap - - id: "YKL148C" - - name: "SDH1" - - !!omap - - id: "YKL150W" - - name: "MCR1" - - !!omap - - id: "YKL152C" - - name: "GPM1" - - !!omap - - id: "YKL165C" - - name: "MCD4" - - !!omap - - id: "YKL174C" - - name: "TPO5" - - !!omap - - id: "YKL181W" - - name: "PRS1" - - !!omap - - id: "YKL182W" - - name: "FAS1" - - !!omap - - id: "YKL184W" - - name: "SPE1" - - !!omap - - id: "YKL188C" - - name: "PXA2" - - !!omap - - id: "YKL192C" - - name: "ACP1" - - !!omap - - id: "YKL194C" - - name: "MST1" - - !!omap - - id: "YKL211C" - - name: "TRP3" - - !!omap - - id: "YKL212W" - - name: "SAC1" - - !!omap - - id: "YKL215C" - - name: "OXP1" - - !!omap - - id: "YKL216W" - - name: "URA1" - - !!omap - - id: "YKL217W" - - name: "JEN1" - - !!omap - - id: "YKL218C" - - name: "SRY1" - - !!omap - - id: "YKL220C" - - name: "FRE2" - - !!omap - - id: "YKR009C" - - name: "FOX2" - - !!omap - - id: "YKR031C" - - name: "SPO14" - - !!omap - - id: "YKR039W" - - name: "GAP1" - - !!omap - - id: "YKR043C" - - name: "SHB17" - - !!omap - - id: "YKR052C" - - name: "MRS4" - - !!omap - - id: "YKR053C" - - name: "YSR3" - - !!omap - - id: "YKR058W" - - name: "GLG1" - - !!omap - - id: "YKR061W" - - name: "KTR2" - - !!omap - - id: "YKR066C" - - name: "CCP1" - - !!omap - - id: "YKR067W" - - name: "GPT2" - - !!omap - - id: "YKR069W" - - name: "MET1" - - !!omap - - id: "YKR072C" - - name: "SIS2" - - !!omap - - id: "YKR076W" - - name: "ECM4" - - !!omap - - id: "YKR080W" - - name: "MTD1" - - !!omap - - id: "YKR089C" - - name: "TGL4" - - !!omap - - id: "YKR093W" - - name: "PTR2" - - !!omap - - id: "YKR097W" - - name: "PCK1" - - !!omap - - id: "YLL001W" - - name: "DNM1" - - !!omap - - id: "YLL012W" - - name: "YEH1" - - !!omap - - id: "YLL015W" - - name: "BPT1" - - !!omap - - id: "YLL018C" - - name: "DPS1" - - !!omap - - id: "YLL018C-A" - - name: "COX19" - - !!omap - - id: "YLL028W" - - name: "TPO1" - - !!omap - - id: "YLL031C" - - name: "GPI13" - - !!omap - - id: "YLL041C" - - name: "SDH2" - - !!omap - - id: "YLL043W" - - name: "FPS1" - - !!omap - - id: "YLL048C" - - name: "YBT1" - - !!omap - - id: "YLL051C" - - name: "FRE6" - - !!omap - - id: "YLL052C" - - name: "AQY2" - - !!omap - - id: "YLL053C" - - name: "YLL053C" - - !!omap - - id: "YLL057C" - - name: "JLP1" - - !!omap - - id: "YLL058W" - - name: "YLL058W" - - !!omap - - id: "YLL060C" - - name: "GTT2" - - !!omap - - id: "YLL061W" - - name: "MMP1" - - !!omap - - id: "YLL062C" - - name: "MHT1" - - !!omap - - id: "YLR011W" - - name: "LOT6" - - !!omap - - id: "YLR017W" - - name: "MEU1" - - !!omap - - id: "YLR020C" - - name: "YEH2" - - !!omap - - id: "YLR027C" - - name: "AAT2" - - !!omap - - id: "YLR028C" - - name: "ADE16" - - !!omap - - id: "YLR038C" - - name: "COX12" - - !!omap - - id: "YLR043C" - - name: "TRX1" - - !!omap - - id: "YLR044C" - - name: "PDC1" - - !!omap - - id: "YLR047C" - - name: "FRE8" - - !!omap - - id: "YLR056W" - - name: "ERG3" - - !!omap - - id: "YLR057W" - - name: "MNL2" - - !!omap - - id: "YLR058C" - - name: "SHM2" - - !!omap - - id: "YLR060W" - - name: "FRS1" - - !!omap - - id: "YLR070C" - - name: "XYL2" - - !!omap - - id: "YLR081W" - - name: "GAL2" - - !!omap - - id: "YLR089C" - - name: "ALT1" - - !!omap - - id: "YLR092W" - - name: "SUL2" - - !!omap - - id: "YLR099C" - - name: "ICT1" - - !!omap - - id: "YLR100W" - - name: "ERG27" - - !!omap - - id: "YLR109W" - - name: "AHP1" - - !!omap - - id: "YLR130C" - - name: "ZRT2" - - !!omap - - id: "YLR133W" - - name: "CKI1" - - !!omap - - id: "YLR134W" - - name: "PDC5" - - !!omap - - id: "YLR138W" - - name: "NHA1" - - !!omap - - id: "YLR142W" - - name: "PUT1" - - !!omap - - id: "YLR143W" - - name: "DPH6" - - !!omap - - id: "YLR146C" - - name: "SPE4" - - !!omap - - id: "YLR151C" - - name: "PCD1" - - !!omap - - id: "YLR153C" - - name: "ACS2" - - !!omap - - id: "YLR155C" - - name: "ASP3-1" - - !!omap - - id: "YLR157C" - - name: "ASP3-2" - - !!omap - - id: "YLR158C" - - name: "ASP3-3" - - !!omap - - id: "YLR160C" - - name: "ASP3-4" - - !!omap - - id: "YLR164W" - - name: "SHH4" - - !!omap - - id: "YLR172C" - - name: "DPH5" - - !!omap - - id: "YLR174W" - - name: "IDP2" - - !!omap - - id: "YLR180W" - - name: "SAM1" - - !!omap - - id: "YLR189C" - - name: "ATG26" - - !!omap - - id: "YLR201C" - - name: "COQ9" - - !!omap - - id: "YLR209C" - - name: "PNP1" - - !!omap - - id: "YLR214W" - - name: "FRE1" - - !!omap - - id: "YLR231C" - - name: "BNA5" - - !!omap - - id: "YLR237W" - - name: "THI7" - - !!omap - - id: "YLR239C" - - name: "LIP2" - - !!omap - - id: "YLR240W" - - name: "VPS34" - - !!omap - - id: "YLR244C" - - name: "MAP1" - - !!omap - - id: "YLR245C" - - name: "CDD1" - - !!omap - - id: "YLR258W" - - name: "GSY2" - - !!omap - - id: "YLR260W" - - name: "LCB5" - - !!omap - - id: "YLR284C" - - name: "ECI1" - - !!omap - - id: "YLR285W" - - name: "NNT1" - - !!omap - - id: "YLR286C" - - name: "CTS1" - - !!omap - - id: "YLR295C" - - name: "ATP14" - - !!omap - - id: "YLR299W" - - name: "ECM38" - - !!omap - - id: "YLR300W" - - name: "EXG1" - - !!omap - - id: "YLR303W" - - name: "MET17" - - !!omap - - id: "YLR304C" - - name: "ACO1" - - !!omap - - id: "YLR305C" - - name: "STT4" - - !!omap - - id: "YLR307W" - - name: "CDA1" - - !!omap - - id: "YLR308W" - - name: "CDA2" - - !!omap - - id: "YLR328W" - - name: "NMA1" - - !!omap - - id: "YLR342W" - - name: "FKS1" - - !!omap - - id: "YLR345W" - - name: "YLR345W" - - !!omap - - id: "YLR348C" - - name: "DIC1" - - !!omap - - id: "YLR351C" - - name: "NIT3" - - !!omap - - id: "YLR354C" - - name: "TAL1" - - !!omap - - id: "YLR355C" - - name: "ILV5" - - !!omap - - id: "YLR359W" - - name: "ADE13" - - !!omap - - id: "YLR372W" - - name: "ELO3" - - !!omap - - id: "YLR377C" - - name: "FBP1" - - !!omap - - id: "YLR382C" - - name: "NAM2" - - !!omap - - id: "YLR386W" - - name: "VAC14" - - !!omap - - id: "YLR393W" - - name: "ATP10" - - !!omap - - id: "YLR395C" - - name: "COX8" - - !!omap - - id: "YLR410W" - - name: "VIP1" - - !!omap - - id: "YLR420W" - - name: "URA4" - - !!omap - - id: "YLR432W" - - name: "IMD3" - - !!omap - - id: "YLR438W" - - name: "CAR2" - - !!omap - - id: "YLR446W" - - name: "YLR446W" - - !!omap - - id: "YLR447C" - - name: "VMA6" - - !!omap - - id: "YLR450W" - - name: "HMG2" - - !!omap - - id: "YML004C" - - name: "GLO1" - - !!omap - - id: "YML008C" - - name: "ERG6" - - !!omap - - id: "YML022W" - - name: "APT1" - - !!omap - - id: "YML035C" - - name: "AMD1" - - !!omap - - id: "YML042W" - - name: "CAT2" - - !!omap - - id: "YML054C" - - name: "CYB2" - - !!omap - - id: "YML056C" - - name: "IMD4" - - !!omap - - id: "YML059C" - - name: "NTE1" - - !!omap - - id: "YML070W" - - name: "DAK1" - - !!omap - - id: "YML075C" - - name: "HMG1" - - !!omap - - id: "YML081C-A" - - name: "ATP18" - - !!omap - - id: "YML082W" - - name: "YML082W" - - !!omap - - id: "YML086C" - - name: "ALO1" - - !!omap - - id: "YML100W" - - name: "TSL1" - - !!omap - - id: "YML106W" - - name: "URA5" - - !!omap - - id: "YML110C" - - name: "COQ5" - - !!omap - - id: "YML120C" - - name: "NDI1" - - !!omap - - id: "YML123C" - - name: "PHO84" - - !!omap - - id: "YML125C" - - name: "PGA3" - - !!omap - - id: "YML126C" - - name: "ERG13" - - !!omap - - id: "YMR006C" - - name: "PLB2" - - !!omap - - id: "YMR008C" - - name: "PLB1" - - !!omap - - id: "YMR009W" - - name: "ADI1" - - !!omap - - id: "YMR011W" - - name: "HXT2" - - !!omap - - id: "YMR013C" - - name: "SEC59" - - !!omap - - id: "YMR015C" - - name: "ERG5" - - !!omap - - id: "YMR020W" - - name: "FMS1" - - !!omap - - id: "YMR041C" - - name: "ARA2" - - !!omap - - id: "YMR054W" - - name: "STV1" - - !!omap - - id: "YMR056C" - - name: "AAC1" - - !!omap - - id: "YMR058W" - - name: "FET3" - - !!omap - - id: "YMR062C" - - name: "ARG7" - - !!omap - - id: "YMR083W" - - name: "ADH3" - - !!omap - - id: "YMR084W" - - name: "YMR084W" - - !!omap - - id: "YMR087W" - - name: "YMR087W" - - !!omap - - id: "YMR088C" - - name: "VBA1" - - !!omap - - id: "YMR099C" - - name: "YMR099C" - - !!omap - - id: "YMR101C" - - name: "SRT1" - - !!omap - - id: "YMR105C" - - name: "PGM2" - - !!omap - - id: "YMR108W" - - name: "ILV2" - - !!omap - - id: "YMR110C" - - name: "HFD1" - - !!omap - - id: "YMR113W" - - name: "FOL3" - - !!omap - - id: "YMR120C" - - name: "ADE17" - - !!omap - - id: "YMR145C" - - name: "NDE1" - - !!omap - - id: "YMR162C" - - name: "DNF3" - - !!omap - - id: "YMR165C" - - name: "PAH1" - - !!omap - - id: "YMR169C" - - name: "ALD3" - - !!omap - - id: "YMR170C" - - name: "ALD2" - - !!omap - - id: "YMR189W" - - name: "GCV2" - - !!omap - - id: "YMR202W" - - name: "ERG2" - - !!omap - - id: "YMR205C" - - name: "PFK2" - - !!omap - - id: "YMR207C" - - name: "HFA1" - - !!omap - - id: "YMR208W" - - name: "ERG12" - - !!omap - - id: "YMR210W" - - name: "MGL2" - - !!omap - - id: "YMR217W" - - name: "GUA1" - - !!omap - - id: "YMR220W" - - name: "ERG8" - - !!omap - - id: "YMR226C" - - name: "YMR226C" - - !!omap - - id: "YMR241W" - - name: "YHM2" - - !!omap - - id: "YMR243C" - - name: "ZRC1" - - !!omap - - id: "YMR246W" - - name: "FAA4" - - !!omap - - id: "YMR250W" - - name: "GAD1" - - !!omap - - id: "YMR251W" - - name: "GTO3" - - !!omap - - id: "YMR256C" - - name: "COX7" - - !!omap - - id: "YMR261C" - - name: "TPS3" - - !!omap - - id: "YMR267W" - - name: "PPA2" - - !!omap - - id: "YMR271C" - - name: "URA10" - - !!omap - - id: "YMR272C" - - name: "SCS7" - - !!omap - - id: "YMR278W" - - name: "PRM15" - - !!omap - - id: "YMR281W" - - name: "GPI12" - - !!omap - - id: "YMR289W" - - name: "ABZ2" - - !!omap - - id: "YMR293C" - - name: "HER2" - - !!omap - - id: "YMR296C" - - name: "LCB1" - - !!omap - - id: "YMR298W" - - name: "LIP1" - - !!omap - - id: "YMR300C" - - name: "ADE4" - - !!omap - - id: "YMR301C" - - name: "ATM1" - - !!omap - - id: "YMR303C" - - name: "ADH2" - - !!omap - - id: "YMR306W" - - name: "FKS3" - - !!omap - - id: "YMR313C" - - name: "TGL3" - - !!omap - - id: "YMR318C" - - name: "ADH6" - - !!omap - - id: "YMR319C" - - name: "FET4" - - !!omap - - id: "YMR322C" - - name: "SNO4" - - !!omap - - id: "YMR323W" - - name: "ERR3" - - !!omap - - id: "YNL003C" - - name: "PET8" - - !!omap - - id: "YNL009W" - - name: "IDP3" - - !!omap - - id: "YNL029C" - - name: "KTR5" - - !!omap - - id: "YNL036W" - - name: "NCE103" - - !!omap - - id: "YNL037C" - - name: "IDH1" - - !!omap - - id: "YNL038W" - - name: "GPI15" - - !!omap - - id: "YNL045W" - - name: "LAP2" - - !!omap - - id: "YNL048W" - - name: "ALG11" - - !!omap - - id: "YNL052W" - - name: "COX5A" - - !!omap - - id: "YNL065W" - - name: "AQR1" - - !!omap - - id: "YNL071W" - - name: "LAT1" - - !!omap - - id: "YNL073W" - - name: "MSK1" - - !!omap - - id: "YNL092W" - - name: "YNL092W" - - !!omap - - id: "YNL101W" - - name: "AVT4" - - !!omap - - id: "YNL104C" - - name: "LEU4" - - !!omap - - id: "YNL106C" - - name: "INP52" - - !!omap - - id: "YNL117W" - - name: "MLS1" - - !!omap - - id: "YNL129W" - - name: "NRK1" - - !!omap - - id: "YNL130C" - - name: "CPT1" - - !!omap - - id: "YNL141W" - - name: "AAH1" - - !!omap - - id: "YNL142W" - - name: "MEP2" - - !!omap - - id: "YNL169C" - - name: "PSD1" - - !!omap - - id: "YNL191W" - - name: "DUG3" - - !!omap - - id: "YNL192W" - - name: "CHS1" - - !!omap - - id: "YNL202W" - - name: "SPS19" - - !!omap - - id: "YNL219C" - - name: "ALG9" - - !!omap - - id: "YNL220W" - - name: "ADE12" - - !!omap - - id: "YNL229C" - - name: "URE2" - - !!omap - - id: "YNL241C" - - name: "ZWF1" - - !!omap - - id: "YNL247W" - - name: "YNL247W" - - !!omap - - id: "YNL256W" - - name: "FOL1" - - !!omap - - id: "YNL267W" - - name: "PIK1" - - !!omap - - id: "YNL268W" - - name: "LYP1" - - !!omap - - id: "YNL270C" - - name: "ALP1" - - !!omap - - id: "YNL274C" - - name: "GOR1" - - !!omap - - id: "YNL275W" - - name: "BOR1" - - !!omap - - id: "YNL277W" - - name: "MET2" - - !!omap - - id: "YNL280C" - - name: "ERG24" - - !!omap - - id: "YNL292W" - - name: "PUS4" - - !!omap - - id: "YNL315C" - - name: "ATP11" - - !!omap - - id: "YNL316C" - - name: "PHA2" - - !!omap - - id: "YNL318C" - - name: "HXT14" - - !!omap - - id: "YNL325C" - - name: "FIG4" - - !!omap - - id: "YNL331C" - - name: "AAD14" - - !!omap - - id: "YNL333W" - - name: "SNZ2" - - !!omap - - id: "YNL334C" - - name: "SNO2" - - !!omap - - id: "YNL335W" - - name: "DDI3" - - !!omap - - id: "YNR001C" - - name: "CIT1" - - !!omap - - id: "YNR008W" - - name: "LRO1" - - !!omap - - id: "YNR012W" - - name: "URK1" - - !!omap - - id: "YNR013C" - - name: "PHO91" - - !!omap - - id: "YNR016C" - - name: "ACC1" - - !!omap - - id: "YNR019W" - - name: "ARE2" - - !!omap - - id: "YNR027W" - - name: "BUD17" - - !!omap - - id: "YNR030W" - - name: "ALG12" - - !!omap - - id: "YNR033W" - - name: "ABZ1" - - !!omap - - id: "YNR041C" - - name: "COQ2" - - !!omap - - id: "YNR043W" - - name: "MVD1" - - !!omap - - id: "YNR050C" - - name: "LYS9" - - !!omap - - id: "YNR056C" - - name: "BIO5" - - !!omap - - id: "YNR057C" - - name: "BIO4" - - !!omap - - id: "YNR058W" - - name: "BIO3" - - !!omap - - id: "YNR060W" - - name: "FRE4" - - !!omap - - id: "YNR067C" - - name: "DSE4" - - !!omap - - id: "YNR072W" - - name: "HXT17" - - !!omap - - id: "YNR073C" - - name: "MAN2" - - !!omap - - id: "YOL011W" - - name: "PLB3" - - !!omap - - id: "YOL020W" - - name: "TAT2" - - !!omap - - id: "YOL033W" - - name: "MSE1" - - !!omap - - id: "YOL049W" - - name: "GSH2" - - !!omap - - id: "YOL052C" - - name: "SPE2" - - !!omap - - id: "YOL055C" - - name: "THI20" - - !!omap - - id: "YOL058W" - - name: "ARG1" - - !!omap - - id: "YOL059W" - - name: "GPD2" - - !!omap - - id: "YOL061W" - - name: "PRS5" - - !!omap - - id: "YOL064C" - - name: "MET22" - - !!omap - - id: "YOL065C" - - name: "INP54" - - !!omap - - id: "YOL066C" - - name: "RIB2" - - !!omap - - id: "YOL068C" - - name: "HST1" - - !!omap - - id: "YOL075C" - - name: "YOL075C" - - !!omap - - id: "YOL077W-A" - - name: "ATP19" - - !!omap - - id: "YOL086C" - - name: "ADH1" - - !!omap - - id: "YOL092W" - - name: "YPQ1" - - !!omap - - id: "YOL096C" - - name: "COQ3" - - !!omap - - id: "YOL097C" - - name: "WRS1" - - !!omap - - id: "YOL103W" - - name: "ITR2" - - !!omap - - id: "YOL122C" - - name: "SMF1" - - !!omap - - id: "YOL126C" - - name: "MDH2" - - !!omap - - id: "YOL130W" - - name: "ALR1" - - !!omap - - id: "YOL136C" - - name: "PFK27" - - !!omap - - id: "YOL140W" - - name: "ARG8" - - !!omap - - id: "YOL143C" - - name: "RIB4" - - !!omap - - id: "YOL151W" - - name: "GRE2" - - !!omap - - id: "YOL152W" - - name: "FRE7" - - !!omap - - id: "YOL156W" - - name: "HXT11" - - !!omap - - id: "YOL157C" - - name: "IMA2" - - !!omap - - id: "YOL165C" - - name: "AAD15" - - !!omap - - id: "YOR002W" - - name: "ALG6" - - !!omap - - id: "YOR011W" - - name: "AUS1" - - !!omap - - id: "YOR025W" - - name: "HST3" - - !!omap - - id: "YOR040W" - - name: "GLO4" - - !!omap - - id: "YOR054C" - - name: "VHS3" - - !!omap - - id: "YOR065W" - - name: "CYT1" - - !!omap - - id: "YOR067C" - - name: "ALG8" - - !!omap - - id: "YOR071C" - - name: "NRT1" - - !!omap - - id: "YOR074C" - - name: "CDC21" - - !!omap - - id: "YOR081C" - - name: "TGL5" - - !!omap - - id: "YOR095C" - - name: "RKI1" - - !!omap - - id: "YOR099W" - - name: "KTR1" - - !!omap - - id: "YOR100C" - - name: "CRC1" - - !!omap - - id: "YOR108W" - - name: "LEU9" - - !!omap - - id: "YOR109W" - - name: "INP53" - - !!omap - - id: "YOR120W" - - name: "GCY1" - - !!omap - - id: "YOR125C" - - name: "CAT5" - - !!omap - - id: "YOR126C" - - name: "IAH1" - - !!omap - - id: "YOR128C" - - name: "ADE2" - - !!omap - - id: "YOR130C" - - name: "ORT1" - - !!omap - - id: "YOR136W" - - name: "IDH2" - - !!omap - - id: "YOR142W" - - name: "LSC1" - - !!omap - - id: "YOR143C" - - name: "THI80" - - !!omap - - id: "YOR149C" - - name: "SMP3" - - !!omap - - id: "YOR155C" - - name: "ISN1" - - !!omap - - id: "YOR161C" - - name: "PNS1" - - !!omap - - id: "YOR163W" - - name: "DDP1" - - !!omap - - id: "YOR168W" - - name: "GLN4" - - !!omap - - id: "YOR171C" - - name: "LCB4" - - !!omap - - id: "YOR175C" - - name: "ALE1" - - !!omap - - id: "YOR176W" - - name: "HEM15" - - !!omap - - id: "YOR180C" - - name: "DCI1" - - !!omap - - id: "YOR184W" - - name: "SER1" - - !!omap - - id: "YOR190W" - - name: "SPR1" - - !!omap - - id: "YOR192C" - - name: "THI72" - - !!omap - - id: "YOR196C" - - name: "LIP5" - - !!omap - - id: "YOR202W" - - name: "HIS3" - - !!omap - - id: "YOR209C" - - name: "NPT1" - - !!omap - - id: "YOR221C" - - name: "MCT1" - - !!omap - - id: "YOR222W" - - name: "ODC2" - - !!omap - - id: "YOR226C" - - name: "ISU2" - - !!omap - - id: "YOR236W" - - name: "DFR1" - - !!omap - - id: "YOR241W" - - name: "MET7" - - !!omap - - id: "YOR245C" - - name: "DGA1" - - !!omap - - id: "YOR251C" - - name: "TUM1" - - !!omap - - id: "YOR270C" - - name: "VPH1" - - !!omap - - id: "YOR273C" - - name: "TPO4" - - !!omap - - id: "YOR278W" - - name: "HEM4" - - !!omap - - id: "YOR283W" - - name: "YOR283W" - - !!omap - - id: "YOR285W" - - name: "RDL1" - - !!omap - - id: "YOR286W" - - name: "RDL2" - - !!omap - - id: "YOR303W" - - name: "CPA1" - - !!omap - - id: "YOR306C" - - name: "MCH5" - - !!omap - - id: "YOR311C" - - name: "DGK1" - - !!omap - - id: "YOR316C" - - name: "COT1" - - !!omap - - id: "YOR317W" - - name: "FAA1" - - !!omap - - id: "YOR321W" - - name: "PMT3" - - !!omap - - id: "YOR323C" - - name: "PRO2" - - !!omap - - id: "YOR332W" - - name: "VMA4" - - !!omap - - id: "YOR334W" - - name: "MRS2" - - !!omap - - id: "YOR335C" - - name: "ALA1" - - !!omap - - id: "YOR347C" - - name: "PYK2" - - !!omap - - id: "YOR348C" - - name: "PUT4" - - !!omap - - id: "YOR360C" - - name: "PDE2" - - !!omap - - id: "YOR374W" - - name: "ALD4" - - !!omap - - id: "YOR375C" - - name: "GDH1" - - !!omap - - id: "YOR377W" - - name: "ATF1" - - !!omap - - id: "YOR381W" - - name: "FRE3" - - !!omap - - id: "YOR384W" - - name: "FRE5" - - !!omap - - id: "YOR388C" - - name: "FDH1" - - !!omap - - id: "YOR391C" - - name: "HSP33" - - !!omap - - id: "YOR393W" - - name: "ERR1" - - !!omap - - id: "YPL015C" - - name: "HST2" - - !!omap - - id: "YPL023C" - - name: "MET12" - - !!omap - - id: "YPL028W" - - name: "ERG10" - - !!omap - - id: "YPL036W" - - name: "PMA2" - - !!omap - - id: "YPL040C" - - name: "ISM1" - - !!omap - - id: "YPL053C" - - name: "KTR6" - - !!omap - - id: "YPL057C" - - name: "SUR1" - - !!omap - - id: "YPL059W" - - name: "GRX5" - - !!omap - - id: "YPL060W" - - name: "MFM1" - - !!omap - - id: "YPL061W" - - name: "ALD6" - - !!omap - - id: "YPL069C" - - name: "BTS1" - - !!omap - - id: "YPL076W" - - name: "GPI2" - - !!omap - - id: "YPL078C" - - name: "ATP4" - - !!omap - - id: "YPL087W" - - name: "YDC1" - - !!omap - - id: "YPL088W" - - name: "YPL088W" - - !!omap - - id: "YPL091W" - - name: "GLR1" - - !!omap - - id: "YPL092W" - - name: "SSU1" - - !!omap - - id: "YPL095C" - - name: "EEB1" - - !!omap - - id: "YPL096C-A" - - name: "ERI1" - - !!omap - - id: "YPL097W" - - name: "MSY1" - - !!omap - - id: "YPL104W" - - name: "MSD1" - - !!omap - - id: "YPL110C" - - name: "GDE1" - - !!omap - - id: "YPL111W" - - name: "CAR1" - - !!omap - - id: "YPL117C" - - name: "IDI1" - - !!omap - - id: "YPL132W" - - name: "COX11" - - !!omap - - id: "YPL134C" - - name: "ODC1" - - !!omap - - id: "YPL135W" - - name: "ISU1" - - !!omap - - id: "YPL147W" - - name: "PXA1" - - !!omap - - id: "YPL148C" - - name: "PPT2" - - !!omap - - id: "YPL160W" - - name: "CDC60" - - !!omap - - id: "YPL172C" - - name: "COX10" - - !!omap - - id: "YPL175W" - - name: "SPT14" - - !!omap - - id: "YPL188W" - - name: "POS5" - - !!omap - - id: "YPL189W" - - name: "GUP2" - - !!omap - - id: "YPL206C" - - name: "PGC1" - - !!omap - - id: "YPL212C" - - name: "PUS1" - - !!omap - - id: "YPL214C" - - name: "THI6" - - !!omap - - id: "YPL227C" - - name: "ALG5" - - !!omap - - id: "YPL231W" - - name: "FAS2" - - !!omap - - id: "YPL234C" - - name: "VMA11" - - !!omap - - id: "YPL244C" - - name: "HUT1" - - !!omap - - id: "YPL252C" - - name: "YAH1" - - !!omap - - id: "YPL258C" - - name: "THI21" - - !!omap - - id: "YPL262W" - - name: "FUM1" - - !!omap - - id: "YPL265W" - - name: "DIP5" - - !!omap - - id: "YPL268W" - - name: "PLC1" - - !!omap - - id: "YPL271W" - - name: "ATP15" - - !!omap - - id: "YPL273W" - - name: "SAM4" - - !!omap - - id: "YPL274W" - - name: "SAM3" - - !!omap - - id: "YPL280W" - - name: "HSP32" - - !!omap - - id: "YPL281C" - - name: "ERR2" - - !!omap - - id: "YPR001W" - - name: "CIT3" - - !!omap - - id: "YPR002W" - - name: "PDH1" - - !!omap - - id: "YPR003C" - - name: "YPR003C" - - !!omap - - id: "YPR006C" - - name: "ICL2" - - !!omap - - id: "YPR011C" - - name: "YPR011C" - - !!omap - - id: "YPR020W" - - name: "ATP20" - - !!omap - - id: "YPR021C" - - name: "AGC1" - - !!omap - - id: "YPR026W" - - name: "ATH1" - - !!omap - - id: "YPR033C" - - name: "HTS1" - - !!omap - - id: "YPR035W" - - name: "GLN1" - - !!omap - - id: "YPR036W" - - name: "VMA13" - - !!omap - - id: "YPR047W" - - name: "MSF1" - - !!omap - - id: "YPR058W" - - name: "YMC1" - - !!omap - - id: "YPR060C" - - name: "ARO7" - - !!omap - - id: "YPR062W" - - name: "FCY1" - - !!omap - - id: "YPR069C" - - name: "SPE3" - - !!omap - - id: "YPR074C" - - name: "TKL1" - - !!omap - - id: "YPR081C" - - name: "GRS2" - - !!omap - - id: "YPR113W" - - name: "PIS1" - - !!omap - - id: "YPR118W" - - name: "MRI1" - - !!omap - - id: "YPR121W" - - name: "THI22" - - !!omap - - id: "YPR127W" - - name: "YPR127W" - - !!omap - - id: "YPR128C" - - name: "ANT1" - - !!omap - - id: "YPR138C" - - name: "MEP3" - - !!omap - - id: "YPR139C" - - name: "LOA1" - - !!omap - - id: "YPR140W" - - name: "TAZ1" - - !!omap - - id: "YPR145W" - - name: "ASN1" - - !!omap - - id: "YPR156C" - - name: "TPO3" - - !!omap - - id: "YPR159W" - - name: "KRE6" - - !!omap - - id: "YPR160W" - - name: "GPH1" - - !!omap - - id: "YPR167C" - - name: "MET16" - - !!omap - - id: "YPR183W" - - name: "DPM1" - - !!omap - - id: "YPR184W" - - name: "GDB1" - - !!omap - - id: "YPR191W" - - name: "QCR2" - - !!omap - - id: "YPR192W" - - name: "AQY1" + - !!omap + - id: "Q0045" + - name: "COX1" + - !!omap + - id: "Q0080" + - name: "ATP8" + - !!omap + - id: "Q0085" + - name: "ATP6" + - !!omap + - id: "Q0105" + - name: "COB" + - !!omap + - id: "Q0130" + - name: "OLI1" + - !!omap + - id: "Q0250" + - name: "COX2" + - !!omap + - id: "Q0275" + - name: "COX3" + - !!omap + - id: "YAL012W" + - name: "CYS3" + - !!omap + - id: "YAL022C" + - name: "FUN26" + - !!omap + - id: "YAL023C" + - name: "PMT2" + - !!omap + - id: "YAL038W" + - name: "CDC19" + - !!omap + - id: "YAL044C" + - name: "GCV3" + - !!omap + - id: "YAL054C" + - name: "ACS1" + - !!omap + - id: "YAL060W" + - name: "BDH1" + - !!omap + - id: "YAL062W" + - name: "GDH3" + - !!omap + - id: "YAR015W" + - name: "ADE1" + - !!omap + - id: "YAR035W" + - name: "YAT1" + - !!omap + - id: "YAR071W" + - name: "PHO11" + - !!omap + - id: "YBL011W" + - name: "SCT1" + - !!omap + - id: "YBL013W" + - name: "FMT1" + - !!omap + - id: "YBL015W" + - name: "ACH1" + - !!omap + - id: "YBL030C" + - name: "PET9" + - !!omap + - id: "YBL033C" + - name: "RIB1" + - !!omap + - id: "YBL039C" + - name: "URA7" + - !!omap + - id: "YBL042C" + - name: "FUI1" + - !!omap + - id: "YBL045C" + - name: "COR1" + - !!omap + - id: "YBL064C" + - name: "PRX1" + - !!omap + - id: "YBL068W" + - name: "PRS4" + - !!omap + - id: "YBL076C" + - name: "ILS1" + - !!omap + - id: "YBL098W" + - name: "BNA4" + - !!omap + - id: "YBL099W" + - name: "ATP1" + - !!omap + - id: "YBR002C" + - name: "RER2" + - !!omap + - id: "YBR003W" + - name: "COQ1" + - !!omap + - id: "YBR004C" + - name: "GPI18" + - !!omap + - id: "YBR006W" + - name: "UGA2" + - !!omap + - id: "YBR011C" + - name: "IPP1" + - !!omap + - id: "YBR018C" + - name: "GAL7" + - !!omap + - id: "YBR019C" + - name: "GAL10" + - !!omap + - id: "YBR020W" + - name: "GAL1" + - !!omap + - id: "YBR021W" + - name: "FUR4" + - !!omap + - id: "YBR023C" + - name: "CHS3" + - !!omap + - id: "YBR026C" + - name: "ETR1" + - !!omap + - id: "YBR029C" + - name: "CDS1" + - !!omap + - id: "YBR034C" + - name: "HMT1" + - !!omap + - id: "YBR035C" + - name: "PDX3" + - !!omap + - id: "YBR036C" + - name: "CSG2" + - !!omap + - id: "YBR038W" + - name: "CHS2" + - !!omap + - id: "YBR039W" + - name: "ATP3" + - !!omap + - id: "YBR041W" + - name: "FAT1" + - !!omap + - id: "YBR042C" + - name: "CST26" + - !!omap + - id: "YBR058C-A" + - name: "TSC3" + - !!omap + - id: "YBR068C" + - name: "BAP2" + - !!omap + - id: "YBR069C" + - name: "TAT1" + - !!omap + - id: "YBR084W" + - name: "MIS1" + - !!omap + - id: "YBR085W" + - name: "AAC3" + - !!omap + - id: "YBR092C" + - name: "PHO3" + - !!omap + - id: "YBR093C" + - name: "PHO5" + - !!omap + - id: "YBR097W" + - name: "VPS15" + - !!omap + - id: "YBR110W" + - name: "ALG1" + - !!omap + - id: "YBR115C" + - name: "LYS2" + - !!omap + - id: "YBR117C" + - name: "TKL2" + - !!omap + - id: "YBR121C" + - name: "GRS1" + - !!omap + - id: "YBR126C" + - name: "TPS1" + - !!omap + - id: "YBR127C" + - name: "VMA2" + - !!omap + - id: "YBR132C" + - name: "AGP2" + - !!omap + - id: "YBR145W" + - name: "ADH5" + - !!omap + - id: "YBR149W" + - name: "ARA1" + - !!omap + - id: "YBR153W" + - name: "RIB7" + - !!omap + - id: "YBR159W" + - name: "IFA38" + - !!omap + - id: "YBR161W" + - name: "CSH1" + - !!omap + - id: "YBR166C" + - name: "TYR1" + - !!omap + - id: "YBR176W" + - name: "ECM31" + - !!omap + - id: "YBR180W" + - name: "DTR1" + - !!omap + - id: "YBR183W" + - name: "YPC1" + - !!omap + - id: "YBR192W" + - name: "RIM2" + - !!omap + - id: "YBR196C" + - name: "PGI1" + - !!omap + - id: "YBR199W" + - name: "KTR4" + - !!omap + - id: "YBR204C" + - name: "LDH1" + - !!omap + - id: "YBR205W" + - name: "KTR3" + - !!omap + - id: "YBR208C" + - name: "DUR1,2" + - !!omap + - id: "YBR213W" + - name: "MET8" + - !!omap + - id: "YBR218C" + - name: "PYC2" + - !!omap + - id: "YBR221C" + - name: "PDB1" + - !!omap + - id: "YBR244W" + - name: "GPX2" + - !!omap + - id: "YBR248C" + - name: "HIS7" + - !!omap + - id: "YBR249C" + - name: "ARO4" + - !!omap + - id: "YBR252W" + - name: "DUT1" + - !!omap + - id: "YBR256C" + - name: "RIB5" + - !!omap + - id: "YBR263W" + - name: "SHM1" + - !!omap + - id: "YBR265W" + - name: "TSC10" + - !!omap + - id: "YBR291C" + - name: "CTP1" + - !!omap + - id: "YBR293W" + - name: "VBA2" + - !!omap + - id: "YBR294W" + - name: "SUL1" + - !!omap + - id: "YBR296C" + - name: "PHO89" + - !!omap + - id: "YBR298C" + - name: "MAL31" + - !!omap + - id: "YBR299W" + - name: "MAL32" + - !!omap + - id: "YCL004W" + - name: "PGS1" + - !!omap + - id: "YCL009C" + - name: "ILV6" + - !!omap + - id: "YCL018W" + - name: "LEU2" + - !!omap + - id: "YCL025C" + - name: "AGP1" + - !!omap + - id: "YCL030C" + - name: "HIS4" + - !!omap + - id: "YCL035C" + - name: "GRX1" + - !!omap + - id: "YCL038C" + - name: "ATG22" + - !!omap + - id: "YCL040W" + - name: "GLK1" + - !!omap + - id: "YCL050C" + - name: "APA1" + - !!omap + - id: "YCL052C" + - name: "PBN1" + - !!omap + - id: "YCL064C" + - name: "CHA1" + - !!omap + - id: "YCL069W" + - name: "VBA3" + - !!omap + - id: "YCR005C" + - name: "CIT2" + - !!omap + - id: "YCR010C" + - name: "ADY2" + - !!omap + - id: "YCR012W" + - name: "PGK1" + - !!omap + - id: "YCR024C" + - name: "SLM5" + - !!omap + - id: "YCR024C-A" + - name: "PMP1" + - !!omap + - id: "YCR028C" + - name: "FEN2" + - !!omap + - id: "YCR034W" + - name: "ELO2" + - !!omap + - id: "YCR036W" + - name: "RBK1" + - !!omap + - id: "YCR037C" + - name: "PHO87" + - !!omap + - id: "YCR048W" + - name: "ARE1" + - !!omap + - id: "YCR053W" + - name: "THR4" + - !!omap + - id: "YCR075C" + - name: "ERS1" + - !!omap + - id: "YCR083W" + - name: "TRX3" + - !!omap + - id: "YCR098C" + - name: "GIT1" + - !!omap + - id: "YCR105W" + - name: "ADH7" + - !!omap + - id: "YDL004W" + - name: "ATP16" + - !!omap + - id: "YDL015C" + - name: "TSC13" + - !!omap + - id: "YDL022W" + - name: "GPD1" + - !!omap + - id: "YDL042C" + - name: "SIR2" + - !!omap + - id: "YDL045C" + - name: "FAD1" + - !!omap + - id: "YDL052C" + - name: "SLC1" + - !!omap + - id: "YDL055C" + - name: "PSA1" + - !!omap + - id: "YDL066W" + - name: "IDP1" + - !!omap + - id: "YDL067C" + - name: "COX9" + - !!omap + - id: "YDL078C" + - name: "MDH3" + - !!omap + - id: "YDL080C" + - name: "THI3" + - !!omap + - id: "YDL085W" + - name: "NDE2" + - !!omap + - id: "YDL090C" + - name: "RAM1" + - !!omap + - id: "YDL093W" + - name: "PMT5" + - !!omap + - id: "YDL095W" + - name: "PMT1" + - !!omap + - id: "YDL100C" + - name: "GET3" + - !!omap + - id: "YDL103C" + - name: "QRI1" + - !!omap + - id: "YDL131W" + - name: "LYS21" + - !!omap + - id: "YDL141W" + - name: "BPL1" + - !!omap + - id: "YDL142C" + - name: "CRD1" + - !!omap + - id: "YDL168W" + - name: "SFA1" + - !!omap + - id: "YDL171C" + - name: "GLT1" + - !!omap + - id: "YDL174C" + - name: "DLD1" + - !!omap + - id: "YDL178W" + - name: "DLD2" + - !!omap + - id: "YDL182W" + - name: "LYS20" + - !!omap + - id: "YDL185W" + - name: "VMA1" + - !!omap + - id: "YDL198C" + - name: "GGC1" + - !!omap + - id: "YDL205C" + - name: "HEM3" + - !!omap + - id: "YDL210W" + - name: "UGA4" + - !!omap + - id: "YDL215C" + - name: "GDH2" + - !!omap + - id: "YDL238C" + - name: "GUD1" + - !!omap + - id: "YDL245C" + - name: "HXT15" + - !!omap + - id: "YDL247W" + - name: "MPH2" + - !!omap + - id: "YDR001C" + - name: "NTH1" + - !!omap + - id: "YDR007W" + - name: "TRP1" + - !!omap + - id: "YDR017C" + - name: "KCS1" + - !!omap + - id: "YDR019C" + - name: "GCV1" + - !!omap + - id: "YDR023W" + - name: "SES1" + - !!omap + - id: "YDR035W" + - name: "ARO3" + - !!omap + - id: "YDR037W" + - name: "KRS1" + - !!omap + - id: "YDR044W" + - name: "HEM13" + - !!omap + - id: "YDR046C" + - name: "BAP3" + - !!omap + - id: "YDR047W" + - name: "HEM12" + - !!omap + - id: "YDR050C" + - name: "TPI1" + - !!omap + - id: "YDR058C" + - name: "TGL2" + - !!omap + - id: "YDR062W" + - name: "LCB2" + - !!omap + - id: "YDR072C" + - name: "IPT1" + - !!omap + - id: "YDR074W" + - name: "TPS2" + - !!omap + - id: "YDR098C" + - name: "GRX3" + - !!omap + - id: "YDR127W" + - name: "ARO1" + - !!omap + - id: "YDR135C" + - name: "YCF1" + - !!omap + - id: "YDR147W" + - name: "EKI1" + - !!omap + - id: "YDR148C" + - name: "KGD2" + - !!omap + - id: "YDR158W" + - name: "HOM2" + - !!omap + - id: "YDR173C" + - name: "ARG82" + - !!omap + - id: "YDR178W" + - name: "SDH4" + - !!omap + - id: "YDR191W" + - name: "HST4" + - !!omap + - id: "YDR196C" + - name: "CAB5" + - !!omap + - id: "YDR204W" + - name: "COQ4" + - !!omap + - id: "YDR208W" + - name: "MSS4" + - !!omap + - id: "YDR226W" + - name: "ADK1" + - !!omap + - id: "YDR232W" + - name: "HEM1" + - !!omap + - id: "YDR234W" + - name: "LYS4" + - !!omap + - id: "YDR236C" + - name: "FMN1" + - !!omap + - id: "YDR256C" + - name: "CTA1" + - !!omap + - id: "YDR261C" + - name: "EXG2" + - !!omap + - id: "YDR268W" + - name: "MSW1" + - !!omap + - id: "YDR272W" + - name: "GLO2" + - !!omap + - id: "YDR284C" + - name: "DPP1" + - !!omap + - id: "YDR287W" + - name: "INM2" + - !!omap + - id: "YDR294C" + - name: "DPL1" + - !!omap + - id: "YDR297W" + - name: "SUR2" + - !!omap + - id: "YDR298C" + - name: "ATP5" + - !!omap + - id: "YDR300C" + - name: "PRO1" + - !!omap + - id: "YDR302W" + - name: "GPI11" + - !!omap + - id: "YDR305C" + - name: "HNT2" + - !!omap + - id: "YDR315C" + - name: "IPK1" + - !!omap + - id: "YDR321W" + - name: "ASP1" + - !!omap + - id: "YDR322C-A" + - name: "TIM11" + - !!omap + - id: "YDR341C" + - name: "YDR341C" + - !!omap + - id: "YDR342C" + - name: "HXT7" + - !!omap + - id: "YDR343C" + - name: "HXT6" + - !!omap + - id: "YDR345C" + - name: "HXT3" + - !!omap + - id: "YDR353W" + - name: "TRR1" + - !!omap + - id: "YDR354W" + - name: "TRP4" + - !!omap + - id: "YDR367W" + - name: "KEI1" + - !!omap + - id: "YDR368W" + - name: "YPR1" + - !!omap + - id: "YDR373W" + - name: "FRQ1" + - !!omap + - id: "YDR376W" + - name: "ARH1" + - !!omap + - id: "YDR377W" + - name: "ATP17" + - !!omap + - id: "YDR380W" + - name: "ARO10" + - !!omap + - id: "YDR384C" + - name: "ATO3" + - !!omap + - id: "YDR399W" + - name: "HPT1" + - !!omap + - id: "YDR400W" + - name: "URH1" + - !!omap + - id: "YDR402C" + - name: "DIT2" + - !!omap + - id: "YDR403W" + - name: "DIT1" + - !!omap + - id: "YDR408C" + - name: "ADE8" + - !!omap + - id: "YDR428C" + - name: "BNA7" + - !!omap + - id: "YDR453C" + - name: "TSA2" + - !!omap + - id: "YDR454C" + - name: "GUK1" + - !!omap + - id: "YDR481C" + - name: "PHO8" + - !!omap + - id: "YDR483W" + - name: "KRE2" + - !!omap + - id: "YDR487C" + - name: "RIB3" + - !!omap + - id: "YDR497C" + - name: "ITR1" + - !!omap + - id: "YDR502C" + - name: "SAM2" + - !!omap + - id: "YDR503C" + - name: "LPP1" + - !!omap + - id: "YDR508C" + - name: "GNP1" + - !!omap + - id: "YDR513W" + - name: "GRX2" + - !!omap + - id: "YDR529C" + - name: "QCR7" + - !!omap + - id: "YDR530C" + - name: "APA2" + - !!omap + - id: "YDR531W" + - name: "CAB1" + - !!omap + - id: "YDR536W" + - name: "STL1" + - !!omap + - id: "YEL006W" + - name: "YEA6" + - !!omap + - id: "YEL017C-A" + - name: "PMP2" + - !!omap + - id: "YEL021W" + - name: "URA3" + - !!omap + - id: "YEL024W" + - name: "RIP1" + - !!omap + - id: "YEL027W" + - name: "VMA3" + - !!omap + - id: "YEL029C" + - name: "BUD16" + - !!omap + - id: "YEL038W" + - name: "UTR4" + - !!omap + - id: "YEL039C" + - name: "CYC7" + - !!omap + - id: "YEL041W" + - name: "YEF1" + - !!omap + - id: "YEL042W" + - name: "GDA1" + - !!omap + - id: "YEL046C" + - name: "GLY1" + - !!omap + - id: "YEL047C" + - name: "FRD1" + - !!omap + - id: "YEL051W" + - name: "VMA8" + - !!omap + - id: "YEL058W" + - name: "PCM1" + - !!omap + - id: "YEL063C" + - name: "CAN1" + - !!omap + - id: "YEL069C" + - name: "HXT13" + - !!omap + - id: "YEL071W" + - name: "DLD3" + - !!omap + - id: "YER003C" + - name: "PMI40" + - !!omap + - id: "YER005W" + - name: "YND1" + - !!omap + - id: "YER014W" + - name: "HEM14" + - !!omap + - id: "YER015W" + - name: "FAA2" + - !!omap + - id: "YER019W" + - name: "ISC1" + - !!omap + - id: "YER023W" + - name: "PRO3" + - !!omap + - id: "YER024W" + - name: "YAT2" + - !!omap + - id: "YER026C" + - name: "CHO1" + - !!omap + - id: "YER037W" + - name: "PHM8" + - !!omap + - id: "YER043C" + - name: "SAH1" + - !!omap + - id: "YER052C" + - name: "HOM3" + - !!omap + - id: "YER053C" + - name: "PIC2" + - !!omap + - id: "YER055C" + - name: "HIS1" + - !!omap + - id: "YER056C" + - name: "FCY2" + - !!omap + - id: "YER060W" + - name: "FCY21" + - !!omap + - id: "YER060W-A" + - name: "FCY22" + - !!omap + - id: "YER061C" + - name: "CEM1" + - !!omap + - id: "YER062C" + - name: "GPP2" + - !!omap + - id: "YER065C" + - name: "ICL1" + - !!omap + - id: "YER069W" + - name: "ARG5,6" + - !!omap + - id: "YER070W" + - name: "RNR1" + - !!omap + - id: "YER073W" + - name: "ALD5" + - !!omap + - id: "YER081W" + - name: "SER3" + - !!omap + - id: "YER086W" + - name: "ILV1" + - !!omap + - id: "YER090W" + - name: "TRP2" + - !!omap + - id: "YER091C" + - name: "MET6" + - !!omap + - id: "YER099C" + - name: "PRS2" + - !!omap + - id: "YER119C" + - name: "AVT6" + - !!omap + - id: "YER152C" + - name: "YER152C" + - !!omap + - id: "YER170W" + - name: "ADK2" + - !!omap + - id: "YER174C" + - name: "GRX4" + - !!omap + - id: "YER175C" + - name: "TMT1" + - !!omap + - id: "YER178W" + - name: "PDA1" + - !!omap + - id: "YER183C" + - name: "FAU1" + - !!omap + - id: "YFL001W" + - name: "DEG1" + - !!omap + - id: "YFL011W" + - name: "HXT10" + - !!omap + - id: "YFL017C" + - name: "GNA1" + - !!omap + - id: "YFL018C" + - name: "LPD1" + - !!omap + - id: "YFL022C" + - name: "FRS2" + - !!omap + - id: "YFL030W" + - name: "AGX1" + - !!omap + - id: "YFL045C" + - name: "SEC53" + - !!omap + - id: "YFL053W" + - name: "DAK2" + - !!omap + - id: "YFL055W" + - name: "AGP3" + - !!omap + - id: "YFR015C" + - name: "GSY1" + - !!omap + - id: "YFR019W" + - name: "FAB1" + - !!omap + - id: "YFR025C" + - name: "HIS2" + - !!omap + - id: "YFR030W" + - name: "MET10" + - !!omap + - id: "YFR033C" + - name: "QCR6" + - !!omap + - id: "YFR047C" + - name: "BNA6" + - !!omap + - id: "YFR053C" + - name: "HXK1" + - !!omap + - id: "YGL001C" + - name: "ERG26" + - !!omap + - id: "YGL008C" + - name: "PMA1" + - !!omap + - id: "YGL009C" + - name: "LEU1" + - !!omap + - id: "YGL012W" + - name: "ERG4" + - !!omap + - id: "YGL026C" + - name: "TRP5" + - !!omap + - id: "YGL037C" + - name: "PNC1" + - !!omap + - id: "YGL040C" + - name: "HEM2" + - !!omap + - id: "YGL055W" + - name: "OLE1" + - !!omap + - id: "YGL062W" + - name: "PYC1" + - !!omap + - id: "YGL063W" + - name: "PUS2" + - !!omap + - id: "YGL067W" + - name: "NPY1" + - !!omap + - id: "YGL077C" + - name: "HNM1" + - !!omap + - id: "YGL080W" + - name: "MPC1" + - !!omap + - id: "YGL084C" + - name: "GUP1" + - !!omap + - id: "YGL119W" + - name: "COQ8" + - !!omap + - id: "YGL125W" + - name: "MET13" + - !!omap + - id: "YGL142C" + - name: "GPI10" + - !!omap + - id: "YGL148W" + - name: "ARO2" + - !!omap + - id: "YGL154C" + - name: "LYS5" + - !!omap + - id: "YGL184C" + - name: "STR3" + - !!omap + - id: "YGL186C" + - name: "TPN1" + - !!omap + - id: "YGL187C" + - name: "COX4" + - !!omap + - id: "YGL191W" + - name: "COX13" + - !!omap + - id: "YGL202W" + - name: "ARO8" + - !!omap + - id: "YGL205W" + - name: "POX1" + - !!omap + - id: "YGL224C" + - name: "SDT1" + - !!omap + - id: "YGL225W" + - name: "VRG4" + - !!omap + - id: "YGL234W" + - name: "ADE5,7" + - !!omap + - id: "YGL245W" + - name: "GUS1" + - !!omap + - id: "YGL248W" + - name: "PDE1" + - !!omap + - id: "YGL253W" + - name: "HXK2" + - !!omap + - id: "YGL256W" + - name: "ADH4" + - !!omap + - id: "YGR007W" + - name: "ECT1" + - !!omap + - id: "YGR010W" + - name: "NMA2" + - !!omap + - id: "YGR019W" + - name: "UGA1" + - !!omap + - id: "YGR020C" + - name: "VMA7" + - !!omap + - id: "YGR032W" + - name: "GSC2" + - !!omap + - id: "YGR055W" + - name: "MUP1" + - !!omap + - id: "YGR060W" + - name: "ERG25" + - !!omap + - id: "YGR061C" + - name: "ADE6" + - !!omap + - id: "YGR065C" + - name: "VHT1" + - !!omap + - id: "YGR087C" + - name: "PDC6" + - !!omap + - id: "YGR088W" + - name: "CTT1" + - !!omap + - id: "YGR094W" + - name: "VAS1" + - !!omap + - id: "YGR096W" + - name: "TPC1" + - !!omap + - id: "YGR110W" + - name: "CLD1" + - !!omap + - id: "YGR121C" + - name: "MEP1" + - !!omap + - id: "YGR124W" + - name: "ASN2" + - !!omap + - id: "YGR138C" + - name: "TPO2" + - !!omap + - id: "YGR143W" + - name: "SKN1" + - !!omap + - id: "YGR155W" + - name: "CYS4" + - !!omap + - id: "YGR157W" + - name: "CHO2" + - !!omap + - id: "YGR170W" + - name: "PSD2" + - !!omap + - id: "YGR171C" + - name: "MSM1" + - !!omap + - id: "YGR175C" + - name: "ERG1" + - !!omap + - id: "YGR177C" + - name: "ATF2" + - !!omap + - id: "YGR180C" + - name: "RNR4" + - !!omap + - id: "YGR183C" + - name: "QCR9" + - !!omap + - id: "YGR185C" + - name: "TYS1" + - !!omap + - id: "YGR191W" + - name: "HIP1" + - !!omap + - id: "YGR192C" + - name: "TDH3" + - !!omap + - id: "YGR193C" + - name: "PDX1" + - !!omap + - id: "YGR194C" + - name: "XKS1" + - !!omap + - id: "YGR202C" + - name: "PCT1" + - !!omap + - id: "YGR204W" + - name: "ADE3" + - !!omap + - id: "YGR208W" + - name: "SER2" + - !!omap + - id: "YGR209C" + - name: "TRX2" + - !!omap + - id: "YGR240C" + - name: "PFK1" + - !!omap + - id: "YGR243W" + - name: "MPC3" + - !!omap + - id: "YGR244C" + - name: "LSC2" + - !!omap + - id: "YGR247W" + - name: "CPD1" + - !!omap + - id: "YGR248W" + - name: "SOL4" + - !!omap + - id: "YGR254W" + - name: "ENO1" + - !!omap + - id: "YGR255C" + - name: "COQ6" + - !!omap + - id: "YGR256W" + - name: "GND2" + - !!omap + - id: "YGR260W" + - name: "TNA1" + - !!omap + - id: "YGR264C" + - name: "MES1" + - !!omap + - id: "YGR267C" + - name: "FOL2" + - !!omap + - id: "YGR277C" + - name: "CAB4" + - !!omap + - id: "YGR282C" + - name: "BGL2" + - !!omap + - id: "YGR286C" + - name: "BIO2" + - !!omap + - id: "YGR287C" + - name: "IMA1" + - !!omap + - id: "YGR289C" + - name: "MAL11" + - !!omap + - id: "YGR292W" + - name: "MAL12" + - !!omap + - id: "YHL003C" + - name: "LAG1" + - !!omap + - id: "YHL011C" + - name: "PRS3" + - !!omap + - id: "YHL016C" + - name: "DUR3" + - !!omap + - id: "YHL032C" + - name: "GUT1" + - !!omap + - id: "YHL036W" + - name: "MUP3" + - !!omap + - id: "YHR001W-A" + - name: "QCR10" + - !!omap + - id: "YHR002W" + - name: "LEU5" + - !!omap + - id: "YHR007C" + - name: "ERG11" + - !!omap + - id: "YHR011W" + - name: "DIA4" + - !!omap + - id: "YHR018C" + - name: "ARG4" + - !!omap + - id: "YHR019C" + - name: "DED81" + - !!omap + - id: "YHR020W" + - name: "YHR020W" + - !!omap + - id: "YHR025W" + - name: "THR1" + - !!omap + - id: "YHR026W" + - name: "VMA16" + - !!omap + - id: "YHR037W" + - name: "PUT2" + - !!omap + - id: "YHR039C-A" + - name: "VMA10" + - !!omap + - id: "YHR042W" + - name: "NCP1" + - !!omap + - id: "YHR046C" + - name: "INM1" + - !!omap + - id: "YHR051W" + - name: "COX6" + - !!omap + - id: "YHR063C" + - name: "PAN5" + - !!omap + - id: "YHR067W" + - name: "HTD2" + - !!omap + - id: "YHR068W" + - name: "DYS1" + - !!omap + - id: "YHR072W" + - name: "ERG7" + - !!omap + - id: "YHR074W" + - name: "QNS1" + - !!omap + - id: "YHR091C" + - name: "MSR1" + - !!omap + - id: "YHR092C" + - name: "HXT4" + - !!omap + - id: "YHR094C" + - name: "HXT1" + - !!omap + - id: "YHR096C" + - name: "HXT5" + - !!omap + - id: "YHR100C" + - name: "GEP4" + - !!omap + - id: "YHR104W" + - name: "GRE3" + - !!omap + - id: "YHR106W" + - name: "TRR2" + - !!omap + - id: "YHR123W" + - name: "EPT1" + - !!omap + - id: "YHR128W" + - name: "FUR1" + - !!omap + - id: "YHR137W" + - name: "ARO9" + - !!omap + - id: "YHR144C" + - name: "DCD1" + - !!omap + - id: "YHR162W" + - name: "MPC2" + - !!omap + - id: "YHR163W" + - name: "SOL3" + - !!omap + - id: "YHR174W" + - name: "ENO2" + - !!omap + - id: "YHR183W" + - name: "GND1" + - !!omap + - id: "YHR190W" + - name: "ERG9" + - !!omap + - id: "YHR208W" + - name: "BAT1" + - !!omap + - id: "YHR216W" + - name: "IMD2" + - !!omap + - id: "YIL002C" + - name: "INP51" + - !!omap + - id: "YIL006W" + - name: "YIA6" + - !!omap + - id: "YIL009W" + - name: "FAA3" + - !!omap + - id: "YIL010W" + - name: "DOT5" + - !!omap + - id: "YIL013C" + - name: "PDR11" + - !!omap + - id: "YIL020C" + - name: "HIS6" + - !!omap + - id: "YIL053W" + - name: "GPP1" + - !!omap + - id: "YIL066C" + - name: "RNR3" + - !!omap + - id: "YIL074C" + - name: "SER33" + - !!omap + - id: "YIL078W" + - name: "THS1" + - !!omap + - id: "YIL083C" + - name: "CAB2" + - !!omap + - id: "YIL094C" + - name: "LYS12" + - !!omap + - id: "YIL099W" + - name: "SGA1" + - !!omap + - id: "YIL107C" + - name: "PFK26" + - !!omap + - id: "YIL111W" + - name: "COX5B" + - !!omap + - id: "YIL116W" + - name: "HIS5" + - !!omap + - id: "YIL124W" + - name: "AYR1" + - !!omap + - id: "YIL125W" + - name: "KGD1" + - !!omap + - id: "YIL134W" + - name: "FLX1" + - !!omap + - id: "YIL145C" + - name: "PAN6" + - !!omap + - id: "YIL155C" + - name: "GUT2" + - !!omap + - id: "YIL160C" + - name: "POT1" + - !!omap + - id: "YIL162W" + - name: "SUC2" + - !!omap + - id: "YIL172C" + - name: "IMA3" + - !!omap + - id: "YIR027C" + - name: "DAL1" + - !!omap + - id: "YIR028W" + - name: "DAL4" + - !!omap + - id: "YIR029W" + - name: "DAL2" + - !!omap + - id: "YIR031C" + - name: "DAL7" + - !!omap + - id: "YIR032C" + - name: "DAL3" + - !!omap + - id: "YIR034C" + - name: "LYS1" + - !!omap + - id: "YIR037W" + - name: "HYR1" + - !!omap + - id: "YJL005W" + - name: "CYR1" + - !!omap + - id: "YJL026W" + - name: "RNR2" + - !!omap + - id: "YJL045W" + - name: "YJL045W" + - !!omap + - id: "YJL052W" + - name: "TDH1" + - !!omap + - id: "YJL060W" + - name: "BNA3" + - !!omap + - id: "YJL068C" + - name: "YJL068C" + - !!omap + - id: "YJL071W" + - name: "ARG2" + - !!omap + - id: "YJL088W" + - name: "ARG3" + - !!omap + - id: "YJL091C" + - name: "GWT1" + - !!omap + - id: "YJL097W" + - name: "PHS1" + - !!omap + - id: "YJL100W" + - name: "LSB6" + - !!omap + - id: "YJL101C" + - name: "GSH1" + - !!omap + - id: "YJL121C" + - name: "RPE1" + - !!omap + - id: "YJL129C" + - name: "TRK1" + - !!omap + - id: "YJL130C" + - name: "URA2" + - !!omap + - id: "YJL134W" + - name: "LCB3" + - !!omap + - id: "YJL137C" + - name: "GLG2" + - !!omap + - id: "YJL139C" + - name: "YUR1" + - !!omap + - id: "YJL153C" + - name: "INO1" + - !!omap + - id: "YJL155C" + - name: "FBP26" + - !!omap + - id: "YJL166W" + - name: "QCR8" + - !!omap + - id: "YJL167W" + - name: "ERG20" + - !!omap + - id: "YJL196C" + - name: "ELO1" + - !!omap + - id: "YJL198W" + - name: "PHO90" + - !!omap + - id: "YJL212C" + - name: "OPT1" + - !!omap + - id: "YJL214W" + - name: "HXT8" + - !!omap + - id: "YJL216C" + - name: "IMA5" + - !!omap + - id: "YJL219W" + - name: "HXT9" + - !!omap + - id: "YJL221C" + - name: "IMA4" + - !!omap + - id: "YJR001W" + - name: "AVT1" + - !!omap + - id: "YJR009C" + - name: "TDH2" + - !!omap + - id: "YJR010W" + - name: "MET3" + - !!omap + - id: "YJR013W" + - name: "GPI14" + - !!omap + - id: "YJR016C" + - name: "ILV3" + - !!omap + - id: "YJR019C" + - name: "TES1" + - !!omap + - id: "YJR025C" + - name: "BNA1" + - !!omap + - id: "YJR048W" + - name: "CYC1" + - !!omap + - id: "YJR049C" + - name: "UTR1" + - !!omap + - id: "YJR057W" + - name: "CDC8" + - !!omap + - id: "YJR073C" + - name: "OPI3" + - !!omap + - id: "YJR077C" + - name: "MIR1" + - !!omap + - id: "YJR078W" + - name: "BNA2" + - !!omap + - id: "YJR095W" + - name: "SFC1" + - !!omap + - id: "YJR103W" + - name: "URA8" + - !!omap + - id: "YJR105W" + - name: "ADO1" + - !!omap + - id: "YJR109C" + - name: "CPA2" + - !!omap + - id: "YJR110W" + - name: "YMR1" + - !!omap + - id: "YJR121W" + - name: "ATP2" + - !!omap + - id: "YJR130C" + - name: "STR2" + - !!omap + - id: "YJR133W" + - name: "XPT1" + - !!omap + - id: "YJR137C" + - name: "MET5" + - !!omap + - id: "YJR139C" + - name: "HOM6" + - !!omap + - id: "YJR143C" + - name: "PMT4" + - !!omap + - id: "YJR148W" + - name: "BAT2" + - !!omap + - id: "YJR152W" + - name: "DAL5" + - !!omap + - id: "YJR153W" + - name: "PGU1" + - !!omap + - id: "YJR158W" + - name: "HXT16" + - !!omap + - id: "YJR159W" + - name: "SOR1" + - !!omap + - id: "YJR160C" + - name: "MPH3" + - !!omap + - id: "YKL001C" + - name: "MET14" + - !!omap + - id: "YKL004W" + - name: "AUR1" + - !!omap + - id: "YKL008C" + - name: "LAC1" + - !!omap + - id: "YKL016C" + - name: "ATP7" + - !!omap + - id: "YKL019W" + - name: "RAM2" + - !!omap + - id: "YKL024C" + - name: "URA6" + - !!omap + - id: "YKL026C" + - name: "GPX1" + - !!omap + - id: "YKL029C" + - name: "MAE1" + - !!omap + - id: "YKL035W" + - name: "UGP1" + - !!omap + - id: "YKL055C" + - name: "OAR1" + - !!omap + - id: "YKL060C" + - name: "FBA1" + - !!omap + - id: "YKL067W" + - name: "YNK1" + - !!omap + - id: "YKL080W" + - name: "VMA5" + - !!omap + - id: "YKL085W" + - name: "MDH1" + - !!omap + - id: "YKL088W" + - name: "CAB3" + - !!omap + - id: "YKL094W" + - name: "YJU3" + - !!omap + - id: "YKL104C" + - name: "GFA1" + - !!omap + - id: "YKL106W" + - name: "AAT1" + - !!omap + - id: "YKL120W" + - name: "OAC1" + - !!omap + - id: "YKL127W" + - name: "PGM1" + - !!omap + - id: "YKL132C" + - name: "RMA1" + - !!omap + - id: "YKL140W" + - name: "TGL1" + - !!omap + - id: "YKL141W" + - name: "SDH3" + - !!omap + - id: "YKL146W" + - name: "AVT3" + - !!omap + - id: "YKL148C" + - name: "SDH1" + - !!omap + - id: "YKL152C" + - name: "GPM1" + - !!omap + - id: "YKL165C" + - name: "MCD4" + - !!omap + - id: "YKL174C" + - name: "TPO5" + - !!omap + - id: "YKL181W" + - name: "PRS1" + - !!omap + - id: "YKL182W" + - name: "FAS1" + - !!omap + - id: "YKL184W" + - name: "SPE1" + - !!omap + - id: "YKL188C" + - name: "PXA2" + - !!omap + - id: "YKL192C" + - name: "ACP1" + - !!omap + - id: "YKL194C" + - name: "MST1" + - !!omap + - id: "YKL211C" + - name: "TRP3" + - !!omap + - id: "YKL212W" + - name: "SAC1" + - !!omap + - id: "YKL216W" + - name: "URA1" + - !!omap + - id: "YKL217W" + - name: "JEN1" + - !!omap + - id: "YKR009C" + - name: "FOX2" + - !!omap + - id: "YKR031C" + - name: "SPO14" + - !!omap + - id: "YKR039W" + - name: "GAP1" + - !!omap + - id: "YKR043C" + - name: "SHB17" + - !!omap + - id: "YKR053C" + - name: "YSR3" + - !!omap + - id: "YKR058W" + - name: "GLG1" + - !!omap + - id: "YKR061W" + - name: "KTR2" + - !!omap + - id: "YKR066C" + - name: "CCP1" + - !!omap + - id: "YKR067W" + - name: "GPT2" + - !!omap + - id: "YKR069W" + - name: "MET1" + - !!omap + - id: "YKR072C" + - name: "SIS2" + - !!omap + - id: "YKR080W" + - name: "MTD1" + - !!omap + - id: "YKR089C" + - name: "TGL4" + - !!omap + - id: "YKR097W" + - name: "PCK1" + - !!omap + - id: "YLL012W" + - name: "YEH1" + - !!omap + - id: "YLL015W" + - name: "BPT1" + - !!omap + - id: "YLL018C" + - name: "DPS1" + - !!omap + - id: "YLL028W" + - name: "TPO1" + - !!omap + - id: "YLL031C" + - name: "GPI13" + - !!omap + - id: "YLL041C" + - name: "SDH2" + - !!omap + - id: "YLL043W" + - name: "FPS1" + - !!omap + - id: "YLL048C" + - name: "YBT1" + - !!omap + - id: "YLL052C" + - name: "AQY2" + - !!omap + - id: "YLL057C" + - name: "JLP1" + - !!omap + - id: "YLL061W" + - name: "MMP1" + - !!omap + - id: "YLL062C" + - name: "MHT1" + - !!omap + - id: "YLR011W" + - name: "LOT6" + - !!omap + - id: "YLR017W" + - name: "MEU1" + - !!omap + - id: "YLR020C" + - name: "YEH2" + - !!omap + - id: "YLR027C" + - name: "AAT2" + - !!omap + - id: "YLR028C" + - name: "ADE16" + - !!omap + - id: "YLR038C" + - name: "COX12" + - !!omap + - id: "YLR043C" + - name: "TRX1" + - !!omap + - id: "YLR044C" + - name: "PDC1" + - !!omap + - id: "YLR056W" + - name: "ERG3" + - !!omap + - id: "YLR058C" + - name: "SHM2" + - !!omap + - id: "YLR060W" + - name: "FRS1" + - !!omap + - id: "YLR070C" + - name: "XYL2" + - !!omap + - id: "YLR081W" + - name: "GAL2" + - !!omap + - id: "YLR089C" + - name: "ALT1" + - !!omap + - id: "YLR092W" + - name: "SUL2" + - !!omap + - id: "YLR100W" + - name: "ERG27" + - !!omap + - id: "YLR109W" + - name: "AHP1" + - !!omap + - id: "YLR133W" + - name: "CKI1" + - !!omap + - id: "YLR134W" + - name: "PDC5" + - !!omap + - id: "YLR138W" + - name: "NHA1" + - !!omap + - id: "YLR142W" + - name: "PUT1" + - !!omap + - id: "YLR146C" + - name: "SPE4" + - !!omap + - id: "YLR153C" + - name: "ACS2" + - !!omap + - id: "YLR155C" + - name: "ASP3-1" + - !!omap + - id: "YLR157C" + - name: "ASP3-2" + - !!omap + - id: "YLR158C" + - name: "ASP3-3" + - !!omap + - id: "YLR160C" + - name: "ASP3-4" + - !!omap + - id: "YLR172C" + - name: "DPH5" + - !!omap + - id: "YLR174W" + - name: "IDP2" + - !!omap + - id: "YLR180W" + - name: "SAM1" + - !!omap + - id: "YLR189C" + - name: "ATG26" + - !!omap + - id: "YLR201C" + - name: "COQ9" + - !!omap + - id: "YLR209C" + - name: "PNP1" + - !!omap + - id: "YLR231C" + - name: "BNA5" + - !!omap + - id: "YLR237W" + - name: "THI7" + - !!omap + - id: "YLR240W" + - name: "VPS34" + - !!omap + - id: "YLR245C" + - name: "CDD1" + - !!omap + - id: "YLR258W" + - name: "GSY2" + - !!omap + - id: "YLR260W" + - name: "LCB5" + - !!omap + - id: "YLR284C" + - name: "ECI1" + - !!omap + - id: "YLR285W" + - name: "NNT1" + - !!omap + - id: "YLR295C" + - name: "ATP14" + - !!omap + - id: "YLR299W" + - name: "ECM38" + - !!omap + - id: "YLR300W" + - name: "EXG1" + - !!omap + - id: "YLR303W" + - name: "MET17" + - !!omap + - id: "YLR304C" + - name: "ACO1" + - !!omap + - id: "YLR305C" + - name: "STT4" + - !!omap + - id: "YLR307W" + - name: "CDA1" + - !!omap + - id: "YLR308W" + - name: "CDA2" + - !!omap + - id: "YLR328W" + - name: "NMA1" + - !!omap + - id: "YLR342W" + - name: "FKS1" + - !!omap + - id: "YLR348C" + - name: "DIC1" + - !!omap + - id: "YLR354C" + - name: "TAL1" + - !!omap + - id: "YLR355C" + - name: "ILV5" + - !!omap + - id: "YLR359W" + - name: "ADE13" + - !!omap + - id: "YLR372W" + - name: "ELO3" + - !!omap + - id: "YLR377C" + - name: "FBP1" + - !!omap + - id: "YLR382C" + - name: "NAM2" + - !!omap + - id: "YLR386W" + - name: "VAC14" + - !!omap + - id: "YLR395C" + - name: "COX8" + - !!omap + - id: "YLR410W" + - name: "VIP1" + - !!omap + - id: "YLR420W" + - name: "URA4" + - !!omap + - id: "YLR432W" + - name: "IMD3" + - !!omap + - id: "YLR438W" + - name: "CAR2" + - !!omap + - id: "YLR447C" + - name: "VMA6" + - !!omap + - id: "YLR450W" + - name: "HMG2" + - !!omap + - id: "YML004C" + - name: "GLO1" + - !!omap + - id: "YML008C" + - name: "ERG6" + - !!omap + - id: "YML022W" + - name: "APT1" + - !!omap + - id: "YML035C" + - name: "AMD1" + - !!omap + - id: "YML042W" + - name: "CAT2" + - !!omap + - id: "YML054C" + - name: "CYB2" + - !!omap + - id: "YML056C" + - name: "IMD4" + - !!omap + - id: "YML059C" + - name: "NTE1" + - !!omap + - id: "YML070W" + - name: "DAK1" + - !!omap + - id: "YML075C" + - name: "HMG1" + - !!omap + - id: "YML081C-A" + - name: "ATP18" + - !!omap + - id: "YML086C" + - name: "ALO1" + - !!omap + - id: "YML100W" + - name: "TSL1" + - !!omap + - id: "YML106W" + - name: "URA5" + - !!omap + - id: "YML110C" + - name: "COQ5" + - !!omap + - id: "YML120C" + - name: "NDI1" + - !!omap + - id: "YML123C" + - name: "PHO84" + - !!omap + - id: "YML126C" + - name: "ERG13" + - !!omap + - id: "YMR006C" + - name: "PLB2" + - !!omap + - id: "YMR008C" + - name: "PLB1" + - !!omap + - id: "YMR009W" + - name: "ADI1" + - !!omap + - id: "YMR011W" + - name: "HXT2" + - !!omap + - id: "YMR013C" + - name: "SEC59" + - !!omap + - id: "YMR015C" + - name: "ERG5" + - !!omap + - id: "YMR020W" + - name: "FMS1" + - !!omap + - id: "YMR041C" + - name: "ARA2" + - !!omap + - id: "YMR054W" + - name: "STV1" + - !!omap + - id: "YMR056C" + - name: "AAC1" + - !!omap + - id: "YMR062C" + - name: "ARG7" + - !!omap + - id: "YMR083W" + - name: "ADH3" + - !!omap + - id: "YMR088C" + - name: "VBA1" + - !!omap + - id: "YMR101C" + - name: "SRT1" + - !!omap + - id: "YMR105C" + - name: "PGM2" + - !!omap + - id: "YMR108W" + - name: "ILV2" + - !!omap + - id: "YMR113W" + - name: "FOL3" + - !!omap + - id: "YMR120C" + - name: "ADE17" + - !!omap + - id: "YMR145C" + - name: "NDE1" + - !!omap + - id: "YMR165C" + - name: "PAH1" + - !!omap + - id: "YMR169C" + - name: "ALD3" + - !!omap + - id: "YMR170C" + - name: "ALD2" + - !!omap + - id: "YMR189W" + - name: "GCV2" + - !!omap + - id: "YMR202W" + - name: "ERG2" + - !!omap + - id: "YMR205C" + - name: "PFK2" + - !!omap + - id: "YMR207C" + - name: "HFA1" + - !!omap + - id: "YMR208W" + - name: "ERG12" + - !!omap + - id: "YMR217W" + - name: "GUA1" + - !!omap + - id: "YMR220W" + - name: "ERG8" + - !!omap + - id: "YMR226C" + - name: "YMR226C" + - !!omap + - id: "YMR241W" + - name: "YHM2" + - !!omap + - id: "YMR246W" + - name: "FAA4" + - !!omap + - id: "YMR250W" + - name: "GAD1" + - !!omap + - id: "YMR256C" + - name: "COX7" + - !!omap + - id: "YMR261C" + - name: "TPS3" + - !!omap + - id: "YMR267W" + - name: "PPA2" + - !!omap + - id: "YMR271C" + - name: "URA10" + - !!omap + - id: "YMR272C" + - name: "SCS7" + - !!omap + - id: "YMR278W" + - name: "PRM15" + - !!omap + - id: "YMR281W" + - name: "GPI12" + - !!omap + - id: "YMR289W" + - name: "ABZ2" + - !!omap + - id: "YMR293C" + - name: "HER2" + - !!omap + - id: "YMR296C" + - name: "LCB1" + - !!omap + - id: "YMR298W" + - name: "LIP1" + - !!omap + - id: "YMR300C" + - name: "ADE4" + - !!omap + - id: "YMR303C" + - name: "ADH2" + - !!omap + - id: "YMR313C" + - name: "TGL3" + - !!omap + - id: "YMR318C" + - name: "ADH6" + - !!omap + - id: "YMR319C" + - name: "FET4" + - !!omap + - id: "YNL003C" + - name: "PET8" + - !!omap + - id: "YNL009W" + - name: "IDP3" + - !!omap + - id: "YNL029C" + - name: "KTR5" + - !!omap + - id: "YNL037C" + - name: "IDH1" + - !!omap + - id: "YNL045W" + - name: "LAP2" + - !!omap + - id: "YNL052W" + - name: "COX5A" + - !!omap + - id: "YNL071W" + - name: "LAT1" + - !!omap + - id: "YNL073W" + - name: "MSK1" + - !!omap + - id: "YNL101W" + - name: "AVT4" + - !!omap + - id: "YNL104C" + - name: "LEU4" + - !!omap + - id: "YNL106C" + - name: "INP52" + - !!omap + - id: "YNL117W" + - name: "MLS1" + - !!omap + - id: "YNL129W" + - name: "NRK1" + - !!omap + - id: "YNL130C" + - name: "CPT1" + - !!omap + - id: "YNL141W" + - name: "AAH1" + - !!omap + - id: "YNL142W" + - name: "MEP2" + - !!omap + - id: "YNL169C" + - name: "PSD1" + - !!omap + - id: "YNL192W" + - name: "CHS1" + - !!omap + - id: "YNL202W" + - name: "SPS19" + - !!omap + - id: "YNL220W" + - name: "ADE12" + - !!omap + - id: "YNL241C" + - name: "ZWF1" + - !!omap + - id: "YNL247W" + - name: "YNL247W" + - !!omap + - id: "YNL256W" + - name: "FOL1" + - !!omap + - id: "YNL267W" + - name: "PIK1" + - !!omap + - id: "YNL268W" + - name: "LYP1" + - !!omap + - id: "YNL270C" + - name: "ALP1" + - !!omap + - id: "YNL277W" + - name: "MET2" + - !!omap + - id: "YNL280C" + - name: "ERG24" + - !!omap + - id: "YNL292W" + - name: "PUS4" + - !!omap + - id: "YNL316C" + - name: "PHA2" + - !!omap + - id: "YNL318C" + - name: "HXT14" + - !!omap + - id: "YNL325C" + - name: "FIG4" + - !!omap + - id: "YNR001C" + - name: "CIT1" + - !!omap + - id: "YNR008W" + - name: "LRO1" + - !!omap + - id: "YNR012W" + - name: "URK1" + - !!omap + - id: "YNR013C" + - name: "PHO91" + - !!omap + - id: "YNR016C" + - name: "ACC1" + - !!omap + - id: "YNR019W" + - name: "ARE2" + - !!omap + - id: "YNR033W" + - name: "ABZ1" + - !!omap + - id: "YNR041C" + - name: "COQ2" + - !!omap + - id: "YNR043W" + - name: "MVD1" + - !!omap + - id: "YNR050C" + - name: "LYS9" + - !!omap + - id: "YNR056C" + - name: "BIO5" + - !!omap + - id: "YNR057C" + - name: "BIO4" + - !!omap + - id: "YNR058W" + - name: "BIO3" + - !!omap + - id: "YNR067C" + - name: "DSE4" + - !!omap + - id: "YNR072W" + - name: "HXT17" + - !!omap + - id: "YOL011W" + - name: "PLB3" + - !!omap + - id: "YOL020W" + - name: "TAT2" + - !!omap + - id: "YOL033W" + - name: "MSE1" + - !!omap + - id: "YOL049W" + - name: "GSH2" + - !!omap + - id: "YOL052C" + - name: "SPE2" + - !!omap + - id: "YOL055C" + - name: "THI20" + - !!omap + - id: "YOL058W" + - name: "ARG1" + - !!omap + - id: "YOL059W" + - name: "GPD2" + - !!omap + - id: "YOL061W" + - name: "PRS5" + - !!omap + - id: "YOL064C" + - name: "MET22" + - !!omap + - id: "YOL065C" + - name: "INP54" + - !!omap + - id: "YOL066C" + - name: "RIB2" + - !!omap + - id: "YOL068C" + - name: "HST1" + - !!omap + - id: "YOL086C" + - name: "ADH1" + - !!omap + - id: "YOL096C" + - name: "COQ3" + - !!omap + - id: "YOL097C" + - name: "WRS1" + - !!omap + - id: "YOL103W" + - name: "ITR2" + - !!omap + - id: "YOL126C" + - name: "MDH2" + - !!omap + - id: "YOL136C" + - name: "PFK27" + - !!omap + - id: "YOL140W" + - name: "ARG8" + - !!omap + - id: "YOL143C" + - name: "RIB4" + - !!omap + - id: "YOL151W" + - name: "GRE2" + - !!omap + - id: "YOL156W" + - name: "HXT11" + - !!omap + - id: "YOR011W" + - name: "AUS1" + - !!omap + - id: "YOR025W" + - name: "HST3" + - !!omap + - id: "YOR040W" + - name: "GLO4" + - !!omap + - id: "YOR054C" + - name: "VHS3" + - !!omap + - id: "YOR065W" + - name: "CYT1" + - !!omap + - id: "YOR071C" + - name: "NRT1" + - !!omap + - id: "YOR074C" + - name: "CDC21" + - !!omap + - id: "YOR081C" + - name: "TGL5" + - !!omap + - id: "YOR095C" + - name: "RKI1" + - !!omap + - id: "YOR099W" + - name: "KTR1" + - !!omap + - id: "YOR100C" + - name: "CRC1" + - !!omap + - id: "YOR108W" + - name: "LEU9" + - !!omap + - id: "YOR109W" + - name: "INP53" + - !!omap + - id: "YOR120W" + - name: "GCY1" + - !!omap + - id: "YOR125C" + - name: "CAT5" + - !!omap + - id: "YOR126C" + - name: "IAH1" + - !!omap + - id: "YOR128C" + - name: "ADE2" + - !!omap + - id: "YOR130C" + - name: "ORT1" + - !!omap + - id: "YOR136W" + - name: "IDH2" + - !!omap + - id: "YOR142W" + - name: "LSC1" + - !!omap + - id: "YOR143C" + - name: "THI80" + - !!omap + - id: "YOR155C" + - name: "ISN1" + - !!omap + - id: "YOR163W" + - name: "DDP1" + - !!omap + - id: "YOR168W" + - name: "GLN4" + - !!omap + - id: "YOR171C" + - name: "LCB4" + - !!omap + - id: "YOR175C" + - name: "ALE1" + - !!omap + - id: "YOR176W" + - name: "HEM15" + - !!omap + - id: "YOR180C" + - name: "DCI1" + - !!omap + - id: "YOR184W" + - name: "SER1" + - !!omap + - id: "YOR190W" + - name: "SPR1" + - !!omap + - id: "YOR192C" + - name: "THI72" + - !!omap + - id: "YOR202W" + - name: "HIS3" + - !!omap + - id: "YOR209C" + - name: "NPT1" + - !!omap + - id: "YOR221C" + - name: "MCT1" + - !!omap + - id: "YOR222W" + - name: "ODC2" + - !!omap + - id: "YOR236W" + - name: "DFR1" + - !!omap + - id: "YOR241W" + - name: "MET7" + - !!omap + - id: "YOR245C" + - name: "DGA1" + - !!omap + - id: "YOR270C" + - name: "VPH1" + - !!omap + - id: "YOR273C" + - name: "TPO4" + - !!omap + - id: "YOR278W" + - name: "HEM4" + - !!omap + - id: "YOR303W" + - name: "CPA1" + - !!omap + - id: "YOR311C" + - name: "DGK1" + - !!omap + - id: "YOR317W" + - name: "FAA1" + - !!omap + - id: "YOR321W" + - name: "PMT3" + - !!omap + - id: "YOR323C" + - name: "PRO2" + - !!omap + - id: "YOR332W" + - name: "VMA4" + - !!omap + - id: "YOR335C" + - name: "ALA1" + - !!omap + - id: "YOR347C" + - name: "PYK2" + - !!omap + - id: "YOR348C" + - name: "PUT4" + - !!omap + - id: "YOR360C" + - name: "PDE2" + - !!omap + - id: "YOR374W" + - name: "ALD4" + - !!omap + - id: "YOR375C" + - name: "GDH1" + - !!omap + - id: "YOR377W" + - name: "ATF1" + - !!omap + - id: "YOR388C" + - name: "FDH1" + - !!omap + - id: "YPL015C" + - name: "HST2" + - !!omap + - id: "YPL023C" + - name: "MET12" + - !!omap + - id: "YPL028W" + - name: "ERG10" + - !!omap + - id: "YPL036W" + - name: "PMA2" + - !!omap + - id: "YPL040C" + - name: "ISM1" + - !!omap + - id: "YPL053C" + - name: "KTR6" + - !!omap + - id: "YPL057C" + - name: "SUR1" + - !!omap + - id: "YPL059W" + - name: "GRX5" + - !!omap + - id: "YPL061W" + - name: "ALD6" + - !!omap + - id: "YPL069C" + - name: "BTS1" + - !!omap + - id: "YPL078C" + - name: "ATP4" + - !!omap + - id: "YPL087W" + - name: "YDC1" + - !!omap + - id: "YPL091W" + - name: "GLR1" + - !!omap + - id: "YPL092W" + - name: "SSU1" + - !!omap + - id: "YPL097W" + - name: "MSY1" + - !!omap + - id: "YPL104W" + - name: "MSD1" + - !!omap + - id: "YPL110C" + - name: "GDE1" + - !!omap + - id: "YPL111W" + - name: "CAR1" + - !!omap + - id: "YPL117C" + - name: "IDI1" + - !!omap + - id: "YPL134C" + - name: "ODC1" + - !!omap + - id: "YPL147W" + - name: "PXA1" + - !!omap + - id: "YPL148C" + - name: "PPT2" + - !!omap + - id: "YPL160W" + - name: "CDC60" + - !!omap + - id: "YPL172C" + - name: "COX10" + - !!omap + - id: "YPL188W" + - name: "POS5" + - !!omap + - id: "YPL189W" + - name: "GUP2" + - !!omap + - id: "YPL206C" + - name: "PGC1" + - !!omap + - id: "YPL212C" + - name: "PUS1" + - !!omap + - id: "YPL214C" + - name: "THI6" + - !!omap + - id: "YPL231W" + - name: "FAS2" + - !!omap + - id: "YPL234C" + - name: "VMA11" + - !!omap + - id: "YPL244C" + - name: "HUT1" + - !!omap + - id: "YPL252C" + - name: "YAH1" + - !!omap + - id: "YPL258C" + - name: "THI21" + - !!omap + - id: "YPL262W" + - name: "FUM1" + - !!omap + - id: "YPL265W" + - name: "DIP5" + - !!omap + - id: "YPL268W" + - name: "PLC1" + - !!omap + - id: "YPL271W" + - name: "ATP15" + - !!omap + - id: "YPL273W" + - name: "SAM4" + - !!omap + - id: "YPL274W" + - name: "SAM3" + - !!omap + - id: "YPR001W" + - name: "CIT3" + - !!omap + - id: "YPR002W" + - name: "PDH1" + - !!omap + - id: "YPR006C" + - name: "ICL2" + - !!omap + - id: "YPR020W" + - name: "ATP20" + - !!omap + - id: "YPR021C" + - name: "AGC1" + - !!omap + - id: "YPR026W" + - name: "ATH1" + - !!omap + - id: "YPR033C" + - name: "HTS1" + - !!omap + - id: "YPR035W" + - name: "GLN1" + - !!omap + - id: "YPR036W" + - name: "VMA13" + - !!omap + - id: "YPR047W" + - name: "MSF1" + - !!omap + - id: "YPR060C" + - name: "ARO7" + - !!omap + - id: "YPR062W" + - name: "FCY1" + - !!omap + - id: "YPR069C" + - name: "SPE3" + - !!omap + - id: "YPR074C" + - name: "TKL1" + - !!omap + - id: "YPR081C" + - name: "GRS2" + - !!omap + - id: "YPR113W" + - name: "PIS1" + - !!omap + - id: "YPR121W" + - name: "THI22" + - !!omap + - id: "YPR128C" + - name: "ANT1" + - !!omap + - id: "YPR138C" + - name: "MEP3" + - !!omap + - id: "YPR140W" + - name: "TAZ1" + - !!omap + - id: "YPR145W" + - name: "ASN1" + - !!omap + - id: "YPR156C" + - name: "TPO3" + - !!omap + - id: "YPR159W" + - name: "KRE6" + - !!omap + - id: "YPR160W" + - name: "GPH1" + - !!omap + - id: "YPR167C" + - name: "MET16" + - !!omap + - id: "YPR183W" + - name: "DPM1" + - !!omap + - id: "YPR184W" + - name: "GDB1" + - !!omap + - id: "YPR191W" + - name: "QCR2" + - !!omap + - id: "YPR192W" + - name: "AQY1" + - !!omap + - id: "YHR215W" + - name: "PHO12" + - !!omap + - id: "YMR058W" + - name: "FET3" + - !!omap + - id: "YDR538W" + - name: "PAD1" + - !!omap + - id: "YDR539W" + - name: "FDC1" + - !!omap + - id: "YJR024C" + - name: "MDE1" + - !!omap + - id: "YPR118W" + - name: "MRI1" + - !!omap + - id: "YDL040C" + - name: "NAT1" + - !!omap + - id: "YGR147C" + - name: "NAT2" + - !!omap + - id: "YHR013C" + - name: "ARD1" + - !!omap + - id: "YFL058W" + - name: "THI5" + - !!omap + - id: "YDR071C" + - name: "PAA1" + - !!omap + - id: "YFR055W" + - name: "IRC7" + - !!omap + - id: "YDL166C" + - name: "FAP7" + - !!omap + - id: "YDR020C" + - name: "DAS2" + - !!omap + - id: "YCL005W-A" + - name: "VMA9" + - !!omap + - id: "YJL180C" + - name: "ATP12" + - !!omap + - id: "YLR393W" + - name: "ATP10" + - !!omap + - id: "YNL315C" + - name: "ATP11" + - !!omap + - id: "YOL077W-A" + - name: "ATP19" + - !!omap + - id: "YJR069C" + - name: "HAM1" + - !!omap + - id: "YLL058W" + - name: "YLL058W" + - !!omap + - id: "YML082W" + - name: "YML082W" + - !!omap + - id: "YLR345W" + - name: "YLR345W" + - !!omap + - id: "YLR446W" + - name: "YLR446W" + - !!omap + - id: "YMR084W" + - name: "YMR084W" + - !!omap + - id: "YMR110C" + - name: "HFD1" + - !!omap + - id: "YNL229C" + - name: "URE2" + - !!omap + - id: "YNR027W" + - name: "BUD17" + - !!omap + - id: "YOL092W" + - name: "YPQ1" + - !!omap + - id: "YMR323W" + - name: "ERR3" + - !!omap + - id: "YOR393W" + - name: "ERR1" + - !!omap + - id: "YPL281C" + - name: "ERR2" + - !!omap + - id: "YBR241C" + - name: "YBR241C" + - !!omap + - id: "YGL104C" + - name: "VPS73" + - !!omap + - id: "YCL047C" + - name: "POF1" + - !!omap + - id: "YER141W" + - name: "COX15" + - !!omap + - id: "YHL012W" + - name: "YHL012W" + - !!omap + - id: "YFL060C" + - name: "SNO3" + - !!omap + - id: "YDR231C" + - name: "COX20" + - !!omap + - id: "YGR062C" + - name: "COX18" + - !!omap + - id: "YHR116W" + - name: "COX23" + - !!omap + - id: "YJL003W" + - name: "COX16" + - !!omap + - id: "YLL018C-A" + - name: "COX19" + - !!omap + - id: "YPL132W" + - name: "COX11" + - !!omap + - id: "YDR387C" + - name: "CIN10" + - !!omap + - id: "YCR068W" + - name: "ATG15" + - !!omap + - id: "YAL035W" + - name: "FUN12" + - !!omap + - id: "YLL001W" + - name: "DNM1" + - !!omap + - id: "YNL036W" + - name: "NCE103" + - !!omap + - id: "YMR306W" + - name: "FKS3" + - !!omap + - id: "YFL054C" + - name: "AQY3" + - !!omap + - id: "YDR105C" + - name: "TMS1" + - !!omap + - id: "YDR456W" + - name: "NHX1" + - !!omap + - id: "YBR001C" + - name: "NTH2" + - !!omap + - id: "YDL024C" + - name: "DIA3" + - !!omap + - id: "YDL246C" + - name: "SOR2" + - !!omap + - id: "YDR242W" + - name: "AMD2" + - !!omap + - id: "YDR441C" + - name: "APT2" + - !!omap + - id: "YJL200C" + - name: "ACO2" + - !!omap + - id: "YOR283W" + - name: "YOR283W" + - !!omap + - id: "YGR043C" + - name: "NQM1" + - !!omap + - id: "YLR164W" + - name: "SHH4" + - !!omap + - id: "YNL334C" + - name: "SNO2" + - !!omap + - id: "YAL039C" + - name: "CYC3" + - !!omap + - id: "YKL087C" + - name: "CYT2" + - !!omap + - id: "YAL061W" + - name: "BDH2" + - !!omap + - id: "YBL080C" + - name: "PET112" + - !!omap + - id: "YBL091C" + - name: "MAP2" + - !!omap + - id: "YLR244C" + - name: "MAP1" + - !!omap + - id: "YBR022W" + - name: "POA1" + - !!omap + - id: "YMR087W" + - name: "YMR087W" + - !!omap + - id: "YBR046C" + - name: "ZTA1" + - !!omap + - id: "YBR070C" + - name: "ALG14" + - !!omap + - id: "YGL047W" + - name: "ALG13" + - !!omap + - id: "YBR111C" + - name: "YSA1" + - !!omap + - id: "YBR147W" + - name: "RTC2" + - !!omap + - id: "YDR352W" + - name: "YPQ2" + - !!omap + - id: "YBR222C" + - name: "PCS60" + - !!omap + - id: "YBR229C" + - name: "ROT2" + - !!omap + - id: "YBR235W" + - name: "VHC1" + - !!omap + - id: "YBR243C" + - name: "ALG7" + - !!omap + - id: "YBR281C" + - name: "DUG2" + - !!omap + - id: "YNL191W" + - name: "DUG3" + - !!omap + - id: "YBR295W" + - name: "PCA1" + - !!omap + - id: "YCL017C" + - name: "NFS1" + - !!omap + - id: "YCR011C" + - name: "ADP1" + - !!omap + - id: "YCR107W" + - name: "AAD3" + - !!omap + - id: "YDL243C" + - name: "AAD4" + - !!omap + - id: "YJR155W" + - name: "AAD10" + - !!omap + - id: "YNL331C" + - name: "AAD14" + - !!omap + - id: "YOL165C" + - name: "AAD15" + - !!omap + - id: "YPL088W" + - name: "YPL088W" + - !!omap + - id: "YEL031W" + - name: "SPF1" + - !!omap + - id: "YEL070W" + - name: "DSF1" + - !!omap + - id: "YNR073C" + - name: "MAN2" + - !!omap + - id: "YER010C" + - name: "YER010C" + - !!omap + - id: "YER042W" + - name: "MXR1" + - !!omap + - id: "YER087W" + - name: "AIM10" + - !!omap + - id: "YER163C" + - name: "GCG1" + - !!omap + - id: "YHL018W" + - name: "YHL018W" + - !!omap + - id: "YHR008C" + - name: "SOD2" + - !!omap + - id: "YHR043C" + - name: "DOG2" + - !!omap + - id: "YHR044C" + - name: "DOG1" + - !!omap + - id: "YHR109W" + - name: "CTM1" + - !!omap + - id: "YDR440W" + - name: "DOT1" + - !!omap + - id: "YHR119W" + - name: "SET1" + - !!omap + - id: "YJL168C" + - name: "SET2" + - !!omap + - id: "YIL023C" + - name: "YKE4" + - !!omap + - id: "YMR243C" + - name: "ZRC1" + - !!omap + - id: "YOR316C" + - name: "COT1" + - !!omap + - id: "YIL043C" + - name: "CBR1" + - !!omap + - id: "YML125C" + - name: "PGA3" + - !!omap + - id: "YKL150W" + - name: "MCR1" + - !!omap + - id: "YIR036C" + - name: "IRC24" + - !!omap + - id: "YIR038C" + - name: "GTT1" + - !!omap + - id: "YKR076W" + - name: "ECM4" + - !!omap + - id: "YMR251W" + - name: "GTO3" + - !!omap + - id: "YLL060C" + - name: "GTT2" + - !!omap + - id: "YKL069W" + - name: "YKL069W" + - !!omap + - id: "YKL103C" + - name: "APE1" + - !!omap + - id: "YKL215C" + - name: "OXP1" + - !!omap + - id: "YKL218C" + - name: "SRY1" + - !!omap + - id: "YGR154C" + - name: "GTO1" + - !!omap + - id: "YFL061W" + - name: "DDI2" + - !!omap + - id: "YNL335W" + - name: "DDI3" + - !!omap + - id: "YFL059W" + - name: "SNZ3" + - !!omap + - id: "YNL333W" + - name: "SNZ2" + - !!omap + - id: "YFR044C" + - name: "DUG1" + - !!omap + - id: "YDL120W" + - name: "YFH1" + - !!omap + - id: "YDL219W" + - name: "DTD1" + - !!omap + - id: "YDL236W" + - name: "PHO13" + - !!omap + - id: "YDR009W" + - name: "GAL3" + - !!omap + - id: "YDR036C" + - name: "EHD3" + - !!omap + - id: "YDR038C" + - name: "ENA5" + - !!omap + - id: "YDR039C" + - name: "ENA2" + - !!omap + - id: "YDR040C" + - name: "ENA1" + - !!omap + - id: "YDR051C" + - name: "DET1" + - !!omap + - id: "YOL075C" + - name: "YOL075C" + - !!omap + - id: "YDR111C" + - name: "ALT2" + - !!omap + - id: "YDR248C" + - name: "YDR248C" + - !!omap + - id: "YDR410C" + - name: "STE14" + - !!omap + - id: "YDR437W" + - name: "GPI19" + - !!omap + - id: "YGR216C" + - name: "GPI1" + - !!omap + - id: "YNL038W" + - name: "GPI15" + - !!omap + - id: "YPL076W" + - name: "GPI2" + - !!omap + - id: "YPL096C-A" + - name: "ERI1" + - !!omap + - id: "YPL175W" + - name: "SPT14" + - !!omap + - id: "YDR516C" + - name: "EMI2" + - !!omap + - id: "YDR533C" + - name: "HSP31" + - !!omap + - id: "YMR322C" + - name: "SNO4" + - !!omap + - id: "YOR391C" + - name: "HSP33" + - !!omap + - id: "YPL280W" + - name: "HSP32" + - !!omap + - id: "YGL006W" + - name: "PMC1" + - !!omap + - id: "YGL167C" + - name: "PMR1" + - !!omap + - id: "YGL017W" + - name: "ATE1" + - !!omap + - id: "YGL022W" + - name: "STT3" + - !!omap + - id: "YGL027C" + - name: "CWH41" + - !!omap + - id: "YGL038C" + - name: "OCH1" + - !!omap + - id: "YGL065C" + - name: "ALG2" + - !!omap + - id: "YGL156W" + - name: "AMS1" + - !!omap + - id: "YGL169W" + - name: "SUA5" + - !!omap + - id: "YGL196W" + - name: "DSD1" + - !!omap + - id: "YGR012W" + - name: "MCY1" + - !!omap + - id: "YGR036C" + - name: "CAX4" + - !!omap + - id: "YGR046W" + - name: "TAM41" + - !!omap + - id: "YGR144W" + - name: "THI4" + - !!omap + - id: "YGR227W" + - name: "DIE2" + - !!omap + - id: "YGR234W" + - name: "YHB1" + - !!omap + - id: "YJL046W" + - name: "AIM22" + - !!omap + - id: "YJL126W" + - name: "NIT2" + - !!omap + - id: "YJR040W" + - name: "GEF1" + - !!omap + - id: "YJR051W" + - name: "OSM1" + - !!omap + - id: "YJR104C" + - name: "SOD1" + - !!omap + - id: "YJR131W" + - name: "MNS1" + - !!omap + - id: "YLR057W" + - name: "MNL2" + - !!omap + - id: "YJR149W" + - name: "YJR149W" + - !!omap + - id: "YKL220C" + - name: "FRE2" + - !!omap + - id: "YLR047C" + - name: "FRE8" + - !!omap + - id: "YLR214W" + - name: "FRE1" + - !!omap + - id: "YNR060W" + - name: "FRE4" + - !!omap + - id: "YOL152W" + - name: "FRE7" + - !!omap + - id: "YOR381W" + - name: "FRE3" + - !!omap + - id: "YOR384W" + - name: "FRE5" + - !!omap + - id: "YLL051C" + - name: "FRE6" + - !!omap + - id: "YLR099C" + - name: "ICT1" + - !!omap + - id: "YPR139C" + - name: "LOA1" + - !!omap + - id: "YLR143W" + - name: "DPH6" + - !!omap + - id: "YLR151C" + - name: "PCD1" + - !!omap + - id: "YLR239C" + - name: "LIP2" + - !!omap + - id: "YMR099C" + - name: "YMR099C" + - !!omap + - id: "YMR162C" + - name: "DNF3" + - !!omap + - id: "YMR210W" + - name: "MGL2" + - !!omap + - id: "YNL048W" + - name: "ALG11" + - !!omap + - id: "YNL092W" + - name: "YNL092W" + - !!omap + - id: "YNL219C" + - name: "ALG9" + - !!omap + - id: "YNL274C" + - name: "GOR1" + - !!omap + - id: "YNR030W" + - name: "ALG12" + - !!omap + - id: "YOL157C" + - name: "IMA2" + - !!omap + - id: "YOR002W" + - name: "ALG6" + - !!omap + - id: "YOR067C" + - name: "ALG8" + - !!omap + - id: "YOR149C" + - name: "SMP3" + - !!omap + - id: "YOR196C" + - name: "LIP5" + - !!omap + - id: "YOR226C" + - name: "ISU2" + - !!omap + - id: "YPL135W" + - name: "ISU1" + - !!omap + - id: "YOR251C" + - name: "TUM1" + - !!omap + - id: "YOR285W" + - name: "RDL1" + - !!omap + - id: "YOR286W" + - name: "RDL2" + - !!omap + - id: "YOR334W" + - name: "MRS2" + - !!omap + - id: "YPL060W" + - name: "MFM1" + - !!omap + - id: "YPL227C" + - name: "ALG5" + - !!omap + - id: "YPR003C" + - name: "YPR003C" + - !!omap + - id: "YPR127W" + - name: "YPR127W" + - !!omap + - id: "YDR371W" + - name: "CTS2" + - !!omap + - id: "YLR286C" + - name: "CTS1" + - !!omap + - id: "YOR161C" + - name: "PNS1" + - !!omap + - id: "YDR452W" + - name: "PPN1" + - !!omap + - id: "YHR201C" + - name: "PPX1" + - !!omap + - id: "YDR270W" + - name: "CCC2" + - !!omap + - id: "YLR351C" + - name: "NIT3" + - !!omap + - id: "YMR301C" + - name: "ATM1" + - !!omap + - id: "YEL004W" + - name: "YEA4" + - !!omap + - id: "YEL066W" + - name: "HPA3" + - !!omap + - id: "YOL122C" + - name: "SMF1" + - !!omap + - id: "YNL275W" + - name: "BOR1" + - !!omap + - id: "YGL255W" + - name: "ZRT1" + - !!omap + - id: "YLR130C" + - name: "ZRT2" + - !!omap + - id: "YOL130W" + - name: "ALR1" + - !!omap + - id: "YNL065W" + - name: "AQR1" + - !!omap + - id: "YKR093W" + - name: "PTR2" + - !!omap + - id: "YDR093W" + - name: "DNF2" + - !!omap + - id: "YOR306C" + - name: "MCH5" + - !!omap + - id: "YPR011C" + - name: "YPR011C" + - !!omap + - id: "YLL053C" + - name: "YLL053C" + - !!omap + - id: "YJL133W" + - name: "MRS3" + - !!omap + - id: "YKR052C" + - name: "MRS4" + - !!omap + - id: "YPR058W" + - name: "YMC1" + - !!omap + - id: "YIL048W" + - name: "NEO1" + - !!omap + - id: "YAL026C" + - name: "DRS2" + - !!omap + - id: "YBR177C" + - name: "EHT1" + - !!omap + - id: "YPL095C" + - name: "EEB1" + - !!omap + - id: "YGR015C" + - name: "EAT1" - compartments: !!omap - c: "cytoplasm" - ce: "cell envelope" From 9dc72031020627cd2fb54ffcf32ff71c7e408b3b Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Sat, 10 Apr 2021 21:08:09 +0200 Subject: [PATCH 36/56] chore: update *requirements.txt - note that format of requirements.txt changed since pip-tools 5.5.0+ --- requirements/ci-requirements.txt | 429 +++++++++++----- requirements/dev-requirements.txt | 807 ++++++++++++++++++++++++------ requirements/requirements.txt | 570 +++++++++++++++------ 3 files changed, 1406 insertions(+), 400 deletions(-) diff --git a/requirements/ci-requirements.txt b/requirements/ci-requirements.txt index c2abb5a2..ff2af6ef 100644 --- a/requirements/ci-requirements.txt +++ b/requirements/ci-requirements.txt @@ -1,120 +1,321 @@ -# +# # This file is autogenerated by pip-compile # To update, run: # -# pip-compile requirements/ci-requirements.in +# pip-compile ci-requirements.in # -alabaster==0.7.12 # via sphinx -arrow==0.15.7 # via jinja2-time -attrs==19.3.0 # via jsonschema, pytest -babel==2.8.0 # via sphinx -binaryornot==0.4.4 # via cookiecutter -boto3==1.14.22 # via tabulator -botocore==1.17.22 # via boto3, s3transfer -cached-property==1.5.1 # via tableschema -certifi==2020.6.20 # via requests -cffi==1.14.0 # via cryptography -chardet==3.0.4 # via binaryornot, datapackage, requests, tabulator -click-configfile==0.2.3 # via memote -click-default-group==1.2.2 # via goodtables -click-log==0.3.2 # via memote -click==7.1.2 # via click-configfile, click-default-group, click-log, cookiecutter, datapackage, goodtables, memote, nltk, tableschema, tabulator, travis-encrypt -cobra==0.18.1 # via -r requirements/ci-requirements.in, memote -configparser==5.0.0 # via click-configfile -cookiecutter==1.7.2 # via memote -cryptography==2.9.2 # via travis-encrypt -cycler==0.10.0 # via matplotlib -datapackage==1.14.1 # via goodtables -depinfo==1.5.4 # via cobra, memote -docutils==0.15.2 # via botocore, sphinx, statistics -equilibrator-api==0.1.26 # via memote -et-xmlfile==1.0.1 # via openpyxl -future==0.18.2 # via cobra, memote -gitdb==4.0.5 # via gitpython -gitpython==3.1.7 # via memote -goodtables==2.5.0 # via memote -idna==2.10 # via requests -ijson==3.1.post0 # via tabulator -imagesize==1.2.0 # via sphinx -importlib-metadata==1.7.0 # via jsonschema, pluggy, pytest -importlib-resources==3.0.0 # via equilibrator-api, memote -isodate==0.6.0 # via tableschema -jdcal==1.4.1 # via openpyxl -jinja2-time==0.2.0 # via cookiecutter -jinja2==2.11.2 # via cookiecutter, jinja2-time, memote, numpydoc, sphinx -jmespath==0.10.0 # via boto3, botocore -joblib==0.16.0 # via nltk -jsonlines==1.2.0 # via tabulator -jsonpointer==2.0 # via datapackage -jsonschema==3.2.0 # via datapackage, tableschema -kiwisolver==1.2.0 # via matplotlib -linear-tsv==1.1.0 # via tabulator -lxml==4.5.2 # via memote -markupsafe==1.1.1 # via cookiecutter, jinja2 -matplotlib==3.3.0 # via equilibrator-api -memote==0.11.0 # via -r requirements/ci-requirements.in -more-itertools==8.4.0 # via pytest -mpmath==1.1.0 # via sympy -nltk==3.5 # via equilibrator-api -numpy==1.19.0 # via cobra, equilibrator-api, matplotlib, pandas, scipy -numpydoc==1.1.0 # via memote -openpyxl==3.0.4 # via sbtab, tabulator -optlang==1.4.4 # via cobra, equilibrator-api -packaging==20.4 # via pytest, sphinx -pandas==1.0.5 # via cobra, equilibrator-api, memote -pillow==7.2.0 # via matplotlib -pipdeptree==1.0.0 # via depinfo -pluggy==0.13.1 # via pytest -poyo==0.5.0 # via cookiecutter -py==1.9.0 # via pytest -pycparser==2.20 # via cffi -pygments==2.6.1 # via sphinx -pylru==1.2.0 # via memote -pyparsing==2.4.7 # via equilibrator-api, matplotlib, packaging -pyperclip==1.6.0 # via travis-encrypt -pyrsistent==0.16.0 # via jsonschema -pytest==5.4.3 # via memote -python-dateutil==2.8.1 # via arrow, botocore, matplotlib, pandas, tableschema -python-libsbml-experimental==5.18.1 # via cobra -python-libsbml==5.18.0 # via sbtab -python-slugify==4.0.1 # via cookiecutter -pytz==2020.1 # via babel, pandas -pyyaml==5.3.1 # via travis-encrypt -regex==2020.7.14 # via nltk -requests==2.24.0 # via cookiecutter, datapackage, equilibrator-api, goodtables, memote, sphinx, tableschema, tabulator, travis-encrypt -rfc3986==1.4.0 # via tableschema -ruamel.yaml.clib==0.2.0 # via ruamel.yaml -ruamel.yaml==0.16.10 # via cobra, memote -s3transfer==0.3.3 # via boto3 -sbtab==0.9.73 # via equilibrator-api -scipy==1.5.1 # via equilibrator-api -simpleeval==0.9.10 # via goodtables -six==1.15.0 # via click-configfile, cobra, cookiecutter, cryptography, cycler, datapackage, goodtables, isodate, jsonlines, jsonschema, linear-tsv, memote, optlang, packaging, pyrsistent, python-dateutil, tableschema, tabulator -smmap==3.0.4 # via gitdb -snowballstemmer==2.0.0 # via sphinx -sphinx==3.1.2 # via numpydoc -sphinxcontrib-applehelp==1.0.2 # via sphinx -sphinxcontrib-devhelp==1.0.2 # via sphinx -sphinxcontrib-htmlhelp==1.0.3 # via sphinx -sphinxcontrib-jsmath==1.0.1 # via sphinx -sphinxcontrib-qthelp==1.0.3 # via sphinx -sphinxcontrib-serializinghtml==1.1.4 # via sphinx -sqlalchemy==1.3.18 # via memote, tabulator -statistics==1.0.3.5 # via goodtables -swiglpk==4.65.1 # via cobra, optlang -sympy==1.6.1 # via memote, optlang -tableschema==1.19.2 # via datapackage, goodtables -tablib==2.0.0 # via sbtab -tabulator==1.52.3 # via datapackage, goodtables, tableschema -text-unidecode==1.3 # via python-slugify -tqdm==4.48.0 # via nltk -travis-encrypt==1.1.2 # via memote -unicodecsv==0.14.1 # via datapackage, tableschema, tabulator -urllib3==1.25.9 # via botocore, requests -wcwidth==0.2.5 # via pytest -xlrd==1.2.0 # via tabulator -zipp==3.1.0 # via importlib-metadata, importlib-resources +alabaster==0.7.12 + # via sphinx +appdirs==1.4.4 + # via cobra +arrow==1.0.3 + # via jinja2-time +attrs==20.3.0 + # via + # jsonschema + # pytest +babel==2.9.0 + # via sphinx +binaryornot==0.4.4 + # via cookiecutter +boto3==1.17.49 + # via tabulator +botocore==1.20.49 + # via + # boto3 + # s3transfer +cached-property==1.5.2 + # via tableschema +certifi==2020.12.5 + # via + # httpx + # requests +cffi==1.14.5 + # via cryptography +chardet==4.0.0 + # via + # binaryornot + # datapackage + # requests + # tabulator +click-configfile==0.2.3 + # via memote +click-default-group==1.2.2 + # via goodtables +click-log==0.3.2 + # via memote +click==7.1.2 + # via + # click-configfile + # click-default-group + # click-log + # cookiecutter + # datapackage + # goodtables + # memote + # tableschema + # tabulator + # travis-encrypt +cobra==0.21.0 + # via + # -r ci-requirements.in + # memote +colorama==0.4.4 + # via rich +commonmark==0.9.1 + # via rich +configparser==5.0.2 + # via click-configfile +cookiecutter==1.7.2 + # via memote +cryptography==3.4.7 + # via travis-encrypt +datapackage==1.15.2 + # via goodtables +depinfo==1.7.0 + # via + # cobra + # memote +diskcache==5.2.1 + # via cobra +docutils==0.17 + # via + # sphinx + # statistics +et-xmlfile==1.0.1 + # via openpyxl +future==0.18.2 + # via + # cobra + # memote +gitdb==4.0.7 + # via gitpython +gitpython==3.1.14 + # via memote +goodtables==2.5.4 + # via memote +greenlet==1.0.0 + # via sqlalchemy +h11==0.12.0 + # via httpcore +httpcore==0.12.3 + # via httpx +httpx==0.17.1 + # via cobra +idna==2.10 + # via + # requests + # rfc3986 +ijson==3.1.4 + # via tabulator +imagesize==1.2.0 + # via sphinx +importlib-resources==5.1.2 + # via + # cobra + # memote +iniconfig==1.1.1 + # via pytest +isodate==0.6.0 + # via tableschema +jinja2-time==0.2.0 + # via cookiecutter +jinja2==2.11.3 + # via + # cookiecutter + # jinja2-time + # memote + # numpydoc + # sphinx +jmespath==0.10.0 + # via + # boto3 + # botocore +jsonlines==2.0.0 + # via tabulator +jsonpointer==2.1 + # via datapackage +jsonschema==3.2.0 + # via + # datapackage + # tableschema +linear-tsv==1.1.0 + # via tabulator +lxml==4.6.3 + # via memote +markupsafe==1.1.1 + # via + # cookiecutter + # jinja2 +memote==0.12.0 + # via -r ci-requirements.in +mpmath==1.2.1 + # via sympy +numpy==1.20.2 + # via + # cobra + # pandas +numpydoc==1.1.0 + # via memote +openpyxl==3.0.7 + # via tabulator +optlang==1.4.4 + # via cobra +packaging==20.9 + # via + # pytest + # sphinx +pandas==1.2.3 + # via + # cobra + # memote +pluggy==0.13.1 + # via pytest +poyo==0.5.0 + # via cookiecutter +py==1.10.0 + # via pytest +pycparser==2.20 + # via cffi +pydantic==1.8.1 + # via cobra +pygments==2.8.1 + # via + # rich + # sphinx +pylru==1.2.0 + # via memote +pyparsing==2.4.7 + # via packaging +pyperclip==1.6.0 + # via travis-encrypt +pyrsistent==0.17.3 + # via jsonschema +pytest==6.2.3 + # via memote +python-dateutil==2.8.1 + # via + # arrow + # botocore + # pandas + # tableschema +python-libsbml==5.19.0 + # via cobra +python-slugify==4.0.1 + # via cookiecutter +pytz==2021.1 + # via + # babel + # pandas +pyyaml==5.4.1 + # via travis-encrypt +requests==2.25.1 + # via + # cookiecutter + # datapackage + # goodtables + # memote + # sphinx + # tableschema + # tabulator + # travis-encrypt +rfc3986[idna2008]==1.4.0 + # via + # httpx + # tableschema +rich==6.2.0 + # via cobra +ruamel.yaml.clib==0.2.2 + # via ruamel.yaml +ruamel.yaml==0.17.4 + # via + # cobra + # memote +s3transfer==0.3.6 + # via boto3 +simpleeval==0.9.10 + # via goodtables +six==1.15.0 + # via + # click-configfile + # cobra + # cookiecutter + # datapackage + # goodtables + # isodate + # jsonschema + # linear-tsv + # memote + # optlang + # python-dateutil + # tableschema + # tabulator +smmap==4.0.0 + # via gitdb +sniffio==1.2.0 + # via + # httpcore + # httpx +snowballstemmer==2.1.0 + # via sphinx +sphinx==3.5.3 + # via numpydoc +sphinxcontrib-applehelp==1.0.2 + # via sphinx +sphinxcontrib-devhelp==1.0.2 + # via sphinx +sphinxcontrib-htmlhelp==1.0.3 + # via sphinx +sphinxcontrib-jsmath==1.0.1 + # via sphinx +sphinxcontrib-qthelp==1.0.3 + # via sphinx +sphinxcontrib-serializinghtml==1.1.4 + # via sphinx +sqlalchemy==1.4.7 + # via + # memote + # tabulator +statistics==1.0.3.5 + # via goodtables +swiglpk==5.0.3 + # via + # cobra + # optlang +sympy==1.8 + # via + # memote + # optlang +tableschema==1.20.2 + # via + # datapackage + # goodtables +tabulator==1.53.5 + # via + # datapackage + # goodtables + # tableschema +text-unidecode==1.3 + # via python-slugify +toml==0.10.2 + # via pytest +travis-encrypt==1.1.2 + # via memote +typing-extensions==3.7.4.3 + # via + # pydantic + # rich +unicodecsv==0.14.1 + # via + # datapackage + # tableschema + # tabulator +urllib3==1.26.4 + # via + # botocore + # requests +xlrd==2.0.1 + # via tabulator # The following packages are considered to be unsafe in a requirements file: -# pip -# setuptools \ No newline at end of file +# setuptools diff --git a/requirements/dev-requirements.txt b/requirements/dev-requirements.txt index 768c12a6..3597d098 100644 --- a/requirements/dev-requirements.txt +++ b/requirements/dev-requirements.txt @@ -4,149 +4,670 @@ # # pip-compile dev-requirements.in # -alabaster==0.7.12 # via -r requirements.txt, sphinx -arrow==0.15.7 # via -r requirements.txt, jinja2-time -atomicwrites==1.4.0 # via -r requirements.txt, pytest -attrs==19.3.0 # via -r requirements.txt, jsonschema, pytest -babel==2.8.0 # via -r requirements.txt, sphinx -backcall==0.2.0 # via -r requirements.txt, ipython -binaryornot==0.4.4 # via -r requirements.txt, cookiecutter -bleach==3.1.5 # via -r requirements.txt, nbconvert -boto3==1.14.15 # via -r requirements.txt, tabulator -botocore==1.17.15 # via -r requirements.txt, boto3, s3transfer -cached-property==1.5.1 # via -r requirements.txt, tableschema -certifi==2020.6.20 # via -r requirements.txt, requests -cffi==1.14.0 # via -r requirements.txt, cryptography -chardet==3.0.4 # via -r requirements.txt, binaryornot, datapackage, requests, tabulator -click-configfile==0.2.3 # via -r requirements.txt, memote -click-default-group==1.2.2 # via -r requirements.txt, goodtables -click-log==0.3.2 # via -r requirements.txt, memote -click==7.1.2 # via -r requirements.txt, click-configfile, click-default-group, click-log, cookiecutter, datapackage, goodtables, memote, nltk, pip-tools, tableschema, tabulator, travis-encrypt -cobra==0.18.1 # via -r requirements.txt, memote -colorama==0.4.3 # via -r requirements.txt, ipython, pytest, sphinx -configparser==5.0.0 # via -r requirements.txt, click-configfile -cookiecutter==1.7.2 # via -r requirements.txt, memote -cryptography==2.9.2 # via -r requirements.txt, travis-encrypt -cycler==0.10.0 # via -r requirements.txt, matplotlib -datapackage==1.14.1 # via -r requirements.txt, goodtables -decorator==4.4.2 # via -r requirements.txt, ipython, traitlets -defusedxml==0.6.0 # via -r requirements.txt, nbconvert -depinfo==1.5.3 # via -r requirements.txt, cobra, memote -docutils==0.15.2 # via -r requirements.txt, botocore, sphinx, statistics -entrypoints==0.3 # via -r requirements.txt, nbconvert -equilibrator-api==0.1.26 # via -r requirements.txt, memote -et-xmlfile==1.0.1 # via -r requirements.txt, openpyxl -future==0.18.2 # via -r requirements.txt, cobra, memote -gitdb==4.0.5 # via -r requirements.txt, gitpython -gitpython==3.1.3 # via -r requirements.txt, memote -goodtables==2.5.0 # via -r requirements.txt, memote -idna==2.10 # via -r requirements.txt, requests -ijson==3.1.post0 # via -r requirements.txt, tabulator -imagesize==1.2.0 # via -r requirements.txt, sphinx -importlib-metadata==1.7.0 # via -r requirements.txt, jsonschema, pluggy, pytest -importlib-resources==3.0.0 # via -r requirements.txt, equilibrator-api, memote -ipykernel==5.3.0 # via -r requirements.txt, notebook -ipython-genutils==0.2.0 # via -r requirements.txt, nbformat, notebook, traitlets -ipython==7.16.1 # via -r requirements.txt, ipykernel -isodate==0.6.0 # via -r requirements.txt, tableschema -jdcal==1.4.1 # via -r requirements.txt, openpyxl -jedi==0.17.1 # via -r requirements.txt, ipython -jinja2-time==0.2.0 # via -r requirements.txt, cookiecutter -jinja2==2.11.2 # via -r requirements.txt, cookiecutter, jinja2-time, memote, nbconvert, notebook, numpydoc, sphinx -jmespath==0.10.0 # via -r requirements.txt, boto3, botocore -joblib==0.16.0 # via -r requirements.txt, nltk -jsonlines==1.2.0 # via -r requirements.txt, tabulator -jsonpointer==2.0 # via -r requirements.txt, datapackage -jsonschema==3.2.0 # via -r requirements.txt, datapackage, nbformat, tableschema -jupyter-client==6.1.5 # via -r requirements.txt, ipykernel, notebook -jupyter-core==4.6.3 # via -r requirements.txt, jupyter-client, nbconvert, nbformat, notebook -kiwisolver==1.2.0 # via -r requirements.txt, matplotlib -linear-tsv==1.1.0 # via -r requirements.txt, tabulator -lxml==4.5.1 # via -r requirements.txt, memote -markupsafe==1.1.1 # via -r requirements.txt, cookiecutter, jinja2 -matplotlib==3.2.2 # via -r requirements.txt, equilibrator-api -memote==0.11.0 # via -r requirements.txt -mistune==0.8.4 # via -r requirements.txt, nbconvert -more-itertools==8.4.0 # via -r requirements.txt, pytest -mpmath==1.1.0 # via -r requirements.txt, sympy -nbconvert==5.6.1 # via -r requirements.txt, notebook -nbformat==5.0.7 # via -r requirements.txt, nbconvert, notebook -nltk==3.5 # via -r requirements.txt, equilibrator-api -notebook==6.0.3 # via -r requirements.txt -numpy==1.19.0 # via -r requirements.txt, cobra, equilibrator-api, matplotlib, pandas, scipy -numpydoc==1.1.0 # via -r requirements.txt, memote -openpyxl==3.0.4 # via -r requirements.txt, sbtab, tabulator -optlang==1.4.4 # via -r requirements.txt, cobra, equilibrator-api -packaging==20.4 # via -r requirements.txt, bleach, pytest, sphinx -pandas==1.0.5 # via -r requirements.txt, cobra, equilibrator-api, memote -pandocfilters==1.4.2 # via -r requirements.txt, nbconvert -parso==0.7.0 # via -r requirements.txt, jedi -pickleshare==0.7.5 # via -r requirements.txt, ipython -pip-tools==5.2.1 # via -r dev-requirements.in -pipdeptree==1.0.0 # via -r requirements.txt, depinfo -pluggy==0.13.1 # via -r requirements.txt, pytest -poyo==0.5.0 # via -r requirements.txt, cookiecutter -prometheus-client==0.8.0 # via -r requirements.txt, notebook -prompt-toolkit==3.0.5 # via -r requirements.txt, ipython -py==1.9.0 # via -r requirements.txt, pytest -pycparser==2.20 # via -r requirements.txt, cffi -pygments==2.6.1 # via -r requirements.txt, ipython, nbconvert, sphinx -pylru==1.2.0 # via -r requirements.txt, memote -pyparsing==2.4.7 # via -r requirements.txt, equilibrator-api, matplotlib, packaging -pyperclip==1.6.0 # via -r requirements.txt, travis-encrypt -pyrsistent==0.16.0 # via -r requirements.txt, jsonschema -pytest==5.4.3 # via -r requirements.txt, memote -python-dateutil==2.8.1 # via -r requirements.txt, arrow, botocore, jupyter-client, matplotlib, pandas, tableschema -python-dotenv==0.13.0 # via -r requirements.txt -python-libsbml-experimental==5.18.1 # via -r requirements.txt, cobra -python-libsbml==5.18.0 # via -r requirements.txt, sbtab -python-slugify==4.0.1 # via -r requirements.txt, cookiecutter -pytz==2020.1 # via -r requirements.txt, babel, pandas -pywin32==228 # via -r requirements.txt, jupyter-core -pywinpty==0.5.7 # via -r requirements.txt, terminado -pyyaml==5.3.1 # via -r requirements.txt, travis-encrypt -pyzmq==19.0.1 # via -r requirements.txt, jupyter-client, notebook -regex==2020.6.8 # via -r requirements.txt, nltk -requests==2.24.0 # via -r requirements.txt, cookiecutter, datapackage, equilibrator-api, goodtables, memote, sphinx, tableschema, tabulator, travis-encrypt -rfc3986==1.4.0 # via -r requirements.txt, tableschema -ruamel.yaml.clib==0.2.0 # via -r requirements.txt, ruamel.yaml -ruamel.yaml==0.16.10 # via -r requirements.txt, cobra, memote -s3transfer==0.3.3 # via -r requirements.txt, boto3 -sbtab==0.9.73 # via -r requirements.txt, equilibrator-api -scipy==1.5.0 # via -r requirements.txt, equilibrator-api -send2trash==1.5.0 # via -r requirements.txt, notebook -simpleeval==0.9.10 # via -r requirements.txt, goodtables -six==1.15.0 # via -r requirements.txt, bleach, click-configfile, cobra, cookiecutter, cryptography, cycler, datapackage, goodtables, isodate, jsonlines, jsonschema, linear-tsv, memote, optlang, packaging, pip-tools, pyrsistent, python-dateutil, tableschema, tabulator, traitlets -smmap==3.0.4 # via -r requirements.txt, gitdb -snowballstemmer==2.0.0 # via -r requirements.txt, sphinx -sphinx==3.1.1 # via -r requirements.txt, numpydoc -sphinxcontrib-applehelp==1.0.2 # via -r requirements.txt, sphinx -sphinxcontrib-devhelp==1.0.2 # via -r requirements.txt, sphinx -sphinxcontrib-htmlhelp==1.0.3 # via -r requirements.txt, sphinx -sphinxcontrib-jsmath==1.0.1 # via -r requirements.txt, sphinx -sphinxcontrib-qthelp==1.0.3 # via -r requirements.txt, sphinx -sphinxcontrib-serializinghtml==1.1.4 # via -r requirements.txt, sphinx -sqlalchemy==1.3.18 # via -r requirements.txt, memote, tabulator -statistics==1.0.3.5 # via -r requirements.txt, goodtables -swiglpk==4.65.1 # via -r requirements.txt, cobra, optlang -symengine==0.6.1 # via -r requirements.txt -sympy==1.6 # via -r requirements.txt, memote, optlang -tableschema==1.19.2 # via -r requirements.txt, datapackage, goodtables -tablib==2.0.0 # via -r requirements.txt, sbtab -tabulator==1.52.3 # via -r requirements.txt, datapackage, goodtables, tableschema -terminado==0.8.3 # via -r requirements.txt, notebook -testpath==0.4.4 # via -r requirements.txt, nbconvert -text-unidecode==1.3 # via -r requirements.txt, python-slugify -tornado==6.0.4 # via -r requirements.txt, ipykernel, jupyter-client, notebook, terminado -tqdm==4.47.0 # via -r requirements.txt, nltk -traitlets==4.3.3 # via -r requirements.txt, ipykernel, ipython, jupyter-client, jupyter-core, nbconvert, nbformat, notebook -travis-encrypt==1.1.2 # via -r requirements.txt, memote -unicodecsv==0.14.1 # via -r requirements.txt, datapackage, tableschema, tabulator -urllib3==1.25.9 # via -r requirements.txt, botocore, requests -wcwidth==0.2.5 # via -r requirements.txt, prompt-toolkit, pytest -webencodings==0.5.1 # via -r requirements.txt, bleach -xlrd==1.2.0 # via -r requirements.txt, tabulator -zipp==3.1.0 # via -r requirements.txt, importlib-metadata, importlib-resources +alabaster==0.7.12 + # via + # -r requirements.txt + # sphinx +appdirs==1.4.4 + # via + # -r requirements.txt + # cobra +argon2-cffi==20.1.0 + # via + # -r requirements.txt + # notebook +arrow==1.0.3 + # via + # -r requirements.txt + # jinja2-time +async-generator==1.10 + # via + # -r requirements.txt + # nbclient +attrs==20.3.0 + # via + # -r requirements.txt + # jsonschema + # pytest +babel==2.9.0 + # via + # -r requirements.txt + # sphinx +backcall==0.2.0 + # via + # -r requirements.txt + # ipython +binaryornot==0.4.4 + # via + # -r requirements.txt + # cookiecutter +bleach==3.3.0 + # via + # -r requirements.txt + # nbconvert +boto3==1.17.49 + # via + # -r requirements.txt + # tabulator +botocore==1.20.49 + # via + # -r requirements.txt + # boto3 + # s3transfer +cached-property==1.5.2 + # via + # -r requirements.txt + # tableschema +certifi==2020.12.5 + # via + # -r requirements.txt + # httpx + # requests +cffi==1.14.5 + # via + # -r requirements.txt + # argon2-cffi + # cryptography +chardet==4.0.0 + # via + # -r requirements.txt + # binaryornot + # datapackage + # requests + # tabulator +click-configfile==0.2.3 + # via + # -r requirements.txt + # memote +click-default-group==1.2.2 + # via + # -r requirements.txt + # goodtables +click-log==0.3.2 + # via + # -r requirements.txt + # memote +click==7.1.2 + # via + # -r requirements.txt + # click-configfile + # click-default-group + # click-log + # cookiecutter + # datapackage + # goodtables + # memote + # pip-tools + # tableschema + # tabulator + # travis-encrypt +cobra==0.21.0 + # via + # -r requirements.txt + # memote +colorama==0.4.4 + # via + # -r requirements.txt + # rich +commonmark==0.9.1 + # via + # -r requirements.txt + # rich +configparser==5.0.2 + # via + # -r requirements.txt + # click-configfile +cookiecutter==1.7.2 + # via + # -r requirements.txt + # memote +cryptography==3.4.7 + # via + # -r requirements.txt + # travis-encrypt +datapackage==1.15.2 + # via + # -r requirements.txt + # goodtables +decorator==5.0.6 + # via + # -r requirements.txt + # ipython +defusedxml==0.7.1 + # via + # -r requirements.txt + # nbconvert +depinfo==1.7.0 + # via + # -r requirements.txt + # cobra + # memote +diskcache==5.2.1 + # via + # -r requirements.txt + # cobra +docutils==0.17 + # via + # -r requirements.txt + # sphinx + # statistics +entrypoints==0.3 + # via + # -r requirements.txt + # nbconvert +et-xmlfile==1.0.1 + # via + # -r requirements.txt + # openpyxl +future==0.18.2 + # via + # -r requirements.txt + # cobra + # memote +gitdb==4.0.7 + # via + # -r requirements.txt + # gitpython +gitpython==3.1.14 + # via + # -r requirements.txt + # memote +goodtables==2.5.4 + # via + # -r requirements.txt + # memote +greenlet==1.0.0 + # via + # -r requirements.txt + # sqlalchemy +h11==0.12.0 + # via + # -r requirements.txt + # httpcore +httpcore==0.12.3 + # via + # -r requirements.txt + # httpx +httpx==0.17.1 + # via + # -r requirements.txt + # cobra +idna==2.10 + # via + # -r requirements.txt + # requests + # rfc3986 +ijson==3.1.4 + # via + # -r requirements.txt + # tabulator +imagesize==1.2.0 + # via + # -r requirements.txt + # sphinx +importlib-resources==5.1.2 + # via + # -r requirements.txt + # cobra + # memote +iniconfig==1.1.1 + # via + # -r requirements.txt + # pytest +ipykernel==5.5.3 + # via + # -r requirements.txt + # notebook +ipython-genutils==0.2.0 + # via + # -r requirements.txt + # nbformat + # notebook + # traitlets +ipython==7.22.0 + # via + # -r requirements.txt + # ipykernel +isodate==0.6.0 + # via + # -r requirements.txt + # tableschema +jedi==0.18.0 + # via + # -r requirements.txt + # ipython +jinja2-time==0.2.0 + # via + # -r requirements.txt + # cookiecutter +jinja2==2.11.3 + # via + # -r requirements.txt + # cookiecutter + # jinja2-time + # memote + # nbconvert + # notebook + # numpydoc + # sphinx +jmespath==0.10.0 + # via + # -r requirements.txt + # boto3 + # botocore +jsonlines==2.0.0 + # via + # -r requirements.txt + # tabulator +jsonpointer==2.1 + # via + # -r requirements.txt + # datapackage +jsonschema==3.2.0 + # via + # -r requirements.txt + # datapackage + # nbformat + # tableschema +jupyter-client==6.1.12 + # via + # -r requirements.txt + # ipykernel + # nbclient + # notebook +jupyter-core==4.7.1 + # via + # -r requirements.txt + # jupyter-client + # nbconvert + # nbformat + # notebook +jupyterlab-pygments==0.1.2 + # via + # -r requirements.txt + # nbconvert +linear-tsv==1.1.0 + # via + # -r requirements.txt + # tabulator +lxml==4.6.3 + # via + # -r requirements.txt + # memote +markupsafe==1.1.1 + # via + # -r requirements.txt + # cookiecutter + # jinja2 +memote==0.12.0 + # via -r requirements.txt +mistune==0.8.4 + # via + # -r requirements.txt + # nbconvert +mpmath==1.2.1 + # via + # -r requirements.txt + # sympy +nbclient==0.5.3 + # via + # -r requirements.txt + # nbconvert +nbconvert==6.0.7 + # via + # -r requirements.txt + # notebook +nbformat==5.1.3 + # via + # -r requirements.txt + # nbclient + # nbconvert + # notebook +nest-asyncio==1.5.1 + # via + # -r requirements.txt + # nbclient +notebook==6.3.0 + # via -r requirements.txt +numpy==1.20.2 + # via + # -r requirements.txt + # cobra + # pandas +numpydoc==1.1.0 + # via + # -r requirements.txt + # memote +openpyxl==3.0.7 + # via + # -r requirements.txt + # tabulator +optlang==1.4.4 + # via + # -r requirements.txt + # cobra +packaging==20.9 + # via + # -r requirements.txt + # bleach + # pytest + # sphinx +pandas==1.2.3 + # via + # -r requirements.txt + # cobra + # memote +pandocfilters==1.4.3 + # via + # -r requirements.txt + # nbconvert +parso==0.8.2 + # via + # -r requirements.txt + # jedi +pep517==0.10.0 + # via pip-tools +pexpect==4.8.0 + # via + # -r requirements.txt + # ipython +pickleshare==0.7.5 + # via + # -r requirements.txt + # ipython +pip-tools==6.0.1 + # via -r dev-requirements.in +pluggy==0.13.1 + # via + # -r requirements.txt + # pytest +poyo==0.5.0 + # via + # -r requirements.txt + # cookiecutter +prometheus-client==0.10.1 + # via + # -r requirements.txt + # notebook +prompt-toolkit==3.0.18 + # via + # -r requirements.txt + # ipython +ptyprocess==0.7.0 + # via + # -r requirements.txt + # pexpect + # terminado +py==1.10.0 + # via + # -r requirements.txt + # pytest +pycparser==2.20 + # via + # -r requirements.txt + # cffi +pydantic==1.8.1 + # via + # -r requirements.txt + # cobra +pygments==2.8.1 + # via + # -r requirements.txt + # ipython + # jupyterlab-pygments + # nbconvert + # rich + # sphinx +pylru==1.2.0 + # via + # -r requirements.txt + # memote +pyparsing==2.4.7 + # via + # -r requirements.txt + # packaging +pyperclip==1.6.0 + # via + # -r requirements.txt + # travis-encrypt +pyrsistent==0.17.3 + # via + # -r requirements.txt + # jsonschema +pytest==6.2.3 + # via + # -r requirements.txt + # memote +python-dateutil==2.8.1 + # via + # -r requirements.txt + # arrow + # botocore + # jupyter-client + # pandas + # tableschema +python-dotenv==0.17.0 + # via -r requirements.txt +python-libsbml==5.19.0 + # via + # -r requirements.txt + # cobra +python-slugify==4.0.1 + # via + # -r requirements.txt + # cookiecutter +pytz==2021.1 + # via + # -r requirements.txt + # babel + # pandas +pyyaml==5.4.1 + # via + # -r requirements.txt + # travis-encrypt +pyzmq==22.0.3 + # via + # -r requirements.txt + # jupyter-client + # notebook +requests==2.25.1 + # via + # -r requirements.txt + # cookiecutter + # datapackage + # goodtables + # memote + # sphinx + # tableschema + # tabulator + # travis-encrypt +rfc3986[idna2008]==1.4.0 + # via + # -r requirements.txt + # httpx + # tableschema +rich==6.2.0 + # via + # -r requirements.txt + # cobra +ruamel.yaml.clib==0.2.2 + # via + # -r requirements.txt + # ruamel.yaml +ruamel.yaml==0.17.4 + # via + # -r requirements.txt + # cobra + # memote +s3transfer==0.3.6 + # via + # -r requirements.txt + # boto3 +send2trash==1.5.0 + # via + # -r requirements.txt + # notebook +simpleeval==0.9.10 + # via + # -r requirements.txt + # goodtables +six==1.15.0 + # via + # -r requirements.txt + # argon2-cffi + # bleach + # click-configfile + # cobra + # cookiecutter + # datapackage + # goodtables + # isodate + # jsonschema + # linear-tsv + # memote + # optlang + # python-dateutil + # tableschema + # tabulator +smmap==4.0.0 + # via + # -r requirements.txt + # gitdb +sniffio==1.2.0 + # via + # -r requirements.txt + # httpcore + # httpx +snowballstemmer==2.1.0 + # via + # -r requirements.txt + # sphinx +sphinx==3.5.3 + # via + # -r requirements.txt + # numpydoc +sphinxcontrib-applehelp==1.0.2 + # via + # -r requirements.txt + # sphinx +sphinxcontrib-devhelp==1.0.2 + # via + # -r requirements.txt + # sphinx +sphinxcontrib-htmlhelp==1.0.3 + # via + # -r requirements.txt + # sphinx +sphinxcontrib-jsmath==1.0.1 + # via + # -r requirements.txt + # sphinx +sphinxcontrib-qthelp==1.0.3 + # via + # -r requirements.txt + # sphinx +sphinxcontrib-serializinghtml==1.1.4 + # via + # -r requirements.txt + # sphinx +sqlalchemy==1.4.7 + # via + # -r requirements.txt + # memote + # tabulator +statistics==1.0.3.5 + # via + # -r requirements.txt + # goodtables +swiglpk==5.0.3 + # via + # -r requirements.txt + # cobra + # optlang +symengine==0.7.2 + # via -r requirements.txt +sympy==1.8 + # via + # -r requirements.txt + # memote + # optlang +tableschema==1.20.2 + # via + # -r requirements.txt + # datapackage + # goodtables +tabulator==1.53.5 + # via + # -r requirements.txt + # datapackage + # goodtables + # tableschema +terminado==0.9.4 + # via + # -r requirements.txt + # notebook +testpath==0.4.4 + # via + # -r requirements.txt + # nbconvert +text-unidecode==1.3 + # via + # -r requirements.txt + # python-slugify +toml==0.10.2 + # via + # -r requirements.txt + # pytest +tornado==6.1 + # via + # -r requirements.txt + # ipykernel + # jupyter-client + # notebook + # terminado +traitlets==5.0.5 + # via + # -r requirements.txt + # ipykernel + # ipython + # jupyter-client + # jupyter-core + # nbclient + # nbconvert + # nbformat + # notebook +travis-encrypt==1.1.2 + # via + # -r requirements.txt + # memote +typing-extensions==3.7.4.3 + # via + # -r requirements.txt + # pydantic + # rich +unicodecsv==0.14.1 + # via + # -r requirements.txt + # datapackage + # tableschema + # tabulator +urllib3==1.26.4 + # via + # -r requirements.txt + # botocore + # requests +wcwidth==0.2.5 + # via + # -r requirements.txt + # prompt-toolkit +webencodings==0.5.1 + # via + # -r requirements.txt + # bleach +xlrd==2.0.1 + # via + # -r requirements.txt + # tabulator # The following packages are considered to be unsafe in a requirements file: # pip diff --git a/requirements/requirements.txt b/requirements/requirements.txt index f6d51f83..8d0acac0 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -4,149 +4,433 @@ # # pip-compile requirements.in # -alabaster==0.7.12 # via sphinx -arrow==0.15.7 # via jinja2-time -atomicwrites==1.4.0 # via pytest -attrs==19.3.0 # via jsonschema, pytest -babel==2.8.0 # via sphinx -backcall==0.2.0 # via ipython -binaryornot==0.4.4 # via cookiecutter -bleach==3.1.5 # via nbconvert -boto3==1.14.15 # via tabulator -botocore==1.17.15 # via boto3, s3transfer -cached-property==1.5.1 # via tableschema -certifi==2020.6.20 # via requests -cffi==1.14.0 # via cryptography -chardet==3.0.4 # via binaryornot, datapackage, requests, tabulator -click-configfile==0.2.3 # via memote -click-default-group==1.2.2 # via goodtables -click-log==0.3.2 # via memote -click==7.1.2 # via click-configfile, click-default-group, click-log, cookiecutter, datapackage, goodtables, memote, nltk, tableschema, tabulator, travis-encrypt -cobra==0.18.1 # via -r requirements.in, memote -colorama==0.4.3 # via ipython, pytest, sphinx -configparser==5.0.0 # via click-configfile -cookiecutter==1.7.2 # via memote -cryptography==2.9.2 # via travis-encrypt -cycler==0.10.0 # via matplotlib -datapackage==1.14.1 # via goodtables -decorator==4.4.2 # via ipython, traitlets -defusedxml==0.6.0 # via nbconvert -depinfo==1.5.3 # via cobra, memote -docutils==0.15.2 # via botocore, sphinx, statistics -entrypoints==0.3 # via nbconvert -equilibrator-api==0.1.26 # via memote -et-xmlfile==1.0.1 # via openpyxl -future==0.18.2 # via cobra, memote -gitdb==4.0.5 # via gitpython -gitpython==3.1.3 # via memote -goodtables==2.5.0 # via memote -idna==2.10 # via requests -ijson==3.1.post0 # via tabulator -imagesize==1.2.0 # via sphinx -importlib-metadata==1.7.0 # via jsonschema, pluggy, pytest -importlib-resources==3.0.0 # via equilibrator-api, memote -ipykernel==5.3.0 # via notebook -ipython-genutils==0.2.0 # via nbformat, notebook, traitlets -ipython==7.16.1 # via ipykernel -isodate==0.6.0 # via tableschema -jdcal==1.4.1 # via openpyxl -jedi==0.17.1 # via ipython -jinja2-time==0.2.0 # via cookiecutter -jinja2==2.11.2 # via cookiecutter, jinja2-time, memote, nbconvert, notebook, numpydoc, sphinx -jmespath==0.10.0 # via boto3, botocore -joblib==0.16.0 # via nltk -jsonlines==1.2.0 # via tabulator -jsonpointer==2.0 # via datapackage -jsonschema==3.2.0 # via datapackage, nbformat, tableschema -jupyter-client==6.1.5 # via ipykernel, notebook -jupyter-core==4.6.3 # via jupyter-client, nbconvert, nbformat, notebook -kiwisolver==1.2.0 # via matplotlib -linear-tsv==1.1.0 # via tabulator -lxml==4.5.1 # via memote -markupsafe==1.1.1 # via cookiecutter, jinja2 -matplotlib==3.2.2 # via equilibrator-api -memote==0.11.0 # via -r requirements.in -mistune==0.8.4 # via nbconvert -more-itertools==8.4.0 # via pytest -mpmath==1.1.0 # via sympy -nbconvert==5.6.1 # via notebook -nbformat==5.0.7 # via nbconvert, notebook -nltk==3.5 # via equilibrator-api -notebook==6.0.3 # via -r requirements.in -numpy==1.19.0 # via cobra, equilibrator-api, matplotlib, pandas, scipy -numpydoc==1.1.0 # via memote -openpyxl==3.0.4 # via sbtab, tabulator -optlang==1.4.4 # via cobra, equilibrator-api -packaging==20.4 # via bleach, pytest, sphinx -pandas==1.0.5 # via cobra, equilibrator-api, memote -pandocfilters==1.4.2 # via nbconvert -parso==0.7.0 # via jedi -pickleshare==0.7.5 # via ipython -pipdeptree==1.0.0 # via depinfo -pluggy==0.13.1 # via pytest -poyo==0.5.0 # via cookiecutter -prometheus-client==0.8.0 # via notebook -prompt-toolkit==3.0.5 # via ipython -py==1.9.0 # via pytest -pycparser==2.20 # via cffi -pygments==2.6.1 # via ipython, nbconvert, sphinx -pylru==1.2.0 # via memote -pyparsing==2.4.7 # via equilibrator-api, matplotlib, packaging -pyperclip==1.6.0 # via travis-encrypt -pyrsistent==0.16.0 # via jsonschema -pytest==5.4.3 # via memote -python-dateutil==2.8.1 # via arrow, botocore, jupyter-client, matplotlib, pandas, tableschema -python-dotenv==0.13.0 # via -r requirements.in -python-libsbml-experimental==5.18.1 # via cobra -python-libsbml==5.18.0 # via sbtab -python-slugify==4.0.1 # via cookiecutter -pytz==2020.1 # via babel, pandas -pywin32==228 # via jupyter-core -pywinpty==0.5.7 # via terminado -pyyaml==5.3.1 # via travis-encrypt -pyzmq==19.0.1 # via jupyter-client, notebook -regex==2020.6.8 # via nltk -requests==2.24.0 # via cookiecutter, datapackage, equilibrator-api, goodtables, memote, sphinx, tableschema, tabulator, travis-encrypt -rfc3986==1.4.0 # via tableschema -ruamel.yaml.clib==0.2.0 # via ruamel.yaml -ruamel.yaml==0.16.10 # via cobra, memote -s3transfer==0.3.3 # via boto3 -sbtab==0.9.73 # via equilibrator-api -scipy==1.5.0 # via equilibrator-api -send2trash==1.5.0 # via notebook -simpleeval==0.9.10 # via goodtables -six==1.15.0 # via bleach, click-configfile, cobra, cookiecutter, cryptography, cycler, datapackage, goodtables, isodate, jsonlines, jsonschema, linear-tsv, memote, optlang, packaging, pyrsistent, python-dateutil, tableschema, tabulator, traitlets -smmap==3.0.4 # via gitdb -snowballstemmer==2.0.0 # via sphinx -sphinx==3.1.1 # via numpydoc -sphinxcontrib-applehelp==1.0.2 # via sphinx -sphinxcontrib-devhelp==1.0.2 # via sphinx -sphinxcontrib-htmlhelp==1.0.3 # via sphinx -sphinxcontrib-jsmath==1.0.1 # via sphinx -sphinxcontrib-qthelp==1.0.3 # via sphinx -sphinxcontrib-serializinghtml==1.1.4 # via sphinx -sqlalchemy==1.3.18 # via memote, tabulator -statistics==1.0.3.5 # via goodtables -swiglpk==4.65.1 # via cobra, optlang -symengine==0.6.1 # via -r requirements.in -sympy==1.6 # via memote, optlang -tableschema==1.19.2 # via datapackage, goodtables -tablib==2.0.0 # via sbtab -tabulator==1.52.3 # via datapackage, goodtables, tableschema -terminado==0.8.3 # via notebook -testpath==0.4.4 # via nbconvert -text-unidecode==1.3 # via python-slugify -tornado==6.0.4 # via ipykernel, jupyter-client, notebook, terminado -tqdm==4.47.0 # via nltk -traitlets==4.3.3 # via ipykernel, ipython, jupyter-client, jupyter-core, nbconvert, nbformat, notebook -travis-encrypt==1.1.2 # via memote -unicodecsv==0.14.1 # via datapackage, tableschema, tabulator -urllib3==1.25.9 # via botocore, requests -wcwidth==0.2.5 # via prompt-toolkit, pytest -webencodings==0.5.1 # via bleach -xlrd==1.2.0 # via tabulator -zipp==3.1.0 # via importlib-metadata, importlib-resources +alabaster==0.7.12 + # via sphinx +appdirs==1.4.4 + # via cobra +argon2-cffi==20.1.0 + # via notebook +arrow==1.0.3 + # via jinja2-time +async-generator==1.10 + # via nbclient +attrs==20.3.0 + # via + # jsonschema + # pytest +babel==2.9.0 + # via sphinx +backcall==0.2.0 + # via ipython +binaryornot==0.4.4 + # via cookiecutter +bleach==3.3.0 + # via nbconvert +boto3==1.17.49 + # via tabulator +botocore==1.20.49 + # via + # boto3 + # s3transfer +cached-property==1.5.2 + # via tableschema +certifi==2020.12.5 + # via + # httpx + # requests +cffi==1.14.5 + # via + # argon2-cffi + # cryptography +chardet==4.0.0 + # via + # binaryornot + # datapackage + # requests + # tabulator +click-configfile==0.2.3 + # via memote +click-default-group==1.2.2 + # via goodtables +click-log==0.3.2 + # via memote +click==7.1.2 + # via + # click-configfile + # click-default-group + # click-log + # cookiecutter + # datapackage + # goodtables + # memote + # tableschema + # tabulator + # travis-encrypt +cobra==0.21.0 + # via + # -r requirements.in + # memote +colorama==0.4.4 + # via rich +commonmark==0.9.1 + # via rich +configparser==5.0.2 + # via click-configfile +cookiecutter==1.7.2 + # via memote +cryptography==3.4.7 + # via travis-encrypt +datapackage==1.15.2 + # via goodtables +decorator==5.0.6 + # via ipython +defusedxml==0.7.1 + # via nbconvert +depinfo==1.7.0 + # via + # cobra + # memote +diskcache==5.2.1 + # via cobra +docutils==0.17 + # via + # sphinx + # statistics +entrypoints==0.3 + # via nbconvert +et-xmlfile==1.0.1 + # via openpyxl +future==0.18.2 + # via + # cobra + # memote +gitdb==4.0.7 + # via gitpython +gitpython==3.1.14 + # via memote +goodtables==2.5.4 + # via memote +greenlet==1.0.0 + # via sqlalchemy +h11==0.12.0 + # via httpcore +httpcore==0.12.3 + # via httpx +httpx==0.17.1 + # via cobra +idna==2.10 + # via + # requests + # rfc3986 +ijson==3.1.4 + # via tabulator +imagesize==1.2.0 + # via sphinx +importlib-resources==5.1.2 + # via + # cobra + # memote +iniconfig==1.1.1 + # via pytest +ipykernel==5.5.3 + # via notebook +ipython-genutils==0.2.0 + # via + # nbformat + # notebook + # traitlets +ipython==7.22.0 + # via ipykernel +isodate==0.6.0 + # via tableschema +jedi==0.18.0 + # via ipython +jinja2-time==0.2.0 + # via cookiecutter +jinja2==2.11.3 + # via + # cookiecutter + # jinja2-time + # memote + # nbconvert + # notebook + # numpydoc + # sphinx +jmespath==0.10.0 + # via + # boto3 + # botocore +jsonlines==2.0.0 + # via tabulator +jsonpointer==2.1 + # via datapackage +jsonschema==3.2.0 + # via + # datapackage + # nbformat + # tableschema +jupyter-client==6.1.12 + # via + # ipykernel + # nbclient + # notebook +jupyter-core==4.7.1 + # via + # jupyter-client + # nbconvert + # nbformat + # notebook +jupyterlab-pygments==0.1.2 + # via nbconvert +linear-tsv==1.1.0 + # via tabulator +lxml==4.6.3 + # via memote +markupsafe==1.1.1 + # via + # cookiecutter + # jinja2 +memote==0.12.0 + # via -r requirements.in +mistune==0.8.4 + # via nbconvert +mpmath==1.2.1 + # via sympy +nbclient==0.5.3 + # via nbconvert +nbconvert==6.0.7 + # via notebook +nbformat==5.1.3 + # via + # nbclient + # nbconvert + # notebook +nest-asyncio==1.5.1 + # via nbclient +notebook==6.3.0 + # via -r requirements.in +numpy==1.20.2 + # via + # cobra + # pandas +numpydoc==1.1.0 + # via memote +openpyxl==3.0.7 + # via tabulator +optlang==1.4.4 + # via cobra +packaging==20.9 + # via + # bleach + # pytest + # sphinx +pandas==1.2.3 + # via + # cobra + # memote +pandocfilters==1.4.3 + # via nbconvert +parso==0.8.2 + # via jedi +pexpect==4.8.0 + # via ipython +pickleshare==0.7.5 + # via ipython +pluggy==0.13.1 + # via pytest +poyo==0.5.0 + # via cookiecutter +prometheus-client==0.10.1 + # via notebook +prompt-toolkit==3.0.18 + # via ipython +ptyprocess==0.7.0 + # via + # pexpect + # terminado +py==1.10.0 + # via pytest +pycparser==2.20 + # via cffi +pydantic==1.8.1 + # via cobra +pygments==2.8.1 + # via + # ipython + # jupyterlab-pygments + # nbconvert + # rich + # sphinx +pylru==1.2.0 + # via memote +pyparsing==2.4.7 + # via packaging +pyperclip==1.6.0 + # via travis-encrypt +pyrsistent==0.17.3 + # via jsonschema +pytest==6.2.3 + # via memote +python-dateutil==2.8.1 + # via + # arrow + # botocore + # jupyter-client + # pandas + # tableschema +python-dotenv==0.17.0 + # via -r requirements.in +python-libsbml==5.19.0 + # via cobra +python-slugify==4.0.1 + # via cookiecutter +pytz==2021.1 + # via + # babel + # pandas +pyyaml==5.4.1 + # via travis-encrypt +pyzmq==22.0.3 + # via + # jupyter-client + # notebook +requests==2.25.1 + # via + # cookiecutter + # datapackage + # goodtables + # memote + # sphinx + # tableschema + # tabulator + # travis-encrypt +rfc3986[idna2008]==1.4.0 + # via + # httpx + # tableschema +rich==6.2.0 + # via cobra +ruamel.yaml.clib==0.2.2 + # via ruamel.yaml +ruamel.yaml==0.17.4 + # via + # cobra + # memote +s3transfer==0.3.6 + # via boto3 +send2trash==1.5.0 + # via notebook +simpleeval==0.9.10 + # via goodtables +six==1.15.0 + # via + # argon2-cffi + # bleach + # click-configfile + # cobra + # cookiecutter + # datapackage + # goodtables + # isodate + # jsonschema + # linear-tsv + # memote + # optlang + # python-dateutil + # tableschema + # tabulator +smmap==4.0.0 + # via gitdb +sniffio==1.2.0 + # via + # httpcore + # httpx +snowballstemmer==2.1.0 + # via sphinx +sphinx==3.5.3 + # via numpydoc +sphinxcontrib-applehelp==1.0.2 + # via sphinx +sphinxcontrib-devhelp==1.0.2 + # via sphinx +sphinxcontrib-htmlhelp==1.0.3 + # via sphinx +sphinxcontrib-jsmath==1.0.1 + # via sphinx +sphinxcontrib-qthelp==1.0.3 + # via sphinx +sphinxcontrib-serializinghtml==1.1.4 + # via sphinx +sqlalchemy==1.4.7 + # via + # memote + # tabulator +statistics==1.0.3.5 + # via goodtables +swiglpk==5.0.3 + # via + # cobra + # optlang +symengine==0.7.2 + # via -r requirements.in +sympy==1.8 + # via + # memote + # optlang +tableschema==1.20.2 + # via + # datapackage + # goodtables +tabulator==1.53.5 + # via + # datapackage + # goodtables + # tableschema +terminado==0.9.4 + # via notebook +testpath==0.4.4 + # via nbconvert +text-unidecode==1.3 + # via python-slugify +toml==0.10.2 + # via pytest +tornado==6.1 + # via + # ipykernel + # jupyter-client + # notebook + # terminado +traitlets==5.0.5 + # via + # ipykernel + # ipython + # jupyter-client + # jupyter-core + # nbclient + # nbconvert + # nbformat + # notebook +travis-encrypt==1.1.2 + # via memote +typing-extensions==3.7.4.3 + # via + # pydantic + # rich +unicodecsv==0.14.1 + # via + # datapackage + # tableschema + # tabulator +urllib3==1.26.4 + # via + # botocore + # requests +wcwidth==0.2.5 + # via prompt-toolkit +webencodings==0.5.1 + # via bleach +xlrd==2.0.1 + # via tabulator # The following packages are considered to be unsafe in a requirements file: -# pip # setuptools From 5cab2bac6609a6067c31d755fcf1dfed6b765631 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Sun, 11 Apr 2021 14:18:28 +0200 Subject: [PATCH 37/56] fix: missisng ci-requirements --- requirements/ci-requirements.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/requirements/ci-requirements.txt b/requirements/ci-requirements.txt index ff2af6ef..a29e89c4 100644 --- a/requirements/ci-requirements.txt +++ b/requirements/ci-requirements.txt @@ -199,6 +199,8 @@ python-dateutil==2.8.1 # botocore # pandas # tableschema +python-dotenv==0.17.0 + # via -r ci-requirements.in python-libsbml==5.19.0 # via cobra python-slugify==4.0.1 @@ -282,6 +284,8 @@ swiglpk==5.0.3 # via # cobra # optlang +symengine==0.7.2 + # via -r ci-requirements.in sympy==1.8 # via # memote From bb81286daff5facd198534368a1d24b0a132612c Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Sun, 11 Apr 2021 23:01:26 +0200 Subject: [PATCH 38/56] fix: indentation in yml --- ModelFiles/yml/yeastGEM.yml | 69496 +++++++++++++++++----------------- 1 file changed, 34748 insertions(+), 34748 deletions(-) diff --git a/ModelFiles/yml/yeastGEM.yml b/ModelFiles/yml/yeastGEM.yml index 4e69b6a4..6200c204 100644 --- a/ModelFiles/yml/yeastGEM.yml +++ b/ModelFiles/yml/yeastGEM.yml @@ -12,11 +12,11 @@ - formula: "C6H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "13BDglcn" - - chebi: "CHEBI:37671" - - kegg.compound: "C00965" - - metanetx.chemical: "MNXM6492" - - sbo: "SBO:0000247" + - bigg.metabolite: "13BDglcn" + - chebi: "CHEBI:37671" + - kegg.compound: "C00965" + - metanetx.chemical: "MNXM6492" + - sbo: "SBO:0000247" - !!omap - id: "s_0002" - name: "(1->3)-beta-D-glucan" @@ -24,11 +24,11 @@ - formula: "C6H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "13BDglcn" - - chebi: "CHEBI:37671" - - kegg.compound: "C00965" - - metanetx.chemical: "MNXM6492" - - sbo: "SBO:0000247" + - bigg.metabolite: "13BDglcn" + - chebi: "CHEBI:37671" + - kegg.compound: "C00965" + - metanetx.chemical: "MNXM6492" + - sbo: "SBO:0000247" - !!omap - id: "s_0003" - name: "(1->3)-beta-D-glucan" @@ -36,11 +36,11 @@ - formula: "C6H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "13BDglcn" - - chebi: "CHEBI:37671" - - kegg.compound: "C00965" - - metanetx.chemical: "MNXM6492" - - sbo: "SBO:0000247" + - bigg.metabolite: "13BDglcn" + - chebi: "CHEBI:37671" + - kegg.compound: "C00965" + - metanetx.chemical: "MNXM6492" + - sbo: "SBO:0000247" - !!omap - id: "s_0004" - name: "(1->6)-beta-D-glucan" @@ -48,11 +48,11 @@ - formula: "C6H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "16BDglcn" - - chebi: "CHEBI:27380" - - kegg.compound: "C02493" - - metanetx.chemical: "MNXM9375" - - sbo: "SBO:0000247" + - bigg.metabolite: "16BDglcn" + - chebi: "CHEBI:27380" + - kegg.compound: "C02493" + - metanetx.chemical: "MNXM9375" + - sbo: "SBO:0000247" - !!omap - id: "s_0006" - name: "(2-amino-4-hydroxy-7,8-dihydropteridin-6-yl)methyl trihydrogen diphosphate" @@ -60,11 +60,11 @@ - formula: "C7H8N5O8P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "2ahhmd" - - chebi: "CHEBI:57602" - - kegg.compound: "C04807" - - metanetx.chemical: "MNXM1160" - - sbo: "SBO:0000247" + - bigg.metabolite: "2ahhmd" + - chebi: "CHEBI:57602" + - kegg.compound: "C04807" + - metanetx.chemical: "MNXM1160" + - sbo: "SBO:0000247" - !!omap - id: "s_0007" - name: "(2E)-3-(methoxycarbonyl)pent-2-enedioic acid" @@ -72,11 +72,11 @@ - formula: "C7H6O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "aconm" - - chebi: "CHEBI:57470" - - kegg.compound: "C11514" - - metanetx.chemical: "MNXM3742" - - sbo: "SBO:0000247" + - bigg.metabolite: "aconm" + - chebi: "CHEBI:57470" + - kegg.compound: "C11514" + - metanetx.chemical: "MNXM3742" + - sbo: "SBO:0000247" - !!omap - id: "s_0008" - name: "(2R,3R)-2,3-dihydroxy-3-methylpentanoate" @@ -84,11 +84,11 @@ - formula: "C6H11O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "23dhmp" - - chebi: "CHEBI:49258" - - kegg.compound: "C06007" - - metanetx.chemical: "MNXM1202" - - sbo: "SBO:0000247" + - bigg.metabolite: "23dhmp" + - chebi: "CHEBI:49258" + - kegg.compound: "C06007" + - metanetx.chemical: "MNXM1202" + - sbo: "SBO:0000247" - !!omap - id: "s_0009" - name: "(2R,3S)-3-isopropylmalate" @@ -96,11 +96,11 @@ - formula: "C7H10O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3c2hmp" - - chebi: "CHEBI:35121" - - kegg.compound: "C04411" - - metanetx.chemical: "MNXM891" - - sbo: "SBO:0000247" + - bigg.metabolite: "3c2hmp" + - chebi: "CHEBI:35121" + - kegg.compound: "C04411" + - metanetx.chemical: "MNXM891" + - sbo: "SBO:0000247" - !!omap - id: "s_0010" - name: "(2S)-2-isopropyl-3-oxosuccinate" @@ -108,11 +108,11 @@ - formula: "C7H8O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3c4mop" - - chebi: "CHEBI:17214" - - kegg.compound: "C04236" - - metanetx.chemical: "MNXM1602" - - sbo: "SBO:0000247" + - bigg.metabolite: "3c4mop" + - chebi: "CHEBI:17214" + - kegg.compound: "C04236" + - metanetx.chemical: "MNXM1602" + - sbo: "SBO:0000247" - !!omap - id: "s_0011" - name: "(2S)-2-isopropyl-3-oxosuccinate" @@ -120,11 +120,11 @@ - formula: "C7H8O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3c4mop" - - chebi: "CHEBI:17214" - - kegg.compound: "C04236" - - metanetx.chemical: "MNXM1602" - - sbo: "SBO:0000247" + - bigg.metabolite: "3c4mop" + - chebi: "CHEBI:17214" + - kegg.compound: "C04236" + - metanetx.chemical: "MNXM1602" + - sbo: "SBO:0000247" - !!omap - id: "s_0012" - name: "(2S,3R)-3-hydroxybutane-1,2,3-tricarboxylic acid" @@ -132,11 +132,11 @@ - formula: "C7H7O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: "micit" - - chebi: "CHEBI:57429" - - kegg.compound: "C04593" - - metanetx.chemical: "MNXM1694" - - sbo: "SBO:0000247" + - bigg.metabolite: "micit" + - chebi: "CHEBI:57429" + - kegg.compound: "C04593" + - metanetx.chemical: "MNXM1694" + - sbo: "SBO:0000247" - !!omap - id: "s_0013" - name: "(5S,6S)-di-HETE" @@ -144,9 +144,9 @@ - formula: "C20H31O4" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:53026" - - metanetx.chemical: "MNXM31306" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53026" + - metanetx.chemical: "MNXM31306" + - sbo: "SBO:0000247" - !!omap - id: "s_0014" - name: "(5S,6S)-di-HETE" @@ -154,9 +154,9 @@ - formula: "C20H31O4" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:53026" - - metanetx.chemical: "MNXM31306" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53026" + - metanetx.chemical: "MNXM31306" + - sbo: "SBO:0000247" - !!omap - id: "s_0015" - name: "(N(omega)-L-arginino)succinic acid" @@ -164,11 +164,11 @@ - formula: "C10H17N4O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: "argsuc" - - chebi: "CHEBI:57472" - - kegg.compound: "C03406" - - metanetx.chemical: "MNXM722743" - - sbo: "SBO:0000247" + - bigg.metabolite: "argsuc" + - chebi: "CHEBI:57472" + - kegg.compound: "C03406" + - metanetx.chemical: "MNXM722743" + - sbo: "SBO:0000247" - !!omap - id: "s_0016" - name: "(R)-2,3-dihydroxy-3-methylbutanoate" @@ -176,11 +176,11 @@ - formula: "C5H9O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "23dhmb" - - chebi: "CHEBI:49072" - - kegg.compound: "C04272" - - metanetx.chemical: "MNXM114097" - - sbo: "SBO:0000247" + - bigg.metabolite: "23dhmb" + - chebi: "CHEBI:49072" + - kegg.compound: "C04272" + - metanetx.chemical: "MNXM114097" + - sbo: "SBO:0000247" - !!omap - id: "s_0017" - name: "(R)-4'-phosphopantothenic acid" @@ -188,11 +188,11 @@ - formula: "C9H15NO8P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "4ppan" - - chebi: "CHEBI:15905" - - kegg.compound: "C03492" - - metanetx.chemical: "MNXM415" - - sbo: "SBO:0000247" + - bigg.metabolite: "4ppan" + - chebi: "CHEBI:15905" + - kegg.compound: "C03492" + - metanetx.chemical: "MNXM415" + - sbo: "SBO:0000247" - !!omap - id: "s_0018" - name: "(R)-5-diphosphomevalonic acid" @@ -200,11 +200,11 @@ - formula: "C6H10O10P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: "5dpmev" - - chebi: "CHEBI:57557" - - kegg.compound: "C01143" - - metanetx.chemical: "MNXM689" - - sbo: "SBO:0000247" + - bigg.metabolite: "5dpmev" + - chebi: "CHEBI:57557" + - kegg.compound: "C01143" + - metanetx.chemical: "MNXM689" + - sbo: "SBO:0000247" - !!omap - id: "s_0019" - name: "(R)-5-phosphomevalonic acid" @@ -212,11 +212,11 @@ - formula: "C6H10O7P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "5pmev" - - chebi: "CHEBI:58146" - - kegg.compound: "C01107" - - metanetx.chemical: "MNXM567" - - sbo: "SBO:0000247" + - bigg.metabolite: "5pmev" + - chebi: "CHEBI:58146" + - kegg.compound: "C01107" + - metanetx.chemical: "MNXM567" + - sbo: "SBO:0000247" - !!omap - id: "s_0020" - name: "(R)-acetoin" @@ -224,11 +224,11 @@ - formula: "C4H8O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "actn__R" - - chebi: "CHEBI:15686" - - kegg.compound: "C00810" - - metanetx.chemical: "MNXM664" - - sbo: "SBO:0000247" + - bigg.metabolite: "actn__R" + - chebi: "CHEBI:15686" + - kegg.compound: "C00810" + - metanetx.chemical: "MNXM664" + - sbo: "SBO:0000247" - !!omap - id: "s_0021" - name: "(R)-carnitine" @@ -236,11 +236,11 @@ - formula: "C7H15NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "crn" - - chebi: "CHEBI:16347" - - kegg.compound: "C00318" - - metanetx.chemical: "MNXM173" - - sbo: "SBO:0000247" + - bigg.metabolite: "crn" + - chebi: "CHEBI:16347" + - kegg.compound: "C00318" + - metanetx.chemical: "MNXM173" + - sbo: "SBO:0000247" - !!omap - id: "s_0022" - name: "(R)-carnitine" @@ -248,11 +248,11 @@ - formula: "C7H15NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "crn" - - chebi: "CHEBI:16347" - - kegg.compound: "C00318" - - metanetx.chemical: "MNXM173" - - sbo: "SBO:0000247" + - bigg.metabolite: "crn" + - chebi: "CHEBI:16347" + - kegg.compound: "C00318" + - metanetx.chemical: "MNXM173" + - sbo: "SBO:0000247" - !!omap - id: "s_0023" - name: "(R)-carnitine" @@ -260,11 +260,11 @@ - formula: "C7H15NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "crn" - - chebi: "CHEBI:16347" - - kegg.compound: "C00318" - - metanetx.chemical: "MNXM173" - - sbo: "SBO:0000247" + - bigg.metabolite: "crn" + - chebi: "CHEBI:16347" + - kegg.compound: "C00318" + - metanetx.chemical: "MNXM173" + - sbo: "SBO:0000247" - !!omap - id: "s_0024" - name: "(R)-carnitine" @@ -272,11 +272,11 @@ - formula: "C7H15NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "crn" - - chebi: "CHEBI:16347" - - kegg.compound: "C00318" - - metanetx.chemical: "MNXM173" - - sbo: "SBO:0000247" + - bigg.metabolite: "crn" + - chebi: "CHEBI:16347" + - kegg.compound: "C00318" + - metanetx.chemical: "MNXM173" + - sbo: "SBO:0000247" - !!omap - id: "s_0025" - name: "(R)-lactate" @@ -284,11 +284,11 @@ - formula: "C3H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lac__D" - - chebi: "CHEBI:16004" - - kegg.compound: "C00256" - - metanetx.chemical: "MNXM285" - - sbo: "SBO:0000247" + - bigg.metabolite: "lac__D" + - chebi: "CHEBI:16004" + - kegg.compound: "C00256" + - metanetx.chemical: "MNXM285" + - sbo: "SBO:0000247" - !!omap - id: "s_0026" - name: "(R)-lactate" @@ -296,11 +296,11 @@ - formula: "C3H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lac__D" - - chebi: "CHEBI:16004" - - kegg.compound: "C00256" - - metanetx.chemical: "MNXM285" - - sbo: "SBO:0000247" + - bigg.metabolite: "lac__D" + - chebi: "CHEBI:16004" + - kegg.compound: "C00256" + - metanetx.chemical: "MNXM285" + - sbo: "SBO:0000247" - !!omap - id: "s_0027" - name: "(R)-lactate" @@ -308,11 +308,11 @@ - formula: "C3H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lac__D" - - chebi: "CHEBI:16004" - - kegg.compound: "C00256" - - metanetx.chemical: "MNXM285" - - sbo: "SBO:0000247" + - bigg.metabolite: "lac__D" + - chebi: "CHEBI:16004" + - kegg.compound: "C00256" + - metanetx.chemical: "MNXM285" + - sbo: "SBO:0000247" - !!omap - id: "s_0028" - name: "(R)-mevalonate" @@ -320,11 +320,11 @@ - formula: "C6H11O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "mev__R" - - chebi: "CHEBI:36464" - - kegg.compound: "C00418" - - metanetx.chemical: "MNXM333" - - sbo: "SBO:0000247" + - bigg.metabolite: "mev__R" + - chebi: "CHEBI:36464" + - kegg.compound: "C00418" + - metanetx.chemical: "MNXM333" + - sbo: "SBO:0000247" - !!omap - id: "s_0029" - name: "(R)-mevalonate" @@ -332,11 +332,11 @@ - formula: "C6H11O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "mev__R" - - chebi: "CHEBI:36464" - - kegg.compound: "C00418" - - metanetx.chemical: "MNXM333" - - sbo: "SBO:0000247" + - bigg.metabolite: "mev__R" + - chebi: "CHEBI:36464" + - kegg.compound: "C00418" + - metanetx.chemical: "MNXM333" + - sbo: "SBO:0000247" - !!omap - id: "s_0030" - name: "(R)-pantoate" @@ -344,11 +344,11 @@ - formula: "C6H11O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "pant__R" - - chebi: "CHEBI:15980" - - kegg.compound: "C00522" - - metanetx.chemical: "MNXM593" - - sbo: "SBO:0000247" + - bigg.metabolite: "pant__R" + - chebi: "CHEBI:15980" + - kegg.compound: "C00522" + - metanetx.chemical: "MNXM593" + - sbo: "SBO:0000247" - !!omap - id: "s_0031" - name: "(R)-pantothenate" @@ -356,11 +356,11 @@ - formula: "C9H16NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "pnto__R" - - chebi: "CHEBI:29032" - - kegg.compound: "C00864" - - metanetx.chemical: "MNXM364" - - sbo: "SBO:0000247" + - bigg.metabolite: "pnto__R" + - chebi: "CHEBI:29032" + - kegg.compound: "C00864" + - metanetx.chemical: "MNXM364" + - sbo: "SBO:0000247" - !!omap - id: "s_0032" - name: "(R)-pantothenate" @@ -368,11 +368,11 @@ - formula: "C9H16NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "pnto__R" - - chebi: "CHEBI:29032" - - kegg.compound: "C00864" - - metanetx.chemical: "MNXM364" - - sbo: "SBO:0000247" + - bigg.metabolite: "pnto__R" + - chebi: "CHEBI:29032" + - kegg.compound: "C00864" + - metanetx.chemical: "MNXM364" + - sbo: "SBO:0000247" - !!omap - id: "s_0033" - name: "(R)-S-lactoylglutathione" @@ -380,11 +380,11 @@ - formula: "C13H20N3O8S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lgt__S" - - chebi: "CHEBI:57474" - - kegg.compound: "C03451" - - metanetx.chemical: "MNXM1253" - - sbo: "SBO:0000247" + - bigg.metabolite: "lgt__S" + - chebi: "CHEBI:57474" + - kegg.compound: "C03451" + - metanetx.chemical: "MNXM1253" + - sbo: "SBO:0000247" - !!omap - id: "s_0034" - name: "(R)-S-lactoylglutathione" @@ -392,11 +392,11 @@ - formula: "C13H20N3O8S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lgt__S" - - chebi: "CHEBI:57474" - - kegg.compound: "C03451" - - metanetx.chemical: "MNXM1253" - - sbo: "SBO:0000247" + - bigg.metabolite: "lgt__S" + - chebi: "CHEBI:57474" + - kegg.compound: "C03451" + - metanetx.chemical: "MNXM1253" + - sbo: "SBO:0000247" - !!omap - id: "s_0035" - name: "(R,R)-2,3-butanediol" @@ -404,11 +404,11 @@ - formula: "C4H10O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "btd_RR" - - chebi: "CHEBI:16982" - - kegg.compound: "C03044" - - metanetx.chemical: "MNXM2757" - - sbo: "SBO:0000247" + - bigg.metabolite: "btd_RR" + - chebi: "CHEBI:16982" + - kegg.compound: "C03044" + - metanetx.chemical: "MNXM2757" + - sbo: "SBO:0000247" - !!omap - id: "s_0036" - name: "(R,R)-2,3-butanediol" @@ -416,11 +416,11 @@ - formula: "C4H10O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "btd_RR" - - chebi: "CHEBI:16982" - - kegg.compound: "C03044" - - metanetx.chemical: "MNXM2757" - - sbo: "SBO:0000247" + - bigg.metabolite: "btd_RR" + - chebi: "CHEBI:16982" + - kegg.compound: "C03044" + - metanetx.chemical: "MNXM2757" + - sbo: "SBO:0000247" - !!omap - id: "s_0037" - name: "(S)-2,3-epoxysqualene" @@ -428,11 +428,11 @@ - formula: "C30H50O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "Ssq23epx" - - chebi: "CHEBI:15441" - - kegg.compound: "C01054" - - metanetx.chemical: "MNXM130" - - sbo: "SBO:0000247" + - bigg.metabolite: "Ssq23epx" + - chebi: "CHEBI:15441" + - kegg.compound: "C01054" + - metanetx.chemical: "MNXM130" + - sbo: "SBO:0000247" - !!omap - id: "s_0038" - name: "(S)-2,3-epoxysqualene" @@ -440,11 +440,11 @@ - formula: "C30H50O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "Ssq23epx" - - chebi: "CHEBI:15441" - - kegg.compound: "C01054" - - metanetx.chemical: "MNXM130" - - sbo: "SBO:0000247" + - bigg.metabolite: "Ssq23epx" + - chebi: "CHEBI:15441" + - kegg.compound: "C01054" + - metanetx.chemical: "MNXM130" + - sbo: "SBO:0000247" - !!omap - id: "s_0039" - name: "(S)-2-acetyl-2-hydroxybutanoate" @@ -452,11 +452,11 @@ - formula: "C6H9O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "2ahbut" - - chebi: "CHEBI:49256" - - kegg.compound: "C06006" - - metanetx.chemical: "MNXM114220" - - sbo: "SBO:0000247" + - bigg.metabolite: "2ahbut" + - chebi: "CHEBI:49256" + - kegg.compound: "C06006" + - metanetx.chemical: "MNXM114220" + - sbo: "SBO:0000247" - !!omap - id: "s_0042" - name: "(R)-3-hydroxydecanoyl-CoA" @@ -464,11 +464,11 @@ - formula: "C31H50N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3hdcoa" - - chebi: "CHEBI:28325" - - kegg.compound: "C05264" - - metanetx.chemical: "MNXM674" - - sbo: "SBO:0000247" + - bigg.metabolite: "3hdcoa" + - chebi: "CHEBI:28325" + - kegg.compound: "C05264" + - metanetx.chemical: "MNXM674" + - sbo: "SBO:0000247" - !!omap - id: "s_0045" - name: "(S)-3-hydroxyhexacosanoyl-CoA" @@ -476,9 +476,9 @@ - formula: "C47H82N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:52976" - - metanetx.chemical: "MNXM31741" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52976" + - metanetx.chemical: "MNXM31741" + - sbo: "SBO:0000247" - !!omap - id: "s_0048" - name: "(R)-3-hydroxylauroyl-CoA" @@ -486,11 +486,11 @@ - formula: "C33H54N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3hddcoa" - - chebi: "CHEBI:27668" - - kegg.compound: "C05262" - - metanetx.chemical: "MNXM733" - - sbo: "SBO:0000247" + - bigg.metabolite: "3hddcoa" + - chebi: "CHEBI:27668" + - kegg.compound: "C05262" + - metanetx.chemical: "MNXM733" + - sbo: "SBO:0000247" - !!omap - id: "s_0051" - name: "(S)-3-hydroxypalmitoyl-CoA" @@ -498,11 +498,11 @@ - formula: "C37H62N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3hhdcoa" - - chebi: "CHEBI:27402" - - kegg.compound: "C05258" - - metanetx.chemical: "MNXM825" - - sbo: "SBO:0000247" + - bigg.metabolite: "3hhdcoa" + - chebi: "CHEBI:27402" + - kegg.compound: "C05258" + - metanetx.chemical: "MNXM825" + - sbo: "SBO:0000247" - !!omap - id: "s_0054" - name: "(S)-3-hydroxytetradecanoyl-CoA" @@ -510,11 +510,11 @@ - formula: "C35H58N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3htdcoa" - - chebi: "CHEBI:27466" - - kegg.compound: "C05260" - - metanetx.chemical: "MNXM767" - - sbo: "SBO:0000247" + - bigg.metabolite: "3htdcoa" + - chebi: "CHEBI:27466" + - kegg.compound: "C05260" + - metanetx.chemical: "MNXM767" + - sbo: "SBO:0000247" - !!omap - id: "s_0056" - name: "(S)-3-methyl-2-oxopentanoate" @@ -522,11 +522,11 @@ - formula: "C6H9O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3mop" - - chebi: "CHEBI:35146" - - kegg.compound: "C00671" - - metanetx.chemical: "MNXM439" - - sbo: "SBO:0000247" + - bigg.metabolite: "3mop" + - chebi: "CHEBI:35146" + - kegg.compound: "C00671" + - metanetx.chemical: "MNXM439" + - sbo: "SBO:0000247" - !!omap - id: "s_0058" - name: "(S)-3-methyl-2-oxopentanoate" @@ -534,11 +534,11 @@ - formula: "C6H9O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3mop" - - chebi: "CHEBI:35146" - - kegg.compound: "C00671" - - metanetx.chemical: "MNXM439" - - sbo: "SBO:0000247" + - bigg.metabolite: "3mop" + - chebi: "CHEBI:35146" + - kegg.compound: "C00671" + - metanetx.chemical: "MNXM439" + - sbo: "SBO:0000247" - !!omap - id: "s_0060" - name: "(S)-3-methyl-2-oxopentanoate" @@ -546,11 +546,11 @@ - formula: "C6H9O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3mop" - - chebi: "CHEBI:35146" - - kegg.compound: "C00671" - - metanetx.chemical: "MNXM439" - - sbo: "SBO:0000247" + - bigg.metabolite: "3mop" + - chebi: "CHEBI:35146" + - kegg.compound: "C00671" + - metanetx.chemical: "MNXM439" + - sbo: "SBO:0000247" - !!omap - id: "s_0061" - name: "(S)-dihydroorotate" @@ -558,11 +558,11 @@ - formula: "C5H5N2O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "dhor__S" - - chebi: "CHEBI:30864" - - kegg.compound: "C00337" - - metanetx.chemical: "MNXM252" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhor__S" + - chebi: "CHEBI:30864" + - kegg.compound: "C00337" + - metanetx.chemical: "MNXM252" + - sbo: "SBO:0000247" - !!omap - id: "s_0062" - name: "(S)-lactaldehyde" @@ -570,11 +570,11 @@ - formula: "C3H6O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "lald__L" - - chebi: "CHEBI:18041" - - kegg.compound: "C00424" - - metanetx.chemical: "MNXM2387" - - sbo: "SBO:0000247" + - bigg.metabolite: "lald__L" + - chebi: "CHEBI:18041" + - kegg.compound: "C00424" + - metanetx.chemical: "MNXM2387" + - sbo: "SBO:0000247" - !!omap - id: "s_0063" - name: "(S)-lactate" @@ -582,11 +582,11 @@ - formula: "C3H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lac__L" - - chebi: "CHEBI:16651" - - kegg.compound: "C00186" - - metanetx.chemical: "MNXM179" - - sbo: "SBO:0000247" + - bigg.metabolite: "lac__L" + - chebi: "CHEBI:16651" + - kegg.compound: "C00186" + - metanetx.chemical: "MNXM179" + - sbo: "SBO:0000247" - !!omap - id: "s_0064" - name: "(S)-lactate" @@ -594,11 +594,11 @@ - formula: "C3H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lac__L" - - chebi: "CHEBI:16651" - - kegg.compound: "C00186" - - metanetx.chemical: "MNXM179" - - sbo: "SBO:0000247" + - bigg.metabolite: "lac__L" + - chebi: "CHEBI:16651" + - kegg.compound: "C00186" + - metanetx.chemical: "MNXM179" + - sbo: "SBO:0000247" - !!omap - id: "s_0065" - name: "(S)-lactate" @@ -606,11 +606,11 @@ - formula: "C3H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lac__L" - - chebi: "CHEBI:16651" - - kegg.compound: "C00186" - - metanetx.chemical: "MNXM179" - - sbo: "SBO:0000247" + - bigg.metabolite: "lac__L" + - chebi: "CHEBI:16651" + - kegg.compound: "C00186" + - metanetx.chemical: "MNXM179" + - sbo: "SBO:0000247" - !!omap - id: "s_0066" - name: "(S)-malate" @@ -618,11 +618,11 @@ - formula: "C4H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "mal__L" - - chebi: "CHEBI:15589" - - kegg.compound: "C00149" - - metanetx.chemical: "MNXM98" - - sbo: "SBO:0000247" + - bigg.metabolite: "mal__L" + - chebi: "CHEBI:15589" + - kegg.compound: "C00149" + - metanetx.chemical: "MNXM98" + - sbo: "SBO:0000247" - !!omap - id: "s_0067" - name: "(S)-malate" @@ -630,11 +630,11 @@ - formula: "C4H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "mal__L" - - chebi: "CHEBI:15589" - - kegg.compound: "C00149" - - metanetx.chemical: "MNXM98" - - sbo: "SBO:0000247" + - bigg.metabolite: "mal__L" + - chebi: "CHEBI:15589" + - kegg.compound: "C00149" + - metanetx.chemical: "MNXM98" + - sbo: "SBO:0000247" - !!omap - id: "s_0068" - name: "(S)-malate" @@ -642,11 +642,11 @@ - formula: "C4H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "mal__L" - - chebi: "CHEBI:15589" - - kegg.compound: "C00149" - - metanetx.chemical: "MNXM98" - - sbo: "SBO:0000247" + - bigg.metabolite: "mal__L" + - chebi: "CHEBI:15589" + - kegg.compound: "C00149" + - metanetx.chemical: "MNXM98" + - sbo: "SBO:0000247" - !!omap - id: "s_0069" - name: "(S)-malate" @@ -654,11 +654,11 @@ - formula: "C4H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "mal__L" - - chebi: "CHEBI:15589" - - kegg.compound: "C00149" - - metanetx.chemical: "MNXM98" - - sbo: "SBO:0000247" + - bigg.metabolite: "mal__L" + - chebi: "CHEBI:15589" + - kegg.compound: "C00149" + - metanetx.chemical: "MNXM98" + - sbo: "SBO:0000247" - !!omap - id: "s_0075" - name: "1,3-bisphospho-D-glycerate" @@ -666,11 +666,11 @@ - formula: "C3H4O10P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: "13dpg" - - chebi: "CHEBI:57604" - - kegg.compound: "C00236" - - metanetx.chemical: "MNXM261" - - sbo: "SBO:0000247" + - bigg.metabolite: "13dpg" + - chebi: "CHEBI:57604" + - kegg.compound: "C00236" + - metanetx.chemical: "MNXM261" + - sbo: "SBO:0000247" - !!omap - id: "s_0076" - name: "1-(2-carboxyphenylamino)-1-deoxy-D-ribulose 5-phosphate" @@ -678,11 +678,11 @@ - formula: "C12H13NO9P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "2cpr5p" - - chebi: "CHEBI:58613" - - kegg.compound: "C01302" - - metanetx.chemical: "MNXM1455" - - sbo: "SBO:0000247" + - bigg.metabolite: "2cpr5p" + - chebi: "CHEBI:58613" + - kegg.compound: "C01302" + - metanetx.chemical: "MNXM1455" + - sbo: "SBO:0000247" - !!omap - id: "s_0077" - name: "1-(5-phospho-D-ribosyl)-5-[(5-phospho-D-ribosylamino)methylideneamino]imidazole-4-carboxamide" @@ -690,11 +690,11 @@ - formula: "C15H21N5O15P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: "prfp" - - chebi: "CHEBI:58435" - - kegg.compound: "C04896" - - metanetx.chemical: "MNXM1397" - - sbo: "SBO:0000247" + - bigg.metabolite: "prfp" + - chebi: "CHEBI:58435" + - kegg.compound: "C04896" + - metanetx.chemical: "MNXM1397" + - sbo: "SBO:0000247" - !!omap - id: "s_0078" - name: "1-(5-phosphoribosyl)-5'-AMP" @@ -702,11 +702,11 @@ - formula: "C15H19N5O14P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: "prbamp" - - chebi: "CHEBI:59457" - - kegg.compound: "C02741" - - metanetx.chemical: "MNXM1515" - - sbo: "SBO:0000247" + - bigg.metabolite: "prbamp" + - chebi: "CHEBI:59457" + - kegg.compound: "C02741" + - metanetx.chemical: "MNXM1515" + - sbo: "SBO:0000247" - !!omap - id: "s_0079" - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol" @@ -714,11 +714,11 @@ - formula: "C9H18O11P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "g3pi" - - chebi: "CHEBI:58444" - - kegg.compound: "C01225" - - metanetx.chemical: "MNXM1517" - - sbo: "SBO:0000247" + - bigg.metabolite: "g3pi" + - chebi: "CHEBI:58444" + - kegg.compound: "C01225" + - metanetx.chemical: "MNXM1517" + - sbo: "SBO:0000247" - !!omap - id: "s_0080" - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol" @@ -726,11 +726,11 @@ - formula: "C9H18O11P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "g3pi" - - chebi: "CHEBI:58444" - - kegg.compound: "C01225" - - metanetx.chemical: "MNXM1517" - - sbo: "SBO:0000247" + - bigg.metabolite: "g3pi" + - chebi: "CHEBI:58444" + - kegg.compound: "C01225" + - metanetx.chemical: "MNXM1517" + - sbo: "SBO:0000247" - !!omap - id: "s_0084" - name: "1-acylglycerophosphocholine" @@ -738,11 +738,11 @@ - formula: "C9H20NO7PR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "pchol_cho" - - chebi: "CHEBI:11230" - - kegg.compound: "C04230" - - metanetx.chemical: "MNXM96952" - - sbo: "SBO:0000247" + - bigg.metabolite: "pchol_cho" + - chebi: "CHEBI:11230" + - kegg.compound: "C04230" + - metanetx.chemical: "MNXM96952" + - sbo: "SBO:0000247" - !!omap - id: "s_0086" - name: "1-C-(indol-3-yl)glycerol 3-phosphate" @@ -750,11 +750,11 @@ - formula: "C11H12NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3ig3p" - - chebi: "CHEBI:60820" - - kegg.compound: "C03506" - - metanetx.chemical: "MNXM163633" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ig3p" + - chebi: "CHEBI:60820" + - kegg.compound: "C03506" + - metanetx.chemical: "MNXM163633" + - sbo: "SBO:0000247" - !!omap - id: "s_0087" - name: "1-methylnicotinamide" @@ -762,11 +762,11 @@ - formula: "C7H9N2O" - charge: 1 - annotation: !!omap - - bigg.metabolite: "1mncam" - - chebi: "CHEBI:16797" - - kegg.compound: "C02918" - - metanetx.chemical: "MNXM2172" - - sbo: "SBO:0000247" + - bigg.metabolite: "1mncam" + - chebi: "CHEBI:16797" + - kegg.compound: "C02918" + - metanetx.chemical: "MNXM2172" + - sbo: "SBO:0000247" - !!omap - id: "s_0089" - name: "1-phosphatidyl-1D-myo-inositol backbone" @@ -774,11 +774,11 @@ - formula: "C9H15O9P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "pail_cho" - - chebi: "CHEBI:57880" - - kegg.compound: "C01194" - - metanetx.chemical: "MNXM62" - - sbo: "SBO:0000649" + - bigg.metabolite: "pail_cho" + - chebi: "CHEBI:57880" + - kegg.compound: "C01194" + - metanetx.chemical: "MNXM62" + - sbo: "SBO:0000649" - !!omap - id: "s_0116" - name: "1-pyrroline-3-hydroxy-5-carboxylic acid" @@ -786,11 +786,11 @@ - formula: "C5H6NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "1p3h5c" - - chebi: "CHEBI:58509" - - kegg.compound: "C04281" - - metanetx.chemical: "MNXM114091" - - sbo: "SBO:0000247" + - bigg.metabolite: "1p3h5c" + - chebi: "CHEBI:58509" + - kegg.compound: "C04281" + - metanetx.chemical: "MNXM114091" + - sbo: "SBO:0000247" - !!omap - id: "s_0117" - name: "1-pyrroline-3-hydroxy-5-carboxylic acid" @@ -798,11 +798,11 @@ - formula: "C5H6NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "1p3h5c" - - chebi: "CHEBI:58509" - - kegg.compound: "C04281" - - metanetx.chemical: "MNXM114091" - - sbo: "SBO:0000247" + - bigg.metabolite: "1p3h5c" + - chebi: "CHEBI:58509" + - kegg.compound: "C04281" + - metanetx.chemical: "MNXM114091" + - sbo: "SBO:0000247" - !!omap - id: "s_0118" - name: "1-pyrroline-5-carboxylate" @@ -810,11 +810,11 @@ - formula: "C5H6NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "1pyr5c" - - chebi: "CHEBI:15893" - - kegg.compound: "C04322" - - metanetx.chemical: "MNXM1617" - - sbo: "SBO:0000247" + - bigg.metabolite: "1pyr5c" + - chebi: "CHEBI:15893" + - kegg.compound: "C04322" + - metanetx.chemical: "MNXM1617" + - sbo: "SBO:0000247" - !!omap - id: "s_0119" - name: "1-pyrroline-5-carboxylate" @@ -822,11 +822,11 @@ - formula: "C5H6NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "1pyr5c" - - chebi: "CHEBI:15893" - - kegg.compound: "C04322" - - metanetx.chemical: "MNXM1617" - - sbo: "SBO:0000247" + - bigg.metabolite: "1pyr5c" + - chebi: "CHEBI:15893" + - kegg.compound: "C04322" + - metanetx.chemical: "MNXM1617" + - sbo: "SBO:0000247" - !!omap - id: "s_0120" - name: "10-formyl-THF" @@ -834,11 +834,11 @@ - formula: "C20H21N7O7" - charge: -2 - annotation: !!omap - - bigg.metabolite: "10fthf" - - chebi: "CHEBI:57454" - - kegg.compound: "C00234" - - metanetx.chemical: "MNXM237" - - sbo: "SBO:0000247" + - bigg.metabolite: "10fthf" + - chebi: "CHEBI:57454" + - kegg.compound: "C00234" + - metanetx.chemical: "MNXM237" + - sbo: "SBO:0000247" - !!omap - id: "s_0121" - name: "10-formyl-THF" @@ -846,11 +846,11 @@ - formula: "C20H21N7O7" - charge: -2 - annotation: !!omap - - bigg.metabolite: "10fthf" - - chebi: "CHEBI:57454" - - kegg.compound: "C00234" - - metanetx.chemical: "MNXM237" - - sbo: "SBO:0000247" + - bigg.metabolite: "10fthf" + - chebi: "CHEBI:57454" + - kegg.compound: "C00234" + - metanetx.chemical: "MNXM237" + - sbo: "SBO:0000247" - !!omap - id: "s_0122" - name: "14-demethyllanosterol" @@ -858,11 +858,11 @@ - formula: "C29H48O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "44mzym" - - chebi: "CHEBI:18364" - - kegg.compound: "C05108" - - metanetx.chemical: "MNXM913" - - sbo: "SBO:0000247" + - bigg.metabolite: "44mzym" + - chebi: "CHEBI:18364" + - kegg.compound: "C05108" + - metanetx.chemical: "MNXM913" + - sbo: "SBO:0000247" - !!omap - id: "s_0123" - name: "1D-myo-inositol 1,3,4,5-tetrakisphosphate" @@ -870,11 +870,11 @@ - formula: "C6H8O18P4" - charge: -8 - annotation: !!omap - - bigg.metabolite: "mi1345p" - - chebi: "CHEBI:57895" - - kegg.compound: "C01272" - - metanetx.chemical: "MNXM624" - - sbo: "SBO:0000247" + - bigg.metabolite: "mi1345p" + - chebi: "CHEBI:57895" + - kegg.compound: "C01272" + - metanetx.chemical: "MNXM624" + - sbo: "SBO:0000247" - !!omap - id: "s_0124" - name: "1D-myo-inositol 1,4,5,6-tetrakisphosphate" @@ -882,11 +882,11 @@ - formula: "C6H8O18P4" - charge: -8 - annotation: !!omap - - bigg.metabolite: "mi3456p" - - chebi: "CHEBI:57627" - - kegg.compound: "C11555" - - metanetx.chemical: "MNXM1620" - - sbo: "SBO:0000247" + - bigg.metabolite: "mi3456p" + - chebi: "CHEBI:57627" + - kegg.compound: "C11555" + - metanetx.chemical: "MNXM1620" + - sbo: "SBO:0000247" - !!omap - id: "s_0125" - name: "1D-myo-inositol 1,4,5-trisphosphate" @@ -894,11 +894,11 @@ - formula: "C6H9O15P3" - charge: -6 - annotation: !!omap - - bigg.metabolite: "mi145p" - - chebi: "CHEBI:203600" - - kegg.compound: "C01245" - - metanetx.chemical: "MNXM200" - - sbo: "SBO:0000247" + - bigg.metabolite: "mi145p" + - chebi: "CHEBI:203600" + - kegg.compound: "C01245" + - metanetx.chemical: "MNXM200" + - sbo: "SBO:0000247" - !!omap - id: "s_0126" - name: "1D-myo-inositol 1-phosphate" @@ -906,11 +906,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "mi1p__D" - - chebi: "CHEBI:58433" - - kegg.compound: "C01177" - - metanetx.chemical: "MNXM646" - - sbo: "SBO:0000247" + - bigg.metabolite: "mi1p__D" + - chebi: "CHEBI:58433" + - kegg.compound: "C01177" + - metanetx.chemical: "MNXM646" + - sbo: "SBO:0000247" - !!omap - id: "s_0127" - name: "1D-myo-inositol 1-phosphate" @@ -918,11 +918,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "mi1p__D" - - chebi: "CHEBI:58433" - - kegg.compound: "C01177" - - metanetx.chemical: "MNXM646" - - sbo: "SBO:0000247" + - bigg.metabolite: "mi1p__D" + - chebi: "CHEBI:58433" + - kegg.compound: "C01177" + - metanetx.chemical: "MNXM646" + - sbo: "SBO:0000247" - !!omap - id: "s_0129" - name: "1D-myo-inositol 3-phosphate" @@ -930,11 +930,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "mi3p__D" - - chebi: "CHEBI:58401" - - kegg.compound: "C04006" - - metanetx.chemical: "MNXM540" - - sbo: "SBO:0000247" + - bigg.metabolite: "mi3p__D" + - chebi: "CHEBI:58401" + - kegg.compound: "C04006" + - metanetx.chemical: "MNXM540" + - sbo: "SBO:0000247" - !!omap - id: "s_0131" - name: "2',3'-cyclic AMP" @@ -942,11 +942,11 @@ - formula: "C10H11N5O6P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "23camp" - - chebi: "CHEBI:60879" - - kegg.compound: "C02353" - - metanetx.chemical: "MNXM2598" - - sbo: "SBO:0000247" + - bigg.metabolite: "23camp" + - chebi: "CHEBI:60879" + - kegg.compound: "C02353" + - metanetx.chemical: "MNXM2598" + - sbo: "SBO:0000247" - !!omap - id: "s_0132" - name: "2'-deoxyadenosine" @@ -954,11 +954,11 @@ - formula: "C10H13N5O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dad_2" - - chebi: "CHEBI:17256" - - kegg.compound: "C00559" - - metanetx.chemical: "MNXM625" - - sbo: "SBO:0000247" + - bigg.metabolite: "dad_2" + - chebi: "CHEBI:17256" + - kegg.compound: "C00559" + - metanetx.chemical: "MNXM625" + - sbo: "SBO:0000247" - !!omap - id: "s_0133" - name: "2'-deoxyadenosine" @@ -966,11 +966,11 @@ - formula: "C10H13N5O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dad_2" - - chebi: "CHEBI:17256" - - kegg.compound: "C00559" - - metanetx.chemical: "MNXM625" - - sbo: "SBO:0000247" + - bigg.metabolite: "dad_2" + - chebi: "CHEBI:17256" + - kegg.compound: "C00559" + - metanetx.chemical: "MNXM625" + - sbo: "SBO:0000247" - !!omap - id: "s_0134" - name: "2'-deoxyguanosine" @@ -978,11 +978,11 @@ - formula: "C10H13N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dgsn" - - chebi: "CHEBI:17172" - - kegg.compound: "C00330" - - metanetx.chemical: "MNXM647" - - sbo: "SBO:0000247" + - bigg.metabolite: "dgsn" + - chebi: "CHEBI:17172" + - kegg.compound: "C00330" + - metanetx.chemical: "MNXM647" + - sbo: "SBO:0000247" - !!omap - id: "s_0135" - name: "2'-deoxyguanosine" @@ -990,11 +990,11 @@ - formula: "C10H13N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dgsn" - - chebi: "CHEBI:17172" - - kegg.compound: "C00330" - - metanetx.chemical: "MNXM647" - - sbo: "SBO:0000247" + - bigg.metabolite: "dgsn" + - chebi: "CHEBI:17172" + - kegg.compound: "C00330" + - metanetx.chemical: "MNXM647" + - sbo: "SBO:0000247" - !!omap - id: "s_0136" - name: "2'-deoxyinosine" @@ -1002,11 +1002,11 @@ - formula: "C10H12N4O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "din" - - chebi: "CHEBI:28997" - - kegg.compound: "C05512" - - metanetx.chemical: "MNXM935" - - sbo: "SBO:0000247" + - bigg.metabolite: "din" + - chebi: "CHEBI:28997" + - kegg.compound: "C05512" + - metanetx.chemical: "MNXM935" + - sbo: "SBO:0000247" - !!omap - id: "s_0137" - name: "2'-deoxyinosine" @@ -1014,11 +1014,11 @@ - formula: "C10H12N4O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "din" - - chebi: "CHEBI:28997" - - kegg.compound: "C05512" - - metanetx.chemical: "MNXM935" - - sbo: "SBO:0000247" + - bigg.metabolite: "din" + - chebi: "CHEBI:28997" + - kegg.compound: "C05512" + - metanetx.chemical: "MNXM935" + - sbo: "SBO:0000247" - !!omap - id: "s_0138" - name: "2'-deoxyuridine" @@ -1026,11 +1026,11 @@ - formula: "C9H12N2O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "duri" - - chebi: "CHEBI:16450" - - kegg.compound: "C00526" - - metanetx.chemical: "MNXM492" - - sbo: "SBO:0000247" + - bigg.metabolite: "duri" + - chebi: "CHEBI:16450" + - kegg.compound: "C00526" + - metanetx.chemical: "MNXM492" + - sbo: "SBO:0000247" - !!omap - id: "s_0139" - name: "2'-deoxyuridine" @@ -1038,11 +1038,11 @@ - formula: "C9H12N2O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "duri" - - chebi: "CHEBI:16450" - - kegg.compound: "C00526" - - metanetx.chemical: "MNXM492" - - sbo: "SBO:0000247" + - bigg.metabolite: "duri" + - chebi: "CHEBI:16450" + - kegg.compound: "C00526" + - metanetx.chemical: "MNXM492" + - sbo: "SBO:0000247" - !!omap - id: "s_0140" - name: "2,3-bisphospho-D-glyceric acid" @@ -1050,11 +1050,11 @@ - formula: "C3H3O10P2" - charge: -5 - annotation: !!omap - - bigg.metabolite: "23dpg" - - chebi: "CHEBI:58248" - - kegg.compound: "C01159" - - metanetx.chemical: "MNXM892" - - sbo: "SBO:0000247" + - bigg.metabolite: "23dpg" + - chebi: "CHEBI:58248" + - kegg.compound: "C01159" + - metanetx.chemical: "MNXM892" + - sbo: "SBO:0000247" - !!omap - id: "s_0141" - name: "2,5-diamino-4-hydroxy-6-(5-phosphoribosylamino)pyrimidine" @@ -1062,11 +1062,11 @@ - formula: "C9H14N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "25drapp" - - chebi: "CHEBI:58614" - - kegg.compound: "C01304" - - metanetx.chemical: "MNXM648" - - sbo: "SBO:0000247" + - bigg.metabolite: "25drapp" + - chebi: "CHEBI:58614" + - kegg.compound: "C01304" + - metanetx.chemical: "MNXM648" + - sbo: "SBO:0000247" - !!omap - id: "s_0142" - name: "2,5-diamino-6-(5-phosphono)ribitylamino-4(3H)-pyrimidinone" @@ -1074,11 +1074,11 @@ - formula: "C9H16N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "25dthpp" - - chebi: "CHEBI:52957" - - kegg.compound: "C18910" - - metanetx.chemical: "MNXM1099" - - sbo: "SBO:0000247" + - bigg.metabolite: "25dthpp" + - chebi: "CHEBI:52957" + - kegg.compound: "C18910" + - metanetx.chemical: "MNXM1099" + - sbo: "SBO:0000247" - !!omap - id: "s_0143" - name: "2-(3-amino-3-carboxypropyl)-L-histidine" @@ -1086,11 +1086,11 @@ - formula: "C10H16N4O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "caphis" - - chebi: "CHEBI:17144" - - kegg.compound: "C04441" - - metanetx.chemical: "MNXM3804" - - sbo: "SBO:0000247" + - bigg.metabolite: "caphis" + - chebi: "CHEBI:17144" + - kegg.compound: "C04441" + - metanetx.chemical: "MNXM3804" + - sbo: "SBO:0000247" - !!omap - id: "s_0144" - name: "2-[3-carboxy-3-(methylammonio)propyl]-L-histidine" @@ -1098,11 +1098,11 @@ - formula: "C11H18N4O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cmaphis" - - chebi: "CHEBI:57784" - - kegg.compound: "C04692" - - metanetx.chemical: "MNXM3805" - - sbo: "SBO:0000247" + - bigg.metabolite: "cmaphis" + - chebi: "CHEBI:57784" + - kegg.compound: "C04692" + - metanetx.chemical: "MNXM3805" + - sbo: "SBO:0000247" - !!omap - id: "s_0145" - name: "2-acetamido-5-oxopentanoate" @@ -1110,11 +1110,11 @@ - formula: "C7H10NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "acg5sa" - - chebi: "CHEBI:29123" - - kegg.compound: "C01250" - - metanetx.chemical: "MNXM1062" - - sbo: "SBO:0000247" + - bigg.metabolite: "acg5sa" + - chebi: "CHEBI:29123" + - kegg.compound: "C01250" + - metanetx.chemical: "MNXM1062" + - sbo: "SBO:0000247" - !!omap - id: "s_0146" - name: "2-acetyllactic acid" @@ -1122,10 +1122,10 @@ - formula: "C5H7O4" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:57774" - - kegg.compound: "C00900" - - metanetx.chemical: "MNXM426" - - sbo: "SBO:0000247" + - chebi: "CHEBI:57774" + - kegg.compound: "C00900" + - metanetx.chemical: "MNXM426" + - sbo: "SBO:0000247" - !!omap - id: "s_0147" - name: "2-amino-3-carboxymuconate-6-semialdehyde" @@ -1133,11 +1133,11 @@ - formula: "C7H6NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "cmusa" - - chebi: "CHEBI:29044" - - kegg.compound: "C04409" - - metanetx.chemical: "MNXM1372" - - sbo: "SBO:0000247" + - bigg.metabolite: "cmusa" + - chebi: "CHEBI:29044" + - kegg.compound: "C04409" + - metanetx.chemical: "MNXM1372" + - sbo: "SBO:0000247" - !!omap - id: "s_0148" - name: "2-amino-6-(hydroxymethyl)-7,8-dihydropteridin-4-ol" @@ -1145,11 +1145,11 @@ - formula: "C7H9N5O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "6hmhpt" - - chebi: "CHEBI:17083" - - kegg.compound: "C01300" - - metanetx.chemical: "MNXM937" - - sbo: "SBO:0000247" + - bigg.metabolite: "6hmhpt" + - chebi: "CHEBI:17083" + - kegg.compound: "C01300" + - metanetx.chemical: "MNXM937" + - sbo: "SBO:0000247" - !!omap - id: "s_0149" - name: "2-dehydropantoate" @@ -1157,11 +1157,11 @@ - formula: "C6H9O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "2dhp" - - chebi: "CHEBI:11561" - - kegg.compound: "C00966" - - metanetx.chemical: "MNXM959" - - sbo: "SBO:0000247" + - bigg.metabolite: "2dhp" + - chebi: "CHEBI:11561" + - kegg.compound: "C00966" + - metanetx.chemical: "MNXM959" + - sbo: "SBO:0000247" - !!omap - id: "s_0150" - name: "2-dehydropantoate" @@ -1169,11 +1169,11 @@ - formula: "C6H9O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "2dhp" - - chebi: "CHEBI:11561" - - kegg.compound: "C00966" - - metanetx.chemical: "MNXM959" - - sbo: "SBO:0000247" + - bigg.metabolite: "2dhp" + - chebi: "CHEBI:11561" + - kegg.compound: "C00966" + - metanetx.chemical: "MNXM959" + - sbo: "SBO:0000247" - !!omap - id: "s_0152" - name: "2-deoxy-D-ribose" @@ -1181,11 +1181,11 @@ - formula: "C5H10O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "drib" - - chebi: "CHEBI:28816" - - kegg.compound: "C01801" - - metanetx.chemical: "MNXM2474" - - sbo: "SBO:0000247" + - bigg.metabolite: "drib" + - chebi: "CHEBI:28816" + - kegg.compound: "C01801" + - metanetx.chemical: "MNXM2474" + - sbo: "SBO:0000247" - !!omap - id: "s_0153" - name: "2-deoxy-D-ribose 5-phosphate" @@ -1193,11 +1193,11 @@ - formula: "C5H9O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "2dr5p" - - chebi: "CHEBI:57651" - - kegg.compound: "C00673" - - metanetx.chemical: "MNXM2179" - - sbo: "SBO:0000247" + - bigg.metabolite: "2dr5p" + - chebi: "CHEBI:57651" + - kegg.compound: "C00673" + - metanetx.chemical: "MNXM2179" + - sbo: "SBO:0000247" - !!omap - id: "s_0154" - name: "2-hexaprenyl-5-hydroxy-6-methoxy-3-methyl-1,4-benzoquinone" @@ -1205,11 +1205,11 @@ - formula: "C38H56O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2hpmhmbq" - - chebi: "CHEBI:28753" - - kegg.compound: "C05805" - - metanetx.chemical: "MNXM5466" - - sbo: "SBO:0000247" + - bigg.metabolite: "2hpmhmbq" + - chebi: "CHEBI:28753" + - kegg.compound: "C05805" + - metanetx.chemical: "MNXM5466" + - sbo: "SBO:0000247" - !!omap - id: "s_0155" - name: "2-hexaprenyl-6-methoxy-1,4-benzoquinone" @@ -1217,11 +1217,11 @@ - formula: "C37H54O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2hp6mbq" - - chebi: "CHEBI:27752" - - kegg.compound: "C05803" - - metanetx.chemical: "MNXM6707" - - sbo: "SBO:0000247" + - bigg.metabolite: "2hp6mbq" + - chebi: "CHEBI:27752" + - kegg.compound: "C05803" + - metanetx.chemical: "MNXM6707" + - sbo: "SBO:0000247" - !!omap - id: "s_0156" - name: "2-hexaprenyl-6-methoxy-3-methyl-1,4-benzoquinone" @@ -1229,11 +1229,11 @@ - formula: "C38H56O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2hpmmbq" - - chebi: "CHEBI:28711" - - kegg.compound: "C05804" - - metanetx.chemical: "MNXM6067" - - sbo: "SBO:0000247" + - bigg.metabolite: "2hpmmbq" + - chebi: "CHEBI:28711" + - kegg.compound: "C05804" + - metanetx.chemical: "MNXM6067" + - sbo: "SBO:0000247" - !!omap - id: "s_0157" - name: "2-hexaprenyl-6-methoxyphenol" @@ -1241,11 +1241,11 @@ - formula: "C37H56O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2hp6mp" - - chebi: "CHEBI:1109" - - kegg.compound: "C05802" - - metanetx.chemical: "MNXM4291" - - sbo: "SBO:0000247" + - bigg.metabolite: "2hp6mp" + - chebi: "CHEBI:1109" + - kegg.compound: "C05802" + - metanetx.chemical: "MNXM4291" + - sbo: "SBO:0000247" - !!omap - id: "s_0158" - name: "2-hydroxy-3-oxobutyl phosphate" @@ -1253,11 +1253,11 @@ - formula: "C4H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "db4p" - - chebi: "CHEBI:50606" - - kegg.compound: "C15556" - - metanetx.chemical: "MNXM2323" - - sbo: "SBO:0000247" + - bigg.metabolite: "db4p" + - chebi: "CHEBI:50606" + - kegg.compound: "C15556" + - metanetx.chemical: "MNXM2323" + - sbo: "SBO:0000247" - !!omap - id: "s_0161" - name: "2-hydroxyhexadecanal" @@ -1265,10 +1265,10 @@ - formula: "C16H32O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2hhxdal" - - chebi: "CHEBI:50626" - - metanetx.chemical: "MNXM35167" - - sbo: "SBO:0000247" + - bigg.metabolite: "2hhxdal" + - chebi: "CHEBI:50626" + - metanetx.chemical: "MNXM35167" + - sbo: "SBO:0000247" - !!omap - id: "s_0162" - name: "2-isopropylmalate" @@ -1276,11 +1276,11 @@ - formula: "C7H10O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3c3hmp" - - chebi: "CHEBI:28107" - - kegg.compound: "C02504" - - metanetx.chemical: "MNXM164143" - - sbo: "SBO:0000247" + - bigg.metabolite: "3c3hmp" + - chebi: "CHEBI:28107" + - kegg.compound: "C02504" + - metanetx.chemical: "MNXM164143" + - sbo: "SBO:0000247" - !!omap - id: "s_0163" - name: "2-isopropylmalate" @@ -1288,11 +1288,11 @@ - formula: "C7H10O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3c3hmp" - - chebi: "CHEBI:28107" - - kegg.compound: "C02504" - - metanetx.chemical: "MNXM164143" - - sbo: "SBO:0000247" + - bigg.metabolite: "3c3hmp" + - chebi: "CHEBI:28107" + - kegg.compound: "C02504" + - metanetx.chemical: "MNXM164143" + - sbo: "SBO:0000247" - !!omap - id: "s_0164" - name: "2-isopropylmalate" @@ -1300,11 +1300,11 @@ - formula: "C7H10O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3c3hmp" - - chebi: "CHEBI:28107" - - kegg.compound: "C02504" - - metanetx.chemical: "MNXM164143" - - sbo: "SBO:0000247" + - bigg.metabolite: "3c3hmp" + - chebi: "CHEBI:28107" + - kegg.compound: "C02504" + - metanetx.chemical: "MNXM164143" + - sbo: "SBO:0000247" - !!omap - id: "s_0165" - name: "2-isopropylmaleic acid" @@ -1312,11 +1312,11 @@ - formula: "C7H8O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "2ippm" - - chebi: "CHEBI:58085" - - kegg.compound: "C02631" - - metanetx.chemical: "MNXM1706" - - sbo: "SBO:0000247" + - bigg.metabolite: "2ippm" + - chebi: "CHEBI:58085" + - kegg.compound: "C02631" + - metanetx.chemical: "MNXM1706" + - sbo: "SBO:0000247" - !!omap - id: "s_0166" - name: "2-methylbutanal" @@ -1324,11 +1324,11 @@ - formula: "C5H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2mbald" - - chebi: "CHEBI:16182" - - kegg.compound: "C02223" - - metanetx.chemical: "MNXM2604" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mbald" + - chebi: "CHEBI:16182" + - kegg.compound: "C02223" + - metanetx.chemical: "MNXM2604" + - sbo: "SBO:0000247" - !!omap - id: "s_0167" - name: "2-methylbutanal" @@ -1336,11 +1336,11 @@ - formula: "C5H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2mbald" - - chebi: "CHEBI:16182" - - kegg.compound: "C02223" - - metanetx.chemical: "MNXM2604" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mbald" + - chebi: "CHEBI:16182" + - kegg.compound: "C02223" + - metanetx.chemical: "MNXM2604" + - sbo: "SBO:0000247" - !!omap - id: "s_0168" - name: "2-methylbutanal" @@ -1348,11 +1348,11 @@ - formula: "C5H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2mbald" - - chebi: "CHEBI:16182" - - kegg.compound: "C02223" - - metanetx.chemical: "MNXM2604" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mbald" + - chebi: "CHEBI:16182" + - kegg.compound: "C02223" + - metanetx.chemical: "MNXM2604" + - sbo: "SBO:0000247" - !!omap - id: "s_0169" - name: "2-methylbutanol" @@ -1360,10 +1360,10 @@ - formula: "C5H12O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2mbtoh" - - chebi: "CHEBI:48945" - - metanetx.chemical: "MNXM5476" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mbtoh" + - chebi: "CHEBI:48945" + - metanetx.chemical: "MNXM5476" + - sbo: "SBO:0000247" - !!omap - id: "s_0170" - name: "2-methylbutanol" @@ -1371,10 +1371,10 @@ - formula: "C5H12O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2mbtoh" - - chebi: "CHEBI:48945" - - metanetx.chemical: "MNXM5476" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mbtoh" + - chebi: "CHEBI:48945" + - metanetx.chemical: "MNXM5476" + - sbo: "SBO:0000247" - !!omap - id: "s_0171" - name: "2-methylbutanol" @@ -1382,10 +1382,10 @@ - formula: "C5H12O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2mbtoh" - - chebi: "CHEBI:48945" - - metanetx.chemical: "MNXM5476" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mbtoh" + - chebi: "CHEBI:48945" + - metanetx.chemical: "MNXM5476" + - sbo: "SBO:0000247" - !!omap - id: "s_0172" - name: "2-methylbutyl acetate" @@ -1393,10 +1393,10 @@ - formula: "C7H14O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2mbac" - - chebi: "CHEBI:50585" - - metanetx.chemical: "MNXM35277" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mbac" + - chebi: "CHEBI:50585" + - metanetx.chemical: "MNXM35277" + - sbo: "SBO:0000247" - !!omap - id: "s_0173" - name: "2-methylbutyl acetate" @@ -1404,10 +1404,10 @@ - formula: "C7H14O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2mbac" - - chebi: "CHEBI:50585" - - metanetx.chemical: "MNXM35277" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mbac" + - chebi: "CHEBI:50585" + - metanetx.chemical: "MNXM35277" + - sbo: "SBO:0000247" - !!omap - id: "s_0174" - name: "2-methylcitrate" @@ -1415,11 +1415,11 @@ - formula: "C7H7O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: "2mcit" - - chebi: "CHEBI:15598" - - kegg.compound: "C02225" - - metanetx.chemical: "MNXM90279" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mcit" + - chebi: "CHEBI:15598" + - kegg.compound: "C02225" + - metanetx.chemical: "MNXM90279" + - sbo: "SBO:0000247" - !!omap - id: "s_0176" - name: "2-oxoadipic acid" @@ -1427,11 +1427,11 @@ - formula: "C6H6O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "2oxoadp" - - chebi: "CHEBI:57499" - - kegg.compound: "C00322" - - metanetx.chemical: "MNXM263" - - sbo: "SBO:0000247" + - bigg.metabolite: "2oxoadp" + - chebi: "CHEBI:57499" + - kegg.compound: "C00322" + - metanetx.chemical: "MNXM263" + - sbo: "SBO:0000247" - !!omap - id: "s_0177" - name: "2-oxoadipic acid" @@ -1439,11 +1439,11 @@ - formula: "C6H6O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "2oxoadp" - - chebi: "CHEBI:57499" - - kegg.compound: "C00322" - - metanetx.chemical: "MNXM263" - - sbo: "SBO:0000247" + - bigg.metabolite: "2oxoadp" + - chebi: "CHEBI:57499" + - kegg.compound: "C00322" + - metanetx.chemical: "MNXM263" + - sbo: "SBO:0000247" - !!omap - id: "s_0178" - name: "2-oxobutanoate" @@ -1451,11 +1451,11 @@ - formula: "C4H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "2obut" - - chebi: "CHEBI:16763" - - kegg.compound: "C00109" - - metanetx.chemical: "MNXM159" - - sbo: "SBO:0000247" + - bigg.metabolite: "2obut" + - chebi: "CHEBI:16763" + - kegg.compound: "C00109" + - metanetx.chemical: "MNXM159" + - sbo: "SBO:0000247" - !!omap - id: "s_0179" - name: "2-oxobutanoate" @@ -1463,11 +1463,11 @@ - formula: "C4H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "2obut" - - chebi: "CHEBI:16763" - - kegg.compound: "C00109" - - metanetx.chemical: "MNXM159" - - sbo: "SBO:0000247" + - bigg.metabolite: "2obut" + - chebi: "CHEBI:16763" + - kegg.compound: "C00109" + - metanetx.chemical: "MNXM159" + - sbo: "SBO:0000247" - !!omap - id: "s_0180" - name: "2-oxoglutarate" @@ -1475,11 +1475,11 @@ - formula: "C5H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "akg" - - chebi: "CHEBI:16810" - - kegg.compound: "C00026" - - metanetx.chemical: "MNXM20" - - sbo: "SBO:0000247" + - bigg.metabolite: "akg" + - chebi: "CHEBI:16810" + - kegg.compound: "C00026" + - metanetx.chemical: "MNXM20" + - sbo: "SBO:0000247" - !!omap - id: "s_0181" - name: "2-oxoglutarate" @@ -1487,11 +1487,11 @@ - formula: "C5H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "akg" - - chebi: "CHEBI:16810" - - kegg.compound: "C00026" - - metanetx.chemical: "MNXM20" - - sbo: "SBO:0000247" + - bigg.metabolite: "akg" + - chebi: "CHEBI:16810" + - kegg.compound: "C00026" + - metanetx.chemical: "MNXM20" + - sbo: "SBO:0000247" - !!omap - id: "s_0182" - name: "2-oxoglutarate" @@ -1499,11 +1499,11 @@ - formula: "C5H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "akg" - - chebi: "CHEBI:16810" - - kegg.compound: "C00026" - - metanetx.chemical: "MNXM20" - - sbo: "SBO:0000247" + - bigg.metabolite: "akg" + - chebi: "CHEBI:16810" + - kegg.compound: "C00026" + - metanetx.chemical: "MNXM20" + - sbo: "SBO:0000247" - !!omap - id: "s_0183" - name: "2-oxoglutarate" @@ -1511,11 +1511,11 @@ - formula: "C5H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "akg" - - chebi: "CHEBI:16810" - - kegg.compound: "C00026" - - metanetx.chemical: "MNXM20" - - sbo: "SBO:0000247" + - bigg.metabolite: "akg" + - chebi: "CHEBI:16810" + - kegg.compound: "C00026" + - metanetx.chemical: "MNXM20" + - sbo: "SBO:0000247" - !!omap - id: "s_0184" - name: "2-oxoglutarate" @@ -1523,11 +1523,11 @@ - formula: "C5H4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "akg" - - chebi: "CHEBI:16810" - - kegg.compound: "C00026" - - metanetx.chemical: "MNXM20" - - sbo: "SBO:0000247" + - bigg.metabolite: "akg" + - chebi: "CHEBI:16810" + - kegg.compound: "C00026" + - metanetx.chemical: "MNXM20" + - sbo: "SBO:0000247" - !!omap - id: "s_0185" - name: "2-phenylethanol" @@ -1535,11 +1535,11 @@ - formula: "C8H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2phetoh" - - chebi: "CHEBI:49000" - - kegg.compound: "C05853" - - metanetx.chemical: "MNXM2476" - - sbo: "SBO:0000247" + - bigg.metabolite: "2phetoh" + - chebi: "CHEBI:49000" + - kegg.compound: "C05853" + - metanetx.chemical: "MNXM2476" + - sbo: "SBO:0000247" - !!omap - id: "s_0186" - name: "2-phenylethanol" @@ -1547,11 +1547,11 @@ - formula: "C8H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2phetoh" - - chebi: "CHEBI:49000" - - kegg.compound: "C05853" - - metanetx.chemical: "MNXM2476" - - sbo: "SBO:0000247" + - bigg.metabolite: "2phetoh" + - chebi: "CHEBI:49000" + - kegg.compound: "C05853" + - metanetx.chemical: "MNXM2476" + - sbo: "SBO:0000247" - !!omap - id: "s_0187" - name: "2-phenylethanol" @@ -1559,11 +1559,11 @@ - formula: "C8H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2phetoh" - - chebi: "CHEBI:49000" - - kegg.compound: "C05853" - - metanetx.chemical: "MNXM2476" - - sbo: "SBO:0000247" + - bigg.metabolite: "2phetoh" + - chebi: "CHEBI:49000" + - kegg.compound: "C05853" + - metanetx.chemical: "MNXM2476" + - sbo: "SBO:0000247" - !!omap - id: "s_0188" - name: "2-phospho-D-glyceric acid" @@ -1571,11 +1571,11 @@ - formula: "C3H4O7P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "2pg" - - chebi: "CHEBI:58289" - - kegg.compound: "C00631" - - metanetx.chemical: "MNXM275" - - sbo: "SBO:0000247" + - bigg.metabolite: "2pg" + - chebi: "CHEBI:58289" + - kegg.compound: "C00631" + - metanetx.chemical: "MNXM275" + - sbo: "SBO:0000247" - !!omap - id: "s_0189" - name: "geranylgeranyl diphosphate" @@ -1583,11 +1583,11 @@ - formula: "C20H33O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ggdp" - - chebi: "CHEBI:58756" - - kegg.compound: "C00353" - - metanetx.chemical: "MNXM139" - - sbo: "SBO:0000247" + - bigg.metabolite: "ggdp" + - chebi: "CHEBI:58756" + - kegg.compound: "C00353" + - metanetx.chemical: "MNXM139" + - sbo: "SBO:0000247" - !!omap - id: "s_0190" - name: "farnesyl diphosphate" @@ -1595,11 +1595,11 @@ - formula: "C15H25O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "frdp" - - chebi: "CHEBI:175763" - - kegg.compound: "C00448" - - metanetx.chemical: "MNXM34" - - sbo: "SBO:0000247" + - bigg.metabolite: "frdp" + - chebi: "CHEBI:175763" + - kegg.compound: "C00448" + - metanetx.chemical: "MNXM34" + - sbo: "SBO:0000247" - !!omap - id: "s_0191" - name: "farnesyl diphosphate" @@ -1607,11 +1607,11 @@ - formula: "C15H25O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "frdp" - - chebi: "CHEBI:175763" - - kegg.compound: "C00448" - - metanetx.chemical: "MNXM34" - - sbo: "SBO:0000247" + - bigg.metabolite: "frdp" + - chebi: "CHEBI:175763" + - kegg.compound: "C00448" + - metanetx.chemical: "MNXM34" + - sbo: "SBO:0000247" - !!omap - id: "s_0192" - name: "3',5'-cyclic AMP" @@ -1619,11 +1619,11 @@ - formula: "C10H11N5O6P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "camp" - - chebi: "CHEBI:58165" - - kegg.compound: "C00575" - - metanetx.chemical: "MNXM243" - - sbo: "SBO:0000247" + - bigg.metabolite: "camp" + - chebi: "CHEBI:58165" + - kegg.compound: "C00575" + - metanetx.chemical: "MNXM243" + - sbo: "SBO:0000247" - !!omap - id: "s_0193" - name: "3',5'-cyclic CMP" @@ -1631,11 +1631,11 @@ - formula: "C9H11N3O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "35ccmp" - - chebi: "CHEBI:58003" - - kegg.compound: "C00941" - - metanetx.chemical: "MNXM3162" - - sbo: "SBO:0000247" + - bigg.metabolite: "35ccmp" + - chebi: "CHEBI:58003" + - kegg.compound: "C00941" + - metanetx.chemical: "MNXM3162" + - sbo: "SBO:0000247" - !!omap - id: "s_0194" - name: "3',5'-cyclic dAMP" @@ -1643,11 +1643,11 @@ - formula: "C10H11N5O5P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "35cdamp" - - chebi: "CHEBI:28074" - - kegg.compound: "C00968" - - metanetx.chemical: "MNXM9931" - - sbo: "SBO:0000247" + - bigg.metabolite: "35cdamp" + - chebi: "CHEBI:28074" + - kegg.compound: "C00968" + - metanetx.chemical: "MNXM9931" + - sbo: "SBO:0000247" - !!omap - id: "s_0195" - name: "3',5'-cyclic GMP" @@ -1655,11 +1655,11 @@ - formula: "C10H11N5O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "35cgmp" - - chebi: "CHEBI:57746" - - kegg.compound: "C00942" - - metanetx.chemical: "MNXM665" - - sbo: "SBO:0000247" + - bigg.metabolite: "35cgmp" + - chebi: "CHEBI:57746" + - kegg.compound: "C00942" + - metanetx.chemical: "MNXM665" + - sbo: "SBO:0000247" - !!omap - id: "s_0196" - name: "3',5'-cyclic IMP" @@ -1667,11 +1667,11 @@ - formula: "C10H10N4O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "35cimp" - - chebi: "CHEBI:27541" - - kegg.compound: "C00943" - - metanetx.chemical: "MNXM9932" - - sbo: "SBO:0000247" + - bigg.metabolite: "35cimp" + - chebi: "CHEBI:27541" + - kegg.compound: "C00943" + - metanetx.chemical: "MNXM9932" + - sbo: "SBO:0000247" - !!omap - id: "s_0197" - name: "3'-dephospho-CoA" @@ -1679,11 +1679,11 @@ - formula: "C21H33N7O13P2S" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dpcoa" - - chebi: "CHEBI:57328" - - kegg.compound: "C00882" - - metanetx.chemical: "MNXM481" - - sbo: "SBO:0000247" + - bigg.metabolite: "dpcoa" + - chebi: "CHEBI:57328" + - kegg.compound: "C00882" + - metanetx.chemical: "MNXM481" + - sbo: "SBO:0000247" - !!omap - id: "s_0200" - name: "3'-dephospho-CoA" @@ -1691,11 +1691,11 @@ - formula: "C21H33N7O13P2S" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dpcoa" - - chebi: "CHEBI:57328" - - kegg.compound: "C00882" - - metanetx.chemical: "MNXM481" - - sbo: "SBO:0000247" + - bigg.metabolite: "dpcoa" + - chebi: "CHEBI:57328" + - kegg.compound: "C00882" + - metanetx.chemical: "MNXM481" + - sbo: "SBO:0000247" - !!omap - id: "s_0201" - name: "3'-phospho-5'-adenylyl sulfate" @@ -1703,11 +1703,11 @@ - formula: "C10H11N5O13P2S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "paps" - - chebi: "CHEBI:58339" - - kegg.compound: "C00053" - - metanetx.chemical: "MNXM49" - - sbo: "SBO:0000247" + - bigg.metabolite: "paps" + - chebi: "CHEBI:58339" + - kegg.compound: "C00053" + - metanetx.chemical: "MNXM49" + - sbo: "SBO:0000247" - !!omap - id: "s_0204" - name: "3-(4-hydroxyphenyl)pyruvate" @@ -1715,11 +1715,11 @@ - formula: "C9H7O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "34hpp" - - chebi: "CHEBI:36242" - - kegg.compound: "C01179" - - metanetx.chemical: "MNXM153" - - sbo: "SBO:0000247" + - bigg.metabolite: "34hpp" + - chebi: "CHEBI:36242" + - kegg.compound: "C01179" + - metanetx.chemical: "MNXM153" + - sbo: "SBO:0000247" - !!omap - id: "s_0206" - name: "3-(4-hydroxyphenyl)pyruvate" @@ -1727,11 +1727,11 @@ - formula: "C9H7O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "34hpp" - - chebi: "CHEBI:36242" - - kegg.compound: "C01179" - - metanetx.chemical: "MNXM153" - - sbo: "SBO:0000247" + - bigg.metabolite: "34hpp" + - chebi: "CHEBI:36242" + - kegg.compound: "C01179" + - metanetx.chemical: "MNXM153" + - sbo: "SBO:0000247" - !!omap - id: "s_0207" - name: "3-(imidazol-4-yl)-2-oxopropyl dihydrogen phosphate" @@ -1739,11 +1739,11 @@ - formula: "C6H7N2O5P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "imacp" - - chebi: "CHEBI:57766" - - kegg.compound: "C01267" - - metanetx.chemical: "MNXM1456" - - sbo: "SBO:0000247" + - bigg.metabolite: "imacp" + - chebi: "CHEBI:57766" + - kegg.compound: "C01267" + - metanetx.chemical: "MNXM1456" + - sbo: "SBO:0000247" - !!omap - id: "s_0208" - name: "3-aminopropanal" @@ -1751,11 +1751,11 @@ - formula: "C3H8NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: "aproa" - - chebi: "CHEBI:58374" - - kegg.compound: "C02229" - - metanetx.chemical: "MNXM493" - - sbo: "SBO:0000247" + - bigg.metabolite: "aproa" + - chebi: "CHEBI:58374" + - kegg.compound: "C02229" + - metanetx.chemical: "MNXM493" + - sbo: "SBO:0000247" - !!omap - id: "s_0209" - name: "3-dehydro-4-methylzymosterol" @@ -1763,10 +1763,10 @@ - formula: "C28H44O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:50593" - - kegg.compound: "C15816" - - metanetx.chemical: "MNXM36392" - - sbo: "SBO:0000247" + - chebi: "CHEBI:50593" + - kegg.compound: "C15816" + - metanetx.chemical: "MNXM36392" + - sbo: "SBO:0000247" - !!omap - id: "s_0210" - name: "3-dehydroquinate" @@ -1774,11 +1774,11 @@ - formula: "C7H9O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3dhq" - - chebi: "CHEBI:32364" - - kegg.compound: "C00944" - - metanetx.chemical: "MNXM478" - - sbo: "SBO:0000247" + - bigg.metabolite: "3dhq" + - chebi: "CHEBI:32364" + - kegg.compound: "C00944" + - metanetx.chemical: "MNXM478" + - sbo: "SBO:0000247" - !!omap - id: "s_0211" - name: "3-dehydroshikimate" @@ -1786,11 +1786,11 @@ - formula: "C7H7O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3dhsk" - - chebi: "CHEBI:16630" - - kegg.compound: "C02637" - - metanetx.chemical: "MNXM611" - - sbo: "SBO:0000247" + - bigg.metabolite: "3dhsk" + - chebi: "CHEBI:16630" + - kegg.compound: "C02637" + - metanetx.chemical: "MNXM611" + - sbo: "SBO:0000247" - !!omap - id: "s_0212" - name: "3-hexaprenyl-4,5-dihydroxybenzoic acid" @@ -1798,11 +1798,11 @@ - formula: "C37H53O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3dh5hpb" - - chebi: "CHEBI:58373" - - kegg.compound: "C05200" - - metanetx.chemical: "MNXM2783" - - sbo: "SBO:0000247" + - bigg.metabolite: "3dh5hpb" + - chebi: "CHEBI:58373" + - kegg.compound: "C05200" + - metanetx.chemical: "MNXM2783" + - sbo: "SBO:0000247" - !!omap - id: "s_0213" - name: "3-hexaprenyl-4,5-dihydroxybenzoic acid" @@ -1810,11 +1810,11 @@ - formula: "C37H53O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3dh5hpb" - - chebi: "CHEBI:58373" - - kegg.compound: "C05200" - - metanetx.chemical: "MNXM2783" - - sbo: "SBO:0000247" + - bigg.metabolite: "3dh5hpb" + - chebi: "CHEBI:58373" + - kegg.compound: "C05200" + - metanetx.chemical: "MNXM2783" + - sbo: "SBO:0000247" - !!omap - id: "s_0214" - name: "3-hexaprenyl-4-hydroxy-5-methoxybenzoic acid" @@ -1822,11 +1822,11 @@ - formula: "C38H55O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3hph5mb" - - chebi: "CHEBI:57916" - - kegg.compound: "C05313" - - metanetx.chemical: "MNXM3166" - - sbo: "SBO:0000247" + - bigg.metabolite: "3hph5mb" + - chebi: "CHEBI:57916" + - kegg.compound: "C05313" + - metanetx.chemical: "MNXM3166" + - sbo: "SBO:0000247" - !!omap - id: "s_0215" - name: "3-hexaprenyl-4-hydroxybenzoic acid" @@ -1834,11 +1834,11 @@ - formula: "C37H53O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3ophb_5" - - chebi: "CHEBI:31116" - - kegg.compound: "C13425" - - metanetx.chemical: "MNXM3167" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ophb_5" + - chebi: "CHEBI:31116" + - kegg.compound: "C13425" + - metanetx.chemical: "MNXM3167" + - sbo: "SBO:0000247" - !!omap - id: "s_0216" - name: "3-hexaprenyl-4-hydroxybenzoic acid" @@ -1846,11 +1846,11 @@ - formula: "C37H53O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3ophb_5" - - chebi: "CHEBI:31116" - - kegg.compound: "C13425" - - metanetx.chemical: "MNXM3167" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ophb_5" + - chebi: "CHEBI:31116" + - kegg.compound: "C13425" + - metanetx.chemical: "MNXM3167" + - sbo: "SBO:0000247" - !!omap - id: "s_0217" - name: "3-hydroxy-2-isopropyl-4-methoxy-4-oxobutanoate" @@ -1858,9 +1858,9 @@ - formula: "C8H13O5" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:52960" - - metanetx.chemical: "MNXM36486" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52960" + - metanetx.chemical: "MNXM36486" + - sbo: "SBO:0000247" - !!omap - id: "s_0218" - name: "3-hydroxy-3-methylglutaryl-CoA" @@ -1868,11 +1868,11 @@ - formula: "C27H39N7O20P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: "hmgcoa" - - chebi: "CHEBI:11814" - - kegg.compound: "C00356" - - metanetx.chemical: "MNXM197" - - sbo: "SBO:0000247" + - bigg.metabolite: "hmgcoa" + - chebi: "CHEBI:11814" + - kegg.compound: "C00356" + - metanetx.chemical: "MNXM197" + - sbo: "SBO:0000247" - !!omap - id: "s_0221" - name: "3-hydroxy-3-methylglutaryl-CoA" @@ -1880,11 +1880,11 @@ - formula: "C27H39N7O20P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: "hmgcoa" - - chebi: "CHEBI:11814" - - kegg.compound: "C00356" - - metanetx.chemical: "MNXM197" - - sbo: "SBO:0000247" + - bigg.metabolite: "hmgcoa" + - chebi: "CHEBI:11814" + - kegg.compound: "C00356" + - metanetx.chemical: "MNXM197" + - sbo: "SBO:0000247" - !!omap - id: "s_0222" - name: "3-hydroxy-L-kynurenine" @@ -1892,11 +1892,11 @@ - formula: "C10H12N2O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "hLkynr" - - chebi: "CHEBI:17380" - - kegg.compound: "C03227" - - metanetx.chemical: "MNXM576" - - sbo: "SBO:0000247" + - bigg.metabolite: "hLkynr" + - chebi: "CHEBI:17380" + - kegg.compound: "C03227" + - metanetx.chemical: "MNXM576" + - sbo: "SBO:0000247" - !!omap - id: "s_0224" - name: "3-hydroxyanthranilate" @@ -1904,11 +1904,11 @@ - formula: "C7H6NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3hanthrn" - - chebi: "CHEBI:36559" - - kegg.compound: "C00632" - - metanetx.chemical: "MNXM359" - - sbo: "SBO:0000247" + - bigg.metabolite: "3hanthrn" + - chebi: "CHEBI:36559" + - kegg.compound: "C00632" + - metanetx.chemical: "MNXM359" + - sbo: "SBO:0000247" - !!omap - id: "s_0229" - name: "3-hydroxyoctadecanoyl-CoA" @@ -1916,11 +1916,11 @@ - formula: "C39H66N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2248" - - chebi: "CHEBI:50583" - - kegg.compound: "C16217" - - metanetx.chemical: "MNXM1309" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2248" + - chebi: "CHEBI:50583" + - kegg.compound: "C16217" + - metanetx.chemical: "MNXM1309" + - sbo: "SBO:0000247" - !!omap - id: "s_0231" - name: "3-ketosphinganine" @@ -1928,11 +1928,11 @@ - formula: "C18H38NO2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "3dsphgn" - - chebi: "CHEBI:58299" - - kegg.compound: "C02934" - - metanetx.chemical: "MNXM559" - - sbo: "SBO:0000247" + - bigg.metabolite: "3dsphgn" + - chebi: "CHEBI:58299" + - kegg.compound: "C02934" + - metanetx.chemical: "MNXM559" + - sbo: "SBO:0000247" - !!omap - id: "s_0232" - name: "3-methyl-2-oxobutanoate" @@ -1940,11 +1940,11 @@ - formula: "C5H7O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3mob" - - chebi: "CHEBI:11851" - - kegg.compound: "C00141" - - metanetx.chemical: "MNXM238" - - sbo: "SBO:0000247" + - bigg.metabolite: "3mob" + - chebi: "CHEBI:11851" + - kegg.compound: "C00141" + - metanetx.chemical: "MNXM238" + - sbo: "SBO:0000247" - !!omap - id: "s_0233" - name: "3-methyl-2-oxobutanoate" @@ -1952,11 +1952,11 @@ - formula: "C5H7O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3mob" - - chebi: "CHEBI:11851" - - kegg.compound: "C00141" - - metanetx.chemical: "MNXM238" - - sbo: "SBO:0000247" + - bigg.metabolite: "3mob" + - chebi: "CHEBI:11851" + - kegg.compound: "C00141" + - metanetx.chemical: "MNXM238" + - sbo: "SBO:0000247" - !!omap - id: "s_0234" - name: "3-methylbutanal" @@ -1964,11 +1964,11 @@ - formula: "C5H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "3mbald" - - chebi: "CHEBI:16638" - - kegg.compound: "C07329" - - metanetx.chemical: "MNXM5280" - - sbo: "SBO:0000247" + - bigg.metabolite: "3mbald" + - chebi: "CHEBI:16638" + - kegg.compound: "C07329" + - metanetx.chemical: "MNXM5280" + - sbo: "SBO:0000247" - !!omap - id: "s_0235" - name: "3-methylbutanal" @@ -1976,11 +1976,11 @@ - formula: "C5H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "3mbald" - - chebi: "CHEBI:16638" - - kegg.compound: "C07329" - - metanetx.chemical: "MNXM5280" - - sbo: "SBO:0000247" + - bigg.metabolite: "3mbald" + - chebi: "CHEBI:16638" + - kegg.compound: "C07329" + - metanetx.chemical: "MNXM5280" + - sbo: "SBO:0000247" - !!omap - id: "s_0236" - name: "3-methylbutanal" @@ -1988,11 +1988,11 @@ - formula: "C5H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "3mbald" - - chebi: "CHEBI:16638" - - kegg.compound: "C07329" - - metanetx.chemical: "MNXM5280" - - sbo: "SBO:0000247" + - bigg.metabolite: "3mbald" + - chebi: "CHEBI:16638" + - kegg.compound: "C07329" + - metanetx.chemical: "MNXM5280" + - sbo: "SBO:0000247" - !!omap - id: "s_0239" - name: "3-oxodecanoyl-CoA" @@ -2000,11 +2000,11 @@ - formula: "C31H48N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3odcoa" - - chebi: "CHEBI:28528" - - kegg.compound: "C05265" - - metanetx.chemical: "MNXM677" - - sbo: "SBO:0000247" + - bigg.metabolite: "3odcoa" + - chebi: "CHEBI:28528" + - kegg.compound: "C05265" + - metanetx.chemical: "MNXM677" + - sbo: "SBO:0000247" - !!omap - id: "s_0243" - name: "3-oxohexacosanoyl-CoA" @@ -2012,10 +2012,10 @@ - formula: "C47H80N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3ohxccoa" - - chebi: "CHEBI:52977" - - metanetx.chemical: "MNXM36758" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ohxccoa" + - chebi: "CHEBI:52977" + - metanetx.chemical: "MNXM36758" + - sbo: "SBO:0000247" - !!omap - id: "s_0247" - name: "3-oxolauroyl-CoA" @@ -2023,11 +2023,11 @@ - formula: "C33H52N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3oddcoa" - - chebi: "CHEBI:27868" - - kegg.compound: "C05263" - - metanetx.chemical: "MNXM705" - - sbo: "SBO:0000247" + - bigg.metabolite: "3oddcoa" + - chebi: "CHEBI:27868" + - kegg.compound: "C05263" + - metanetx.chemical: "MNXM705" + - sbo: "SBO:0000247" - !!omap - id: "s_0250" - name: "3-oxooctadecanoyl-CoA" @@ -2035,11 +2035,11 @@ - formula: "C39H64N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3ohodcoa" - - chebi: "CHEBI:50571" - - kegg.compound: "C16216" - - metanetx.chemical: "MNXM513" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ohodcoa" + - chebi: "CHEBI:50571" + - kegg.compound: "C16216" + - metanetx.chemical: "MNXM513" + - sbo: "SBO:0000247" - !!omap - id: "s_0253" - name: "3-oxopalmitoyl-CoA" @@ -2047,11 +2047,11 @@ - formula: "C37H60N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3ohdcoa" - - chebi: "CHEBI:57349" - - kegg.compound: "C05259" - - metanetx.chemical: "MNXM738" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ohdcoa" + - chebi: "CHEBI:57349" + - kegg.compound: "C05259" + - metanetx.chemical: "MNXM738" + - sbo: "SBO:0000247" - !!omap - id: "s_0257" - name: "3-oxotetradecanoyl-CoA" @@ -2059,11 +2059,11 @@ - formula: "C35H56N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3otdcoa" - - chebi: "CHEBI:28726" - - kegg.compound: "C05261" - - metanetx.chemical: "MNXM707" - - sbo: "SBO:0000247" + - bigg.metabolite: "3otdcoa" + - chebi: "CHEBI:28726" + - kegg.compound: "C05261" + - metanetx.chemical: "MNXM707" + - sbo: "SBO:0000247" - !!omap - id: "s_0258" - name: "3-phospho-hydroxypyruvate" @@ -2071,11 +2071,11 @@ - formula: "C3H2O7P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "3php" - - chebi: "CHEBI:18110" - - kegg.compound: "C03232" - - metanetx.chemical: "MNXM541" - - sbo: "SBO:0000247" + - bigg.metabolite: "3php" + - chebi: "CHEBI:18110" + - kegg.compound: "C03232" + - metanetx.chemical: "MNXM541" + - sbo: "SBO:0000247" - !!omap - id: "s_0259" - name: "3-phospho-serine" @@ -2083,11 +2083,11 @@ - formula: "C3H6NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pser__L" - - chebi: "CHEBI:57524" - - kegg.compound: "C01005" - - metanetx.chemical: "MNXM379" - - sbo: "SBO:0000247" + - bigg.metabolite: "pser__L" + - chebi: "CHEBI:57524" + - kegg.compound: "C01005" + - metanetx.chemical: "MNXM379" + - sbo: "SBO:0000247" - !!omap - id: "s_0260" - name: "3-phosphonato-D-glycerate(3-)" @@ -2095,11 +2095,11 @@ - formula: "C3H4O7P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "3pg" - - chebi: "CHEBI:58272" - - kegg.compound: "C00197" - - metanetx.chemical: "MNXM126" - - sbo: "SBO:0000247" + - bigg.metabolite: "3pg" + - chebi: "CHEBI:58272" + - kegg.compound: "C00197" + - metanetx.chemical: "MNXM126" + - sbo: "SBO:0000247" - !!omap - id: "s_0261" - name: "3-phosphoshikimic acid" @@ -2107,11 +2107,11 @@ - formula: "C7H8O8P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "skm5p" - - chebi: "CHEBI:145989" - - kegg.compound: "C03175" - - metanetx.chemical: "MNXM1265" - - sbo: "SBO:0000247" + - bigg.metabolite: "skm5p" + - chebi: "CHEBI:145989" + - kegg.compound: "C03175" + - metanetx.chemical: "MNXM1265" + - sbo: "SBO:0000247" - !!omap - id: "s_0262" - name: "4,4-dimethyl-5alpha-cholesta-8,14,24-trien-3beta-ol" @@ -2119,11 +2119,11 @@ - formula: "C29H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "44mctr" - - chebi: "CHEBI:17813" - - kegg.compound: "C11455" - - metanetx.chemical: "MNXM1036" - - sbo: "SBO:0000247" + - bigg.metabolite: "44mctr" + - chebi: "CHEBI:17813" + - kegg.compound: "C11455" + - metanetx.chemical: "MNXM1036" + - sbo: "SBO:0000247" - !!omap - id: "s_0263" - name: "4,5-bis(diphospho)-1D-myo-inositol tetrakisphosphate" @@ -2131,9 +2131,9 @@ - formula: "C6H7O30P8" - charge: -13 - annotation: !!omap - - chebi: "CHEBI:53066" - - metanetx.chemical: "MNXM484827" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53066" + - metanetx.chemical: "MNXM484827" + - sbo: "SBO:0000247" - !!omap - id: "s_0264" - name: "4-(phosphonooxy)-L-threonine" @@ -2141,11 +2141,11 @@ - formula: "C4H8NO7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "phthr" - - chebi: "CHEBI:58452" - - kegg.compound: "C06055" - - metanetx.chemical: "MNXM759" - - sbo: "SBO:0000247" + - bigg.metabolite: "phthr" + - chebi: "CHEBI:58452" + - kegg.compound: "C06055" + - metanetx.chemical: "MNXM759" + - sbo: "SBO:0000247" - !!omap - id: "s_0267" - name: "4-amino-2-methyl-5-diphosphomethylpyrimidine" @@ -2153,11 +2153,11 @@ - formula: "C6H8N3O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "2mahmp" - - chebi: "CHEBI:57841" - - kegg.compound: "C04752" - - metanetx.chemical: "MNXM1135" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mahmp" + - chebi: "CHEBI:57841" + - kegg.compound: "C04752" + - metanetx.chemical: "MNXM1135" + - sbo: "SBO:0000247" - !!omap - id: "s_0268" - name: "4-amino-2-methyl-5-phosphomethylpyrimidine" @@ -2165,11 +2165,11 @@ - formula: "C6H8N3O4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "4ampm" - - chebi: "CHEBI:58354" - - kegg.compound: "C04556" - - metanetx.chemical: "MNXM790" - - sbo: "SBO:0000247" + - bigg.metabolite: "4ampm" + - chebi: "CHEBI:58354" + - kegg.compound: "C04556" + - metanetx.chemical: "MNXM790" + - sbo: "SBO:0000247" - !!omap - id: "s_0269" - name: "4-amino-4-deoxychorismate" @@ -2177,11 +2177,11 @@ - formula: "C10H10NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "4adcho" - - chebi: "CHEBI:35181" - - kegg.compound: "C11355" - - metanetx.chemical: "MNXM1458" - - sbo: "SBO:0000247" + - bigg.metabolite: "4adcho" + - chebi: "CHEBI:35181" + - kegg.compound: "C11355" + - metanetx.chemical: "MNXM1458" + - sbo: "SBO:0000247" - !!omap - id: "s_0270" - name: "4-amino-5-hydroxymethyl-2-methylpyrimidine" @@ -2189,11 +2189,11 @@ - formula: "C6H9N3O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4ahmmp" - - chebi: "CHEBI:16892" - - kegg.compound: "C01279" - - metanetx.chemical: "MNXM874" - - sbo: "SBO:0000247" + - bigg.metabolite: "4ahmmp" + - chebi: "CHEBI:16892" + - kegg.compound: "C01279" + - metanetx.chemical: "MNXM874" + - sbo: "SBO:0000247" - !!omap - id: "s_0271" - name: "4-aminobenzoate" @@ -2201,11 +2201,11 @@ - formula: "C7H6NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "4abz" - - chebi: "CHEBI:17836" - - kegg.compound: "C00568" - - metanetx.chemical: "MNXM421" - - sbo: "SBO:0000247" + - bigg.metabolite: "4abz" + - chebi: "CHEBI:17836" + - kegg.compound: "C00568" + - metanetx.chemical: "MNXM421" + - sbo: "SBO:0000247" - !!omap - id: "s_0272" - name: "4-aminobenzoate" @@ -2213,11 +2213,11 @@ - formula: "C7H6NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "4abz" - - chebi: "CHEBI:17836" - - kegg.compound: "C00568" - - metanetx.chemical: "MNXM421" - - sbo: "SBO:0000247" + - bigg.metabolite: "4abz" + - chebi: "CHEBI:17836" + - kegg.compound: "C00568" + - metanetx.chemical: "MNXM421" + - sbo: "SBO:0000247" - !!omap - id: "s_0273" - name: "4-aminobenzoate" @@ -2225,11 +2225,11 @@ - formula: "C7H6NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "4abz" - - chebi: "CHEBI:17836" - - kegg.compound: "C00568" - - metanetx.chemical: "MNXM421" - - sbo: "SBO:0000247" + - bigg.metabolite: "4abz" + - chebi: "CHEBI:17836" + - kegg.compound: "C00568" + - metanetx.chemical: "MNXM421" + - sbo: "SBO:0000247" - !!omap - id: "s_0274" - name: "4-aminobutanal" @@ -2237,11 +2237,11 @@ - formula: "C4H10NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: "4abutn" - - chebi: "CHEBI:58264" - - kegg.compound: "C00555" - - metanetx.chemical: "MNXM422" - - sbo: "SBO:0000247" + - bigg.metabolite: "4abutn" + - chebi: "CHEBI:58264" + - kegg.compound: "C00555" + - metanetx.chemical: "MNXM422" + - sbo: "SBO:0000247" - !!omap - id: "s_0275" - name: "4-aminobutanal" @@ -2249,11 +2249,11 @@ - formula: "C4H10NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: "4abutn" - - chebi: "CHEBI:58264" - - kegg.compound: "C00555" - - metanetx.chemical: "MNXM422" - - sbo: "SBO:0000247" + - bigg.metabolite: "4abutn" + - chebi: "CHEBI:58264" + - kegg.compound: "C00555" + - metanetx.chemical: "MNXM422" + - sbo: "SBO:0000247" - !!omap - id: "s_0279" - name: "4-diphospho-1D-myo-inositol pentakisphosphate" @@ -2261,10 +2261,10 @@ - formula: "C6H6O27P7" - charge: -13 - annotation: !!omap - - chebi: "CHEBI:53064" - - kegg.compound: "C11526" - - metanetx.chemical: "MNXM1715" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53064" + - kegg.compound: "C11526" + - metanetx.chemical: "MNXM1715" + - sbo: "SBO:0000247" - !!omap - id: "s_0280" - name: "4-guanidinobutanamide" @@ -2272,11 +2272,11 @@ - formula: "C5H13N4O" - charge: 1 - annotation: !!omap - - bigg.metabolite: "4gudbd" - - chebi: "CHEBI:58365" - - kegg.compound: "C03078" - - metanetx.chemical: "MNXM2617" - - sbo: "SBO:0000247" + - bigg.metabolite: "4gudbd" + - chebi: "CHEBI:58365" + - kegg.compound: "C03078" + - metanetx.chemical: "MNXM2617" + - sbo: "SBO:0000247" - !!omap - id: "s_0281" - name: "4-guanidinobutanoic acid" @@ -2284,11 +2284,11 @@ - formula: "C5H11N3O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4gudbutn" - - chebi: "CHEBI:15728" - - kegg.compound: "C01035" - - metanetx.chemical: "MNXM1312" - - sbo: "SBO:0000247" + - bigg.metabolite: "4gudbutn" + - chebi: "CHEBI:15728" + - kegg.compound: "C01035" + - metanetx.chemical: "MNXM1312" + - sbo: "SBO:0000247" - !!omap - id: "s_0282" - name: "4-hydroxy-2-oxoglutarate" @@ -2296,11 +2296,11 @@ - formula: "C5H4O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "4h2oglt" - - chebi: "CHEBI:17742" - - kegg.compound: "C01127" - - metanetx.chemical: "MNXM894" - - sbo: "SBO:0000247" + - bigg.metabolite: "4h2oglt" + - chebi: "CHEBI:17742" + - kegg.compound: "C01127" + - metanetx.chemical: "MNXM894" + - sbo: "SBO:0000247" - !!omap - id: "s_0283" - name: "4-hydroxy-2-oxoglutarate" @@ -2308,11 +2308,11 @@ - formula: "C5H4O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "4h2oglt" - - chebi: "CHEBI:17742" - - kegg.compound: "C01127" - - metanetx.chemical: "MNXM894" - - sbo: "SBO:0000247" + - bigg.metabolite: "4h2oglt" + - chebi: "CHEBI:17742" + - kegg.compound: "C01127" + - metanetx.chemical: "MNXM894" + - sbo: "SBO:0000247" - !!omap - id: "s_0284" - name: "4-hydroxy-2-oxoglutarate" @@ -2320,11 +2320,11 @@ - formula: "C5H4O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "4h2oglt" - - chebi: "CHEBI:17742" - - kegg.compound: "C01127" - - metanetx.chemical: "MNXM894" - - sbo: "SBO:0000247" + - bigg.metabolite: "4h2oglt" + - chebi: "CHEBI:17742" + - kegg.compound: "C01127" + - metanetx.chemical: "MNXM894" + - sbo: "SBO:0000247" - !!omap - id: "s_0285" - name: "4-hydroxy-L-threonine" @@ -2332,11 +2332,11 @@ - formula: "C4H9NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4hthr" - - chebi: "CHEBI:28330" - - kegg.compound: "C06056" - - metanetx.chemical: "MNXM1802" - - sbo: "SBO:0000247" + - bigg.metabolite: "4hthr" + - chebi: "CHEBI:28330" + - kegg.compound: "C06056" + - metanetx.chemical: "MNXM1802" + - sbo: "SBO:0000247" - !!omap - id: "s_0286" - name: "4-hydroxybenzoate" @@ -2344,11 +2344,11 @@ - formula: "C7H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "4hbz" - - chebi: "CHEBI:17879" - - kegg.compound: "C00156" - - metanetx.chemical: "MNXM164" - - sbo: "SBO:0000247" + - bigg.metabolite: "4hbz" + - chebi: "CHEBI:17879" + - kegg.compound: "C00156" + - metanetx.chemical: "MNXM164" + - sbo: "SBO:0000247" - !!omap - id: "s_0287" - name: "4-hydroxybenzoate" @@ -2356,11 +2356,11 @@ - formula: "C7H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "4hbz" - - chebi: "CHEBI:17879" - - kegg.compound: "C00156" - - metanetx.chemical: "MNXM164" - - sbo: "SBO:0000247" + - bigg.metabolite: "4hbz" + - chebi: "CHEBI:17879" + - kegg.compound: "C00156" + - metanetx.chemical: "MNXM164" + - sbo: "SBO:0000247" - !!omap - id: "s_0290" - name: "4-hydroxybenzoyl-CoA" @@ -2368,11 +2368,11 @@ - formula: "C28H36N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "4hbzcoa" - - chebi: "CHEBI:57356" - - kegg.compound: "C02949" - - metanetx.chemical: "MNXM739" - - sbo: "SBO:0000247" + - bigg.metabolite: "4hbzcoa" + - chebi: "CHEBI:57356" + - kegg.compound: "C02949" + - metanetx.chemical: "MNXM739" + - sbo: "SBO:0000247" - !!omap - id: "s_0291" - name: "4-methyl-2-oxopentanoate" @@ -2380,11 +2380,11 @@ - formula: "C6H9O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "4mop" - - chebi: "CHEBI:17865" - - kegg.compound: "C00233" - - metanetx.chemical: "MNXM404" - - sbo: "SBO:0000247" + - bigg.metabolite: "4mop" + - chebi: "CHEBI:17865" + - kegg.compound: "C00233" + - metanetx.chemical: "MNXM404" + - sbo: "SBO:0000247" - !!omap - id: "s_0292" - name: "4-methyl-2-oxopentanoate" @@ -2392,11 +2392,11 @@ - formula: "C6H9O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "4mop" - - chebi: "CHEBI:17865" - - kegg.compound: "C00233" - - metanetx.chemical: "MNXM404" - - sbo: "SBO:0000247" + - bigg.metabolite: "4mop" + - chebi: "CHEBI:17865" + - kegg.compound: "C00233" + - metanetx.chemical: "MNXM404" + - sbo: "SBO:0000247" - !!omap - id: "s_0293" - name: "4-methyl-5-(2-phosphonooxyethyl)thiazole" @@ -2404,11 +2404,11 @@ - formula: "C6H8NO4PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: "4mpetz" - - chebi: "CHEBI:58296" - - kegg.compound: "C04327" - - metanetx.chemical: "MNXM960" - - sbo: "SBO:0000247" + - bigg.metabolite: "4mpetz" + - chebi: "CHEBI:58296" + - kegg.compound: "C04327" + - metanetx.chemical: "MNXM960" + - sbo: "SBO:0000247" - !!omap - id: "s_0294" - name: "4-methylthio-2-oxobutanoate" @@ -2416,11 +2416,11 @@ - formula: "C5H7O3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "4met2obut" - - chebi: "CHEBI:16723" - - kegg.compound: "C01180" - - metanetx.chemical: "MNXM276" - - sbo: "SBO:0000247" + - bigg.metabolite: "4met2obut" + - chebi: "CHEBI:16723" + - kegg.compound: "C01180" + - metanetx.chemical: "MNXM276" + - sbo: "SBO:0000247" - !!omap - id: "s_0295" - name: "4-phospho-L-aspartate" @@ -2428,11 +2428,11 @@ - formula: "C4H6NO7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "4pasp" - - chebi: "CHEBI:30407" - - kegg.compound: "C03082" - - metanetx.chemical: "MNXM1177" - - sbo: "SBO:0000247" + - bigg.metabolite: "4pasp" + - chebi: "CHEBI:30407" + - kegg.compound: "C03082" + - metanetx.chemical: "MNXM1177" + - sbo: "SBO:0000247" - !!omap - id: "s_0296" - name: "4alpha-methylzymosterol" @@ -2440,11 +2440,11 @@ - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4mzym" - - chebi: "CHEBI:1949" - - kegg.compound: "C05103" - - metanetx.chemical: "MNXM1804" - - sbo: "SBO:0000247" + - bigg.metabolite: "4mzym" + - chebi: "CHEBI:1949" + - kegg.compound: "C05103" + - metanetx.chemical: "MNXM1804" + - sbo: "SBO:0000247" - !!omap - id: "s_0297" - name: "4beta-methylzymosterol-4alpha-carboxylic acid" @@ -2452,10 +2452,10 @@ - formula: "C29H45O3" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:50591" - - kegg.compound: "C15808" - - metanetx.chemical: "MNXM37762" - - sbo: "SBO:0000247" + - chebi: "CHEBI:50591" + - kegg.compound: "C15808" + - metanetx.chemical: "MNXM37762" + - sbo: "SBO:0000247" - !!omap - id: "s_0298" - name: "5'-adenylyl sulfate" @@ -2463,11 +2463,11 @@ - formula: "C10H12N5O10PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: "aps" - - chebi: "CHEBI:58243" - - kegg.compound: "C00224" - - metanetx.chemical: "MNXM287" - - sbo: "SBO:0000247" + - bigg.metabolite: "aps" + - chebi: "CHEBI:58243" + - kegg.compound: "C00224" + - metanetx.chemical: "MNXM287" + - sbo: "SBO:0000247" - !!omap - id: "s_0299" - name: "5'-phosphoribosyl-4-(N-succinocarboxamide)-5-aminoimidazole" @@ -2475,11 +2475,11 @@ - formula: "C13H15N4O12P" - charge: -4 - annotation: !!omap - - bigg.metabolite: "25aics" - - chebi: "CHEBI:58443" - - kegg.compound: "C04823" - - metanetx.chemical: "MNXM607" - - sbo: "SBO:0000247" + - bigg.metabolite: "25aics" + - chebi: "CHEBI:58443" + - kegg.compound: "C04823" + - metanetx.chemical: "MNXM607" + - sbo: "SBO:0000247" - !!omap - id: "s_0300" - name: "5'-phosphoribosyl-5-aminoimidazole" @@ -2487,11 +2487,11 @@ - formula: "C8H13N3O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "air" - - chebi: "CHEBI:58592" - - kegg.compound: "C03373" - - metanetx.chemical: "MNXM388" - - sbo: "SBO:0000247" + - bigg.metabolite: "air" + - chebi: "CHEBI:58592" + - kegg.compound: "C03373" + - metanetx.chemical: "MNXM388" + - sbo: "SBO:0000247" - !!omap - id: "s_0301" - name: "5'-phosphoribosyl-N-formylglycineamide" @@ -2499,11 +2499,11 @@ - formula: "C8H13N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "fgam" - - chebi: "CHEBI:58426" - - kegg.compound: "C04376" - - metanetx.chemical: "MNXM453" - - sbo: "SBO:0000247" + - bigg.metabolite: "fgam" + - chebi: "CHEBI:58426" + - kegg.compound: "C04376" + - metanetx.chemical: "MNXM453" + - sbo: "SBO:0000247" - !!omap - id: "s_0302" - name: "5'-phosphoribosyl-N-formylglycineamidine" @@ -2511,11 +2511,11 @@ - formula: "C8H15N3O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "fpram" - - chebi: "CHEBI:58478" - - kegg.compound: "C04640" - - metanetx.chemical: "MNXM568" - - sbo: "SBO:0000247" + - bigg.metabolite: "fpram" + - chebi: "CHEBI:58478" + - kegg.compound: "C04640" + - metanetx.chemical: "MNXM568" + - sbo: "SBO:0000247" - !!omap - id: "s_0303" - name: "5'-S-methyl-5'-thioadenosine" @@ -2523,11 +2523,11 @@ - formula: "C11H15N5O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "5mta" - - chebi: "CHEBI:17509" - - kegg.compound: "C00170" - - metanetx.chemical: "MNXM150" - - sbo: "SBO:0000247" + - bigg.metabolite: "5mta" + - chebi: "CHEBI:17509" + - kegg.compound: "C00170" + - metanetx.chemical: "MNXM150" + - sbo: "SBO:0000247" - !!omap - id: "s_0304" - name: "5,10-methenyl-THF" @@ -2535,11 +2535,11 @@ - formula: "C20H20N7O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: "methf" - - chebi: "CHEBI:57455" - - kegg.compound: "C00445" - - metanetx.chemical: "MNXM511" - - sbo: "SBO:0000247" + - bigg.metabolite: "methf" + - chebi: "CHEBI:57455" + - kegg.compound: "C00445" + - metanetx.chemical: "MNXM511" + - sbo: "SBO:0000247" - !!omap - id: "s_0305" - name: "5,10-methenyl-THF" @@ -2547,11 +2547,11 @@ - formula: "C20H20N7O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: "methf" - - chebi: "CHEBI:57455" - - kegg.compound: "C00445" - - metanetx.chemical: "MNXM511" - - sbo: "SBO:0000247" + - bigg.metabolite: "methf" + - chebi: "CHEBI:57455" + - kegg.compound: "C00445" + - metanetx.chemical: "MNXM511" + - sbo: "SBO:0000247" - !!omap - id: "s_0306" - name: "5,10-methylenetetrahydrofolate" @@ -2559,11 +2559,11 @@ - formula: "C20H21N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "mlthf" - - chebi: "CHEBI:12071" - - kegg.compound: "C00143" - - metanetx.chemical: "MNXM183" - - sbo: "SBO:0000247" + - bigg.metabolite: "mlthf" + - chebi: "CHEBI:12071" + - kegg.compound: "C00143" + - metanetx.chemical: "MNXM183" + - sbo: "SBO:0000247" - !!omap - id: "s_0307" - name: "5,10-methylenetetrahydrofolate" @@ -2571,11 +2571,11 @@ - formula: "C20H21N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "mlthf" - - chebi: "CHEBI:12071" - - kegg.compound: "C00143" - - metanetx.chemical: "MNXM183" - - sbo: "SBO:0000247" + - bigg.metabolite: "mlthf" + - chebi: "CHEBI:12071" + - kegg.compound: "C00143" + - metanetx.chemical: "MNXM183" + - sbo: "SBO:0000247" - !!omap - id: "s_0308" - name: "5,6,7,8-tetrahydrofolyl-L-glutamic acid" @@ -2583,11 +2583,11 @@ - formula: "C24H27N8O9" - charge: -3 - annotation: !!omap - - bigg.metabolite: "thfglu" - - chebi: "CHEBI:27650" - - kegg.compound: "C09332" - - metanetx.chemical: "MNXM723480" - - sbo: "SBO:0000247" + - bigg.metabolite: "thfglu" + - chebi: "CHEBI:27650" + - kegg.compound: "C09332" + - metanetx.chemical: "MNXM723480" + - sbo: "SBO:0000247" - !!omap - id: "s_0309" - name: "5,6-bis(diphospho)-1D-myo-inositol tetrakisphosphate" @@ -2595,9 +2595,9 @@ - formula: "C6H7O30P8" - charge: -13 - annotation: !!omap - - chebi: "CHEBI:52965" - - metanetx.chemical: "MNXM487477" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52965" + - metanetx.chemical: "MNXM487477" + - sbo: "SBO:0000247" - !!omap - id: "s_0310" - name: "5-(2-hydroxyethyl)-4-methylthiazole" @@ -2605,11 +2605,11 @@ - formula: "C6H9NOS" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4mhetz" - - chebi: "CHEBI:17957" - - kegg.compound: "C04294" - - metanetx.chemical: "MNXM962" - - sbo: "SBO:0000247" + - bigg.metabolite: "4mhetz" + - chebi: "CHEBI:17957" + - kegg.compound: "C04294" + - metanetx.chemical: "MNXM962" + - sbo: "SBO:0000247" - !!omap - id: "s_0311" - name: "5-(methylsulfanyl)-2,3-dioxopentyl phosphate" @@ -2617,11 +2617,11 @@ - formula: "C6H9O6PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dkmpp" - - chebi: "CHEBI:58828" - - kegg.compound: "C15650" - - metanetx.chemical: "MNXM162358" - - sbo: "SBO:0000247" + - bigg.metabolite: "dkmpp" + - chebi: "CHEBI:58828" + - kegg.compound: "C15650" + - metanetx.chemical: "MNXM162358" + - sbo: "SBO:0000247" - !!omap - id: "s_0312" - name: "5-[(5-phospho-1-deoxy-D-ribulos-1-ylamino)methylideneamino]-1-(5-phospho-D-ribosyl)imidazole-4-carboxamide" @@ -2629,11 +2629,11 @@ - formula: "C15H21N5O15P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: "prlp" - - chebi: "CHEBI:58525" - - kegg.compound: "C04916" - - metanetx.chemical: "MNXM1408" - - sbo: "SBO:0000247" + - bigg.metabolite: "prlp" + - chebi: "CHEBI:58525" + - kegg.compound: "C04916" + - metanetx.chemical: "MNXM1408" + - sbo: "SBO:0000247" - !!omap - id: "s_0313" - name: "5-amino-6-(5-phosphoribitylamino)uracil" @@ -2641,11 +2641,11 @@ - formula: "C9H15N4O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "5aprbu" - - chebi: "CHEBI:58421" - - kegg.compound: "C04454" - - metanetx.chemical: "MNXM1178" - - sbo: "SBO:0000247" + - bigg.metabolite: "5aprbu" + - chebi: "CHEBI:58421" + - kegg.compound: "C04454" + - metanetx.chemical: "MNXM1178" + - sbo: "SBO:0000247" - !!omap - id: "s_0314" - name: "5-amino-6-(D-ribitylamino)uracil" @@ -2653,11 +2653,11 @@ - formula: "C9H16N4O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4r5au" - - chebi: "CHEBI:15934" - - kegg.compound: "C04732" - - metanetx.chemical: "MNXM791" - - sbo: "SBO:0000247" + - bigg.metabolite: "4r5au" + - chebi: "CHEBI:15934" + - kegg.compound: "C04732" + - metanetx.chemical: "MNXM791" + - sbo: "SBO:0000247" - !!omap - id: "s_0315" - name: "5-aminolevulinate" @@ -2665,11 +2665,11 @@ - formula: "C5H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "5aop" - - chebi: "CHEBI:17549" - - kegg.compound: "C00430" - - metanetx.chemical: "MNXM405" - - sbo: "SBO:0000247" + - bigg.metabolite: "5aop" + - chebi: "CHEBI:17549" + - kegg.compound: "C00430" + - metanetx.chemical: "MNXM405" + - sbo: "SBO:0000247" - !!omap - id: "s_0316" - name: "5-aminolevulinate" @@ -2677,11 +2677,11 @@ - formula: "C5H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "5aop" - - chebi: "CHEBI:17549" - - kegg.compound: "C00430" - - metanetx.chemical: "MNXM405" - - sbo: "SBO:0000247" + - bigg.metabolite: "5aop" + - chebi: "CHEBI:17549" + - kegg.compound: "C00430" + - metanetx.chemical: "MNXM405" + - sbo: "SBO:0000247" - !!omap - id: "s_0317" - name: "5-aminolevulinate" @@ -2689,11 +2689,11 @@ - formula: "C5H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "5aop" - - chebi: "CHEBI:17549" - - kegg.compound: "C00430" - - metanetx.chemical: "MNXM405" - - sbo: "SBO:0000247" + - bigg.metabolite: "5aop" + - chebi: "CHEBI:17549" + - kegg.compound: "C00430" + - metanetx.chemical: "MNXM405" + - sbo: "SBO:0000247" - !!omap - id: "s_0318" - name: "5-diphospho-1D-myo-inositol pentakisphosphate" @@ -2701,11 +2701,11 @@ - formula: "C6H6O27P7" - charge: -13 - annotation: !!omap - - bigg.metabolite: "ppmi12346p" - - chebi: "CHEBI:58628" - - kegg.compound: "C11526" - - metanetx.chemical: "MNXM1715" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppmi12346p" + - chebi: "CHEBI:58628" + - kegg.compound: "C11526" + - metanetx.chemical: "MNXM1715" + - sbo: "SBO:0000247" - !!omap - id: "s_0319" - name: "5-formyltetrahydrofolic acid" @@ -2713,11 +2713,11 @@ - formula: "C20H21N7O7" - charge: -2 - annotation: !!omap - - bigg.metabolite: "5fthf" - - chebi: "CHEBI:57457" - - kegg.compound: "C03479" - - metanetx.chemical: "MNXM1392" - - sbo: "SBO:0000247" + - bigg.metabolite: "5fthf" + - chebi: "CHEBI:57457" + - kegg.compound: "C03479" + - metanetx.chemical: "MNXM1392" + - sbo: "SBO:0000247" - !!omap - id: "s_0320" - name: "5-formyltetrahydrofolic acid" @@ -2725,11 +2725,11 @@ - formula: "C20H21N7O7" - charge: -2 - annotation: !!omap - - bigg.metabolite: "5fthf" - - chebi: "CHEBI:57457" - - kegg.compound: "C03479" - - metanetx.chemical: "MNXM1392" - - sbo: "SBO:0000247" + - bigg.metabolite: "5fthf" + - chebi: "CHEBI:57457" + - kegg.compound: "C03479" + - metanetx.chemical: "MNXM1392" + - sbo: "SBO:0000247" - !!omap - id: "s_0321" - name: "5-formyltetrahydrofolic acid" @@ -2737,11 +2737,11 @@ - formula: "C20H21N7O7" - charge: -2 - annotation: !!omap - - bigg.metabolite: "5fthf" - - chebi: "CHEBI:57457" - - kegg.compound: "C03479" - - metanetx.chemical: "MNXM1392" - - sbo: "SBO:0000247" + - bigg.metabolite: "5fthf" + - chebi: "CHEBI:57457" + - kegg.compound: "C03479" + - metanetx.chemical: "MNXM1392" + - sbo: "SBO:0000247" - !!omap - id: "s_0322" - name: "5-methyltetrahydrofolate" @@ -2749,11 +2749,11 @@ - formula: "C20H23N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "5mthf" - - chebi: "CHEBI:18608" - - kegg.compound: "C00440" - - metanetx.chemical: "MNXM318" - - sbo: "SBO:0000247" + - bigg.metabolite: "5mthf" + - chebi: "CHEBI:18608" + - kegg.compound: "C00440" + - metanetx.chemical: "MNXM318" + - sbo: "SBO:0000247" - !!omap - id: "s_0323" - name: "5-methyltetrahydropteroyltri-L-glutamic acid" @@ -2761,11 +2761,11 @@ - formula: "C30H35N9O12" - charge: -4 - annotation: !!omap - - bigg.metabolite: "mhpglu" - - chebi: "CHEBI:58207" - - kegg.compound: "C04489" - - metanetx.chemical: "MNXM2623" - - sbo: "SBO:0000247" + - bigg.metabolite: "mhpglu" + - chebi: "CHEBI:58207" + - kegg.compound: "C04489" + - metanetx.chemical: "MNXM2623" + - sbo: "SBO:0000247" - !!omap - id: "s_0324" - name: "5-O-(1-carboxyvinyl)-3-phosphoshikimic acid" @@ -2773,11 +2773,11 @@ - formula: "C10H9O10P" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3psme" - - chebi: "CHEBI:57701" - - kegg.compound: "C01269" - - metanetx.chemical: "MNXM1365" - - sbo: "SBO:0000247" + - bigg.metabolite: "3psme" + - chebi: "CHEBI:57701" + - kegg.compound: "C01269" + - metanetx.chemical: "MNXM1365" + - sbo: "SBO:0000247" - !!omap - id: "s_0325" - name: "5-phospho-ribosyl-glycineamide" @@ -2785,11 +2785,11 @@ - formula: "C7H14N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gar" - - chebi: "CHEBI:58457" - - kegg.compound: "C03838" - - metanetx.chemical: "MNXM463" - - sbo: "SBO:0000247" + - bigg.metabolite: "gar" + - chebi: "CHEBI:58457" + - kegg.compound: "C03838" + - metanetx.chemical: "MNXM463" + - sbo: "SBO:0000247" - !!omap - id: "s_0326" - name: "5-phosphoribosyl-ATP" @@ -2797,11 +2797,11 @@ - formula: "C15H19N5O20P4" - charge: -6 - annotation: !!omap - - bigg.metabolite: "prbatp" - - chebi: "CHEBI:58424" - - kegg.compound: "C02739" - - metanetx.chemical: "MNXM1351" - - sbo: "SBO:0000247" + - bigg.metabolite: "prbatp" + - chebi: "CHEBI:58424" + - kegg.compound: "C02739" + - metanetx.chemical: "MNXM1351" + - sbo: "SBO:0000247" - !!omap - id: "s_0327" - name: "5-phosphoribosylamine" @@ -2809,11 +2809,11 @@ - formula: "C5H11NO7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "pram" - - chebi: "CHEBI:58681" - - kegg.compound: "C03090" - - metanetx.chemical: "MNXM90003" - - sbo: "SBO:0000247" + - bigg.metabolite: "pram" + - chebi: "CHEBI:58681" + - kegg.compound: "C03090" + - metanetx.chemical: "MNXM90003" + - sbo: "SBO:0000247" - !!omap - id: "s_0328" - name: "6,7-dimethyl-8-(1-D-ribityl)lumazine" @@ -2821,11 +2821,11 @@ - formula: "C13H17N4O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: "dmlz" - - chebi: "CHEBI:58201" - - kegg.compound: "C04332" - - metanetx.chemical: "MNXM1313" - - sbo: "SBO:0000247" + - bigg.metabolite: "dmlz" + - chebi: "CHEBI:58201" + - kegg.compound: "C04332" + - metanetx.chemical: "MNXM1313" + - sbo: "SBO:0000247" - !!omap - id: "s_0329" - name: "6-(alpha-D-glucosaminyl)-1-phosphatidyl-1D-myo-inositol" @@ -2833,11 +2833,11 @@ - formula: "C17H28NO17PR2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gpail_hs" - - chebi: "CHEBI:17049" - - kegg.compound: "C04248" - - metanetx.chemical: "MNXM1411" - - sbo: "SBO:0000247" + - bigg.metabolite: "gpail_hs" + - chebi: "CHEBI:17049" + - kegg.compound: "C04248" + - metanetx.chemical: "MNXM1411" + - sbo: "SBO:0000247" - !!omap - id: "s_0330" - name: "6-(alpha-D-glucosaminyl)-O-acyl-1-phosphatidyl-1D-myo-inositol" @@ -2845,9 +2845,9 @@ - formula: "" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53055" - - metanetx.chemical: "MNXM38512" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53055" + - metanetx.chemical: "MNXM38512" + - sbo: "SBO:0000247" - !!omap - id: "s_0331" - name: "6-(N-acetyl-alpha-D-glucosaminyl)-1-phosphatidyl-1D-myo-inositol" @@ -2855,11 +2855,11 @@ - formula: "C19H30NO18PR2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "acgpail_hs" - - chebi: "CHEBI:57265" - - kegg.compound: "C01288" - - metanetx.chemical: "MNXM999" - - sbo: "SBO:0000247" + - bigg.metabolite: "acgpail_hs" + - chebi: "CHEBI:57265" + - kegg.compound: "C01288" + - metanetx.chemical: "MNXM999" + - sbo: "SBO:0000247" - !!omap - id: "s_0332" - name: "6-[6-(2-aminoethylphosphoryl)-alpha-mannosyl-(1->6)-2-(2-aminoethylphosphoryl)-alpha-mannosyl-(1->6)-alpha-2-(2-aminoethylphosphoryl)mannosyl-(1->4)-alpha-glucosaminyl]-O-acyl-1-phosphatidyl-1D-myo-inositol" @@ -2867,9 +2867,9 @@ - formula: "C43H44N9O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53060" - - metanetx.chemical: "MNXM38542" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53060" + - metanetx.chemical: "MNXM38542" + - sbo: "SBO:0000247" - !!omap - id: "s_0333" - name: "6-diphospho-1D-myo-inositol pentakisphosphate" @@ -2877,10 +2877,10 @@ - formula: "C6H6O27P7" - charge: -13 - annotation: !!omap - - chebi: "CHEBI:53065" - - kegg.compound: "C11526" - - metanetx.chemical: "MNXM1715" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53065" + - kegg.compound: "C11526" + - metanetx.chemical: "MNXM1715" + - sbo: "SBO:0000247" - !!omap - id: "s_0334" - name: "6-O-[alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl]-O-acyl-1-phosphatidyl-1D-myo-inositol" @@ -2888,9 +2888,9 @@ - formula: "" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53056" - - metanetx.chemical: "MNXM1644" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53056" + - metanetx.chemical: "MNXM1644" + - sbo: "SBO:0000247" - !!omap - id: "s_0335" - name: "6-O-phosphono-D-glucono-1,5-lactone" @@ -2898,11 +2898,11 @@ - formula: "C6H9O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "6pgl" - - chebi: "CHEBI:57955" - - kegg.compound: "C01236" - - metanetx.chemical: "MNXM429" - - sbo: "SBO:0000247" + - bigg.metabolite: "6pgl" + - chebi: "CHEBI:57955" + - kegg.compound: "C01236" + - metanetx.chemical: "MNXM429" + - sbo: "SBO:0000247" - !!omap - id: "s_0337" - name: "6-O-{2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" @@ -2910,9 +2910,9 @@ - formula: "" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53057" - - metanetx.chemical: "MNXM38904" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53057" + - metanetx.chemical: "MNXM38904" + - sbo: "SBO:0000247" - !!omap - id: "s_0338" - name: "6-O-{alpha-D-mannosyl-(1->2)-alpha-D-mannosyl-(1->6)-2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" @@ -2920,9 +2920,9 @@ - formula: "" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53059" - - metanetx.chemical: "MNXM1179" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53059" + - metanetx.chemical: "MNXM1179" + - sbo: "SBO:0000247" - !!omap - id: "s_0339" - name: "6-O-{alpha-D-mannosyl-(1->6)-2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" @@ -2930,9 +2930,9 @@ - formula: "" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53058" - - metanetx.chemical: "MNXM1139" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53058" + - metanetx.chemical: "MNXM1139" + - sbo: "SBO:0000247" - !!omap - id: "s_0340" - name: "6-phospho-D-gluconate" @@ -2940,11 +2940,11 @@ - formula: "C6H10O10P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "6pgc" - - chebi: "CHEBI:58759" - - kegg.compound: "C00345" - - metanetx.chemical: "MNXM325" - - sbo: "SBO:0000247" + - bigg.metabolite: "6pgc" + - chebi: "CHEBI:58759" + - kegg.compound: "C00345" + - metanetx.chemical: "MNXM325" + - sbo: "SBO:0000247" - !!omap - id: "s_0341" - name: "7,8-diaminononanoate" @@ -2952,11 +2952,11 @@ - formula: "C9H21N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "dann" - - chebi: "CHEBI:17830" - - kegg.compound: "C01037" - - metanetx.chemical: "MNXM1140" - - sbo: "SBO:0000247" + - bigg.metabolite: "dann" + - chebi: "CHEBI:17830" + - kegg.compound: "C01037" + - metanetx.chemical: "MNXM1140" + - sbo: "SBO:0000247" - !!omap - id: "s_0342" - name: "7,8-diaminononanoate" @@ -2964,11 +2964,11 @@ - formula: "C9H21N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "dann" - - chebi: "CHEBI:17830" - - kegg.compound: "C01037" - - metanetx.chemical: "MNXM1140" - - sbo: "SBO:0000247" + - bigg.metabolite: "dann" + - chebi: "CHEBI:17830" + - kegg.compound: "C01037" + - metanetx.chemical: "MNXM1140" + - sbo: "SBO:0000247" - !!omap - id: "s_0343" - name: "7,8-dihydroneopterin" @@ -2976,11 +2976,11 @@ - formula: "C9H13N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dhnpt" - - chebi: "CHEBI:17001" - - kegg.compound: "C04874" - - metanetx.chemical: "MNXM162359" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhnpt" + - chebi: "CHEBI:17001" + - kegg.compound: "C04874" + - metanetx.chemical: "MNXM162359" + - sbo: "SBO:0000247" - !!omap - id: "s_0344" - name: "7,8-dihydroneopterin" @@ -2988,11 +2988,11 @@ - formula: "C9H13N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dhnpt" - - chebi: "CHEBI:17001" - - kegg.compound: "C04874" - - metanetx.chemical: "MNXM162359" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhnpt" + - chebi: "CHEBI:17001" + - kegg.compound: "C04874" + - metanetx.chemical: "MNXM162359" + - sbo: "SBO:0000247" - !!omap - id: "s_0345" - name: "7,8-dihydroneopterin 3'-phosphate" @@ -3000,11 +3000,11 @@ - formula: "C9H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dhpmp" - - chebi: "CHEBI:58762" - - kegg.compound: "C05925" - - metanetx.chemical: "MNXM1645" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhpmp" + - chebi: "CHEBI:58762" + - kegg.compound: "C05925" + - metanetx.chemical: "MNXM1645" + - sbo: "SBO:0000247" - !!omap - id: "s_0346" - name: "7,8-dihydroneopterin 3'-triphosphate" @@ -3012,11 +3012,11 @@ - formula: "C9H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ahdt" - - chebi: "CHEBI:58462" - - kegg.compound: "C04895" - - metanetx.chemical: "MNXM397" - - sbo: "SBO:0000247" + - bigg.metabolite: "ahdt" + - chebi: "CHEBI:58462" + - kegg.compound: "C04895" + - metanetx.chemical: "MNXM397" + - sbo: "SBO:0000247" - !!omap - id: "s_0347" - name: "7,8-dihydropteroate" @@ -3024,11 +3024,11 @@ - formula: "C14H13N6O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "dhpt" - - chebi: "CHEBI:17839" - - kegg.compound: "C00921" - - metanetx.chemical: "MNXM722728" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhpt" + - chebi: "CHEBI:17839" + - kegg.compound: "C00921" + - metanetx.chemical: "MNXM722728" + - sbo: "SBO:0000247" - !!omap - id: "s_0348" - name: "7,8-dihydropteroate" @@ -3036,11 +3036,11 @@ - formula: "C14H13N6O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "dhpt" - - chebi: "CHEBI:17839" - - kegg.compound: "C00921" - - metanetx.chemical: "MNXM722728" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhpt" + - chebi: "CHEBI:17839" + - kegg.compound: "C00921" + - metanetx.chemical: "MNXM722728" + - sbo: "SBO:0000247" - !!omap - id: "s_0349" - name: "7-phospho-2-dehydro-3-deoxy-D-arabino-heptonic acid" @@ -3048,11 +3048,11 @@ - formula: "C7H10O10P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "2dda7p" - - chebi: "CHEBI:58394" - - kegg.compound: "C04691" - - metanetx.chemical: "MNXM1219" - - sbo: "SBO:0000247" + - bigg.metabolite: "2dda7p" + - chebi: "CHEBI:58394" + - kegg.compound: "C04691" + - metanetx.chemical: "MNXM1219" + - sbo: "SBO:0000247" - !!omap - id: "s_0350" - name: "7-phospho-2-dehydro-3-deoxy-D-arabino-heptonic acid" @@ -3060,11 +3060,11 @@ - formula: "C7H10O10P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "2dda7p" - - chebi: "CHEBI:58394" - - kegg.compound: "C04691" - - metanetx.chemical: "MNXM1219" - - sbo: "SBO:0000247" + - bigg.metabolite: "2dda7p" + - chebi: "CHEBI:58394" + - kegg.compound: "C04691" + - metanetx.chemical: "MNXM1219" + - sbo: "SBO:0000247" - !!omap - id: "s_0352" - name: "8-amino-7-oxononanoate" @@ -3072,11 +3072,11 @@ - formula: "C9H17NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "8aonn" - - chebi: "CHEBI:15830" - - kegg.compound: "C01092" - - metanetx.chemical: "MNXM1141" - - sbo: "SBO:0000247" + - bigg.metabolite: "8aonn" + - chebi: "CHEBI:15830" + - kegg.compound: "C01092" + - metanetx.chemical: "MNXM1141" + - sbo: "SBO:0000247" - !!omap - id: "s_0354" - name: "8-amino-7-oxononanoate" @@ -3084,11 +3084,11 @@ - formula: "C9H17NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "8aonn" - - chebi: "CHEBI:15830" - - kegg.compound: "C01092" - - metanetx.chemical: "MNXM1141" - - sbo: "SBO:0000247" + - bigg.metabolite: "8aonn" + - chebi: "CHEBI:15830" + - kegg.compound: "C01092" + - metanetx.chemical: "MNXM1141" + - sbo: "SBO:0000247" - !!omap - id: "s_0357" - name: "9H-xanthine" @@ -3096,11 +3096,11 @@ - formula: "C5H4N4O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "xan" - - chebi: "CHEBI:17712" - - kegg.compound: "C00385" - - metanetx.chemical: "MNXM174" - - sbo: "SBO:0000247" + - bigg.metabolite: "xan" + - chebi: "CHEBI:17712" + - kegg.compound: "C00385" + - metanetx.chemical: "MNXM174" + - sbo: "SBO:0000247" - !!omap - id: "s_0358" - name: "9H-xanthine" @@ -3108,11 +3108,11 @@ - formula: "C5H4N4O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "xan" - - chebi: "CHEBI:17712" - - kegg.compound: "C00385" - - metanetx.chemical: "MNXM174" - - sbo: "SBO:0000247" + - bigg.metabolite: "xan" + - chebi: "CHEBI:17712" + - kegg.compound: "C00385" + - metanetx.chemical: "MNXM174" + - sbo: "SBO:0000247" - !!omap - id: "s_0359" - name: "acetaldehyde" @@ -3120,11 +3120,11 @@ - formula: "C2H4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "acald" - - chebi: "CHEBI:15343" - - kegg.compound: "C00084" - - metanetx.chemical: "MNXM75" - - sbo: "SBO:0000247" + - bigg.metabolite: "acald" + - chebi: "CHEBI:15343" + - kegg.compound: "C00084" + - metanetx.chemical: "MNXM75" + - sbo: "SBO:0000247" - !!omap - id: "s_0360" - name: "acetaldehyde" @@ -3132,11 +3132,11 @@ - formula: "C2H4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "acald" - - chebi: "CHEBI:15343" - - kegg.compound: "C00084" - - metanetx.chemical: "MNXM75" - - sbo: "SBO:0000247" + - bigg.metabolite: "acald" + - chebi: "CHEBI:15343" + - kegg.compound: "C00084" + - metanetx.chemical: "MNXM75" + - sbo: "SBO:0000247" - !!omap - id: "s_0361" - name: "acetaldehyde" @@ -3144,11 +3144,11 @@ - formula: "C2H4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "acald" - - chebi: "CHEBI:15343" - - kegg.compound: "C00084" - - metanetx.chemical: "MNXM75" - - sbo: "SBO:0000247" + - bigg.metabolite: "acald" + - chebi: "CHEBI:15343" + - kegg.compound: "C00084" + - metanetx.chemical: "MNXM75" + - sbo: "SBO:0000247" - !!omap - id: "s_0362" - name: "acetate" @@ -3156,11 +3156,11 @@ - formula: "C2H3O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ac" - - chebi: "CHEBI:30089" - - kegg.compound: "C00033" - - metanetx.chemical: "MNXM26" - - sbo: "SBO:0000247" + - bigg.metabolite: "ac" + - chebi: "CHEBI:30089" + - kegg.compound: "C00033" + - metanetx.chemical: "MNXM26" + - sbo: "SBO:0000247" - !!omap - id: "s_0363" - name: "acetate" @@ -3168,11 +3168,11 @@ - formula: "C2H3O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ac" - - chebi: "CHEBI:30089" - - kegg.compound: "C00033" - - metanetx.chemical: "MNXM26" - - sbo: "SBO:0000247" + - bigg.metabolite: "ac" + - chebi: "CHEBI:30089" + - kegg.compound: "C00033" + - metanetx.chemical: "MNXM26" + - sbo: "SBO:0000247" - !!omap - id: "s_0364" - name: "acetate" @@ -3180,11 +3180,11 @@ - formula: "C2H3O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ac" - - chebi: "CHEBI:30089" - - kegg.compound: "C00033" - - metanetx.chemical: "MNXM26" - - sbo: "SBO:0000247" + - bigg.metabolite: "ac" + - chebi: "CHEBI:30089" + - kegg.compound: "C00033" + - metanetx.chemical: "MNXM26" + - sbo: "SBO:0000247" - !!omap - id: "s_0365" - name: "acetate" @@ -3192,11 +3192,11 @@ - formula: "C2H3O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ac" - - chebi: "CHEBI:30089" - - kegg.compound: "C00033" - - metanetx.chemical: "MNXM26" - - sbo: "SBO:0000247" + - bigg.metabolite: "ac" + - chebi: "CHEBI:30089" + - kegg.compound: "C00033" + - metanetx.chemical: "MNXM26" + - sbo: "SBO:0000247" - !!omap - id: "s_0366" - name: "acetate" @@ -3204,11 +3204,11 @@ - formula: "C2H3O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ac" - - chebi: "CHEBI:30089" - - kegg.compound: "C00033" - - metanetx.chemical: "MNXM26" - - sbo: "SBO:0000247" + - bigg.metabolite: "ac" + - chebi: "CHEBI:30089" + - kegg.compound: "C00033" + - metanetx.chemical: "MNXM26" + - sbo: "SBO:0000247" - !!omap - id: "s_0367" - name: "acetoacetyl-CoA" @@ -3216,11 +3216,11 @@ - formula: "C25H36N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "aacoa" - - chebi: "CHEBI:57286" - - kegg.compound: "C00332" - - metanetx.chemical: "MNXM133" - - sbo: "SBO:0000247" + - bigg.metabolite: "aacoa" + - chebi: "CHEBI:57286" + - kegg.compound: "C00332" + - metanetx.chemical: "MNXM133" + - sbo: "SBO:0000247" - !!omap - id: "s_0370" - name: "acetoacetyl-CoA" @@ -3228,11 +3228,11 @@ - formula: "C25H36N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "aacoa" - - chebi: "CHEBI:57286" - - kegg.compound: "C00332" - - metanetx.chemical: "MNXM133" - - sbo: "SBO:0000247" + - bigg.metabolite: "aacoa" + - chebi: "CHEBI:57286" + - kegg.compound: "C00332" + - metanetx.chemical: "MNXM133" + - sbo: "SBO:0000247" - !!omap - id: "s_0372" - name: "acetyl-ACP" @@ -3240,11 +3240,11 @@ - formula: "C2H3OSR" - charge: 0 - annotation: !!omap - - bigg.metabolite: "acACP" - - chebi: "CHEBI:17093" - - kegg.compound: "C03939" - - metanetx.chemical: "MNXM1269" - - sbo: "SBO:0000247" + - bigg.metabolite: "acACP" + - chebi: "CHEBI:17093" + - kegg.compound: "C03939" + - metanetx.chemical: "MNXM1269" + - sbo: "SBO:0000247" - !!omap - id: "s_0373" - name: "acetyl-CoA" @@ -3252,11 +3252,11 @@ - formula: "C23H34N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "accoa" - - chebi: "CHEBI:57288" - - kegg.compound: "C00024" - - metanetx.chemical: "MNXM21" - - sbo: "SBO:0000247" + - bigg.metabolite: "accoa" + - chebi: "CHEBI:57288" + - kegg.compound: "C00024" + - metanetx.chemical: "MNXM21" + - sbo: "SBO:0000247" - !!omap - id: "s_0376" - name: "acetyl-CoA" @@ -3264,11 +3264,11 @@ - formula: "C23H34N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "accoa" - - chebi: "CHEBI:57288" - - kegg.compound: "C00024" - - metanetx.chemical: "MNXM21" - - sbo: "SBO:0000247" + - bigg.metabolite: "accoa" + - chebi: "CHEBI:57288" + - kegg.compound: "C00024" + - metanetx.chemical: "MNXM21" + - sbo: "SBO:0000247" - !!omap - id: "s_0377" - name: "acetyl-CoA" @@ -3276,11 +3276,11 @@ - formula: "C23H34N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "accoa" - - chebi: "CHEBI:57288" - - kegg.compound: "C00024" - - metanetx.chemical: "MNXM21" - - sbo: "SBO:0000247" + - bigg.metabolite: "accoa" + - chebi: "CHEBI:57288" + - kegg.compound: "C00024" + - metanetx.chemical: "MNXM21" + - sbo: "SBO:0000247" - !!omap - id: "s_0378" - name: "acetyl-CoA" @@ -3288,11 +3288,11 @@ - formula: "C23H34N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "accoa" - - chebi: "CHEBI:57288" - - kegg.compound: "C00024" - - metanetx.chemical: "MNXM21" - - sbo: "SBO:0000247" + - bigg.metabolite: "accoa" + - chebi: "CHEBI:57288" + - kegg.compound: "C00024" + - metanetx.chemical: "MNXM21" + - sbo: "SBO:0000247" - !!omap - id: "s_0383" - name: "adenine" @@ -3300,11 +3300,11 @@ - formula: "C5H5N5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ade" - - chebi: "CHEBI:16708" - - kegg.compound: "C00147" - - metanetx.chemical: "MNXM168" - - sbo: "SBO:0000247" + - bigg.metabolite: "ade" + - chebi: "CHEBI:16708" + - kegg.compound: "C00147" + - metanetx.chemical: "MNXM168" + - sbo: "SBO:0000247" - !!omap - id: "s_0384" - name: "adenine" @@ -3312,11 +3312,11 @@ - formula: "C5H5N5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ade" - - chebi: "CHEBI:16708" - - kegg.compound: "C00147" - - metanetx.chemical: "MNXM168" - - sbo: "SBO:0000247" + - bigg.metabolite: "ade" + - chebi: "CHEBI:16708" + - kegg.compound: "C00147" + - metanetx.chemical: "MNXM168" + - sbo: "SBO:0000247" - !!omap - id: "s_0385" - name: "adenine" @@ -3324,11 +3324,11 @@ - formula: "C5H5N5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ade" - - chebi: "CHEBI:16708" - - kegg.compound: "C00147" - - metanetx.chemical: "MNXM168" - - sbo: "SBO:0000247" + - bigg.metabolite: "ade" + - chebi: "CHEBI:16708" + - kegg.compound: "C00147" + - metanetx.chemical: "MNXM168" + - sbo: "SBO:0000247" - !!omap - id: "s_0386" - name: "adenosine" @@ -3336,11 +3336,11 @@ - formula: "C10H13N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "adn" - - chebi: "CHEBI:16335" - - kegg.compound: "C00212" - - metanetx.chemical: "MNXM212" - - sbo: "SBO:0000247" + - bigg.metabolite: "adn" + - chebi: "CHEBI:16335" + - kegg.compound: "C00212" + - metanetx.chemical: "MNXM212" + - sbo: "SBO:0000247" - !!omap - id: "s_0387" - name: "adenosine" @@ -3348,11 +3348,11 @@ - formula: "C10H13N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "adn" - - chebi: "CHEBI:16335" - - kegg.compound: "C00212" - - metanetx.chemical: "MNXM212" - - sbo: "SBO:0000247" + - bigg.metabolite: "adn" + - chebi: "CHEBI:16335" + - kegg.compound: "C00212" + - metanetx.chemical: "MNXM212" + - sbo: "SBO:0000247" - !!omap - id: "s_0389" - name: "adenosine 2'-phosphate" @@ -3360,11 +3360,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "amp2p" - - chebi: "CHEBI:28223" - - kegg.compound: "C00946" - - metanetx.chemical: "MNXM7028" - - sbo: "SBO:0000247" + - bigg.metabolite: "amp2p" + - chebi: "CHEBI:28223" + - kegg.compound: "C00946" + - metanetx.chemical: "MNXM7028" + - sbo: "SBO:0000247" - !!omap - id: "s_0390" - name: "adenosine 3',5'-bismonophosphate" @@ -3372,11 +3372,11 @@ - formula: "C10H11N5O10P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: "pap" - - chebi: "CHEBI:58343" - - kegg.compound: "C00054" - - metanetx.chemical: "MNXM45" - - sbo: "SBO:0000247" + - bigg.metabolite: "pap" + - chebi: "CHEBI:58343" + - kegg.compound: "C00054" + - metanetx.chemical: "MNXM45" + - sbo: "SBO:0000247" - !!omap - id: "s_0391" - name: "adenosine 3',5'-bismonophosphate" @@ -3384,11 +3384,11 @@ - formula: "C10H11N5O10P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: "pap" - - chebi: "CHEBI:58343" - - kegg.compound: "C00054" - - metanetx.chemical: "MNXM45" - - sbo: "SBO:0000247" + - bigg.metabolite: "pap" + - chebi: "CHEBI:58343" + - kegg.compound: "C00054" + - metanetx.chemical: "MNXM45" + - sbo: "SBO:0000247" - !!omap - id: "s_0392" - name: "adenosine 3',5'-bismonophosphate" @@ -3396,11 +3396,11 @@ - formula: "C10H11N5O10P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: "pap" - - chebi: "CHEBI:58343" - - kegg.compound: "C00054" - - metanetx.chemical: "MNXM45" - - sbo: "SBO:0000247" + - bigg.metabolite: "pap" + - chebi: "CHEBI:58343" + - kegg.compound: "C00054" + - metanetx.chemical: "MNXM45" + - sbo: "SBO:0000247" - !!omap - id: "s_0393" - name: "adenylo-succinate" @@ -3408,11 +3408,11 @@ - formula: "C14H14N5O11P" - charge: -4 - annotation: !!omap - - bigg.metabolite: "dcamp" - - chebi: "CHEBI:57567" - - kegg.compound: "C03794" - - metanetx.chemical: "MNXM565" - - sbo: "SBO:0000247" + - bigg.metabolite: "dcamp" + - chebi: "CHEBI:57567" + - kegg.compound: "C03794" + - metanetx.chemical: "MNXM565" + - sbo: "SBO:0000247" - !!omap - id: "s_0394" - name: "ADP" @@ -3420,11 +3420,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "adp" - - chebi: "CHEBI:456216" - - kegg.compound: "C00008" - - metanetx.chemical: "MNXM7" - - sbo: "SBO:0000247" + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - id: "s_0395" - name: "ADP" @@ -3432,11 +3432,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "adp" - - chebi: "CHEBI:456216" - - kegg.compound: "C00008" - - metanetx.chemical: "MNXM7" - - sbo: "SBO:0000247" + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - id: "s_0397" - name: "ADP" @@ -3444,11 +3444,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "adp" - - chebi: "CHEBI:456216" - - kegg.compound: "C00008" - - metanetx.chemical: "MNXM7" - - sbo: "SBO:0000247" + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - id: "s_0398" - name: "ADP" @@ -3456,11 +3456,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "adp" - - chebi: "CHEBI:456216" - - kegg.compound: "C00008" - - metanetx.chemical: "MNXM7" - - sbo: "SBO:0000247" + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - id: "s_0399" - name: "ADP" @@ -3468,11 +3468,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "adp" - - chebi: "CHEBI:456216" - - kegg.compound: "C00008" - - metanetx.chemical: "MNXM7" - - sbo: "SBO:0000247" + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - id: "s_0402" - name: "ADP-ribose" @@ -3480,11 +3480,11 @@ - formula: "C15H21N5O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "adprib" - - chebi: "CHEBI:57967" - - kegg.compound: "C00301" - - metanetx.chemical: "MNXM48596" - - sbo: "SBO:0000247" + - bigg.metabolite: "adprib" + - chebi: "CHEBI:57967" + - kegg.compound: "C00301" + - metanetx.chemical: "MNXM48596" + - sbo: "SBO:0000247" - !!omap - id: "s_0403" - name: "AICAR" @@ -3492,11 +3492,11 @@ - formula: "C9H13N4O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "aicar" - - chebi: "CHEBI:58475" - - kegg.compound: "C04677" - - metanetx.chemical: "MNXM365" - - sbo: "SBO:0000247" + - bigg.metabolite: "aicar" + - chebi: "CHEBI:58475" + - kegg.compound: "C04677" + - metanetx.chemical: "MNXM365" + - sbo: "SBO:0000247" - !!omap - id: "s_0404" - name: "Ala-tRNA(Ala)" @@ -3504,11 +3504,11 @@ - formula: "C3H7NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "alatrna" - - chebi: "CHEBI:17732" - - kegg.compound: "C00886" - - metanetx.chemical: "MNXM89815" - - sbo: "SBO:0000247" + - bigg.metabolite: "alatrna" + - chebi: "CHEBI:17732" + - kegg.compound: "C00886" + - metanetx.chemical: "MNXM89815" + - sbo: "SBO:0000247" - !!omap - id: "s_0405" - name: "allantoate" @@ -3516,11 +3516,11 @@ - formula: "C4H7N4O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "alltt" - - chebi: "CHEBI:17536" - - kegg.compound: "C00499" - - metanetx.chemical: "MNXM584" - - sbo: "SBO:0000247" + - bigg.metabolite: "alltt" + - chebi: "CHEBI:17536" + - kegg.compound: "C00499" + - metanetx.chemical: "MNXM584" + - sbo: "SBO:0000247" - !!omap - id: "s_0406" - name: "allantoate" @@ -3528,11 +3528,11 @@ - formula: "C4H7N4O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "alltt" - - chebi: "CHEBI:17536" - - kegg.compound: "C00499" - - metanetx.chemical: "MNXM584" - - sbo: "SBO:0000247" + - bigg.metabolite: "alltt" + - chebi: "CHEBI:17536" + - kegg.compound: "C00499" + - metanetx.chemical: "MNXM584" + - sbo: "SBO:0000247" - !!omap - id: "s_0407" - name: "allantoin" @@ -3540,11 +3540,11 @@ - formula: "C4H6N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "alltn" - - chebi: "CHEBI:15676" - - kegg.compound: "C01551" - - metanetx.chemical: "MNXM612" - - sbo: "SBO:0000247" + - bigg.metabolite: "alltn" + - chebi: "CHEBI:15676" + - kegg.compound: "C01551" + - metanetx.chemical: "MNXM612" + - sbo: "SBO:0000247" - !!omap - id: "s_0408" - name: "allantoin" @@ -3552,11 +3552,11 @@ - formula: "C4H6N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "alltn" - - chebi: "CHEBI:15676" - - kegg.compound: "C01551" - - metanetx.chemical: "MNXM612" - - sbo: "SBO:0000247" + - bigg.metabolite: "alltn" + - chebi: "CHEBI:15676" + - kegg.compound: "C01551" + - metanetx.chemical: "MNXM612" + - sbo: "SBO:0000247" - !!omap - id: "s_0409" - name: "alpha,alpha-trehalose 6-phosphate" @@ -3564,11 +3564,11 @@ - formula: "C12H21O14P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "tre6p" - - chebi: "CHEBI:58429" - - kegg.compound: "C00689" - - metanetx.chemical: "MNXM448" - - sbo: "SBO:0000247" + - bigg.metabolite: "tre6p" + - chebi: "CHEBI:58429" + - kegg.compound: "C00689" + - metanetx.chemical: "MNXM448" + - sbo: "SBO:0000247" - !!omap - id: "s_0410" - name: "alpha-D-galactose 1-phosphate" @@ -3576,11 +3576,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "gal1p" - - chebi: "CHEBI:58336" - - kegg.compound: "C00446" - - metanetx.chemical: "MNXM336" - - sbo: "SBO:0000247" + - bigg.metabolite: "gal1p" + - chebi: "CHEBI:58336" + - kegg.compound: "C00446" + - metanetx.chemical: "MNXM336" + - sbo: "SBO:0000247" - !!omap - id: "s_0411" - name: "alpha-D-glucosamine 1-phosphate" @@ -3588,11 +3588,11 @@ - formula: "C6H13NO8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gam1p" - - chebi: "CHEBI:58516" - - kegg.compound: "C06156" - - metanetx.chemical: "MNXM969" - - sbo: "SBO:0000247" + - bigg.metabolite: "gam1p" + - chebi: "CHEBI:58516" + - kegg.compound: "C06156" + - metanetx.chemical: "MNXM969" + - sbo: "SBO:0000247" - !!omap - id: "s_0412" - name: "alpha-D-glucosamine 6-phosphate" @@ -3600,11 +3600,11 @@ - formula: "C6H13NO8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gam6p" - - chebi: "CHEBI:15873" - - kegg.compound: "C00352" - - metanetx.chemical: "MNXM370" - - sbo: "SBO:0000247" + - bigg.metabolite: "gam6p" + - chebi: "CHEBI:15873" + - kegg.compound: "C00352" + - metanetx.chemical: "MNXM370" + - sbo: "SBO:0000247" - !!omap - id: "s_0413" - name: "alpha-D-glucosamine 6-phosphate" @@ -3612,11 +3612,11 @@ - formula: "C6H13NO8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gam6p" - - chebi: "CHEBI:15873" - - kegg.compound: "C00352" - - metanetx.chemical: "MNXM370" - - sbo: "SBO:0000247" + - bigg.metabolite: "gam6p" + - chebi: "CHEBI:15873" + - kegg.compound: "C00352" + - metanetx.chemical: "MNXM370" + - sbo: "SBO:0000247" - !!omap - id: "s_0414" - name: "alpha-D-mannosyl-beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" @@ -3624,10 +3624,10 @@ - formula: "C48H84N2O27P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:28067" - - kegg.compound: "C05861" - - metanetx.chemical: "MNXM41231" - - sbo: "SBO:0000247" + - chebi: "CHEBI:28067" + - kegg.compound: "C05861" + - metanetx.chemical: "MNXM41231" + - sbo: "SBO:0000247" - !!omap - id: "s_0415" - name: "alpha-D-ribose 1-phosphate(2-)" @@ -3635,11 +3635,11 @@ - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "r1p" - - chebi: "CHEBI:57720" - - kegg.compound: "C00620" - - metanetx.chemical: "MNXM295" - - sbo: "SBO:0000247" + - bigg.metabolite: "r1p" + - chebi: "CHEBI:57720" + - kegg.compound: "C00620" + - metanetx.chemical: "MNXM295" + - sbo: "SBO:0000247" - !!omap - id: "s_0416" - name: "alpha-D-ribose 1-phosphate(2-)" @@ -3647,11 +3647,11 @@ - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "r1p" - - chebi: "CHEBI:57720" - - kegg.compound: "C00620" - - metanetx.chemical: "MNXM295" - - sbo: "SBO:0000247" + - bigg.metabolite: "r1p" + - chebi: "CHEBI:57720" + - kegg.compound: "C00620" + - metanetx.chemical: "MNXM295" + - sbo: "SBO:0000247" - !!omap - id: "s_0417" - name: "aminoacetaldehyde" @@ -3659,11 +3659,11 @@ - formula: "C2H6NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: "aacald" - - chebi: "CHEBI:58213" - - kegg.compound: "C06735" - - metanetx.chemical: "MNXM2212" - - sbo: "SBO:0000247" + - bigg.metabolite: "aacald" + - chebi: "CHEBI:58213" + - kegg.compound: "C06735" + - metanetx.chemical: "MNXM2212" + - sbo: "SBO:0000247" - !!omap - id: "s_0418" - name: "aminoacetone" @@ -3671,11 +3671,11 @@ - formula: "C3H8NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: "aact" - - chebi: "CHEBI:58320" - - kegg.compound: "C01888" - - metanetx.chemical: "MNXM1106" - - sbo: "SBO:0000247" + - bigg.metabolite: "aact" + - chebi: "CHEBI:58320" + - kegg.compound: "C01888" + - metanetx.chemical: "MNXM1106" + - sbo: "SBO:0000247" - !!omap - id: "s_0419" - name: "ammonium" @@ -3683,11 +3683,11 @@ - formula: "H4N" - charge: 1 - annotation: !!omap - - bigg.metabolite: "nh4" - - chebi: "CHEBI:28938" - - kegg.compound: "C01342" - - metanetx.chemical: "MNXM15" - - sbo: "SBO:0000247" + - bigg.metabolite: "nh4" + - chebi: "CHEBI:28938" + - kegg.compound: "C01342" + - metanetx.chemical: "MNXM15" + - sbo: "SBO:0000247" - !!omap - id: "s_0420" - name: "ammonium" @@ -3695,11 +3695,11 @@ - formula: "H4N" - charge: 1 - annotation: !!omap - - bigg.metabolite: "nh4" - - chebi: "CHEBI:28938" - - kegg.compound: "C01342" - - metanetx.chemical: "MNXM15" - - sbo: "SBO:0000247" + - bigg.metabolite: "nh4" + - chebi: "CHEBI:28938" + - kegg.compound: "C01342" + - metanetx.chemical: "MNXM15" + - sbo: "SBO:0000247" - !!omap - id: "s_0421" - name: "ammonium" @@ -3707,11 +3707,11 @@ - formula: "H4N" - charge: 1 - annotation: !!omap - - bigg.metabolite: "nh4" - - chebi: "CHEBI:28938" - - kegg.compound: "C01342" - - metanetx.chemical: "MNXM15" - - sbo: "SBO:0000247" + - bigg.metabolite: "nh4" + - chebi: "CHEBI:28938" + - kegg.compound: "C01342" + - metanetx.chemical: "MNXM15" + - sbo: "SBO:0000247" - !!omap - id: "s_0423" - name: "AMP" @@ -3719,11 +3719,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "amp" - - chebi: "CHEBI:456215" - - kegg.compound: "C00020" - - metanetx.chemical: "MNXM14" - - sbo: "SBO:0000247" + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - id: "s_0424" - name: "AMP" @@ -3731,11 +3731,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "amp" - - chebi: "CHEBI:456215" - - kegg.compound: "C00020" - - metanetx.chemical: "MNXM14" - - sbo: "SBO:0000247" + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - id: "s_0425" - name: "AMP" @@ -3743,11 +3743,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "amp" - - chebi: "CHEBI:456215" - - kegg.compound: "C00020" - - metanetx.chemical: "MNXM14" - - sbo: "SBO:0000247" + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - id: "s_0426" - name: "AMP" @@ -3755,11 +3755,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "amp" - - chebi: "CHEBI:456215" - - kegg.compound: "C00020" - - metanetx.chemical: "MNXM14" - - sbo: "SBO:0000247" + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - id: "s_0427" - name: "anthranilate" @@ -3767,11 +3767,11 @@ - formula: "C7H6NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "anth" - - chebi: "CHEBI:16567" - - kegg.compound: "C00108" - - metanetx.chemical: "MNXM188" - - sbo: "SBO:0000247" + - bigg.metabolite: "anth" + - chebi: "CHEBI:16567" + - kegg.compound: "C00108" + - metanetx.chemical: "MNXM188" + - sbo: "SBO:0000247" - !!omap - id: "s_0428" - name: "Arg-tRNA(Arg)" @@ -3779,11 +3779,11 @@ - formula: "C6H15N4OR" - charge: 2 - annotation: !!omap - - bigg.metabolite: "argtrna" - - chebi: "CHEBI:18366" - - kegg.compound: "C02163" - - metanetx.chemical: "MNXM89870" - - sbo: "SBO:0000247" + - bigg.metabolite: "argtrna" + - chebi: "CHEBI:18366" + - kegg.compound: "C02163" + - metanetx.chemical: "MNXM89870" + - sbo: "SBO:0000247" - !!omap - id: "s_0429" - name: "Arg-tRNA(Arg)" @@ -3791,11 +3791,11 @@ - formula: "C6H15N4OR" - charge: 2 - annotation: !!omap - - bigg.metabolite: "argtrna" - - chebi: "CHEBI:18366" - - kegg.compound: "C02163" - - metanetx.chemical: "MNXM89870" - - sbo: "SBO:0000247" + - bigg.metabolite: "argtrna" + - chebi: "CHEBI:18366" + - kegg.compound: "C02163" + - metanetx.chemical: "MNXM89870" + - sbo: "SBO:0000247" - !!omap - id: "s_0430" - name: "Asn-tRNA(Asn)" @@ -3803,11 +3803,11 @@ - formula: "C4H8N2O2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: "asntrna" - - chebi: "CHEBI:29265" - - kegg.compound: "C03402" - - metanetx.chemical: "MNXM89761" - - sbo: "SBO:0000247" + - bigg.metabolite: "asntrna" + - chebi: "CHEBI:29265" + - kegg.compound: "C03402" + - metanetx.chemical: "MNXM89761" + - sbo: "SBO:0000247" - !!omap - id: "s_0431" - name: "Asn-tRNA(Asn)" @@ -3815,11 +3815,11 @@ - formula: "C4H8N2O2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: "asntrna" - - chebi: "CHEBI:29265" - - kegg.compound: "C03402" - - metanetx.chemical: "MNXM89761" - - sbo: "SBO:0000247" + - bigg.metabolite: "asntrna" + - chebi: "CHEBI:29265" + - kegg.compound: "C03402" + - metanetx.chemical: "MNXM89761" + - sbo: "SBO:0000247" - !!omap - id: "s_0432" - name: "Asp-tRNA(Asp)" @@ -3827,11 +3827,11 @@ - formula: "C4H6NO3R" - charge: 0 - annotation: !!omap - - bigg.metabolite: "asptrna" - - chebi: "CHEBI:29158" - - kegg.compound: "C02984" - - metanetx.chemical: "MNXM164570" - - sbo: "SBO:0000247" + - bigg.metabolite: "asptrna" + - chebi: "CHEBI:29158" + - kegg.compound: "C02984" + - metanetx.chemical: "MNXM164570" + - sbo: "SBO:0000247" - !!omap - id: "s_0433" - name: "Asp-tRNA(Asp)" @@ -3839,11 +3839,11 @@ - formula: "C4H6NO3R" - charge: 0 - annotation: !!omap - - bigg.metabolite: "asptrna" - - chebi: "CHEBI:29158" - - kegg.compound: "C02984" - - metanetx.chemical: "MNXM164570" - - sbo: "SBO:0000247" + - bigg.metabolite: "asptrna" + - chebi: "CHEBI:29158" + - kegg.compound: "C02984" + - metanetx.chemical: "MNXM164570" + - sbo: "SBO:0000247" - !!omap - id: "s_0434" - name: "ATP" @@ -3851,11 +3851,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "atp" - - chebi: "CHEBI:30616" - - kegg.compound: "C00002" - - metanetx.chemical: "MNXM3" - - sbo: "SBO:0000247" + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - id: "s_0435" - name: "ATP" @@ -3863,11 +3863,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "atp" - - chebi: "CHEBI:30616" - - kegg.compound: "C00002" - - metanetx.chemical: "MNXM3" - - sbo: "SBO:0000247" + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - id: "s_0437" - name: "ATP" @@ -3875,11 +3875,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "atp" - - chebi: "CHEBI:30616" - - kegg.compound: "C00002" - - metanetx.chemical: "MNXM3" - - sbo: "SBO:0000247" + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - id: "s_0438" - name: "ATP" @@ -3887,11 +3887,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "atp" - - chebi: "CHEBI:30616" - - kegg.compound: "C00002" - - metanetx.chemical: "MNXM3" - - sbo: "SBO:0000247" + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - id: "s_0439" - name: "ATP" @@ -3899,11 +3899,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "atp" - - chebi: "CHEBI:30616" - - kegg.compound: "C00002" - - metanetx.chemical: "MNXM3" - - sbo: "SBO:0000247" + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - id: "s_0441" - name: "beta-alanine" @@ -3911,11 +3911,11 @@ - formula: "C3H7NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_B" - - chebi: "CHEBI:16958" - - kegg.compound: "C00099" - - metanetx.chemical: "MNXM144" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_B" + - chebi: "CHEBI:16958" + - kegg.compound: "C00099" + - metanetx.chemical: "MNXM144" + - sbo: "SBO:0000247" - !!omap - id: "s_0442" - name: "beta-D-fructose 2,6-bisphosphate" @@ -3923,11 +3923,11 @@ - formula: "C6H10O12P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: "f26bp" - - chebi: "CHEBI:58579" - - kegg.compound: "C00665" - - metanetx.chemical: "MNXM651" - - sbo: "SBO:0000247" + - bigg.metabolite: "f26bp" + - chebi: "CHEBI:58579" + - kegg.compound: "C00665" + - metanetx.chemical: "MNXM651" + - sbo: "SBO:0000247" - !!omap - id: "s_0443" - name: "beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" @@ -3935,11 +3935,11 @@ - formula: "C42H72N2O22P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "mpdol" - - chebi: "CHEBI:18396" - - kegg.compound: "C05860" - - metanetx.chemical: "MNXM1078" - - sbo: "SBO:0000247" + - bigg.metabolite: "mpdol" + - chebi: "CHEBI:18396" + - kegg.compound: "C05860" + - metanetx.chemical: "MNXM1078" + - sbo: "SBO:0000247" - !!omap - id: "s_0444" - name: "beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" @@ -3947,11 +3947,11 @@ - formula: "C42H72N2O22P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "mpdol" - - chebi: "CHEBI:18396" - - kegg.compound: "C05860" - - metanetx.chemical: "MNXM1078" - - sbo: "SBO:0000247" + - bigg.metabolite: "mpdol" + - chebi: "CHEBI:18396" + - kegg.compound: "C05860" + - metanetx.chemical: "MNXM1078" + - sbo: "SBO:0000247" - !!omap - id: "s_0445" - name: "bicarbonate" @@ -3959,11 +3959,11 @@ - formula: "CHO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hco3" - - chebi: "CHEBI:17544" - - kegg.compound: "C00288" - - metanetx.chemical: "MNXM60" - - sbo: "SBO:0000247" + - bigg.metabolite: "hco3" + - chebi: "CHEBI:17544" + - kegg.compound: "C00288" + - metanetx.chemical: "MNXM60" + - sbo: "SBO:0000247" - !!omap - id: "s_0446" - name: "bicarbonate" @@ -3971,11 +3971,11 @@ - formula: "CHO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hco3" - - chebi: "CHEBI:17544" - - kegg.compound: "C00288" - - metanetx.chemical: "MNXM60" - - sbo: "SBO:0000247" + - bigg.metabolite: "hco3" + - chebi: "CHEBI:17544" + - kegg.compound: "C00288" + - metanetx.chemical: "MNXM60" + - sbo: "SBO:0000247" - !!omap - id: "s_0447" - name: "bicarbonate" @@ -3983,11 +3983,11 @@ - formula: "CHO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hco3" - - chebi: "CHEBI:17544" - - kegg.compound: "C00288" - - metanetx.chemical: "MNXM60" - - sbo: "SBO:0000247" + - bigg.metabolite: "hco3" + - chebi: "CHEBI:17544" + - kegg.compound: "C00288" + - metanetx.chemical: "MNXM60" + - sbo: "SBO:0000247" - !!omap - id: "s_0448" - name: "bicarbonate" @@ -3995,11 +3995,11 @@ - formula: "CHO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hco3" - - chebi: "CHEBI:17544" - - kegg.compound: "C00288" - - metanetx.chemical: "MNXM60" - - sbo: "SBO:0000247" + - bigg.metabolite: "hco3" + - chebi: "CHEBI:17544" + - kegg.compound: "C00288" + - metanetx.chemical: "MNXM60" + - sbo: "SBO:0000247" - !!omap - id: "s_0450" - name: "biomass" @@ -4007,8 +4007,8 @@ - formula: "" - charge: 0 - annotation: !!omap - - bigg.metabolite: "biomass" - - sbo: "SBO:0000649" + - bigg.metabolite: "biomass" + - sbo: "SBO:0000649" - !!omap - id: "s_0451" - name: "biotin" @@ -4016,11 +4016,11 @@ - formula: "C10H15N2O3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "btn" - - chebi: "CHEBI:57586" - - kegg.compound: "C00120" - - metanetx.chemical: "MNXM304" - - sbo: "SBO:0000247" + - bigg.metabolite: "btn" + - chebi: "CHEBI:57586" + - kegg.compound: "C00120" + - metanetx.chemical: "MNXM304" + - sbo: "SBO:0000247" - !!omap - id: "s_0452" - name: "biotin" @@ -4028,11 +4028,11 @@ - formula: "C10H15N2O3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "btn" - - chebi: "CHEBI:57586" - - kegg.compound: "C00120" - - metanetx.chemical: "MNXM304" - - sbo: "SBO:0000247" + - bigg.metabolite: "btn" + - chebi: "CHEBI:57586" + - kegg.compound: "C00120" + - metanetx.chemical: "MNXM304" + - sbo: "SBO:0000247" - !!omap - id: "s_0453" - name: "biotinyl-5'-AMP" @@ -4040,11 +4040,11 @@ - formula: "C20H27N7O9PS" - charge: -1 - annotation: !!omap - - bigg.metabolite: "btamp" - - chebi: "CHEBI:62414" - - kegg.compound: "C05921" - - metanetx.chemical: "MNXM2351" - - sbo: "SBO:0000247" + - bigg.metabolite: "btamp" + - chebi: "CHEBI:62414" + - kegg.compound: "C05921" + - metanetx.chemical: "MNXM2351" + - sbo: "SBO:0000247" - !!omap - id: "s_0454" - name: "but-1-ene-1,2,4-tricarboxylic acid" @@ -4052,11 +4052,11 @@ - formula: "C7H5O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: "b124tc" - - chebi: "CHEBI:58174" - - kegg.compound: "C04002" - - metanetx.chemical: "MNXM920" - - sbo: "SBO:0000247" + - bigg.metabolite: "b124tc" + - chebi: "CHEBI:58174" + - kegg.compound: "C04002" + - metanetx.chemical: "MNXM920" + - sbo: "SBO:0000247" - !!omap - id: "s_0455" - name: "carbamoyl phosphate" @@ -4064,11 +4064,11 @@ - formula: "CH2NO5P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "cbp" - - chebi: "CHEBI:58228" - - kegg.compound: "C00169" - - metanetx.chemical: "MNXM138" - - sbo: "SBO:0000247" + - bigg.metabolite: "cbp" + - chebi: "CHEBI:58228" + - kegg.compound: "C00169" + - metanetx.chemical: "MNXM138" + - sbo: "SBO:0000247" - !!omap - id: "s_0456" - name: "carbon dioxide" @@ -4076,11 +4076,11 @@ - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "co2" - - chebi: "CHEBI:16526" - - kegg.compound: "C00011" - - metanetx.chemical: "MNXM13" - - sbo: "SBO:0000247" + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - id: "s_0457" - name: "carbon dioxide" @@ -4088,11 +4088,11 @@ - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "co2" - - chebi: "CHEBI:16526" - - kegg.compound: "C00011" - - metanetx.chemical: "MNXM13" - - sbo: "SBO:0000247" + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - id: "s_0458" - name: "carbon dioxide" @@ -4100,11 +4100,11 @@ - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "co2" - - chebi: "CHEBI:16526" - - kegg.compound: "C00011" - - metanetx.chemical: "MNXM13" - - sbo: "SBO:0000247" + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - id: "s_0460" - name: "carbon dioxide" @@ -4112,11 +4112,11 @@ - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "co2" - - chebi: "CHEBI:16526" - - kegg.compound: "C00011" - - metanetx.chemical: "MNXM13" - - sbo: "SBO:0000247" + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - id: "s_0461" - name: "carbon dioxide" @@ -4124,11 +4124,11 @@ - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "co2" - - chebi: "CHEBI:16526" - - kegg.compound: "C00011" - - metanetx.chemical: "MNXM13" - - sbo: "SBO:0000247" + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - id: "s_0462" - name: "carbon dioxide" @@ -4136,11 +4136,11 @@ - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "co2" - - chebi: "CHEBI:16526" - - kegg.compound: "C00011" - - metanetx.chemical: "MNXM13" - - sbo: "SBO:0000247" + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - id: "s_0465" - name: "carboxyacetyl-ACP" @@ -4148,11 +4148,11 @@ - formula: "C3H3O3SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: "malACP" - - chebi: "CHEBI:17330" - - kegg.compound: "C01209" - - metanetx.chemical: "MNXM184" - - sbo: "SBO:0000247" + - bigg.metabolite: "malACP" + - chebi: "CHEBI:17330" + - kegg.compound: "C01209" + - metanetx.chemical: "MNXM184" + - sbo: "SBO:0000247" - !!omap - id: "s_0467" - name: "CDP" @@ -4160,11 +4160,11 @@ - formula: "C9H12N3O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "cdp" - - chebi: "CHEBI:58069" - - kegg.compound: "C00112" - - metanetx.chemical: "MNXM220" - - sbo: "SBO:0000247" + - bigg.metabolite: "cdp" + - chebi: "CHEBI:58069" + - kegg.compound: "C00112" + - metanetx.chemical: "MNXM220" + - sbo: "SBO:0000247" - !!omap - id: "s_0468" - name: "CDP" @@ -4172,11 +4172,11 @@ - formula: "C9H12N3O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "cdp" - - chebi: "CHEBI:58069" - - kegg.compound: "C00112" - - metanetx.chemical: "MNXM220" - - sbo: "SBO:0000247" + - bigg.metabolite: "cdp" + - chebi: "CHEBI:58069" + - kegg.compound: "C00112" + - metanetx.chemical: "MNXM220" + - sbo: "SBO:0000247" - !!omap - id: "s_0469" - name: "CDP-choline" @@ -4184,11 +4184,11 @@ - formula: "C14H25N4O11P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "cdpchol" - - chebi: "CHEBI:16436" - - kegg.compound: "C00307" - - metanetx.chemical: "MNXM283" - - sbo: "SBO:0000247" + - bigg.metabolite: "cdpchol" + - chebi: "CHEBI:16436" + - kegg.compound: "C00307" + - metanetx.chemical: "MNXM283" + - sbo: "SBO:0000247" - !!omap - id: "s_0474" - name: "CDP-ethanolamine" @@ -4196,11 +4196,11 @@ - formula: "C11H19N4O11P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "cdpea" - - chebi: "CHEBI:57876" - - kegg.compound: "C00570" - - metanetx.chemical: "MNXM449" - - sbo: "SBO:0000247" + - bigg.metabolite: "cdpea" + - chebi: "CHEBI:57876" + - kegg.compound: "C00570" + - metanetx.chemical: "MNXM449" + - sbo: "SBO:0000247" - !!omap - id: "s_0475" - name: "ceramide-1 (C24)" @@ -4208,10 +4208,10 @@ - formula: "C42H85NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer1_24" - - chebi: "CHEBI:52961" - - metanetx.chemical: "MNXM64020" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer1_24" + - chebi: "CHEBI:52961" + - metanetx.chemical: "MNXM64020" + - sbo: "SBO:0000247" - !!omap - id: "s_0476" - name: "ceramide-1 (C24)" @@ -4219,10 +4219,10 @@ - formula: "C42H85NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer1_24" - - chebi: "CHEBI:52961" - - metanetx.chemical: "MNXM64020" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer1_24" + - chebi: "CHEBI:52961" + - metanetx.chemical: "MNXM64020" + - sbo: "SBO:0000247" - !!omap - id: "s_0477" - name: "ceramide-1 (C24)" @@ -4230,10 +4230,10 @@ - formula: "C42H85NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer1_24" - - chebi: "CHEBI:52961" - - metanetx.chemical: "MNXM64020" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer1_24" + - chebi: "CHEBI:52961" + - metanetx.chemical: "MNXM64020" + - sbo: "SBO:0000247" - !!omap - id: "s_0478" - name: "ceramide-1 (C26)" @@ -4241,10 +4241,10 @@ - formula: "C44H89NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer1_26" - - chebi: "CHEBI:52962" - - metanetx.chemical: "MNXM63798" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer1_26" + - chebi: "CHEBI:52962" + - metanetx.chemical: "MNXM63798" + - sbo: "SBO:0000247" - !!omap - id: "s_0479" - name: "ceramide-1 (C26)" @@ -4252,10 +4252,10 @@ - formula: "C44H89NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer1_26" - - chebi: "CHEBI:52962" - - metanetx.chemical: "MNXM63798" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer1_26" + - chebi: "CHEBI:52962" + - metanetx.chemical: "MNXM63798" + - sbo: "SBO:0000247" - !!omap - id: "s_0480" - name: "ceramide-1 (C26)" @@ -4263,10 +4263,10 @@ - formula: "C44H89NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer1_26" - - chebi: "CHEBI:52962" - - metanetx.chemical: "MNXM63798" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer1_26" + - chebi: "CHEBI:52962" + - metanetx.chemical: "MNXM63798" + - sbo: "SBO:0000247" - !!omap - id: "s_0481" - name: "ceramide-2 (C24)" @@ -4274,10 +4274,10 @@ - formula: "C42H85NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer2_24" - - chebi: "CHEBI:52979" - - metanetx.chemical: "MNXM64019" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer2_24" + - chebi: "CHEBI:52979" + - metanetx.chemical: "MNXM64019" + - sbo: "SBO:0000247" - !!omap - id: "s_0482" - name: "ceramide-2 (C24)" @@ -4285,10 +4285,10 @@ - formula: "C42H85NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer2_24" - - chebi: "CHEBI:52979" - - metanetx.chemical: "MNXM64019" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer2_24" + - chebi: "CHEBI:52979" + - metanetx.chemical: "MNXM64019" + - sbo: "SBO:0000247" - !!omap - id: "s_0483" - name: "ceramide-2 (C24)" @@ -4296,10 +4296,10 @@ - formula: "C42H85NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer2_24" - - chebi: "CHEBI:52979" - - metanetx.chemical: "MNXM64019" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer2_24" + - chebi: "CHEBI:52979" + - metanetx.chemical: "MNXM64019" + - sbo: "SBO:0000247" - !!omap - id: "s_0484" - name: "ceramide-2 (C26)" @@ -4307,10 +4307,10 @@ - formula: "C44H89NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer2_26" - - chebi: "CHEBI:52980" - - metanetx.chemical: "MNXM63797" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer2_26" + - chebi: "CHEBI:52980" + - metanetx.chemical: "MNXM63797" + - sbo: "SBO:0000247" - !!omap - id: "s_0485" - name: "ceramide-2 (C26)" @@ -4318,10 +4318,10 @@ - formula: "C44H89NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer2_26" - - chebi: "CHEBI:52980" - - metanetx.chemical: "MNXM63797" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer2_26" + - chebi: "CHEBI:52980" + - metanetx.chemical: "MNXM63797" + - sbo: "SBO:0000247" - !!omap - id: "s_0486" - name: "ceramide-2 (C26)" @@ -4329,10 +4329,10 @@ - formula: "C44H89NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer2_26" - - chebi: "CHEBI:52980" - - metanetx.chemical: "MNXM63797" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer2_26" + - chebi: "CHEBI:52980" + - metanetx.chemical: "MNXM63797" + - sbo: "SBO:0000247" - !!omap - id: "s_0487" - name: "ceramide-2' (C24)" @@ -4340,9 +4340,9 @@ - formula: "C42H85NO4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52371" - - metanetx.chemical: "MNXM63175" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52371" + - metanetx.chemical: "MNXM63175" + - sbo: "SBO:0000247" - !!omap - id: "s_0488" - name: "ceramide-2' (C24)" @@ -4350,9 +4350,9 @@ - formula: "C42H85NO4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52371" - - metanetx.chemical: "MNXM63175" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52371" + - metanetx.chemical: "MNXM63175" + - sbo: "SBO:0000247" - !!omap - id: "s_0489" - name: "ceramide-2' (C24)" @@ -4360,9 +4360,9 @@ - formula: "C42H85NO4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52371" - - metanetx.chemical: "MNXM63175" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52371" + - metanetx.chemical: "MNXM63175" + - sbo: "SBO:0000247" - !!omap - id: "s_0490" - name: "ceramide-2' (C26)" @@ -4370,9 +4370,9 @@ - formula: "C44H89NO4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52372" - - metanetx.chemical: "MNXM63156" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52372" + - metanetx.chemical: "MNXM63156" + - sbo: "SBO:0000247" - !!omap - id: "s_0491" - name: "ceramide-2' (C26)" @@ -4380,9 +4380,9 @@ - formula: "C44H89NO4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52372" - - metanetx.chemical: "MNXM63156" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52372" + - metanetx.chemical: "MNXM63156" + - sbo: "SBO:0000247" - !!omap - id: "s_0492" - name: "ceramide-2' (C26)" @@ -4390,9 +4390,9 @@ - formula: "C44H89NO4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52372" - - metanetx.chemical: "MNXM63156" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52372" + - metanetx.chemical: "MNXM63156" + - sbo: "SBO:0000247" - !!omap - id: "s_0493" - name: "ceramide-3 (C24)" @@ -4400,10 +4400,10 @@ - formula: "C42H85NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer3_24" - - chebi: "CHEBI:52373" - - metanetx.chemical: "MNXM63174" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer3_24" + - chebi: "CHEBI:52373" + - metanetx.chemical: "MNXM63174" + - sbo: "SBO:0000247" - !!omap - id: "s_0494" - name: "ceramide-3 (C24)" @@ -4411,10 +4411,10 @@ - formula: "C42H85NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer3_24" - - chebi: "CHEBI:52373" - - metanetx.chemical: "MNXM63174" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer3_24" + - chebi: "CHEBI:52373" + - metanetx.chemical: "MNXM63174" + - sbo: "SBO:0000247" - !!omap - id: "s_0495" - name: "ceramide-3 (C24)" @@ -4422,10 +4422,10 @@ - formula: "C42H85NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer3_24" - - chebi: "CHEBI:52373" - - metanetx.chemical: "MNXM63174" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer3_24" + - chebi: "CHEBI:52373" + - metanetx.chemical: "MNXM63174" + - sbo: "SBO:0000247" - !!omap - id: "s_0496" - name: "ceramide-3 (C26)" @@ -4433,10 +4433,10 @@ - formula: "C44H89NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer3_26" - - chebi: "CHEBI:52374" - - metanetx.chemical: "MNXM63157" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer3_26" + - chebi: "CHEBI:52374" + - metanetx.chemical: "MNXM63157" + - sbo: "SBO:0000247" - !!omap - id: "s_0497" - name: "ceramide-3 (C26)" @@ -4444,10 +4444,10 @@ - formula: "C44H89NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer3_26" - - chebi: "CHEBI:52374" - - metanetx.chemical: "MNXM63157" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer3_26" + - chebi: "CHEBI:52374" + - metanetx.chemical: "MNXM63157" + - sbo: "SBO:0000247" - !!omap - id: "s_0498" - name: "ceramide-3 (C26)" @@ -4455,10 +4455,10 @@ - formula: "C44H89NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cer3_26" - - chebi: "CHEBI:52374" - - metanetx.chemical: "MNXM63157" - - sbo: "SBO:0000247" + - bigg.metabolite: "cer3_26" + - chebi: "CHEBI:52374" + - metanetx.chemical: "MNXM63157" + - sbo: "SBO:0000247" - !!omap - id: "s_0499" - name: "ceramide-4 (C24)" @@ -4466,9 +4466,9 @@ - formula: "C42H85NO6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60256" - - metanetx.chemical: "MNXM31230" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60256" + - metanetx.chemical: "MNXM31230" + - sbo: "SBO:0000247" - !!omap - id: "s_0500" - name: "ceramide-4 (C24)" @@ -4476,9 +4476,9 @@ - formula: "C42H85NO6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60256" - - metanetx.chemical: "MNXM31230" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60256" + - metanetx.chemical: "MNXM31230" + - sbo: "SBO:0000247" - !!omap - id: "s_0501" - name: "ceramide-4 (C24)" @@ -4486,9 +4486,9 @@ - formula: "C42H85NO6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60256" - - metanetx.chemical: "MNXM31230" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60256" + - metanetx.chemical: "MNXM31230" + - sbo: "SBO:0000247" - !!omap - id: "s_0502" - name: "ceramide-4 (C26)" @@ -4496,9 +4496,9 @@ - formula: "C44H89NO6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60384" - - metanetx.chemical: "MNXM63127" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60384" + - metanetx.chemical: "MNXM63127" + - sbo: "SBO:0000247" - !!omap - id: "s_0503" - name: "ceramide-4 (C26)" @@ -4506,9 +4506,9 @@ - formula: "C44H89NO6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60384" - - metanetx.chemical: "MNXM63127" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60384" + - metanetx.chemical: "MNXM63127" + - sbo: "SBO:0000247" - !!omap - id: "s_0504" - name: "ceramide-4 (C26)" @@ -4516,9 +4516,9 @@ - formula: "C44H89NO6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60384" - - metanetx.chemical: "MNXM63127" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60384" + - metanetx.chemical: "MNXM63127" + - sbo: "SBO:0000247" - !!omap - id: "s_0507" - name: "cerotic acid" @@ -4526,10 +4526,10 @@ - formula: "C26H51O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hexc" - - chebi: "CHEBI:31013" - - metanetx.chemical: "MNXM46158" - - sbo: "SBO:0000247" + - bigg.metabolite: "hexc" + - chebi: "CHEBI:31013" + - metanetx.chemical: "MNXM46158" + - sbo: "SBO:0000247" - !!omap - id: "s_0509" - name: "chitin" @@ -4537,11 +4537,11 @@ - formula: "C8H13NO5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "chtn" - - chebi: "CHEBI:17029" - - kegg.compound: "C00461" - - metanetx.chemical: "MNXM1271" - - sbo: "SBO:0000247" + - bigg.metabolite: "chtn" + - chebi: "CHEBI:17029" + - kegg.compound: "C00461" + - metanetx.chemical: "MNXM1271" + - sbo: "SBO:0000247" - !!omap - id: "s_0510" - name: "chitosan" @@ -4549,11 +4549,11 @@ - formula: "C6H11NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "chitos" - - chebi: "CHEBI:16261" - - kegg.compound: "C00734" - - metanetx.chemical: "MNXM2106" - - sbo: "SBO:0000247" + - bigg.metabolite: "chitos" + - chebi: "CHEBI:16261" + - kegg.compound: "C00734" + - metanetx.chemical: "MNXM2106" + - sbo: "SBO:0000247" - !!omap - id: "s_0511" - name: "choline" @@ -4561,11 +4561,11 @@ - formula: "C5H14NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: "chol" - - chebi: "CHEBI:15354" - - kegg.compound: "C00114" - - metanetx.chemical: "MNXM90" - - sbo: "SBO:0000247" + - bigg.metabolite: "chol" + - chebi: "CHEBI:15354" + - kegg.compound: "C00114" + - metanetx.chemical: "MNXM90" + - sbo: "SBO:0000247" - !!omap - id: "s_0512" - name: "choline" @@ -4573,11 +4573,11 @@ - formula: "C5H14NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: "chol" - - chebi: "CHEBI:15354" - - kegg.compound: "C00114" - - metanetx.chemical: "MNXM90" - - sbo: "SBO:0000247" + - bigg.metabolite: "chol" + - chebi: "CHEBI:15354" + - kegg.compound: "C00114" + - metanetx.chemical: "MNXM90" + - sbo: "SBO:0000247" - !!omap - id: "s_0513" - name: "choline" @@ -4585,11 +4585,11 @@ - formula: "C5H14NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: "chol" - - chebi: "CHEBI:15354" - - kegg.compound: "C00114" - - metanetx.chemical: "MNXM90" - - sbo: "SBO:0000247" + - bigg.metabolite: "chol" + - chebi: "CHEBI:15354" + - kegg.compound: "C00114" + - metanetx.chemical: "MNXM90" + - sbo: "SBO:0000247" - !!omap - id: "s_0514" - name: "choline phosphate" @@ -4597,11 +4597,11 @@ - formula: "C5H13NO4P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "cholp" - - chebi: "CHEBI:295975" - - kegg.compound: "C00588" - - metanetx.chemical: "MNXM229" - - sbo: "SBO:0000247" + - bigg.metabolite: "cholp" + - chebi: "CHEBI:295975" + - kegg.compound: "C00588" + - metanetx.chemical: "MNXM229" + - sbo: "SBO:0000247" - !!omap - id: "s_0515" - name: "chorismate" @@ -4609,11 +4609,11 @@ - formula: "C10H8O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "chor" - - chebi: "CHEBI:29748" - - kegg.compound: "C00251" - - metanetx.chemical: "MNXM337" - - sbo: "SBO:0000247" + - bigg.metabolite: "chor" + - chebi: "CHEBI:29748" + - kegg.compound: "C00251" + - metanetx.chemical: "MNXM337" + - sbo: "SBO:0000247" - !!omap - id: "s_0516" - name: "cis-aconitate" @@ -4621,11 +4621,11 @@ - formula: "C6H3O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: "acon_C" - - chebi: "CHEBI:16383" - - kegg.compound: "C00417" - - metanetx.chemical: "MNXM813" - - sbo: "SBO:0000247" + - bigg.metabolite: "acon_C" + - chebi: "CHEBI:16383" + - kegg.compound: "C00417" + - metanetx.chemical: "MNXM813" + - sbo: "SBO:0000247" - !!omap - id: "s_0517" - name: "cis-aconitate" @@ -4633,11 +4633,11 @@ - formula: "C6H3O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: "acon_C" - - chebi: "CHEBI:16383" - - kegg.compound: "C00417" - - metanetx.chemical: "MNXM813" - - sbo: "SBO:0000247" + - bigg.metabolite: "acon_C" + - chebi: "CHEBI:16383" + - kegg.compound: "C00417" + - metanetx.chemical: "MNXM813" + - sbo: "SBO:0000247" - !!omap - id: "s_0522" - name: "citrate" @@ -4645,11 +4645,11 @@ - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: "cit" - - chebi: "CHEBI:16947" - - kegg.compound: "C00158" - - metanetx.chemical: "MNXM131" - - sbo: "SBO:0000247" + - bigg.metabolite: "cit" + - chebi: "CHEBI:16947" + - kegg.compound: "C00158" + - metanetx.chemical: "MNXM131" + - sbo: "SBO:0000247" - !!omap - id: "s_0523" - name: "citrate" @@ -4657,11 +4657,11 @@ - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: "cit" - - chebi: "CHEBI:16947" - - kegg.compound: "C00158" - - metanetx.chemical: "MNXM131" - - sbo: "SBO:0000247" + - bigg.metabolite: "cit" + - chebi: "CHEBI:16947" + - kegg.compound: "C00158" + - metanetx.chemical: "MNXM131" + - sbo: "SBO:0000247" - !!omap - id: "s_0524" - name: "citrate" @@ -4669,11 +4669,11 @@ - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: "cit" - - chebi: "CHEBI:16947" - - kegg.compound: "C00158" - - metanetx.chemical: "MNXM131" - - sbo: "SBO:0000247" + - bigg.metabolite: "cit" + - chebi: "CHEBI:16947" + - kegg.compound: "C00158" + - metanetx.chemical: "MNXM131" + - sbo: "SBO:0000247" - !!omap - id: "s_0525" - name: "citrate" @@ -4681,11 +4681,11 @@ - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: "cit" - - chebi: "CHEBI:16947" - - kegg.compound: "C00158" - - metanetx.chemical: "MNXM131" - - sbo: "SBO:0000247" + - bigg.metabolite: "cit" + - chebi: "CHEBI:16947" + - kegg.compound: "C00158" + - metanetx.chemical: "MNXM131" + - sbo: "SBO:0000247" - !!omap - id: "s_0526" - name: "CMP" @@ -4693,11 +4693,11 @@ - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "cmp" - - chebi: "CHEBI:60377" - - kegg.compound: "C00055" - - metanetx.chemical: "MNXM31" - - sbo: "SBO:0000247" + - bigg.metabolite: "cmp" + - chebi: "CHEBI:60377" + - kegg.compound: "C00055" + - metanetx.chemical: "MNXM31" + - sbo: "SBO:0000247" - !!omap - id: "s_0528" - name: "CMP" @@ -4705,11 +4705,11 @@ - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "cmp" - - chebi: "CHEBI:60377" - - kegg.compound: "C00055" - - metanetx.chemical: "MNXM31" - - sbo: "SBO:0000247" + - bigg.metabolite: "cmp" + - chebi: "CHEBI:60377" + - kegg.compound: "C00055" + - metanetx.chemical: "MNXM31" + - sbo: "SBO:0000247" - !!omap - id: "s_0529" - name: "coenzyme A" @@ -4717,11 +4717,11 @@ - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "coa" - - chebi: "CHEBI:57287" - - kegg.compound: "C00010" - - metanetx.chemical: "MNXM12" - - sbo: "SBO:0000247" + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - id: "s_0530" - name: "coenzyme A" @@ -4729,11 +4729,11 @@ - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "coa" - - chebi: "CHEBI:57287" - - kegg.compound: "C00010" - - metanetx.chemical: "MNXM12" - - sbo: "SBO:0000247" + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - id: "s_0531" - name: "coenzyme A" @@ -4741,11 +4741,11 @@ - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "coa" - - chebi: "CHEBI:57287" - - kegg.compound: "C00010" - - metanetx.chemical: "MNXM12" - - sbo: "SBO:0000247" + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - id: "s_0532" - name: "coenzyme A" @@ -4753,11 +4753,11 @@ - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "coa" - - chebi: "CHEBI:57287" - - kegg.compound: "C00010" - - metanetx.chemical: "MNXM12" - - sbo: "SBO:0000247" + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - id: "s_0533" - name: "coenzyme A" @@ -4765,11 +4765,11 @@ - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "coa" - - chebi: "CHEBI:57287" - - kegg.compound: "C00010" - - metanetx.chemical: "MNXM12" - - sbo: "SBO:0000247" + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - id: "s_0534" - name: "coenzyme A" @@ -4777,11 +4777,11 @@ - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "coa" - - chebi: "CHEBI:57287" - - kegg.compound: "C00010" - - metanetx.chemical: "MNXM12" - - sbo: "SBO:0000247" + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - id: "s_0538" - name: "coproporphyrinogen III" @@ -4789,11 +4789,11 @@ - formula: "C36H40N4O8" - charge: -4 - annotation: !!omap - - bigg.metabolite: "cpppg3" - - chebi: "CHEBI:57309" - - kegg.compound: "C03263" - - metanetx.chemical: "MNXM410" - - sbo: "SBO:0000247" + - bigg.metabolite: "cpppg3" + - chebi: "CHEBI:57309" + - kegg.compound: "C03263" + - metanetx.chemical: "MNXM410" + - sbo: "SBO:0000247" - !!omap - id: "s_0539" - name: "CTP" @@ -4801,11 +4801,11 @@ - formula: "C9H12N3O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ctp" - - chebi: "CHEBI:37563" - - kegg.compound: "C00063" - - metanetx.chemical: "MNXM63" - - sbo: "SBO:0000247" + - bigg.metabolite: "ctp" + - chebi: "CHEBI:37563" + - kegg.compound: "C00063" + - metanetx.chemical: "MNXM63" + - sbo: "SBO:0000247" - !!omap - id: "s_0541" - name: "CTP" @@ -4813,11 +4813,11 @@ - formula: "C9H12N3O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ctp" - - chebi: "CHEBI:37563" - - kegg.compound: "C00063" - - metanetx.chemical: "MNXM63" - - sbo: "SBO:0000247" + - bigg.metabolite: "ctp" + - chebi: "CHEBI:37563" + - kegg.compound: "C00063" + - metanetx.chemical: "MNXM63" + - sbo: "SBO:0000247" - !!omap - id: "s_0542" - name: "Cys-tRNA(Cys)" @@ -4825,11 +4825,11 @@ - formula: "C3H7NOSR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "cystrna" - - chebi: "CHEBI:29152" - - kegg.compound: "C03125" - - metanetx.chemical: "MNXM155005" - - sbo: "SBO:0000247" + - bigg.metabolite: "cystrna" + - chebi: "CHEBI:29152" + - kegg.compound: "C03125" + - metanetx.chemical: "MNXM155005" + - sbo: "SBO:0000247" - !!omap - id: "s_0543" - name: "cytidine" @@ -4837,11 +4837,11 @@ - formula: "C9H13N3O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cytd" - - chebi: "CHEBI:17562" - - kegg.compound: "C00475" - - metanetx.chemical: "MNXM338" - - sbo: "SBO:0000247" + - bigg.metabolite: "cytd" + - chebi: "CHEBI:17562" + - kegg.compound: "C00475" + - metanetx.chemical: "MNXM338" + - sbo: "SBO:0000247" - !!omap - id: "s_0544" - name: "cytidine" @@ -4849,11 +4849,11 @@ - formula: "C9H13N3O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cytd" - - chebi: "CHEBI:17562" - - kegg.compound: "C00475" - - metanetx.chemical: "MNXM338" - - sbo: "SBO:0000247" + - bigg.metabolite: "cytd" + - chebi: "CHEBI:17562" + - kegg.compound: "C00475" + - metanetx.chemical: "MNXM338" + - sbo: "SBO:0000247" - !!omap - id: "s_0545" - name: "cytosine" @@ -4861,11 +4861,11 @@ - formula: "C4H5N3O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "csn" - - chebi: "CHEBI:16040" - - kegg.compound: "C00380" - - metanetx.chemical: "MNXM761" - - sbo: "SBO:0000247" + - bigg.metabolite: "csn" + - chebi: "CHEBI:16040" + - kegg.compound: "C00380" + - metanetx.chemical: "MNXM761" + - sbo: "SBO:0000247" - !!omap - id: "s_0546" - name: "cytosine" @@ -4873,11 +4873,11 @@ - formula: "C4H5N3O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "csn" - - chebi: "CHEBI:16040" - - kegg.compound: "C00380" - - metanetx.chemical: "MNXM761" - - sbo: "SBO:0000247" + - bigg.metabolite: "csn" + - chebi: "CHEBI:16040" + - kegg.compound: "C00380" + - metanetx.chemical: "MNXM761" + - sbo: "SBO:0000247" - !!omap - id: "s_0547" - name: "D-arabinono-1,4-lactone" @@ -4885,11 +4885,11 @@ - formula: "C5H8O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "Dara14lac" - - chebi: "CHEBI:16292" - - kegg.compound: "C00652" - - metanetx.chemical: "MNXM778" - - sbo: "SBO:0000247" + - bigg.metabolite: "Dara14lac" + - chebi: "CHEBI:16292" + - kegg.compound: "C00652" + - metanetx.chemical: "MNXM778" + - sbo: "SBO:0000247" - !!omap - id: "s_0548" - name: "D-arabinose" @@ -4897,11 +4897,11 @@ - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "arab__D" - - chebi: "CHEBI:17108" - - kegg.compound: "C00216" - - metanetx.chemical: "MNXM40571" - - sbo: "SBO:0000247" + - bigg.metabolite: "arab__D" + - chebi: "CHEBI:17108" + - kegg.compound: "C00216" + - metanetx.chemical: "MNXM40571" + - sbo: "SBO:0000247" - !!omap - id: "s_0549" - name: "D-arabinose" @@ -4909,11 +4909,11 @@ - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "arab__D" - - chebi: "CHEBI:17108" - - kegg.compound: "C00216" - - metanetx.chemical: "MNXM40571" - - sbo: "SBO:0000247" + - bigg.metabolite: "arab__D" + - chebi: "CHEBI:17108" + - kegg.compound: "C00216" + - metanetx.chemical: "MNXM40571" + - sbo: "SBO:0000247" - !!omap - id: "s_0550" - name: "D-erythro-1-(imidazol-4-yl)glycerol 3-phosphate" @@ -4921,11 +4921,11 @@ - formula: "C6H9N2O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "eig3p" - - chebi: "CHEBI:58278" - - kegg.compound: "C04666" - - metanetx.chemical: "MNXM1422" - - sbo: "SBO:0000247" + - bigg.metabolite: "eig3p" + - chebi: "CHEBI:58278" + - kegg.compound: "C04666" + - metanetx.chemical: "MNXM1422" + - sbo: "SBO:0000247" - !!omap - id: "s_0551" - name: "D-erythrose 4-phosphate" @@ -4933,11 +4933,11 @@ - formula: "C4H7O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "e4p" - - chebi: "CHEBI:16897" - - kegg.compound: "C00279" - - metanetx.chemical: "MNXM258" - - sbo: "SBO:0000247" + - bigg.metabolite: "e4p" + - chebi: "CHEBI:16897" + - kegg.compound: "C00279" + - metanetx.chemical: "MNXM258" + - sbo: "SBO:0000247" - !!omap - id: "s_0552" - name: "D-erythrose 4-phosphate" @@ -4945,11 +4945,11 @@ - formula: "C4H7O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "e4p" - - chebi: "CHEBI:16897" - - kegg.compound: "C00279" - - metanetx.chemical: "MNXM258" - - sbo: "SBO:0000247" + - bigg.metabolite: "e4p" + - chebi: "CHEBI:16897" + - kegg.compound: "C00279" + - metanetx.chemical: "MNXM258" + - sbo: "SBO:0000247" - !!omap - id: "s_0553" - name: "D-fructose" @@ -4957,11 +4957,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "fru" - - chebi: "CHEBI:15824" - - kegg.compound: "C00095" - - metanetx.chemical: "MNXM175" - - sbo: "SBO:0000247" + - bigg.metabolite: "fru" + - chebi: "CHEBI:15824" + - kegg.compound: "C00095" + - metanetx.chemical: "MNXM175" + - sbo: "SBO:0000247" - !!omap - id: "s_0554" - name: "D-fructose" @@ -4969,11 +4969,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "fru" - - chebi: "CHEBI:15824" - - kegg.compound: "C00095" - - metanetx.chemical: "MNXM175" - - sbo: "SBO:0000247" + - bigg.metabolite: "fru" + - chebi: "CHEBI:15824" + - kegg.compound: "C00095" + - metanetx.chemical: "MNXM175" + - sbo: "SBO:0000247" - !!omap - id: "s_0555" - name: "D-fructose 1,6-bisphosphate" @@ -4981,11 +4981,11 @@ - formula: "C6H10O12P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: "fdp" - - chebi: "CHEBI:16905" - - kegg.compound: "C00354" - - metanetx.chemical: "MNXM417" - - sbo: "SBO:0000247" + - bigg.metabolite: "fdp" + - chebi: "CHEBI:16905" + - kegg.compound: "C00354" + - metanetx.chemical: "MNXM417" + - sbo: "SBO:0000247" - !!omap - id: "s_0556" - name: "D-fructose 1-phosphate" @@ -4993,11 +4993,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "f1p" - - chebi: "CHEBI:18105" - - kegg.compound: "C01094" - - metanetx.chemical: "MNXM145568" - - sbo: "SBO:0000247" + - bigg.metabolite: "f1p" + - chebi: "CHEBI:18105" + - kegg.compound: "C01094" + - metanetx.chemical: "MNXM145568" + - sbo: "SBO:0000247" - !!omap - id: "s_0557" - name: "D-fructose 6-phosphate" @@ -5005,11 +5005,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "f6p" - - chebi: "CHEBI:57579" - - kegg.compound: "C00085" - - metanetx.chemical: "MNXM162235" - - sbo: "SBO:0000247" + - bigg.metabolite: "f6p" + - chebi: "CHEBI:57579" + - kegg.compound: "C00085" + - metanetx.chemical: "MNXM162235" + - sbo: "SBO:0000247" - !!omap - id: "s_0558" - name: "D-galactose" @@ -5017,11 +5017,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gal" - - chebi: "CHEBI:12936" - - kegg.compound: "C00124" - - metanetx.chemical: "MNXM390" - - sbo: "SBO:0000247" + - bigg.metabolite: "gal" + - chebi: "CHEBI:12936" + - kegg.compound: "C00124" + - metanetx.chemical: "MNXM390" + - sbo: "SBO:0000247" - !!omap - id: "s_0559" - name: "D-galactose" @@ -5029,11 +5029,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gal" - - chebi: "CHEBI:12936" - - kegg.compound: "C00124" - - metanetx.chemical: "MNXM390" - - sbo: "SBO:0000247" + - bigg.metabolite: "gal" + - chebi: "CHEBI:12936" + - kegg.compound: "C00124" + - metanetx.chemical: "MNXM390" + - sbo: "SBO:0000247" - !!omap - id: "s_0560" - name: "D-galacturonate" @@ -5041,11 +5041,11 @@ - formula: "C6H9O7" - charge: -1 - annotation: !!omap - - bigg.metabolite: "galur" - - chebi: "CHEBI:12952" - - kegg.compound: "C00333" - - metanetx.chemical: "MNXM693" - - sbo: "SBO:0000247" + - bigg.metabolite: "galur" + - chebi: "CHEBI:12952" + - kegg.compound: "C00333" + - metanetx.chemical: "MNXM693" + - sbo: "SBO:0000247" - !!omap - id: "s_0561" - name: "D-glucitol" @@ -5053,11 +5053,11 @@ - formula: "C6H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "sbt__D" - - chebi: "CHEBI:17924" - - kegg.compound: "C00794" - - metanetx.chemical: "MNXM469" - - sbo: "SBO:0000247" + - bigg.metabolite: "sbt__D" + - chebi: "CHEBI:17924" + - kegg.compound: "C00794" + - metanetx.chemical: "MNXM469" + - sbo: "SBO:0000247" - !!omap - id: "s_0562" - name: "D-glucitol" @@ -5065,11 +5065,11 @@ - formula: "C6H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "sbt__D" - - chebi: "CHEBI:17924" - - kegg.compound: "C00794" - - metanetx.chemical: "MNXM469" - - sbo: "SBO:0000247" + - bigg.metabolite: "sbt__D" + - chebi: "CHEBI:17924" + - kegg.compound: "C00794" + - metanetx.chemical: "MNXM469" + - sbo: "SBO:0000247" - !!omap - id: "s_0563" - name: "D-glucose" @@ -5077,11 +5077,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glc__D" - - chebi: "CHEBI:4167" - - kegg.compound: "C00031" - - metanetx.chemical: "MNXM41" - - sbo: "SBO:0000247" + - bigg.metabolite: "glc__D" + - chebi: "CHEBI:4167" + - kegg.compound: "C00031" + - metanetx.chemical: "MNXM41" + - sbo: "SBO:0000247" - !!omap - id: "s_0565" - name: "D-glucose" @@ -5089,11 +5089,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glc__D" - - chebi: "CHEBI:4167" - - kegg.compound: "C00031" - - metanetx.chemical: "MNXM41" - - sbo: "SBO:0000247" + - bigg.metabolite: "glc__D" + - chebi: "CHEBI:4167" + - kegg.compound: "C00031" + - metanetx.chemical: "MNXM41" + - sbo: "SBO:0000247" - !!omap - id: "s_0566" - name: "D-glucose" @@ -5101,11 +5101,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glc__D" - - chebi: "CHEBI:4167" - - kegg.compound: "C00031" - - metanetx.chemical: "MNXM41" - - sbo: "SBO:0000247" + - bigg.metabolite: "glc__D" + - chebi: "CHEBI:4167" + - kegg.compound: "C00031" + - metanetx.chemical: "MNXM41" + - sbo: "SBO:0000247" - !!omap - id: "s_0567" - name: "D-glucose 1-phosphate" @@ -5113,11 +5113,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "g1p" - - chebi: "CHEBI:57629" - - kegg.compound: "C00103" - - metanetx.chemical: "MNXM89588" - - sbo: "SBO:0000247" + - bigg.metabolite: "g1p" + - chebi: "CHEBI:57629" + - kegg.compound: "C00103" + - metanetx.chemical: "MNXM89588" + - sbo: "SBO:0000247" - !!omap - id: "s_0568" - name: "D-glucose 6-phosphate" @@ -5125,11 +5125,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "g6p" - - chebi: "CHEBI:14314" - - kegg.compound: "C00092" - - metanetx.chemical: "MNXM160" - - sbo: "SBO:0000247" + - bigg.metabolite: "g6p" + - chebi: "CHEBI:14314" + - kegg.compound: "C00092" + - metanetx.chemical: "MNXM160" + - sbo: "SBO:0000247" - !!omap - id: "s_0570" - name: "D-glyceraldehyde" @@ -5137,11 +5137,11 @@ - formula: "C3H6O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glyald" - - chebi: "CHEBI:17378" - - kegg.compound: "C00577" - - metanetx.chemical: "MNXM435" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyald" + - chebi: "CHEBI:17378" + - kegg.compound: "C00577" + - metanetx.chemical: "MNXM435" + - sbo: "SBO:0000247" - !!omap - id: "s_0571" - name: "D-mannose" @@ -5149,11 +5149,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "man" - - chebi: "CHEBI:16024" - - kegg.compound: "C00159" - - metanetx.chemical: "MNXM182" - - sbo: "SBO:0000247" + - bigg.metabolite: "man" + - chebi: "CHEBI:16024" + - kegg.compound: "C00159" + - metanetx.chemical: "MNXM182" + - sbo: "SBO:0000247" - !!omap - id: "s_0572" - name: "D-mannose" @@ -5161,11 +5161,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "man" - - chebi: "CHEBI:16024" - - kegg.compound: "C00159" - - metanetx.chemical: "MNXM182" - - sbo: "SBO:0000247" + - bigg.metabolite: "man" + - chebi: "CHEBI:16024" + - kegg.compound: "C00159" + - metanetx.chemical: "MNXM182" + - sbo: "SBO:0000247" - !!omap - id: "s_0573" - name: "D-mannose 1-phosphate" @@ -5173,11 +5173,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "man1p" - - chebi: "CHEBI:35374" - - kegg.compound: "C00636" - - metanetx.chemical: "MNXM721" - - sbo: "SBO:0000247" + - bigg.metabolite: "man1p" + - chebi: "CHEBI:35374" + - kegg.compound: "C00636" + - metanetx.chemical: "MNXM721" + - sbo: "SBO:0000247" - !!omap - id: "s_0574" - name: "D-mannose 6-phosphate" @@ -5185,11 +5185,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "man6p" - - chebi: "CHEBI:17369" - - kegg.compound: "C00275" - - metanetx.chemical: "MNXM427" - - sbo: "SBO:0000247" + - bigg.metabolite: "man6p" + - chebi: "CHEBI:17369" + - kegg.compound: "C00275" + - metanetx.chemical: "MNXM427" + - sbo: "SBO:0000247" - !!omap - id: "s_0575" - name: "D-ribose" @@ -5197,11 +5197,11 @@ - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "rib__D" - - chebi: "CHEBI:16988" - - kegg.compound: "C00121" - - metanetx.chemical: "MNXM242" - - sbo: "SBO:0000247" + - bigg.metabolite: "rib__D" + - chebi: "CHEBI:16988" + - kegg.compound: "C00121" + - metanetx.chemical: "MNXM242" + - sbo: "SBO:0000247" - !!omap - id: "s_0576" - name: "D-ribose" @@ -5209,11 +5209,11 @@ - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "rib__D" - - chebi: "CHEBI:16988" - - kegg.compound: "C00121" - - metanetx.chemical: "MNXM242" - - sbo: "SBO:0000247" + - bigg.metabolite: "rib__D" + - chebi: "CHEBI:16988" + - kegg.compound: "C00121" + - metanetx.chemical: "MNXM242" + - sbo: "SBO:0000247" - !!omap - id: "s_0577" - name: "D-ribulose 5-phosphate" @@ -5221,11 +5221,11 @@ - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "ru5p__D" - - chebi: "CHEBI:58121" - - kegg.compound: "C00199" - - metanetx.chemical: "MNXM145" - - sbo: "SBO:0000247" + - bigg.metabolite: "ru5p__D" + - chebi: "CHEBI:58121" + - kegg.compound: "C00199" + - metanetx.chemical: "MNXM145" + - sbo: "SBO:0000247" - !!omap - id: "s_0578" - name: "D-xylose" @@ -5233,11 +5233,11 @@ - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "xyl__D" - - chebi: "CHEBI:15936" - - kegg.compound: "C00181" - - metanetx.chemical: "MNXM90941" - - sbo: "SBO:0000247" + - bigg.metabolite: "xyl__D" + - chebi: "CHEBI:15936" + - kegg.compound: "C00181" + - metanetx.chemical: "MNXM90941" + - sbo: "SBO:0000247" - !!omap - id: "s_0579" - name: "D-xylose" @@ -5245,11 +5245,11 @@ - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "xyl__D" - - chebi: "CHEBI:15936" - - kegg.compound: "C00181" - - metanetx.chemical: "MNXM90941" - - sbo: "SBO:0000247" + - bigg.metabolite: "xyl__D" + - chebi: "CHEBI:15936" + - kegg.compound: "C00181" + - metanetx.chemical: "MNXM90941" + - sbo: "SBO:0000247" - !!omap - id: "s_0580" - name: "D-xylulose" @@ -5257,11 +5257,11 @@ - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "xylu__D" - - chebi: "CHEBI:17140" - - kegg.compound: "C00310" - - metanetx.chemical: "MNXM597" - - sbo: "SBO:0000247" + - bigg.metabolite: "xylu__D" + - chebi: "CHEBI:17140" + - kegg.compound: "C00310" + - metanetx.chemical: "MNXM597" + - sbo: "SBO:0000247" - !!omap - id: "s_0581" - name: "D-xylulose 5-phosphate" @@ -5269,11 +5269,11 @@ - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "xu5p__D" - - chebi: "CHEBI:57737" - - kegg.compound: "C00231" - - metanetx.chemical: "MNXM186" - - sbo: "SBO:0000247" + - bigg.metabolite: "xu5p__D" + - chebi: "CHEBI:57737" + - kegg.compound: "C00231" + - metanetx.chemical: "MNXM186" + - sbo: "SBO:0000247" - !!omap - id: "s_0582" - name: "dADP" @@ -5281,11 +5281,11 @@ - formula: "C10H12N5O9P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "dadp" - - chebi: "CHEBI:57667" - - kegg.compound: "C00206" - - metanetx.chemical: "MNXM374" - - sbo: "SBO:0000247" + - bigg.metabolite: "dadp" + - chebi: "CHEBI:57667" + - kegg.compound: "C00206" + - metanetx.chemical: "MNXM374" + - sbo: "SBO:0000247" - !!omap - id: "s_0583" - name: "dADP" @@ -5293,11 +5293,11 @@ - formula: "C10H12N5O9P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "dadp" - - chebi: "CHEBI:57667" - - kegg.compound: "C00206" - - metanetx.chemical: "MNXM374" - - sbo: "SBO:0000247" + - bigg.metabolite: "dadp" + - chebi: "CHEBI:57667" + - kegg.compound: "C00206" + - metanetx.chemical: "MNXM374" + - sbo: "SBO:0000247" - !!omap - id: "s_0584" - name: "dAMP" @@ -5305,11 +5305,11 @@ - formula: "C10H12N5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "damp" - - chebi: "CHEBI:58245" - - kegg.compound: "C00360" - - metanetx.chemical: "MNXM432" - - sbo: "SBO:0000247" + - bigg.metabolite: "damp" + - chebi: "CHEBI:58245" + - kegg.compound: "C00360" + - metanetx.chemical: "MNXM432" + - sbo: "SBO:0000247" - !!omap - id: "s_0585" - name: "dAMP" @@ -5317,11 +5317,11 @@ - formula: "C10H12N5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "damp" - - chebi: "CHEBI:58245" - - kegg.compound: "C00360" - - metanetx.chemical: "MNXM432" - - sbo: "SBO:0000247" + - bigg.metabolite: "damp" + - chebi: "CHEBI:58245" + - kegg.compound: "C00360" + - metanetx.chemical: "MNXM432" + - sbo: "SBO:0000247" - !!omap - id: "s_0586" - name: "dATP" @@ -5329,11 +5329,11 @@ - formula: "C10H12N5O12P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "datp" - - chebi: "CHEBI:61404" - - kegg.compound: "C00131" - - metanetx.chemical: "MNXM286" - - sbo: "SBO:0000247" + - bigg.metabolite: "datp" + - chebi: "CHEBI:61404" + - kegg.compound: "C00131" + - metanetx.chemical: "MNXM286" + - sbo: "SBO:0000247" - !!omap - id: "s_0587" - name: "dCDP" @@ -5341,11 +5341,11 @@ - formula: "C9H12N3O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "dcdp" - - chebi: "CHEBI:58593" - - kegg.compound: "C00705" - - metanetx.chemical: "MNXM411" - - sbo: "SBO:0000247" + - bigg.metabolite: "dcdp" + - chebi: "CHEBI:58593" + - kegg.compound: "C00705" + - metanetx.chemical: "MNXM411" + - sbo: "SBO:0000247" - !!omap - id: "s_0588" - name: "dCDP" @@ -5353,11 +5353,11 @@ - formula: "C9H12N3O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "dcdp" - - chebi: "CHEBI:58593" - - kegg.compound: "C00705" - - metanetx.chemical: "MNXM411" - - sbo: "SBO:0000247" + - bigg.metabolite: "dcdp" + - chebi: "CHEBI:58593" + - kegg.compound: "C00705" + - metanetx.chemical: "MNXM411" + - sbo: "SBO:0000247" - !!omap - id: "s_0589" - name: "dCMP" @@ -5365,11 +5365,11 @@ - formula: "C9H12N3O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dcmp" - - chebi: "CHEBI:57566" - - kegg.compound: "C00239" - - metanetx.chemical: "MNXM266" - - sbo: "SBO:0000247" + - bigg.metabolite: "dcmp" + - chebi: "CHEBI:57566" + - kegg.compound: "C00239" + - metanetx.chemical: "MNXM266" + - sbo: "SBO:0000247" - !!omap - id: "s_0590" - name: "dCTP" @@ -5377,11 +5377,11 @@ - formula: "C9H12N3O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "dctp" - - chebi: "CHEBI:57724" - - kegg.compound: "C00458" - - metanetx.chemical: "MNXM360" - - sbo: "SBO:0000247" + - bigg.metabolite: "dctp" + - chebi: "CHEBI:57724" + - kegg.compound: "C00458" + - metanetx.chemical: "MNXM360" + - sbo: "SBO:0000247" - !!omap - id: "s_0591" - name: "deamido-NAD(+)" @@ -5389,11 +5389,11 @@ - formula: "C21H24N6O15P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dnad" - - chebi: "CHEBI:18304" - - kegg.compound: "C00857" - - metanetx.chemical: "MNXM309" - - sbo: "SBO:0000247" + - bigg.metabolite: "dnad" + - chebi: "CHEBI:18304" + - kegg.compound: "C00857" + - metanetx.chemical: "MNXM309" + - sbo: "SBO:0000247" - !!omap - id: "s_0593" - name: "deamido-NAD(+)" @@ -5401,11 +5401,11 @@ - formula: "C21H24N6O15P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dnad" - - chebi: "CHEBI:18304" - - kegg.compound: "C00857" - - metanetx.chemical: "MNXM309" - - sbo: "SBO:0000247" + - bigg.metabolite: "dnad" + - chebi: "CHEBI:18304" + - kegg.compound: "C00857" + - metanetx.chemical: "MNXM309" + - sbo: "SBO:0000247" - !!omap - id: "s_0595" - name: "decanoate" @@ -5413,11 +5413,11 @@ - formula: "C10H19O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "dca" - - chebi: "CHEBI:27689" - - kegg.compound: "C01571" - - metanetx.chemical: "MNXM1043" - - sbo: "SBO:0000247" + - bigg.metabolite: "dca" + - chebi: "CHEBI:27689" + - kegg.compound: "C01571" + - metanetx.chemical: "MNXM1043" + - sbo: "SBO:0000247" - !!omap - id: "s_0597" - name: "decanoate" @@ -5425,11 +5425,11 @@ - formula: "C10H19O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "dca" - - chebi: "CHEBI:27689" - - kegg.compound: "C01571" - - metanetx.chemical: "MNXM1043" - - sbo: "SBO:0000247" + - bigg.metabolite: "dca" + - chebi: "CHEBI:27689" + - kegg.compound: "C01571" + - metanetx.chemical: "MNXM1043" + - sbo: "SBO:0000247" - !!omap - id: "s_0600" - name: "decanoate" @@ -5437,11 +5437,11 @@ - formula: "C10H19O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "dca" - - chebi: "CHEBI:27689" - - kegg.compound: "C01571" - - metanetx.chemical: "MNXM1043" - - sbo: "SBO:0000247" + - bigg.metabolite: "dca" + - chebi: "CHEBI:27689" + - kegg.compound: "C01571" + - metanetx.chemical: "MNXM1043" + - sbo: "SBO:0000247" - !!omap - id: "s_0605" - name: "decanoyl-CoA" @@ -5449,11 +5449,11 @@ - formula: "C31H50N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "dccoa" - - chebi: "CHEBI:61430" - - kegg.compound: "C05274" - - metanetx.chemical: "MNXM486" - - sbo: "SBO:0000247" + - bigg.metabolite: "dccoa" + - chebi: "CHEBI:61430" + - kegg.compound: "C05274" + - metanetx.chemical: "MNXM486" + - sbo: "SBO:0000247" - !!omap - id: "s_0606" - name: "decaprenyl diphosphate" @@ -5461,11 +5461,11 @@ - formula: "C50H81O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "decdp" - - chebi: "CHEBI:53043" - - kegg.compound: "C17432" - - metanetx.chemical: "MNXM1721" - - sbo: "SBO:0000247" + - bigg.metabolite: "decdp" + - chebi: "CHEBI:53043" + - kegg.compound: "C17432" + - metanetx.chemical: "MNXM1721" + - sbo: "SBO:0000247" - !!omap - id: "s_0607" - name: "dehydro-D-arabinono-1,4-lactone" @@ -5473,10 +5473,10 @@ - formula: "C5H5O5" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:58277" - - kegg.compound: "C06316" - - metanetx.chemical: "MNXM3254" - - sbo: "SBO:0000247" + - chebi: "CHEBI:58277" + - kegg.compound: "C06316" + - metanetx.chemical: "MNXM3254" + - sbo: "SBO:0000247" - !!omap - id: "s_0608" - name: "Delta(6)-trans,Delta(8)-cis-leukotriene B4" @@ -5484,9 +5484,9 @@ - formula: "C20H31O4" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:53027" - - metanetx.chemical: "MNXM507621" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53027" + - metanetx.chemical: "MNXM507621" + - sbo: "SBO:0000247" - !!omap - id: "s_0609" - name: "Delta(6)-trans,Delta(8)-cis-leukotriene B4" @@ -5494,9 +5494,9 @@ - formula: "C20H31O4" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:53027" - - metanetx.chemical: "MNXM507621" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53027" + - metanetx.chemical: "MNXM507621" + - sbo: "SBO:0000247" - !!omap - id: "s_0610" - name: "deoxycytidine" @@ -5504,11 +5504,11 @@ - formula: "C9H13N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dcyt" - - chebi: "CHEBI:15698" - - kegg.compound: "C00881" - - metanetx.chemical: "MNXM704" - - sbo: "SBO:0000247" + - bigg.metabolite: "dcyt" + - chebi: "CHEBI:15698" + - kegg.compound: "C00881" + - metanetx.chemical: "MNXM704" + - sbo: "SBO:0000247" - !!omap - id: "s_0611" - name: "deoxycytidine" @@ -5516,11 +5516,11 @@ - formula: "C9H13N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dcyt" - - chebi: "CHEBI:15698" - - kegg.compound: "C00881" - - metanetx.chemical: "MNXM704" - - sbo: "SBO:0000247" + - bigg.metabolite: "dcyt" + - chebi: "CHEBI:15698" + - kegg.compound: "C00881" + - metanetx.chemical: "MNXM704" + - sbo: "SBO:0000247" - !!omap - id: "s_0612" - name: "dethiobiotin" @@ -5528,11 +5528,11 @@ - formula: "C10H17N2O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "dtbt" - - chebi: "CHEBI:57861" - - kegg.compound: "C01909" - - metanetx.chemical: "MNXM1020" - - sbo: "SBO:0000247" + - bigg.metabolite: "dtbt" + - chebi: "CHEBI:57861" + - kegg.compound: "C01909" + - metanetx.chemical: "MNXM1020" + - sbo: "SBO:0000247" - !!omap - id: "s_0613" - name: "dGDP" @@ -5540,11 +5540,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "dgdp" - - chebi: "CHEBI:58595" - - kegg.compound: "C00361" - - metanetx.chemical: "MNXM436" - - sbo: "SBO:0000247" + - bigg.metabolite: "dgdp" + - chebi: "CHEBI:58595" + - kegg.compound: "C00361" + - metanetx.chemical: "MNXM436" + - sbo: "SBO:0000247" - !!omap - id: "s_0614" - name: "dGDP" @@ -5552,11 +5552,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "dgdp" - - chebi: "CHEBI:58595" - - kegg.compound: "C00361" - - metanetx.chemical: "MNXM436" - - sbo: "SBO:0000247" + - bigg.metabolite: "dgdp" + - chebi: "CHEBI:58595" + - kegg.compound: "C00361" + - metanetx.chemical: "MNXM436" + - sbo: "SBO:0000247" - !!omap - id: "s_0615" - name: "dGMP" @@ -5564,11 +5564,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dgmp" - - chebi: "CHEBI:57673" - - kegg.compound: "C00362" - - metanetx.chemical: "MNXM546" - - sbo: "SBO:0000247" + - bigg.metabolite: "dgmp" + - chebi: "CHEBI:57673" + - kegg.compound: "C00362" + - metanetx.chemical: "MNXM546" + - sbo: "SBO:0000247" - !!omap - id: "s_0616" - name: "dGMP" @@ -5576,11 +5576,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dgmp" - - chebi: "CHEBI:57673" - - kegg.compound: "C00362" - - metanetx.chemical: "MNXM546" - - sbo: "SBO:0000247" + - bigg.metabolite: "dgmp" + - chebi: "CHEBI:57673" + - kegg.compound: "C00362" + - metanetx.chemical: "MNXM546" + - sbo: "SBO:0000247" - !!omap - id: "s_0617" - name: "dGTP" @@ -5588,11 +5588,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "dgtp" - - chebi: "CHEBI:57794" - - kegg.compound: "C00286" - - metanetx.chemical: "MNXM344" - - sbo: "SBO:0000247" + - bigg.metabolite: "dgtp" + - chebi: "CHEBI:57794" + - kegg.compound: "C00286" + - metanetx.chemical: "MNXM344" + - sbo: "SBO:0000247" - !!omap - id: "s_0618" - name: "dIDP" @@ -5600,22 +5600,22 @@ - formula: "C10H11N4O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "didp" - - chebi: "CHEBI:28823" - - kegg.compound: "C01344" - - metanetx.chemical: "MNXM2174" - - sbo: "SBO:0000247" + - bigg.metabolite: "didp" + - chebi: "CHEBI:28823" + - kegg.compound: "C01344" + - metanetx.chemical: "MNXM2174" + - sbo: "SBO:0000247" - !!omap - id: "s_0620" - name: "diglyceride backbone" - compartment: "er" - formula: "C3H4O" - annotation: !!omap - - bigg.metabolite: "dag_hs" - - chebi: "CHEBI:18035" - - kegg.compound: "C00165" - - metanetx.chemical: "MNXM59" - - sbo: "SBO:0000649" + - bigg.metabolite: "dag_hs" + - chebi: "CHEBI:18035" + - kegg.compound: "C00165" + - metanetx.chemical: "MNXM59" + - sbo: "SBO:0000649" - !!omap - id: "s_0625" - name: "dihydrofolic acid" @@ -5623,11 +5623,11 @@ - formula: "C19H19N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dhf" - - chebi: "CHEBI:57451" - - kegg.compound: "C00415" - - metanetx.chemical: "MNXM281" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhf" + - chebi: "CHEBI:57451" + - kegg.compound: "C00415" + - metanetx.chemical: "MNXM281" + - sbo: "SBO:0000247" - !!omap - id: "s_0626" - name: "dihydrofolic acid" @@ -5635,11 +5635,11 @@ - formula: "C19H19N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dhf" - - chebi: "CHEBI:57451" - - kegg.compound: "C00415" - - metanetx.chemical: "MNXM281" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhf" + - chebi: "CHEBI:57451" + - kegg.compound: "C00415" + - metanetx.chemical: "MNXM281" + - sbo: "SBO:0000247" - !!omap - id: "s_0627" - name: "dihydrolipoamide" @@ -5647,11 +5647,11 @@ - formula: "C8H17NOS2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dhlam" - - chebi: "CHEBI:17694" - - kegg.compound: "C00579" - - metanetx.chemical: "MNXM1277" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhlam" + - chebi: "CHEBI:17694" + - kegg.compound: "C00579" + - metanetx.chemical: "MNXM1277" + - sbo: "SBO:0000247" - !!omap - id: "s_0628" - name: "dihydrolipoylprotein" @@ -5659,11 +5659,11 @@ - formula: "C8H16NOS2R" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dhlpro" - - chebi: "CHEBI:16194" - - kegg.compound: "C02972" - - metanetx.chemical: "MNXM1663" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhlpro" + - chebi: "CHEBI:16194" + - kegg.compound: "C02972" + - metanetx.chemical: "MNXM1663" + - sbo: "SBO:0000247" - !!omap - id: "s_0629" - name: "dihydroxyacetone phosphate" @@ -5671,11 +5671,11 @@ - formula: "C3H5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dhap" - - chebi: "CHEBI:57642" - - kegg.compound: "C00111" - - metanetx.chemical: "MNXM77" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhap" + - chebi: "CHEBI:57642" + - kegg.compound: "C00111" + - metanetx.chemical: "MNXM77" + - sbo: "SBO:0000247" - !!omap - id: "s_0631" - name: "dihydroxyacetone phosphate" @@ -5683,11 +5683,11 @@ - formula: "C3H5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dhap" - - chebi: "CHEBI:57642" - - kegg.compound: "C00111" - - metanetx.chemical: "MNXM77" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhap" + - chebi: "CHEBI:57642" + - kegg.compound: "C00111" + - metanetx.chemical: "MNXM77" + - sbo: "SBO:0000247" - !!omap - id: "s_0632" - name: "dihydroxyacetone phosphate" @@ -5695,11 +5695,11 @@ - formula: "C3H5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dhap" - - chebi: "CHEBI:57642" - - kegg.compound: "C00111" - - metanetx.chemical: "MNXM77" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhap" + - chebi: "CHEBI:57642" + - kegg.compound: "C00111" + - metanetx.chemical: "MNXM77" + - sbo: "SBO:0000247" - !!omap - id: "s_0633" - name: "diphosphate" @@ -5707,11 +5707,11 @@ - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ppi" - - chebi: "CHEBI:33019" - - kegg.compound: "C00013" - - metanetx.chemical: "MNXM11" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - id: "s_0635" - name: "diphosphate" @@ -5719,11 +5719,11 @@ - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ppi" - - chebi: "CHEBI:33019" - - kegg.compound: "C00013" - - metanetx.chemical: "MNXM11" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - id: "s_0636" - name: "diphosphate" @@ -5731,11 +5731,11 @@ - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ppi" - - chebi: "CHEBI:33019" - - kegg.compound: "C00013" - - metanetx.chemical: "MNXM11" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - id: "s_0637" - name: "diphosphate" @@ -5743,11 +5743,11 @@ - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ppi" - - chebi: "CHEBI:33019" - - kegg.compound: "C00013" - - metanetx.chemical: "MNXM11" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - id: "s_0638" - name: "diphosphate" @@ -5755,11 +5755,11 @@ - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ppi" - - chebi: "CHEBI:33019" - - kegg.compound: "C00013" - - metanetx.chemical: "MNXM11" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - id: "s_0639" - name: "dITP" @@ -5767,11 +5767,11 @@ - formula: "C10H11N4O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ditp" - - chebi: "CHEBI:61382" - - kegg.compound: "C01345" - - metanetx.chemical: "MNXM1325" - - sbo: "SBO:0000247" + - bigg.metabolite: "ditp" + - chebi: "CHEBI:61382" + - kegg.compound: "C01345" + - metanetx.chemical: "MNXM1325" + - sbo: "SBO:0000247" - !!omap - id: "s_0640" - name: "docosaprenyl diphosphate" @@ -5779,9 +5779,9 @@ - formula: "C110H177O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53031" - - metanetx.chemical: "MNXM51449" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53031" + - metanetx.chemical: "MNXM51449" + - sbo: "SBO:0000247" - !!omap - id: "s_0641" - name: "dodecaprenyl diphosphate" @@ -5789,10 +5789,10 @@ - formula: "C60H97O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53041" - - kegg.compound: "C05847" - - metanetx.chemical: "MNXM11433" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53041" + - kegg.compound: "C05847" + - metanetx.chemical: "MNXM11433" + - sbo: "SBO:0000247" - !!omap - id: "s_0642" - name: "dolichol" @@ -5800,11 +5800,11 @@ - formula: "C20H36O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dolichol" - - chebi: "CHEBI:16091" - - kegg.compound: "C00381" - - metanetx.chemical: "MNXM797" - - sbo: "SBO:0000247" + - bigg.metabolite: "dolichol" + - chebi: "CHEBI:16091" + - kegg.compound: "C00381" + - metanetx.chemical: "MNXM797" + - sbo: "SBO:0000247" - !!omap - id: "s_0644" - name: "dolichyl D-mannosyl phosphate" @@ -5812,11 +5812,11 @@ - formula: "C26H47O9P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dolmanp" - - chebi: "CHEBI:15809" - - kegg.compound: "C03862" - - metanetx.chemical: "MNXM296" - - sbo: "SBO:0000247" + - bigg.metabolite: "dolmanp" + - chebi: "CHEBI:15809" + - kegg.compound: "C03862" + - metanetx.chemical: "MNXM296" + - sbo: "SBO:0000247" - !!omap - id: "s_0645" - name: "dolichyl phosphate" @@ -5824,11 +5824,11 @@ - formula: "C20H37O4P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dolp" - - chebi: "CHEBI:16214" - - kegg.compound: "C00110" - - metanetx.chemical: "MNXM278" - - sbo: "SBO:0000247" + - bigg.metabolite: "dolp" + - chebi: "CHEBI:16214" + - kegg.compound: "C00110" + - metanetx.chemical: "MNXM278" + - sbo: "SBO:0000247" - !!omap - id: "s_0646" - name: "dolichyl phosphate" @@ -5836,11 +5836,11 @@ - formula: "C20H37O4P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dolp" - - chebi: "CHEBI:16214" - - kegg.compound: "C00110" - - metanetx.chemical: "MNXM278" - - sbo: "SBO:0000247" + - bigg.metabolite: "dolp" + - chebi: "CHEBI:16214" + - kegg.compound: "C00110" + - metanetx.chemical: "MNXM278" + - sbo: "SBO:0000247" - !!omap - id: "s_0647" - name: "dTDP" @@ -5848,11 +5848,11 @@ - formula: "C10H13N2O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "dtdp" - - chebi: "CHEBI:58369" - - kegg.compound: "C00363" - - metanetx.chemical: "MNXM152" - - sbo: "SBO:0000247" + - bigg.metabolite: "dtdp" + - chebi: "CHEBI:58369" + - kegg.compound: "C00363" + - metanetx.chemical: "MNXM152" + - sbo: "SBO:0000247" - !!omap - id: "s_0649" - name: "dTMP" @@ -5860,11 +5860,11 @@ - formula: "C10H13N2O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dtmp" - - chebi: "CHEBI:17013" - - kegg.compound: "C00364" - - metanetx.chemical: "MNXM257" - - sbo: "SBO:0000247" + - bigg.metabolite: "dtmp" + - chebi: "CHEBI:17013" + - kegg.compound: "C00364" + - metanetx.chemical: "MNXM257" + - sbo: "SBO:0000247" - !!omap - id: "s_0650" - name: "dTTP" @@ -5872,11 +5872,11 @@ - formula: "C10H13N2O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "dttp" - - chebi: "CHEBI:58370" - - kegg.compound: "C00459" - - metanetx.chemical: "MNXM394" - - sbo: "SBO:0000247" + - bigg.metabolite: "dttp" + - chebi: "CHEBI:58370" + - kegg.compound: "C00459" + - metanetx.chemical: "MNXM394" + - sbo: "SBO:0000247" - !!omap - id: "s_0651" - name: "dTTP" @@ -5884,11 +5884,11 @@ - formula: "C10H13N2O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "dttp" - - chebi: "CHEBI:58370" - - kegg.compound: "C00459" - - metanetx.chemical: "MNXM394" - - sbo: "SBO:0000247" + - bigg.metabolite: "dttp" + - chebi: "CHEBI:58370" + - kegg.compound: "C00459" + - metanetx.chemical: "MNXM394" + - sbo: "SBO:0000247" - !!omap - id: "s_0652" - name: "dUDP" @@ -5896,11 +5896,11 @@ - formula: "C9H11N2O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "dudp" - - chebi: "CHEBI:60471" - - kegg.compound: "C01346" - - metanetx.chemical: "MNXM572" - - sbo: "SBO:0000247" + - bigg.metabolite: "dudp" + - chebi: "CHEBI:60471" + - kegg.compound: "C01346" + - metanetx.chemical: "MNXM572" + - sbo: "SBO:0000247" - !!omap - id: "s_0653" - name: "dUDP" @@ -5908,11 +5908,11 @@ - formula: "C9H11N2O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "dudp" - - chebi: "CHEBI:60471" - - kegg.compound: "C01346" - - metanetx.chemical: "MNXM572" - - sbo: "SBO:0000247" + - bigg.metabolite: "dudp" + - chebi: "CHEBI:60471" + - kegg.compound: "C01346" + - metanetx.chemical: "MNXM572" + - sbo: "SBO:0000247" - !!omap - id: "s_0654" - name: "dUMP" @@ -5920,11 +5920,11 @@ - formula: "C9H11N2O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dump" - - chebi: "CHEBI:246422" - - kegg.compound: "C00365" - - metanetx.chemical: "MNXM234" - - sbo: "SBO:0000247" + - bigg.metabolite: "dump" + - chebi: "CHEBI:246422" + - kegg.compound: "C00365" + - metanetx.chemical: "MNXM234" + - sbo: "SBO:0000247" - !!omap - id: "s_0655" - name: "dUMP" @@ -5932,11 +5932,11 @@ - formula: "C9H11N2O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dump" - - chebi: "CHEBI:246422" - - kegg.compound: "C00365" - - metanetx.chemical: "MNXM234" - - sbo: "SBO:0000247" + - bigg.metabolite: "dump" + - chebi: "CHEBI:246422" + - kegg.compound: "C00365" + - metanetx.chemical: "MNXM234" + - sbo: "SBO:0000247" - !!omap - id: "s_0656" - name: "dUTP" @@ -5944,11 +5944,11 @@ - formula: "C9H11N2O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "dutp" - - chebi: "CHEBI:58212" - - kegg.compound: "C00460" - - metanetx.chemical: "MNXM452" - - sbo: "SBO:0000247" + - bigg.metabolite: "dutp" + - chebi: "CHEBI:58212" + - kegg.compound: "C00460" + - metanetx.chemical: "MNXM452" + - sbo: "SBO:0000247" - !!omap - id: "s_0657" - name: "episterol" @@ -5956,11 +5956,11 @@ - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "epist" - - chebi: "CHEBI:23929" - - kegg.compound: "C15777" - - metanetx.chemical: "MNXM52365" - - sbo: "SBO:0000247" + - bigg.metabolite: "epist" + - chebi: "CHEBI:23929" + - kegg.compound: "C15777" + - metanetx.chemical: "MNXM52365" + - sbo: "SBO:0000247" - !!omap - id: "s_0659" - name: "episterol" @@ -5968,11 +5968,11 @@ - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "epist" - - chebi: "CHEBI:23929" - - kegg.compound: "C15777" - - metanetx.chemical: "MNXM52365" - - sbo: "SBO:0000247" + - bigg.metabolite: "epist" + - chebi: "CHEBI:23929" + - kegg.compound: "C15777" + - metanetx.chemical: "MNXM52365" + - sbo: "SBO:0000247" - !!omap - id: "s_0662" - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol" @@ -5980,11 +5980,11 @@ - formula: "C28H42O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ergtetrol" - - chebi: "CHEBI:18249" - - kegg.compound: "C05440" - - metanetx.chemical: "MNXM1109" - - sbo: "SBO:0000247" + - bigg.metabolite: "ergtetrol" + - chebi: "CHEBI:18249" + - kegg.compound: "C05440" + - metanetx.chemical: "MNXM1109" + - sbo: "SBO:0000247" - !!omap - id: "s_0663" - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol" @@ -5992,11 +5992,11 @@ - formula: "C28H42O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ergtetrol" - - chebi: "CHEBI:18249" - - kegg.compound: "C05440" - - metanetx.chemical: "MNXM1109" - - sbo: "SBO:0000247" + - bigg.metabolite: "ergtetrol" + - chebi: "CHEBI:18249" + - kegg.compound: "C05440" + - metanetx.chemical: "MNXM1109" + - sbo: "SBO:0000247" - !!omap - id: "s_0664" - name: "ergosta-5,7,24(28)-trien-3beta-ol" @@ -6004,11 +6004,11 @@ - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ergtrol" - - chebi: "CHEBI:52972" - - kegg.compound: "C15780" - - metanetx.chemical: "MNXM5738" - - sbo: "SBO:0000247" + - bigg.metabolite: "ergtrol" + - chebi: "CHEBI:52972" + - kegg.compound: "C15780" + - metanetx.chemical: "MNXM5738" + - sbo: "SBO:0000247" - !!omap - id: "s_0665" - name: "ergosterol" @@ -6016,11 +6016,11 @@ - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ergst" - - chebi: "CHEBI:16933" - - kegg.compound: "C01694" - - metanetx.chemical: "MNXM922" - - sbo: "SBO:0000247" + - bigg.metabolite: "ergst" + - chebi: "CHEBI:16933" + - kegg.compound: "C01694" + - metanetx.chemical: "MNXM922" + - sbo: "SBO:0000247" - !!omap - id: "s_0666" - name: "ergosterol" @@ -6028,11 +6028,11 @@ - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ergst" - - chebi: "CHEBI:16933" - - kegg.compound: "C01694" - - metanetx.chemical: "MNXM922" - - sbo: "SBO:0000247" + - bigg.metabolite: "ergst" + - chebi: "CHEBI:16933" + - kegg.compound: "C01694" + - metanetx.chemical: "MNXM922" + - sbo: "SBO:0000247" - !!omap - id: "s_0667" - name: "ergosterol" @@ -6040,11 +6040,11 @@ - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ergst" - - chebi: "CHEBI:16933" - - kegg.compound: "C01694" - - metanetx.chemical: "MNXM922" - - sbo: "SBO:0000247" + - bigg.metabolite: "ergst" + - chebi: "CHEBI:16933" + - kegg.compound: "C01694" + - metanetx.chemical: "MNXM922" + - sbo: "SBO:0000247" - !!omap - id: "s_0668" - name: "ergosterol" @@ -6052,11 +6052,11 @@ - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ergst" - - chebi: "CHEBI:16933" - - kegg.compound: "C01694" - - metanetx.chemical: "MNXM922" - - sbo: "SBO:0000247" + - bigg.metabolite: "ergst" + - chebi: "CHEBI:16933" + - kegg.compound: "C01694" + - metanetx.chemical: "MNXM922" + - sbo: "SBO:0000247" - !!omap - id: "s_0669" - name: "ergosterol" @@ -6064,11 +6064,11 @@ - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ergst" - - chebi: "CHEBI:16933" - - kegg.compound: "C01694" - - metanetx.chemical: "MNXM922" - - sbo: "SBO:0000247" + - bigg.metabolite: "ergst" + - chebi: "CHEBI:16933" + - kegg.compound: "C01694" + - metanetx.chemical: "MNXM922" + - sbo: "SBO:0000247" - !!omap - id: "s_0670" - name: "ergosterol 3-beta-D-glucoside" @@ -6076,10 +6076,10 @@ - formula: "C34H54O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ergst3glc" - - chebi: "CHEBI:52973" - - metanetx.chemical: "MNXM52465" - - sbo: "SBO:0000247" + - bigg.metabolite: "ergst3glc" + - chebi: "CHEBI:52973" + - metanetx.chemical: "MNXM52465" + - sbo: "SBO:0000247" - !!omap - id: "s_0672" - name: "ergosterol ester backbone" @@ -6087,9 +6087,9 @@ - formula: "C28H42" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52320" - - metanetx.chemical: "MNXM5739" - - sbo: "SBO:0000649" + - chebi: "CHEBI:52320" + - metanetx.chemical: "MNXM5739" + - sbo: "SBO:0000649" - !!omap - id: "s_0677" - name: "erythro-4-hydroxy-L-glutamic acid" @@ -6097,11 +6097,11 @@ - formula: "C5H8NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "e4hglu" - - chebi: "CHEBI:21285" - - kegg.compound: "C05947" - - metanetx.chemical: "MNXM923" - - sbo: "SBO:0000247" + - bigg.metabolite: "e4hglu" + - chebi: "CHEBI:21285" + - kegg.compound: "C05947" + - metanetx.chemical: "MNXM923" + - sbo: "SBO:0000247" - !!omap - id: "s_0678" - name: "erythro-4-hydroxy-L-glutamic acid" @@ -6109,11 +6109,11 @@ - formula: "C5H8NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "e4hglu" - - chebi: "CHEBI:21285" - - kegg.compound: "C05947" - - metanetx.chemical: "MNXM923" - - sbo: "SBO:0000247" + - bigg.metabolite: "e4hglu" + - chebi: "CHEBI:21285" + - kegg.compound: "C05947" + - metanetx.chemical: "MNXM923" + - sbo: "SBO:0000247" - !!omap - id: "s_0679" - name: "erythro-4-hydroxy-L-glutamic acid" @@ -6121,11 +6121,11 @@ - formula: "C5H8NO5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "e4hglu" - - chebi: "CHEBI:21285" - - kegg.compound: "C05947" - - metanetx.chemical: "MNXM923" - - sbo: "SBO:0000247" + - bigg.metabolite: "e4hglu" + - chebi: "CHEBI:21285" + - kegg.compound: "C05947" + - metanetx.chemical: "MNXM923" + - sbo: "SBO:0000247" - !!omap - id: "s_0680" - name: "ethanol" @@ -6133,11 +6133,11 @@ - formula: "C2H6O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "etoh" - - chebi: "CHEBI:16236" - - kegg.compound: "C00469" - - metanetx.chemical: "MNXM303" - - sbo: "SBO:0000247" + - bigg.metabolite: "etoh" + - chebi: "CHEBI:16236" + - kegg.compound: "C00469" + - metanetx.chemical: "MNXM303" + - sbo: "SBO:0000247" - !!omap - id: "s_0681" - name: "ethanol" @@ -6145,11 +6145,11 @@ - formula: "C2H6O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "etoh" - - chebi: "CHEBI:16236" - - kegg.compound: "C00469" - - metanetx.chemical: "MNXM303" - - sbo: "SBO:0000247" + - bigg.metabolite: "etoh" + - chebi: "CHEBI:16236" + - kegg.compound: "C00469" + - metanetx.chemical: "MNXM303" + - sbo: "SBO:0000247" - !!omap - id: "s_0682" - name: "ethanol" @@ -6157,11 +6157,11 @@ - formula: "C2H6O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "etoh" - - chebi: "CHEBI:16236" - - kegg.compound: "C00469" - - metanetx.chemical: "MNXM303" - - sbo: "SBO:0000247" + - bigg.metabolite: "etoh" + - chebi: "CHEBI:16236" + - kegg.compound: "C00469" + - metanetx.chemical: "MNXM303" + - sbo: "SBO:0000247" - !!omap - id: "s_0683" - name: "ethanolamine" @@ -6169,11 +6169,11 @@ - formula: "C2H8NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: "etha" - - chebi: "CHEBI:57603" - - kegg.compound: "C00189" - - metanetx.chemical: "MNXM218" - - sbo: "SBO:0000247" + - bigg.metabolite: "etha" + - chebi: "CHEBI:57603" + - kegg.compound: "C00189" + - metanetx.chemical: "MNXM218" + - sbo: "SBO:0000247" - !!omap - id: "s_0684" - name: "ethanolamine" @@ -6181,11 +6181,11 @@ - formula: "C2H8NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: "etha" - - chebi: "CHEBI:57603" - - kegg.compound: "C00189" - - metanetx.chemical: "MNXM218" - - sbo: "SBO:0000247" + - bigg.metabolite: "etha" + - chebi: "CHEBI:57603" + - kegg.compound: "C00189" + - metanetx.chemical: "MNXM218" + - sbo: "SBO:0000247" - !!omap - id: "s_0685" - name: "ethyl acetate" @@ -6193,10 +6193,10 @@ - formula: "C4H8O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:27750" - - kegg.compound: "C00849" - - metanetx.chemical: "MNXM8595" - - sbo: "SBO:0000247" + - chebi: "CHEBI:27750" + - kegg.compound: "C00849" + - metanetx.chemical: "MNXM8595" + - sbo: "SBO:0000247" - !!omap - id: "s_0686" - name: "ethyl acetate" @@ -6204,10 +6204,10 @@ - formula: "C4H8O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:27750" - - kegg.compound: "C00849" - - metanetx.chemical: "MNXM8595" - - sbo: "SBO:0000247" + - chebi: "CHEBI:27750" + - kegg.compound: "C00849" + - metanetx.chemical: "MNXM8595" + - sbo: "SBO:0000247" - !!omap - id: "s_0687" - name: "FAD" @@ -6215,11 +6215,11 @@ - formula: "C27H30N9O15P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "fad" - - chebi: "CHEBI:57692" - - kegg.compound: "C00016" - - metanetx.chemical: "MNXM33" - - sbo: "SBO:0000247" + - bigg.metabolite: "fad" + - chebi: "CHEBI:57692" + - kegg.compound: "C00016" + - metanetx.chemical: "MNXM33" + - sbo: "SBO:0000247" - !!omap - id: "s_0688" - name: "FAD" @@ -6227,11 +6227,11 @@ - formula: "C27H30N9O15P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "fad" - - chebi: "CHEBI:57692" - - kegg.compound: "C00016" - - metanetx.chemical: "MNXM33" - - sbo: "SBO:0000247" + - bigg.metabolite: "fad" + - chebi: "CHEBI:57692" + - kegg.compound: "C00016" + - metanetx.chemical: "MNXM33" + - sbo: "SBO:0000247" - !!omap - id: "s_0689" - name: "FADH2" @@ -6239,11 +6239,11 @@ - formula: "C27H33N9O15P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "fadh2" - - chebi: "CHEBI:58307" - - kegg.compound: "C01352" - - metanetx.chemical: "MNXM38" - - sbo: "SBO:0000247" + - bigg.metabolite: "fadh2" + - chebi: "CHEBI:58307" + - kegg.compound: "C01352" + - metanetx.chemical: "MNXM38" + - sbo: "SBO:0000247" - !!omap - id: "s_0690" - name: "FADH2" @@ -6251,11 +6251,11 @@ - formula: "C27H33N9O15P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "fadh2" - - chebi: "CHEBI:58307" - - kegg.compound: "C01352" - - metanetx.chemical: "MNXM38" - - sbo: "SBO:0000247" + - bigg.metabolite: "fadh2" + - chebi: "CHEBI:58307" + - kegg.compound: "C01352" + - metanetx.chemical: "MNXM38" + - sbo: "SBO:0000247" - !!omap - id: "s_0692" - name: "farnesyl diphosphate" @@ -6263,11 +6263,11 @@ - formula: "C15H25O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "frdp" - - chebi: "CHEBI:175763" - - kegg.compound: "C00448" - - metanetx.chemical: "MNXM34" - - sbo: "SBO:0000247" + - bigg.metabolite: "frdp" + - chebi: "CHEBI:175763" + - kegg.compound: "C00448" + - metanetx.chemical: "MNXM34" + - sbo: "SBO:0000247" - !!omap - id: "s_0694" - name: "fatty acid backbone" @@ -6275,10 +6275,10 @@ - formula: "" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:35366" - - kegg.compound: "C00162" - - metanetx.chemical: "MNXM72" - - sbo: "SBO:0000649" + - chebi: "CHEBI:35366" + - kegg.compound: "C00162" + - metanetx.chemical: "MNXM72" + - sbo: "SBO:0000649" - !!omap - id: "s_0699" - name: "fecosterol" @@ -6286,11 +6286,11 @@ - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "fecost" - - chebi: "CHEBI:17038" - - kegg.compound: "C04525" - - metanetx.chemical: "MNXM1741" - - sbo: "SBO:0000247" + - bigg.metabolite: "fecost" + - chebi: "CHEBI:17038" + - kegg.compound: "C04525" + - metanetx.chemical: "MNXM1741" + - sbo: "SBO:0000247" - !!omap - id: "s_0700" - name: "fecosterol" @@ -6298,11 +6298,11 @@ - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "fecost" - - chebi: "CHEBI:17038" - - kegg.compound: "C04525" - - metanetx.chemical: "MNXM1741" - - sbo: "SBO:0000247" + - bigg.metabolite: "fecost" + - chebi: "CHEBI:17038" + - kegg.compound: "C04525" + - metanetx.chemical: "MNXM1741" + - sbo: "SBO:0000247" - !!omap - id: "s_0702" - name: "fecosterol" @@ -6310,11 +6310,11 @@ - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "fecost" - - chebi: "CHEBI:17038" - - kegg.compound: "C04525" - - metanetx.chemical: "MNXM1741" - - sbo: "SBO:0000247" + - bigg.metabolite: "fecost" + - chebi: "CHEBI:17038" + - kegg.compound: "C04525" + - metanetx.chemical: "MNXM1741" + - sbo: "SBO:0000247" - !!omap - id: "s_0703" - name: "fecosterol" @@ -6322,11 +6322,11 @@ - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "fecost" - - chebi: "CHEBI:17038" - - kegg.compound: "C04525" - - metanetx.chemical: "MNXM1741" - - sbo: "SBO:0000247" + - bigg.metabolite: "fecost" + - chebi: "CHEBI:17038" + - kegg.compound: "C04525" + - metanetx.chemical: "MNXM1741" + - sbo: "SBO:0000247" - !!omap - id: "s_0709" - name: "ferricytochrome c" @@ -6334,11 +6334,11 @@ - formula: "C42H44FeN8O8S2R4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ficytc" - - chebi: "CHEBI:15991" - - kegg.compound: "C00125" - - metanetx.chemical: "MNXM5749" - - sbo: "SBO:0000247" + - bigg.metabolite: "ficytc" + - chebi: "CHEBI:15991" + - kegg.compound: "C00125" + - metanetx.chemical: "MNXM5749" + - sbo: "SBO:0000247" - !!omap - id: "s_0710" - name: "ferrocytochrome c" @@ -6346,11 +6346,11 @@ - formula: "C42H45FeN8O8S2R4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "focytc" - - chebi: "CHEBI:16928" - - kegg.compound: "C00126" - - metanetx.chemical: "MNXM746" - - sbo: "SBO:0000247" + - bigg.metabolite: "focytc" + - chebi: "CHEBI:16928" + - kegg.compound: "C00126" + - metanetx.chemical: "MNXM746" + - sbo: "SBO:0000247" - !!omap - id: "s_0712" - name: "ferroheme b" @@ -6358,11 +6358,11 @@ - formula: "C34H30FeN4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pheme" - - chebi: "CHEBI:60344" - - kegg.compound: "C00032" - - metanetx.chemical: "MNXM249" - - sbo: "SBO:0000247" + - bigg.metabolite: "pheme" + - chebi: "CHEBI:60344" + - kegg.compound: "C00032" + - metanetx.chemical: "MNXM249" + - sbo: "SBO:0000247" - !!omap - id: "s_0713" - name: "fMet-tRNA(fMet)" @@ -6370,11 +6370,11 @@ - formula: "C6H10NO2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: "fmettrna" - - chebi: "CHEBI:17119" - - kegg.compound: "C03294" - - metanetx.chemical: "MNXM95381" - - sbo: "SBO:0000247" + - bigg.metabolite: "fmettrna" + - chebi: "CHEBI:17119" + - kegg.compound: "C03294" + - metanetx.chemical: "MNXM95381" + - sbo: "SBO:0000247" - !!omap - id: "s_0714" - name: "FMN" @@ -6382,11 +6382,11 @@ - formula: "C17H18N4O9P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "fmn" - - chebi: "CHEBI:58210" - - kegg.compound: "C00061" - - metanetx.chemical: "MNXM119" - - sbo: "SBO:0000247" + - bigg.metabolite: "fmn" + - chebi: "CHEBI:58210" + - kegg.compound: "C00061" + - metanetx.chemical: "MNXM119" + - sbo: "SBO:0000247" - !!omap - id: "s_0715" - name: "FMN" @@ -6394,11 +6394,11 @@ - formula: "C17H18N4O9P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "fmn" - - chebi: "CHEBI:58210" - - kegg.compound: "C00061" - - metanetx.chemical: "MNXM119" - - sbo: "SBO:0000247" + - bigg.metabolite: "fmn" + - chebi: "CHEBI:58210" + - kegg.compound: "C00061" + - metanetx.chemical: "MNXM119" + - sbo: "SBO:0000247" - !!omap - id: "s_0716" - name: "FMN" @@ -6406,11 +6406,11 @@ - formula: "C17H18N4O9P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "fmn" - - chebi: "CHEBI:58210" - - kegg.compound: "C00061" - - metanetx.chemical: "MNXM119" - - sbo: "SBO:0000247" + - bigg.metabolite: "fmn" + - chebi: "CHEBI:58210" + - kegg.compound: "C00061" + - metanetx.chemical: "MNXM119" + - sbo: "SBO:0000247" - !!omap - id: "s_0717" - name: "FMNH2" @@ -6418,11 +6418,11 @@ - formula: "C17H21N4O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "fmnh2" - - chebi: "CHEBI:57618" - - kegg.compound: "C01847" - - metanetx.chemical: "MNXM208" - - sbo: "SBO:0000247" + - bigg.metabolite: "fmnh2" + - chebi: "CHEBI:57618" + - kegg.compound: "C01847" + - metanetx.chemical: "MNXM208" + - sbo: "SBO:0000247" - !!omap - id: "s_0719" - name: "folate" @@ -6430,11 +6430,11 @@ - formula: "C19H17N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "fol" - - chebi: "CHEBI:62501" - - kegg.compound: "C00504" - - metanetx.chemical: "MNXM617" - - sbo: "SBO:0000247" + - bigg.metabolite: "fol" + - chebi: "CHEBI:62501" + - kegg.compound: "C00504" + - metanetx.chemical: "MNXM617" + - sbo: "SBO:0000247" - !!omap - id: "s_0720" - name: "folate" @@ -6442,11 +6442,11 @@ - formula: "C19H17N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "fol" - - chebi: "CHEBI:62501" - - kegg.compound: "C00504" - - metanetx.chemical: "MNXM617" - - sbo: "SBO:0000247" + - bigg.metabolite: "fol" + - chebi: "CHEBI:62501" + - kegg.compound: "C00504" + - metanetx.chemical: "MNXM617" + - sbo: "SBO:0000247" - !!omap - id: "s_0721" - name: "formaldehyde" @@ -6454,11 +6454,11 @@ - formula: "CH2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "fald" - - chebi: "CHEBI:16842" - - kegg.compound: "C00067" - - metanetx.chemical: "MNXM56" - - sbo: "SBO:0000247" + - bigg.metabolite: "fald" + - chebi: "CHEBI:16842" + - kegg.compound: "C00067" + - metanetx.chemical: "MNXM56" + - sbo: "SBO:0000247" - !!omap - id: "s_0722" - name: "formate" @@ -6466,11 +6466,11 @@ - formula: "CHO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "for" - - chebi: "CHEBI:15740" - - kegg.compound: "C00058" - - metanetx.chemical: "MNXM39" - - sbo: "SBO:0000247" + - bigg.metabolite: "for" + - chebi: "CHEBI:15740" + - kegg.compound: "C00058" + - metanetx.chemical: "MNXM39" + - sbo: "SBO:0000247" - !!omap - id: "s_0723" - name: "formate" @@ -6478,11 +6478,11 @@ - formula: "CHO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "for" - - chebi: "CHEBI:15740" - - kegg.compound: "C00058" - - metanetx.chemical: "MNXM39" - - sbo: "SBO:0000247" + - bigg.metabolite: "for" + - chebi: "CHEBI:15740" + - kegg.compound: "C00058" + - metanetx.chemical: "MNXM39" + - sbo: "SBO:0000247" - !!omap - id: "s_0724" - name: "formate" @@ -6490,11 +6490,11 @@ - formula: "CHO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "for" - - chebi: "CHEBI:15740" - - kegg.compound: "C00058" - - metanetx.chemical: "MNXM39" - - sbo: "SBO:0000247" + - bigg.metabolite: "for" + - chebi: "CHEBI:15740" + - kegg.compound: "C00058" + - metanetx.chemical: "MNXM39" + - sbo: "SBO:0000247" - !!omap - id: "s_0725" - name: "fumarate" @@ -6502,11 +6502,11 @@ - formula: "C4H2O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "fum" - - chebi: "CHEBI:29806" - - kegg.compound: "C00122" - - metanetx.chemical: "MNXM93" - - sbo: "SBO:0000247" + - bigg.metabolite: "fum" + - chebi: "CHEBI:29806" + - kegg.compound: "C00122" + - metanetx.chemical: "MNXM93" + - sbo: "SBO:0000247" - !!omap - id: "s_0726" - name: "fumarate" @@ -6514,11 +6514,11 @@ - formula: "C4H2O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "fum" - - chebi: "CHEBI:29806" - - kegg.compound: "C00122" - - metanetx.chemical: "MNXM93" - - sbo: "SBO:0000247" + - bigg.metabolite: "fum" + - chebi: "CHEBI:29806" + - kegg.compound: "C00122" + - metanetx.chemical: "MNXM93" + - sbo: "SBO:0000247" - !!omap - id: "s_0727" - name: "fumarate" @@ -6526,11 +6526,11 @@ - formula: "C4H2O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "fum" - - chebi: "CHEBI:29806" - - kegg.compound: "C00122" - - metanetx.chemical: "MNXM93" - - sbo: "SBO:0000247" + - bigg.metabolite: "fum" + - chebi: "CHEBI:29806" + - kegg.compound: "C00122" + - metanetx.chemical: "MNXM93" + - sbo: "SBO:0000247" - !!omap - id: "s_0734" - name: "gamma-aminobutyrate" @@ -6538,11 +6538,11 @@ - formula: "C4H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4abut" - - chebi: "CHEBI:16865" - - kegg.compound: "C00334" - - metanetx.chemical: "MNXM192" - - sbo: "SBO:0000247" + - bigg.metabolite: "4abut" + - chebi: "CHEBI:16865" + - kegg.compound: "C00334" + - metanetx.chemical: "MNXM192" + - sbo: "SBO:0000247" - !!omap - id: "s_0736" - name: "gamma-aminobutyrate" @@ -6550,11 +6550,11 @@ - formula: "C4H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4abut" - - chebi: "CHEBI:16865" - - kegg.compound: "C00334" - - metanetx.chemical: "MNXM192" - - sbo: "SBO:0000247" + - bigg.metabolite: "4abut" + - chebi: "CHEBI:16865" + - kegg.compound: "C00334" + - metanetx.chemical: "MNXM192" + - sbo: "SBO:0000247" - !!omap - id: "s_0738" - name: "gamma-aminobutyrate" @@ -6562,11 +6562,11 @@ - formula: "C4H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4abut" - - chebi: "CHEBI:16865" - - kegg.compound: "C00334" - - metanetx.chemical: "MNXM192" - - sbo: "SBO:0000247" + - bigg.metabolite: "4abut" + - chebi: "CHEBI:16865" + - kegg.compound: "C00334" + - metanetx.chemical: "MNXM192" + - sbo: "SBO:0000247" - !!omap - id: "s_0739" - name: "GDP" @@ -6574,11 +6574,11 @@ - formula: "C10H12N5O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "gdp" - - chebi: "CHEBI:58189" - - kegg.compound: "C00035" - - metanetx.chemical: "MNXM30" - - sbo: "SBO:0000247" + - bigg.metabolite: "gdp" + - chebi: "CHEBI:58189" + - kegg.compound: "C00035" + - metanetx.chemical: "MNXM30" + - sbo: "SBO:0000247" - !!omap - id: "s_0740" - name: "GDP" @@ -6586,11 +6586,11 @@ - formula: "C10H12N5O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "gdp" - - chebi: "CHEBI:58189" - - kegg.compound: "C00035" - - metanetx.chemical: "MNXM30" - - sbo: "SBO:0000247" + - bigg.metabolite: "gdp" + - chebi: "CHEBI:58189" + - kegg.compound: "C00035" + - metanetx.chemical: "MNXM30" + - sbo: "SBO:0000247" - !!omap - id: "s_0741" - name: "GDP" @@ -6598,11 +6598,11 @@ - formula: "C10H12N5O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "gdp" - - chebi: "CHEBI:58189" - - kegg.compound: "C00035" - - metanetx.chemical: "MNXM30" - - sbo: "SBO:0000247" + - bigg.metabolite: "gdp" + - chebi: "CHEBI:58189" + - kegg.compound: "C00035" + - metanetx.chemical: "MNXM30" + - sbo: "SBO:0000247" - !!omap - id: "s_0742" - name: "GDP" @@ -6610,11 +6610,11 @@ - formula: "C10H12N5O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "gdp" - - chebi: "CHEBI:58189" - - kegg.compound: "C00035" - - metanetx.chemical: "MNXM30" - - sbo: "SBO:0000247" + - bigg.metabolite: "gdp" + - chebi: "CHEBI:58189" + - kegg.compound: "C00035" + - metanetx.chemical: "MNXM30" + - sbo: "SBO:0000247" - !!omap - id: "s_0743" - name: "GDP-alpha-D-mannose" @@ -6622,11 +6622,11 @@ - formula: "C16H23N5O16P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "gdpmann" - - chebi: "CHEBI:57527" - - kegg.compound: "C00096" - - metanetx.chemical: "MNXM82" - - sbo: "SBO:0000247" + - bigg.metabolite: "gdpmann" + - chebi: "CHEBI:57527" + - kegg.compound: "C00096" + - metanetx.chemical: "MNXM82" + - sbo: "SBO:0000247" - !!omap - id: "s_0744" - name: "GDP-alpha-D-mannose" @@ -6634,11 +6634,11 @@ - formula: "C16H23N5O16P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "gdpmann" - - chebi: "CHEBI:57527" - - kegg.compound: "C00096" - - metanetx.chemical: "MNXM82" - - sbo: "SBO:0000247" + - bigg.metabolite: "gdpmann" + - chebi: "CHEBI:57527" + - kegg.compound: "C00096" + - metanetx.chemical: "MNXM82" + - sbo: "SBO:0000247" - !!omap - id: "s_0745" - name: "geranyl diphosphate" @@ -6646,11 +6646,11 @@ - formula: "C10H17O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "grdp" - - chebi: "CHEBI:58057" - - kegg.compound: "C00341" - - metanetx.chemical: "MNXM100" - - sbo: "SBO:0000247" + - bigg.metabolite: "grdp" + - chebi: "CHEBI:58057" + - kegg.compound: "C00341" + - metanetx.chemical: "MNXM100" + - sbo: "SBO:0000247" - !!omap - id: "s_0746" - name: "geranylgeranyl diphosphate" @@ -6658,11 +6658,11 @@ - formula: "C20H33O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ggdp" - - chebi: "CHEBI:58756" - - kegg.compound: "C00353" - - metanetx.chemical: "MNXM139" - - sbo: "SBO:0000247" + - bigg.metabolite: "ggdp" + - chebi: "CHEBI:58756" + - kegg.compound: "C00353" + - metanetx.chemical: "MNXM139" + - sbo: "SBO:0000247" - !!omap - id: "s_0747" - name: "Gln-tRNA(Gln)" @@ -6670,11 +6670,11 @@ - formula: "C5H10N2O2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: "glntrna" - - chebi: "CHEBI:29166" - - kegg.compound: "C02282" - - metanetx.chemical: "MNXM89810" - - sbo: "SBO:0000247" + - bigg.metabolite: "glntrna" + - chebi: "CHEBI:29166" + - kegg.compound: "C02282" + - metanetx.chemical: "MNXM89810" + - sbo: "SBO:0000247" - !!omap - id: "s_0748" - name: "Glu-tRNA(Glu)" @@ -6682,11 +6682,11 @@ - formula: "C5H8NO3R" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glutrna" - - chebi: "CHEBI:29157" - - kegg.compound: "C02987" - - metanetx.chemical: "MNXM89752" - - sbo: "SBO:0000247" + - bigg.metabolite: "glutrna" + - chebi: "CHEBI:29157" + - kegg.compound: "C02987" + - metanetx.chemical: "MNXM89752" + - sbo: "SBO:0000247" - !!omap - id: "s_0749" - name: "Glu-tRNA(Glu)" @@ -6694,11 +6694,11 @@ - formula: "C5H8NO3R" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glutrna" - - chebi: "CHEBI:29157" - - kegg.compound: "C02987" - - metanetx.chemical: "MNXM89752" - - sbo: "SBO:0000247" + - bigg.metabolite: "glutrna" + - chebi: "CHEBI:29157" + - kegg.compound: "C02987" + - metanetx.chemical: "MNXM89752" + - sbo: "SBO:0000247" - !!omap - id: "s_0750" - name: "glutathione" @@ -6706,11 +6706,11 @@ - formula: "C10H16N3O6S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gthrd" - - chebi: "CHEBI:57925" - - kegg.compound: "C00051" - - metanetx.chemical: "MNXM57" - - sbo: "SBO:0000247" + - bigg.metabolite: "gthrd" + - chebi: "CHEBI:57925" + - kegg.compound: "C00051" + - metanetx.chemical: "MNXM57" + - sbo: "SBO:0000247" - !!omap - id: "s_0751" - name: "glutathione" @@ -6718,11 +6718,11 @@ - formula: "C10H16N3O6S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gthrd" - - chebi: "CHEBI:57925" - - kegg.compound: "C00051" - - metanetx.chemical: "MNXM57" - - sbo: "SBO:0000247" + - bigg.metabolite: "gthrd" + - chebi: "CHEBI:57925" + - kegg.compound: "C00051" + - metanetx.chemical: "MNXM57" + - sbo: "SBO:0000247" - !!omap - id: "s_0752" - name: "glutathione" @@ -6730,11 +6730,11 @@ - formula: "C10H16N3O6S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gthrd" - - chebi: "CHEBI:57925" - - kegg.compound: "C00051" - - metanetx.chemical: "MNXM57" - - sbo: "SBO:0000247" + - bigg.metabolite: "gthrd" + - chebi: "CHEBI:57925" + - kegg.compound: "C00051" + - metanetx.chemical: "MNXM57" + - sbo: "SBO:0000247" - !!omap - id: "s_0753" - name: "glutathione" @@ -6742,11 +6742,11 @@ - formula: "C10H16N3O6S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gthrd" - - chebi: "CHEBI:57925" - - kegg.compound: "C00051" - - metanetx.chemical: "MNXM57" - - sbo: "SBO:0000247" + - bigg.metabolite: "gthrd" + - chebi: "CHEBI:57925" + - kegg.compound: "C00051" + - metanetx.chemical: "MNXM57" + - sbo: "SBO:0000247" - !!omap - id: "s_0754" - name: "glutathione disulfide" @@ -6754,11 +6754,11 @@ - formula: "C20H30N6O12S2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "gthox" - - chebi: "CHEBI:58297" - - kegg.compound: "C00127" - - metanetx.chemical: "MNXM151" - - sbo: "SBO:0000247" + - bigg.metabolite: "gthox" + - chebi: "CHEBI:58297" + - kegg.compound: "C00127" + - metanetx.chemical: "MNXM151" + - sbo: "SBO:0000247" - !!omap - id: "s_0755" - name: "glutathione disulfide" @@ -6766,11 +6766,11 @@ - formula: "C20H30N6O12S2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "gthox" - - chebi: "CHEBI:58297" - - kegg.compound: "C00127" - - metanetx.chemical: "MNXM151" - - sbo: "SBO:0000247" + - bigg.metabolite: "gthox" + - chebi: "CHEBI:58297" + - kegg.compound: "C00127" + - metanetx.chemical: "MNXM151" + - sbo: "SBO:0000247" - !!omap - id: "s_0756" - name: "glutathione disulfide" @@ -6778,11 +6778,11 @@ - formula: "C20H30N6O12S2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "gthox" - - chebi: "CHEBI:58297" - - kegg.compound: "C00127" - - metanetx.chemical: "MNXM151" - - sbo: "SBO:0000247" + - bigg.metabolite: "gthox" + - chebi: "CHEBI:58297" + - kegg.compound: "C00127" + - metanetx.chemical: "MNXM151" + - sbo: "SBO:0000247" - !!omap - id: "s_0757" - name: "Gly-tRNA(Gly)" @@ -6790,11 +6790,11 @@ - formula: "C2H5NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "glytrna" - - chebi: "CHEBI:29156" - - kegg.compound: "C02412" - - metanetx.chemical: "MNXM89763" - - sbo: "SBO:0000247" + - bigg.metabolite: "glytrna" + - chebi: "CHEBI:29156" + - kegg.compound: "C02412" + - metanetx.chemical: "MNXM89763" + - sbo: "SBO:0000247" - !!omap - id: "s_0764" - name: "glyceraldehyde 3-phosphate" @@ -6802,11 +6802,11 @@ - formula: "C3H5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "g3p" - - chebi: "CHEBI:58027" - - kegg.compound: "C00661" - - metanetx.chemical: "MNXM74" - - sbo: "SBO:0000247" + - bigg.metabolite: "g3p" + - chebi: "CHEBI:58027" + - kegg.compound: "C00661" + - metanetx.chemical: "MNXM74" + - sbo: "SBO:0000247" - !!omap - id: "s_0765" - name: "glycerol" @@ -6814,11 +6814,11 @@ - formula: "C3H8O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glyc" - - chebi: "CHEBI:17754" - - kegg.compound: "C00116" - - metanetx.chemical: "MNXM89612" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc" + - chebi: "CHEBI:17754" + - kegg.compound: "C00116" + - metanetx.chemical: "MNXM89612" + - sbo: "SBO:0000247" - !!omap - id: "s_0766" - name: "glycerol" @@ -6826,11 +6826,11 @@ - formula: "C3H8O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glyc" - - chebi: "CHEBI:17754" - - kegg.compound: "C00116" - - metanetx.chemical: "MNXM89612" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc" + - chebi: "CHEBI:17754" + - kegg.compound: "C00116" + - metanetx.chemical: "MNXM89612" + - sbo: "SBO:0000247" - !!omap - id: "s_0767" - name: "glycerol 3-phosphate" @@ -6838,11 +6838,11 @@ - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "glyc3p" - - chebi: "CHEBI:57597" - - kegg.compound: "C00093" - - metanetx.chemical: "MNXM66" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc3p" + - chebi: "CHEBI:57597" + - kegg.compound: "C00093" + - metanetx.chemical: "MNXM66" + - sbo: "SBO:0000247" - !!omap - id: "s_0769" - name: "glycerol 3-phosphate" @@ -6850,11 +6850,11 @@ - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "glyc3p" - - chebi: "CHEBI:57597" - - kegg.compound: "C00093" - - metanetx.chemical: "MNXM66" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc3p" + - chebi: "CHEBI:57597" + - kegg.compound: "C00093" + - metanetx.chemical: "MNXM66" + - sbo: "SBO:0000247" - !!omap - id: "s_0770" - name: "glycerol 3-phosphate" @@ -6862,11 +6862,11 @@ - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "glyc3p" - - chebi: "CHEBI:57597" - - kegg.compound: "C00093" - - metanetx.chemical: "MNXM66" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc3p" + - chebi: "CHEBI:57597" + - kegg.compound: "C00093" + - metanetx.chemical: "MNXM66" + - sbo: "SBO:0000247" - !!omap - id: "s_0771" - name: "glycerone" @@ -6874,11 +6874,11 @@ - formula: "C3H6O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dha" - - chebi: "CHEBI:16016" - - kegg.compound: "C00184" - - metanetx.chemical: "MNXM460" - - sbo: "SBO:0000247" + - bigg.metabolite: "dha" + - chebi: "CHEBI:16016" + - kegg.compound: "C00184" + - metanetx.chemical: "MNXM460" + - sbo: "SBO:0000247" - !!omap - id: "s_0773" - name: "glycogen" @@ -6886,11 +6886,11 @@ - formula: "C6H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glycogen" - - chebi: "CHEBI:28087" - - kegg.compound: "C00182" - - metanetx.chemical: "MNXM55375" - - sbo: "SBO:0000247" + - bigg.metabolite: "glycogen" + - chebi: "CHEBI:28087" + - kegg.compound: "C00182" + - metanetx.chemical: "MNXM55375" + - sbo: "SBO:0000247" - !!omap - id: "s_0774" - name: "glycogen" @@ -6898,11 +6898,11 @@ - formula: "C6H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glycogen" - - chebi: "CHEBI:28087" - - kegg.compound: "C00182" - - metanetx.chemical: "MNXM55375" - - sbo: "SBO:0000247" + - bigg.metabolite: "glycogen" + - chebi: "CHEBI:28087" + - kegg.compound: "C00182" + - metanetx.chemical: "MNXM55375" + - sbo: "SBO:0000247" - !!omap - id: "s_0775" - name: "glycolaldehyde" @@ -6910,11 +6910,11 @@ - formula: "C2H4O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gcald" - - chebi: "CHEBI:17071" - - kegg.compound: "C00266" - - metanetx.chemical: "MNXM349" - - sbo: "SBO:0000247" + - bigg.metabolite: "gcald" + - chebi: "CHEBI:17071" + - kegg.compound: "C00266" + - metanetx.chemical: "MNXM349" + - sbo: "SBO:0000247" - !!omap - id: "s_0776" - name: "glycolaldehyde" @@ -6922,11 +6922,11 @@ - formula: "C2H4O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gcald" - - chebi: "CHEBI:17071" - - kegg.compound: "C00266" - - metanetx.chemical: "MNXM349" - - sbo: "SBO:0000247" + - bigg.metabolite: "gcald" + - chebi: "CHEBI:17071" + - kegg.compound: "C00266" + - metanetx.chemical: "MNXM349" + - sbo: "SBO:0000247" - !!omap - id: "s_0777" - name: "glycolaldehyde" @@ -6934,11 +6934,11 @@ - formula: "C2H4O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gcald" - - chebi: "CHEBI:17071" - - kegg.compound: "C00266" - - metanetx.chemical: "MNXM349" - - sbo: "SBO:0000247" + - bigg.metabolite: "gcald" + - chebi: "CHEBI:17071" + - kegg.compound: "C00266" + - metanetx.chemical: "MNXM349" + - sbo: "SBO:0000247" - !!omap - id: "s_0779" - name: "glyoxylate" @@ -6946,11 +6946,11 @@ - formula: "C2HO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glx" - - chebi: "CHEBI:36655" - - kegg.compound: "C00048" - - metanetx.chemical: "MNXM69" - - sbo: "SBO:0000247" + - bigg.metabolite: "glx" + - chebi: "CHEBI:36655" + - kegg.compound: "C00048" + - metanetx.chemical: "MNXM69" + - sbo: "SBO:0000247" - !!omap - id: "s_0780" - name: "glyoxylate" @@ -6958,11 +6958,11 @@ - formula: "C2HO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glx" - - chebi: "CHEBI:36655" - - kegg.compound: "C00048" - - metanetx.chemical: "MNXM69" - - sbo: "SBO:0000247" + - bigg.metabolite: "glx" + - chebi: "CHEBI:36655" + - kegg.compound: "C00048" + - metanetx.chemical: "MNXM69" + - sbo: "SBO:0000247" - !!omap - id: "s_0781" - name: "glyoxylate" @@ -6970,11 +6970,11 @@ - formula: "C2HO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glx" - - chebi: "CHEBI:36655" - - kegg.compound: "C00048" - - metanetx.chemical: "MNXM69" - - sbo: "SBO:0000247" + - bigg.metabolite: "glx" + - chebi: "CHEBI:36655" + - kegg.compound: "C00048" + - metanetx.chemical: "MNXM69" + - sbo: "SBO:0000247" - !!omap - id: "s_0782" - name: "GMP" @@ -6982,11 +6982,11 @@ - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "gmp" - - chebi: "CHEBI:58115" - - kegg.compound: "C00144" - - metanetx.chemical: "MNXM113" - - sbo: "SBO:0000247" + - bigg.metabolite: "gmp" + - chebi: "CHEBI:58115" + - kegg.compound: "C00144" + - metanetx.chemical: "MNXM113" + - sbo: "SBO:0000247" - !!omap - id: "s_0783" - name: "GMP" @@ -6994,11 +6994,11 @@ - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "gmp" - - chebi: "CHEBI:58115" - - kegg.compound: "C00144" - - metanetx.chemical: "MNXM113" - - sbo: "SBO:0000247" + - bigg.metabolite: "gmp" + - chebi: "CHEBI:58115" + - kegg.compound: "C00144" + - metanetx.chemical: "MNXM113" + - sbo: "SBO:0000247" - !!omap - id: "s_0785" - name: "GTP" @@ -7006,11 +7006,11 @@ - formula: "C10H12N5O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "gtp" - - chebi: "CHEBI:57600" - - kegg.compound: "C00044" - - metanetx.chemical: "MNXM51" - - sbo: "SBO:0000247" + - bigg.metabolite: "gtp" + - chebi: "CHEBI:57600" + - kegg.compound: "C00044" + - metanetx.chemical: "MNXM51" + - sbo: "SBO:0000247" - !!omap - id: "s_0786" - name: "GTP" @@ -7018,11 +7018,11 @@ - formula: "C10H12N5O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "gtp" - - chebi: "CHEBI:57600" - - kegg.compound: "C00044" - - metanetx.chemical: "MNXM51" - - sbo: "SBO:0000247" + - bigg.metabolite: "gtp" + - chebi: "CHEBI:57600" + - kegg.compound: "C00044" + - metanetx.chemical: "MNXM51" + - sbo: "SBO:0000247" - !!omap - id: "s_0787" - name: "guanine" @@ -7030,11 +7030,11 @@ - formula: "C5H5N5O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gua" - - chebi: "CHEBI:16235" - - kegg.compound: "C00242" - - metanetx.chemical: "MNXM259" - - sbo: "SBO:0000247" + - bigg.metabolite: "gua" + - chebi: "CHEBI:16235" + - kegg.compound: "C00242" + - metanetx.chemical: "MNXM259" + - sbo: "SBO:0000247" - !!omap - id: "s_0788" - name: "guanine" @@ -7042,11 +7042,11 @@ - formula: "C5H5N5O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gua" - - chebi: "CHEBI:16235" - - kegg.compound: "C00242" - - metanetx.chemical: "MNXM259" - - sbo: "SBO:0000247" + - bigg.metabolite: "gua" + - chebi: "CHEBI:16235" + - kegg.compound: "C00242" + - metanetx.chemical: "MNXM259" + - sbo: "SBO:0000247" - !!omap - id: "s_0789" - name: "guanine" @@ -7054,11 +7054,11 @@ - formula: "C5H5N5O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gua" - - chebi: "CHEBI:16235" - - kegg.compound: "C00242" - - metanetx.chemical: "MNXM259" - - sbo: "SBO:0000247" + - bigg.metabolite: "gua" + - chebi: "CHEBI:16235" + - kegg.compound: "C00242" + - metanetx.chemical: "MNXM259" + - sbo: "SBO:0000247" - !!omap - id: "s_0790" - name: "guanosine" @@ -7066,11 +7066,11 @@ - formula: "C10H13N5O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gsn" - - chebi: "CHEBI:16750" - - kegg.compound: "C00387" - - metanetx.chemical: "MNXM401" - - sbo: "SBO:0000247" + - bigg.metabolite: "gsn" + - chebi: "CHEBI:16750" + - kegg.compound: "C00387" + - metanetx.chemical: "MNXM401" + - sbo: "SBO:0000247" - !!omap - id: "s_0791" - name: "guanosine" @@ -7078,11 +7078,11 @@ - formula: "C10H13N5O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gsn" - - chebi: "CHEBI:16750" - - kegg.compound: "C00387" - - metanetx.chemical: "MNXM401" - - sbo: "SBO:0000247" + - bigg.metabolite: "gsn" + - chebi: "CHEBI:16750" + - kegg.compound: "C00387" + - metanetx.chemical: "MNXM401" + - sbo: "SBO:0000247" - !!omap - id: "s_0792" - name: "guanosine" @@ -7090,11 +7090,11 @@ - formula: "C10H13N5O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gsn" - - chebi: "CHEBI:16750" - - kegg.compound: "C00387" - - metanetx.chemical: "MNXM401" - - sbo: "SBO:0000247" + - bigg.metabolite: "gsn" + - chebi: "CHEBI:16750" + - kegg.compound: "C00387" + - metanetx.chemical: "MNXM401" + - sbo: "SBO:0000247" - !!omap - id: "s_0793" - name: "H+" @@ -7102,11 +7102,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_0794" - name: "H+" @@ -7114,11 +7114,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_0795" - name: "H+" @@ -7126,11 +7126,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_0796" - name: "H+" @@ -7138,11 +7138,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_0797" - name: "H+" @@ -7150,11 +7150,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_0798" - name: "H+" @@ -7162,11 +7162,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_0799" - name: "H+" @@ -7174,11 +7174,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_0800" - name: "H+" @@ -7186,11 +7186,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_0801" - name: "H+" @@ -7198,11 +7198,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_0802" - name: "H+" @@ -7210,11 +7210,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_0803" - name: "H2O" @@ -7222,11 +7222,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_0804" - name: "H2O" @@ -7234,11 +7234,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_0805" - name: "H2O" @@ -7246,11 +7246,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_0806" - name: "H2O" @@ -7258,11 +7258,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_0807" - name: "H2O" @@ -7270,11 +7270,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_0808" - name: "H2O" @@ -7282,11 +7282,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_0809" - name: "H2O" @@ -7294,11 +7294,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_0810" - name: "H2O" @@ -7306,11 +7306,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_0811" - name: "heme a" @@ -7318,11 +7318,11 @@ - formula: "C49H55FeN4O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: "hemeA" - - chebi: "CHEBI:24479" - - kegg.compound: "C15670" - - metanetx.chemical: "MNXM53309" - - sbo: "SBO:0000247" + - bigg.metabolite: "hemeA" + - chebi: "CHEBI:24479" + - kegg.compound: "C15670" + - metanetx.chemical: "MNXM53309" + - sbo: "SBO:0000247" - !!omap - id: "s_0812" - name: "heme o" @@ -7330,11 +7330,11 @@ - formula: "C49H56FeN4O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "hemeO" - - chebi: "CHEBI:24480" - - kegg.compound: "C15672" - - metanetx.chemical: "MNXM1278" - - sbo: "SBO:0000247" + - bigg.metabolite: "hemeO" + - chebi: "CHEBI:24480" + - kegg.compound: "C15672" + - metanetx.chemical: "MNXM1278" + - sbo: "SBO:0000247" - !!omap - id: "s_0813" - name: "henicosaprenyl diphosphate" @@ -7342,9 +7342,9 @@ - formula: "C105H169O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53032" - - metanetx.chemical: "MNXM56060" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53032" + - metanetx.chemical: "MNXM56060" + - sbo: "SBO:0000247" - !!omap - id: "s_0814" - name: "heptadecaprenyl diphosphate" @@ -7352,9 +7352,9 @@ - formula: "C85H137O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53036" - - metanetx.chemical: "MNXM56121" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53036" + - metanetx.chemical: "MNXM56121" + - sbo: "SBO:0000247" - !!omap - id: "s_0815" - name: "heptaprenyl diphosphate" @@ -7362,11 +7362,11 @@ - formula: "C35H57O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "hepdp" - - chebi: "CHEBI:53046" - - kegg.compound: "C04216" - - metanetx.chemical: "MNXM1722" - - sbo: "SBO:0000247" + - bigg.metabolite: "hepdp" + - chebi: "CHEBI:53046" + - kegg.compound: "C04216" + - metanetx.chemical: "MNXM1722" + - sbo: "SBO:0000247" - !!omap - id: "s_0816" - name: "hexacosanoyl-CoA" @@ -7374,10 +7374,10 @@ - formula: "C47H82N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hexccoa" - - chebi: "CHEBI:52966" - - metanetx.chemical: "MNXM1190" - - sbo: "SBO:0000247" + - bigg.metabolite: "hexccoa" + - chebi: "CHEBI:52966" + - metanetx.chemical: "MNXM1190" + - sbo: "SBO:0000247" - !!omap - id: "s_0817" - name: "hexacosanoyl-CoA" @@ -7385,10 +7385,10 @@ - formula: "C47H82N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hexccoa" - - chebi: "CHEBI:52966" - - metanetx.chemical: "MNXM1190" - - sbo: "SBO:0000247" + - bigg.metabolite: "hexccoa" + - chebi: "CHEBI:52966" + - metanetx.chemical: "MNXM1190" + - sbo: "SBO:0000247" - !!omap - id: "s_0819" - name: "hexacosanoyl-CoA" @@ -7396,10 +7396,10 @@ - formula: "C47H82N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hexccoa" - - chebi: "CHEBI:52966" - - metanetx.chemical: "MNXM1190" - - sbo: "SBO:0000247" + - bigg.metabolite: "hexccoa" + - chebi: "CHEBI:52966" + - metanetx.chemical: "MNXM1190" + - sbo: "SBO:0000247" - !!omap - id: "s_0823" - name: "hexadec-2-enoyl-CoA" @@ -7407,10 +7407,10 @@ - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hdd2coa" - - kegg.compound: "C05272" - - metanetx.chemical: "MNXM581" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdd2coa" + - kegg.compound: "C05272" + - metanetx.chemical: "MNXM581" + - sbo: "SBO:0000247" - !!omap - id: "s_0825" - name: "hexadecanal" @@ -7418,11 +7418,11 @@ - formula: "C16H32O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "hxdcal" - - chebi: "CHEBI:17600" - - kegg.compound: "C00517" - - metanetx.chemical: "MNXM528" - - sbo: "SBO:0000247" + - bigg.metabolite: "hxdcal" + - chebi: "CHEBI:17600" + - kegg.compound: "C00517" + - metanetx.chemical: "MNXM528" + - sbo: "SBO:0000247" - !!omap - id: "s_0826" - name: "hexadecanal" @@ -7430,11 +7430,11 @@ - formula: "C16H32O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "hxdcal" - - chebi: "CHEBI:17600" - - kegg.compound: "C00517" - - metanetx.chemical: "MNXM528" - - sbo: "SBO:0000247" + - bigg.metabolite: "hxdcal" + - chebi: "CHEBI:17600" + - kegg.compound: "C00517" + - metanetx.chemical: "MNXM528" + - sbo: "SBO:0000247" - !!omap - id: "s_0829" - name: "hexadecaprenyl diphosphate" @@ -7442,9 +7442,9 @@ - formula: "C80H129O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53037" - - metanetx.chemical: "MNXM56347" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53037" + - metanetx.chemical: "MNXM56347" + - sbo: "SBO:0000247" - !!omap - id: "s_0830" - name: "hexaprenyl diphosphate" @@ -7452,11 +7452,11 @@ - formula: "C30H49O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "hexdp" - - chebi: "CHEBI:53047" - - kegg.compound: "C01230" - - metanetx.chemical: "MNXM1067" - - sbo: "SBO:0000247" + - bigg.metabolite: "hexdp" + - chebi: "CHEBI:53047" + - kegg.compound: "C01230" + - metanetx.chemical: "MNXM1067" + - sbo: "SBO:0000247" - !!omap - id: "s_0831" - name: "hexaprenyl diphosphate" @@ -7464,11 +7464,11 @@ - formula: "C30H49O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "hexdp" - - chebi: "CHEBI:53047" - - kegg.compound: "C01230" - - metanetx.chemical: "MNXM1067" - - sbo: "SBO:0000247" + - bigg.metabolite: "hexdp" + - chebi: "CHEBI:53047" + - kegg.compound: "C01230" + - metanetx.chemical: "MNXM1067" + - sbo: "SBO:0000247" - !!omap - id: "s_0832" - name: "His-tRNA(His)" @@ -7476,11 +7476,11 @@ - formula: "C6H9N3OR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "histrna" - - chebi: "CHEBI:29155" - - kegg.compound: "C02988" - - metanetx.chemical: "MNXM89831" - - sbo: "SBO:0000247" + - bigg.metabolite: "histrna" + - chebi: "CHEBI:29155" + - kegg.compound: "C02988" + - metanetx.chemical: "MNXM89831" + - sbo: "SBO:0000247" - !!omap - id: "s_0833" - name: "His-tRNA(His)" @@ -7488,11 +7488,11 @@ - formula: "C6H9N3OR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "histrna" - - chebi: "CHEBI:29155" - - kegg.compound: "C02988" - - metanetx.chemical: "MNXM89831" - - sbo: "SBO:0000247" + - bigg.metabolite: "histrna" + - chebi: "CHEBI:29155" + - kegg.compound: "C02988" + - metanetx.chemical: "MNXM89831" + - sbo: "SBO:0000247" - !!omap - id: "s_0834" - name: "homocitrate" @@ -7500,10 +7500,10 @@ - formula: "C7H7O7" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:36457" - - kegg.compound: "C01251" - - metanetx.chemical: "MNXM722779" - - sbo: "SBO:0000247" + - chebi: "CHEBI:36457" + - kegg.compound: "C01251" + - metanetx.chemical: "MNXM722779" + - sbo: "SBO:0000247" - !!omap - id: "s_0835" - name: "homocitrate" @@ -7511,10 +7511,10 @@ - formula: "C7H7O7" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:36457" - - kegg.compound: "C01251" - - metanetx.chemical: "MNXM722779" - - sbo: "SBO:0000247" + - chebi: "CHEBI:36457" + - kegg.compound: "C01251" + - metanetx.chemical: "MNXM722779" + - sbo: "SBO:0000247" - !!omap - id: "s_0836" - name: "homoisocitrate" @@ -7522,11 +7522,11 @@ - formula: "C7H7O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: "hicit" - - chebi: "CHEBI:30904" - - kegg.compound: "C05662" - - metanetx.chemical: "MNXM984" - - sbo: "SBO:0000247" + - bigg.metabolite: "hicit" + - chebi: "CHEBI:30904" + - kegg.compound: "C05662" + - metanetx.chemical: "MNXM984" + - sbo: "SBO:0000247" - !!omap - id: "s_0837" - name: "hydrogen peroxide" @@ -7534,11 +7534,11 @@ - formula: "H2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o2" - - chebi: "CHEBI:16240" - - kegg.compound: "C00027" - - metanetx.chemical: "MNXM22" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o2" + - chebi: "CHEBI:16240" + - kegg.compound: "C00027" + - metanetx.chemical: "MNXM22" + - sbo: "SBO:0000247" - !!omap - id: "s_0838" - name: "hydrogen peroxide" @@ -7546,11 +7546,11 @@ - formula: "H2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o2" - - chebi: "CHEBI:16240" - - kegg.compound: "C00027" - - metanetx.chemical: "MNXM22" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o2" + - chebi: "CHEBI:16240" + - kegg.compound: "C00027" + - metanetx.chemical: "MNXM22" + - sbo: "SBO:0000247" - !!omap - id: "s_0839" - name: "hydrogen peroxide" @@ -7558,11 +7558,11 @@ - formula: "H2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o2" - - chebi: "CHEBI:16240" - - kegg.compound: "C00027" - - metanetx.chemical: "MNXM22" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o2" + - chebi: "CHEBI:16240" + - kegg.compound: "C00027" + - metanetx.chemical: "MNXM22" + - sbo: "SBO:0000247" - !!omap - id: "s_0840" - name: "hydrogen peroxide" @@ -7570,11 +7570,11 @@ - formula: "H2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o2" - - chebi: "CHEBI:16240" - - kegg.compound: "C00027" - - metanetx.chemical: "MNXM22" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o2" + - chebi: "CHEBI:16240" + - kegg.compound: "C00027" + - metanetx.chemical: "MNXM22" + - sbo: "SBO:0000247" - !!omap - id: "s_0841" - name: "hydrogen sulfide" @@ -7582,11 +7582,11 @@ - formula: "HS" - charge: -1 - annotation: !!omap - - bigg.metabolite: "h2s" - - chebi: "CHEBI:29919" - - kegg.compound: "C00283" - - metanetx.chemical: "MNXM89582" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2s" + - chebi: "CHEBI:29919" + - kegg.compound: "C00283" + - metanetx.chemical: "MNXM89582" + - sbo: "SBO:0000247" - !!omap - id: "s_0843" - name: "hypoxanthine" @@ -7594,11 +7594,11 @@ - formula: "C5H4N4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "hxan" - - chebi: "CHEBI:17368" - - kegg.compound: "C00262" - - metanetx.chemical: "MNXM213" - - sbo: "SBO:0000247" + - bigg.metabolite: "hxan" + - chebi: "CHEBI:17368" + - kegg.compound: "C00262" + - metanetx.chemical: "MNXM213" + - sbo: "SBO:0000247" - !!omap - id: "s_0844" - name: "hypoxanthine" @@ -7606,11 +7606,11 @@ - formula: "C5H4N4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "hxan" - - chebi: "CHEBI:17368" - - kegg.compound: "C00262" - - metanetx.chemical: "MNXM213" - - sbo: "SBO:0000247" + - bigg.metabolite: "hxan" + - chebi: "CHEBI:17368" + - kegg.compound: "C00262" + - metanetx.chemical: "MNXM213" + - sbo: "SBO:0000247" - !!omap - id: "s_0845" - name: "icosaprenyl diphosphate" @@ -7618,9 +7618,9 @@ - formula: "C100H161O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53033" - - metanetx.chemical: "MNXM57076" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53033" + - metanetx.chemical: "MNXM57076" + - sbo: "SBO:0000247" - !!omap - id: "s_0846" - name: "IDP" @@ -7628,11 +7628,11 @@ - formula: "C10H11N4O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "idp" - - chebi: "CHEBI:58280" - - kegg.compound: "C00104" - - metanetx.chemical: "MNXM495" - - sbo: "SBO:0000247" + - bigg.metabolite: "idp" + - chebi: "CHEBI:58280" + - kegg.compound: "C00104" + - metanetx.chemical: "MNXM495" + - sbo: "SBO:0000247" - !!omap - id: "s_0847" - name: "Ile-tRNA(Ile)" @@ -7640,11 +7640,11 @@ - formula: "C6H13NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "iletrna" - - chebi: "CHEBI:29160" - - kegg.compound: "C03127" - - metanetx.chemical: "MNXM89832" - - sbo: "SBO:0000247" + - bigg.metabolite: "iletrna" + - chebi: "CHEBI:29160" + - kegg.compound: "C03127" + - metanetx.chemical: "MNXM89832" + - sbo: "SBO:0000247" - !!omap - id: "s_0848" - name: "Ile-tRNA(Ile)" @@ -7652,11 +7652,11 @@ - formula: "C6H13NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "iletrna" - - chebi: "CHEBI:29160" - - kegg.compound: "C03127" - - metanetx.chemical: "MNXM89832" - - sbo: "SBO:0000247" + - bigg.metabolite: "iletrna" + - chebi: "CHEBI:29160" + - kegg.compound: "C03127" + - metanetx.chemical: "MNXM89832" + - sbo: "SBO:0000247" - !!omap - id: "s_0849" - name: "IMP" @@ -7664,11 +7664,11 @@ - formula: "C10H11N4O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "imp" - - chebi: "CHEBI:58053" - - kegg.compound: "C00130" - - metanetx.chemical: "MNXM125" - - sbo: "SBO:0000247" + - bigg.metabolite: "imp" + - chebi: "CHEBI:58053" + - kegg.compound: "C00130" + - metanetx.chemical: "MNXM125" + - sbo: "SBO:0000247" - !!omap - id: "s_0850" - name: "indol-3-ylacetaldehyde" @@ -7676,11 +7676,11 @@ - formula: "C10H9NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: "id3acald" - - chebi: "CHEBI:18086" - - kegg.compound: "C00637" - - metanetx.chemical: "MNXM518" - - sbo: "SBO:0000247" + - bigg.metabolite: "id3acald" + - chebi: "CHEBI:18086" + - kegg.compound: "C00637" + - metanetx.chemical: "MNXM518" + - sbo: "SBO:0000247" - !!omap - id: "s_0851" - name: "indol-3-ylacetaldehyde" @@ -7688,11 +7688,11 @@ - formula: "C10H9NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: "id3acald" - - chebi: "CHEBI:18086" - - kegg.compound: "C00637" - - metanetx.chemical: "MNXM518" - - sbo: "SBO:0000247" + - bigg.metabolite: "id3acald" + - chebi: "CHEBI:18086" + - kegg.compound: "C00637" + - metanetx.chemical: "MNXM518" + - sbo: "SBO:0000247" - !!omap - id: "s_0852" - name: "indol-3-ylacetaldehyde" @@ -7700,11 +7700,11 @@ - formula: "C10H9NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: "id3acald" - - chebi: "CHEBI:18086" - - kegg.compound: "C00637" - - metanetx.chemical: "MNXM518" - - sbo: "SBO:0000247" + - bigg.metabolite: "id3acald" + - chebi: "CHEBI:18086" + - kegg.compound: "C00637" + - metanetx.chemical: "MNXM518" + - sbo: "SBO:0000247" - !!omap - id: "s_0853" - name: "indole-3-acetate" @@ -7712,11 +7712,11 @@ - formula: "C10H8NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ind3ac" - - chebi: "CHEBI:30854" - - kegg.compound: "C00954" - - metanetx.chemical: "MNXM383" - - sbo: "SBO:0000247" + - bigg.metabolite: "ind3ac" + - chebi: "CHEBI:30854" + - kegg.compound: "C00954" + - metanetx.chemical: "MNXM383" + - sbo: "SBO:0000247" - !!omap - id: "s_0854" - name: "indole-3-acetate" @@ -7724,11 +7724,11 @@ - formula: "C10H8NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ind3ac" - - chebi: "CHEBI:30854" - - kegg.compound: "C00954" - - metanetx.chemical: "MNXM383" - - sbo: "SBO:0000247" + - bigg.metabolite: "ind3ac" + - chebi: "CHEBI:30854" + - kegg.compound: "C00954" + - metanetx.chemical: "MNXM383" + - sbo: "SBO:0000247" - !!omap - id: "s_0855" - name: "indole-3-pyruvate" @@ -7736,11 +7736,11 @@ - formula: "C11H8NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "indpyr" - - chebi: "CHEBI:17640" - - kegg.compound: "C00331" - - metanetx.chemical: "MNXM315" - - sbo: "SBO:0000247" + - bigg.metabolite: "indpyr" + - chebi: "CHEBI:17640" + - kegg.compound: "C00331" + - metanetx.chemical: "MNXM315" + - sbo: "SBO:0000247" - !!omap - id: "s_0856" - name: "inosine" @@ -7748,11 +7748,11 @@ - formula: "C10H12N4O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ins" - - chebi: "CHEBI:17596" - - kegg.compound: "C00294" - - metanetx.chemical: "MNXM334" - - sbo: "SBO:0000247" + - bigg.metabolite: "ins" + - chebi: "CHEBI:17596" + - kegg.compound: "C00294" + - metanetx.chemical: "MNXM334" + - sbo: "SBO:0000247" - !!omap - id: "s_0857" - name: "inosine" @@ -7760,11 +7760,11 @@ - formula: "C10H12N4O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ins" - - chebi: "CHEBI:17596" - - kegg.compound: "C00294" - - metanetx.chemical: "MNXM334" - - sbo: "SBO:0000247" + - bigg.metabolite: "ins" + - chebi: "CHEBI:17596" + - kegg.compound: "C00294" + - metanetx.chemical: "MNXM334" + - sbo: "SBO:0000247" - !!omap - id: "s_0859" - name: "inositol phosphomannosylinositol phosphoceramide backbone" @@ -7772,9 +7772,9 @@ - formula: "C18H33NO23P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62682" - - metanetx.chemical: "MNXM57447" - - sbo: "SBO:0000649" + - chebi: "CHEBI:62682" + - metanetx.chemical: "MNXM57447" + - sbo: "SBO:0000649" - !!omap - id: "s_0861" - name: "inositol phosphomannosylinositol phosphoceramide A (C24)" @@ -7782,9 +7782,9 @@ - formula: "C60H117NO24P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60439" - - metanetx.chemical: "MNXM57464" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60439" + - metanetx.chemical: "MNXM57464" + - sbo: "SBO:0000247" - !!omap - id: "s_0862" - name: "inositol phosphomannosylinositol phosphoceramide A (C24)" @@ -7792,9 +7792,9 @@ - formula: "C60H117NO24P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60439" - - metanetx.chemical: "MNXM57464" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60439" + - metanetx.chemical: "MNXM57464" + - sbo: "SBO:0000247" - !!omap - id: "s_0863" - name: "inositol phosphomannosylinositol phosphoceramide A (C24)" @@ -7802,9 +7802,9 @@ - formula: "C60H117NO24P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60439" - - metanetx.chemical: "MNXM57464" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60439" + - metanetx.chemical: "MNXM57464" + - sbo: "SBO:0000247" - !!omap - id: "s_0864" - name: "inositol phosphomannosylinositol phosphoceramide A (C26)" @@ -7812,9 +7812,9 @@ - formula: "C62H121NO24P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62715" - - metanetx.chemical: "MNXM527419" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62715" + - metanetx.chemical: "MNXM527419" + - sbo: "SBO:0000247" - !!omap - id: "s_0865" - name: "inositol phosphomannosylinositol phosphoceramide A (C26)" @@ -7822,9 +7822,9 @@ - formula: "C62H121NO24P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62715" - - metanetx.chemical: "MNXM527419" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62715" + - metanetx.chemical: "MNXM527419" + - sbo: "SBO:0000247" - !!omap - id: "s_0866" - name: "inositol phosphomannosylinositol phosphoceramide A (C26)" @@ -7832,9 +7832,9 @@ - formula: "C62H121NO24P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62715" - - metanetx.chemical: "MNXM527419" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62715" + - metanetx.chemical: "MNXM527419" + - sbo: "SBO:0000247" - !!omap - id: "s_0867" - name: "inositol phosphomannosylinositol phosphoceramide B (C24)" @@ -7842,9 +7842,9 @@ - formula: "C60H117NO25P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60443" - - metanetx.chemical: "MNXM527425" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60443" + - metanetx.chemical: "MNXM527425" + - sbo: "SBO:0000247" - !!omap - id: "s_0868" - name: "inositol phosphomannosylinositol phosphoceramide B (C24)" @@ -7852,9 +7852,9 @@ - formula: "C60H117NO25P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60443" - - metanetx.chemical: "MNXM527425" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60443" + - metanetx.chemical: "MNXM527425" + - sbo: "SBO:0000247" - !!omap - id: "s_0869" - name: "inositol phosphomannosylinositol phosphoceramide B (C24)" @@ -7862,9 +7862,9 @@ - formula: "C60H117NO25P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60443" - - metanetx.chemical: "MNXM527425" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60443" + - metanetx.chemical: "MNXM527425" + - sbo: "SBO:0000247" - !!omap - id: "s_0870" - name: "inositol phosphomannosylinositol phosphoceramide B (C26)" @@ -7872,9 +7872,9 @@ - formula: "C62H121NO25P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62719" - - metanetx.chemical: "MNXM527421" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62719" + - metanetx.chemical: "MNXM527421" + - sbo: "SBO:0000247" - !!omap - id: "s_0871" - name: "inositol phosphomannosylinositol phosphoceramide B (C26)" @@ -7882,9 +7882,9 @@ - formula: "C62H121NO25P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62719" - - metanetx.chemical: "MNXM527421" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62719" + - metanetx.chemical: "MNXM527421" + - sbo: "SBO:0000247" - !!omap - id: "s_0872" - name: "inositol phosphomannosylinositol phosphoceramide B (C26)" @@ -7892,9 +7892,9 @@ - formula: "C62H121NO25P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62719" - - metanetx.chemical: "MNXM527421" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62719" + - metanetx.chemical: "MNXM527421" + - sbo: "SBO:0000247" - !!omap - id: "s_0873" - name: "inositol phosphomannosylinositol phosphoceramide B' (C24)" @@ -7902,9 +7902,9 @@ - formula: "C60H117NO25P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60441" - - metanetx.chemical: "MNXM527422" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60441" + - metanetx.chemical: "MNXM527422" + - sbo: "SBO:0000247" - !!omap - id: "s_0874" - name: "inositol phosphomannosylinositol phosphoceramide B' (C24)" @@ -7912,9 +7912,9 @@ - formula: "C60H117NO25P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60441" - - metanetx.chemical: "MNXM527422" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60441" + - metanetx.chemical: "MNXM527422" + - sbo: "SBO:0000247" - !!omap - id: "s_0875" - name: "inositol phosphomannosylinositol phosphoceramide B' (C24)" @@ -7922,9 +7922,9 @@ - formula: "C60H117NO25P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60441" - - metanetx.chemical: "MNXM527422" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60441" + - metanetx.chemical: "MNXM527422" + - sbo: "SBO:0000247" - !!omap - id: "s_0876" - name: "inositol phosphomannosylinositol phosphoceramide B' (C26)" @@ -7932,9 +7932,9 @@ - formula: "C62H121NO25P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62717" - - metanetx.chemical: "MNXM527418" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62717" + - metanetx.chemical: "MNXM527418" + - sbo: "SBO:0000247" - !!omap - id: "s_0877" - name: "inositol phosphomannosylinositol phosphoceramide B' (C26)" @@ -7942,9 +7942,9 @@ - formula: "C62H121NO25P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62717" - - metanetx.chemical: "MNXM527418" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62717" + - metanetx.chemical: "MNXM527418" + - sbo: "SBO:0000247" - !!omap - id: "s_0878" - name: "inositol phosphomannosylinositol phosphoceramide B' (C26)" @@ -7952,9 +7952,9 @@ - formula: "C62H121NO25P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62717" - - metanetx.chemical: "MNXM527418" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62717" + - metanetx.chemical: "MNXM527418" + - sbo: "SBO:0000247" - !!omap - id: "s_0879" - name: "inositol phosphomannosylinositol phosphoceramide C (C24)" @@ -7962,9 +7962,9 @@ - formula: "C60H117NO26P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60445" - - metanetx.chemical: "MNXM527424" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60445" + - metanetx.chemical: "MNXM527424" + - sbo: "SBO:0000247" - !!omap - id: "s_0880" - name: "inositol phosphomannosylinositol phosphoceramide C (C24)" @@ -7972,9 +7972,9 @@ - formula: "C60H117NO26P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60445" - - metanetx.chemical: "MNXM527424" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60445" + - metanetx.chemical: "MNXM527424" + - sbo: "SBO:0000247" - !!omap - id: "s_0881" - name: "inositol phosphomannosylinositol phosphoceramide C (C24)" @@ -7982,9 +7982,9 @@ - formula: "C60H117NO26P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60445" - - metanetx.chemical: "MNXM527424" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60445" + - metanetx.chemical: "MNXM527424" + - sbo: "SBO:0000247" - !!omap - id: "s_0882" - name: "inositol phosphomannosylinositol phosphoceramide C (C26)" @@ -7992,9 +7992,9 @@ - formula: "C62H121NO26P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53005" - - metanetx.chemical: "MNXM57469" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53005" + - metanetx.chemical: "MNXM57469" + - sbo: "SBO:0000247" - !!omap - id: "s_0883" - name: "inositol phosphomannosylinositol phosphoceramide C (C26)" @@ -8002,9 +8002,9 @@ - formula: "C62H121NO26P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53005" - - metanetx.chemical: "MNXM57469" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53005" + - metanetx.chemical: "MNXM57469" + - sbo: "SBO:0000247" - !!omap - id: "s_0884" - name: "inositol phosphomannosylinositol phosphoceramide C (C26)" @@ -8012,9 +8012,9 @@ - formula: "C62H121NO26P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53005" - - metanetx.chemical: "MNXM57469" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53005" + - metanetx.chemical: "MNXM57469" + - sbo: "SBO:0000247" - !!omap - id: "s_0885" - name: "inositol phosphomannosylinositol phosphoceramide D (C24)" @@ -8022,9 +8022,9 @@ - formula: "C60H117NO27P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60446" - - metanetx.chemical: "MNXM527423" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60446" + - metanetx.chemical: "MNXM527423" + - sbo: "SBO:0000247" - !!omap - id: "s_0886" - name: "inositol phosphomannosylinositol phosphoceramide D (C24)" @@ -8032,9 +8032,9 @@ - formula: "C60H117NO27P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60446" - - metanetx.chemical: "MNXM527423" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60446" + - metanetx.chemical: "MNXM527423" + - sbo: "SBO:0000247" - !!omap - id: "s_0887" - name: "inositol phosphomannosylinositol phosphoceramide D (C24)" @@ -8042,9 +8042,9 @@ - formula: "C60H117NO27P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60446" - - metanetx.chemical: "MNXM527423" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60446" + - metanetx.chemical: "MNXM527423" + - sbo: "SBO:0000247" - !!omap - id: "s_0888" - name: "inositol phosphomannosylinositol phosphoceramide D (C26)" @@ -8052,9 +8052,9 @@ - formula: "C62H121NO27P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62684" - - metanetx.chemical: "MNXM527420" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62684" + - metanetx.chemical: "MNXM527420" + - sbo: "SBO:0000247" - !!omap - id: "s_0889" - name: "inositol phosphomannosylinositol phosphoceramide D (C26)" @@ -8062,9 +8062,9 @@ - formula: "C62H121NO27P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62684" - - metanetx.chemical: "MNXM527420" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62684" + - metanetx.chemical: "MNXM527420" + - sbo: "SBO:0000247" - !!omap - id: "s_0890" - name: "inositol phosphomannosylinositol phosphoceramide D (C26)" @@ -8072,18 +8072,18 @@ - formula: "C62H121NO27P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62684" - - metanetx.chemical: "MNXM527420" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62684" + - metanetx.chemical: "MNXM527420" + - sbo: "SBO:0000247" - !!omap - id: "s_0892" - name: "inositol-P-ceramide backbone" - compartment: "g" - formula: "C6H12NO10P" - annotation: !!omap - - chebi: "CHEBI:60245" - - metanetx.chemical: "MNXM57446" - - sbo: "SBO:0000649" + - chebi: "CHEBI:60245" + - metanetx.chemical: "MNXM57446" + - sbo: "SBO:0000649" - !!omap - id: "s_0894" - name: "inositol-P-ceramide A (C24)" @@ -8091,9 +8091,9 @@ - formula: "C48H96NO11P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60402" - - metanetx.chemical: "MNXM57476" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60402" + - metanetx.chemical: "MNXM57476" + - sbo: "SBO:0000247" - !!omap - id: "s_0895" - name: "inositol-P-ceramide A (C24)" @@ -8101,9 +8101,9 @@ - formula: "C48H96NO11P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60402" - - metanetx.chemical: "MNXM57476" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60402" + - metanetx.chemical: "MNXM57476" + - sbo: "SBO:0000247" - !!omap - id: "s_0896" - name: "inositol-P-ceramide A (C24)" @@ -8111,9 +8111,9 @@ - formula: "C48H96NO11P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60402" - - metanetx.chemical: "MNXM57476" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60402" + - metanetx.chemical: "MNXM57476" + - sbo: "SBO:0000247" - !!omap - id: "s_0897" - name: "inositol-P-ceramide A (C26)" @@ -8121,9 +8121,9 @@ - formula: "C50H100NO11P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60405" - - metanetx.chemical: "MNXM57477" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60405" + - metanetx.chemical: "MNXM57477" + - sbo: "SBO:0000247" - !!omap - id: "s_0898" - name: "inositol-P-ceramide A (C26)" @@ -8131,9 +8131,9 @@ - formula: "C50H100NO11P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60405" - - metanetx.chemical: "MNXM57477" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60405" + - metanetx.chemical: "MNXM57477" + - sbo: "SBO:0000247" - !!omap - id: "s_0899" - name: "inositol-P-ceramide A (C26)" @@ -8141,9 +8141,9 @@ - formula: "C50H100NO11P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60405" - - metanetx.chemical: "MNXM57477" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60405" + - metanetx.chemical: "MNXM57477" + - sbo: "SBO:0000247" - !!omap - id: "s_0900" - name: "inositol-P-ceramide B (C24)" @@ -8151,9 +8151,9 @@ - formula: "C48H96NO12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60410" - - metanetx.chemical: "MNXM527429" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60410" + - metanetx.chemical: "MNXM527429" + - sbo: "SBO:0000247" - !!omap - id: "s_0901" - name: "inositol-P-ceramide B (C24)" @@ -8161,9 +8161,9 @@ - formula: "C48H96NO12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60410" - - metanetx.chemical: "MNXM527429" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60410" + - metanetx.chemical: "MNXM527429" + - sbo: "SBO:0000247" - !!omap - id: "s_0902" - name: "inositol-P-ceramide B (C24)" @@ -8171,9 +8171,9 @@ - formula: "C48H96NO12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60410" - - metanetx.chemical: "MNXM527429" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60410" + - metanetx.chemical: "MNXM527429" + - sbo: "SBO:0000247" - !!omap - id: "s_0903" - name: "inositol-P-ceramide B (C26)" @@ -8181,9 +8181,9 @@ - formula: "C50H100NO12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60412" - - metanetx.chemical: "MNXM527430" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60412" + - metanetx.chemical: "MNXM527430" + - sbo: "SBO:0000247" - !!omap - id: "s_0904" - name: "inositol-P-ceramide B (C26)" @@ -8191,9 +8191,9 @@ - formula: "C50H100NO12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60412" - - metanetx.chemical: "MNXM527430" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60412" + - metanetx.chemical: "MNXM527430" + - sbo: "SBO:0000247" - !!omap - id: "s_0905" - name: "inositol-P-ceramide B (C26)" @@ -8201,9 +8201,9 @@ - formula: "C50H100NO12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60412" - - metanetx.chemical: "MNXM527430" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60412" + - metanetx.chemical: "MNXM527430" + - sbo: "SBO:0000247" - !!omap - id: "s_0906" - name: "inositol-P-ceramide B' (C24)" @@ -8211,9 +8211,9 @@ - formula: "C48H96NO12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60406" - - metanetx.chemical: "MNXM57474" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60406" + - metanetx.chemical: "MNXM57474" + - sbo: "SBO:0000247" - !!omap - id: "s_0907" - name: "inositol-P-ceramide B' (C24)" @@ -8221,9 +8221,9 @@ - formula: "C48H96NO12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60406" - - metanetx.chemical: "MNXM57474" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60406" + - metanetx.chemical: "MNXM57474" + - sbo: "SBO:0000247" - !!omap - id: "s_0908" - name: "inositol-P-ceramide B' (C24)" @@ -8231,9 +8231,9 @@ - formula: "C48H96NO12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60406" - - metanetx.chemical: "MNXM57474" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60406" + - metanetx.chemical: "MNXM57474" + - sbo: "SBO:0000247" - !!omap - id: "s_0909" - name: "inositol-P-ceramide B' (C26)" @@ -8241,9 +8241,9 @@ - formula: "C50H100NO12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60409" - - metanetx.chemical: "MNXM57475" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60409" + - metanetx.chemical: "MNXM57475" + - sbo: "SBO:0000247" - !!omap - id: "s_0910" - name: "inositol-P-ceramide B' (C26)" @@ -8251,9 +8251,9 @@ - formula: "C50H100NO12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60409" - - metanetx.chemical: "MNXM57475" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60409" + - metanetx.chemical: "MNXM57475" + - sbo: "SBO:0000247" - !!omap - id: "s_0911" - name: "inositol-P-ceramide B' (C26)" @@ -8261,9 +8261,9 @@ - formula: "C50H100NO12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60409" - - metanetx.chemical: "MNXM57475" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60409" + - metanetx.chemical: "MNXM57475" + - sbo: "SBO:0000247" - !!omap - id: "s_0912" - name: "inositol-P-ceramide C (C24)" @@ -8271,9 +8271,9 @@ - formula: "C48H96NO13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60413" - - metanetx.chemical: "MNXM527428" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60413" + - metanetx.chemical: "MNXM527428" + - sbo: "SBO:0000247" - !!omap - id: "s_0913" - name: "inositol-P-ceramide C (C24)" @@ -8281,9 +8281,9 @@ - formula: "C48H96NO13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60413" - - metanetx.chemical: "MNXM527428" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60413" + - metanetx.chemical: "MNXM527428" + - sbo: "SBO:0000247" - !!omap - id: "s_0914" - name: "inositol-P-ceramide C (C24)" @@ -8291,9 +8291,9 @@ - formula: "C48H96NO13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60413" - - metanetx.chemical: "MNXM527428" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60413" + - metanetx.chemical: "MNXM527428" + - sbo: "SBO:0000247" - !!omap - id: "s_0915" - name: "inositol-P-ceramide C (C26)" @@ -8301,9 +8301,9 @@ - formula: "C50H100NO13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53004" - - metanetx.chemical: "MNXM57486" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53004" + - metanetx.chemical: "MNXM57486" + - sbo: "SBO:0000247" - !!omap - id: "s_0916" - name: "inositol-P-ceramide C (C26)" @@ -8311,9 +8311,9 @@ - formula: "C50H100NO13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53004" - - metanetx.chemical: "MNXM57486" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53004" + - metanetx.chemical: "MNXM57486" + - sbo: "SBO:0000247" - !!omap - id: "s_0917" - name: "inositol-P-ceramide C (C26)" @@ -8321,9 +8321,9 @@ - formula: "C50H100NO13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53004" - - metanetx.chemical: "MNXM57486" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53004" + - metanetx.chemical: "MNXM57486" + - sbo: "SBO:0000247" - !!omap - id: "s_0918" - name: "inositol-P-ceramide D (C24)" @@ -8331,9 +8331,9 @@ - formula: "C48H96NO14P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60414" - - metanetx.chemical: "MNXM527426" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60414" + - metanetx.chemical: "MNXM527426" + - sbo: "SBO:0000247" - !!omap - id: "s_0919" - name: "inositol-P-ceramide D (C24)" @@ -8341,9 +8341,9 @@ - formula: "C48H96NO14P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60414" - - metanetx.chemical: "MNXM527426" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60414" + - metanetx.chemical: "MNXM527426" + - sbo: "SBO:0000247" - !!omap - id: "s_0920" - name: "inositol-P-ceramide D (C24)" @@ -8351,9 +8351,9 @@ - formula: "C48H96NO14P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60414" - - metanetx.chemical: "MNXM527426" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60414" + - metanetx.chemical: "MNXM527426" + - sbo: "SBO:0000247" - !!omap - id: "s_0921" - name: "inositol-P-ceramide D (C26)" @@ -8361,9 +8361,9 @@ - formula: "C50H100NO14P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60415" - - metanetx.chemical: "MNXM527427" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60415" + - metanetx.chemical: "MNXM527427" + - sbo: "SBO:0000247" - !!omap - id: "s_0922" - name: "inositol-P-ceramide D (C26)" @@ -8371,9 +8371,9 @@ - formula: "C50H100NO14P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60415" - - metanetx.chemical: "MNXM527427" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60415" + - metanetx.chemical: "MNXM527427" + - sbo: "SBO:0000247" - !!omap - id: "s_0923" - name: "inositol-P-ceramide D (C26)" @@ -8381,9 +8381,9 @@ - formula: "C50H100NO14P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60415" - - metanetx.chemical: "MNXM527427" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60415" + - metanetx.chemical: "MNXM527427" + - sbo: "SBO:0000247" - !!omap - id: "s_0924" - name: "iron(2+)" @@ -8391,11 +8391,11 @@ - formula: "Fe" - charge: 2 - annotation: !!omap - - bigg.metabolite: "fe2" - - chebi: "CHEBI:29033" - - kegg.compound: "C14818" - - metanetx.chemical: "MNXM111" - - sbo: "SBO:0000247" + - bigg.metabolite: "fe2" + - chebi: "CHEBI:29033" + - kegg.compound: "C14818" + - metanetx.chemical: "MNXM111" + - sbo: "SBO:0000247" - !!omap - id: "s_0925" - name: "iron(2+)" @@ -8403,11 +8403,11 @@ - formula: "Fe" - charge: 2 - annotation: !!omap - - bigg.metabolite: "fe2" - - chebi: "CHEBI:29033" - - kegg.compound: "C14818" - - metanetx.chemical: "MNXM111" - - sbo: "SBO:0000247" + - bigg.metabolite: "fe2" + - chebi: "CHEBI:29033" + - kegg.compound: "C14818" + - metanetx.chemical: "MNXM111" + - sbo: "SBO:0000247" - !!omap - id: "s_0926" - name: "iron(2+)" @@ -8415,11 +8415,11 @@ - formula: "Fe" - charge: 2 - annotation: !!omap - - bigg.metabolite: "fe2" - - chebi: "CHEBI:29033" - - kegg.compound: "C14818" - - metanetx.chemical: "MNXM111" - - sbo: "SBO:0000247" + - bigg.metabolite: "fe2" + - chebi: "CHEBI:29033" + - kegg.compound: "C14818" + - metanetx.chemical: "MNXM111" + - sbo: "SBO:0000247" - !!omap - id: "s_0927" - name: "isoamyl acetate" @@ -8427,11 +8427,11 @@ - formula: "C7H14O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "iamac" - - chebi: "CHEBI:31725" - - kegg.compound: "C12296" - - metanetx.chemical: "MNXM7451" - - sbo: "SBO:0000247" + - bigg.metabolite: "iamac" + - chebi: "CHEBI:31725" + - kegg.compound: "C12296" + - metanetx.chemical: "MNXM7451" + - sbo: "SBO:0000247" - !!omap - id: "s_0928" - name: "isoamyl acetate" @@ -8439,11 +8439,11 @@ - formula: "C7H14O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "iamac" - - chebi: "CHEBI:31725" - - kegg.compound: "C12296" - - metanetx.chemical: "MNXM7451" - - sbo: "SBO:0000247" + - bigg.metabolite: "iamac" + - chebi: "CHEBI:31725" + - kegg.compound: "C12296" + - metanetx.chemical: "MNXM7451" + - sbo: "SBO:0000247" - !!omap - id: "s_0929" - name: "isoamylol" @@ -8451,11 +8451,11 @@ - formula: "C5H12O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "iamoh" - - chebi: "CHEBI:15837" - - kegg.compound: "C07328" - - metanetx.chemical: "MNXM1670" - - sbo: "SBO:0000247" + - bigg.metabolite: "iamoh" + - chebi: "CHEBI:15837" + - kegg.compound: "C07328" + - metanetx.chemical: "MNXM1670" + - sbo: "SBO:0000247" - !!omap - id: "s_0930" - name: "isoamylol" @@ -8463,11 +8463,11 @@ - formula: "C5H12O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "iamoh" - - chebi: "CHEBI:15837" - - kegg.compound: "C07328" - - metanetx.chemical: "MNXM1670" - - sbo: "SBO:0000247" + - bigg.metabolite: "iamoh" + - chebi: "CHEBI:15837" + - kegg.compound: "C07328" + - metanetx.chemical: "MNXM1670" + - sbo: "SBO:0000247" - !!omap - id: "s_0931" - name: "isoamylol" @@ -8475,11 +8475,11 @@ - formula: "C5H12O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "iamoh" - - chebi: "CHEBI:15837" - - kegg.compound: "C07328" - - metanetx.chemical: "MNXM1670" - - sbo: "SBO:0000247" + - bigg.metabolite: "iamoh" + - chebi: "CHEBI:15837" + - kegg.compound: "C07328" + - metanetx.chemical: "MNXM1670" + - sbo: "SBO:0000247" - !!omap - id: "s_0932" - name: "isobutanol" @@ -8487,11 +8487,11 @@ - formula: "C4H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ibutoh" - - chebi: "CHEBI:46645" - - kegg.compound: "C14710" - - metanetx.chemical: "MNXM5188" - - sbo: "SBO:0000247" + - bigg.metabolite: "ibutoh" + - chebi: "CHEBI:46645" + - kegg.compound: "C14710" + - metanetx.chemical: "MNXM5188" + - sbo: "SBO:0000247" - !!omap - id: "s_0933" - name: "isobutanol" @@ -8499,11 +8499,11 @@ - formula: "C4H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ibutoh" - - chebi: "CHEBI:46645" - - kegg.compound: "C14710" - - metanetx.chemical: "MNXM5188" - - sbo: "SBO:0000247" + - bigg.metabolite: "ibutoh" + - chebi: "CHEBI:46645" + - kegg.compound: "C14710" + - metanetx.chemical: "MNXM5188" + - sbo: "SBO:0000247" - !!omap - id: "s_0934" - name: "isobutanol" @@ -8511,11 +8511,11 @@ - formula: "C4H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ibutoh" - - chebi: "CHEBI:46645" - - kegg.compound: "C14710" - - metanetx.chemical: "MNXM5188" - - sbo: "SBO:0000247" + - bigg.metabolite: "ibutoh" + - chebi: "CHEBI:46645" + - kegg.compound: "C14710" + - metanetx.chemical: "MNXM5188" + - sbo: "SBO:0000247" - !!omap - id: "s_0935" - name: "isobutyl acetate" @@ -8523,10 +8523,10 @@ - formula: "C6H12O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ibutac" - - chebi: "CHEBI:50569" - - metanetx.chemical: "MNXM57835" - - sbo: "SBO:0000247" + - bigg.metabolite: "ibutac" + - chebi: "CHEBI:50569" + - metanetx.chemical: "MNXM57835" + - sbo: "SBO:0000247" - !!omap - id: "s_0936" - name: "isobutyl acetate" @@ -8534,10 +8534,10 @@ - formula: "C6H12O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ibutac" - - chebi: "CHEBI:50569" - - metanetx.chemical: "MNXM57835" - - sbo: "SBO:0000247" + - bigg.metabolite: "ibutac" + - chebi: "CHEBI:50569" + - metanetx.chemical: "MNXM57835" + - sbo: "SBO:0000247" - !!omap - id: "s_0937" - name: "isobutyraldehyde" @@ -8545,10 +8545,10 @@ - formula: "C4H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2mppal" - - chebi: "CHEBI:48943" - - metanetx.chemical: "MNXM5189" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mppal" + - chebi: "CHEBI:48943" + - metanetx.chemical: "MNXM5189" + - sbo: "SBO:0000247" - !!omap - id: "s_0938" - name: "isobutyraldehyde" @@ -8556,10 +8556,10 @@ - formula: "C4H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2mppal" - - chebi: "CHEBI:48943" - - metanetx.chemical: "MNXM5189" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mppal" + - chebi: "CHEBI:48943" + - metanetx.chemical: "MNXM5189" + - sbo: "SBO:0000247" - !!omap - id: "s_0939" - name: "isobutyraldehyde" @@ -8567,10 +8567,10 @@ - formula: "C4H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2mppal" - - chebi: "CHEBI:48943" - - metanetx.chemical: "MNXM5189" - - sbo: "SBO:0000247" + - bigg.metabolite: "2mppal" + - chebi: "CHEBI:48943" + - metanetx.chemical: "MNXM5189" + - sbo: "SBO:0000247" - !!omap - id: "s_0940" - name: "isocitrate" @@ -8578,11 +8578,11 @@ - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: "icit" - - chebi: "CHEBI:16087" - - kegg.compound: "C00311" - - metanetx.chemical: "MNXM89661" - - sbo: "SBO:0000247" + - bigg.metabolite: "icit" + - chebi: "CHEBI:16087" + - kegg.compound: "C00311" + - metanetx.chemical: "MNXM89661" + - sbo: "SBO:0000247" - !!omap - id: "s_0941" - name: "isocitrate" @@ -8590,11 +8590,11 @@ - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: "icit" - - chebi: "CHEBI:16087" - - kegg.compound: "C00311" - - metanetx.chemical: "MNXM89661" - - sbo: "SBO:0000247" + - bigg.metabolite: "icit" + - chebi: "CHEBI:16087" + - kegg.compound: "C00311" + - metanetx.chemical: "MNXM89661" + - sbo: "SBO:0000247" - !!omap - id: "s_0942" - name: "isocitrate" @@ -8602,11 +8602,11 @@ - formula: "C6H5O7" - charge: -3 - annotation: !!omap - - bigg.metabolite: "icit" - - chebi: "CHEBI:16087" - - kegg.compound: "C00311" - - metanetx.chemical: "MNXM89661" - - sbo: "SBO:0000247" + - bigg.metabolite: "icit" + - chebi: "CHEBI:16087" + - kegg.compound: "C00311" + - metanetx.chemical: "MNXM89661" + - sbo: "SBO:0000247" - !!omap - id: "s_0943" - name: "isopentenyl diphosphate" @@ -8614,11 +8614,11 @@ - formula: "C5H9O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ipdp" - - chebi: "CHEBI:128769" - - kegg.compound: "C00129" - - metanetx.chemical: "MNXM83" - - sbo: "SBO:0000247" + - bigg.metabolite: "ipdp" + - chebi: "CHEBI:128769" + - kegg.compound: "C00129" + - metanetx.chemical: "MNXM83" + - sbo: "SBO:0000247" - !!omap - id: "s_0944" - name: "isopentenyl diphosphate" @@ -8626,11 +8626,11 @@ - formula: "C5H9O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ipdp" - - chebi: "CHEBI:128769" - - kegg.compound: "C00129" - - metanetx.chemical: "MNXM83" - - sbo: "SBO:0000247" + - bigg.metabolite: "ipdp" + - chebi: "CHEBI:128769" + - kegg.compound: "C00129" + - metanetx.chemical: "MNXM83" + - sbo: "SBO:0000247" - !!omap - id: "s_0945" - name: "isopentenyl diphosphate" @@ -8638,11 +8638,11 @@ - formula: "C5H9O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ipdp" - - chebi: "CHEBI:128769" - - kegg.compound: "C00129" - - metanetx.chemical: "MNXM83" - - sbo: "SBO:0000247" + - bigg.metabolite: "ipdp" + - chebi: "CHEBI:128769" + - kegg.compound: "C00129" + - metanetx.chemical: "MNXM83" + - sbo: "SBO:0000247" - !!omap - id: "s_0946" - name: "itaconate" @@ -8650,11 +8650,11 @@ - formula: "C5H4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "itacon" - - chebi: "CHEBI:17240" - - kegg.compound: "C00490" - - metanetx.chemical: "MNXM1747" - - sbo: "SBO:0000247" + - bigg.metabolite: "itacon" + - chebi: "CHEBI:17240" + - kegg.compound: "C00490" + - metanetx.chemical: "MNXM1747" + - sbo: "SBO:0000247" - !!omap - id: "s_0949" - name: "itaconyl-CoA" @@ -8662,11 +8662,11 @@ - formula: "C26H35N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: "itaccoa" - - chebi: "CHEBI:57381" - - kegg.compound: "C00531" - - metanetx.chemical: "MNXM1671" - - sbo: "SBO:0000247" + - bigg.metabolite: "itaccoa" + - chebi: "CHEBI:57381" + - kegg.compound: "C00531" + - metanetx.chemical: "MNXM1671" + - sbo: "SBO:0000247" - !!omap - id: "s_0950" - name: "ITP" @@ -8674,11 +8674,11 @@ - formula: "C10H11N4O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "itp" - - chebi: "CHEBI:61402" - - kegg.compound: "C00081" - - metanetx.chemical: "MNXM423" - - sbo: "SBO:0000247" + - bigg.metabolite: "itp" + - chebi: "CHEBI:61402" + - kegg.compound: "C00081" + - metanetx.chemical: "MNXM423" + - sbo: "SBO:0000247" - !!omap - id: "s_0951" - name: "keto-phenylpyruvate" @@ -8686,11 +8686,11 @@ - formula: "C9H7O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "phpyr" - - chebi: "CHEBI:18005" - - kegg.compound: "C00166" - - metanetx.chemical: "MNXM162242" - - sbo: "SBO:0000247" + - bigg.metabolite: "phpyr" + - chebi: "CHEBI:18005" + - kegg.compound: "C00166" + - metanetx.chemical: "MNXM162242" + - sbo: "SBO:0000247" - !!omap - id: "s_0952" - name: "L-2-amino-3-oxobutanoate" @@ -8698,11 +8698,11 @@ - formula: "C4H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2aobut" - - chebi: "CHEBI:40673" - - kegg.compound: "C03508" - - metanetx.chemical: "MNXM114087" - - sbo: "SBO:0000247" + - bigg.metabolite: "2aobut" + - chebi: "CHEBI:40673" + - kegg.compound: "C03508" + - metanetx.chemical: "MNXM114087" + - sbo: "SBO:0000247" - !!omap - id: "s_0953" - name: "L-2-aminoadipate" @@ -8710,11 +8710,11 @@ - formula: "C6H10NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "L2aadp" - - chebi: "CHEBI:58672" - - kegg.compound: "C00956" - - metanetx.chemical: "MNXM268" - - sbo: "SBO:0000247" + - bigg.metabolite: "L2aadp" + - chebi: "CHEBI:58672" + - kegg.compound: "C00956" + - metanetx.chemical: "MNXM268" + - sbo: "SBO:0000247" - !!omap - id: "s_0954" - name: "L-4-hydroxyglutamic semialdehyde" @@ -8722,11 +8722,11 @@ - formula: "C5H9NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4hglusa" - - chebi: "CHEBI:27809" - - kegg.compound: "C05938" - - metanetx.chemical: "MNXM2687" - - sbo: "SBO:0000247" + - bigg.metabolite: "4hglusa" + - chebi: "CHEBI:27809" + - kegg.compound: "C05938" + - metanetx.chemical: "MNXM2687" + - sbo: "SBO:0000247" - !!omap - id: "s_0955" - name: "L-alanine" @@ -8734,11 +8734,11 @@ - formula: "C3H7NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala__L" - - chebi: "CHEBI:16977" - - kegg.compound: "C00041" - - metanetx.chemical: "MNXM32" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala__L" + - chebi: "CHEBI:16977" + - kegg.compound: "C00041" + - metanetx.chemical: "MNXM32" + - sbo: "SBO:0000247" - !!omap - id: "s_0956" - name: "L-alanine" @@ -8746,11 +8746,11 @@ - formula: "C3H7NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala__L" - - chebi: "CHEBI:16977" - - kegg.compound: "C00041" - - metanetx.chemical: "MNXM32" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala__L" + - chebi: "CHEBI:16977" + - kegg.compound: "C00041" + - metanetx.chemical: "MNXM32" + - sbo: "SBO:0000247" - !!omap - id: "s_0957" - name: "L-alanine" @@ -8758,11 +8758,11 @@ - formula: "C3H7NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala__L" - - chebi: "CHEBI:16977" - - kegg.compound: "C00041" - - metanetx.chemical: "MNXM32" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala__L" + - chebi: "CHEBI:16977" + - kegg.compound: "C00041" + - metanetx.chemical: "MNXM32" + - sbo: "SBO:0000247" - !!omap - id: "s_0958" - name: "L-allothreonine" @@ -8770,11 +8770,11 @@ - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "athr__L" - - chebi: "CHEBI:28718" - - kegg.compound: "C05519" - - metanetx.chemical: "MNXM2125" - - sbo: "SBO:0000247" + - bigg.metabolite: "athr__L" + - chebi: "CHEBI:28718" + - kegg.compound: "C05519" + - metanetx.chemical: "MNXM2125" + - sbo: "SBO:0000247" - !!omap - id: "s_0959" - name: "L-allysine" @@ -8782,11 +8782,11 @@ - formula: "C6H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "L2aadp6sa" - - chebi: "CHEBI:17917" - - kegg.compound: "C04076" - - metanetx.chemical: "MNXM89905" - - sbo: "SBO:0000247" + - bigg.metabolite: "L2aadp6sa" + - chebi: "CHEBI:17917" + - kegg.compound: "C04076" + - metanetx.chemical: "MNXM89905" + - sbo: "SBO:0000247" - !!omap - id: "s_0960" - name: "L-alpha-formylglycine" @@ -8794,11 +8794,11 @@ - formula: "C3H5NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2amsa" - - chebi: "CHEBI:58671" - - kegg.compound: "C11822" - - metanetx.chemical: "MNXM2124" - - sbo: "SBO:0000247" + - bigg.metabolite: "2amsa" + - chebi: "CHEBI:58671" + - kegg.compound: "C11822" + - metanetx.chemical: "MNXM2124" + - sbo: "SBO:0000247" - !!omap - id: "s_0961" - name: "L-arabinitol" @@ -8806,11 +8806,11 @@ - formula: "C5H12O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "abt" - - chebi: "CHEBI:18403" - - kegg.compound: "C00532" - - metanetx.chemical: "MNXM801" - - sbo: "SBO:0000247" + - bigg.metabolite: "abt" + - chebi: "CHEBI:18403" + - kegg.compound: "C00532" + - metanetx.chemical: "MNXM801" + - sbo: "SBO:0000247" - !!omap - id: "s_0962" - name: "L-arabinitol" @@ -8818,11 +8818,11 @@ - formula: "C5H12O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "abt" - - chebi: "CHEBI:18403" - - kegg.compound: "C00532" - - metanetx.chemical: "MNXM801" - - sbo: "SBO:0000247" + - bigg.metabolite: "abt" + - chebi: "CHEBI:18403" + - kegg.compound: "C00532" + - metanetx.chemical: "MNXM801" + - sbo: "SBO:0000247" - !!omap - id: "s_0963" - name: "L-arabinose" @@ -8830,11 +8830,11 @@ - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "arab__L" - - chebi: "CHEBI:30849" - - kegg.compound: "C00259" - - metanetx.chemical: "MNXM461" - - sbo: "SBO:0000247" + - bigg.metabolite: "arab__L" + - chebi: "CHEBI:30849" + - kegg.compound: "C00259" + - metanetx.chemical: "MNXM461" + - sbo: "SBO:0000247" - !!omap - id: "s_0964" - name: "L-arabinose" @@ -8842,11 +8842,11 @@ - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "arab__L" - - chebi: "CHEBI:30849" - - kegg.compound: "C00259" - - metanetx.chemical: "MNXM461" - - sbo: "SBO:0000247" + - bigg.metabolite: "arab__L" + - chebi: "CHEBI:30849" + - kegg.compound: "C00259" + - metanetx.chemical: "MNXM461" + - sbo: "SBO:0000247" - !!omap - id: "s_0965" - name: "L-arginine" @@ -8854,11 +8854,11 @@ - formula: "C6H15N4O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "arg__L" - - chebi: "CHEBI:32682" - - kegg.compound: "C00062" - - metanetx.chemical: "MNXM70" - - sbo: "SBO:0000247" + - bigg.metabolite: "arg__L" + - chebi: "CHEBI:32682" + - kegg.compound: "C00062" + - metanetx.chemical: "MNXM70" + - sbo: "SBO:0000247" - !!omap - id: "s_0966" - name: "L-arginine" @@ -8866,11 +8866,11 @@ - formula: "C6H15N4O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "arg__L" - - chebi: "CHEBI:32682" - - kegg.compound: "C00062" - - metanetx.chemical: "MNXM70" - - sbo: "SBO:0000247" + - bigg.metabolite: "arg__L" + - chebi: "CHEBI:32682" + - kegg.compound: "C00062" + - metanetx.chemical: "MNXM70" + - sbo: "SBO:0000247" - !!omap - id: "s_0967" - name: "L-arginine" @@ -8878,11 +8878,11 @@ - formula: "C6H15N4O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "arg__L" - - chebi: "CHEBI:32682" - - kegg.compound: "C00062" - - metanetx.chemical: "MNXM70" - - sbo: "SBO:0000247" + - bigg.metabolite: "arg__L" + - chebi: "CHEBI:32682" + - kegg.compound: "C00062" + - metanetx.chemical: "MNXM70" + - sbo: "SBO:0000247" - !!omap - id: "s_0968" - name: "L-arginine" @@ -8890,11 +8890,11 @@ - formula: "C6H15N4O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "arg__L" - - chebi: "CHEBI:32682" - - kegg.compound: "C00062" - - metanetx.chemical: "MNXM70" - - sbo: "SBO:0000247" + - bigg.metabolite: "arg__L" + - chebi: "CHEBI:32682" + - kegg.compound: "C00062" + - metanetx.chemical: "MNXM70" + - sbo: "SBO:0000247" - !!omap - id: "s_0969" - name: "L-asparagine" @@ -8902,11 +8902,11 @@ - formula: "C4H8N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "asn__L" - - chebi: "CHEBI:17196" - - kegg.compound: "C00152" - - metanetx.chemical: "MNXM147" - - sbo: "SBO:0000247" + - bigg.metabolite: "asn__L" + - chebi: "CHEBI:17196" + - kegg.compound: "C00152" + - metanetx.chemical: "MNXM147" + - sbo: "SBO:0000247" - !!omap - id: "s_0970" - name: "L-asparagine" @@ -8914,11 +8914,11 @@ - formula: "C4H8N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "asn__L" - - chebi: "CHEBI:17196" - - kegg.compound: "C00152" - - metanetx.chemical: "MNXM147" - - sbo: "SBO:0000247" + - bigg.metabolite: "asn__L" + - chebi: "CHEBI:17196" + - kegg.compound: "C00152" + - metanetx.chemical: "MNXM147" + - sbo: "SBO:0000247" - !!omap - id: "s_0971" - name: "L-asparagine" @@ -8926,11 +8926,11 @@ - formula: "C4H8N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "asn__L" - - chebi: "CHEBI:17196" - - kegg.compound: "C00152" - - metanetx.chemical: "MNXM147" - - sbo: "SBO:0000247" + - bigg.metabolite: "asn__L" + - chebi: "CHEBI:17196" + - kegg.compound: "C00152" + - metanetx.chemical: "MNXM147" + - sbo: "SBO:0000247" - !!omap - id: "s_0972" - name: "L-asparagine" @@ -8938,11 +8938,11 @@ - formula: "C4H8N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "asn__L" - - chebi: "CHEBI:17196" - - kegg.compound: "C00152" - - metanetx.chemical: "MNXM147" - - sbo: "SBO:0000247" + - bigg.metabolite: "asn__L" + - chebi: "CHEBI:17196" + - kegg.compound: "C00152" + - metanetx.chemical: "MNXM147" + - sbo: "SBO:0000247" - !!omap - id: "s_0973" - name: "L-aspartate" @@ -8950,11 +8950,11 @@ - formula: "C4H6NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "asp__L" - - chebi: "CHEBI:29991" - - kegg.compound: "C00049" - - metanetx.chemical: "MNXM42" - - sbo: "SBO:0000247" + - bigg.metabolite: "asp__L" + - chebi: "CHEBI:29991" + - kegg.compound: "C00049" + - metanetx.chemical: "MNXM42" + - sbo: "SBO:0000247" - !!omap - id: "s_0974" - name: "L-aspartate" @@ -8962,11 +8962,11 @@ - formula: "C4H6NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "asp__L" - - chebi: "CHEBI:29991" - - kegg.compound: "C00049" - - metanetx.chemical: "MNXM42" - - sbo: "SBO:0000247" + - bigg.metabolite: "asp__L" + - chebi: "CHEBI:29991" + - kegg.compound: "C00049" + - metanetx.chemical: "MNXM42" + - sbo: "SBO:0000247" - !!omap - id: "s_0975" - name: "L-aspartate" @@ -8974,11 +8974,11 @@ - formula: "C4H6NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "asp__L" - - chebi: "CHEBI:29991" - - kegg.compound: "C00049" - - metanetx.chemical: "MNXM42" - - sbo: "SBO:0000247" + - bigg.metabolite: "asp__L" + - chebi: "CHEBI:29991" + - kegg.compound: "C00049" + - metanetx.chemical: "MNXM42" + - sbo: "SBO:0000247" - !!omap - id: "s_0976" - name: "L-aspartate" @@ -8986,11 +8986,11 @@ - formula: "C4H6NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "asp__L" - - chebi: "CHEBI:29991" - - kegg.compound: "C00049" - - metanetx.chemical: "MNXM42" - - sbo: "SBO:0000247" + - bigg.metabolite: "asp__L" + - chebi: "CHEBI:29991" + - kegg.compound: "C00049" + - metanetx.chemical: "MNXM42" + - sbo: "SBO:0000247" - !!omap - id: "s_0977" - name: "L-aspartate" @@ -8998,11 +8998,11 @@ - formula: "C4H6NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "asp__L" - - chebi: "CHEBI:29991" - - kegg.compound: "C00049" - - metanetx.chemical: "MNXM42" - - sbo: "SBO:0000247" + - bigg.metabolite: "asp__L" + - chebi: "CHEBI:29991" + - kegg.compound: "C00049" + - metanetx.chemical: "MNXM42" + - sbo: "SBO:0000247" - !!omap - id: "s_0978" - name: "L-aspartate 4-semialdehyde" @@ -9010,11 +9010,11 @@ - formula: "C4H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "aspsa" - - chebi: "CHEBI:18051" - - kegg.compound: "C00441" - - metanetx.chemical: "MNXM361" - - sbo: "SBO:0000247" + - bigg.metabolite: "aspsa" + - chebi: "CHEBI:18051" + - kegg.compound: "C00441" + - metanetx.chemical: "MNXM361" + - sbo: "SBO:0000247" - !!omap - id: "s_0979" - name: "L-citrulline" @@ -9022,11 +9022,11 @@ - formula: "C6H13N3O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "citr__L" - - chebi: "CHEBI:16349" - - kegg.compound: "C00327" - - metanetx.chemical: "MNXM211" - - sbo: "SBO:0000247" + - bigg.metabolite: "citr__L" + - chebi: "CHEBI:16349" + - kegg.compound: "C00327" + - metanetx.chemical: "MNXM211" + - sbo: "SBO:0000247" - !!omap - id: "s_0980" - name: "L-cystathionine" @@ -9034,11 +9034,11 @@ - formula: "C7H14N2O4S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cyst__L" - - chebi: "CHEBI:17482" - - kegg.compound: "C02291" - - metanetx.chemical: "MNXM319" - - sbo: "SBO:0000247" + - bigg.metabolite: "cyst__L" + - chebi: "CHEBI:17482" + - kegg.compound: "C02291" + - metanetx.chemical: "MNXM319" + - sbo: "SBO:0000247" - !!omap - id: "s_0981" - name: "L-cysteine" @@ -9046,11 +9046,11 @@ - formula: "C3H7NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cys__L" - - chebi: "CHEBI:17561" - - kegg.compound: "C00097" - - metanetx.chemical: "MNXM55" - - sbo: "SBO:0000247" + - bigg.metabolite: "cys__L" + - chebi: "CHEBI:17561" + - kegg.compound: "C00097" + - metanetx.chemical: "MNXM55" + - sbo: "SBO:0000247" - !!omap - id: "s_0982" - name: "L-cysteine" @@ -9058,11 +9058,11 @@ - formula: "C3H7NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cys__L" - - chebi: "CHEBI:17561" - - kegg.compound: "C00097" - - metanetx.chemical: "MNXM55" - - sbo: "SBO:0000247" + - bigg.metabolite: "cys__L" + - chebi: "CHEBI:17561" + - kegg.compound: "C00097" + - metanetx.chemical: "MNXM55" + - sbo: "SBO:0000247" - !!omap - id: "s_0983" - name: "L-cysteinylglycine" @@ -9070,11 +9070,11 @@ - formula: "C5H10N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cgly" - - chebi: "CHEBI:4047" - - kegg.compound: "C01419" - - metanetx.chemical: "MNXM683" - - sbo: "SBO:0000247" + - bigg.metabolite: "cgly" + - chebi: "CHEBI:4047" + - kegg.compound: "C01419" + - metanetx.chemical: "MNXM683" + - sbo: "SBO:0000247" - !!omap - id: "s_0984" - name: "L-cystine" @@ -9082,11 +9082,11 @@ - formula: "C6H12N2O4S2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cysi__L" - - chebi: "CHEBI:16283" - - kegg.compound: "C00491" - - metanetx.chemical: "MNXM927" - - sbo: "SBO:0000247" + - bigg.metabolite: "cysi__L" + - chebi: "CHEBI:16283" + - kegg.compound: "C00491" + - metanetx.chemical: "MNXM927" + - sbo: "SBO:0000247" - !!omap - id: "s_0985" - name: "L-cystine" @@ -9094,11 +9094,11 @@ - formula: "C6H12N2O4S2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cysi__L" - - chebi: "CHEBI:16283" - - kegg.compound: "C00491" - - metanetx.chemical: "MNXM927" - - sbo: "SBO:0000247" + - bigg.metabolite: "cysi__L" + - chebi: "CHEBI:16283" + - kegg.compound: "C00491" + - metanetx.chemical: "MNXM927" + - sbo: "SBO:0000247" - !!omap - id: "s_0986" - name: "L-gamma-glutamyl phosphate" @@ -9106,11 +9106,11 @@ - formula: "C5H8NO7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "glu5p" - - chebi: "CHEBI:58274" - - kegg.compound: "C03287" - - metanetx.chemical: "MNXM1280" - - sbo: "SBO:0000247" + - bigg.metabolite: "glu5p" + - chebi: "CHEBI:58274" + - kegg.compound: "C03287" + - metanetx.chemical: "MNXM1280" + - sbo: "SBO:0000247" - !!omap - id: "s_0987" - name: "L-gamma-glutamyl-L-alanine" @@ -9118,11 +9118,11 @@ - formula: "C8H13N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gluala" - - chebi: "CHEBI:50619" - - kegg.compound: "C03738" - - metanetx.chemical: "MNXM59390" - - sbo: "SBO:0000247" + - bigg.metabolite: "gluala" + - chebi: "CHEBI:50619" + - kegg.compound: "C03738" + - metanetx.chemical: "MNXM59390" + - sbo: "SBO:0000247" - !!omap - id: "s_0988" - name: "L-gamma-glutamyl-L-cysteine" @@ -9130,11 +9130,11 @@ - formula: "C8H13N2O5S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glucys" - - chebi: "CHEBI:58173" - - kegg.compound: "C00669" - - metanetx.chemical: "MNXM412" - - sbo: "SBO:0000247" + - bigg.metabolite: "glucys" + - chebi: "CHEBI:58173" + - kegg.compound: "C00669" + - metanetx.chemical: "MNXM412" + - sbo: "SBO:0000247" - !!omap - id: "s_0989" - name: "L-glucitol" @@ -9142,11 +9142,11 @@ - formula: "C6H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "sbt__L" - - chebi: "CHEBI:28789" - - kegg.compound: "C01722" - - metanetx.chemical: "MNXM4638" - - sbo: "SBO:0000247" + - bigg.metabolite: "sbt__L" + - chebi: "CHEBI:28789" + - kegg.compound: "C01722" + - metanetx.chemical: "MNXM4638" + - sbo: "SBO:0000247" - !!omap - id: "s_0990" - name: "L-glucitol" @@ -9154,11 +9154,11 @@ - formula: "C6H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "sbt__L" - - chebi: "CHEBI:28789" - - kegg.compound: "C01722" - - metanetx.chemical: "MNXM4638" - - sbo: "SBO:0000247" + - bigg.metabolite: "sbt__L" + - chebi: "CHEBI:28789" + - kegg.compound: "C01722" + - metanetx.chemical: "MNXM4638" + - sbo: "SBO:0000247" - !!omap - id: "s_0991" - name: "L-glutamate" @@ -9166,11 +9166,11 @@ - formula: "C5H8NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glu__L" - - chebi: "CHEBI:29985" - - kegg.compound: "C00025" - - metanetx.chemical: "MNXM89557" - - sbo: "SBO:0000247" + - bigg.metabolite: "glu__L" + - chebi: "CHEBI:29985" + - kegg.compound: "C00025" + - metanetx.chemical: "MNXM89557" + - sbo: "SBO:0000247" - !!omap - id: "s_0992" - name: "L-glutamate" @@ -9178,11 +9178,11 @@ - formula: "C5H8NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glu__L" - - chebi: "CHEBI:29985" - - kegg.compound: "C00025" - - metanetx.chemical: "MNXM89557" - - sbo: "SBO:0000247" + - bigg.metabolite: "glu__L" + - chebi: "CHEBI:29985" + - kegg.compound: "C00025" + - metanetx.chemical: "MNXM89557" + - sbo: "SBO:0000247" - !!omap - id: "s_0993" - name: "L-glutamate" @@ -9190,11 +9190,11 @@ - formula: "C5H8NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glu__L" - - chebi: "CHEBI:29985" - - kegg.compound: "C00025" - - metanetx.chemical: "MNXM89557" - - sbo: "SBO:0000247" + - bigg.metabolite: "glu__L" + - chebi: "CHEBI:29985" + - kegg.compound: "C00025" + - metanetx.chemical: "MNXM89557" + - sbo: "SBO:0000247" - !!omap - id: "s_0994" - name: "L-glutamate" @@ -9202,11 +9202,11 @@ - formula: "C5H8NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glu__L" - - chebi: "CHEBI:29985" - - kegg.compound: "C00025" - - metanetx.chemical: "MNXM89557" - - sbo: "SBO:0000247" + - bigg.metabolite: "glu__L" + - chebi: "CHEBI:29985" + - kegg.compound: "C00025" + - metanetx.chemical: "MNXM89557" + - sbo: "SBO:0000247" - !!omap - id: "s_0995" - name: "L-glutamate" @@ -9214,11 +9214,11 @@ - formula: "C5H8NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glu__L" - - chebi: "CHEBI:29985" - - kegg.compound: "C00025" - - metanetx.chemical: "MNXM89557" - - sbo: "SBO:0000247" + - bigg.metabolite: "glu__L" + - chebi: "CHEBI:29985" + - kegg.compound: "C00025" + - metanetx.chemical: "MNXM89557" + - sbo: "SBO:0000247" - !!omap - id: "s_0996" - name: "L-glutamate" @@ -9226,11 +9226,11 @@ - formula: "C5H8NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glu__L" - - chebi: "CHEBI:29985" - - kegg.compound: "C00025" - - metanetx.chemical: "MNXM89557" - - sbo: "SBO:0000247" + - bigg.metabolite: "glu__L" + - chebi: "CHEBI:29985" + - kegg.compound: "C00025" + - metanetx.chemical: "MNXM89557" + - sbo: "SBO:0000247" - !!omap - id: "s_0997" - name: "L-glutamic 5-semialdehyde" @@ -9238,11 +9238,11 @@ - formula: "C5H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glu5sa" - - chebi: "CHEBI:17232" - - kegg.compound: "C01165" - - metanetx.chemical: "MNXM245" - - sbo: "SBO:0000247" + - bigg.metabolite: "glu5sa" + - chebi: "CHEBI:17232" + - kegg.compound: "C01165" + - metanetx.chemical: "MNXM245" + - sbo: "SBO:0000247" - !!omap - id: "s_0999" - name: "L-glutamine" @@ -9250,11 +9250,11 @@ - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gln__L" - - chebi: "CHEBI:18050" - - kegg.compound: "C00064" - - metanetx.chemical: "MNXM37" - - sbo: "SBO:0000247" + - bigg.metabolite: "gln__L" + - chebi: "CHEBI:18050" + - kegg.compound: "C00064" + - metanetx.chemical: "MNXM37" + - sbo: "SBO:0000247" - !!omap - id: "s_1000" - name: "L-glutamine" @@ -9262,11 +9262,11 @@ - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gln__L" - - chebi: "CHEBI:18050" - - kegg.compound: "C00064" - - metanetx.chemical: "MNXM37" - - sbo: "SBO:0000247" + - bigg.metabolite: "gln__L" + - chebi: "CHEBI:18050" + - kegg.compound: "C00064" + - metanetx.chemical: "MNXM37" + - sbo: "SBO:0000247" - !!omap - id: "s_1001" - name: "L-glutamine" @@ -9274,11 +9274,11 @@ - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gln__L" - - chebi: "CHEBI:18050" - - kegg.compound: "C00064" - - metanetx.chemical: "MNXM37" - - sbo: "SBO:0000247" + - bigg.metabolite: "gln__L" + - chebi: "CHEBI:18050" + - kegg.compound: "C00064" + - metanetx.chemical: "MNXM37" + - sbo: "SBO:0000247" - !!omap - id: "s_1002" - name: "L-glutamine" @@ -9286,11 +9286,11 @@ - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gln__L" - - chebi: "CHEBI:18050" - - kegg.compound: "C00064" - - metanetx.chemical: "MNXM37" - - sbo: "SBO:0000247" + - bigg.metabolite: "gln__L" + - chebi: "CHEBI:18050" + - kegg.compound: "C00064" + - metanetx.chemical: "MNXM37" + - sbo: "SBO:0000247" - !!omap - id: "s_1003" - name: "L-glycine" @@ -9298,11 +9298,11 @@ - formula: "C2H5NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly" - - chebi: "CHEBI:15428" - - kegg.compound: "C00037" - - metanetx.chemical: "MNXM29" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly" + - chebi: "CHEBI:15428" + - kegg.compound: "C00037" + - metanetx.chemical: "MNXM29" + - sbo: "SBO:0000247" - !!omap - id: "s_1004" - name: "L-glycine" @@ -9310,11 +9310,11 @@ - formula: "C2H5NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly" - - chebi: "CHEBI:15428" - - kegg.compound: "C00037" - - metanetx.chemical: "MNXM29" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly" + - chebi: "CHEBI:15428" + - kegg.compound: "C00037" + - metanetx.chemical: "MNXM29" + - sbo: "SBO:0000247" - !!omap - id: "s_1005" - name: "L-glycine" @@ -9322,11 +9322,11 @@ - formula: "C2H5NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly" - - chebi: "CHEBI:15428" - - kegg.compound: "C00037" - - metanetx.chemical: "MNXM29" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly" + - chebi: "CHEBI:15428" + - kegg.compound: "C00037" + - metanetx.chemical: "MNXM29" + - sbo: "SBO:0000247" - !!omap - id: "s_1006" - name: "L-histidine" @@ -9334,11 +9334,11 @@ - formula: "C6H9N3O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "his__L" - - chebi: "CHEBI:15971" - - kegg.compound: "C00135" - - metanetx.chemical: "MNXM134" - - sbo: "SBO:0000247" + - bigg.metabolite: "his__L" + - chebi: "CHEBI:15971" + - kegg.compound: "C00135" + - metanetx.chemical: "MNXM134" + - sbo: "SBO:0000247" - !!omap - id: "s_1007" - name: "L-histidine" @@ -9346,11 +9346,11 @@ - formula: "C6H9N3O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "his__L" - - chebi: "CHEBI:15971" - - kegg.compound: "C00135" - - metanetx.chemical: "MNXM134" - - sbo: "SBO:0000247" + - bigg.metabolite: "his__L" + - chebi: "CHEBI:15971" + - kegg.compound: "C00135" + - metanetx.chemical: "MNXM134" + - sbo: "SBO:0000247" - !!omap - id: "s_1008" - name: "L-histidine" @@ -9358,11 +9358,11 @@ - formula: "C6H9N3O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "his__L" - - chebi: "CHEBI:15971" - - kegg.compound: "C00135" - - metanetx.chemical: "MNXM134" - - sbo: "SBO:0000247" + - bigg.metabolite: "his__L" + - chebi: "CHEBI:15971" + - kegg.compound: "C00135" + - metanetx.chemical: "MNXM134" + - sbo: "SBO:0000247" - !!omap - id: "s_1009" - name: "L-histidine" @@ -9370,11 +9370,11 @@ - formula: "C6H9N3O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "his__L" - - chebi: "CHEBI:15971" - - kegg.compound: "C00135" - - metanetx.chemical: "MNXM134" - - sbo: "SBO:0000247" + - bigg.metabolite: "his__L" + - chebi: "CHEBI:15971" + - kegg.compound: "C00135" + - metanetx.chemical: "MNXM134" + - sbo: "SBO:0000247" - !!omap - id: "s_1010" - name: "L-histidinol" @@ -9382,11 +9382,11 @@ - formula: "C6H12N3O" - charge: 1 - annotation: !!omap - - bigg.metabolite: "histd" - - chebi: "CHEBI:57699" - - kegg.compound: "C00860" - - metanetx.chemical: "MNXM1281" - - sbo: "SBO:0000247" + - bigg.metabolite: "histd" + - chebi: "CHEBI:57699" + - kegg.compound: "C00860" + - metanetx.chemical: "MNXM1281" + - sbo: "SBO:0000247" - !!omap - id: "s_1011" - name: "L-histidinol phosphate" @@ -9394,11 +9394,11 @@ - formula: "C6H11N3O4P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hisp" - - chebi: "CHEBI:57980" - - kegg.compound: "C01100" - - metanetx.chemical: "MNXM1482" - - sbo: "SBO:0000247" + - bigg.metabolite: "hisp" + - chebi: "CHEBI:57980" + - kegg.compound: "C01100" + - metanetx.chemical: "MNXM1482" + - sbo: "SBO:0000247" - !!omap - id: "s_1012" - name: "L-homocysteine" @@ -9406,11 +9406,11 @@ - formula: "C4H9NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "hcys__L" - - chebi: "CHEBI:17588" - - kegg.compound: "C00155" - - metanetx.chemical: "MNXM123" - - sbo: "SBO:0000247" + - bigg.metabolite: "hcys__L" + - chebi: "CHEBI:17588" + - kegg.compound: "C00155" + - metanetx.chemical: "MNXM123" + - sbo: "SBO:0000247" - !!omap - id: "s_1014" - name: "L-homoserine" @@ -9418,11 +9418,11 @@ - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "hom__L" - - chebi: "CHEBI:15699" - - kegg.compound: "C00263" - - metanetx.chemical: "MNXM353" - - sbo: "SBO:0000247" + - bigg.metabolite: "hom__L" + - chebi: "CHEBI:15699" + - kegg.compound: "C00263" + - metanetx.chemical: "MNXM353" + - sbo: "SBO:0000247" - !!omap - id: "s_1015" - name: "L-homoserine" @@ -9430,11 +9430,11 @@ - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "hom__L" - - chebi: "CHEBI:15699" - - kegg.compound: "C00263" - - metanetx.chemical: "MNXM353" - - sbo: "SBO:0000247" + - bigg.metabolite: "hom__L" + - chebi: "CHEBI:15699" + - kegg.compound: "C00263" + - metanetx.chemical: "MNXM353" + - sbo: "SBO:0000247" - !!omap - id: "s_1016" - name: "L-isoleucine" @@ -9442,11 +9442,11 @@ - formula: "C6H13NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ile__L" - - chebi: "CHEBI:17191" - - kegg.compound: "C00407" - - metanetx.chemical: "MNXM231" - - sbo: "SBO:0000247" + - bigg.metabolite: "ile__L" + - chebi: "CHEBI:17191" + - kegg.compound: "C00407" + - metanetx.chemical: "MNXM231" + - sbo: "SBO:0000247" - !!omap - id: "s_1017" - name: "L-isoleucine" @@ -9454,11 +9454,11 @@ - formula: "C6H13NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ile__L" - - chebi: "CHEBI:17191" - - kegg.compound: "C00407" - - metanetx.chemical: "MNXM231" - - sbo: "SBO:0000247" + - bigg.metabolite: "ile__L" + - chebi: "CHEBI:17191" + - kegg.compound: "C00407" + - metanetx.chemical: "MNXM231" + - sbo: "SBO:0000247" - !!omap - id: "s_1018" - name: "L-isoleucine" @@ -9466,11 +9466,11 @@ - formula: "C6H13NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ile__L" - - chebi: "CHEBI:17191" - - kegg.compound: "C00407" - - metanetx.chemical: "MNXM231" - - sbo: "SBO:0000247" + - bigg.metabolite: "ile__L" + - chebi: "CHEBI:17191" + - kegg.compound: "C00407" + - metanetx.chemical: "MNXM231" + - sbo: "SBO:0000247" - !!omap - id: "s_1019" - name: "L-isoleucine" @@ -9478,11 +9478,11 @@ - formula: "C6H13NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ile__L" - - chebi: "CHEBI:17191" - - kegg.compound: "C00407" - - metanetx.chemical: "MNXM231" - - sbo: "SBO:0000247" + - bigg.metabolite: "ile__L" + - chebi: "CHEBI:17191" + - kegg.compound: "C00407" + - metanetx.chemical: "MNXM231" + - sbo: "SBO:0000247" - !!omap - id: "s_1020" - name: "L-kynurenine" @@ -9490,11 +9490,11 @@ - formula: "C10H12N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "Lkynr" - - chebi: "CHEBI:16946" - - kegg.compound: "C00328" - - metanetx.chemical: "MNXM260" - - sbo: "SBO:0000247" + - bigg.metabolite: "Lkynr" + - chebi: "CHEBI:16946" + - kegg.compound: "C00328" + - metanetx.chemical: "MNXM260" + - sbo: "SBO:0000247" - !!omap - id: "s_1021" - name: "L-leucine" @@ -9502,11 +9502,11 @@ - formula: "C6H13NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "leu__L" - - chebi: "CHEBI:15603" - - kegg.compound: "C00123" - - metanetx.chemical: "MNXM140" - - sbo: "SBO:0000247" + - bigg.metabolite: "leu__L" + - chebi: "CHEBI:15603" + - kegg.compound: "C00123" + - metanetx.chemical: "MNXM140" + - sbo: "SBO:0000247" - !!omap - id: "s_1022" - name: "L-leucine" @@ -9514,11 +9514,11 @@ - formula: "C6H13NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "leu__L" - - chebi: "CHEBI:15603" - - kegg.compound: "C00123" - - metanetx.chemical: "MNXM140" - - sbo: "SBO:0000247" + - bigg.metabolite: "leu__L" + - chebi: "CHEBI:15603" + - kegg.compound: "C00123" + - metanetx.chemical: "MNXM140" + - sbo: "SBO:0000247" - !!omap - id: "s_1023" - name: "L-leucine" @@ -9526,11 +9526,11 @@ - formula: "C6H13NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "leu__L" - - chebi: "CHEBI:15603" - - kegg.compound: "C00123" - - metanetx.chemical: "MNXM140" - - sbo: "SBO:0000247" + - bigg.metabolite: "leu__L" + - chebi: "CHEBI:15603" + - kegg.compound: "C00123" + - metanetx.chemical: "MNXM140" + - sbo: "SBO:0000247" - !!omap - id: "s_1024" - name: "L-leucine" @@ -9538,11 +9538,11 @@ - formula: "C6H13NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "leu__L" - - chebi: "CHEBI:15603" - - kegg.compound: "C00123" - - metanetx.chemical: "MNXM140" - - sbo: "SBO:0000247" + - bigg.metabolite: "leu__L" + - chebi: "CHEBI:15603" + - kegg.compound: "C00123" + - metanetx.chemical: "MNXM140" + - sbo: "SBO:0000247" - !!omap - id: "s_1025" - name: "L-lysine" @@ -9550,11 +9550,11 @@ - formula: "C6H15N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "lys__L" - - chebi: "CHEBI:32551" - - kegg.compound: "C00047" - - metanetx.chemical: "MNXM78" - - sbo: "SBO:0000247" + - bigg.metabolite: "lys__L" + - chebi: "CHEBI:32551" + - kegg.compound: "C00047" + - metanetx.chemical: "MNXM78" + - sbo: "SBO:0000247" - !!omap - id: "s_1026" - name: "L-lysine" @@ -9562,11 +9562,11 @@ - formula: "C6H15N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "lys__L" - - chebi: "CHEBI:32551" - - kegg.compound: "C00047" - - metanetx.chemical: "MNXM78" - - sbo: "SBO:0000247" + - bigg.metabolite: "lys__L" + - chebi: "CHEBI:32551" + - kegg.compound: "C00047" + - metanetx.chemical: "MNXM78" + - sbo: "SBO:0000247" - !!omap - id: "s_1027" - name: "L-lysine" @@ -9574,11 +9574,11 @@ - formula: "C6H15N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "lys__L" - - chebi: "CHEBI:32551" - - kegg.compound: "C00047" - - metanetx.chemical: "MNXM78" - - sbo: "SBO:0000247" + - bigg.metabolite: "lys__L" + - chebi: "CHEBI:32551" + - kegg.compound: "C00047" + - metanetx.chemical: "MNXM78" + - sbo: "SBO:0000247" - !!omap - id: "s_1028" - name: "L-lysine" @@ -9586,11 +9586,11 @@ - formula: "C6H15N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "lys__L" - - chebi: "CHEBI:32551" - - kegg.compound: "C00047" - - metanetx.chemical: "MNXM78" - - sbo: "SBO:0000247" + - bigg.metabolite: "lys__L" + - chebi: "CHEBI:32551" + - kegg.compound: "C00047" + - metanetx.chemical: "MNXM78" + - sbo: "SBO:0000247" - !!omap - id: "s_1029" - name: "L-methionine" @@ -9598,11 +9598,11 @@ - formula: "C5H11NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "met__L" - - chebi: "CHEBI:16643" - - kegg.compound: "C00073" - - metanetx.chemical: "MNXM61" - - sbo: "SBO:0000247" + - bigg.metabolite: "met__L" + - chebi: "CHEBI:16643" + - kegg.compound: "C00073" + - metanetx.chemical: "MNXM61" + - sbo: "SBO:0000247" - !!omap - id: "s_1030" - name: "L-methionine" @@ -9610,11 +9610,11 @@ - formula: "C5H11NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "met__L" - - chebi: "CHEBI:16643" - - kegg.compound: "C00073" - - metanetx.chemical: "MNXM61" - - sbo: "SBO:0000247" + - bigg.metabolite: "met__L" + - chebi: "CHEBI:16643" + - kegg.compound: "C00073" + - metanetx.chemical: "MNXM61" + - sbo: "SBO:0000247" - !!omap - id: "s_1031" - name: "L-methionine" @@ -9622,11 +9622,11 @@ - formula: "C5H11NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "met__L" - - chebi: "CHEBI:16643" - - kegg.compound: "C00073" - - metanetx.chemical: "MNXM61" - - sbo: "SBO:0000247" + - bigg.metabolite: "met__L" + - chebi: "CHEBI:16643" + - kegg.compound: "C00073" + - metanetx.chemical: "MNXM61" + - sbo: "SBO:0000247" - !!omap - id: "s_1032" - name: "L-phenylalanine" @@ -9634,11 +9634,11 @@ - formula: "C9H11NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "phe__L" - - chebi: "CHEBI:17295" - - kegg.compound: "C00079" - - metanetx.chemical: "MNXM97" - - sbo: "SBO:0000247" + - bigg.metabolite: "phe__L" + - chebi: "CHEBI:17295" + - kegg.compound: "C00079" + - metanetx.chemical: "MNXM97" + - sbo: "SBO:0000247" - !!omap - id: "s_1033" - name: "L-phenylalanine" @@ -9646,11 +9646,11 @@ - formula: "C9H11NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "phe__L" - - chebi: "CHEBI:17295" - - kegg.compound: "C00079" - - metanetx.chemical: "MNXM97" - - sbo: "SBO:0000247" + - bigg.metabolite: "phe__L" + - chebi: "CHEBI:17295" + - kegg.compound: "C00079" + - metanetx.chemical: "MNXM97" + - sbo: "SBO:0000247" - !!omap - id: "s_1034" - name: "L-phenylalanine" @@ -9658,11 +9658,11 @@ - formula: "C9H11NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "phe__L" - - chebi: "CHEBI:17295" - - kegg.compound: "C00079" - - metanetx.chemical: "MNXM97" - - sbo: "SBO:0000247" + - bigg.metabolite: "phe__L" + - chebi: "CHEBI:17295" + - kegg.compound: "C00079" + - metanetx.chemical: "MNXM97" + - sbo: "SBO:0000247" - !!omap - id: "s_1035" - name: "L-proline" @@ -9670,11 +9670,11 @@ - formula: "C5H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pro__L" - - chebi: "CHEBI:17203" - - kegg.compound: "C00148" - - metanetx.chemical: "MNXM114" - - sbo: "SBO:0000247" + - bigg.metabolite: "pro__L" + - chebi: "CHEBI:17203" + - kegg.compound: "C00148" + - metanetx.chemical: "MNXM114" + - sbo: "SBO:0000247" - !!omap - id: "s_1036" - name: "L-proline" @@ -9682,11 +9682,11 @@ - formula: "C5H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pro__L" - - chebi: "CHEBI:17203" - - kegg.compound: "C00148" - - metanetx.chemical: "MNXM114" - - sbo: "SBO:0000247" + - bigg.metabolite: "pro__L" + - chebi: "CHEBI:17203" + - kegg.compound: "C00148" + - metanetx.chemical: "MNXM114" + - sbo: "SBO:0000247" - !!omap - id: "s_1037" - name: "L-proline" @@ -9694,11 +9694,11 @@ - formula: "C5H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pro__L" - - chebi: "CHEBI:17203" - - kegg.compound: "C00148" - - metanetx.chemical: "MNXM114" - - sbo: "SBO:0000247" + - bigg.metabolite: "pro__L" + - chebi: "CHEBI:17203" + - kegg.compound: "C00148" + - metanetx.chemical: "MNXM114" + - sbo: "SBO:0000247" - !!omap - id: "s_1038" - name: "L-saccharopine" @@ -9706,11 +9706,11 @@ - formula: "C11H19N2O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: "saccrp__L" - - chebi: "CHEBI:57951" - - kegg.compound: "C00449" - - metanetx.chemical: "MNXM384" - - sbo: "SBO:0000247" + - bigg.metabolite: "saccrp__L" + - chebi: "CHEBI:57951" + - kegg.compound: "C00449" + - metanetx.chemical: "MNXM384" + - sbo: "SBO:0000247" - !!omap - id: "s_1039" - name: "L-serine" @@ -9718,11 +9718,11 @@ - formula: "C3H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ser__L" - - chebi: "CHEBI:17115" - - kegg.compound: "C00065" - - metanetx.chemical: "MNXM53" - - sbo: "SBO:0000247" + - bigg.metabolite: "ser__L" + - chebi: "CHEBI:17115" + - kegg.compound: "C00065" + - metanetx.chemical: "MNXM53" + - sbo: "SBO:0000247" - !!omap - id: "s_1040" - name: "L-serine" @@ -9730,11 +9730,11 @@ - formula: "C3H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ser__L" - - chebi: "CHEBI:17115" - - kegg.compound: "C00065" - - metanetx.chemical: "MNXM53" - - sbo: "SBO:0000247" + - bigg.metabolite: "ser__L" + - chebi: "CHEBI:17115" + - kegg.compound: "C00065" + - metanetx.chemical: "MNXM53" + - sbo: "SBO:0000247" - !!omap - id: "s_1041" - name: "L-serine" @@ -9742,11 +9742,11 @@ - formula: "C3H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ser__L" - - chebi: "CHEBI:17115" - - kegg.compound: "C00065" - - metanetx.chemical: "MNXM53" - - sbo: "SBO:0000247" + - bigg.metabolite: "ser__L" + - chebi: "CHEBI:17115" + - kegg.compound: "C00065" + - metanetx.chemical: "MNXM53" + - sbo: "SBO:0000247" - !!omap - id: "s_1042" - name: "L-serine" @@ -9754,11 +9754,11 @@ - formula: "C3H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ser__L" - - chebi: "CHEBI:17115" - - kegg.compound: "C00065" - - metanetx.chemical: "MNXM53" - - sbo: "SBO:0000247" + - bigg.metabolite: "ser__L" + - chebi: "CHEBI:17115" + - kegg.compound: "C00065" + - metanetx.chemical: "MNXM53" + - sbo: "SBO:0000247" - !!omap - id: "s_1043" - name: "L-sorbose" @@ -9766,11 +9766,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "srb__L" - - chebi: "CHEBI:17266" - - kegg.compound: "C00247" - - metanetx.chemical: "MNXM588" - - sbo: "SBO:0000247" + - bigg.metabolite: "srb__L" + - chebi: "CHEBI:17266" + - kegg.compound: "C00247" + - metanetx.chemical: "MNXM588" + - sbo: "SBO:0000247" - !!omap - id: "s_1044" - name: "L-sorbose" @@ -9778,11 +9778,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "srb__L" - - chebi: "CHEBI:17266" - - kegg.compound: "C00247" - - metanetx.chemical: "MNXM588" - - sbo: "SBO:0000247" + - bigg.metabolite: "srb__L" + - chebi: "CHEBI:17266" + - kegg.compound: "C00247" + - metanetx.chemical: "MNXM588" + - sbo: "SBO:0000247" - !!omap - id: "s_1045" - name: "L-threonine" @@ -9790,11 +9790,11 @@ - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "thr__L" - - chebi: "CHEBI:16857" - - kegg.compound: "C00188" - - metanetx.chemical: "MNXM142" - - sbo: "SBO:0000247" + - bigg.metabolite: "thr__L" + - chebi: "CHEBI:16857" + - kegg.compound: "C00188" + - metanetx.chemical: "MNXM142" + - sbo: "SBO:0000247" - !!omap - id: "s_1046" - name: "L-threonine" @@ -9802,11 +9802,11 @@ - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "thr__L" - - chebi: "CHEBI:16857" - - kegg.compound: "C00188" - - metanetx.chemical: "MNXM142" - - sbo: "SBO:0000247" + - bigg.metabolite: "thr__L" + - chebi: "CHEBI:16857" + - kegg.compound: "C00188" + - metanetx.chemical: "MNXM142" + - sbo: "SBO:0000247" - !!omap - id: "s_1047" - name: "L-threonine" @@ -9814,11 +9814,11 @@ - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "thr__L" - - chebi: "CHEBI:16857" - - kegg.compound: "C00188" - - metanetx.chemical: "MNXM142" - - sbo: "SBO:0000247" + - bigg.metabolite: "thr__L" + - chebi: "CHEBI:16857" + - kegg.compound: "C00188" + - metanetx.chemical: "MNXM142" + - sbo: "SBO:0000247" - !!omap - id: "s_1048" - name: "L-tryptophan" @@ -9826,11 +9826,11 @@ - formula: "C11H12N2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trp__L" - - chebi: "CHEBI:16828" - - kegg.compound: "C00078" - - metanetx.chemical: "MNXM94" - - sbo: "SBO:0000247" + - bigg.metabolite: "trp__L" + - chebi: "CHEBI:16828" + - kegg.compound: "C00078" + - metanetx.chemical: "MNXM94" + - sbo: "SBO:0000247" - !!omap - id: "s_1049" - name: "L-tryptophan" @@ -9838,11 +9838,11 @@ - formula: "C11H12N2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trp__L" - - chebi: "CHEBI:16828" - - kegg.compound: "C00078" - - metanetx.chemical: "MNXM94" - - sbo: "SBO:0000247" + - bigg.metabolite: "trp__L" + - chebi: "CHEBI:16828" + - kegg.compound: "C00078" + - metanetx.chemical: "MNXM94" + - sbo: "SBO:0000247" - !!omap - id: "s_1050" - name: "L-tryptophan" @@ -9850,11 +9850,11 @@ - formula: "C11H12N2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trp__L" - - chebi: "CHEBI:16828" - - kegg.compound: "C00078" - - metanetx.chemical: "MNXM94" - - sbo: "SBO:0000247" + - bigg.metabolite: "trp__L" + - chebi: "CHEBI:16828" + - kegg.compound: "C00078" + - metanetx.chemical: "MNXM94" + - sbo: "SBO:0000247" - !!omap - id: "s_1051" - name: "L-tyrosine" @@ -9862,11 +9862,11 @@ - formula: "C9H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tyr__L" - - chebi: "CHEBI:17895" - - kegg.compound: "C00082" - - metanetx.chemical: "MNXM76" - - sbo: "SBO:0000247" + - bigg.metabolite: "tyr__L" + - chebi: "CHEBI:17895" + - kegg.compound: "C00082" + - metanetx.chemical: "MNXM76" + - sbo: "SBO:0000247" - !!omap - id: "s_1052" - name: "L-tyrosine" @@ -9874,11 +9874,11 @@ - formula: "C9H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tyr__L" - - chebi: "CHEBI:17895" - - kegg.compound: "C00082" - - metanetx.chemical: "MNXM76" - - sbo: "SBO:0000247" + - bigg.metabolite: "tyr__L" + - chebi: "CHEBI:17895" + - kegg.compound: "C00082" + - metanetx.chemical: "MNXM76" + - sbo: "SBO:0000247" - !!omap - id: "s_1053" - name: "L-tyrosine" @@ -9886,11 +9886,11 @@ - formula: "C9H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tyr__L" - - chebi: "CHEBI:17895" - - kegg.compound: "C00082" - - metanetx.chemical: "MNXM76" - - sbo: "SBO:0000247" + - bigg.metabolite: "tyr__L" + - chebi: "CHEBI:17895" + - kegg.compound: "C00082" + - metanetx.chemical: "MNXM76" + - sbo: "SBO:0000247" - !!omap - id: "s_1054" - name: "L-tyrosine" @@ -9898,11 +9898,11 @@ - formula: "C9H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tyr__L" - - chebi: "CHEBI:17895" - - kegg.compound: "C00082" - - metanetx.chemical: "MNXM76" - - sbo: "SBO:0000247" + - bigg.metabolite: "tyr__L" + - chebi: "CHEBI:17895" + - kegg.compound: "C00082" + - metanetx.chemical: "MNXM76" + - sbo: "SBO:0000247" - !!omap - id: "s_1055" - name: "L-tyrosine" @@ -9910,11 +9910,11 @@ - formula: "C9H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tyr__L" - - chebi: "CHEBI:17895" - - kegg.compound: "C00082" - - metanetx.chemical: "MNXM76" - - sbo: "SBO:0000247" + - bigg.metabolite: "tyr__L" + - chebi: "CHEBI:17895" + - kegg.compound: "C00082" + - metanetx.chemical: "MNXM76" + - sbo: "SBO:0000247" - !!omap - id: "s_1056" - name: "L-valine" @@ -9922,11 +9922,11 @@ - formula: "C5H11NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "val__L" - - chebi: "CHEBI:16414" - - kegg.compound: "C00183" - - metanetx.chemical: "MNXM199" - - sbo: "SBO:0000247" + - bigg.metabolite: "val__L" + - chebi: "CHEBI:16414" + - kegg.compound: "C00183" + - metanetx.chemical: "MNXM199" + - sbo: "SBO:0000247" - !!omap - id: "s_1057" - name: "L-valine" @@ -9934,11 +9934,11 @@ - formula: "C5H11NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "val__L" - - chebi: "CHEBI:16414" - - kegg.compound: "C00183" - - metanetx.chemical: "MNXM199" - - sbo: "SBO:0000247" + - bigg.metabolite: "val__L" + - chebi: "CHEBI:16414" + - kegg.compound: "C00183" + - metanetx.chemical: "MNXM199" + - sbo: "SBO:0000247" - !!omap - id: "s_1058" - name: "L-valine" @@ -9946,11 +9946,11 @@ - formula: "C5H11NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "val__L" - - chebi: "CHEBI:16414" - - kegg.compound: "C00183" - - metanetx.chemical: "MNXM199" - - sbo: "SBO:0000247" + - bigg.metabolite: "val__L" + - chebi: "CHEBI:16414" + - kegg.compound: "C00183" + - metanetx.chemical: "MNXM199" + - sbo: "SBO:0000247" - !!omap - id: "s_1059" - name: "lanosterol" @@ -9958,11 +9958,11 @@ - formula: "C30H50O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "lanost" - - chebi: "CHEBI:16521" - - kegg.compound: "C01724" - - metanetx.chemical: "MNXM482" - - sbo: "SBO:0000247" + - bigg.metabolite: "lanost" + - chebi: "CHEBI:16521" + - kegg.compound: "C01724" + - metanetx.chemical: "MNXM482" + - sbo: "SBO:0000247" - !!omap - id: "s_1061" - name: "lanosterol" @@ -9970,11 +9970,11 @@ - formula: "C30H50O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "lanost" - - chebi: "CHEBI:16521" - - kegg.compound: "C01724" - - metanetx.chemical: "MNXM482" - - sbo: "SBO:0000247" + - bigg.metabolite: "lanost" + - chebi: "CHEBI:16521" + - kegg.compound: "C01724" + - metanetx.chemical: "MNXM482" + - sbo: "SBO:0000247" - !!omap - id: "s_1065" - name: "laurate" @@ -9982,11 +9982,11 @@ - formula: "C12H23O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ddca" - - chebi: "CHEBI:18262" - - kegg.compound: "C02679" - - metanetx.chemical: "MNXM402" - - sbo: "SBO:0000247" + - bigg.metabolite: "ddca" + - chebi: "CHEBI:18262" + - kegg.compound: "C02679" + - metanetx.chemical: "MNXM402" + - sbo: "SBO:0000247" - !!omap - id: "s_1067" - name: "laurate" @@ -9994,11 +9994,11 @@ - formula: "C12H23O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ddca" - - chebi: "CHEBI:18262" - - kegg.compound: "C02679" - - metanetx.chemical: "MNXM402" - - sbo: "SBO:0000247" + - bigg.metabolite: "ddca" + - chebi: "CHEBI:18262" + - kegg.compound: "C02679" + - metanetx.chemical: "MNXM402" + - sbo: "SBO:0000247" - !!omap - id: "s_1070" - name: "laurate" @@ -10006,11 +10006,11 @@ - formula: "C12H23O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ddca" - - chebi: "CHEBI:18262" - - kegg.compound: "C02679" - - metanetx.chemical: "MNXM402" - - sbo: "SBO:0000247" + - bigg.metabolite: "ddca" + - chebi: "CHEBI:18262" + - kegg.compound: "C02679" + - metanetx.chemical: "MNXM402" + - sbo: "SBO:0000247" - !!omap - id: "s_1073" - name: "lauroyl-CoA" @@ -10018,11 +10018,11 @@ - formula: "C33H54N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ddcacoa" - - chebi: "CHEBI:57375" - - kegg.compound: "C01832" - - metanetx.chemical: "MNXM363" - - sbo: "SBO:0000247" + - bigg.metabolite: "ddcacoa" + - chebi: "CHEBI:57375" + - kegg.compound: "C01832" + - metanetx.chemical: "MNXM363" + - sbo: "SBO:0000247" - !!omap - id: "s_1076" - name: "lauroyl-CoA" @@ -10030,11 +10030,11 @@ - formula: "C33H54N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ddcacoa" - - chebi: "CHEBI:57375" - - kegg.compound: "C01832" - - metanetx.chemical: "MNXM363" - - sbo: "SBO:0000247" + - bigg.metabolite: "ddcacoa" + - chebi: "CHEBI:57375" + - kegg.compound: "C01832" + - metanetx.chemical: "MNXM363" + - sbo: "SBO:0000247" - !!omap - id: "s_1077" - name: "Leu-tRNA(Leu)" @@ -10042,11 +10042,11 @@ - formula: "C6H13NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "leutrna" - - chebi: "CHEBI:16624" - - kegg.compound: "C02047" - - metanetx.chemical: "MNXM697" - - sbo: "SBO:0000247" + - bigg.metabolite: "leutrna" + - chebi: "CHEBI:16624" + - kegg.compound: "C02047" + - metanetx.chemical: "MNXM697" + - sbo: "SBO:0000247" - !!omap - id: "s_1078" - name: "Leu-tRNA(Leu)" @@ -10054,11 +10054,11 @@ - formula: "C6H13NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "leutrna" - - chebi: "CHEBI:16624" - - kegg.compound: "C02047" - - metanetx.chemical: "MNXM697" - - sbo: "SBO:0000247" + - bigg.metabolite: "leutrna" + - chebi: "CHEBI:16624" + - kegg.compound: "C02047" + - metanetx.chemical: "MNXM697" + - sbo: "SBO:0000247" - !!omap - id: "s_1079" - name: "leukotriene A4" @@ -10066,11 +10066,11 @@ - formula: "C20H29O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "leuktrA4" - - chebi: "CHEBI:57463" - - kegg.compound: "C00909" - - metanetx.chemical: "MNXM462" - - sbo: "SBO:0000247" + - bigg.metabolite: "leuktrA4" + - chebi: "CHEBI:57463" + - kegg.compound: "C00909" + - metanetx.chemical: "MNXM462" + - sbo: "SBO:0000247" - !!omap - id: "s_1080" - name: "leukotriene A4" @@ -10078,11 +10078,11 @@ - formula: "C20H29O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "leuktrA4" - - chebi: "CHEBI:57463" - - kegg.compound: "C00909" - - metanetx.chemical: "MNXM462" - - sbo: "SBO:0000247" + - bigg.metabolite: "leuktrA4" + - chebi: "CHEBI:57463" + - kegg.compound: "C00909" + - metanetx.chemical: "MNXM462" + - sbo: "SBO:0000247" - !!omap - id: "s_1081" - name: "leukotriene B4" @@ -10090,11 +10090,11 @@ - formula: "C20H31O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "leuktrB4" - - chebi: "CHEBI:57461" - - kegg.compound: "C02165" - - metanetx.chemical: "MNXM637" - - sbo: "SBO:0000247" + - bigg.metabolite: "leuktrB4" + - chebi: "CHEBI:57461" + - kegg.compound: "C02165" + - metanetx.chemical: "MNXM637" + - sbo: "SBO:0000247" - !!omap - id: "s_1082" - name: "leukotriene B4" @@ -10102,11 +10102,11 @@ - formula: "C20H31O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "leuktrB4" - - chebi: "CHEBI:57461" - - kegg.compound: "C02165" - - metanetx.chemical: "MNXM637" - - sbo: "SBO:0000247" + - bigg.metabolite: "leuktrB4" + - chebi: "CHEBI:57461" + - kegg.compound: "C02165" + - metanetx.chemical: "MNXM637" + - sbo: "SBO:0000247" - !!omap - id: "s_1085" - name: "lignoceric acid" @@ -10114,11 +10114,11 @@ - formula: "C24H47O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lgnc" - - chebi: "CHEBI:31014" - - kegg.compound: "C08320" - - metanetx.chemical: "MNXM3297" - - sbo: "SBO:0000247" + - bigg.metabolite: "lgnc" + - chebi: "CHEBI:31014" + - kegg.compound: "C08320" + - metanetx.chemical: "MNXM3297" + - sbo: "SBO:0000247" - !!omap - id: "s_1096" - name: "lipid" @@ -10126,10 +10126,10 @@ - formula: "" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:18059" - - kegg.compound: "C01356" - - metanetx.chemical: "MNXM12117" - - sbo: "SBO:0000649" + - chebi: "CHEBI:18059" + - kegg.compound: "C01356" + - metanetx.chemical: "MNXM12117" + - sbo: "SBO:0000649" - !!omap - id: "s_1097" - name: "lipoamide" @@ -10137,11 +10137,11 @@ - formula: "C8H15NOS2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "lpam" - - chebi: "CHEBI:17460" - - kegg.compound: "C00248" - - metanetx.chemical: "MNXM1024" - - sbo: "SBO:0000247" + - bigg.metabolite: "lpam" + - chebi: "CHEBI:17460" + - kegg.compound: "C00248" + - metanetx.chemical: "MNXM1024" + - sbo: "SBO:0000247" - !!omap - id: "s_1098" - name: "lipoylprotein" @@ -10149,11 +10149,11 @@ - formula: "C8H14NOS2R" - charge: 0 - annotation: !!omap - - bigg.metabolite: "lpro" - - chebi: "CHEBI:15804" - - kegg.compound: "C02051" - - metanetx.chemical: "MNXM998" - - sbo: "SBO:0000247" + - bigg.metabolite: "lpro" + - chebi: "CHEBI:15804" + - kegg.compound: "C02051" + - metanetx.chemical: "MNXM998" + - sbo: "SBO:0000247" - !!omap - id: "s_1099" - name: "Lys-tRNA(Lys)" @@ -10161,11 +10161,11 @@ - formula: "C6H15N2OR" - charge: 2 - annotation: !!omap - - bigg.metabolite: "lystrna" - - chebi: "CHEBI:16047" - - kegg.compound: "C01931" - - metanetx.chemical: "MNXM89922" - - sbo: "SBO:0000247" + - bigg.metabolite: "lystrna" + - chebi: "CHEBI:16047" + - kegg.compound: "C01931" + - metanetx.chemical: "MNXM89922" + - sbo: "SBO:0000247" - !!omap - id: "s_1100" - name: "Lys-tRNA(Lys)" @@ -10173,11 +10173,11 @@ - formula: "C6H15N2OR" - charge: 2 - annotation: !!omap - - bigg.metabolite: "lystrna" - - chebi: "CHEBI:16047" - - kegg.compound: "C01931" - - metanetx.chemical: "MNXM89922" - - sbo: "SBO:0000247" + - bigg.metabolite: "lystrna" + - chebi: "CHEBI:16047" + - kegg.compound: "C01931" + - metanetx.chemical: "MNXM89922" + - sbo: "SBO:0000247" - !!omap - id: "s_1101" - name: "malonyl-CoA" @@ -10185,11 +10185,11 @@ - formula: "C24H33N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: "malcoa" - - chebi: "CHEBI:57384" - - kegg.compound: "C00083" - - metanetx.chemical: "MNXM40" - - sbo: "SBO:0000247" + - bigg.metabolite: "malcoa" + - chebi: "CHEBI:57384" + - kegg.compound: "C00083" + - metanetx.chemical: "MNXM40" + - sbo: "SBO:0000247" - !!omap - id: "s_1104" - name: "malonyl-CoA" @@ -10197,11 +10197,11 @@ - formula: "C24H33N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: "malcoa" - - chebi: "CHEBI:57384" - - kegg.compound: "C00083" - - metanetx.chemical: "MNXM40" - - sbo: "SBO:0000247" + - bigg.metabolite: "malcoa" + - chebi: "CHEBI:57384" + - kegg.compound: "C00083" + - metanetx.chemical: "MNXM40" + - sbo: "SBO:0000247" - !!omap - id: "s_1105" - name: "maltose" @@ -10209,11 +10209,11 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: "malt" - - chebi: "CHEBI:17306" - - kegg.compound: "C00208" - - metanetx.chemical: "MNXM165" - - sbo: "SBO:0000247" + - bigg.metabolite: "malt" + - chebi: "CHEBI:17306" + - kegg.compound: "C00208" + - metanetx.chemical: "MNXM165" + - sbo: "SBO:0000247" - !!omap - id: "s_1106" - name: "maltose" @@ -10221,11 +10221,11 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: "malt" - - chebi: "CHEBI:17306" - - kegg.compound: "C00208" - - metanetx.chemical: "MNXM165" - - sbo: "SBO:0000247" + - bigg.metabolite: "malt" + - chebi: "CHEBI:17306" + - kegg.compound: "C00208" + - metanetx.chemical: "MNXM165" + - sbo: "SBO:0000247" - !!omap - id: "s_1107" - name: "mannan" @@ -10233,11 +10233,11 @@ - formula: "C6H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mannan" - - chebi: "CHEBI:28808" - - kegg.compound: "C00464" - - metanetx.chemical: "MNXM2020" - - sbo: "SBO:0000247" + - bigg.metabolite: "mannan" + - chebi: "CHEBI:28808" + - kegg.compound: "C00464" + - metanetx.chemical: "MNXM2020" + - sbo: "SBO:0000247" - !!omap - id: "s_1108" - name: "mannan" @@ -10245,11 +10245,11 @@ - formula: "C6H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mannan" - - chebi: "CHEBI:28808" - - kegg.compound: "C00464" - - metanetx.chemical: "MNXM2020" - - sbo: "SBO:0000247" + - bigg.metabolite: "mannan" + - chebi: "CHEBI:28808" + - kegg.compound: "C00464" + - metanetx.chemical: "MNXM2020" + - sbo: "SBO:0000247" - !!omap - id: "s_1109" - name: "mannose-(1D-myo-inositol 1-phosphate)2" @@ -10257,10 +10257,10 @@ - formula: "C18H34O22P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "man2mi1p__D" - - chebi: "CHEBI:60449" - - metanetx.chemical: "MNXM61128" - - sbo: "SBO:0000247" + - bigg.metabolite: "man2mi1p__D" + - chebi: "CHEBI:60449" + - metanetx.chemical: "MNXM61128" + - sbo: "SBO:0000247" - !!omap - id: "s_1110" - name: "mannose-(1D-myo-inositol 1-phosphate)2" @@ -10268,10 +10268,10 @@ - formula: "C18H34O22P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "man2mi1p__D" - - chebi: "CHEBI:60449" - - metanetx.chemical: "MNXM61128" - - sbo: "SBO:0000247" + - bigg.metabolite: "man2mi1p__D" + - chebi: "CHEBI:60449" + - metanetx.chemical: "MNXM61128" + - sbo: "SBO:0000247" - !!omap - id: "s_1111" - name: "mannose-1D-myo-inositol 1-phosphate" @@ -10279,10 +10279,10 @@ - formula: "C12H23O14P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "manmi1p__D" - - chebi: "CHEBI:60448" - - metanetx.chemical: "MNXM61129" - - sbo: "SBO:0000247" + - bigg.metabolite: "manmi1p__D" + - chebi: "CHEBI:60448" + - metanetx.chemical: "MNXM61129" + - sbo: "SBO:0000247" - !!omap - id: "s_1112" - name: "mannose-1D-myo-inositol 1-phosphate" @@ -10290,19 +10290,19 @@ - formula: "C12H23O14P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "manmi1p__D" - - chebi: "CHEBI:60448" - - metanetx.chemical: "MNXM61129" - - sbo: "SBO:0000247" + - bigg.metabolite: "manmi1p__D" + - chebi: "CHEBI:60448" + - metanetx.chemical: "MNXM61129" + - sbo: "SBO:0000247" - !!omap - id: "s_1114" - name: "mannosylinositol phosphorylceramide backbone" - compartment: "g" - formula: "C12H22NO15P" - annotation: !!omap - - chebi: "CHEBI:25168" - - metanetx.chemical: "MNXM12216" - - sbo: "SBO:0000649" + - chebi: "CHEBI:25168" + - metanetx.chemical: "MNXM12216" + - sbo: "SBO:0000649" - !!omap - id: "s_1116" - name: "mannosylinositol phosphorylceramide A (C24)" @@ -10310,9 +10310,9 @@ - formula: "C54H106NO16P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60416" - - metanetx.chemical: "MNXM61061" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60416" + - metanetx.chemical: "MNXM61061" + - sbo: "SBO:0000247" - !!omap - id: "s_1117" - name: "mannosylinositol phosphorylceramide A (C24)" @@ -10320,9 +10320,9 @@ - formula: "C54H106NO16P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60416" - - metanetx.chemical: "MNXM61061" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60416" + - metanetx.chemical: "MNXM61061" + - sbo: "SBO:0000247" - !!omap - id: "s_1118" - name: "mannosylinositol phosphorylceramide A (C24)" @@ -10330,9 +10330,9 @@ - formula: "C54H106NO16P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60416" - - metanetx.chemical: "MNXM61061" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60416" + - metanetx.chemical: "MNXM61061" + - sbo: "SBO:0000247" - !!omap - id: "s_1119" - name: "mannosylinositol phosphorylceramide A (C26)" @@ -10340,9 +10340,9 @@ - formula: "C56H110NO16P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62706" - - metanetx.chemical: "MNXM106432" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62706" + - metanetx.chemical: "MNXM106432" + - sbo: "SBO:0000247" - !!omap - id: "s_1120" - name: "mannosylinositol phosphorylceramide A (C26)" @@ -10350,9 +10350,9 @@ - formula: "C56H110NO16P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62706" - - metanetx.chemical: "MNXM106432" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62706" + - metanetx.chemical: "MNXM106432" + - sbo: "SBO:0000247" - !!omap - id: "s_1121" - name: "mannosylinositol phosphorylceramide A (C26)" @@ -10360,9 +10360,9 @@ - formula: "C56H110NO16P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62706" - - metanetx.chemical: "MNXM106432" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62706" + - metanetx.chemical: "MNXM106432" + - sbo: "SBO:0000247" - !!omap - id: "s_1122" - name: "mannosylinositol phosphorylceramide B (C24)" @@ -10370,9 +10370,9 @@ - formula: "C54H106NO17P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60420" - - metanetx.chemical: "MNXM61066" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60420" + - metanetx.chemical: "MNXM61066" + - sbo: "SBO:0000247" - !!omap - id: "s_1123" - name: "mannosylinositol phosphorylceramide B (C24)" @@ -10380,9 +10380,9 @@ - formula: "C54H106NO17P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60420" - - metanetx.chemical: "MNXM61066" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60420" + - metanetx.chemical: "MNXM61066" + - sbo: "SBO:0000247" - !!omap - id: "s_1124" - name: "mannosylinositol phosphorylceramide B (C24)" @@ -10390,9 +10390,9 @@ - formula: "C54H106NO17P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60420" - - metanetx.chemical: "MNXM61066" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60420" + - metanetx.chemical: "MNXM61066" + - sbo: "SBO:0000247" - !!omap - id: "s_1125" - name: "mannosylinositol phosphorylceramide B (C26)" @@ -10400,9 +10400,9 @@ - formula: "C56H110NO17P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62710" - - metanetx.chemical: "MNXM61056" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62710" + - metanetx.chemical: "MNXM61056" + - sbo: "SBO:0000247" - !!omap - id: "s_1126" - name: "mannosylinositol phosphorylceramide B (C26)" @@ -10410,9 +10410,9 @@ - formula: "C56H110NO17P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62710" - - metanetx.chemical: "MNXM61056" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62710" + - metanetx.chemical: "MNXM61056" + - sbo: "SBO:0000247" - !!omap - id: "s_1127" - name: "mannosylinositol phosphorylceramide B (C26)" @@ -10420,9 +10420,9 @@ - formula: "C56H110NO17P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62710" - - metanetx.chemical: "MNXM61056" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62710" + - metanetx.chemical: "MNXM61056" + - sbo: "SBO:0000247" - !!omap - id: "s_1128" - name: "mannosylinositol phosphorylceramide B' (C24)" @@ -10430,9 +10430,9 @@ - formula: "C54H106NO17P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60418" - - metanetx.chemical: "MNXM61060" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60418" + - metanetx.chemical: "MNXM61060" + - sbo: "SBO:0000247" - !!omap - id: "s_1129" - name: "mannosylinositol phosphorylceramide B' (C24)" @@ -10440,9 +10440,9 @@ - formula: "C54H106NO17P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60418" - - metanetx.chemical: "MNXM61060" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60418" + - metanetx.chemical: "MNXM61060" + - sbo: "SBO:0000247" - !!omap - id: "s_1130" - name: "mannosylinositol phosphorylceramide B' (C24)" @@ -10450,9 +10450,9 @@ - formula: "C54H106NO17P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60418" - - metanetx.chemical: "MNXM61060" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60418" + - metanetx.chemical: "MNXM61060" + - sbo: "SBO:0000247" - !!omap - id: "s_1131" - name: "mannosylinositol phosphorylceramide B' (C26)" @@ -10460,9 +10460,9 @@ - formula: "C56H110NO17P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62708" - - metanetx.chemical: "MNXM61051" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62708" + - metanetx.chemical: "MNXM61051" + - sbo: "SBO:0000247" - !!omap - id: "s_1132" - name: "mannosylinositol phosphorylceramide B' (C26)" @@ -10470,9 +10470,9 @@ - formula: "C56H110NO17P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62708" - - metanetx.chemical: "MNXM61051" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62708" + - metanetx.chemical: "MNXM61051" + - sbo: "SBO:0000247" - !!omap - id: "s_1133" - name: "mannosylinositol phosphorylceramide B' (C26)" @@ -10480,9 +10480,9 @@ - formula: "C56H110NO17P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62708" - - metanetx.chemical: "MNXM61051" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62708" + - metanetx.chemical: "MNXM61051" + - sbo: "SBO:0000247" - !!omap - id: "s_1134" - name: "mannosylinositol phosphorylceramide C (C24)" @@ -10490,9 +10490,9 @@ - formula: "C54H106NO18P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60422" - - metanetx.chemical: "MNXM61065" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60422" + - metanetx.chemical: "MNXM61065" + - sbo: "SBO:0000247" - !!omap - id: "s_1135" - name: "mannosylinositol phosphorylceramide C (C24)" @@ -10500,9 +10500,9 @@ - formula: "C54H106NO18P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60422" - - metanetx.chemical: "MNXM61065" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60422" + - metanetx.chemical: "MNXM61065" + - sbo: "SBO:0000247" - !!omap - id: "s_1136" - name: "mannosylinositol phosphorylceramide C (C24)" @@ -10510,9 +10510,9 @@ - formula: "C54H106NO18P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60422" - - metanetx.chemical: "MNXM61065" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60422" + - metanetx.chemical: "MNXM61065" + - sbo: "SBO:0000247" - !!omap - id: "s_1137" - name: "mannosylinositol phosphorylceramide C (C26)" @@ -10520,9 +10520,9 @@ - formula: "C56H110NO18P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62712" - - metanetx.chemical: "MNXM61055" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62712" + - metanetx.chemical: "MNXM61055" + - sbo: "SBO:0000247" - !!omap - id: "s_1138" - name: "mannosylinositol phosphorylceramide C (C26)" @@ -10530,9 +10530,9 @@ - formula: "C56H110NO18P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62712" - - metanetx.chemical: "MNXM61055" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62712" + - metanetx.chemical: "MNXM61055" + - sbo: "SBO:0000247" - !!omap - id: "s_1139" - name: "mannosylinositol phosphorylceramide C (C26)" @@ -10540,9 +10540,9 @@ - formula: "C56H110NO18P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62712" - - metanetx.chemical: "MNXM61055" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62712" + - metanetx.chemical: "MNXM61055" + - sbo: "SBO:0000247" - !!omap - id: "s_1140" - name: "mannosylinositol phosphorylceramide D (C24)" @@ -10550,9 +10550,9 @@ - formula: "C54H106NO19P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60435" - - metanetx.chemical: "MNXM61064" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60435" + - metanetx.chemical: "MNXM61064" + - sbo: "SBO:0000247" - !!omap - id: "s_1141" - name: "mannosylinositol phosphorylceramide D (C24)" @@ -10560,9 +10560,9 @@ - formula: "C54H106NO19P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60435" - - metanetx.chemical: "MNXM61064" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60435" + - metanetx.chemical: "MNXM61064" + - sbo: "SBO:0000247" - !!omap - id: "s_1142" - name: "mannosylinositol phosphorylceramide D (C24)" @@ -10570,9 +10570,9 @@ - formula: "C54H106NO19P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60435" - - metanetx.chemical: "MNXM61064" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60435" + - metanetx.chemical: "MNXM61064" + - sbo: "SBO:0000247" - !!omap - id: "s_1143" - name: "mannosylinositol phosphorylceramide D (C26)" @@ -10580,9 +10580,9 @@ - formula: "C56H110NO19P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62683" - - metanetx.chemical: "MNXM61054" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62683" + - metanetx.chemical: "MNXM61054" + - sbo: "SBO:0000247" - !!omap - id: "s_1144" - name: "mannosylinositol phosphorylceramide D (C26)" @@ -10590,9 +10590,9 @@ - formula: "C56H110NO19P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62683" - - metanetx.chemical: "MNXM61054" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62683" + - metanetx.chemical: "MNXM61054" + - sbo: "SBO:0000247" - !!omap - id: "s_1145" - name: "mannosylinositol phosphorylceramide D (C26)" @@ -10600,9 +10600,9 @@ - formula: "C56H110NO19P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62683" - - metanetx.chemical: "MNXM61054" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62683" + - metanetx.chemical: "MNXM61054" + - sbo: "SBO:0000247" - !!omap - id: "s_1148" - name: "Met-tRNA(Met)" @@ -10610,11 +10610,11 @@ - formula: "C5H11NOSR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "mettrna" - - chebi: "CHEBI:16635" - - kegg.compound: "C02430" - - metanetx.chemical: "MNXM90636" - - sbo: "SBO:0000247" + - bigg.metabolite: "mettrna" + - chebi: "CHEBI:16635" + - kegg.compound: "C02430" + - metanetx.chemical: "MNXM90636" + - sbo: "SBO:0000247" - !!omap - id: "s_1149" - name: "Met-tRNA(Met)" @@ -10622,11 +10622,11 @@ - formula: "C5H11NOSR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "mettrna" - - chebi: "CHEBI:16635" - - kegg.compound: "C02430" - - metanetx.chemical: "MNXM90636" - - sbo: "SBO:0000247" + - bigg.metabolite: "mettrna" + - chebi: "CHEBI:16635" + - kegg.compound: "C02430" + - metanetx.chemical: "MNXM90636" + - sbo: "SBO:0000247" - !!omap - id: "s_1150" - name: "methanethiol" @@ -10634,11 +10634,11 @@ - formula: "CH4S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ch4s" - - chebi: "CHEBI:16007" - - kegg.compound: "C00409" - - metanetx.chemical: "MNXM652" - - sbo: "SBO:0000247" + - bigg.metabolite: "ch4s" + - chebi: "CHEBI:16007" + - kegg.compound: "C00409" + - metanetx.chemical: "MNXM652" + - sbo: "SBO:0000247" - !!omap - id: "s_1151" - name: "methylglyoxal" @@ -10646,11 +10646,11 @@ - formula: "C3H4O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mthgxl" - - chebi: "CHEBI:17158" - - kegg.compound: "C00546" - - metanetx.chemical: "MNXM310" - - sbo: "SBO:0000247" + - bigg.metabolite: "mthgxl" + - chebi: "CHEBI:17158" + - kegg.compound: "C00546" + - metanetx.chemical: "MNXM310" + - sbo: "SBO:0000247" - !!omap - id: "s_1153" - name: "myo-inositol" @@ -10658,11 +10658,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "inost" - - chebi: "CHEBI:17268" - - kegg.compound: "C00137" - - metanetx.chemical: "MNXM127" - - sbo: "SBO:0000247" + - bigg.metabolite: "inost" + - chebi: "CHEBI:17268" + - kegg.compound: "C00137" + - metanetx.chemical: "MNXM127" + - sbo: "SBO:0000247" - !!omap - id: "s_1154" - name: "myo-inositol" @@ -10670,11 +10670,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "inost" - - chebi: "CHEBI:17268" - - kegg.compound: "C00137" - - metanetx.chemical: "MNXM127" - - sbo: "SBO:0000247" + - bigg.metabolite: "inost" + - chebi: "CHEBI:17268" + - kegg.compound: "C00137" + - metanetx.chemical: "MNXM127" + - sbo: "SBO:0000247" - !!omap - id: "s_1156" - name: "myo-inositol 1,3,4,5,6-pentakisphosphate" @@ -10682,11 +10682,11 @@ - formula: "C6H7O21P5" - charge: -10 - annotation: !!omap - - bigg.metabolite: "inospp1" - - chebi: "CHEBI:57733" - - kegg.compound: "C01284" - - metanetx.chemical: "MNXM89719" - - sbo: "SBO:0000247" + - bigg.metabolite: "inospp1" + - chebi: "CHEBI:57733" + - kegg.compound: "C01284" + - metanetx.chemical: "MNXM89719" + - sbo: "SBO:0000247" - !!omap - id: "s_1157" - name: "myo-inositol 1,3,4,5,6-pentakisphosphate" @@ -10694,11 +10694,11 @@ - formula: "C6H7O21P5" - charge: -10 - annotation: !!omap - - bigg.metabolite: "inospp1" - - chebi: "CHEBI:57733" - - kegg.compound: "C01284" - - metanetx.chemical: "MNXM89719" - - sbo: "SBO:0000247" + - bigg.metabolite: "inospp1" + - chebi: "CHEBI:57733" + - kegg.compound: "C01284" + - metanetx.chemical: "MNXM89719" + - sbo: "SBO:0000247" - !!omap - id: "s_1158" - name: "myo-inositol hexakisphosphate" @@ -10706,11 +10706,11 @@ - formula: "C6H6O24P6" - charge: -12 - annotation: !!omap - - bigg.metabolite: "minohp" - - chebi: "CHEBI:58130" - - kegg.compound: "C01204" - - metanetx.chemical: "MNXM491" - - sbo: "SBO:0000247" + - bigg.metabolite: "minohp" + - chebi: "CHEBI:58130" + - kegg.compound: "C01204" + - metanetx.chemical: "MNXM491" + - sbo: "SBO:0000247" - !!omap - id: "s_1159" - name: "myo-inositol hexakisphosphate" @@ -10718,11 +10718,11 @@ - formula: "C6H6O24P6" - charge: -12 - annotation: !!omap - - bigg.metabolite: "minohp" - - chebi: "CHEBI:58130" - - kegg.compound: "C01204" - - metanetx.chemical: "MNXM491" - - sbo: "SBO:0000247" + - bigg.metabolite: "minohp" + - chebi: "CHEBI:58130" + - kegg.compound: "C01204" + - metanetx.chemical: "MNXM491" + - sbo: "SBO:0000247" - !!omap - id: "s_1161" - name: "myristate" @@ -10730,11 +10730,11 @@ - formula: "C14H27O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ttdca" - - chebi: "CHEBI:30807" - - kegg.compound: "C06424" - - metanetx.chemical: "MNXM314" - - sbo: "SBO:0000247" + - bigg.metabolite: "ttdca" + - chebi: "CHEBI:30807" + - kegg.compound: "C06424" + - metanetx.chemical: "MNXM314" + - sbo: "SBO:0000247" - !!omap - id: "s_1163" - name: "myristate" @@ -10742,11 +10742,11 @@ - formula: "C14H27O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ttdca" - - chebi: "CHEBI:30807" - - kegg.compound: "C06424" - - metanetx.chemical: "MNXM314" - - sbo: "SBO:0000247" + - bigg.metabolite: "ttdca" + - chebi: "CHEBI:30807" + - kegg.compound: "C06424" + - metanetx.chemical: "MNXM314" + - sbo: "SBO:0000247" - !!omap - id: "s_1166" - name: "myristate" @@ -10754,11 +10754,11 @@ - formula: "C14H27O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ttdca" - - chebi: "CHEBI:30807" - - kegg.compound: "C06424" - - metanetx.chemical: "MNXM314" - - sbo: "SBO:0000247" + - bigg.metabolite: "ttdca" + - chebi: "CHEBI:30807" + - kegg.compound: "C06424" + - metanetx.chemical: "MNXM314" + - sbo: "SBO:0000247" - !!omap - id: "s_1176" - name: "myristoyl-CoA" @@ -10766,11 +10766,11 @@ - formula: "C35H58N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "tdcoa" - - chebi: "CHEBI:57385" - - kegg.compound: "C02593" - - metanetx.chemical: "MNXM224" - - sbo: "SBO:0000247" + - bigg.metabolite: "tdcoa" + - chebi: "CHEBI:57385" + - kegg.compound: "C02593" + - metanetx.chemical: "MNXM224" + - sbo: "SBO:0000247" - !!omap - id: "s_1179" - name: "myristoyl-CoA" @@ -10778,11 +10778,11 @@ - formula: "C35H58N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "tdcoa" - - chebi: "CHEBI:57385" - - kegg.compound: "C02593" - - metanetx.chemical: "MNXM224" - - sbo: "SBO:0000247" + - bigg.metabolite: "tdcoa" + - chebi: "CHEBI:57385" + - kegg.compound: "C02593" + - metanetx.chemical: "MNXM224" + - sbo: "SBO:0000247" - !!omap - id: "s_1180" - name: "N(1)-acetylspermidine" @@ -10790,11 +10790,11 @@ - formula: "C9H23N3O" - charge: 2 - annotation: !!omap - - bigg.metabolite: "N1aspmd" - - chebi: "CHEBI:58324" - - kegg.compound: "C00612" - - metanetx.chemical: "MNXM501" - - sbo: "SBO:0000247" + - bigg.metabolite: "N1aspmd" + - chebi: "CHEBI:58324" + - kegg.compound: "C00612" + - metanetx.chemical: "MNXM501" + - sbo: "SBO:0000247" - !!omap - id: "s_1181" - name: "N(1)-acetylspermine" @@ -10802,11 +10802,11 @@ - formula: "C12H31N4O" - charge: 3 - annotation: !!omap - - bigg.metabolite: "N1sprm" - - chebi: "CHEBI:58101" - - kegg.compound: "C02567" - - metanetx.chemical: "MNXM600" - - sbo: "SBO:0000247" + - bigg.metabolite: "N1sprm" + - chebi: "CHEBI:58101" + - kegg.compound: "C02567" + - metanetx.chemical: "MNXM600" + - sbo: "SBO:0000247" - !!omap - id: "s_1182" - name: "N(2)-acetyl-L-ornithine" @@ -10814,11 +10814,11 @@ - formula: "C7H14N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "acorn" - - chebi: "CHEBI:16543" - - kegg.compound: "C00437" - - metanetx.chemical: "MNXM817" - - sbo: "SBO:0000247" + - bigg.metabolite: "acorn" + - chebi: "CHEBI:16543" + - kegg.compound: "C00437" + - metanetx.chemical: "MNXM817" + - sbo: "SBO:0000247" - !!omap - id: "s_1183" - name: "N(pros)-methyl-L-histidine" @@ -10826,11 +10826,11 @@ - formula: "C7H11N3O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "NPmehis" - - chebi: "CHEBI:27596" - - kegg.compound: "C01152" - - metanetx.chemical: "MNXM722872" - - sbo: "SBO:0000247" + - bigg.metabolite: "NPmehis" + - chebi: "CHEBI:27596" + - kegg.compound: "C01152" + - metanetx.chemical: "MNXM722872" + - sbo: "SBO:0000247" - !!omap - id: "s_1184" - name: "N,N'-diacetylchitobiosyldiphosphodolichol" @@ -10838,11 +10838,11 @@ - formula: "C36H62N2O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "chito2pdol" - - chebi: "CHEBI:12427" - - kegg.compound: "C04537" - - metanetx.chemical: "MNXM63078" - - sbo: "SBO:0000247" + - bigg.metabolite: "chito2pdol" + - chebi: "CHEBI:12427" + - kegg.compound: "C04537" + - metanetx.chemical: "MNXM63078" + - sbo: "SBO:0000247" - !!omap - id: "s_1185" - name: "N,N'-diformyldityrosine" @@ -10850,9 +10850,9 @@ - formula: "C20H22N2O8" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:50611" - - metanetx.chemical: "MNXM147516" - - sbo: "SBO:0000247" + - chebi: "CHEBI:50611" + - metanetx.chemical: "MNXM147516" + - sbo: "SBO:0000247" - !!omap - id: "s_1186" - name: "N,N'-diformyldityrosine" @@ -10860,9 +10860,9 @@ - formula: "C20H22N2O8" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:50611" - - metanetx.chemical: "MNXM147516" - - sbo: "SBO:0000247" + - chebi: "CHEBI:50611" + - metanetx.chemical: "MNXM147516" + - sbo: "SBO:0000247" - !!omap - id: "s_1187" - name: "N-(5-phospho-beta-D-ribosyl)anthranilate" @@ -10870,11 +10870,11 @@ - formula: "C12H13NO9P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "pran" - - chebi: "CHEBI:18277" - - kegg.compound: "C04302" - - metanetx.chemical: "MNXM1489" - - sbo: "SBO:0000247" + - bigg.metabolite: "pran" + - chebi: "CHEBI:18277" + - kegg.compound: "C04302" + - metanetx.chemical: "MNXM1489" + - sbo: "SBO:0000247" - !!omap - id: "s_1188" - name: "N-[(R)-4-phosphonopantothenoyl]-L-cysteine" @@ -10882,11 +10882,11 @@ - formula: "C12H20N2O9PS" - charge: -3 - annotation: !!omap - - bigg.metabolite: "4ppcys" - - chebi: "CHEBI:59458" - - kegg.compound: "C04352" - - metanetx.chemical: "MNXM483" - - sbo: "SBO:0000247" + - bigg.metabolite: "4ppcys" + - chebi: "CHEBI:59458" + - kegg.compound: "C04352" + - metanetx.chemical: "MNXM483" + - sbo: "SBO:0000247" - !!omap - id: "s_1189" - name: "N-acetyl-alpha-D-glucosamine 1-phosphate" @@ -10894,11 +10894,11 @@ - formula: "C8H14NO9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "acgal1p" - - chebi: "CHEBI:16446" - - kegg.compound: "C04501" - - metanetx.chemical: "MNXM340" - - sbo: "SBO:0000247" + - bigg.metabolite: "acgal1p" + - chebi: "CHEBI:16446" + - kegg.compound: "C04501" + - metanetx.chemical: "MNXM340" + - sbo: "SBO:0000247" - !!omap - id: "s_1190" - name: "N-acetyl-D-glucosamine 6-phosphate" @@ -10906,11 +10906,11 @@ - formula: "C8H14NO9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "acgam6p" - - chebi: "CHEBI:57513" - - kegg.compound: "C00357" - - metanetx.chemical: "MNXM63556" - - sbo: "SBO:0000247" + - bigg.metabolite: "acgam6p" + - chebi: "CHEBI:57513" + - kegg.compound: "C00357" + - metanetx.chemical: "MNXM63556" + - sbo: "SBO:0000247" - !!omap - id: "s_1191" - name: "N-acetyl-L-gamma-glutamyl phosphate" @@ -10918,11 +10918,11 @@ - formula: "C7H9NO8P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "acg5p" - - chebi: "CHEBI:57936" - - kegg.compound: "C04133" - - metanetx.chemical: "MNXM1384" - - sbo: "SBO:0000247" + - bigg.metabolite: "acg5p" + - chebi: "CHEBI:57936" + - kegg.compound: "C04133" + - metanetx.chemical: "MNXM1384" + - sbo: "SBO:0000247" - !!omap - id: "s_1192" - name: "N-acetyl-L-glutamate" @@ -10930,11 +10930,11 @@ - formula: "C7H9NO5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "acglu" - - chebi: "CHEBI:44337" - - kegg.compound: "C00624" - - metanetx.chemical: "MNXM730" - - sbo: "SBO:0000247" + - bigg.metabolite: "acglu" + - chebi: "CHEBI:44337" + - kegg.compound: "C00624" + - metanetx.chemical: "MNXM730" + - sbo: "SBO:0000247" - !!omap - id: "s_1193" - name: "N-acetylputrescine" @@ -10942,11 +10942,11 @@ - formula: "C6H15N2O" - charge: 1 - annotation: !!omap - - bigg.metabolite: "aprut" - - chebi: "CHEBI:58263" - - kegg.compound: "C02714" - - metanetx.chemical: "MNXM1153" - - sbo: "SBO:0000247" + - bigg.metabolite: "aprut" + - chebi: "CHEBI:58263" + - kegg.compound: "C02714" + - metanetx.chemical: "MNXM1153" + - sbo: "SBO:0000247" - !!omap - id: "s_1194" - name: "N-carbamoyl-L-aspartate" @@ -10954,11 +10954,11 @@ - formula: "C5H6N2O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "cbasp" - - chebi: "CHEBI:32814" - - kegg.compound: "C00438" - - metanetx.chemical: "MNXM465" - - sbo: "SBO:0000247" + - bigg.metabolite: "cbasp" + - chebi: "CHEBI:32814" + - kegg.compound: "C00438" + - metanetx.chemical: "MNXM465" + - sbo: "SBO:0000247" - !!omap - id: "s_1195" - name: "N-formyl-L-kynurenine" @@ -10966,11 +10966,11 @@ - formula: "C11H12N2O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "Lfmkynr" - - chebi: "CHEBI:30249" - - kegg.compound: "C02700" - - metanetx.chemical: "MNXM1288" - - sbo: "SBO:0000247" + - bigg.metabolite: "Lfmkynr" + - chebi: "CHEBI:30249" + - kegg.compound: "C02700" + - metanetx.chemical: "MNXM1288" + - sbo: "SBO:0000247" - !!omap - id: "s_1196" - name: "N-formyl-L-tyrosine" @@ -10978,10 +10978,10 @@ - formula: "C10H10NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "Nfortyr" - - chebi: "CHEBI:50603" - - metanetx.chemical: "MNXM63755" - - sbo: "SBO:0000247" + - bigg.metabolite: "Nfortyr" + - chebi: "CHEBI:50603" + - metanetx.chemical: "MNXM63755" + - sbo: "SBO:0000247" - !!omap - id: "s_1198" - name: "NAD" @@ -10989,11 +10989,11 @@ - formula: "C21H26N7O14P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nad" - - chebi: "CHEBI:57540" - - kegg.compound: "C00003" - - metanetx.chemical: "MNXM8" - - sbo: "SBO:0000247" + - bigg.metabolite: "nad" + - chebi: "CHEBI:57540" + - kegg.compound: "C00003" + - metanetx.chemical: "MNXM8" + - sbo: "SBO:0000247" - !!omap - id: "s_1199" - name: "NAD" @@ -11001,11 +11001,11 @@ - formula: "C21H26N7O14P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nad" - - chebi: "CHEBI:57540" - - kegg.compound: "C00003" - - metanetx.chemical: "MNXM8" - - sbo: "SBO:0000247" + - bigg.metabolite: "nad" + - chebi: "CHEBI:57540" + - kegg.compound: "C00003" + - metanetx.chemical: "MNXM8" + - sbo: "SBO:0000247" - !!omap - id: "s_1200" - name: "NAD" @@ -11013,11 +11013,11 @@ - formula: "C21H26N7O14P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nad" - - chebi: "CHEBI:57540" - - kegg.compound: "C00003" - - metanetx.chemical: "MNXM8" - - sbo: "SBO:0000247" + - bigg.metabolite: "nad" + - chebi: "CHEBI:57540" + - kegg.compound: "C00003" + - metanetx.chemical: "MNXM8" + - sbo: "SBO:0000247" - !!omap - id: "s_1201" - name: "NAD" @@ -11025,11 +11025,11 @@ - formula: "C21H26N7O14P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nad" - - chebi: "CHEBI:57540" - - kegg.compound: "C00003" - - metanetx.chemical: "MNXM8" - - sbo: "SBO:0000247" + - bigg.metabolite: "nad" + - chebi: "CHEBI:57540" + - kegg.compound: "C00003" + - metanetx.chemical: "MNXM8" + - sbo: "SBO:0000247" - !!omap - id: "s_1202" - name: "NAD" @@ -11037,11 +11037,11 @@ - formula: "C21H26N7O14P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nad" - - chebi: "CHEBI:57540" - - kegg.compound: "C00003" - - metanetx.chemical: "MNXM8" - - sbo: "SBO:0000247" + - bigg.metabolite: "nad" + - chebi: "CHEBI:57540" + - kegg.compound: "C00003" + - metanetx.chemical: "MNXM8" + - sbo: "SBO:0000247" - !!omap - id: "s_1203" - name: "NADH" @@ -11049,11 +11049,11 @@ - formula: "C21H27N7O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "nadh" - - chebi: "CHEBI:57945" - - kegg.compound: "C00004" - - metanetx.chemical: "MNXM10" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadh" + - chebi: "CHEBI:57945" + - kegg.compound: "C00004" + - metanetx.chemical: "MNXM10" + - sbo: "SBO:0000247" - !!omap - id: "s_1204" - name: "NADH" @@ -11061,11 +11061,11 @@ - formula: "C21H27N7O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "nadh" - - chebi: "CHEBI:57945" - - kegg.compound: "C00004" - - metanetx.chemical: "MNXM10" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadh" + - chebi: "CHEBI:57945" + - kegg.compound: "C00004" + - metanetx.chemical: "MNXM10" + - sbo: "SBO:0000247" - !!omap - id: "s_1205" - name: "NADH" @@ -11073,11 +11073,11 @@ - formula: "C21H27N7O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "nadh" - - chebi: "CHEBI:57945" - - kegg.compound: "C00004" - - metanetx.chemical: "MNXM10" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadh" + - chebi: "CHEBI:57945" + - kegg.compound: "C00004" + - metanetx.chemical: "MNXM10" + - sbo: "SBO:0000247" - !!omap - id: "s_1206" - name: "NADH" @@ -11085,11 +11085,11 @@ - formula: "C21H27N7O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "nadh" - - chebi: "CHEBI:57945" - - kegg.compound: "C00004" - - metanetx.chemical: "MNXM10" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadh" + - chebi: "CHEBI:57945" + - kegg.compound: "C00004" + - metanetx.chemical: "MNXM10" + - sbo: "SBO:0000247" - !!omap - id: "s_1207" - name: "NADP(+)" @@ -11097,11 +11097,11 @@ - formula: "C21H25N7O17P3" - charge: -3 - annotation: !!omap - - bigg.metabolite: "nadp" - - chebi: "CHEBI:58349" - - kegg.compound: "C00006" - - metanetx.chemical: "MNXM5" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadp" + - chebi: "CHEBI:58349" + - kegg.compound: "C00006" + - metanetx.chemical: "MNXM5" + - sbo: "SBO:0000247" - !!omap - id: "s_1208" - name: "NADP(+)" @@ -11109,11 +11109,11 @@ - formula: "C21H25N7O17P3" - charge: -3 - annotation: !!omap - - bigg.metabolite: "nadp" - - chebi: "CHEBI:58349" - - kegg.compound: "C00006" - - metanetx.chemical: "MNXM5" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadp" + - chebi: "CHEBI:58349" + - kegg.compound: "C00006" + - metanetx.chemical: "MNXM5" + - sbo: "SBO:0000247" - !!omap - id: "s_1210" - name: "NADP(+)" @@ -11121,11 +11121,11 @@ - formula: "C21H25N7O17P3" - charge: -3 - annotation: !!omap - - bigg.metabolite: "nadp" - - chebi: "CHEBI:58349" - - kegg.compound: "C00006" - - metanetx.chemical: "MNXM5" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadp" + - chebi: "CHEBI:58349" + - kegg.compound: "C00006" + - metanetx.chemical: "MNXM5" + - sbo: "SBO:0000247" - !!omap - id: "s_1211" - name: "NADP(+)" @@ -11133,11 +11133,11 @@ - formula: "C21H25N7O17P3" - charge: -3 - annotation: !!omap - - bigg.metabolite: "nadp" - - chebi: "CHEBI:58349" - - kegg.compound: "C00006" - - metanetx.chemical: "MNXM5" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadp" + - chebi: "CHEBI:58349" + - kegg.compound: "C00006" + - metanetx.chemical: "MNXM5" + - sbo: "SBO:0000247" - !!omap - id: "s_1212" - name: "NADPH" @@ -11145,11 +11145,11 @@ - formula: "C21H26N7O17P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "nadph" - - chebi: "CHEBI:57783" - - kegg.compound: "C00005" - - metanetx.chemical: "MNXM6" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadph" + - chebi: "CHEBI:57783" + - kegg.compound: "C00005" + - metanetx.chemical: "MNXM6" + - sbo: "SBO:0000247" - !!omap - id: "s_1213" - name: "NADPH" @@ -11157,11 +11157,11 @@ - formula: "C21H26N7O17P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "nadph" - - chebi: "CHEBI:57783" - - kegg.compound: "C00005" - - metanetx.chemical: "MNXM6" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadph" + - chebi: "CHEBI:57783" + - kegg.compound: "C00005" + - metanetx.chemical: "MNXM6" + - sbo: "SBO:0000247" - !!omap - id: "s_1214" - name: "NADPH" @@ -11169,11 +11169,11 @@ - formula: "C21H26N7O17P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "nadph" - - chebi: "CHEBI:57783" - - kegg.compound: "C00005" - - metanetx.chemical: "MNXM6" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadph" + - chebi: "CHEBI:57783" + - kegg.compound: "C00005" + - metanetx.chemical: "MNXM6" + - sbo: "SBO:0000247" - !!omap - id: "s_1215" - name: "NADPH" @@ -11181,11 +11181,11 @@ - formula: "C21H26N7O17P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "nadph" - - chebi: "CHEBI:57783" - - kegg.compound: "C00005" - - metanetx.chemical: "MNXM6" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadph" + - chebi: "CHEBI:57783" + - kegg.compound: "C00005" + - metanetx.chemical: "MNXM6" + - sbo: "SBO:0000247" - !!omap - id: "s_1216" - name: "nicotinamide" @@ -11193,11 +11193,11 @@ - formula: "C6H6N2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ncam" - - chebi: "CHEBI:17154" - - kegg.compound: "C00153" - - metanetx.chemical: "MNXM216" - - sbo: "SBO:0000247" + - bigg.metabolite: "ncam" + - chebi: "CHEBI:17154" + - kegg.compound: "C00153" + - metanetx.chemical: "MNXM216" + - sbo: "SBO:0000247" - !!omap - id: "s_1217" - name: "nicotinamide" @@ -11205,11 +11205,11 @@ - formula: "C6H6N2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ncam" - - chebi: "CHEBI:17154" - - kegg.compound: "C00153" - - metanetx.chemical: "MNXM216" - - sbo: "SBO:0000247" + - bigg.metabolite: "ncam" + - chebi: "CHEBI:17154" + - kegg.compound: "C00153" + - metanetx.chemical: "MNXM216" + - sbo: "SBO:0000247" - !!omap - id: "s_1218" - name: "nicotinamide riboside" @@ -11217,11 +11217,11 @@ - formula: "C11H15N2O5" - charge: 1 - annotation: !!omap - - bigg.metabolite: "rnam" - - chebi: "CHEBI:15927" - - kegg.compound: "C03150" - - metanetx.chemical: "MNXM1115" - - sbo: "SBO:0000247" + - bigg.metabolite: "rnam" + - chebi: "CHEBI:15927" + - kegg.compound: "C03150" + - metanetx.chemical: "MNXM1115" + - sbo: "SBO:0000247" - !!omap - id: "s_1219" - name: "nicotinate" @@ -11229,11 +11229,11 @@ - formula: "C6H4NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nac" - - chebi: "CHEBI:32544" - - kegg.compound: "C00253" - - metanetx.chemical: "MNXM274" - - sbo: "SBO:0000247" + - bigg.metabolite: "nac" + - chebi: "CHEBI:32544" + - kegg.compound: "C00253" + - metanetx.chemical: "MNXM274" + - sbo: "SBO:0000247" - !!omap - id: "s_1220" - name: "nicotinate" @@ -11241,11 +11241,11 @@ - formula: "C6H4NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nac" - - chebi: "CHEBI:32544" - - kegg.compound: "C00253" - - metanetx.chemical: "MNXM274" - - sbo: "SBO:0000247" + - bigg.metabolite: "nac" + - chebi: "CHEBI:32544" + - kegg.compound: "C00253" + - metanetx.chemical: "MNXM274" + - sbo: "SBO:0000247" - !!omap - id: "s_1221" - name: "nicotinate" @@ -11253,11 +11253,11 @@ - formula: "C6H4NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nac" - - chebi: "CHEBI:32544" - - kegg.compound: "C00253" - - metanetx.chemical: "MNXM274" - - sbo: "SBO:0000247" + - bigg.metabolite: "nac" + - chebi: "CHEBI:32544" + - kegg.compound: "C00253" + - metanetx.chemical: "MNXM274" + - sbo: "SBO:0000247" - !!omap - id: "s_1222" - name: "nicotinic acid D-ribonucleotide" @@ -11265,11 +11265,11 @@ - formula: "C11H12NO9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "nicrnt" - - chebi: "CHEBI:57502" - - kegg.compound: "C01185" - - metanetx.chemical: "MNXM194" - - sbo: "SBO:0000247" + - bigg.metabolite: "nicrnt" + - chebi: "CHEBI:57502" + - kegg.compound: "C01185" + - metanetx.chemical: "MNXM194" + - sbo: "SBO:0000247" - !!omap - id: "s_1223" - name: "nicotinic acid D-ribonucleotide" @@ -11277,11 +11277,11 @@ - formula: "C11H12NO9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "nicrnt" - - chebi: "CHEBI:57502" - - kegg.compound: "C01185" - - metanetx.chemical: "MNXM194" - - sbo: "SBO:0000247" + - bigg.metabolite: "nicrnt" + - chebi: "CHEBI:57502" + - kegg.compound: "C01185" + - metanetx.chemical: "MNXM194" + - sbo: "SBO:0000247" - !!omap - id: "s_1224" - name: "NMN" @@ -11289,11 +11289,11 @@ - formula: "C11H14N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nmn" - - chebi: "CHEBI:14649" - - kegg.compound: "C00455" - - metanetx.chemical: "MNXM355" - - sbo: "SBO:0000247" + - bigg.metabolite: "nmn" + - chebi: "CHEBI:14649" + - kegg.compound: "C00455" + - metanetx.chemical: "MNXM355" + - sbo: "SBO:0000247" - !!omap - id: "s_1225" - name: "NMN" @@ -11301,11 +11301,11 @@ - formula: "C11H14N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nmn" - - chebi: "CHEBI:14649" - - kegg.compound: "C00455" - - metanetx.chemical: "MNXM355" - - sbo: "SBO:0000247" + - bigg.metabolite: "nmn" + - chebi: "CHEBI:14649" + - kegg.compound: "C00455" + - metanetx.chemical: "MNXM355" + - sbo: "SBO:0000247" - !!omap - id: "s_1227" - name: "NMN" @@ -11313,11 +11313,11 @@ - formula: "C11H14N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nmn" - - chebi: "CHEBI:14649" - - kegg.compound: "C00455" - - metanetx.chemical: "MNXM355" - - sbo: "SBO:0000247" + - bigg.metabolite: "nmn" + - chebi: "CHEBI:14649" + - kegg.compound: "C00455" + - metanetx.chemical: "MNXM355" + - sbo: "SBO:0000247" - !!omap - id: "s_1228" - name: "NMN" @@ -11325,11 +11325,11 @@ - formula: "C11H14N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nmn" - - chebi: "CHEBI:14649" - - kegg.compound: "C00455" - - metanetx.chemical: "MNXM355" - - sbo: "SBO:0000247" + - bigg.metabolite: "nmn" + - chebi: "CHEBI:14649" + - kegg.compound: "C00455" + - metanetx.chemical: "MNXM355" + - sbo: "SBO:0000247" - !!omap - id: "s_1229" - name: "nonadecaprenyl diphosphate" @@ -11337,9 +11337,9 @@ - formula: "C95H153O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53034" - - metanetx.chemical: "MNXM64863" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53034" + - metanetx.chemical: "MNXM64863" + - sbo: "SBO:0000247" - !!omap - id: "s_1230" - name: "nonaprenyl 4-hydroxybenzoate" @@ -11347,10 +11347,10 @@ - formula: "C52H77O3" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:18162" - - kegg.compound: "C03885" - - metanetx.chemical: "MNXM2847" - - sbo: "SBO:0000247" + - chebi: "CHEBI:18162" + - kegg.compound: "C03885" + - metanetx.chemical: "MNXM2847" + - sbo: "SBO:0000247" - !!omap - id: "s_1231" - name: "nonaprenyl diphosphate" @@ -11358,10 +11358,10 @@ - formula: "C45H73O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53044" - - kegg.compound: "C04145" - - metanetx.chemical: "MNXM968" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53044" + - kegg.compound: "C04145" + - metanetx.chemical: "MNXM968" + - sbo: "SBO:0000247" - !!omap - id: "s_1232" - name: "nonaprenyl diphosphate" @@ -11369,10 +11369,10 @@ - formula: "C45H73O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53044" - - kegg.compound: "C04145" - - metanetx.chemical: "MNXM968" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53044" + - kegg.compound: "C04145" + - metanetx.chemical: "MNXM968" + - sbo: "SBO:0000247" - !!omap - id: "s_1233" - name: "O-acetyl-L-homoserine" @@ -11380,11 +11380,11 @@ - formula: "C6H11NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "achms" - - chebi: "CHEBI:16288" - - kegg.compound: "C01077" - - metanetx.chemical: "MNXM699" - - sbo: "SBO:0000247" + - bigg.metabolite: "achms" + - chebi: "CHEBI:16288" + - kegg.compound: "C01077" + - metanetx.chemical: "MNXM699" + - sbo: "SBO:0000247" - !!omap - id: "s_1234" - name: "O-acetyl-L-serine" @@ -11392,11 +11392,11 @@ - formula: "C5H9NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "acser" - - chebi: "CHEBI:17981" - - kegg.compound: "C00979" - - metanetx.chemical: "MNXM418" - - sbo: "SBO:0000247" + - bigg.metabolite: "acser" + - chebi: "CHEBI:17981" + - kegg.compound: "C00979" + - metanetx.chemical: "MNXM418" + - sbo: "SBO:0000247" - !!omap - id: "s_1235" - name: "O-acetylcarnitine" @@ -11404,11 +11404,11 @@ - formula: "C9H17NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "acrn" - - chebi: "CHEBI:57589" - - kegg.compound: "C02571" - - metanetx.chemical: "MNXM1028" - - sbo: "SBO:0000247" + - bigg.metabolite: "acrn" + - chebi: "CHEBI:57589" + - kegg.compound: "C02571" + - metanetx.chemical: "MNXM1028" + - sbo: "SBO:0000247" - !!omap - id: "s_1236" - name: "O-acetylcarnitine" @@ -11416,11 +11416,11 @@ - formula: "C9H17NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "acrn" - - chebi: "CHEBI:57589" - - kegg.compound: "C02571" - - metanetx.chemical: "MNXM1028" - - sbo: "SBO:0000247" + - bigg.metabolite: "acrn" + - chebi: "CHEBI:57589" + - kegg.compound: "C02571" + - metanetx.chemical: "MNXM1028" + - sbo: "SBO:0000247" - !!omap - id: "s_1237" - name: "O-acetylcarnitine" @@ -11428,11 +11428,11 @@ - formula: "C9H17NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "acrn" - - chebi: "CHEBI:57589" - - kegg.compound: "C02571" - - metanetx.chemical: "MNXM1028" - - sbo: "SBO:0000247" + - bigg.metabolite: "acrn" + - chebi: "CHEBI:57589" + - kegg.compound: "C02571" + - metanetx.chemical: "MNXM1028" + - sbo: "SBO:0000247" - !!omap - id: "s_1238" - name: "O-phospho-L-homoserine" @@ -11440,11 +11440,11 @@ - formula: "C4H8NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "phom" - - chebi: "CHEBI:57590" - - kegg.compound: "C01102" - - metanetx.chemical: "MNXM1334" - - sbo: "SBO:0000247" + - bigg.metabolite: "phom" + - chebi: "CHEBI:57590" + - kegg.compound: "C01102" + - metanetx.chemical: "MNXM1334" + - sbo: "SBO:0000247" - !!omap - id: "s_1239" - name: "O-phosphoethanolamine" @@ -11452,11 +11452,11 @@ - formula: "C2H7NO4P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ethamp" - - chebi: "CHEBI:58190" - - kegg.compound: "C00346" - - metanetx.chemical: "MNXM187" - - sbo: "SBO:0000247" + - bigg.metabolite: "ethamp" + - chebi: "CHEBI:58190" + - kegg.compound: "C00346" + - metanetx.chemical: "MNXM187" + - sbo: "SBO:0000247" - !!omap - id: "s_1240" - name: "O-phosphoethanolamine" @@ -11464,11 +11464,11 @@ - formula: "C2H7NO4P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ethamp" - - chebi: "CHEBI:58190" - - kegg.compound: "C00346" - - metanetx.chemical: "MNXM187" - - sbo: "SBO:0000247" + - bigg.metabolite: "ethamp" + - chebi: "CHEBI:58190" + - kegg.compound: "C00346" + - metanetx.chemical: "MNXM187" + - sbo: "SBO:0000247" - !!omap - id: "s_1241" - name: "O-succinyl-L-homoserine" @@ -11476,11 +11476,11 @@ - formula: "C8H12NO6" - charge: -1 - annotation: !!omap - - bigg.metabolite: "suchms" - - chebi: "CHEBI:57661" - - kegg.compound: "C01118" - - metanetx.chemical: "MNXM820" - - sbo: "SBO:0000247" + - bigg.metabolite: "suchms" + - chebi: "CHEBI:57661" + - kegg.compound: "C01118" + - metanetx.chemical: "MNXM820" + - sbo: "SBO:0000247" - !!omap - id: "s_1246" - name: "octadecaprenyl diphosphate" @@ -11488,9 +11488,9 @@ - formula: "C90H145O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53035" - - metanetx.chemical: "MNXM65303" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53035" + - metanetx.chemical: "MNXM65303" + - sbo: "SBO:0000247" - !!omap - id: "s_1248" - name: "octanoate" @@ -11498,11 +11498,11 @@ - formula: "C8H15O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "octa" - - chebi: "CHEBI:25646" - - kegg.compound: "C06423" - - metanetx.chemical: "MNXM750" - - sbo: "SBO:0000247" + - bigg.metabolite: "octa" + - chebi: "CHEBI:25646" + - kegg.compound: "C06423" + - metanetx.chemical: "MNXM750" + - sbo: "SBO:0000247" - !!omap - id: "s_1250" - name: "octanoate" @@ -11510,11 +11510,11 @@ - formula: "C8H15O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "octa" - - chebi: "CHEBI:25646" - - kegg.compound: "C06423" - - metanetx.chemical: "MNXM750" - - sbo: "SBO:0000247" + - bigg.metabolite: "octa" + - chebi: "CHEBI:25646" + - kegg.compound: "C06423" + - metanetx.chemical: "MNXM750" + - sbo: "SBO:0000247" - !!omap - id: "s_1253" - name: "octanoate" @@ -11522,11 +11522,11 @@ - formula: "C8H15O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "octa" - - chebi: "CHEBI:25646" - - kegg.compound: "C06423" - - metanetx.chemical: "MNXM750" - - sbo: "SBO:0000247" + - bigg.metabolite: "octa" + - chebi: "CHEBI:25646" + - kegg.compound: "C06423" + - metanetx.chemical: "MNXM750" + - sbo: "SBO:0000247" - !!omap - id: "s_1254" - name: "octanoyl-ACP" @@ -11534,10 +11534,10 @@ - formula: "C8H15OSR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:7725" - - kegg.compound: "C05752" - - metanetx.chemical: "MNXM979" - - sbo: "SBO:0000247" + - chebi: "CHEBI:7725" + - kegg.compound: "C05752" + - metanetx.chemical: "MNXM979" + - sbo: "SBO:0000247" - !!omap - id: "s_1258" - name: "octanoyl-CoA" @@ -11545,11 +11545,11 @@ - formula: "C29H46N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "occoa" - - chebi: "CHEBI:15533" - - kegg.compound: "C01944" - - metanetx.chemical: "MNXM342" - - sbo: "SBO:0000247" + - bigg.metabolite: "occoa" + - chebi: "CHEBI:15533" + - kegg.compound: "C01944" + - metanetx.chemical: "MNXM342" + - sbo: "SBO:0000247" - !!omap - id: "s_1259" - name: "octaprenyl diphosphate" @@ -11557,11 +11557,11 @@ - formula: "C40H65O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "octdp" - - chebi: "CHEBI:53045" - - kegg.compound: "C04146" - - metanetx.chemical: "MNXM811" - - sbo: "SBO:0000247" + - bigg.metabolite: "octdp" + - chebi: "CHEBI:53045" + - kegg.compound: "C04146" + - metanetx.chemical: "MNXM811" + - sbo: "SBO:0000247" - !!omap - id: "s_1260" - name: "oleate" @@ -11569,11 +11569,11 @@ - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdcea" - - chebi: "CHEBI:30823" - - kegg.compound: "C00712" - - metanetx.chemical: "MNXM306" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - id: "s_1262" - name: "oleoyl-CoA" @@ -11581,11 +11581,11 @@ - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ocdce9coa" - - chebi: "CHEBI:57387" - - kegg.compound: "C00510" - - metanetx.chemical: "MNXM686" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdce9coa" + - chebi: "CHEBI:57387" + - kegg.compound: "C00510" + - metanetx.chemical: "MNXM686" + - sbo: "SBO:0000247" - !!omap - id: "s_1265" - name: "oleoyl-CoA" @@ -11593,11 +11593,11 @@ - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ocdce9coa" - - chebi: "CHEBI:57387" - - kegg.compound: "C00510" - - metanetx.chemical: "MNXM686" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdce9coa" + - chebi: "CHEBI:57387" + - kegg.compound: "C00510" + - metanetx.chemical: "MNXM686" + - sbo: "SBO:0000247" - !!omap - id: "s_1266" - name: "ornithine" @@ -11605,11 +11605,11 @@ - formula: "C5H13N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "orn" - - chebi: "CHEBI:46912" - - kegg.compound: "C01602" - - metanetx.chemical: "MNXM89689" - - sbo: "SBO:0000247" + - bigg.metabolite: "orn" + - chebi: "CHEBI:46912" + - kegg.compound: "C01602" + - metanetx.chemical: "MNXM89689" + - sbo: "SBO:0000247" - !!omap - id: "s_1267" - name: "ornithine" @@ -11617,11 +11617,11 @@ - formula: "C5H13N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "orn" - - chebi: "CHEBI:46912" - - kegg.compound: "C01602" - - metanetx.chemical: "MNXM89689" - - sbo: "SBO:0000247" + - bigg.metabolite: "orn" + - chebi: "CHEBI:46912" + - kegg.compound: "C01602" + - metanetx.chemical: "MNXM89689" + - sbo: "SBO:0000247" - !!omap - id: "s_1268" - name: "ornithine" @@ -11629,11 +11629,11 @@ - formula: "C5H13N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "orn" - - chebi: "CHEBI:46912" - - kegg.compound: "C01602" - - metanetx.chemical: "MNXM89689" - - sbo: "SBO:0000247" + - bigg.metabolite: "orn" + - chebi: "CHEBI:46912" + - kegg.compound: "C01602" + - metanetx.chemical: "MNXM89689" + - sbo: "SBO:0000247" - !!omap - id: "s_1269" - name: "orotate" @@ -11641,11 +11641,11 @@ - formula: "C5H3N2O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "orot" - - chebi: "CHEBI:30839" - - kegg.compound: "C00295" - - metanetx.chemical: "MNXM235" - - sbo: "SBO:0000247" + - bigg.metabolite: "orot" + - chebi: "CHEBI:30839" + - kegg.compound: "C00295" + - metanetx.chemical: "MNXM235" + - sbo: "SBO:0000247" - !!omap - id: "s_1270" - name: "orotidine 5'-(dihydrogen phosphate)" @@ -11653,11 +11653,11 @@ - formula: "C10H10N2O11P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "orot5p" - - chebi: "CHEBI:57538" - - kegg.compound: "C01103" - - metanetx.chemical: "MNXM519" - - sbo: "SBO:0000247" + - bigg.metabolite: "orot5p" + - chebi: "CHEBI:57538" + - kegg.compound: "C01103" + - metanetx.chemical: "MNXM519" + - sbo: "SBO:0000247" - !!omap - id: "s_1271" - name: "oxaloacetate" @@ -11665,11 +11665,11 @@ - formula: "C4H2O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "oaa" - - chebi: "CHEBI:16452" - - kegg.compound: "C00036" - - metanetx.chemical: "MNXM46" - - sbo: "SBO:0000247" + - bigg.metabolite: "oaa" + - chebi: "CHEBI:16452" + - kegg.compound: "C00036" + - metanetx.chemical: "MNXM46" + - sbo: "SBO:0000247" - !!omap - id: "s_1272" - name: "oxaloacetate" @@ -11677,11 +11677,11 @@ - formula: "C4H2O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "oaa" - - chebi: "CHEBI:16452" - - kegg.compound: "C00036" - - metanetx.chemical: "MNXM46" - - sbo: "SBO:0000247" + - bigg.metabolite: "oaa" + - chebi: "CHEBI:16452" + - kegg.compound: "C00036" + - metanetx.chemical: "MNXM46" + - sbo: "SBO:0000247" - !!omap - id: "s_1273" - name: "oxaloacetate" @@ -11689,11 +11689,11 @@ - formula: "C4H2O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "oaa" - - chebi: "CHEBI:16452" - - kegg.compound: "C00036" - - metanetx.chemical: "MNXM46" - - sbo: "SBO:0000247" + - bigg.metabolite: "oaa" + - chebi: "CHEBI:16452" + - kegg.compound: "C00036" + - metanetx.chemical: "MNXM46" + - sbo: "SBO:0000247" - !!omap - id: "s_1274" - name: "oxaloacetate" @@ -11701,11 +11701,11 @@ - formula: "C4H2O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "oaa" - - chebi: "CHEBI:16452" - - kegg.compound: "C00036" - - metanetx.chemical: "MNXM46" - - sbo: "SBO:0000247" + - bigg.metabolite: "oaa" + - chebi: "CHEBI:16452" + - kegg.compound: "C00036" + - metanetx.chemical: "MNXM46" + - sbo: "SBO:0000247" - !!omap - id: "s_1275" - name: "oxygen" @@ -11713,11 +11713,11 @@ - formula: "O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "o2" - - chebi: "CHEBI:15379" - - kegg.compound: "C00007" - - metanetx.chemical: "MNXM4" - - sbo: "SBO:0000247" + - bigg.metabolite: "o2" + - chebi: "CHEBI:15379" + - kegg.compound: "C00007" + - metanetx.chemical: "MNXM4" + - sbo: "SBO:0000247" - !!omap - id: "s_1276" - name: "oxygen" @@ -11725,11 +11725,11 @@ - formula: "O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "o2" - - chebi: "CHEBI:15379" - - kegg.compound: "C00007" - - metanetx.chemical: "MNXM4" - - sbo: "SBO:0000247" + - bigg.metabolite: "o2" + - chebi: "CHEBI:15379" + - kegg.compound: "C00007" + - metanetx.chemical: "MNXM4" + - sbo: "SBO:0000247" - !!omap - id: "s_1277" - name: "oxygen" @@ -11737,11 +11737,11 @@ - formula: "O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "o2" - - chebi: "CHEBI:15379" - - kegg.compound: "C00007" - - metanetx.chemical: "MNXM4" - - sbo: "SBO:0000247" + - bigg.metabolite: "o2" + - chebi: "CHEBI:15379" + - kegg.compound: "C00007" + - metanetx.chemical: "MNXM4" + - sbo: "SBO:0000247" - !!omap - id: "s_1278" - name: "oxygen" @@ -11749,11 +11749,11 @@ - formula: "O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "o2" - - chebi: "CHEBI:15379" - - kegg.compound: "C00007" - - metanetx.chemical: "MNXM4" - - sbo: "SBO:0000247" + - bigg.metabolite: "o2" + - chebi: "CHEBI:15379" + - kegg.compound: "C00007" + - metanetx.chemical: "MNXM4" + - sbo: "SBO:0000247" - !!omap - id: "s_1279" - name: "oxygen" @@ -11761,11 +11761,11 @@ - formula: "O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "o2" - - chebi: "CHEBI:15379" - - kegg.compound: "C00007" - - metanetx.chemical: "MNXM4" - - sbo: "SBO:0000247" + - bigg.metabolite: "o2" + - chebi: "CHEBI:15379" + - kegg.compound: "C00007" + - metanetx.chemical: "MNXM4" + - sbo: "SBO:0000247" - !!omap - id: "s_1282" - name: "P(1),P(4)-bis(5'-adenosyl) tetraphosphate" @@ -11773,11 +11773,11 @@ - formula: "C20H24N10O19P4" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ap4a" - - chebi: "CHEBI:58141" - - kegg.compound: "C01260" - - metanetx.chemical: "MNXM1089" - - sbo: "SBO:0000247" + - bigg.metabolite: "ap4a" + - chebi: "CHEBI:58141" + - kegg.compound: "C01260" + - metanetx.chemical: "MNXM1089" + - sbo: "SBO:0000247" - !!omap - id: "s_1283" - name: "P(1),P(4)-bis(5'-guanosyl) tetraphosphate" @@ -11785,11 +11785,11 @@ - formula: "C20H24N10O21P4" - charge: -4 - annotation: !!omap - - bigg.metabolite: "gp4g" - - chebi: "CHEBI:57553" - - kegg.compound: "C01261" - - metanetx.chemical: "MNXM1582" - - sbo: "SBO:0000247" + - bigg.metabolite: "gp4g" + - chebi: "CHEBI:57553" + - kegg.compound: "C01261" + - metanetx.chemical: "MNXM1582" + - sbo: "SBO:0000247" - !!omap - id: "s_1284" - name: "P1-(5'-adenosyl),P4-(5'-guanosyl) tetraphosphate" @@ -11797,10 +11797,10 @@ - formula: "C20H24N10O20P4" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ap4g" - - chebi: "CHEBI:52968" - - metanetx.chemical: "MNXM66180" - - sbo: "SBO:0000247" + - bigg.metabolite: "ap4g" + - chebi: "CHEBI:52968" + - metanetx.chemical: "MNXM66180" + - sbo: "SBO:0000247" - !!omap - id: "s_1286" - name: "palmitate" @@ -11808,11 +11808,11 @@ - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdca" - - chebi: "CHEBI:7896" - - kegg.compound: "C00249" - - metanetx.chemical: "MNXM108" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - id: "s_1288" - name: "palmitate" @@ -11820,11 +11820,11 @@ - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdca" - - chebi: "CHEBI:7896" - - kegg.compound: "C00249" - - metanetx.chemical: "MNXM108" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - id: "s_1291" - name: "palmitate" @@ -11832,11 +11832,11 @@ - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdca" - - chebi: "CHEBI:7896" - - kegg.compound: "C00249" - - metanetx.chemical: "MNXM108" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - id: "s_1293" - name: "palmitoleate" @@ -11844,11 +11844,11 @@ - formula: "C16H29O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdcea" - - chebi: "CHEBI:32372" - - kegg.compound: "C08362" - - metanetx.chemical: "MNXM162245" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdcea" + - chebi: "CHEBI:32372" + - kegg.compound: "C08362" + - metanetx.chemical: "MNXM162245" + - sbo: "SBO:0000247" - !!omap - id: "s_1295" - name: "palmitoleate" @@ -11856,11 +11856,11 @@ - formula: "C16H29O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdcea" - - chebi: "CHEBI:32372" - - kegg.compound: "C08362" - - metanetx.chemical: "MNXM162245" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdcea" + - chebi: "CHEBI:32372" + - kegg.compound: "C08362" + - metanetx.chemical: "MNXM162245" + - sbo: "SBO:0000247" - !!omap - id: "s_1298" - name: "palmitoleate" @@ -11868,11 +11868,11 @@ - formula: "C16H29O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdcea" - - chebi: "CHEBI:32372" - - kegg.compound: "C08362" - - metanetx.chemical: "MNXM162245" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdcea" + - chebi: "CHEBI:32372" + - kegg.compound: "C08362" + - metanetx.chemical: "MNXM162245" + - sbo: "SBO:0000247" - !!omap - id: "s_1302" - name: "palmitoyl-CoA" @@ -11880,11 +11880,11 @@ - formula: "C37H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "pmtcoa" - - chebi: "CHEBI:57379" - - kegg.compound: "C00154" - - metanetx.chemical: "MNXM88" - - sbo: "SBO:0000247" + - bigg.metabolite: "pmtcoa" + - chebi: "CHEBI:57379" + - kegg.compound: "C00154" + - metanetx.chemical: "MNXM88" + - sbo: "SBO:0000247" - !!omap - id: "s_1303" - name: "palmitoyl-CoA" @@ -11892,11 +11892,11 @@ - formula: "C37H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "pmtcoa" - - chebi: "CHEBI:57379" - - kegg.compound: "C00154" - - metanetx.chemical: "MNXM88" - - sbo: "SBO:0000247" + - bigg.metabolite: "pmtcoa" + - chebi: "CHEBI:57379" + - kegg.compound: "C00154" + - metanetx.chemical: "MNXM88" + - sbo: "SBO:0000247" - !!omap - id: "s_1305" - name: "palmitoyl-CoA" @@ -11904,11 +11904,11 @@ - formula: "C37H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "pmtcoa" - - chebi: "CHEBI:57379" - - kegg.compound: "C00154" - - metanetx.chemical: "MNXM88" - - sbo: "SBO:0000247" + - bigg.metabolite: "pmtcoa" + - chebi: "CHEBI:57379" + - kegg.compound: "C00154" + - metanetx.chemical: "MNXM88" + - sbo: "SBO:0000247" - !!omap - id: "s_1307" - name: "pantetheine 4'-phosphate" @@ -11916,11 +11916,11 @@ - formula: "C11H21N2O7PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pan4p" - - chebi: "CHEBI:47942" - - kegg.compound: "C01134" - - metanetx.chemical: "MNXM373" - - sbo: "SBO:0000247" + - bigg.metabolite: "pan4p" + - chebi: "CHEBI:47942" + - kegg.compound: "C01134" + - metanetx.chemical: "MNXM373" + - sbo: "SBO:0000247" - !!omap - id: "s_1308" - name: "pantetheine 4'-phosphate" @@ -11928,11 +11928,11 @@ - formula: "C11H21N2O7PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pan4p" - - chebi: "CHEBI:47942" - - kegg.compound: "C01134" - - metanetx.chemical: "MNXM373" - - sbo: "SBO:0000247" + - bigg.metabolite: "pan4p" + - chebi: "CHEBI:47942" + - kegg.compound: "C01134" + - metanetx.chemical: "MNXM373" + - sbo: "SBO:0000247" - !!omap - id: "s_1309" - name: "pectin" @@ -11940,11 +11940,11 @@ - formula: "C6H7O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pectin" - - chebi: "CHEBI:17309" - - kegg.compound: "C00714" - - metanetx.chemical: "MNXM107600" - - sbo: "SBO:0000247" + - bigg.metabolite: "pectin" + - chebi: "CHEBI:17309" + - kegg.compound: "C00714" + - metanetx.chemical: "MNXM107600" + - sbo: "SBO:0000247" - !!omap - id: "s_1310" - name: "pentadecaprenyl diphosphate" @@ -11952,9 +11952,9 @@ - formula: "C75H121O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53038" - - metanetx.chemical: "MNXM73155" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53038" + - metanetx.chemical: "MNXM73155" + - sbo: "SBO:0000247" - !!omap - id: "s_1311" - name: "pentaprenyl diphosphate" @@ -11962,11 +11962,11 @@ - formula: "C25H41O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "pendp" - - chebi: "CHEBI:53048" - - kegg.compound: "C04217" - - metanetx.chemical: "MNXM2210" - - sbo: "SBO:0000247" + - bigg.metabolite: "pendp" + - chebi: "CHEBI:53048" + - kegg.compound: "C04217" + - metanetx.chemical: "MNXM2210" + - sbo: "SBO:0000247" - !!omap - id: "s_1312" - name: "pentaprenyl diphosphate" @@ -11974,11 +11974,11 @@ - formula: "C25H41O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "pendp" - - chebi: "CHEBI:53048" - - kegg.compound: "C04217" - - metanetx.chemical: "MNXM2210" - - sbo: "SBO:0000247" + - bigg.metabolite: "pendp" + - chebi: "CHEBI:53048" + - kegg.compound: "C04217" + - metanetx.chemical: "MNXM2210" + - sbo: "SBO:0000247" - !!omap - id: "s_1313" - name: "pentaprenyl diphosphate" @@ -11986,11 +11986,11 @@ - formula: "C25H41O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "pendp" - - chebi: "CHEBI:53048" - - kegg.compound: "C04217" - - metanetx.chemical: "MNXM2210" - - sbo: "SBO:0000247" + - bigg.metabolite: "pendp" + - chebi: "CHEBI:53048" + - kegg.compound: "C04217" + - metanetx.chemical: "MNXM2210" + - sbo: "SBO:0000247" - !!omap - id: "s_1314" - name: "Phe-tRNA(Phe)" @@ -11998,11 +11998,11 @@ - formula: "C9H11NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "phetrna" - - chebi: "CHEBI:29153" - - kegg.compound: "C03511" - - metanetx.chemical: "MNXM89802" - - sbo: "SBO:0000247" + - bigg.metabolite: "phetrna" + - chebi: "CHEBI:29153" + - kegg.compound: "C03511" + - metanetx.chemical: "MNXM89802" + - sbo: "SBO:0000247" - !!omap - id: "s_1315" - name: "Phe-tRNA(Phe)" @@ -12010,11 +12010,11 @@ - formula: "C9H11NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "phetrna" - - chebi: "CHEBI:29153" - - kegg.compound: "C03511" - - metanetx.chemical: "MNXM89802" - - sbo: "SBO:0000247" + - bigg.metabolite: "phetrna" + - chebi: "CHEBI:29153" + - kegg.compound: "C03511" + - metanetx.chemical: "MNXM89802" + - sbo: "SBO:0000247" - !!omap - id: "s_1316" - name: "phenethyl acetate" @@ -12022,11 +12022,11 @@ - formula: "C10H12O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pheac" - - chebi: "CHEBI:31988" - - kegg.compound: "C12303" - - metanetx.chemical: "MNXM12629" - - sbo: "SBO:0000247" + - bigg.metabolite: "pheac" + - chebi: "CHEBI:31988" + - kegg.compound: "C12303" + - metanetx.chemical: "MNXM12629" + - sbo: "SBO:0000247" - !!omap - id: "s_1317" - name: "phenethyl acetate" @@ -12034,11 +12034,11 @@ - formula: "C10H12O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pheac" - - chebi: "CHEBI:31988" - - kegg.compound: "C12303" - - metanetx.chemical: "MNXM12629" - - sbo: "SBO:0000247" + - bigg.metabolite: "pheac" + - chebi: "CHEBI:31988" + - kegg.compound: "C12303" + - metanetx.chemical: "MNXM12629" + - sbo: "SBO:0000247" - !!omap - id: "s_1318" - name: "phenylacetaldehyde" @@ -12046,11 +12046,11 @@ - formula: "C8H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pacald" - - chebi: "CHEBI:16424" - - kegg.compound: "C00601" - - metanetx.chemical: "MNXM473" - - sbo: "SBO:0000247" + - bigg.metabolite: "pacald" + - chebi: "CHEBI:16424" + - kegg.compound: "C00601" + - metanetx.chemical: "MNXM473" + - sbo: "SBO:0000247" - !!omap - id: "s_1319" - name: "phenylacetaldehyde" @@ -12058,11 +12058,11 @@ - formula: "C8H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pacald" - - chebi: "CHEBI:16424" - - kegg.compound: "C00601" - - metanetx.chemical: "MNXM473" - - sbo: "SBO:0000247" + - bigg.metabolite: "pacald" + - chebi: "CHEBI:16424" + - kegg.compound: "C00601" + - metanetx.chemical: "MNXM473" + - sbo: "SBO:0000247" - !!omap - id: "s_1320" - name: "phenylacetaldehyde" @@ -12070,11 +12070,11 @@ - formula: "C8H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pacald" - - chebi: "CHEBI:16424" - - kegg.compound: "C00601" - - metanetx.chemical: "MNXM473" - - sbo: "SBO:0000247" + - bigg.metabolite: "pacald" + - chebi: "CHEBI:16424" + - kegg.compound: "C00601" + - metanetx.chemical: "MNXM473" + - sbo: "SBO:0000247" - !!omap - id: "s_1321" - name: "phenylacetic acid" @@ -12082,11 +12082,11 @@ - formula: "C8H7O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "pac" - - chebi: "CHEBI:18401" - - kegg.compound: "C07086" - - metanetx.chemical: "MNXM497" - - sbo: "SBO:0000247" + - bigg.metabolite: "pac" + - chebi: "CHEBI:18401" + - kegg.compound: "C07086" + - metanetx.chemical: "MNXM497" + - sbo: "SBO:0000247" - !!omap - id: "s_1322" - name: "phosphate" @@ -12094,11 +12094,11 @@ - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pi" - - chebi: "CHEBI:43474" - - kegg.compound: "C00009" - - metanetx.chemical: "MNXM9" - - sbo: "SBO:0000247" + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - id: "s_1323" - name: "phosphate" @@ -12106,11 +12106,11 @@ - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pi" - - chebi: "CHEBI:43474" - - kegg.compound: "C00009" - - metanetx.chemical: "MNXM9" - - sbo: "SBO:0000247" + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - id: "s_1324" - name: "phosphate" @@ -12118,11 +12118,11 @@ - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pi" - - chebi: "CHEBI:43474" - - kegg.compound: "C00009" - - metanetx.chemical: "MNXM9" - - sbo: "SBO:0000247" + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - id: "s_1325" - name: "phosphate" @@ -12130,11 +12130,11 @@ - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pi" - - chebi: "CHEBI:43474" - - kegg.compound: "C00009" - - metanetx.chemical: "MNXM9" - - sbo: "SBO:0000247" + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - id: "s_1326" - name: "phosphate" @@ -12142,11 +12142,11 @@ - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pi" - - chebi: "CHEBI:43474" - - kegg.compound: "C00009" - - metanetx.chemical: "MNXM9" - - sbo: "SBO:0000247" + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - id: "s_1329" - name: "phosphate" @@ -12154,11 +12154,11 @@ - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pi" - - chebi: "CHEBI:43474" - - kegg.compound: "C00009" - - metanetx.chemical: "MNXM9" - - sbo: "SBO:0000247" + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - id: "s_1337" - name: "phosphatidyl-L-serine backbone" @@ -12166,11 +12166,11 @@ - formula: "C6H10NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ps_cho" - - chebi: "CHEBI:18303" - - kegg.compound: "C02737" - - metanetx.chemical: "MNXM221" - - sbo: "SBO:0000649" + - bigg.metabolite: "ps_cho" + - chebi: "CHEBI:18303" + - kegg.compound: "C02737" + - metanetx.chemical: "MNXM221" + - sbo: "SBO:0000649" - !!omap - id: "s_1346" - name: "phosphatidylcholine backbone" @@ -12178,11 +12178,11 @@ - formula: "C8H16NO3P" - charge: 1 - annotation: !!omap - - bigg.metabolite: "pchol_cho" - - chebi: "CHEBI:49183" - - kegg.compound: "C00157" - - metanetx.chemical: "MNXM96952" - - sbo: "SBO:0000649" + - bigg.metabolite: "pchol_cho" + - chebi: "CHEBI:49183" + - kegg.compound: "C00157" + - metanetx.chemical: "MNXM96952" + - sbo: "SBO:0000649" - !!omap - id: "s_1351" - name: "phosphatidylethanolamine backbone" @@ -12190,11 +12190,11 @@ - formula: "C5H10NO4P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pe_hs" - - chebi: "CHEBI:16038" - - kegg.compound: "C00350" - - metanetx.chemical: "MNXM115" - - sbo: "SBO:0000649" + - bigg.metabolite: "pe_hs" + - chebi: "CHEBI:16038" + - kegg.compound: "C00350" + - metanetx.chemical: "MNXM115" + - sbo: "SBO:0000649" - !!omap - id: "s_1352" - name: "phosphatidylethanolamine backbone" @@ -12202,11 +12202,11 @@ - formula: "C5H10NO4P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pe_hs" - - chebi: "CHEBI:16038" - - kegg.compound: "C00350" - - metanetx.chemical: "MNXM115" - - sbo: "SBO:0000649" + - bigg.metabolite: "pe_hs" + - chebi: "CHEBI:16038" + - kegg.compound: "C00350" + - metanetx.chemical: "MNXM115" + - sbo: "SBO:0000649" - !!omap - id: "s_1360" - name: "phosphoenolpyruvate" @@ -12214,11 +12214,11 @@ - formula: "C3H2O6P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "pep" - - chebi: "CHEBI:58702" - - kegg.compound: "C00074" - - metanetx.chemical: "MNXM73" - - sbo: "SBO:0000247" + - bigg.metabolite: "pep" + - chebi: "CHEBI:58702" + - kegg.compound: "C00074" + - metanetx.chemical: "MNXM73" + - sbo: "SBO:0000247" - !!omap - id: "s_1361" - name: "phosphoenolpyruvate" @@ -12226,11 +12226,11 @@ - formula: "C3H2O6P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "pep" - - chebi: "CHEBI:58702" - - kegg.compound: "C00074" - - metanetx.chemical: "MNXM73" - - sbo: "SBO:0000247" + - bigg.metabolite: "pep" + - chebi: "CHEBI:58702" + - kegg.compound: "C00074" + - metanetx.chemical: "MNXM73" + - sbo: "SBO:0000247" - !!omap - id: "s_1364" - name: "phosphoribosyl-carboxy-aminoimidazole" @@ -12238,11 +12238,11 @@ - formula: "C9H12N3O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "5aizc" - - chebi: "CHEBI:58564" - - kegg.compound: "C04751" - - metanetx.chemical: "MNXM507" - - sbo: "SBO:0000247" + - bigg.metabolite: "5aizc" + - chebi: "CHEBI:58564" + - kegg.compound: "C04751" + - metanetx.chemical: "MNXM507" + - sbo: "SBO:0000247" - !!omap - id: "s_1365" - name: "phosphoribosyl-formamido-carboxamide" @@ -12250,11 +12250,11 @@ - formula: "C10H13N4O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "fprica" - - chebi: "CHEBI:58467" - - kegg.compound: "C04734" - - metanetx.chemical: "MNXM456" - - sbo: "SBO:0000247" + - bigg.metabolite: "fprica" + - chebi: "CHEBI:58467" + - kegg.compound: "C04734" + - metanetx.chemical: "MNXM456" + - sbo: "SBO:0000247" - !!omap - id: "s_1366" - name: "phytosphingosine" @@ -12262,11 +12262,11 @@ - formula: "C18H40NO3" - charge: 1 - annotation: !!omap - - bigg.metabolite: "psphings" - - chebi: "CHEBI:46961" - - kegg.compound: "C12144" - - metanetx.chemical: "MNXM914" - - sbo: "SBO:0000247" + - bigg.metabolite: "psphings" + - chebi: "CHEBI:46961" + - kegg.compound: "C12144" + - metanetx.chemical: "MNXM914" + - sbo: "SBO:0000247" - !!omap - id: "s_1367" - name: "phytosphingosine 1-phosphate" @@ -12274,10 +12274,10 @@ - formula: "C18H39NO6P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "psph1p" - - chebi: "CHEBI:46970" - - metanetx.chemical: "MNXM3337" - - sbo: "SBO:0000247" + - bigg.metabolite: "psph1p" + - chebi: "CHEBI:46970" + - metanetx.chemical: "MNXM3337" + - sbo: "SBO:0000247" - !!omap - id: "s_1368" - name: "pimeloyl-CoA" @@ -12285,11 +12285,11 @@ - formula: "C28H41N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: "pmcoa" - - chebi: "CHEBI:57360" - - kegg.compound: "C01063" - - metanetx.chemical: "MNXM951" - - sbo: "SBO:0000247" + - bigg.metabolite: "pmcoa" + - chebi: "CHEBI:57360" + - kegg.compound: "C01063" + - metanetx.chemical: "MNXM951" + - sbo: "SBO:0000247" - !!omap - id: "s_1371" - name: "polysulphur" @@ -12297,10 +12297,10 @@ - formula: "S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17909" - - kegg.compound: "C00087" - - metanetx.chemical: "MNXM77783" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17909" + - kegg.compound: "C00087" + - metanetx.chemical: "MNXM77783" + - sbo: "SBO:0000247" - !!omap - id: "s_1372" - name: "porphobilinogen" @@ -12308,11 +12308,11 @@ - formula: "C10H13N2O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ppbng" - - chebi: "CHEBI:58126" - - kegg.compound: "C00931" - - metanetx.chemical: "MNXM554" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppbng" + - chebi: "CHEBI:58126" + - kegg.compound: "C00931" + - metanetx.chemical: "MNXM554" + - sbo: "SBO:0000247" - !!omap - id: "s_1373" - name: "potassium" @@ -12320,11 +12320,11 @@ - formula: "K" - charge: 0 - annotation: !!omap - - bigg.metabolite: "k" - - chebi: "CHEBI:26216" - - kegg.compound: "C00238" - - metanetx.chemical: "MNXM77881" - - sbo: "SBO:0000247" + - bigg.metabolite: "k" + - chebi: "CHEBI:26216" + - kegg.compound: "C00238" + - metanetx.chemical: "MNXM77881" + - sbo: "SBO:0000247" - !!omap - id: "s_1374" - name: "potassium" @@ -12332,11 +12332,11 @@ - formula: "K" - charge: 0 - annotation: !!omap - - bigg.metabolite: "k" - - chebi: "CHEBI:26216" - - kegg.compound: "C00238" - - metanetx.chemical: "MNXM77881" - - sbo: "SBO:0000247" + - bigg.metabolite: "k" + - chebi: "CHEBI:26216" + - kegg.compound: "C00238" + - metanetx.chemical: "MNXM77881" + - sbo: "SBO:0000247" - !!omap - id: "s_1375" - name: "precorrin-2" @@ -12344,11 +12344,11 @@ - formula: "C42H41N4O16" - charge: -7 - annotation: !!omap - - bigg.metabolite: "dscl" - - chebi: "CHEBI:58827" - - kegg.compound: "C02463" - - metanetx.chemical: "MNXM672" - - sbo: "SBO:0000247" + - bigg.metabolite: "dscl" + - chebi: "CHEBI:58827" + - kegg.compound: "C02463" + - metanetx.chemical: "MNXM672" + - sbo: "SBO:0000247" - !!omap - id: "s_1376" - name: "prenyl diphosphate(3-)" @@ -12356,11 +12356,11 @@ - formula: "C5H9O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "dmpp" - - chebi: "CHEBI:57623" - - kegg.compound: "C00235" - - metanetx.chemical: "MNXM132" - - sbo: "SBO:0000247" + - bigg.metabolite: "dmpp" + - chebi: "CHEBI:57623" + - kegg.compound: "C00235" + - metanetx.chemical: "MNXM132" + - sbo: "SBO:0000247" - !!omap - id: "s_1377" - name: "prephenate" @@ -12368,11 +12368,11 @@ - formula: "C10H8O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pphn" - - chebi: "CHEBI:29934" - - kegg.compound: "C00254" - - metanetx.chemical: "MNXM503" - - sbo: "SBO:0000247" + - bigg.metabolite: "pphn" + - chebi: "CHEBI:29934" + - kegg.compound: "C00254" + - metanetx.chemical: "MNXM503" + - sbo: "SBO:0000247" - !!omap - id: "s_1378" - name: "preuroporphyrinogen" @@ -12380,11 +12380,11 @@ - formula: "C40H38N4O17" - charge: -8 - annotation: !!omap - - bigg.metabolite: "hmbil" - - chebi: "CHEBI:57845" - - kegg.compound: "C01024" - - metanetx.chemical: "MNXM547" - - sbo: "SBO:0000247" + - bigg.metabolite: "hmbil" + - chebi: "CHEBI:57845" + - kegg.compound: "C01024" + - metanetx.chemical: "MNXM547" + - sbo: "SBO:0000247" - !!omap - id: "s_1379" - name: "Pro-tRNA(Pro)" @@ -12392,11 +12392,11 @@ - formula: "C5H9NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "protrna" - - chebi: "CHEBI:29154" - - kegg.compound: "C02702" - - metanetx.chemical: "MNXM247" - - sbo: "SBO:0000247" + - bigg.metabolite: "protrna" + - chebi: "CHEBI:29154" + - kegg.compound: "C02702" + - metanetx.chemical: "MNXM247" + - sbo: "SBO:0000247" - !!omap - id: "s_1382" - name: "propionyl-CoA" @@ -12404,11 +12404,11 @@ - formula: "C24H36N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ppcoa" - - chebi: "CHEBI:57386" - - kegg.compound: "C00100" - - metanetx.chemical: "MNXM86" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppcoa" + - chebi: "CHEBI:57386" + - kegg.compound: "C00100" + - metanetx.chemical: "MNXM86" + - sbo: "SBO:0000247" - !!omap - id: "s_1383" - name: "protoporphyrin" @@ -12416,11 +12416,11 @@ - formula: "C34H32N4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "ppp9" - - chebi: "CHEBI:36159" - - kegg.compound: "C02191" - - metanetx.chemical: "MNXM346" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppp9" + - chebi: "CHEBI:36159" + - kegg.compound: "C02191" + - metanetx.chemical: "MNXM346" + - sbo: "SBO:0000247" - !!omap - id: "s_1384" - name: "protoporphyrinogen" @@ -12428,11 +12428,11 @@ - formula: "C34H38N4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pppg9" - - chebi: "CHEBI:57307" - - kegg.compound: "C01079" - - metanetx.chemical: "MNXM351" - - sbo: "SBO:0000247" + - bigg.metabolite: "pppg9" + - chebi: "CHEBI:57307" + - kegg.compound: "C01079" + - metanetx.chemical: "MNXM351" + - sbo: "SBO:0000247" - !!omap - id: "s_1385" - name: "protoporphyrinogen" @@ -12440,11 +12440,11 @@ - formula: "C34H38N4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pppg9" - - chebi: "CHEBI:57307" - - kegg.compound: "C01079" - - metanetx.chemical: "MNXM351" - - sbo: "SBO:0000247" + - bigg.metabolite: "pppg9" + - chebi: "CHEBI:57307" + - kegg.compound: "C01079" + - metanetx.chemical: "MNXM351" + - sbo: "SBO:0000247" - !!omap - id: "s_1386" - name: "PRPP" @@ -12452,11 +12452,11 @@ - formula: "C5H8O14P3" - charge: -5 - annotation: !!omap - - bigg.metabolite: "prpp" - - chebi: "CHEBI:58017" - - kegg.compound: "C00119" - - metanetx.chemical: "MNXM91" - - sbo: "SBO:0000247" + - bigg.metabolite: "prpp" + - chebi: "CHEBI:58017" + - kegg.compound: "C00119" + - metanetx.chemical: "MNXM91" + - sbo: "SBO:0000247" - !!omap - id: "s_1387" - name: "PRPP" @@ -12464,11 +12464,11 @@ - formula: "C5H8O14P3" - charge: -5 - annotation: !!omap - - bigg.metabolite: "prpp" - - chebi: "CHEBI:58017" - - kegg.compound: "C00119" - - metanetx.chemical: "MNXM91" - - sbo: "SBO:0000247" + - bigg.metabolite: "prpp" + - chebi: "CHEBI:58017" + - kegg.compound: "C00119" + - metanetx.chemical: "MNXM91" + - sbo: "SBO:0000247" - !!omap - id: "s_1388" - name: "pseudouridine 5'-phosphate" @@ -12476,10 +12476,10 @@ - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:58380" - - kegg.compound: "C01168" - - metanetx.chemical: "MNXM2276" - - sbo: "SBO:0000247" + - chebi: "CHEBI:58380" + - kegg.compound: "C01168" + - metanetx.chemical: "MNXM2276" + - sbo: "SBO:0000247" - !!omap - id: "s_1389" - name: "putrescine" @@ -12487,11 +12487,11 @@ - formula: "C4H14N2" - charge: 2 - annotation: !!omap - - bigg.metabolite: "ptrc" - - chebi: "CHEBI:326268" - - kegg.compound: "C00134" - - metanetx.chemical: "MNXM118" - - sbo: "SBO:0000247" + - bigg.metabolite: "ptrc" + - chebi: "CHEBI:326268" + - kegg.compound: "C00134" + - metanetx.chemical: "MNXM118" + - sbo: "SBO:0000247" - !!omap - id: "s_1390" - name: "putrescine" @@ -12499,11 +12499,11 @@ - formula: "C4H14N2" - charge: 2 - annotation: !!omap - - bigg.metabolite: "ptrc" - - chebi: "CHEBI:326268" - - kegg.compound: "C00134" - - metanetx.chemical: "MNXM118" - - sbo: "SBO:0000247" + - bigg.metabolite: "ptrc" + - chebi: "CHEBI:326268" + - kegg.compound: "C00134" + - metanetx.chemical: "MNXM118" + - sbo: "SBO:0000247" - !!omap - id: "s_1391" - name: "putrescine" @@ -12511,11 +12511,11 @@ - formula: "C4H14N2" - charge: 2 - annotation: !!omap - - bigg.metabolite: "ptrc" - - chebi: "CHEBI:326268" - - kegg.compound: "C00134" - - metanetx.chemical: "MNXM118" - - sbo: "SBO:0000247" + - bigg.metabolite: "ptrc" + - chebi: "CHEBI:326268" + - kegg.compound: "C00134" + - metanetx.chemical: "MNXM118" + - sbo: "SBO:0000247" - !!omap - id: "s_1392" - name: "pyridoxal" @@ -12523,11 +12523,11 @@ - formula: "C8H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pydx" - - chebi: "CHEBI:17310" - - kegg.compound: "C00250" - - metanetx.chemical: "MNXM311" - - sbo: "SBO:0000247" + - bigg.metabolite: "pydx" + - chebi: "CHEBI:17310" + - kegg.compound: "C00250" + - metanetx.chemical: "MNXM311" + - sbo: "SBO:0000247" - !!omap - id: "s_1393" - name: "pyridoxal 5'-phosphate" @@ -12535,11 +12535,11 @@ - formula: "C8H8NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pydx5p" - - chebi: "CHEBI:597326" - - kegg.compound: "C00018" - - metanetx.chemical: "MNXM161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pydx5p" + - chebi: "CHEBI:597326" + - kegg.compound: "C00018" + - metanetx.chemical: "MNXM161" + - sbo: "SBO:0000247" - !!omap - id: "s_1394" - name: "pyridoxamine" @@ -12547,11 +12547,11 @@ - formula: "C8H13N2O2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "pydam" - - chebi: "CHEBI:57761" - - kegg.compound: "C00534" - - metanetx.chemical: "MNXM548" - - sbo: "SBO:0000247" + - bigg.metabolite: "pydam" + - chebi: "CHEBI:57761" + - kegg.compound: "C00534" + - metanetx.chemical: "MNXM548" + - sbo: "SBO:0000247" - !!omap - id: "s_1395" - name: "pyridoxamine 5'-phosphate" @@ -12559,11 +12559,11 @@ - formula: "C8H12N2O5P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "pyam5p" - - chebi: "CHEBI:58451" - - kegg.compound: "C00647" - - metanetx.chemical: "MNXM366" - - sbo: "SBO:0000247" + - bigg.metabolite: "pyam5p" + - chebi: "CHEBI:58451" + - kegg.compound: "C00647" + - metanetx.chemical: "MNXM366" + - sbo: "SBO:0000247" - !!omap - id: "s_1396" - name: "pyridoxine" @@ -12571,11 +12571,11 @@ - formula: "C8H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pydxn" - - chebi: "CHEBI:16709" - - kegg.compound: "C00314" - - metanetx.chemical: "MNXM419" - - sbo: "SBO:0000247" + - bigg.metabolite: "pydxn" + - chebi: "CHEBI:16709" + - kegg.compound: "C00314" + - metanetx.chemical: "MNXM419" + - sbo: "SBO:0000247" - !!omap - id: "s_1397" - name: "pyridoxine" @@ -12583,11 +12583,11 @@ - formula: "C8H11NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pydxn" - - chebi: "CHEBI:16709" - - kegg.compound: "C00314" - - metanetx.chemical: "MNXM419" - - sbo: "SBO:0000247" + - bigg.metabolite: "pydxn" + - chebi: "CHEBI:16709" + - kegg.compound: "C00314" + - metanetx.chemical: "MNXM419" + - sbo: "SBO:0000247" - !!omap - id: "s_1398" - name: "pyridoxine 5'-phosphate" @@ -12595,11 +12595,11 @@ - formula: "C8H10NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pdx5p" - - chebi: "CHEBI:58589" - - kegg.compound: "C00627" - - metanetx.chemical: "MNXM454" - - sbo: "SBO:0000247" + - bigg.metabolite: "pdx5p" + - chebi: "CHEBI:58589" + - kegg.compound: "C00627" + - metanetx.chemical: "MNXM454" + - sbo: "SBO:0000247" - !!omap - id: "s_1399" - name: "pyruvate" @@ -12607,11 +12607,11 @@ - formula: "C3H3O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "pyr" - - chebi: "CHEBI:15361" - - kegg.compound: "C00022" - - metanetx.chemical: "MNXM23" - - sbo: "SBO:0000247" + - bigg.metabolite: "pyr" + - chebi: "CHEBI:15361" + - kegg.compound: "C00022" + - metanetx.chemical: "MNXM23" + - sbo: "SBO:0000247" - !!omap - id: "s_1400" - name: "pyruvate" @@ -12619,11 +12619,11 @@ - formula: "C3H3O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "pyr" - - chebi: "CHEBI:15361" - - kegg.compound: "C00022" - - metanetx.chemical: "MNXM23" - - sbo: "SBO:0000247" + - bigg.metabolite: "pyr" + - chebi: "CHEBI:15361" + - kegg.compound: "C00022" + - metanetx.chemical: "MNXM23" + - sbo: "SBO:0000247" - !!omap - id: "s_1401" - name: "pyruvate" @@ -12631,11 +12631,11 @@ - formula: "C3H3O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "pyr" - - chebi: "CHEBI:15361" - - kegg.compound: "C00022" - - metanetx.chemical: "MNXM23" - - sbo: "SBO:0000247" + - bigg.metabolite: "pyr" + - chebi: "CHEBI:15361" + - kegg.compound: "C00022" + - metanetx.chemical: "MNXM23" + - sbo: "SBO:0000247" - !!omap - id: "s_1403" - name: "quinolinate" @@ -12643,11 +12643,11 @@ - formula: "C7H3NO4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "quln" - - chebi: "CHEBI:29959" - - kegg.compound: "C03722" - - metanetx.chemical: "MNXM555" - - sbo: "SBO:0000247" + - bigg.metabolite: "quln" + - chebi: "CHEBI:29959" + - kegg.compound: "C03722" + - metanetx.chemical: "MNXM555" + - sbo: "SBO:0000247" - !!omap - id: "s_1404" - name: "quinolinate" @@ -12655,11 +12655,11 @@ - formula: "C7H3NO4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "quln" - - chebi: "CHEBI:29959" - - kegg.compound: "C03722" - - metanetx.chemical: "MNXM555" - - sbo: "SBO:0000247" + - bigg.metabolite: "quln" + - chebi: "CHEBI:29959" + - kegg.compound: "C03722" + - metanetx.chemical: "MNXM555" + - sbo: "SBO:0000247" - !!omap - id: "s_1405" - name: "riboflavin" @@ -12667,11 +12667,11 @@ - formula: "C17H19N4O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ribflv" - - chebi: "CHEBI:57986" - - kegg.compound: "C00255" - - metanetx.chemical: "MNXM270" - - sbo: "SBO:0000247" + - bigg.metabolite: "ribflv" + - chebi: "CHEBI:57986" + - kegg.compound: "C00255" + - metanetx.chemical: "MNXM270" + - sbo: "SBO:0000247" - !!omap - id: "s_1406" - name: "riboflavin" @@ -12679,11 +12679,11 @@ - formula: "C17H19N4O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ribflv" - - chebi: "CHEBI:57986" - - kegg.compound: "C00255" - - metanetx.chemical: "MNXM270" - - sbo: "SBO:0000247" + - bigg.metabolite: "ribflv" + - chebi: "CHEBI:57986" + - kegg.compound: "C00255" + - metanetx.chemical: "MNXM270" + - sbo: "SBO:0000247" - !!omap - id: "s_1407" - name: "riboflavin" @@ -12691,11 +12691,11 @@ - formula: "C17H19N4O6" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ribflv" - - chebi: "CHEBI:57986" - - kegg.compound: "C00255" - - metanetx.chemical: "MNXM270" - - sbo: "SBO:0000247" + - bigg.metabolite: "ribflv" + - chebi: "CHEBI:57986" + - kegg.compound: "C00255" + - metanetx.chemical: "MNXM270" + - sbo: "SBO:0000247" - !!omap - id: "s_1408" - name: "ribose-5-phosphate" @@ -12703,11 +12703,11 @@ - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "r5p" - - chebi: "CHEBI:18189" - - kegg.compound: "C03736" - - metanetx.chemical: "MNXM15900" - - sbo: "SBO:0000247" + - bigg.metabolite: "r5p" + - chebi: "CHEBI:18189" + - kegg.compound: "C03736" + - metanetx.chemical: "MNXM15900" + - sbo: "SBO:0000247" - !!omap - id: "s_1409" - name: "S(8)-aminomethyldihydrolipoamide" @@ -12715,10 +12715,10 @@ - formula: "C9H21N2OS2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "alpam" - - chebi: "CHEBI:50622" - - metanetx.chemical: "MNXM81220" - - sbo: "SBO:0000247" + - bigg.metabolite: "alpam" + - chebi: "CHEBI:50622" + - metanetx.chemical: "MNXM81220" + - sbo: "SBO:0000247" - !!omap - id: "s_1410" - name: "S(8)-aminomethyldihydrolipoylprotein" @@ -12726,11 +12726,11 @@ - formula: "C9H19N2OS2R" - charge: 0 - annotation: !!omap - - bigg.metabolite: "alpro" - - chebi: "CHEBI:16882" - - kegg.compound: "C01242" - - metanetx.chemical: "MNXM81221" - - sbo: "SBO:0000247" + - bigg.metabolite: "alpro" + - chebi: "CHEBI:16882" + - kegg.compound: "C01242" + - metanetx.chemical: "MNXM81221" + - sbo: "SBO:0000247" - !!omap - id: "s_1411" - name: "S(8)-succinyldihydrolipoamide" @@ -12738,11 +12738,11 @@ - formula: "C12H20NO4S2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "sdhlam" - - chebi: "CHEBI:17432" - - kegg.compound: "C01169" - - metanetx.chemical: "MNXM3710" - - sbo: "SBO:0000247" + - bigg.metabolite: "sdhlam" + - chebi: "CHEBI:17432" + - kegg.compound: "C01169" + - metanetx.chemical: "MNXM3710" + - sbo: "SBO:0000247" - !!omap - id: "s_1412" - name: "S-adenosyl-4-methylthio-2-oxobutanoate" @@ -12750,11 +12750,11 @@ - formula: "C15H19N5O6S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "amob" - - chebi: "CHEBI:16490" - - kegg.compound: "C04425" - - metanetx.chemical: "MNXM3090" - - sbo: "SBO:0000247" + - bigg.metabolite: "amob" + - chebi: "CHEBI:16490" + - kegg.compound: "C04425" + - metanetx.chemical: "MNXM3090" + - sbo: "SBO:0000247" - !!omap - id: "s_1413" - name: "S-adenosyl-L-homocysteine" @@ -12762,11 +12762,11 @@ - formula: "C14H20N6O5S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ahcys" - - chebi: "CHEBI:16680" - - kegg.compound: "C00021" - - metanetx.chemical: "MNXM19" - - sbo: "SBO:0000247" + - bigg.metabolite: "ahcys" + - chebi: "CHEBI:16680" + - kegg.compound: "C00021" + - metanetx.chemical: "MNXM19" + - sbo: "SBO:0000247" - !!omap - id: "s_1415" - name: "S-adenosyl-L-homocysteine" @@ -12774,11 +12774,11 @@ - formula: "C14H20N6O5S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ahcys" - - chebi: "CHEBI:16680" - - kegg.compound: "C00021" - - metanetx.chemical: "MNXM19" - - sbo: "SBO:0000247" + - bigg.metabolite: "ahcys" + - chebi: "CHEBI:16680" + - kegg.compound: "C00021" + - metanetx.chemical: "MNXM19" + - sbo: "SBO:0000247" - !!omap - id: "s_1416" - name: "S-adenosyl-L-methionine" @@ -12786,11 +12786,11 @@ - formula: "C15H23N6O5S" - charge: 1 - annotation: !!omap - - bigg.metabolite: "amet" - - chebi: "CHEBI:15414" - - kegg.compound: "C00019" - - metanetx.chemical: "MNXM16" - - sbo: "SBO:0000247" + - bigg.metabolite: "amet" + - chebi: "CHEBI:15414" + - kegg.compound: "C00019" + - metanetx.chemical: "MNXM16" + - sbo: "SBO:0000247" - !!omap - id: "s_1418" - name: "S-adenosyl-L-methionine" @@ -12798,11 +12798,11 @@ - formula: "C15H23N6O5S" - charge: 1 - annotation: !!omap - - bigg.metabolite: "amet" - - chebi: "CHEBI:15414" - - kegg.compound: "C00019" - - metanetx.chemical: "MNXM16" - - sbo: "SBO:0000247" + - bigg.metabolite: "amet" + - chebi: "CHEBI:15414" + - kegg.compound: "C00019" + - metanetx.chemical: "MNXM16" + - sbo: "SBO:0000247" - !!omap - id: "s_1419" - name: "S-adenosyl-L-methionine" @@ -12810,11 +12810,11 @@ - formula: "C15H23N6O5S" - charge: 1 - annotation: !!omap - - bigg.metabolite: "amet" - - chebi: "CHEBI:15414" - - kegg.compound: "C00019" - - metanetx.chemical: "MNXM16" - - sbo: "SBO:0000247" + - bigg.metabolite: "amet" + - chebi: "CHEBI:15414" + - kegg.compound: "C00019" + - metanetx.chemical: "MNXM16" + - sbo: "SBO:0000247" - !!omap - id: "s_1420" - name: "S-adenosylmethioninamine" @@ -12822,11 +12822,11 @@ - formula: "C14H24N6O3S" - charge: 2 - annotation: !!omap - - bigg.metabolite: "ametam" - - chebi: "CHEBI:57443" - - kegg.compound: "C01137" - - metanetx.chemical: "MNXM321" - - sbo: "SBO:0000247" + - bigg.metabolite: "ametam" + - chebi: "CHEBI:57443" + - kegg.compound: "C01137" + - metanetx.chemical: "MNXM321" + - sbo: "SBO:0000247" - !!omap - id: "s_1421" - name: "S-formylglutathione" @@ -12834,11 +12834,11 @@ - formula: "C11H16N3O7S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "Sfglutth" - - chebi: "CHEBI:57688" - - kegg.compound: "C01031" - - metanetx.chemical: "MNXM952" - - sbo: "SBO:0000247" + - bigg.metabolite: "Sfglutth" + - chebi: "CHEBI:57688" + - kegg.compound: "C01031" + - metanetx.chemical: "MNXM952" + - sbo: "SBO:0000247" - !!omap - id: "s_1422" - name: "S-methyl-5-thio-alpha-D-ribose 1-phosphate" @@ -12846,11 +12846,11 @@ - formula: "C6H11O7PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: "5mdr1p" - - chebi: "CHEBI:58533" - - kegg.compound: "C04188" - - metanetx.chemical: "MNXM407" - - sbo: "SBO:0000247" + - bigg.metabolite: "5mdr1p" + - chebi: "CHEBI:58533" + - kegg.compound: "C04188" + - metanetx.chemical: "MNXM407" + - sbo: "SBO:0000247" - !!omap - id: "s_1423" - name: "S-methyl-5-thio-D-ribulose 1-phosphate" @@ -12858,11 +12858,11 @@ - formula: "C6H11O7PS" - charge: -2 - annotation: !!omap - - bigg.metabolite: "5mdru1p" - - chebi: "CHEBI:58548" - - kegg.compound: "C04582" - - metanetx.chemical: "MNXM522" - - sbo: "SBO:0000247" + - bigg.metabolite: "5mdru1p" + - chebi: "CHEBI:58548" + - kegg.compound: "C04582" + - metanetx.chemical: "MNXM522" + - sbo: "SBO:0000247" - !!omap - id: "s_1424" - name: "S-methyl-L-methionine" @@ -12870,11 +12870,11 @@ - formula: "C6H14NO2S" - charge: 1 - annotation: !!omap - - bigg.metabolite: "mmet" - - chebi: "CHEBI:17728" - - kegg.compound: "C03172" - - metanetx.chemical: "MNXM1119" - - sbo: "SBO:0000247" + - bigg.metabolite: "mmet" + - chebi: "CHEBI:17728" + - kegg.compound: "C03172" + - metanetx.chemical: "MNXM1119" + - sbo: "SBO:0000247" - !!omap - id: "s_1425" - name: "S-methyl-L-methionine" @@ -12882,11 +12882,11 @@ - formula: "C6H14NO2S" - charge: 1 - annotation: !!omap - - bigg.metabolite: "mmet" - - chebi: "CHEBI:17728" - - kegg.compound: "C03172" - - metanetx.chemical: "MNXM1119" - - sbo: "SBO:0000247" + - bigg.metabolite: "mmet" + - chebi: "CHEBI:17728" + - kegg.compound: "C03172" + - metanetx.chemical: "MNXM1119" + - sbo: "SBO:0000247" - !!omap - id: "s_1426" - name: "sedoheptulose 1,7-bisphosphate" @@ -12894,11 +12894,11 @@ - formula: "C7H12O13P2" - charge: -4 - annotation: !!omap - - bigg.metabolite: "s17bp" - - chebi: "CHEBI:58335" - - kegg.compound: "C00447" - - metanetx.chemical: "MNXM1294" - - sbo: "SBO:0000247" + - bigg.metabolite: "s17bp" + - chebi: "CHEBI:58335" + - kegg.compound: "C00447" + - metanetx.chemical: "MNXM1294" + - sbo: "SBO:0000247" - !!omap - id: "s_1427" - name: "sedoheptulose 7-phosphate" @@ -12906,11 +12906,11 @@ - formula: "C7H13O10P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "s7p" - - chebi: "CHEBI:57483" - - kegg.compound: "C05382" - - metanetx.chemical: "MNXM271" - - sbo: "SBO:0000247" + - bigg.metabolite: "s7p" + - chebi: "CHEBI:57483" + - kegg.compound: "C05382" + - metanetx.chemical: "MNXM271" + - sbo: "SBO:0000247" - !!omap - id: "s_1428" - name: "Ser-tRNA(Ser)" @@ -12918,11 +12918,11 @@ - formula: "C3H7NO2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: "sertrna" - - chebi: "CHEBI:29162" - - kegg.compound: "C02553" - - metanetx.chemical: "MNXM165150" - - sbo: "SBO:0000247" + - bigg.metabolite: "sertrna" + - chebi: "CHEBI:29162" + - kegg.compound: "C02553" + - metanetx.chemical: "MNXM165150" + - sbo: "SBO:0000247" - !!omap - id: "s_1429" - name: "shikimate" @@ -12930,11 +12930,11 @@ - formula: "C7H9O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "skm" - - chebi: "CHEBI:36208" - - kegg.compound: "C00493" - - metanetx.chemical: "MNXM602" - - sbo: "SBO:0000247" + - bigg.metabolite: "skm" + - chebi: "CHEBI:36208" + - kegg.compound: "C00493" + - metanetx.chemical: "MNXM602" + - sbo: "SBO:0000247" - !!omap - id: "s_1430" - name: "siroheme" @@ -12942,11 +12942,11 @@ - formula: "C42H36FeN4O16" - charge: -8 - annotation: !!omap - - bigg.metabolite: "sheme" - - chebi: "CHEBI:60052" - - kegg.compound: "C00748" - - metanetx.chemical: "MNXM82173" - - sbo: "SBO:0000247" + - bigg.metabolite: "sheme" + - chebi: "CHEBI:60052" + - kegg.compound: "C00748" + - metanetx.chemical: "MNXM82173" + - sbo: "SBO:0000247" - !!omap - id: "s_1431" - name: "sirohydrochlorin" @@ -12954,11 +12954,11 @@ - formula: "C42H38N4O16" - charge: -8 - annotation: !!omap - - bigg.metabolite: "scl" - - chebi: "CHEBI:58351" - - kegg.compound: "C05778" - - metanetx.chemical: "MNXM863" - - sbo: "SBO:0000247" + - bigg.metabolite: "scl" + - chebi: "CHEBI:58351" + - kegg.compound: "C05778" + - metanetx.chemical: "MNXM863" + - sbo: "SBO:0000247" - !!omap - id: "s_1432" - name: "sn-glycero-3-phosphocholine" @@ -12966,11 +12966,11 @@ - formula: "C8H20NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "g3pc" - - chebi: "CHEBI:16870" - - kegg.compound: "C00670" - - metanetx.chemical: "MNXM367" - - sbo: "SBO:0000247" + - bigg.metabolite: "g3pc" + - chebi: "CHEBI:16870" + - kegg.compound: "C00670" + - metanetx.chemical: "MNXM367" + - sbo: "SBO:0000247" - !!omap - id: "s_1433" - name: "sn-glycero-3-phosphocholine" @@ -12978,11 +12978,11 @@ - formula: "C8H20NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "g3pc" - - chebi: "CHEBI:16870" - - kegg.compound: "C00670" - - metanetx.chemical: "MNXM367" - - sbo: "SBO:0000247" + - bigg.metabolite: "g3pc" + - chebi: "CHEBI:16870" + - kegg.compound: "C00670" + - metanetx.chemical: "MNXM367" + - sbo: "SBO:0000247" - !!omap - id: "s_1435" - name: "sn-glycero-3-phosphocholine" @@ -12990,11 +12990,11 @@ - formula: "C8H20NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "g3pc" - - chebi: "CHEBI:16870" - - kegg.compound: "C00670" - - metanetx.chemical: "MNXM367" - - sbo: "SBO:0000247" + - bigg.metabolite: "g3pc" + - chebi: "CHEBI:16870" + - kegg.compound: "C00670" + - metanetx.chemical: "MNXM367" + - sbo: "SBO:0000247" - !!omap - id: "s_1437" - name: "sodium" @@ -13002,11 +13002,11 @@ - formula: "Na" - charge: 0 - annotation: !!omap - - bigg.metabolite: "na1" - - chebi: "CHEBI:26708" - - kegg.compound: "C01330" - - metanetx.chemical: "MNXM82334" - - sbo: "SBO:0000247" + - bigg.metabolite: "na1" + - chebi: "CHEBI:26708" + - kegg.compound: "C01330" + - metanetx.chemical: "MNXM82334" + - sbo: "SBO:0000247" - !!omap - id: "s_1438" - name: "sodium" @@ -13014,11 +13014,11 @@ - formula: "Na" - charge: 0 - annotation: !!omap - - bigg.metabolite: "na1" - - chebi: "CHEBI:26708" - - kegg.compound: "C01330" - - metanetx.chemical: "MNXM82334" - - sbo: "SBO:0000247" + - bigg.metabolite: "na1" + - chebi: "CHEBI:26708" + - kegg.compound: "C01330" + - metanetx.chemical: "MNXM82334" + - sbo: "SBO:0000247" - !!omap - id: "s_1439" - name: "spermidine" @@ -13026,11 +13026,11 @@ - formula: "C7H22N3" - charge: 3 - annotation: !!omap - - bigg.metabolite: "spmd" - - chebi: "CHEBI:57834" - - kegg.compound: "C00315" - - metanetx.chemical: "MNXM124" - - sbo: "SBO:0000247" + - bigg.metabolite: "spmd" + - chebi: "CHEBI:57834" + - kegg.compound: "C00315" + - metanetx.chemical: "MNXM124" + - sbo: "SBO:0000247" - !!omap - id: "s_1440" - name: "spermidine" @@ -13038,11 +13038,11 @@ - formula: "C7H22N3" - charge: 3 - annotation: !!omap - - bigg.metabolite: "spmd" - - chebi: "CHEBI:57834" - - kegg.compound: "C00315" - - metanetx.chemical: "MNXM124" - - sbo: "SBO:0000247" + - bigg.metabolite: "spmd" + - chebi: "CHEBI:57834" + - kegg.compound: "C00315" + - metanetx.chemical: "MNXM124" + - sbo: "SBO:0000247" - !!omap - id: "s_1441" - name: "spermidine" @@ -13050,11 +13050,11 @@ - formula: "C7H22N3" - charge: 3 - annotation: !!omap - - bigg.metabolite: "spmd" - - chebi: "CHEBI:57834" - - kegg.compound: "C00315" - - metanetx.chemical: "MNXM124" - - sbo: "SBO:0000247" + - bigg.metabolite: "spmd" + - chebi: "CHEBI:57834" + - kegg.compound: "C00315" + - metanetx.chemical: "MNXM124" + - sbo: "SBO:0000247" - !!omap - id: "s_1442" - name: "spermine" @@ -13062,11 +13062,11 @@ - formula: "C10H30N4" - charge: 4 - annotation: !!omap - - bigg.metabolite: "sprm" - - chebi: "CHEBI:45725" - - kegg.compound: "C00750" - - metanetx.chemical: "MNXM408" - - sbo: "SBO:0000247" + - bigg.metabolite: "sprm" + - chebi: "CHEBI:45725" + - kegg.compound: "C00750" + - metanetx.chemical: "MNXM408" + - sbo: "SBO:0000247" - !!omap - id: "s_1443" - name: "spermine" @@ -13074,11 +13074,11 @@ - formula: "C10H30N4" - charge: 4 - annotation: !!omap - - bigg.metabolite: "sprm" - - chebi: "CHEBI:45725" - - kegg.compound: "C00750" - - metanetx.chemical: "MNXM408" - - sbo: "SBO:0000247" + - bigg.metabolite: "sprm" + - chebi: "CHEBI:45725" + - kegg.compound: "C00750" + - metanetx.chemical: "MNXM408" + - sbo: "SBO:0000247" - !!omap - id: "s_1444" - name: "spermine" @@ -13086,11 +13086,11 @@ - formula: "C10H30N4" - charge: 4 - annotation: !!omap - - bigg.metabolite: "sprm" - - chebi: "CHEBI:45725" - - kegg.compound: "C00750" - - metanetx.chemical: "MNXM408" - - sbo: "SBO:0000247" + - bigg.metabolite: "sprm" + - chebi: "CHEBI:45725" + - kegg.compound: "C00750" + - metanetx.chemical: "MNXM408" + - sbo: "SBO:0000247" - !!omap - id: "s_1445" - name: "sphinganine" @@ -13098,11 +13098,11 @@ - formula: "C18H40NO2" - charge: 1 - annotation: !!omap - - bigg.metabolite: "sphgn" - - chebi: "CHEBI:57817" - - kegg.compound: "C00836" - - metanetx.chemical: "MNXM302" - - sbo: "SBO:0000247" + - bigg.metabolite: "sphgn" + - chebi: "CHEBI:57817" + - kegg.compound: "C00836" + - metanetx.chemical: "MNXM302" + - sbo: "SBO:0000247" - !!omap - id: "s_1446" - name: "sphinganine 1-phosphate" @@ -13110,11 +13110,11 @@ - formula: "C18H39NO5P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "sph1p" - - chebi: "CHEBI:57939" - - kegg.compound: "C01120" - - metanetx.chemical: "MNXM487" - - sbo: "SBO:0000247" + - bigg.metabolite: "sph1p" + - chebi: "CHEBI:57939" + - kegg.compound: "C01120" + - metanetx.chemical: "MNXM487" + - sbo: "SBO:0000247" - !!omap - id: "s_1447" - name: "squalene" @@ -13122,11 +13122,11 @@ - formula: "C30H50" - charge: 0 - annotation: !!omap - - bigg.metabolite: "sql" - - chebi: "CHEBI:15440" - - kegg.compound: "C00751" - - metanetx.chemical: "MNXM292" - - sbo: "SBO:0000247" + - bigg.metabolite: "sql" + - chebi: "CHEBI:15440" + - kegg.compound: "C00751" + - metanetx.chemical: "MNXM292" + - sbo: "SBO:0000247" - !!omap - id: "s_1448" - name: "squalene" @@ -13134,11 +13134,11 @@ - formula: "C30H50" - charge: 0 - annotation: !!omap - - bigg.metabolite: "sql" - - chebi: "CHEBI:15440" - - kegg.compound: "C00751" - - metanetx.chemical: "MNXM292" - - sbo: "SBO:0000247" + - bigg.metabolite: "sql" + - chebi: "CHEBI:15440" + - kegg.compound: "C00751" + - metanetx.chemical: "MNXM292" + - sbo: "SBO:0000247" - !!omap - id: "s_1449" - name: "stearate" @@ -13146,11 +13146,11 @@ - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdca" - - chebi: "CHEBI:25629" - - kegg.compound: "C01530" - - metanetx.chemical: "MNXM236" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - id: "s_1450" - name: "stearate" @@ -13158,11 +13158,11 @@ - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdca" - - chebi: "CHEBI:25629" - - kegg.compound: "C01530" - - metanetx.chemical: "MNXM236" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - id: "s_1451" - name: "stearate" @@ -13170,11 +13170,11 @@ - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdca" - - chebi: "CHEBI:25629" - - kegg.compound: "C01530" - - metanetx.chemical: "MNXM236" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - id: "s_1454" - name: "stearoyl-CoA" @@ -13182,11 +13182,11 @@ - formula: "C39H66N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "stcoa" - - chebi: "CHEBI:57394" - - kegg.compound: "C00412" - - metanetx.chemical: "MNXM272" - - sbo: "SBO:0000247" + - bigg.metabolite: "stcoa" + - chebi: "CHEBI:57394" + - kegg.compound: "C00412" + - metanetx.chemical: "MNXM272" + - sbo: "SBO:0000247" - !!omap - id: "s_1457" - name: "stearoyl-CoA" @@ -13194,11 +13194,11 @@ - formula: "C39H66N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "stcoa" - - chebi: "CHEBI:57394" - - kegg.compound: "C00412" - - metanetx.chemical: "MNXM272" - - sbo: "SBO:0000247" + - bigg.metabolite: "stcoa" + - chebi: "CHEBI:57394" + - kegg.compound: "C00412" + - metanetx.chemical: "MNXM272" + - sbo: "SBO:0000247" - !!omap - id: "s_1458" - name: "succinate" @@ -13206,11 +13206,11 @@ - formula: "C4H4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "succ" - - chebi: "CHEBI:30031" - - kegg.compound: "C00042" - - metanetx.chemical: "MNXM25" - - sbo: "SBO:0000247" + - bigg.metabolite: "succ" + - chebi: "CHEBI:30031" + - kegg.compound: "C00042" + - metanetx.chemical: "MNXM25" + - sbo: "SBO:0000247" - !!omap - id: "s_1459" - name: "succinate" @@ -13218,11 +13218,11 @@ - formula: "C4H4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "succ" - - chebi: "CHEBI:30031" - - kegg.compound: "C00042" - - metanetx.chemical: "MNXM25" - - sbo: "SBO:0000247" + - bigg.metabolite: "succ" + - chebi: "CHEBI:30031" + - kegg.compound: "C00042" + - metanetx.chemical: "MNXM25" + - sbo: "SBO:0000247" - !!omap - id: "s_1460" - name: "succinate" @@ -13230,11 +13230,11 @@ - formula: "C4H4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "succ" - - chebi: "CHEBI:30031" - - kegg.compound: "C00042" - - metanetx.chemical: "MNXM25" - - sbo: "SBO:0000247" + - bigg.metabolite: "succ" + - chebi: "CHEBI:30031" + - kegg.compound: "C00042" + - metanetx.chemical: "MNXM25" + - sbo: "SBO:0000247" - !!omap - id: "s_1461" - name: "succinic semialdehyde" @@ -13242,11 +13242,11 @@ - formula: "C4H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "sucsal" - - chebi: "CHEBI:57706" - - kegg.compound: "C00232" - - metanetx.chemical: "MNXM172" - - sbo: "SBO:0000247" + - bigg.metabolite: "sucsal" + - chebi: "CHEBI:57706" + - kegg.compound: "C00232" + - metanetx.chemical: "MNXM172" + - sbo: "SBO:0000247" - !!omap - id: "s_1464" - name: "succinyl-CoA" @@ -13254,11 +13254,11 @@ - formula: "C25H35N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: "succoa" - - chebi: "CHEBI:57292" - - kegg.compound: "C00091" - - metanetx.chemical: "MNXM92" - - sbo: "SBO:0000247" + - bigg.metabolite: "succoa" + - chebi: "CHEBI:57292" + - kegg.compound: "C00091" + - metanetx.chemical: "MNXM92" + - sbo: "SBO:0000247" - !!omap - id: "s_1466" - name: "sucrose" @@ -13266,11 +13266,11 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: "sucr" - - chebi: "CHEBI:17992" - - kegg.compound: "C00089" - - metanetx.chemical: "MNXM167" - - sbo: "SBO:0000247" + - bigg.metabolite: "sucr" + - chebi: "CHEBI:17992" + - kegg.compound: "C00089" + - metanetx.chemical: "MNXM167" + - sbo: "SBO:0000247" - !!omap - id: "s_1467" - name: "sulphate" @@ -13278,11 +13278,11 @@ - formula: "O4S" - charge: -2 - annotation: !!omap - - bigg.metabolite: "so4" - - chebi: "CHEBI:16189" - - kegg.compound: "C00059" - - metanetx.chemical: "MNXM58" - - sbo: "SBO:0000247" + - bigg.metabolite: "so4" + - chebi: "CHEBI:16189" + - kegg.compound: "C00059" + - metanetx.chemical: "MNXM58" + - sbo: "SBO:0000247" - !!omap - id: "s_1468" - name: "sulphate" @@ -13290,11 +13290,11 @@ - formula: "O4S" - charge: -2 - annotation: !!omap - - bigg.metabolite: "so4" - - chebi: "CHEBI:16189" - - kegg.compound: "C00059" - - metanetx.chemical: "MNXM58" - - sbo: "SBO:0000247" + - bigg.metabolite: "so4" + - chebi: "CHEBI:16189" + - kegg.compound: "C00059" + - metanetx.chemical: "MNXM58" + - sbo: "SBO:0000247" - !!omap - id: "s_1469" - name: "sulphite" @@ -13302,11 +13302,11 @@ - formula: "O3S" - charge: -2 - annotation: !!omap - - bigg.metabolite: "so3" - - chebi: "CHEBI:17137" - - kegg.compound: "C11481" - - metanetx.chemical: "MNXM105630" - - sbo: "SBO:0000247" + - bigg.metabolite: "so3" + - chebi: "CHEBI:17137" + - kegg.compound: "C11481" + - metanetx.chemical: "MNXM105630" + - sbo: "SBO:0000247" - !!omap - id: "s_1470" - name: "sulphite" @@ -13314,11 +13314,11 @@ - formula: "O3S" - charge: -2 - annotation: !!omap - - bigg.metabolite: "so3" - - chebi: "CHEBI:17137" - - kegg.compound: "C11481" - - metanetx.chemical: "MNXM105630" - - sbo: "SBO:0000247" + - bigg.metabolite: "so3" + - chebi: "CHEBI:17137" + - kegg.compound: "C11481" + - metanetx.chemical: "MNXM105630" + - sbo: "SBO:0000247" - !!omap - id: "s_1471" - name: "taurine" @@ -13326,11 +13326,11 @@ - formula: "C2H7NO3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "taur" - - chebi: "CHEBI:15891" - - kegg.compound: "C00245" - - metanetx.chemical: "MNXM282" - - sbo: "SBO:0000247" + - bigg.metabolite: "taur" + - chebi: "CHEBI:15891" + - kegg.compound: "C00245" + - metanetx.chemical: "MNXM282" + - sbo: "SBO:0000247" - !!omap - id: "s_1472" - name: "taurine" @@ -13338,11 +13338,11 @@ - formula: "C2H7NO3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "taur" - - chebi: "CHEBI:15891" - - kegg.compound: "C00245" - - metanetx.chemical: "MNXM282" - - sbo: "SBO:0000247" + - bigg.metabolite: "taur" + - chebi: "CHEBI:15891" + - kegg.compound: "C00245" + - metanetx.chemical: "MNXM282" + - sbo: "SBO:0000247" - !!omap - id: "s_1473" - name: "taurocholic acid" @@ -13350,11 +13350,11 @@ - formula: "C26H44NO7S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "tchola" - - chebi: "CHEBI:36257" - - kegg.compound: "C05122" - - metanetx.chemical: "MNXM2288" - - sbo: "SBO:0000247" + - bigg.metabolite: "tchola" + - chebi: "CHEBI:36257" + - kegg.compound: "C05122" + - metanetx.chemical: "MNXM2288" + - sbo: "SBO:0000247" - !!omap - id: "s_1474" - name: "taurocholic acid" @@ -13362,11 +13362,11 @@ - formula: "C26H44NO7S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "tchola" - - chebi: "CHEBI:36257" - - kegg.compound: "C05122" - - metanetx.chemical: "MNXM2288" - - sbo: "SBO:0000247" + - bigg.metabolite: "tchola" + - chebi: "CHEBI:36257" + - kegg.compound: "C05122" + - metanetx.chemical: "MNXM2288" + - sbo: "SBO:0000247" - !!omap - id: "s_1475" - name: "TDP" @@ -13374,11 +13374,11 @@ - formula: "C12H16N4O7P2S" - charge: -2 - annotation: !!omap - - bigg.metabolite: "thmpp" - - chebi: "CHEBI:45931" - - kegg.compound: "C00068" - - metanetx.chemical: "MNXM256" - - sbo: "SBO:0000247" + - bigg.metabolite: "thmpp" + - chebi: "CHEBI:45931" + - kegg.compound: "C00068" + - metanetx.chemical: "MNXM256" + - sbo: "SBO:0000247" - !!omap - id: "s_1476" - name: "TDP" @@ -13386,11 +13386,11 @@ - formula: "C12H16N4O7P2S" - charge: -2 - annotation: !!omap - - bigg.metabolite: "thmpp" - - chebi: "CHEBI:45931" - - kegg.compound: "C00068" - - metanetx.chemical: "MNXM256" - - sbo: "SBO:0000247" + - bigg.metabolite: "thmpp" + - chebi: "CHEBI:45931" + - kegg.compound: "C00068" + - metanetx.chemical: "MNXM256" + - sbo: "SBO:0000247" - !!omap - id: "s_1477" - name: "TDP" @@ -13398,11 +13398,11 @@ - formula: "C12H16N4O7P2S" - charge: -2 - annotation: !!omap - - bigg.metabolite: "thmpp" - - chebi: "CHEBI:45931" - - kegg.compound: "C00068" - - metanetx.chemical: "MNXM256" - - sbo: "SBO:0000247" + - bigg.metabolite: "thmpp" + - chebi: "CHEBI:45931" + - kegg.compound: "C00068" + - metanetx.chemical: "MNXM256" + - sbo: "SBO:0000247" - !!omap - id: "s_1479" - name: "tetracosanoyl-CoA" @@ -13410,11 +13410,11 @@ - formula: "C45H78N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ttccoa" - - chebi: "CHEBI:52974" - - kegg.compound: "C16529" - - metanetx.chemical: "MNXM1504" - - sbo: "SBO:0000247" + - bigg.metabolite: "ttccoa" + - chebi: "CHEBI:52974" + - kegg.compound: "C16529" + - metanetx.chemical: "MNXM1504" + - sbo: "SBO:0000247" - !!omap - id: "s_1480" - name: "tetracosanoyl-CoA" @@ -13422,11 +13422,11 @@ - formula: "C45H78N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ttccoa" - - chebi: "CHEBI:52974" - - kegg.compound: "C16529" - - metanetx.chemical: "MNXM1504" - - sbo: "SBO:0000247" + - bigg.metabolite: "ttccoa" + - chebi: "CHEBI:52974" + - kegg.compound: "C16529" + - metanetx.chemical: "MNXM1504" + - sbo: "SBO:0000247" - !!omap - id: "s_1482" - name: "tetracosanoyl-CoA" @@ -13434,11 +13434,11 @@ - formula: "C45H78N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ttccoa" - - chebi: "CHEBI:52974" - - kegg.compound: "C16529" - - metanetx.chemical: "MNXM1504" - - sbo: "SBO:0000247" + - bigg.metabolite: "ttccoa" + - chebi: "CHEBI:52974" + - kegg.compound: "C16529" + - metanetx.chemical: "MNXM1504" + - sbo: "SBO:0000247" - !!omap - id: "s_1483" - name: "tetradecaprenyl diphosphate" @@ -13446,9 +13446,9 @@ - formula: "C70H113O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53039" - - metanetx.chemical: "MNXM83846" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53039" + - metanetx.chemical: "MNXM83846" + - sbo: "SBO:0000247" - !!omap - id: "s_1486" - name: "tetrahydropteroyltri-L-glutamic acid" @@ -13456,11 +13456,11 @@ - formula: "C29H33N9O12" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hpglu" - - chebi: "CHEBI:58140" - - kegg.compound: "C04144" - - metanetx.chemical: "MNXM2563" - - sbo: "SBO:0000247" + - bigg.metabolite: "hpglu" + - chebi: "CHEBI:58140" + - kegg.compound: "C04144" + - metanetx.chemical: "MNXM2563" + - sbo: "SBO:0000247" - !!omap - id: "s_1487" - name: "THF" @@ -13468,11 +13468,11 @@ - formula: "C19H21N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "thf" - - chebi: "CHEBI:20506" - - kegg.compound: "C00101" - - metanetx.chemical: "MNXM79" - - sbo: "SBO:0000247" + - bigg.metabolite: "thf" + - chebi: "CHEBI:20506" + - kegg.compound: "C00101" + - metanetx.chemical: "MNXM79" + - sbo: "SBO:0000247" - !!omap - id: "s_1488" - name: "THF" @@ -13480,11 +13480,11 @@ - formula: "C19H21N7O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "thf" - - chebi: "CHEBI:20506" - - kegg.compound: "C00101" - - metanetx.chemical: "MNXM79" - - sbo: "SBO:0000247" + - bigg.metabolite: "thf" + - chebi: "CHEBI:20506" + - kegg.compound: "C00101" + - metanetx.chemical: "MNXM79" + - sbo: "SBO:0000247" - !!omap - id: "s_1489" - name: "thiamine" @@ -13492,11 +13492,11 @@ - formula: "C12H17N4OS" - charge: 1 - annotation: !!omap - - bigg.metabolite: "thm" - - chebi: "CHEBI:18385" - - kegg.compound: "C00378" - - metanetx.chemical: "MNXM322" - - sbo: "SBO:0000247" + - bigg.metabolite: "thm" + - chebi: "CHEBI:18385" + - kegg.compound: "C00378" + - metanetx.chemical: "MNXM322" + - sbo: "SBO:0000247" - !!omap - id: "s_1490" - name: "thiamine" @@ -13504,11 +13504,11 @@ - formula: "C12H17N4OS" - charge: 1 - annotation: !!omap - - bigg.metabolite: "thm" - - chebi: "CHEBI:18385" - - kegg.compound: "C00378" - - metanetx.chemical: "MNXM322" - - sbo: "SBO:0000247" + - bigg.metabolite: "thm" + - chebi: "CHEBI:18385" + - kegg.compound: "C00378" + - metanetx.chemical: "MNXM322" + - sbo: "SBO:0000247" - !!omap - id: "s_1491" - name: "Thr-tRNA(Thr)" @@ -13516,11 +13516,11 @@ - formula: "C4H9NO2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: "thrtrna" - - chebi: "CHEBI:29163" - - kegg.compound: "C02992" - - metanetx.chemical: "MNXM89895" - - sbo: "SBO:0000247" + - bigg.metabolite: "thrtrna" + - chebi: "CHEBI:29163" + - kegg.compound: "C02992" + - metanetx.chemical: "MNXM89895" + - sbo: "SBO:0000247" - !!omap - id: "s_1492" - name: "Thr-tRNA(Thr)" @@ -13528,11 +13528,11 @@ - formula: "C4H9NO2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: "thrtrna" - - chebi: "CHEBI:29163" - - kegg.compound: "C02992" - - metanetx.chemical: "MNXM89895" - - sbo: "SBO:0000247" + - bigg.metabolite: "thrtrna" + - chebi: "CHEBI:29163" + - kegg.compound: "C02992" + - metanetx.chemical: "MNXM89895" + - sbo: "SBO:0000247" - !!omap - id: "s_1493" - name: "thymidine" @@ -13540,11 +13540,11 @@ - formula: "C10H14N2O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "thymd" - - chebi: "CHEBI:17748" - - kegg.compound: "C00214" - - metanetx.chemical: "MNXM420" - - sbo: "SBO:0000247" + - bigg.metabolite: "thymd" + - chebi: "CHEBI:17748" + - kegg.compound: "C00214" + - metanetx.chemical: "MNXM420" + - sbo: "SBO:0000247" - !!omap - id: "s_1494" - name: "thymidine" @@ -13552,11 +13552,11 @@ - formula: "C10H14N2O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "thymd" - - chebi: "CHEBI:17748" - - kegg.compound: "C00214" - - metanetx.chemical: "MNXM420" - - sbo: "SBO:0000247" + - bigg.metabolite: "thymd" + - chebi: "CHEBI:17748" + - kegg.compound: "C00214" + - metanetx.chemical: "MNXM420" + - sbo: "SBO:0000247" - !!omap - id: "s_1497" - name: "TMP" @@ -13564,11 +13564,11 @@ - formula: "C12H16N4O4PS" - charge: -1 - annotation: !!omap - - bigg.metabolite: "thmmp" - - chebi: "CHEBI:9533" - - kegg.compound: "C01081" - - metanetx.chemical: "MNXM662" - - sbo: "SBO:0000247" + - bigg.metabolite: "thmmp" + - chebi: "CHEBI:9533" + - kegg.compound: "C01081" + - metanetx.chemical: "MNXM662" + - sbo: "SBO:0000247" - !!omap - id: "s_1498" - name: "TMP" @@ -13576,11 +13576,11 @@ - formula: "C12H16N4O4PS" - charge: -1 - annotation: !!omap - - bigg.metabolite: "thmmp" - - chebi: "CHEBI:9533" - - kegg.compound: "C01081" - - metanetx.chemical: "MNXM662" - - sbo: "SBO:0000247" + - bigg.metabolite: "thmmp" + - chebi: "CHEBI:9533" + - kegg.compound: "C01081" + - metanetx.chemical: "MNXM662" + - sbo: "SBO:0000247" - !!omap - id: "s_1503" - name: "trans-aconitate" @@ -13588,11 +13588,11 @@ - formula: "C6H3O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: "acon_T" - - chebi: "CHEBI:15708" - - kegg.compound: "C02341" - - metanetx.chemical: "MNXM1388" - - sbo: "SBO:0000247" + - bigg.metabolite: "acon_T" + - chebi: "CHEBI:15708" + - kegg.compound: "C02341" + - metanetx.chemical: "MNXM1388" + - sbo: "SBO:0000247" - !!omap - id: "s_1504" - name: "trans-aconitate" @@ -13600,11 +13600,11 @@ - formula: "C6H3O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: "acon_T" - - chebi: "CHEBI:15708" - - kegg.compound: "C02341" - - metanetx.chemical: "MNXM1388" - - sbo: "SBO:0000247" + - bigg.metabolite: "acon_T" + - chebi: "CHEBI:15708" + - kegg.compound: "C02341" + - metanetx.chemical: "MNXM1388" + - sbo: "SBO:0000247" - !!omap - id: "s_1507" - name: "trans-dec-2-enoyl-CoA" @@ -13612,11 +13612,11 @@ - formula: "C31H48N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "dc2coa" - - chebi: "CHEBI:61406" - - kegg.compound: "C05275" - - metanetx.chemical: "MNXM580" - - sbo: "SBO:0000247" + - bigg.metabolite: "dc2coa" + - chebi: "CHEBI:61406" + - kegg.compound: "C05275" + - metanetx.chemical: "MNXM580" + - sbo: "SBO:0000247" - !!omap - id: "s_1510" - name: "trans-dodec-2-enoyl-CoA" @@ -13624,11 +13624,11 @@ - formula: "C33H52N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "dd2coa" - - chebi: "CHEBI:57330" - - kegg.compound: "C03221" - - metanetx.chemical: "MNXM642" - - sbo: "SBO:0000247" + - bigg.metabolite: "dd2coa" + - chebi: "CHEBI:57330" + - kegg.compound: "C03221" + - metanetx.chemical: "MNXM642" + - sbo: "SBO:0000247" - !!omap - id: "s_1513" - name: "trans-hexacos-2-enoyl-CoA" @@ -13636,10 +13636,10 @@ - formula: "C47H80N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hxc2coa" - - chebi: "CHEBI:52975" - - metanetx.chemical: "MNXM114303" - - sbo: "SBO:0000247" + - bigg.metabolite: "hxc2coa" + - chebi: "CHEBI:52975" + - metanetx.chemical: "MNXM114303" + - sbo: "SBO:0000247" - !!omap - id: "s_1516" - name: "trans-octadec-2-enoyl-CoA" @@ -13647,11 +13647,11 @@ - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "od2coa" - - chebi: "CHEBI:50570" - - kegg.compound: "C16218" - - metanetx.chemical: "MNXM954" - - sbo: "SBO:0000247" + - bigg.metabolite: "od2coa" + - chebi: "CHEBI:50570" + - kegg.compound: "C16218" + - metanetx.chemical: "MNXM954" + - sbo: "SBO:0000247" - !!omap - id: "s_1519" - name: "trans-tetradec-2-enoyl-CoA" @@ -13659,11 +13659,11 @@ - formula: "C35H56N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "td2coa" - - chebi: "CHEBI:61405" - - kegg.compound: "C05273" - - metanetx.chemical: "MNXM654" - - sbo: "SBO:0000247" + - bigg.metabolite: "td2coa" + - chebi: "CHEBI:61405" + - kegg.compound: "C05273" + - metanetx.chemical: "MNXM654" + - sbo: "SBO:0000247" - !!omap - id: "s_1520" - name: "trehalose" @@ -13671,11 +13671,11 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tre" - - chebi: "CHEBI:16551" - - kegg.compound: "C01083" - - metanetx.chemical: "MNXM198" - - sbo: "SBO:0000247" + - bigg.metabolite: "tre" + - chebi: "CHEBI:16551" + - kegg.compound: "C01083" + - metanetx.chemical: "MNXM198" + - sbo: "SBO:0000247" - !!omap - id: "s_1521" - name: "trehalose" @@ -13683,11 +13683,11 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tre" - - chebi: "CHEBI:16551" - - kegg.compound: "C01083" - - metanetx.chemical: "MNXM198" - - sbo: "SBO:0000247" + - bigg.metabolite: "tre" + - chebi: "CHEBI:16551" + - kegg.compound: "C01083" + - metanetx.chemical: "MNXM198" + - sbo: "SBO:0000247" - !!omap - id: "s_1522" - name: "trehalose" @@ -13695,11 +13695,11 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tre" - - chebi: "CHEBI:16551" - - kegg.compound: "C01083" - - metanetx.chemical: "MNXM198" - - sbo: "SBO:0000247" + - bigg.metabolite: "tre" + - chebi: "CHEBI:16551" + - kegg.compound: "C01083" + - metanetx.chemical: "MNXM198" + - sbo: "SBO:0000247" - !!omap - id: "s_1523" - name: "tridecaprenyl diphosphate" @@ -13707,9 +13707,9 @@ - formula: "C65H105O7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:53040" - - metanetx.chemical: "MNXM5721" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53040" + - metanetx.chemical: "MNXM5721" + - sbo: "SBO:0000247" - !!omap - id: "s_1524" - name: "triglyceride backbone" @@ -13717,11 +13717,11 @@ - formula: "C3H2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag_cho" - - chebi: "CHEBI:17855" - - kegg.compound: "C00422" - - metanetx.chemical: "MNXM248" - - sbo: "SBO:0000649" + - bigg.metabolite: "tag_cho" + - chebi: "CHEBI:17855" + - kegg.compound: "C00422" + - metanetx.chemical: "MNXM248" + - sbo: "SBO:0000649" - !!omap - id: "s_1526" - name: "trimethylenediamine" @@ -13729,10 +13729,10 @@ - formula: "C3H12N2" - charge: 2 - annotation: !!omap - - chebi: "CHEBI:57484" - - kegg.compound: "C00986" - - metanetx.chemical: "MNXM350" - - sbo: "SBO:0000247" + - chebi: "CHEBI:57484" + - kegg.compound: "C00986" + - metanetx.chemical: "MNXM350" + - sbo: "SBO:0000247" - !!omap - id: "s_1527" - name: "Trp-tRNA(Trp)" @@ -13740,11 +13740,11 @@ - formula: "C11H12N2OR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "trptrna" - - chebi: "CHEBI:29159" - - kegg.compound: "C03512" - - metanetx.chemical: "MNXM89804" - - sbo: "SBO:0000247" + - bigg.metabolite: "trptrna" + - chebi: "CHEBI:29159" + - kegg.compound: "C03512" + - metanetx.chemical: "MNXM89804" + - sbo: "SBO:0000247" - !!omap - id: "s_1528" - name: "Trp-tRNA(Trp)" @@ -13752,11 +13752,11 @@ - formula: "C11H12N2OR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "trptrna" - - chebi: "CHEBI:29159" - - kegg.compound: "C03512" - - metanetx.chemical: "MNXM89804" - - sbo: "SBO:0000247" + - bigg.metabolite: "trptrna" + - chebi: "CHEBI:29159" + - kegg.compound: "C03512" + - metanetx.chemical: "MNXM89804" + - sbo: "SBO:0000247" - !!omap - id: "s_1529" - name: "tryptophol" @@ -13764,11 +13764,11 @@ - formula: "C10H11NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ind3eth" - - chebi: "CHEBI:17890" - - kegg.compound: "C00955" - - metanetx.chemical: "MNXM1686" - - sbo: "SBO:0000247" + - bigg.metabolite: "ind3eth" + - chebi: "CHEBI:17890" + - kegg.compound: "C00955" + - metanetx.chemical: "MNXM1686" + - sbo: "SBO:0000247" - !!omap - id: "s_1530" - name: "tryptophol" @@ -13776,11 +13776,11 @@ - formula: "C10H11NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ind3eth" - - chebi: "CHEBI:17890" - - kegg.compound: "C00955" - - metanetx.chemical: "MNXM1686" - - sbo: "SBO:0000247" + - bigg.metabolite: "ind3eth" + - chebi: "CHEBI:17890" + - kegg.compound: "C00955" + - metanetx.chemical: "MNXM1686" + - sbo: "SBO:0000247" - !!omap - id: "s_1531" - name: "tryptophol" @@ -13788,11 +13788,11 @@ - formula: "C10H11NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ind3eth" - - chebi: "CHEBI:17890" - - kegg.compound: "C00955" - - metanetx.chemical: "MNXM1686" - - sbo: "SBO:0000247" + - bigg.metabolite: "ind3eth" + - chebi: "CHEBI:17890" + - kegg.compound: "C00955" + - metanetx.chemical: "MNXM1686" + - sbo: "SBO:0000247" - !!omap - id: "s_1532" - name: "thiamine(1+) triphosphate(4-)" @@ -13800,11 +13800,11 @@ - formula: "C12H16N4O10P3S" - charge: -3 - annotation: !!omap - - bigg.metabolite: "thmtp" - - chebi: "CHEBI:58938" - - kegg.compound: "C03028" - - metanetx.chemical: "MNXM1341" - - sbo: "SBO:0000247" + - bigg.metabolite: "thmtp" + - chebi: "CHEBI:58938" + - kegg.compound: "C03028" + - metanetx.chemical: "MNXM1341" + - sbo: "SBO:0000247" - !!omap - id: "s_1533" - name: "Tyr-tRNA(Tyr)" @@ -13812,11 +13812,11 @@ - formula: "C9H11NO2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: "tyrtrna" - - chebi: "CHEBI:29161" - - kegg.compound: "C02839" - - metanetx.chemical: "MNXM89822" - - sbo: "SBO:0000247" + - bigg.metabolite: "tyrtrna" + - chebi: "CHEBI:29161" + - kegg.compound: "C02839" + - metanetx.chemical: "MNXM89822" + - sbo: "SBO:0000247" - !!omap - id: "s_1534" - name: "Tyr-tRNA(Tyr)" @@ -13824,11 +13824,11 @@ - formula: "C9H11NO2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: "tyrtrna" - - chebi: "CHEBI:29161" - - kegg.compound: "C02839" - - metanetx.chemical: "MNXM89822" - - sbo: "SBO:0000247" + - bigg.metabolite: "tyrtrna" + - chebi: "CHEBI:29161" + - kegg.compound: "C02839" + - metanetx.chemical: "MNXM89822" + - sbo: "SBO:0000247" - !!omap - id: "s_1535" - name: "ubiquinol-6" @@ -13836,10 +13836,10 @@ - formula: "C39H60O4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52970" - - kegg.compound: "C00390" - - metanetx.chemical: "MNXM5319" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52970" + - kegg.compound: "C00390" + - metanetx.chemical: "MNXM5319" + - sbo: "SBO:0000247" - !!omap - id: "s_1537" - name: "ubiquinone-6" @@ -13847,11 +13847,11 @@ - formula: "C39H58O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "q6" - - chebi: "CHEBI:52971" - - kegg.compound: "C17568" - - metanetx.chemical: "MNXM1783" - - sbo: "SBO:0000247" + - bigg.metabolite: "q6" + - chebi: "CHEBI:52971" + - kegg.compound: "C17568" + - metanetx.chemical: "MNXM1783" + - sbo: "SBO:0000247" - !!omap - id: "s_1538" - name: "UDP" @@ -13859,11 +13859,11 @@ - formula: "C9H11N2O12P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "udp" - - chebi: "CHEBI:58223" - - kegg.compound: "C00015" - - metanetx.chemical: "MNXM17" - - sbo: "SBO:0000247" + - bigg.metabolite: "udp" + - chebi: "CHEBI:58223" + - kegg.compound: "C00015" + - metanetx.chemical: "MNXM17" + - sbo: "SBO:0000247" - !!omap - id: "s_1539" - name: "UDP" @@ -13871,11 +13871,11 @@ - formula: "C9H11N2O12P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "udp" - - chebi: "CHEBI:58223" - - kegg.compound: "C00015" - - metanetx.chemical: "MNXM17" - - sbo: "SBO:0000247" + - bigg.metabolite: "udp" + - chebi: "CHEBI:58223" + - kegg.compound: "C00015" + - metanetx.chemical: "MNXM17" + - sbo: "SBO:0000247" - !!omap - id: "s_1540" - name: "UDP" @@ -13883,11 +13883,11 @@ - formula: "C9H11N2O12P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "udp" - - chebi: "CHEBI:58223" - - kegg.compound: "C00015" - - metanetx.chemical: "MNXM17" - - sbo: "SBO:0000247" + - bigg.metabolite: "udp" + - chebi: "CHEBI:58223" + - kegg.compound: "C00015" + - metanetx.chemical: "MNXM17" + - sbo: "SBO:0000247" - !!omap - id: "s_1541" - name: "UDP-D-galactose" @@ -13895,11 +13895,11 @@ - formula: "C15H22N2O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "udpgal" - - chebi: "CHEBI:58439" - - kegg.compound: "C00052" - - metanetx.chemical: "MNXM89795" - - sbo: "SBO:0000247" + - bigg.metabolite: "udpgal" + - chebi: "CHEBI:58439" + - kegg.compound: "C00052" + - metanetx.chemical: "MNXM89795" + - sbo: "SBO:0000247" - !!omap - id: "s_1542" - name: "UDP-D-galactose" @@ -13907,11 +13907,11 @@ - formula: "C15H22N2O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "udpgal" - - chebi: "CHEBI:58439" - - kegg.compound: "C00052" - - metanetx.chemical: "MNXM89795" - - sbo: "SBO:0000247" + - bigg.metabolite: "udpgal" + - chebi: "CHEBI:58439" + - kegg.compound: "C00052" + - metanetx.chemical: "MNXM89795" + - sbo: "SBO:0000247" - !!omap - id: "s_1543" - name: "UDP-D-glucose" @@ -13919,11 +13919,11 @@ - formula: "C15H22N2O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "udpg" - - chebi: "CHEBI:58367" - - kegg.compound: "C00029" - - metanetx.chemical: "MNXM722710" - - sbo: "SBO:0000247" + - bigg.metabolite: "udpg" + - chebi: "CHEBI:58367" + - kegg.compound: "C00029" + - metanetx.chemical: "MNXM722710" + - sbo: "SBO:0000247" - !!omap - id: "s_1544" - name: "UDP-N-acetyl-alpha-D-glucosamine" @@ -13931,11 +13931,11 @@ - formula: "C17H25N3O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "uacgam" - - chebi: "CHEBI:57705" - - kegg.compound: "C00043" - - metanetx.chemical: "MNXM47" - - sbo: "SBO:0000247" + - bigg.metabolite: "uacgam" + - chebi: "CHEBI:57705" + - kegg.compound: "C00043" + - metanetx.chemical: "MNXM47" + - sbo: "SBO:0000247" - !!omap - id: "s_1545" - name: "UMP" @@ -13943,11 +13943,11 @@ - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "ump" - - chebi: "CHEBI:57865" - - kegg.compound: "C00105" - - metanetx.chemical: "MNXM80" - - sbo: "SBO:0000247" + - bigg.metabolite: "ump" + - chebi: "CHEBI:57865" + - kegg.compound: "C00105" + - metanetx.chemical: "MNXM80" + - sbo: "SBO:0000247" - !!omap - id: "s_1546" - name: "UMP" @@ -13955,11 +13955,11 @@ - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "ump" - - chebi: "CHEBI:57865" - - kegg.compound: "C00105" - - metanetx.chemical: "MNXM80" - - sbo: "SBO:0000247" + - bigg.metabolite: "ump" + - chebi: "CHEBI:57865" + - kegg.compound: "C00105" + - metanetx.chemical: "MNXM80" + - sbo: "SBO:0000247" - !!omap - id: "s_1547" - name: "UMP" @@ -13967,11 +13967,11 @@ - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "ump" - - chebi: "CHEBI:57865" - - kegg.compound: "C00105" - - metanetx.chemical: "MNXM80" - - sbo: "SBO:0000247" + - bigg.metabolite: "ump" + - chebi: "CHEBI:57865" + - kegg.compound: "C00105" + - metanetx.chemical: "MNXM80" + - sbo: "SBO:0000247" - !!omap - id: "s_1548" - name: "UMP" @@ -13979,11 +13979,11 @@ - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "ump" - - chebi: "CHEBI:57865" - - kegg.compound: "C00105" - - metanetx.chemical: "MNXM80" - - sbo: "SBO:0000247" + - bigg.metabolite: "ump" + - chebi: "CHEBI:57865" + - kegg.compound: "C00105" + - metanetx.chemical: "MNXM80" + - sbo: "SBO:0000247" - !!omap - id: "s_1549" - name: "undecaprenyl diphosphate" @@ -13991,11 +13991,11 @@ - formula: "C55H89O7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "udcpdp" - - chebi: "CHEBI:53042" - - kegg.compound: "C03543" - - metanetx.chemical: "MNXM5043" - - sbo: "SBO:0000247" + - bigg.metabolite: "udcpdp" + - chebi: "CHEBI:53042" + - kegg.compound: "C03543" + - metanetx.chemical: "MNXM5043" + - sbo: "SBO:0000247" - !!omap - id: "s_1550" - name: "uracil" @@ -14003,11 +14003,11 @@ - formula: "C4H4N2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ura" - - chebi: "CHEBI:17568" - - kegg.compound: "C00106" - - metanetx.chemical: "MNXM158" - - sbo: "SBO:0000247" + - bigg.metabolite: "ura" + - chebi: "CHEBI:17568" + - kegg.compound: "C00106" + - metanetx.chemical: "MNXM158" + - sbo: "SBO:0000247" - !!omap - id: "s_1551" - name: "uracil" @@ -14015,11 +14015,11 @@ - formula: "C4H4N2O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ura" - - chebi: "CHEBI:17568" - - kegg.compound: "C00106" - - metanetx.chemical: "MNXM158" - - sbo: "SBO:0000247" + - bigg.metabolite: "ura" + - chebi: "CHEBI:17568" + - kegg.compound: "C00106" + - metanetx.chemical: "MNXM158" + - sbo: "SBO:0000247" - !!omap - id: "s_1552" - name: "urea" @@ -14027,11 +14027,11 @@ - formula: "CH4N2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "urea" - - chebi: "CHEBI:16199" - - kegg.compound: "C00086" - - metanetx.chemical: "MNXM117" - - sbo: "SBO:0000247" + - bigg.metabolite: "urea" + - chebi: "CHEBI:16199" + - kegg.compound: "C00086" + - metanetx.chemical: "MNXM117" + - sbo: "SBO:0000247" - !!omap - id: "s_1553" - name: "urea" @@ -14039,11 +14039,11 @@ - formula: "CH4N2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "urea" - - chebi: "CHEBI:16199" - - kegg.compound: "C00086" - - metanetx.chemical: "MNXM117" - - sbo: "SBO:0000247" + - bigg.metabolite: "urea" + - chebi: "CHEBI:16199" + - kegg.compound: "C00086" + - metanetx.chemical: "MNXM117" + - sbo: "SBO:0000247" - !!omap - id: "s_1554" - name: "urea-1-carboxylic acid" @@ -14051,11 +14051,11 @@ - formula: "C2H3N2O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "allphn" - - chebi: "CHEBI:15832" - - kegg.compound: "C01010" - - metanetx.chemical: "MNXM1122" - - sbo: "SBO:0000247" + - bigg.metabolite: "allphn" + - chebi: "CHEBI:15832" + - kegg.compound: "C01010" + - metanetx.chemical: "MNXM1122" + - sbo: "SBO:0000247" - !!omap - id: "s_1555" - name: "ureidoglycolic acid" @@ -14063,11 +14063,11 @@ - formula: "C3H5N2O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "urdglyc" - - chebi: "CHEBI:49050" - - kegg.compound: "C05241" - - metanetx.chemical: "MNXM490" - - sbo: "SBO:0000247" + - bigg.metabolite: "urdglyc" + - chebi: "CHEBI:49050" + - kegg.compound: "C05241" + - metanetx.chemical: "MNXM490" + - sbo: "SBO:0000247" - !!omap - id: "s_1556" - name: "uridine" @@ -14075,11 +14075,11 @@ - formula: "C9H12N2O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "uri" - - chebi: "CHEBI:16704" - - kegg.compound: "C00299" - - metanetx.chemical: "MNXM288" - - sbo: "SBO:0000247" + - bigg.metabolite: "uri" + - chebi: "CHEBI:16704" + - kegg.compound: "C00299" + - metanetx.chemical: "MNXM288" + - sbo: "SBO:0000247" - !!omap - id: "s_1557" - name: "uridine" @@ -14087,11 +14087,11 @@ - formula: "C9H12N2O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "uri" - - chebi: "CHEBI:16704" - - kegg.compound: "C00299" - - metanetx.chemical: "MNXM288" - - sbo: "SBO:0000247" + - bigg.metabolite: "uri" + - chebi: "CHEBI:16704" + - kegg.compound: "C00299" + - metanetx.chemical: "MNXM288" + - sbo: "SBO:0000247" - !!omap - id: "s_1558" - name: "uroporphyrinogen III" @@ -14099,11 +14099,11 @@ - formula: "C40H36N4O16" - charge: -8 - annotation: !!omap - - bigg.metabolite: "uppg3" - - chebi: "CHEBI:57308" - - kegg.compound: "C01051" - - metanetx.chemical: "MNXM414" - - sbo: "SBO:0000247" + - bigg.metabolite: "uppg3" + - chebi: "CHEBI:57308" + - kegg.compound: "C01051" + - metanetx.chemical: "MNXM414" + - sbo: "SBO:0000247" - !!omap - id: "s_1559" - name: "UTP" @@ -14111,11 +14111,11 @@ - formula: "C9H11N2O15P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "utp" - - chebi: "CHEBI:46398" - - kegg.compound: "C00075" - - metanetx.chemical: "MNXM121" - - sbo: "SBO:0000247" + - bigg.metabolite: "utp" + - chebi: "CHEBI:46398" + - kegg.compound: "C00075" + - metanetx.chemical: "MNXM121" + - sbo: "SBO:0000247" - !!omap - id: "s_1560" - name: "UTP" @@ -14123,11 +14123,11 @@ - formula: "C9H11N2O15P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "utp" - - chebi: "CHEBI:46398" - - kegg.compound: "C00075" - - metanetx.chemical: "MNXM121" - - sbo: "SBO:0000247" + - bigg.metabolite: "utp" + - chebi: "CHEBI:46398" + - kegg.compound: "C00075" + - metanetx.chemical: "MNXM121" + - sbo: "SBO:0000247" - !!omap - id: "s_1561" - name: "Val-tRNA(Val)" @@ -14135,11 +14135,11 @@ - formula: "C5H11NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "valtrna" - - chebi: "CHEBI:29164" - - kegg.compound: "C02554" - - metanetx.chemical: "MNXM90110" - - sbo: "SBO:0000247" + - bigg.metabolite: "valtrna" + - chebi: "CHEBI:29164" + - kegg.compound: "C02554" + - metanetx.chemical: "MNXM90110" + - sbo: "SBO:0000247" - !!omap - id: "s_1562" - name: "Val-tRNA(Val)" @@ -14147,11 +14147,11 @@ - formula: "C5H11NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "valtrna" - - chebi: "CHEBI:29164" - - kegg.compound: "C02554" - - metanetx.chemical: "MNXM90110" - - sbo: "SBO:0000247" + - bigg.metabolite: "valtrna" + - chebi: "CHEBI:29164" + - kegg.compound: "C02554" + - metanetx.chemical: "MNXM90110" + - sbo: "SBO:0000247" - !!omap - id: "s_1563" - name: "xanthosine" @@ -14159,11 +14159,11 @@ - formula: "C10H12N4O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "xtsn" - - chebi: "CHEBI:18107" - - kegg.compound: "C01762" - - metanetx.chemical: "MNXM687" - - sbo: "SBO:0000247" + - bigg.metabolite: "xtsn" + - chebi: "CHEBI:18107" + - kegg.compound: "C01762" + - metanetx.chemical: "MNXM687" + - sbo: "SBO:0000247" - !!omap - id: "s_1564" - name: "xanthosine" @@ -14171,11 +14171,11 @@ - formula: "C10H12N4O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "xtsn" - - chebi: "CHEBI:18107" - - kegg.compound: "C01762" - - metanetx.chemical: "MNXM687" - - sbo: "SBO:0000247" + - bigg.metabolite: "xtsn" + - chebi: "CHEBI:18107" + - kegg.compound: "C01762" + - metanetx.chemical: "MNXM687" + - sbo: "SBO:0000247" - !!omap - id: "s_1565" - name: "xanthosine-5-phosphate" @@ -14183,11 +14183,11 @@ - formula: "C10H11N4O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "xmp" - - chebi: "CHEBI:57464" - - kegg.compound: "C00655" - - metanetx.chemical: "MNXM298" - - sbo: "SBO:0000247" + - bigg.metabolite: "xmp" + - chebi: "CHEBI:57464" + - kegg.compound: "C00655" + - metanetx.chemical: "MNXM298" + - sbo: "SBO:0000247" - !!omap - id: "s_1566" - name: "xylitol" @@ -14195,11 +14195,11 @@ - formula: "C5H12O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "xylt" - - chebi: "CHEBI:17151" - - kegg.compound: "C00379" - - metanetx.chemical: "MNXM510" - - sbo: "SBO:0000247" + - bigg.metabolite: "xylt" + - chebi: "CHEBI:17151" + - kegg.compound: "C00379" + - metanetx.chemical: "MNXM510" + - sbo: "SBO:0000247" - !!omap - id: "s_1567" - name: "xylitol" @@ -14207,11 +14207,11 @@ - formula: "C5H12O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "xylt" - - chebi: "CHEBI:17151" - - kegg.compound: "C00379" - - metanetx.chemical: "MNXM510" - - sbo: "SBO:0000247" + - bigg.metabolite: "xylt" + - chebi: "CHEBI:17151" + - kegg.compound: "C00379" + - metanetx.chemical: "MNXM510" + - sbo: "SBO:0000247" - !!omap - id: "s_1568" - name: "zymosterol" @@ -14219,11 +14219,11 @@ - formula: "C27H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "zymst" - - chebi: "CHEBI:18252" - - kegg.compound: "C05437" - - metanetx.chemical: "MNXM574" - - sbo: "SBO:0000247" + - bigg.metabolite: "zymst" + - chebi: "CHEBI:18252" + - kegg.compound: "C05437" + - metanetx.chemical: "MNXM574" + - sbo: "SBO:0000247" - !!omap - id: "s_1569" - name: "zymosterol" @@ -14231,11 +14231,11 @@ - formula: "C27H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "zymst" - - chebi: "CHEBI:18252" - - kegg.compound: "C05437" - - metanetx.chemical: "MNXM574" - - sbo: "SBO:0000247" + - bigg.metabolite: "zymst" + - chebi: "CHEBI:18252" + - kegg.compound: "C05437" + - metanetx.chemical: "MNXM574" + - sbo: "SBO:0000247" - !!omap - id: "s_1571" - name: "zymosterol" @@ -14243,11 +14243,11 @@ - formula: "C27H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "zymst" - - chebi: "CHEBI:18252" - - kegg.compound: "C05437" - - metanetx.chemical: "MNXM574" - - sbo: "SBO:0000247" + - bigg.metabolite: "zymst" + - chebi: "CHEBI:18252" + - kegg.compound: "C05437" + - metanetx.chemical: "MNXM574" + - sbo: "SBO:0000247" - !!omap - id: "s_1572" - name: "zymosterol" @@ -14255,11 +14255,11 @@ - formula: "C27H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "zymst" - - chebi: "CHEBI:18252" - - kegg.compound: "C05437" - - metanetx.chemical: "MNXM574" - - sbo: "SBO:0000247" + - bigg.metabolite: "zymst" + - chebi: "CHEBI:18252" + - kegg.compound: "C05437" + - metanetx.chemical: "MNXM574" + - sbo: "SBO:0000247" - !!omap - id: "s_1576" - name: "zymosterol intermediate 1a" @@ -14267,10 +14267,10 @@ - formula: "C28H46O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "M00963" - - chebi: "CHEBI:52388" - - metanetx.chemical: "MNXM89469" - - sbo: "SBO:0000247" + - bigg.metabolite: "M00963" + - chebi: "CHEBI:52388" + - metanetx.chemical: "MNXM89469" + - sbo: "SBO:0000247" - !!omap - id: "s_1577" - name: "zymosterol intermediate 1b" @@ -14278,10 +14278,10 @@ - formula: "C28H44O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "M00959" - - chebi: "CHEBI:52615" - - metanetx.chemical: "MNXM89470" - - sbo: "SBO:0000247" + - bigg.metabolite: "M00959" + - chebi: "CHEBI:52615" + - metanetx.chemical: "MNXM89470" + - sbo: "SBO:0000247" - !!omap - id: "s_1578" - name: "zymosterol intermediate 1c" @@ -14289,9 +14289,9 @@ - formula: "C28H43O3" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:52389" - - metanetx.chemical: "MNXM89471" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52389" + - metanetx.chemical: "MNXM89471" + - sbo: "SBO:0000247" - !!omap - id: "s_1579" - name: "zymosterol intermediate 2" @@ -14299,10 +14299,10 @@ - formula: "C27H42O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "M01067" - - chebi: "CHEBI:52386" - - metanetx.chemical: "MNXM2876" - - sbo: "SBO:0000247" + - bigg.metabolite: "M01067" + - chebi: "CHEBI:52386" + - metanetx.chemical: "MNXM2876" + - sbo: "SBO:0000247" - !!omap - id: "s_1582" - name: "tRNA(Ala)" @@ -14310,11 +14310,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaala" - - chebi: "CHEBI:29170" - - kegg.compound: "C01635" - - metanetx.chemical: "MNXM89576" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaala" + - chebi: "CHEBI:29170" + - kegg.compound: "C01635" + - metanetx.chemical: "MNXM89576" + - sbo: "SBO:0000247" - !!omap - id: "s_1583" - name: "tRNA(Arg)" @@ -14322,11 +14322,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaarg" - - chebi: "CHEBI:29171" - - kegg.compound: "C01636" - - metanetx.chemical: "MNXM90751" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaarg" + - chebi: "CHEBI:29171" + - kegg.compound: "C01636" + - metanetx.chemical: "MNXM90751" + - sbo: "SBO:0000247" - !!omap - id: "s_1584" - name: "tRNA(Arg)" @@ -14334,11 +14334,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaarg" - - chebi: "CHEBI:29171" - - kegg.compound: "C01636" - - metanetx.chemical: "MNXM90751" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaarg" + - chebi: "CHEBI:29171" + - kegg.compound: "C01636" + - metanetx.chemical: "MNXM90751" + - sbo: "SBO:0000247" - !!omap - id: "s_1585" - name: "tRNA(Asn)" @@ -14346,11 +14346,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaasn" - - chebi: "CHEBI:29172" - - kegg.compound: "C01637" - - metanetx.chemical: "MNXM90665" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaasn" + - chebi: "CHEBI:29172" + - kegg.compound: "C01637" + - metanetx.chemical: "MNXM90665" + - sbo: "SBO:0000247" - !!omap - id: "s_1586" - name: "tRNA(Asn)" @@ -14358,11 +14358,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaasn" - - chebi: "CHEBI:29172" - - kegg.compound: "C01637" - - metanetx.chemical: "MNXM90665" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaasn" + - chebi: "CHEBI:29172" + - kegg.compound: "C01637" + - metanetx.chemical: "MNXM90665" + - sbo: "SBO:0000247" - !!omap - id: "s_1587" - name: "tRNA(Asp)" @@ -14370,11 +14370,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaasp" - - chebi: "CHEBI:29186" - - kegg.compound: "C01638" - - metanetx.chemical: "MNXM90752" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaasp" + - chebi: "CHEBI:29186" + - kegg.compound: "C01638" + - metanetx.chemical: "MNXM90752" + - sbo: "SBO:0000247" - !!omap - id: "s_1588" - name: "tRNA(Asp)" @@ -14382,11 +14382,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaasp" - - chebi: "CHEBI:29186" - - kegg.compound: "C01638" - - metanetx.chemical: "MNXM90752" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaasp" + - chebi: "CHEBI:29186" + - kegg.compound: "C01638" + - metanetx.chemical: "MNXM90752" + - sbo: "SBO:0000247" - !!omap - id: "s_1589" - name: "tRNA(Cys)" @@ -14394,11 +14394,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnacys" - - chebi: "CHEBI:29167" - - kegg.compound: "C01639" - - metanetx.chemical: "MNXM162355" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnacys" + - chebi: "CHEBI:29167" + - kegg.compound: "C01639" + - metanetx.chemical: "MNXM162355" + - sbo: "SBO:0000247" - !!omap - id: "s_1590" - name: "tRNA(Gln)" @@ -14406,11 +14406,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnagln" - - chebi: "CHEBI:29168" - - kegg.compound: "C01640" - - metanetx.chemical: "MNXM71" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnagln" + - chebi: "CHEBI:29168" + - kegg.compound: "C01640" + - metanetx.chemical: "MNXM71" + - sbo: "SBO:0000247" - !!omap - id: "s_1591" - name: "tRNA(Glu)" @@ -14418,11 +14418,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaglu" - - chebi: "CHEBI:29175" - - kegg.compound: "C01641" - - metanetx.chemical: "MNXM90886" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaglu" + - chebi: "CHEBI:29175" + - kegg.compound: "C01641" + - metanetx.chemical: "MNXM90886" + - sbo: "SBO:0000247" - !!omap - id: "s_1592" - name: "tRNA(Glu)" @@ -14430,11 +14430,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaglu" - - chebi: "CHEBI:29175" - - kegg.compound: "C01641" - - metanetx.chemical: "MNXM90886" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaglu" + - chebi: "CHEBI:29175" + - kegg.compound: "C01641" + - metanetx.chemical: "MNXM90886" + - sbo: "SBO:0000247" - !!omap - id: "s_1593" - name: "tRNA(Gly)" @@ -14442,11 +14442,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnagly" - - chebi: "CHEBI:29176" - - kegg.compound: "C01642" - - metanetx.chemical: "MNXM90340" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnagly" + - chebi: "CHEBI:29176" + - kegg.compound: "C01642" + - metanetx.chemical: "MNXM90340" + - sbo: "SBO:0000247" - !!omap - id: "s_1594" - name: "tRNA(His)" @@ -14454,11 +14454,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnahis" - - chebi: "CHEBI:29178" - - kegg.compound: "C01643" - - metanetx.chemical: "MNXM90878" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnahis" + - chebi: "CHEBI:29178" + - kegg.compound: "C01643" + - metanetx.chemical: "MNXM90878" + - sbo: "SBO:0000247" - !!omap - id: "s_1595" - name: "tRNA(His)" @@ -14466,11 +14466,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnahis" - - chebi: "CHEBI:29178" - - kegg.compound: "C01643" - - metanetx.chemical: "MNXM90878" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnahis" + - chebi: "CHEBI:29178" + - kegg.compound: "C01643" + - metanetx.chemical: "MNXM90878" + - sbo: "SBO:0000247" - !!omap - id: "s_1596" - name: "tRNA(Ile)" @@ -14478,11 +14478,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaile" - - chebi: "CHEBI:29174" - - kegg.compound: "C01644" - - metanetx.chemical: "MNXM90879" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaile" + - chebi: "CHEBI:29174" + - kegg.compound: "C01644" + - metanetx.chemical: "MNXM90879" + - sbo: "SBO:0000247" - !!omap - id: "s_1597" - name: "tRNA(Ile)" @@ -14490,11 +14490,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaile" - - chebi: "CHEBI:29174" - - kegg.compound: "C01644" - - metanetx.chemical: "MNXM90879" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaile" + - chebi: "CHEBI:29174" + - kegg.compound: "C01644" + - metanetx.chemical: "MNXM90879" + - sbo: "SBO:0000247" - !!omap - id: "s_1598" - name: "tRNA(Leu)" @@ -14502,11 +14502,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaleu" - - chebi: "CHEBI:29169" - - kegg.compound: "C01645" - - metanetx.chemical: "MNXM90880" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaleu" + - chebi: "CHEBI:29169" + - kegg.compound: "C01645" + - metanetx.chemical: "MNXM90880" + - sbo: "SBO:0000247" - !!omap - id: "s_1599" - name: "tRNA(Leu)" @@ -14514,11 +14514,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaleu" - - chebi: "CHEBI:29169" - - kegg.compound: "C01645" - - metanetx.chemical: "MNXM90880" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaleu" + - chebi: "CHEBI:29169" + - kegg.compound: "C01645" + - metanetx.chemical: "MNXM90880" + - sbo: "SBO:0000247" - !!omap - id: "s_1600" - name: "tRNA(Lys)" @@ -14526,11 +14526,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnalys" - - chebi: "CHEBI:29185" - - kegg.compound: "C01646" - - metanetx.chemical: "MNXM90881" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnalys" + - chebi: "CHEBI:29185" + - kegg.compound: "C01646" + - metanetx.chemical: "MNXM90881" + - sbo: "SBO:0000247" - !!omap - id: "s_1601" - name: "tRNA(Lys)" @@ -14538,11 +14538,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnalys" - - chebi: "CHEBI:29185" - - kegg.compound: "C01646" - - metanetx.chemical: "MNXM90881" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnalys" + - chebi: "CHEBI:29185" + - kegg.compound: "C01646" + - metanetx.chemical: "MNXM90881" + - sbo: "SBO:0000247" - !!omap - id: "s_1602" - name: "tRNA(Met)" @@ -14550,11 +14550,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnamet" - - chebi: "CHEBI:29173" - - kegg.compound: "C01647" - - metanetx.chemical: "MNXM90882" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnamet" + - chebi: "CHEBI:29173" + - kegg.compound: "C01647" + - metanetx.chemical: "MNXM90882" + - sbo: "SBO:0000247" - !!omap - id: "s_1603" - name: "tRNA(Met)" @@ -14562,11 +14562,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnamet" - - chebi: "CHEBI:29173" - - kegg.compound: "C01647" - - metanetx.chemical: "MNXM90882" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnamet" + - chebi: "CHEBI:29173" + - kegg.compound: "C01647" + - metanetx.chemical: "MNXM90882" + - sbo: "SBO:0000247" - !!omap - id: "s_1604" - name: "tRNA(Phe)" @@ -14574,11 +14574,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaphe" - - chebi: "CHEBI:29184" - - kegg.compound: "C01648" - - metanetx.chemical: "MNXM90753" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaphe" + - chebi: "CHEBI:29184" + - kegg.compound: "C01648" + - metanetx.chemical: "MNXM90753" + - sbo: "SBO:0000247" - !!omap - id: "s_1605" - name: "tRNA(Phe)" @@ -14586,11 +14586,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaphe" - - chebi: "CHEBI:29184" - - kegg.compound: "C01648" - - metanetx.chemical: "MNXM90753" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaphe" + - chebi: "CHEBI:29184" + - kegg.compound: "C01648" + - metanetx.chemical: "MNXM90753" + - sbo: "SBO:0000247" - !!omap - id: "s_1606" - name: "tRNA(Pro)" @@ -14598,11 +14598,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnapro" - - chebi: "CHEBI:29177" - - kegg.compound: "C01649" - - metanetx.chemical: "MNXM90667" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnapro" + - chebi: "CHEBI:29177" + - kegg.compound: "C01649" + - metanetx.chemical: "MNXM90667" + - sbo: "SBO:0000247" - !!omap - id: "s_1607" - name: "tRNA(Ser)" @@ -14610,11 +14610,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaser" - - chebi: "CHEBI:29179" - - kegg.compound: "C01650" - - metanetx.chemical: "MNXM91028" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaser" + - chebi: "CHEBI:29179" + - kegg.compound: "C01650" + - metanetx.chemical: "MNXM91028" + - sbo: "SBO:0000247" - !!omap - id: "s_1608" - name: "tRNA(Thr)" @@ -14622,11 +14622,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnathr" - - chebi: "CHEBI:29180" - - kegg.compound: "C01651" - - metanetx.chemical: "MNXM90883" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnathr" + - chebi: "CHEBI:29180" + - kegg.compound: "C01651" + - metanetx.chemical: "MNXM90883" + - sbo: "SBO:0000247" - !!omap - id: "s_1609" - name: "tRNA(Thr)" @@ -14634,11 +14634,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnathr" - - chebi: "CHEBI:29180" - - kegg.compound: "C01651" - - metanetx.chemical: "MNXM90883" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnathr" + - chebi: "CHEBI:29180" + - kegg.compound: "C01651" + - metanetx.chemical: "MNXM90883" + - sbo: "SBO:0000247" - !!omap - id: "s_1610" - name: "tRNA(Trp)" @@ -14646,11 +14646,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnatrp" - - chebi: "CHEBI:29181" - - kegg.compound: "C01652" - - metanetx.chemical: "MNXM90755" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnatrp" + - chebi: "CHEBI:29181" + - kegg.compound: "C01652" + - metanetx.chemical: "MNXM90755" + - sbo: "SBO:0000247" - !!omap - id: "s_1611" - name: "tRNA(Trp)" @@ -14658,11 +14658,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnatrp" - - chebi: "CHEBI:29181" - - kegg.compound: "C01652" - - metanetx.chemical: "MNXM90755" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnatrp" + - chebi: "CHEBI:29181" + - kegg.compound: "C01652" + - metanetx.chemical: "MNXM90755" + - sbo: "SBO:0000247" - !!omap - id: "s_1612" - name: "tRNA(Tyr)" @@ -14670,11 +14670,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnatyr" - - chebi: "CHEBI:29182" - - kegg.compound: "C00787" - - metanetx.chemical: "MNXM90668" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnatyr" + - chebi: "CHEBI:29182" + - kegg.compound: "C00787" + - metanetx.chemical: "MNXM90668" + - sbo: "SBO:0000247" - !!omap - id: "s_1613" - name: "tRNA(Tyr)" @@ -14682,11 +14682,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnatyr" - - chebi: "CHEBI:29182" - - kegg.compound: "C00787" - - metanetx.chemical: "MNXM90668" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnatyr" + - chebi: "CHEBI:29182" + - kegg.compound: "C00787" + - metanetx.chemical: "MNXM90668" + - sbo: "SBO:0000247" - !!omap - id: "s_1614" - name: "tRNA(Val)" @@ -14694,11 +14694,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaval" - - chebi: "CHEBI:29183" - - kegg.compound: "C01653" - - metanetx.chemical: "MNXM90885" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaval" + - chebi: "CHEBI:29183" + - kegg.compound: "C01653" + - metanetx.chemical: "MNXM90885" + - sbo: "SBO:0000247" - !!omap - id: "s_1615" - name: "tRNA(Val)" @@ -14706,11 +14706,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnaval" - - chebi: "CHEBI:29183" - - kegg.compound: "C01653" - - metanetx.chemical: "MNXM90885" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnaval" + - chebi: "CHEBI:29183" + - kegg.compound: "C01653" + - metanetx.chemical: "MNXM90885" + - sbo: "SBO:0000247" - !!omap - id: "s_1616" - name: "TRX1" @@ -14718,11 +14718,11 @@ - formula: "C6H10N2O2S2R4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trdrd" - - chebi: "CHEBI:15033" - - kegg.compound: "C00342" - - metanetx.chemical: "MNXM96993" - - sbo: "SBO:0000247" + - bigg.metabolite: "trdrd" + - chebi: "CHEBI:15033" + - kegg.compound: "C00342" + - metanetx.chemical: "MNXM96993" + - sbo: "SBO:0000247" - !!omap - id: "s_1617" - name: "TRX1" @@ -14730,11 +14730,11 @@ - formula: "C6H10N2O2S2R4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trdrd" - - chebi: "CHEBI:15033" - - kegg.compound: "C00342" - - metanetx.chemical: "MNXM96993" - - sbo: "SBO:0000247" + - bigg.metabolite: "trdrd" + - chebi: "CHEBI:15033" + - kegg.compound: "C00342" + - metanetx.chemical: "MNXM96993" + - sbo: "SBO:0000247" - !!omap - id: "s_1618" - name: "TRX1" @@ -14742,11 +14742,11 @@ - formula: "C6H10N2O2S2R4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trdrd" - - chebi: "CHEBI:15033" - - kegg.compound: "C00342" - - metanetx.chemical: "MNXM96993" - - sbo: "SBO:0000247" + - bigg.metabolite: "trdrd" + - chebi: "CHEBI:15033" + - kegg.compound: "C00342" + - metanetx.chemical: "MNXM96993" + - sbo: "SBO:0000247" - !!omap - id: "s_1619" - name: "TRX1" @@ -14754,11 +14754,11 @@ - formula: "C6H10N2O2S2R4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trdrd" - - chebi: "CHEBI:15033" - - kegg.compound: "C00342" - - metanetx.chemical: "MNXM96993" - - sbo: "SBO:0000247" + - bigg.metabolite: "trdrd" + - chebi: "CHEBI:15033" + - kegg.compound: "C00342" + - metanetx.chemical: "MNXM96993" + - sbo: "SBO:0000247" - !!omap - id: "s_1620" - name: "TRX1 disulphide" @@ -14766,11 +14766,11 @@ - formula: "C6H9N2O2S2R4" - charge: 1 - annotation: !!omap - - bigg.metabolite: "trdox" - - chebi: "CHEBI:18191" - - kegg.compound: "C00343" - - metanetx.chemical: "MNXM148" - - sbo: "SBO:0000247" + - bigg.metabolite: "trdox" + - chebi: "CHEBI:18191" + - kegg.compound: "C00343" + - metanetx.chemical: "MNXM148" + - sbo: "SBO:0000247" - !!omap - id: "s_1621" - name: "TRX1 disulphide" @@ -14778,11 +14778,11 @@ - formula: "C6H9N2O2S2R4" - charge: 1 - annotation: !!omap - - bigg.metabolite: "trdox" - - chebi: "CHEBI:18191" - - kegg.compound: "C00343" - - metanetx.chemical: "MNXM148" - - sbo: "SBO:0000247" + - bigg.metabolite: "trdox" + - chebi: "CHEBI:18191" + - kegg.compound: "C00343" + - metanetx.chemical: "MNXM148" + - sbo: "SBO:0000247" - !!omap - id: "s_1622" - name: "TRX1 disulphide" @@ -14790,11 +14790,11 @@ - formula: "C6H9N2O2S2R4" - charge: 1 - annotation: !!omap - - bigg.metabolite: "trdox" - - chebi: "CHEBI:18191" - - kegg.compound: "C00343" - - metanetx.chemical: "MNXM148" - - sbo: "SBO:0000247" + - bigg.metabolite: "trdox" + - chebi: "CHEBI:18191" + - kegg.compound: "C00343" + - metanetx.chemical: "MNXM148" + - sbo: "SBO:0000247" - !!omap - id: "s_1623" - name: "TRX1 disulphide" @@ -14802,11 +14802,11 @@ - formula: "C6H9N2O2S2R4" - charge: 1 - annotation: !!omap - - bigg.metabolite: "trdox" - - chebi: "CHEBI:18191" - - kegg.compound: "C00343" - - metanetx.chemical: "MNXM148" - - sbo: "SBO:0000247" + - bigg.metabolite: "trdox" + - chebi: "CHEBI:18191" + - kegg.compound: "C00343" + - metanetx.chemical: "MNXM148" + - sbo: "SBO:0000247" - !!omap - id: "s_2763" - name: "kynurenic acid" @@ -14814,11 +14814,11 @@ - formula: "C10H6NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "kynate" - - chebi: "CHEBI:18344" - - kegg.compound: "C01717" - - metanetx.chemical: "MNXM1113" - - sbo: "SBO:0000247" + - bigg.metabolite: "kynate" + - chebi: "CHEBI:18344" + - kegg.compound: "C01717" + - metanetx.chemical: "MNXM1113" + - sbo: "SBO:0000247" - !!omap - id: "s_2764" - name: "quinaldic acid" @@ -14826,10 +14826,10 @@ - formula: "C10H7NO2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:18386" - - kegg.compound: "C06325" - - metanetx.chemical: "MNXM4797" - - sbo: "SBO:0000247" + - chebi: "CHEBI:18386" + - kegg.compound: "C06325" + - metanetx.chemical: "MNXM4797" + - sbo: "SBO:0000247" - !!omap - id: "s_1845" - name: "ACP1" @@ -14837,11 +14837,11 @@ - formula: "" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ACP" - - chebi: "CHEBI:18359" - - kegg.compound: "C00229" - - metanetx.chemical: "MNXM925" - - sbo: "SBO:0000247" + - bigg.metabolite: "ACP" + - chebi: "CHEBI:18359" + - kegg.compound: "C00229" + - metanetx.chemical: "MNXM925" + - sbo: "SBO:0000247" - !!omap - id: "s_2766" - name: "14-demethyllanosterol" @@ -14849,11 +14849,11 @@ - formula: "C29H48O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "44mzym" - - chebi: "CHEBI:18364" - - kegg.compound: "C05108" - - metanetx.chemical: "MNXM913" - - sbo: "SBO:0000247" + - bigg.metabolite: "44mzym" + - chebi: "CHEBI:18364" + - kegg.compound: "C05108" + - metanetx.chemical: "MNXM913" + - sbo: "SBO:0000247" - !!omap - id: "s_2768" - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol" @@ -14861,11 +14861,11 @@ - formula: "C28H42O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ergtetrol" - - chebi: "CHEBI:18249" - - kegg.compound: "C05440" - - metanetx.chemical: "MNXM1109" - - sbo: "SBO:0000247" + - bigg.metabolite: "ergtetrol" + - chebi: "CHEBI:18249" + - kegg.compound: "C05440" + - metanetx.chemical: "MNXM1109" + - sbo: "SBO:0000247" - !!omap - id: "s_2770" - name: "acetoacetyl-ACP" @@ -14873,11 +14873,11 @@ - formula: "C4H5O2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: "actACP" - - chebi: "CHEBI:2393" - - kegg.compound: "C05744" - - metanetx.chemical: "MNXM1223" - - sbo: "SBO:0000247" + - bigg.metabolite: "actACP" + - chebi: "CHEBI:2393" + - kegg.compound: "C05744" + - metanetx.chemical: "MNXM1223" + - sbo: "SBO:0000247" - !!omap - id: "s_2771" - name: "butanoyl-ACP" @@ -14885,10 +14885,10 @@ - formula: "C4H7OSR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:3247" - - kegg.compound: "C05745" - - metanetx.chemical: "MNXM2645" - - sbo: "SBO:0000247" + - chebi: "CHEBI:3247" + - kegg.compound: "C05745" + - metanetx.chemical: "MNXM2645" + - sbo: "SBO:0000247" - !!omap - id: "s_2772" - name: "3-oxo-hexanoyl-ACP" @@ -14896,11 +14896,11 @@ - formula: "C6H9O2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: "3ohexACP" - - chebi: "CHEBI:1642" - - kegg.compound: "C05746" - - metanetx.chemical: "MNXM25602" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ohexACP" + - chebi: "CHEBI:1642" + - kegg.compound: "C05746" + - metanetx.chemical: "MNXM25602" + - sbo: "SBO:0000247" - !!omap - id: "s_2773" - name: "hexanoyl-ACP" @@ -14908,10 +14908,10 @@ - formula: "C6H11OSR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:5704" - - kegg.compound: "C05749" - - metanetx.chemical: "MNXM23683" - - sbo: "SBO:0000247" + - chebi: "CHEBI:5704" + - kegg.compound: "C05749" + - metanetx.chemical: "MNXM23683" + - sbo: "SBO:0000247" - !!omap - id: "s_2774" - name: "3-oxo-octanoyl-ACP" @@ -14919,11 +14919,11 @@ - formula: "C8H13O2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: "3ooctACP" - - chebi: "CHEBI:1646" - - kegg.compound: "C05750" - - metanetx.chemical: "MNXM28031" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ooctACP" + - chebi: "CHEBI:1646" + - kegg.compound: "C05750" + - metanetx.chemical: "MNXM28031" + - sbo: "SBO:0000247" - !!omap - id: "s_2775" - name: "3-hydroxybutanoyl-ACP" @@ -14931,9 +14931,9 @@ - formula: "C4H7O2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: "3hbutACP" - - kegg.compound: "C04618" - - sbo: "SBO:0000247" + - bigg.metabolite: "3hbutACP" + - kegg.compound: "C04618" + - sbo: "SBO:0000247" - !!omap - id: "s_2776" - name: "3-hydroxyhexanoyl-ACP" @@ -14941,11 +14941,11 @@ - formula: "C6H11O2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: "3hhexACP" - - chebi: "CHEBI:326" - - kegg.compound: "C05747" - - metanetx.chemical: "MNXM25370" - - sbo: "SBO:0000247" + - bigg.metabolite: "3hhexACP" + - chebi: "CHEBI:326" + - kegg.compound: "C05747" + - metanetx.chemical: "MNXM25370" + - sbo: "SBO:0000247" - !!omap - id: "s_2777" - name: "3-hydroxyoctanoyl-ACP" @@ -14953,11 +14953,11 @@ - formula: "C8H15O2SR" - charge: 0 - annotation: !!omap - - bigg.metabolite: "3hoctaACP" - - chebi: "CHEBI:80387" - - kegg.compound: "C16220" - - metanetx.chemical: "MNXM10033" - - sbo: "SBO:0000247" + - bigg.metabolite: "3hoctaACP" + - chebi: "CHEBI:80387" + - kegg.compound: "C16220" + - metanetx.chemical: "MNXM10033" + - sbo: "SBO:0000247" - !!omap - id: "s_2778" - name: "trans-but-2-enoyl-ACP" @@ -14965,8 +14965,8 @@ - formula: "C4H5OSR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:132146" - - sbo: "SBO:0000247" + - chebi: "CHEBI:132146" + - sbo: "SBO:0000247" - !!omap - id: "s_2779" - name: "trans-hex-2-enoyl-ACP" @@ -14974,11 +14974,11 @@ - formula: "C6H9OSR" - charge: 0 - annotation: !!omap - - bigg.metabolite: "thex2eACP" - - chebi: "CHEBI:10727" - - kegg.compound: "C05748" - - metanetx.chemical: "MNXM24502" - - sbo: "SBO:0000247" + - bigg.metabolite: "thex2eACP" + - chebi: "CHEBI:10727" + - kegg.compound: "C05748" + - metanetx.chemical: "MNXM24502" + - sbo: "SBO:0000247" - !!omap - id: "s_2780" - name: "trans-oct-2-enoyl-ACP" @@ -14986,10 +14986,10 @@ - formula: "C8H13OSR" - charge: 0 - annotation: !!omap - - bigg.metabolite: "toct2eACP" - - kegg.compound: "C05751" - - metanetx.chemical: "MNXM23766" - - sbo: "SBO:0000247" + - bigg.metabolite: "toct2eACP" + - kegg.compound: "C05751" + - metanetx.chemical: "MNXM23766" + - sbo: "SBO:0000247" - !!omap - id: "s_2781" - name: "lauroyl-CoA" @@ -14997,11 +14997,11 @@ - formula: "C33H54N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ddcacoa" - - chebi: "CHEBI:57375" - - kegg.compound: "C01832" - - metanetx.chemical: "MNXM363" - - sbo: "SBO:0000247" + - bigg.metabolite: "ddcacoa" + - chebi: "CHEBI:57375" + - kegg.compound: "C01832" + - metanetx.chemical: "MNXM363" + - sbo: "SBO:0000247" - !!omap - id: "s_2782" - name: "malonyl-CoA" @@ -15009,11 +15009,11 @@ - formula: "C24H33N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: "malcoa" - - chebi: "CHEBI:57384" - - kegg.compound: "C00083" - - metanetx.chemical: "MNXM40" - - sbo: "SBO:0000247" + - bigg.metabolite: "malcoa" + - chebi: "CHEBI:57384" + - kegg.compound: "C00083" + - metanetx.chemical: "MNXM40" + - sbo: "SBO:0000247" - !!omap - id: "s_2783" - name: "H+" @@ -15021,11 +15021,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_2784" - name: "carbon dioxide" @@ -15033,11 +15033,11 @@ - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "co2" - - chebi: "CHEBI:16526" - - kegg.compound: "C00011" - - metanetx.chemical: "MNXM13" - - sbo: "SBO:0000247" + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - id: "s_2785" - name: "coenzyme A" @@ -15045,11 +15045,11 @@ - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "coa" - - chebi: "CHEBI:57287" - - kegg.compound: "C00010" - - metanetx.chemical: "MNXM12" - - sbo: "SBO:0000247" + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - id: "s_2786" - name: "3-oxotetradecanoyl-CoA" @@ -15057,11 +15057,11 @@ - formula: "C35H56N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3otdcoa" - - chebi: "CHEBI:28726" - - kegg.compound: "C05261" - - metanetx.chemical: "MNXM707" - - sbo: "SBO:0000247" + - bigg.metabolite: "3otdcoa" + - chebi: "CHEBI:28726" + - kegg.compound: "C05261" + - metanetx.chemical: "MNXM707" + - sbo: "SBO:0000247" - !!omap - id: "s_2787" - name: "myristoyl-CoA" @@ -15069,11 +15069,11 @@ - formula: "C35H58N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "tdcoa" - - chebi: "CHEBI:57385" - - kegg.compound: "C02593" - - metanetx.chemical: "MNXM224" - - sbo: "SBO:0000247" + - bigg.metabolite: "tdcoa" + - chebi: "CHEBI:57385" + - kegg.compound: "C02593" + - metanetx.chemical: "MNXM224" + - sbo: "SBO:0000247" - !!omap - id: "s_2788" - name: "3-oxopalmitoyl-CoA" @@ -15081,11 +15081,11 @@ - formula: "C37H60N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3ohdcoa" - - chebi: "CHEBI:57349" - - kegg.compound: "C05259" - - metanetx.chemical: "MNXM738" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ohdcoa" + - chebi: "CHEBI:57349" + - kegg.compound: "C05259" + - metanetx.chemical: "MNXM738" + - sbo: "SBO:0000247" - !!omap - id: "s_2789" - name: "palmitoyl-CoA" @@ -15093,11 +15093,11 @@ - formula: "C37H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "pmtcoa" - - chebi: "CHEBI:57379" - - kegg.compound: "C00154" - - metanetx.chemical: "MNXM88" - - sbo: "SBO:0000247" + - bigg.metabolite: "pmtcoa" + - chebi: "CHEBI:57379" + - kegg.compound: "C00154" + - metanetx.chemical: "MNXM88" + - sbo: "SBO:0000247" - !!omap - id: "s_2790" - name: "3-oxooctadecanoyl-CoA" @@ -15105,11 +15105,11 @@ - formula: "C39H64N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3ohodcoa" - - chebi: "CHEBI:50571" - - kegg.compound: "C16216" - - metanetx.chemical: "MNXM513" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ohodcoa" + - chebi: "CHEBI:50571" + - kegg.compound: "C16216" + - metanetx.chemical: "MNXM513" + - sbo: "SBO:0000247" - !!omap - id: "s_2791" - name: "stearoyl-CoA" @@ -15117,11 +15117,11 @@ - formula: "C39H66N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "stcoa" - - chebi: "CHEBI:57394" - - kegg.compound: "C00412" - - metanetx.chemical: "MNXM272" - - sbo: "SBO:0000247" + - bigg.metabolite: "stcoa" + - chebi: "CHEBI:57394" + - kegg.compound: "C00412" + - metanetx.chemical: "MNXM272" + - sbo: "SBO:0000247" - !!omap - id: "s_2792" - name: "3-oxoicosanoyl-CoA" @@ -15129,10 +15129,10 @@ - formula: "C41H68N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2251" - - chebi: "CHEBI:52327" - - metanetx.chemical: "MNXM36762" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2251" + - chebi: "CHEBI:52327" + - metanetx.chemical: "MNXM36762" + - sbo: "SBO:0000247" - !!omap - id: "s_2793" - name: "icosanoyl-CoA" @@ -15140,11 +15140,11 @@ - formula: "C41H70N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "arachcoa" - - chebi: "CHEBI:15527" - - kegg.compound: "C02041" - - metanetx.chemical: "MNXM1429" - - sbo: "SBO:0000247" + - bigg.metabolite: "arachcoa" + - chebi: "CHEBI:15527" + - kegg.compound: "C02041" + - metanetx.chemical: "MNXM1429" + - sbo: "SBO:0000247" - !!omap - id: "s_2794" - name: "3-oxodocosanoyl-CoA" @@ -15152,10 +15152,10 @@ - formula: "C43H72N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2250" - - chebi: "CHEBI:52328" - - metanetx.chemical: "MNXM36756" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2250" + - chebi: "CHEBI:52328" + - metanetx.chemical: "MNXM36756" + - sbo: "SBO:0000247" - !!omap - id: "s_2795" - name: "docosanoyl-CoA" @@ -15163,11 +15163,11 @@ - formula: "C43H74N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "docoscoa" - - chebi: "CHEBI:65088" - - kegg.compound: "C16528" - - metanetx.chemical: "MNXM10780" - - sbo: "SBO:0000247" + - bigg.metabolite: "docoscoa" + - chebi: "CHEBI:65088" + - kegg.compound: "C16528" + - metanetx.chemical: "MNXM10780" + - sbo: "SBO:0000247" - !!omap - id: "s_2796" - name: "3-oxotetracosanoyl-CoA" @@ -15175,10 +15175,10 @@ - formula: "C45H76N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2253" - - chebi: "CHEBI:52329" - - metanetx.chemical: "MNXM36773" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2253" + - chebi: "CHEBI:52329" + - metanetx.chemical: "MNXM36773" + - sbo: "SBO:0000247" - !!omap - id: "s_2797" - name: "tetracosanoyl-CoA" @@ -15186,11 +15186,11 @@ - formula: "C45H78N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ttccoa" - - chebi: "CHEBI:52974" - - kegg.compound: "C16529" - - metanetx.chemical: "MNXM1504" - - sbo: "SBO:0000247" + - bigg.metabolite: "ttccoa" + - chebi: "CHEBI:52974" + - kegg.compound: "C16529" + - metanetx.chemical: "MNXM1504" + - sbo: "SBO:0000247" - !!omap - id: "s_2798" - name: "3-oxohexacosanoyl-CoA" @@ -15198,10 +15198,10 @@ - formula: "C47H80N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3ohxccoa" - - chebi: "CHEBI:52977" - - metanetx.chemical: "MNXM36758" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ohxccoa" + - chebi: "CHEBI:52977" + - metanetx.chemical: "MNXM36758" + - sbo: "SBO:0000247" - !!omap - id: "s_2799" - name: "NADPH" @@ -15209,11 +15209,11 @@ - formula: "C21H26N7O17P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "nadph" - - chebi: "CHEBI:57783" - - kegg.compound: "C00005" - - metanetx.chemical: "MNXM6" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadph" + - chebi: "CHEBI:57783" + - kegg.compound: "C00005" + - metanetx.chemical: "MNXM6" + - sbo: "SBO:0000247" - !!omap - id: "s_2800" - name: "NADP(+)" @@ -15221,11 +15221,11 @@ - formula: "C21H25N7O17P3" - charge: -3 - annotation: !!omap - - bigg.metabolite: "nadp" - - chebi: "CHEBI:58349" - - kegg.compound: "C00006" - - metanetx.chemical: "MNXM5" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadp" + - chebi: "CHEBI:58349" + - kegg.compound: "C00006" + - metanetx.chemical: "MNXM5" + - sbo: "SBO:0000247" - !!omap - id: "s_2801" - name: "(S)-3-hydroxytetradecanoyl-CoA" @@ -15233,11 +15233,11 @@ - formula: "C35H58N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3htdcoa" - - chebi: "CHEBI:27466" - - kegg.compound: "C05260" - - metanetx.chemical: "MNXM767" - - sbo: "SBO:0000247" + - bigg.metabolite: "3htdcoa" + - chebi: "CHEBI:27466" + - kegg.compound: "C05260" + - metanetx.chemical: "MNXM767" + - sbo: "SBO:0000247" - !!omap - id: "s_2802" - name: "(S)-3-hydroxypalmitoyl-CoA" @@ -15245,11 +15245,11 @@ - formula: "C37H62N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "3hhdcoa" - - chebi: "CHEBI:27402" - - kegg.compound: "C05258" - - metanetx.chemical: "MNXM825" - - sbo: "SBO:0000247" + - bigg.metabolite: "3hhdcoa" + - chebi: "CHEBI:27402" + - kegg.compound: "C05258" + - metanetx.chemical: "MNXM825" + - sbo: "SBO:0000247" - !!omap - id: "s_2803" - name: "3-hydroxyoctadecanoyl-CoA" @@ -15257,11 +15257,11 @@ - formula: "C39H66N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2248" - - chebi: "CHEBI:50583" - - kegg.compound: "C16217" - - metanetx.chemical: "MNXM1309" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2248" + - chebi: "CHEBI:50583" + - kegg.compound: "C16217" + - metanetx.chemical: "MNXM1309" + - sbo: "SBO:0000247" - !!omap - id: "s_2804" - name: "3-hydroxyicosanoyl-CoA" @@ -15269,10 +15269,10 @@ - formula: "C41H70N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2247" - - chebi: "CHEBI:52324" - - metanetx.chemical: "MNXM146349" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2247" + - chebi: "CHEBI:52324" + - metanetx.chemical: "MNXM146349" + - sbo: "SBO:0000247" - !!omap - id: "s_2805" - name: "3-hydroxydocosanoyl-CoA" @@ -15280,10 +15280,10 @@ - formula: "C43H74N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2246" - - chebi: "CHEBI:52325" - - metanetx.chemical: "MNXM162568" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2246" + - chebi: "CHEBI:52325" + - metanetx.chemical: "MNXM162568" + - sbo: "SBO:0000247" - !!omap - id: "s_2806" - name: "3-hydroxytetracosanoyl-CoA" @@ -15291,10 +15291,10 @@ - formula: "C45H78N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2249" - - chebi: "CHEBI:52326" - - metanetx.chemical: "MNXM36558" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2249" + - chebi: "CHEBI:52326" + - metanetx.chemical: "MNXM36558" + - sbo: "SBO:0000247" - !!omap - id: "s_2807" - name: "(S)-3-hydroxyhexacosanoyl-CoA" @@ -15302,9 +15302,9 @@ - formula: "C47H82N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:52976" - - metanetx.chemical: "MNXM31741" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52976" + - metanetx.chemical: "MNXM31741" + - sbo: "SBO:0000247" - !!omap - id: "s_2808" - name: "H2O" @@ -15312,11 +15312,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_2809" - name: "trans-tetradec-2-enoyl-CoA" @@ -15324,11 +15324,11 @@ - formula: "C35H56N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "td2coa" - - chebi: "CHEBI:61405" - - kegg.compound: "C05273" - - metanetx.chemical: "MNXM654" - - sbo: "SBO:0000247" + - bigg.metabolite: "td2coa" + - chebi: "CHEBI:61405" + - kegg.compound: "C05273" + - metanetx.chemical: "MNXM654" + - sbo: "SBO:0000247" - !!omap - id: "s_2810" - name: "trans-hexadec-2-enoyl-CoA" @@ -15336,10 +15336,10 @@ - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hdd2coa" - - kegg.compound: "C05272" - - metanetx.chemical: "MNXM581" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdd2coa" + - kegg.compound: "C05272" + - metanetx.chemical: "MNXM581" + - sbo: "SBO:0000247" - !!omap - id: "s_2811" - name: "trans-octadec-2-enoyl-CoA" @@ -15347,11 +15347,11 @@ - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "od2coa" - - chebi: "CHEBI:50570" - - kegg.compound: "C16218" - - metanetx.chemical: "MNXM954" - - sbo: "SBO:0000247" + - bigg.metabolite: "od2coa" + - chebi: "CHEBI:50570" + - kegg.compound: "C16218" + - metanetx.chemical: "MNXM954" + - sbo: "SBO:0000247" - !!omap - id: "s_2812" - name: "trans-icos-2-enoyl-CoA" @@ -15359,8 +15359,8 @@ - formula: "C41H68N7O17P3S" - charge: -4 - annotation: !!omap - - metanetx.chemical: "MNXM22115" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM22115" + - sbo: "SBO:0000247" - !!omap - id: "s_2813" - name: "trans-docos-2-enoyl-CoA" @@ -15368,8 +15368,8 @@ - formula: "C43H72N7O17P3S" - charge: -4 - annotation: !!omap - - metanetx.chemical: "MNXM97615" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM97615" + - sbo: "SBO:0000247" - !!omap - id: "s_2814" - name: "trans-tetracos-2-enoyl-CoA" @@ -15377,10 +15377,10 @@ - formula: "C45H76N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2245" - - chebi: "CHEBI:75068" - - metanetx.chemical: "MNXM97616" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2245" + - chebi: "CHEBI:75068" + - metanetx.chemical: "MNXM97616" + - sbo: "SBO:0000247" - !!omap - id: "s_2815" - name: "trans-hexacos-2-enoyl-CoA" @@ -15388,10 +15388,10 @@ - formula: "C47H80N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hxc2coa" - - chebi: "CHEBI:52975" - - metanetx.chemical: "MNXM114303" - - sbo: "SBO:0000247" + - bigg.metabolite: "hxc2coa" + - chebi: "CHEBI:52975" + - metanetx.chemical: "MNXM114303" + - sbo: "SBO:0000247" - !!omap - id: "s_2816" - name: "hexacosanoyl-CoA" @@ -15399,10 +15399,10 @@ - formula: "C47H82N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hexccoa" - - chebi: "CHEBI:52966" - - metanetx.chemical: "MNXM1190" - - sbo: "SBO:0000247" + - bigg.metabolite: "hexccoa" + - chebi: "CHEBI:52966" + - metanetx.chemical: "MNXM1190" + - sbo: "SBO:0000247" - !!omap - id: "s_2817" - name: "oxygen" @@ -15410,11 +15410,11 @@ - formula: "O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "o2" - - chebi: "CHEBI:15379" - - kegg.compound: "C00007" - - metanetx.chemical: "MNXM4" - - sbo: "SBO:0000247" + - bigg.metabolite: "o2" + - chebi: "CHEBI:15379" + - kegg.compound: "C00007" + - metanetx.chemical: "MNXM4" + - sbo: "SBO:0000247" - !!omap - id: "s_2818" - name: "NADH" @@ -15422,11 +15422,11 @@ - formula: "C21H27N7O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "nadh" - - chebi: "CHEBI:57945" - - kegg.compound: "C00004" - - metanetx.chemical: "MNXM10" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadh" + - chebi: "CHEBI:57945" + - kegg.compound: "C00004" + - metanetx.chemical: "MNXM10" + - sbo: "SBO:0000247" - !!omap - id: "s_2819" - name: "palmitoleoyl-CoA(4-)" @@ -15434,11 +15434,11 @@ - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hdcoa" - - chebi: "CHEBI:61540" - - kegg.compound: "C21072" - - metanetx.chemical: "MNXM781" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdcoa" + - chebi: "CHEBI:61540" + - kegg.compound: "C21072" + - metanetx.chemical: "MNXM781" + - sbo: "SBO:0000247" - !!omap - id: "s_2820" - name: "NAD" @@ -15446,11 +15446,11 @@ - formula: "C21H26N7O14P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "nad" - - chebi: "CHEBI:57540" - - kegg.compound: "C00003" - - metanetx.chemical: "MNXM8" - - sbo: "SBO:0000247" + - bigg.metabolite: "nad" + - chebi: "CHEBI:57540" + - kegg.compound: "C00003" + - metanetx.chemical: "MNXM8" + - sbo: "SBO:0000247" - !!omap - id: "s_2821" - name: "oleoyl-CoA" @@ -15458,11 +15458,11 @@ - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ocdce9coa" - - chebi: "CHEBI:57387" - - kegg.compound: "C00510" - - metanetx.chemical: "MNXM686" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdce9coa" + - chebi: "CHEBI:57387" + - kegg.compound: "C00510" + - metanetx.chemical: "MNXM686" + - sbo: "SBO:0000247" - !!omap - id: "s_2822" - name: "butyrate" @@ -15470,11 +15470,11 @@ - formula: "C4H7O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "but" - - chebi: "CHEBI:17968" - - kegg.compound: "C00246" - - metanetx.chemical: "MNXM458" - - sbo: "SBO:0000247" + - bigg.metabolite: "but" + - chebi: "CHEBI:17968" + - kegg.compound: "C00246" + - metanetx.chemical: "MNXM458" + - sbo: "SBO:0000247" - !!omap - id: "s_2824" - name: "hexanoate" @@ -15482,11 +15482,11 @@ - formula: "C6H11O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hxa" - - chebi: "CHEBI:17120" - - kegg.compound: "C01585" - - metanetx.chemical: "MNXM1653" - - sbo: "SBO:0000247" + - bigg.metabolite: "hxa" + - chebi: "CHEBI:17120" + - kegg.compound: "C01585" + - metanetx.chemical: "MNXM1653" + - sbo: "SBO:0000247" - !!omap - id: "s_2826" - name: "oleate" @@ -15494,11 +15494,11 @@ - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdcea" - - chebi: "CHEBI:30823" - - kegg.compound: "C00712" - - metanetx.chemical: "MNXM306" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - id: "s_2828" - name: "butyrate" @@ -15506,11 +15506,11 @@ - formula: "C4H7O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "but" - - chebi: "CHEBI:17968" - - kegg.compound: "C00246" - - metanetx.chemical: "MNXM458" - - sbo: "SBO:0000247" + - bigg.metabolite: "but" + - chebi: "CHEBI:17968" + - kegg.compound: "C00246" + - metanetx.chemical: "MNXM458" + - sbo: "SBO:0000247" - !!omap - id: "s_2829" - name: "hexanoate" @@ -15518,11 +15518,11 @@ - formula: "C6H11O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hxa" - - chebi: "CHEBI:17120" - - kegg.compound: "C01585" - - metanetx.chemical: "MNXM1653" - - sbo: "SBO:0000247" + - bigg.metabolite: "hxa" + - chebi: "CHEBI:17120" + - kegg.compound: "C01585" + - metanetx.chemical: "MNXM1653" + - sbo: "SBO:0000247" - !!omap - id: "s_2831" - name: "ATP" @@ -15530,11 +15530,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "atp" - - chebi: "CHEBI:30616" - - kegg.compound: "C00002" - - metanetx.chemical: "MNXM3" - - sbo: "SBO:0000247" + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - id: "s_2832" - name: "laurate" @@ -15542,11 +15542,11 @@ - formula: "C12H23O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ddca" - - chebi: "CHEBI:18262" - - kegg.compound: "C02679" - - metanetx.chemical: "MNXM402" - - sbo: "SBO:0000247" + - bigg.metabolite: "ddca" + - chebi: "CHEBI:18262" + - kegg.compound: "C02679" + - metanetx.chemical: "MNXM402" + - sbo: "SBO:0000247" - !!omap - id: "s_2833" - name: "AMP" @@ -15554,11 +15554,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "amp" - - chebi: "CHEBI:456215" - - kegg.compound: "C00020" - - metanetx.chemical: "MNXM14" - - sbo: "SBO:0000247" + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - id: "s_2834" - name: "diphosphate" @@ -15566,11 +15566,11 @@ - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ppi" - - chebi: "CHEBI:33019" - - kegg.compound: "C00013" - - metanetx.chemical: "MNXM11" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - id: "s_2835" - name: "myristate" @@ -15578,11 +15578,11 @@ - formula: "C14H27O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ttdca" - - chebi: "CHEBI:30807" - - kegg.compound: "C06424" - - metanetx.chemical: "MNXM314" - - sbo: "SBO:0000247" + - bigg.metabolite: "ttdca" + - chebi: "CHEBI:30807" + - kegg.compound: "C06424" + - metanetx.chemical: "MNXM314" + - sbo: "SBO:0000247" - !!omap - id: "s_2836" - name: "palmitate" @@ -15590,11 +15590,11 @@ - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdca" - - chebi: "CHEBI:7896" - - kegg.compound: "C00249" - - metanetx.chemical: "MNXM108" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - id: "s_2837" - name: "palmitoleate" @@ -15602,11 +15602,11 @@ - formula: "C16H29O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdcea" - - chebi: "CHEBI:32372" - - kegg.compound: "C08362" - - metanetx.chemical: "MNXM162245" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdcea" + - chebi: "CHEBI:32372" + - kegg.compound: "C08362" + - metanetx.chemical: "MNXM162245" + - sbo: "SBO:0000247" - !!omap - id: "s_2838" - name: "stearate" @@ -15614,11 +15614,11 @@ - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdca" - - chebi: "CHEBI:25629" - - kegg.compound: "C01530" - - metanetx.chemical: "MNXM236" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - id: "s_2839" - name: "oleate" @@ -15626,11 +15626,11 @@ - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdcea" - - chebi: "CHEBI:30823" - - kegg.compound: "C00712" - - metanetx.chemical: "MNXM306" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - id: "s_2840" - name: "ATP" @@ -15638,11 +15638,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "atp" - - chebi: "CHEBI:30616" - - kegg.compound: "C00002" - - metanetx.chemical: "MNXM3" - - sbo: "SBO:0000247" + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - id: "s_2841" - name: "laurate" @@ -15650,11 +15650,11 @@ - formula: "C12H23O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ddca" - - chebi: "CHEBI:18262" - - kegg.compound: "C02679" - - metanetx.chemical: "MNXM402" - - sbo: "SBO:0000247" + - bigg.metabolite: "ddca" + - chebi: "CHEBI:18262" + - kegg.compound: "C02679" + - metanetx.chemical: "MNXM402" + - sbo: "SBO:0000247" - !!omap - id: "s_2842" - name: "AMP" @@ -15662,11 +15662,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "amp" - - chebi: "CHEBI:456215" - - kegg.compound: "C00020" - - metanetx.chemical: "MNXM14" - - sbo: "SBO:0000247" + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - id: "s_2843" - name: "lauroyl-CoA" @@ -15674,11 +15674,11 @@ - formula: "C33H54N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ddcacoa" - - chebi: "CHEBI:57375" - - kegg.compound: "C01832" - - metanetx.chemical: "MNXM363" - - sbo: "SBO:0000247" + - bigg.metabolite: "ddcacoa" + - chebi: "CHEBI:57375" + - kegg.compound: "C01832" + - metanetx.chemical: "MNXM363" + - sbo: "SBO:0000247" - !!omap - id: "s_2844" - name: "myristate" @@ -15686,11 +15686,11 @@ - formula: "C14H27O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ttdca" - - chebi: "CHEBI:30807" - - kegg.compound: "C06424" - - metanetx.chemical: "MNXM314" - - sbo: "SBO:0000247" + - bigg.metabolite: "ttdca" + - chebi: "CHEBI:30807" + - kegg.compound: "C06424" + - metanetx.chemical: "MNXM314" + - sbo: "SBO:0000247" - !!omap - id: "s_2845" - name: "myristoyl-CoA" @@ -15698,11 +15698,11 @@ - formula: "C35H58N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "tdcoa" - - chebi: "CHEBI:57385" - - kegg.compound: "C02593" - - metanetx.chemical: "MNXM224" - - sbo: "SBO:0000247" + - bigg.metabolite: "tdcoa" + - chebi: "CHEBI:57385" + - kegg.compound: "C02593" + - metanetx.chemical: "MNXM224" + - sbo: "SBO:0000247" - !!omap - id: "s_2846" - name: "palmitate" @@ -15710,11 +15710,11 @@ - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdca" - - chebi: "CHEBI:7896" - - kegg.compound: "C00249" - - metanetx.chemical: "MNXM108" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - id: "s_2847" - name: "palmitoyl-CoA" @@ -15722,11 +15722,11 @@ - formula: "C37H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "pmtcoa" - - chebi: "CHEBI:57379" - - kegg.compound: "C00154" - - metanetx.chemical: "MNXM88" - - sbo: "SBO:0000247" + - bigg.metabolite: "pmtcoa" + - chebi: "CHEBI:57379" + - kegg.compound: "C00154" + - metanetx.chemical: "MNXM88" + - sbo: "SBO:0000247" - !!omap - id: "s_2848" - name: "palmitoleate" @@ -15734,11 +15734,11 @@ - formula: "C16H29O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdcea" - - chebi: "CHEBI:32372" - - kegg.compound: "C08362" - - metanetx.chemical: "MNXM162245" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdcea" + - chebi: "CHEBI:32372" + - kegg.compound: "C08362" + - metanetx.chemical: "MNXM162245" + - sbo: "SBO:0000247" - !!omap - id: "s_2849" - name: "palmitoleoyl-CoA(4-)" @@ -15746,11 +15746,11 @@ - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hdcoa" - - chebi: "CHEBI:61540" - - kegg.compound: "C21072" - - metanetx.chemical: "MNXM781" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdcoa" + - chebi: "CHEBI:61540" + - kegg.compound: "C21072" + - metanetx.chemical: "MNXM781" + - sbo: "SBO:0000247" - !!omap - id: "s_2850" - name: "stearate" @@ -15758,11 +15758,11 @@ - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdca" - - chebi: "CHEBI:25629" - - kegg.compound: "C01530" - - metanetx.chemical: "MNXM236" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - id: "s_2851" - name: "stearoyl-CoA" @@ -15770,11 +15770,11 @@ - formula: "C39H66N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "stcoa" - - chebi: "CHEBI:57394" - - kegg.compound: "C00412" - - metanetx.chemical: "MNXM272" - - sbo: "SBO:0000247" + - bigg.metabolite: "stcoa" + - chebi: "CHEBI:57394" + - kegg.compound: "C00412" + - metanetx.chemical: "MNXM272" + - sbo: "SBO:0000247" - !!omap - id: "s_2852" - name: "oleate" @@ -15782,11 +15782,11 @@ - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdcea" - - chebi: "CHEBI:30823" - - kegg.compound: "C00712" - - metanetx.chemical: "MNXM306" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - id: "s_2853" - name: "oleoyl-CoA" @@ -15794,11 +15794,11 @@ - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ocdce9coa" - - chebi: "CHEBI:57387" - - kegg.compound: "C00510" - - metanetx.chemical: "MNXM686" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdce9coa" + - chebi: "CHEBI:57387" + - kegg.compound: "C00510" + - metanetx.chemical: "MNXM686" + - sbo: "SBO:0000247" - !!omap - id: "s_2854" - name: "palmitoleoyl-CoA(4-)" @@ -15806,11 +15806,11 @@ - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hdcoa" - - chebi: "CHEBI:61540" - - kegg.compound: "C21072" - - metanetx.chemical: "MNXM781" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdcoa" + - chebi: "CHEBI:61540" + - kegg.compound: "C21072" + - metanetx.chemical: "MNXM781" + - sbo: "SBO:0000247" - !!omap - id: "s_2855" - name: "oleate" @@ -15818,11 +15818,11 @@ - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdcea" - - chebi: "CHEBI:30823" - - kegg.compound: "C00712" - - metanetx.chemical: "MNXM306" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - id: "s_2856" - name: "ATP" @@ -15830,11 +15830,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "atp" - - chebi: "CHEBI:30616" - - kegg.compound: "C00002" - - metanetx.chemical: "MNXM3" - - sbo: "SBO:0000247" + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - id: "s_2857" - name: "coenzyme A" @@ -15842,11 +15842,11 @@ - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "coa" - - chebi: "CHEBI:57287" - - kegg.compound: "C00010" - - metanetx.chemical: "MNXM12" - - sbo: "SBO:0000247" + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - id: "s_2858" - name: "arachidate" @@ -15854,11 +15854,11 @@ - formula: "C20H39O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "arach" - - chebi: "CHEBI:32360" - - kegg.compound: "C06425" - - metanetx.chemical: "MNXM2976" - - sbo: "SBO:0000247" + - bigg.metabolite: "arach" + - chebi: "CHEBI:32360" + - kegg.compound: "C06425" + - metanetx.chemical: "MNXM2976" + - sbo: "SBO:0000247" - !!omap - id: "s_2859" - name: "AMP" @@ -15866,11 +15866,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "amp" - - chebi: "CHEBI:456215" - - kegg.compound: "C00020" - - metanetx.chemical: "MNXM14" - - sbo: "SBO:0000247" + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - id: "s_2860" - name: "diphosphate" @@ -15878,11 +15878,11 @@ - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ppi" - - chebi: "CHEBI:33019" - - kegg.compound: "C00013" - - metanetx.chemical: "MNXM11" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - id: "s_2861" - name: "icosanoyl-CoA" @@ -15890,11 +15890,11 @@ - formula: "C41H70N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "arachcoa" - - chebi: "CHEBI:15527" - - kegg.compound: "C02041" - - metanetx.chemical: "MNXM1429" - - sbo: "SBO:0000247" + - bigg.metabolite: "arachcoa" + - chebi: "CHEBI:15527" + - kegg.compound: "C02041" + - metanetx.chemical: "MNXM1429" + - sbo: "SBO:0000247" - !!omap - id: "s_2862" - name: "behenate" @@ -15902,11 +15902,11 @@ - formula: "C22H43O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "docosac" - - chebi: "CHEBI:23858" - - kegg.compound: "C08281" - - metanetx.chemical: "MNXM7102" - - sbo: "SBO:0000247" + - bigg.metabolite: "docosac" + - chebi: "CHEBI:23858" + - kegg.compound: "C08281" + - metanetx.chemical: "MNXM7102" + - sbo: "SBO:0000247" - !!omap - id: "s_2863" - name: "docosanoyl-CoA" @@ -15914,11 +15914,11 @@ - formula: "C43H74N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "docoscoa" - - chebi: "CHEBI:65088" - - kegg.compound: "C16528" - - metanetx.chemical: "MNXM10780" - - sbo: "SBO:0000247" + - bigg.metabolite: "docoscoa" + - chebi: "CHEBI:65088" + - kegg.compound: "C16528" + - metanetx.chemical: "MNXM10780" + - sbo: "SBO:0000247" - !!omap - id: "s_2864" - name: "lignoceric acid" @@ -15926,11 +15926,11 @@ - formula: "C24H47O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lgnc" - - chebi: "CHEBI:31014" - - kegg.compound: "C08320" - - metanetx.chemical: "MNXM3297" - - sbo: "SBO:0000247" + - bigg.metabolite: "lgnc" + - chebi: "CHEBI:31014" + - kegg.compound: "C08320" + - metanetx.chemical: "MNXM3297" + - sbo: "SBO:0000247" - !!omap - id: "s_2865" - name: "tetracosanoyl-CoA" @@ -15938,11 +15938,11 @@ - formula: "C45H78N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ttccoa" - - chebi: "CHEBI:52974" - - kegg.compound: "C16529" - - metanetx.chemical: "MNXM1504" - - sbo: "SBO:0000247" + - bigg.metabolite: "ttccoa" + - chebi: "CHEBI:52974" + - kegg.compound: "C16529" + - metanetx.chemical: "MNXM1504" + - sbo: "SBO:0000247" - !!omap - id: "s_2866" - name: "cerotic acid" @@ -15950,10 +15950,10 @@ - formula: "C26H51O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hexc" - - chebi: "CHEBI:31013" - - metanetx.chemical: "MNXM46158" - - sbo: "SBO:0000247" + - bigg.metabolite: "hexc" + - chebi: "CHEBI:31013" + - metanetx.chemical: "MNXM46158" + - sbo: "SBO:0000247" - !!omap - id: "s_2867" - name: "hexacosanoyl-CoA" @@ -15961,10 +15961,10 @@ - formula: "C47H82N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hexccoa" - - chebi: "CHEBI:52966" - - metanetx.chemical: "MNXM1190" - - sbo: "SBO:0000247" + - bigg.metabolite: "hexccoa" + - chebi: "CHEBI:52966" + - metanetx.chemical: "MNXM1190" + - sbo: "SBO:0000247" - !!omap - id: "s_2868" - name: "behenate" @@ -15972,11 +15972,11 @@ - formula: "C22H43O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "docosac" - - chebi: "CHEBI:23858" - - kegg.compound: "C08281" - - metanetx.chemical: "MNXM7102" - - sbo: "SBO:0000247" + - bigg.metabolite: "docosac" + - chebi: "CHEBI:23858" + - kegg.compound: "C08281" + - metanetx.chemical: "MNXM7102" + - sbo: "SBO:0000247" - !!omap - id: "s_2869" - name: "lignoceric acid" @@ -15984,11 +15984,11 @@ - formula: "C24H47O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lgnc" - - chebi: "CHEBI:31014" - - kegg.compound: "C08320" - - metanetx.chemical: "MNXM3297" - - sbo: "SBO:0000247" + - bigg.metabolite: "lgnc" + - chebi: "CHEBI:31014" + - kegg.compound: "C08320" + - metanetx.chemical: "MNXM3297" + - sbo: "SBO:0000247" - !!omap - id: "s_2870" - name: "cerotic acid" @@ -15996,10 +15996,10 @@ - formula: "C26H51O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hexc" - - chebi: "CHEBI:31013" - - metanetx.chemical: "MNXM46158" - - sbo: "SBO:0000247" + - bigg.metabolite: "hexc" + - chebi: "CHEBI:31013" + - metanetx.chemical: "MNXM46158" + - sbo: "SBO:0000247" - !!omap - id: "s_2871" - name: "behenate" @@ -16007,11 +16007,11 @@ - formula: "C22H43O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "docosac" - - chebi: "CHEBI:23858" - - kegg.compound: "C08281" - - metanetx.chemical: "MNXM7102" - - sbo: "SBO:0000247" + - bigg.metabolite: "docosac" + - chebi: "CHEBI:23858" + - kegg.compound: "C08281" + - metanetx.chemical: "MNXM7102" + - sbo: "SBO:0000247" - !!omap - id: "s_2872" - name: "docosanoyl-CoA" @@ -16019,11 +16019,11 @@ - formula: "C43H74N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "docoscoa" - - chebi: "CHEBI:65088" - - kegg.compound: "C16528" - - metanetx.chemical: "MNXM10780" - - sbo: "SBO:0000247" + - bigg.metabolite: "docoscoa" + - chebi: "CHEBI:65088" + - kegg.compound: "C16528" + - metanetx.chemical: "MNXM10780" + - sbo: "SBO:0000247" - !!omap - id: "s_2873" - name: "lignoceric acid" @@ -16031,11 +16031,11 @@ - formula: "C24H47O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lgnc" - - chebi: "CHEBI:31014" - - kegg.compound: "C08320" - - metanetx.chemical: "MNXM3297" - - sbo: "SBO:0000247" + - bigg.metabolite: "lgnc" + - chebi: "CHEBI:31014" + - kegg.compound: "C08320" + - metanetx.chemical: "MNXM3297" + - sbo: "SBO:0000247" - !!omap - id: "s_2874" - name: "tetracosanoyl-CoA" @@ -16043,11 +16043,11 @@ - formula: "C45H78N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ttccoa" - - chebi: "CHEBI:52974" - - kegg.compound: "C16529" - - metanetx.chemical: "MNXM1504" - - sbo: "SBO:0000247" + - bigg.metabolite: "ttccoa" + - chebi: "CHEBI:52974" + - kegg.compound: "C16529" + - metanetx.chemical: "MNXM1504" + - sbo: "SBO:0000247" - !!omap - id: "s_2875" - name: "cerotic acid" @@ -16055,10 +16055,10 @@ - formula: "C26H51O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hexc" - - chebi: "CHEBI:31013" - - metanetx.chemical: "MNXM46158" - - sbo: "SBO:0000247" + - bigg.metabolite: "hexc" + - chebi: "CHEBI:31013" + - metanetx.chemical: "MNXM46158" + - sbo: "SBO:0000247" - !!omap - id: "s_2876" - name: "hexacosanoyl-CoA" @@ -16066,10 +16066,10 @@ - formula: "C47H82N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hexccoa" - - chebi: "CHEBI:52966" - - metanetx.chemical: "MNXM1190" - - sbo: "SBO:0000247" + - bigg.metabolite: "hexccoa" + - chebi: "CHEBI:52966" + - metanetx.chemical: "MNXM1190" + - sbo: "SBO:0000247" - !!omap - id: "s_2877" - name: "palmitoleoyl-CoA(4-)" @@ -16077,11 +16077,11 @@ - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hdcoa" - - chebi: "CHEBI:61540" - - kegg.compound: "C21072" - - metanetx.chemical: "MNXM781" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdcoa" + - chebi: "CHEBI:61540" + - kegg.compound: "C21072" + - metanetx.chemical: "MNXM781" + - sbo: "SBO:0000247" - !!omap - id: "s_2878" - name: "icosanoyl-CoA" @@ -16089,11 +16089,11 @@ - formula: "C41H70N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "arachcoa" - - chebi: "CHEBI:15527" - - kegg.compound: "C02041" - - metanetx.chemical: "MNXM1429" - - sbo: "SBO:0000247" + - bigg.metabolite: "arachcoa" + - chebi: "CHEBI:15527" + - kegg.compound: "C02041" + - metanetx.chemical: "MNXM1429" + - sbo: "SBO:0000247" - !!omap - id: "s_2879" - name: "icosanoyl-CoA" @@ -16101,11 +16101,11 @@ - formula: "C41H70N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "arachcoa" - - chebi: "CHEBI:15527" - - kegg.compound: "C02041" - - metanetx.chemical: "MNXM1429" - - sbo: "SBO:0000247" + - bigg.metabolite: "arachcoa" + - chebi: "CHEBI:15527" + - kegg.compound: "C02041" + - metanetx.chemical: "MNXM1429" + - sbo: "SBO:0000247" - !!omap - id: "s_2880" - name: "docosanoyl-CoA" @@ -16113,11 +16113,11 @@ - formula: "C43H74N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "docoscoa" - - chebi: "CHEBI:65088" - - kegg.compound: "C16528" - - metanetx.chemical: "MNXM10780" - - sbo: "SBO:0000247" + - bigg.metabolite: "docoscoa" + - chebi: "CHEBI:65088" + - kegg.compound: "C16528" + - metanetx.chemical: "MNXM10780" + - sbo: "SBO:0000247" - !!omap - id: "s_2881" - name: "docosanoyl-CoA" @@ -16125,11 +16125,11 @@ - formula: "C43H74N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "docoscoa" - - chebi: "CHEBI:65088" - - kegg.compound: "C16528" - - metanetx.chemical: "MNXM10780" - - sbo: "SBO:0000247" + - bigg.metabolite: "docoscoa" + - chebi: "CHEBI:65088" + - kegg.compound: "C16528" + - metanetx.chemical: "MNXM10780" + - sbo: "SBO:0000247" - !!omap - id: "s_2882" - name: "butyrate" @@ -16137,11 +16137,11 @@ - formula: "C4H7O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "but" - - chebi: "CHEBI:17968" - - kegg.compound: "C00246" - - metanetx.chemical: "MNXM458" - - sbo: "SBO:0000247" + - bigg.metabolite: "but" + - chebi: "CHEBI:17968" + - kegg.compound: "C00246" + - metanetx.chemical: "MNXM458" + - sbo: "SBO:0000247" - !!omap - id: "s_2883" - name: "hexanoate" @@ -16149,11 +16149,11 @@ - formula: "C6H11O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hxa" - - chebi: "CHEBI:17120" - - kegg.compound: "C01585" - - metanetx.chemical: "MNXM1653" - - sbo: "SBO:0000247" + - bigg.metabolite: "hxa" + - chebi: "CHEBI:17120" + - kegg.compound: "C01585" + - metanetx.chemical: "MNXM1653" + - sbo: "SBO:0000247" - !!omap - id: "s_2884" - name: "butanoyl-CoA" @@ -16161,11 +16161,11 @@ - formula: "C25H38N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "btcoa" - - chebi: "CHEBI:57371" - - kegg.compound: "C00136" - - metanetx.chemical: "MNXM233" - - sbo: "SBO:0000247" + - bigg.metabolite: "btcoa" + - chebi: "CHEBI:57371" + - kegg.compound: "C00136" + - metanetx.chemical: "MNXM233" + - sbo: "SBO:0000247" - !!omap - id: "s_2885" - name: "hexanoyl-CoA" @@ -16173,11 +16173,11 @@ - formula: "C27H46N7O17P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "hxcoa" - - chebi: "CHEBI:27540" - - kegg.compound: "C05270" - - metanetx.chemical: "MNXM553" - - sbo: "SBO:0000247" + - bigg.metabolite: "hxcoa" + - chebi: "CHEBI:27540" + - kegg.compound: "C05270" + - metanetx.chemical: "MNXM553" + - sbo: "SBO:0000247" - !!omap - id: "s_2886" - name: "but-2-enoyl-CoA" @@ -16185,11 +16185,11 @@ - formula: "C25H40N7O17P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "b2coa" - - chebi: "CHEBI:36926" - - kegg.compound: "C00877" - - metanetx.chemical: "MNXM214" - - sbo: "SBO:0000247" + - bigg.metabolite: "b2coa" + - chebi: "CHEBI:36926" + - kegg.compound: "C00877" + - metanetx.chemical: "MNXM214" + - sbo: "SBO:0000247" - !!omap - id: "s_2887" - name: "trans-hex-2-enoyl-CoA" @@ -16197,11 +16197,11 @@ - formula: "C27H44N7O17P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "hx2coa" - - chebi: "CHEBI:28706" - - kegg.compound: "C05271" - - metanetx.chemical: "MNXM753" - - sbo: "SBO:0000247" + - bigg.metabolite: "hx2coa" + - chebi: "CHEBI:28706" + - kegg.compound: "C05271" + - metanetx.chemical: "MNXM753" + - sbo: "SBO:0000247" - !!omap - id: "s_2888" - name: "trans-oct-2-enoyl-CoA" @@ -16209,11 +16209,11 @@ - formula: "C29H44N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "oc2coa" - - chebi: "CHEBI:27537" - - kegg.compound: "C05276" - - metanetx.chemical: "MNXM784" - - sbo: "SBO:0000247" + - bigg.metabolite: "oc2coa" + - chebi: "CHEBI:27537" + - kegg.compound: "C05276" + - metanetx.chemical: "MNXM784" + - sbo: "SBO:0000247" - !!omap - id: "s_2889" - name: "trans-icos-2-enoyl-CoA" @@ -16221,8 +16221,8 @@ - formula: "C41H68N7O17P3S" - charge: -4 - annotation: !!omap - - metanetx.chemical: "MNXM22115" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM22115" + - sbo: "SBO:0000247" - !!omap - id: "s_2890" - name: "trans-docos-2-enoyl-CoA" @@ -16230,8 +16230,8 @@ - formula: "C43H72N7O17P3S" - charge: -4 - annotation: !!omap - - metanetx.chemical: "MNXM97615" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM97615" + - sbo: "SBO:0000247" - !!omap - id: "s_2891" - name: "trans-tetracos-2-enoyl-CoA" @@ -16239,10 +16239,10 @@ - formula: "C45H76N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2245" - - chebi: "CHEBI:75068" - - metanetx.chemical: "MNXM97616" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2245" + - chebi: "CHEBI:75068" + - metanetx.chemical: "MNXM97616" + - sbo: "SBO:0000247" - !!omap - id: "s_2892" - name: "trans-2,cis-9-hexadecadienoyl-CoA" @@ -16250,9 +16250,9 @@ - formula: "C37H62N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:78178" - - metanetx.chemical: "MNXM146680" - - sbo: "SBO:0000247" + - chebi: "CHEBI:78178" + - metanetx.chemical: "MNXM146680" + - sbo: "SBO:0000247" - !!omap - id: "s_2893" - name: "cis-tetradec-7-enoyl-CoA" @@ -16260,7 +16260,7 @@ - formula: "C35H60N7O17P3S" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_2894" - name: "trans-2,cis-7-tetradecadienoyl-CoA" @@ -16268,8 +16268,8 @@ - formula: "C35H58N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88067" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88067" + - sbo: "SBO:0000247" - !!omap - id: "s_2895" - name: "cis-dodec-5-enoyl-CoA" @@ -16277,7 +16277,7 @@ - formula: "C33H56N7O17P3S" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_2896" - name: "trans-2,cis-5-dodecadienoyl-CoA" @@ -16285,7 +16285,7 @@ - formula: "C33H54N7O17P3S" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_2897" - name: "trans-2,cis-9-octadecadienoyl-CoA" @@ -16293,11 +16293,11 @@ - formula: "C39H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "lnlccoa" - - chebi: "CHEBI:15530" - - kegg.compound: "C02050" - - metanetx.chemical: "MNXM638" - - sbo: "SBO:0000247" + - bigg.metabolite: "lnlccoa" + - chebi: "CHEBI:15530" + - kegg.compound: "C02050" + - metanetx.chemical: "MNXM638" + - sbo: "SBO:0000247" - !!omap - id: "s_2898" - name: "cis-hexadec-7-enoyl-CoA" @@ -16305,9 +16305,9 @@ - formula: "C37H64N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88008" - - metanetx.chemical: "MNXM149511" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88008" + - metanetx.chemical: "MNXM149511" + - sbo: "SBO:0000247" - !!omap - id: "s_2899" - name: "trans-2,cis-7-hexadecadienoyl-CoA" @@ -16315,8 +16315,8 @@ - formula: "C37H62N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88086" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88086" + - sbo: "SBO:0000247" - !!omap - id: "s_2900" - name: "cis-tetradec-5-enoyl-CoA" @@ -16324,9 +16324,9 @@ - formula: "C35H60N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:70712" - - metanetx.chemical: "MNXM103862" - - sbo: "SBO:0000247" + - chebi: "CHEBI:70712" + - metanetx.chemical: "MNXM103862" + - sbo: "SBO:0000247" - !!omap - id: "s_2901" - name: "trans-2,cis-5-tetradecadienoyl-CoA" @@ -16334,7 +16334,7 @@ - formula: "C35H58N7O17P3S" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_2902" - name: "(R)-3-hydroxybutanoyl-CoA" @@ -16342,10 +16342,10 @@ - formula: "C25H38N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:15452" - - kegg.compound: "C03561" - - metanetx.chemical: "MNXM1058" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15452" + - kegg.compound: "C03561" + - metanetx.chemical: "MNXM1058" + - sbo: "SBO:0000247" - !!omap - id: "s_2903" - name: "(R)-3-hydroxyhexanoyl-CoA" @@ -16353,9 +16353,9 @@ - formula: "C27H46N7O18P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "R_3hhcoa" - - chebi: "CHEBI:74474" - - sbo: "SBO:0000247" + - bigg.metabolite: "R_3hhcoa" + - chebi: "CHEBI:74474" + - sbo: "SBO:0000247" - !!omap - id: "s_2904" - name: "(R)-3-hydroxyoctanoyl-CoA" @@ -16363,11 +16363,11 @@ - formula: "C29H50N7O18P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "R_3hocoa" - - chebi: "CHEBI:28573" - - kegg.compound: "C05278" - - metanetx.chemical: "MNXM31570" - - sbo: "SBO:0000247" + - bigg.metabolite: "R_3hocoa" + - chebi: "CHEBI:28573" + - kegg.compound: "C05278" + - metanetx.chemical: "MNXM31570" + - sbo: "SBO:0000247" - !!omap - id: "s_2905" - name: "(R)-3-hydroxyicosanoyl-CoA" @@ -16375,9 +16375,9 @@ - formula: "C41H70N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:76453" - - metanetx.chemical: "MNXM36530" - - sbo: "SBO:0000247" + - chebi: "CHEBI:76453" + - metanetx.chemical: "MNXM36530" + - sbo: "SBO:0000247" - !!omap - id: "s_2906" - name: "(R)-3-hydroxydocosanoyl-CoA" @@ -16385,9 +16385,9 @@ - formula: "C43H74N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:76375" - - metanetx.chemical: "MNXM162568" - - sbo: "SBO:0000247" + - chebi: "CHEBI:76375" + - metanetx.chemical: "MNXM162568" + - sbo: "SBO:0000247" - !!omap - id: "s_2907" - name: "(R)-3-hydroxytetracosanoyl-CoA" @@ -16395,9 +16395,9 @@ - formula: "C45H78N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:76463" - - metanetx.chemical: "MNXM36558" - - sbo: "SBO:0000247" + - chebi: "CHEBI:76463" + - metanetx.chemical: "MNXM36558" + - sbo: "SBO:0000247" - !!omap - id: "s_2908" - name: "(R)-3-hydroxy-cis-hexadec-9-enoyl-CoA" @@ -16405,7 +16405,7 @@ - formula: "C37H64N7O18P3S" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_2909" - name: "(R)-3-hydroxy-cis-tetradec-7-enoyl-CoA" @@ -16413,7 +16413,7 @@ - formula: "C35H60N7O18P3S" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_2910" - name: "(R)-3-hydroxy-cis-dodec-5-enoyl-CoA" @@ -16421,7 +16421,7 @@ - formula: "C33H56N7O18P3S" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_2911" - name: "(R)-3-hydroxy-cis-octadec-9-enoyl-CoA" @@ -16429,9 +16429,9 @@ - formula: "C39H68N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:87781" - - metanetx.chemical: "MNXM149457" - - sbo: "SBO:0000247" + - chebi: "CHEBI:87781" + - metanetx.chemical: "MNXM149457" + - sbo: "SBO:0000247" - !!omap - id: "s_2912" - name: "(R)-3-hydroxy-cis-hexadec-7-enoyl-CoA" @@ -16439,8 +16439,8 @@ - formula: "C37H64N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88087" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88087" + - sbo: "SBO:0000247" - !!omap - id: "s_2913" - name: "(R)-3-hydroxy-cis-tetradec-5-enoyl-CoA" @@ -16448,8 +16448,8 @@ - formula: "C35H60N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88072" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88072" + - sbo: "SBO:0000247" - !!omap - id: "s_2914" - name: "acetoacetyl-CoA" @@ -16457,11 +16457,11 @@ - formula: "C25H36N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "aacoa" - - chebi: "CHEBI:57286" - - kegg.compound: "C00332" - - metanetx.chemical: "MNXM133" - - sbo: "SBO:0000247" + - bigg.metabolite: "aacoa" + - chebi: "CHEBI:57286" + - kegg.compound: "C00332" + - metanetx.chemical: "MNXM133" + - sbo: "SBO:0000247" - !!omap - id: "s_2915" - name: "3-oxohexanoyl-CoA" @@ -16469,11 +16469,11 @@ - formula: "C27H44N7O18P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "3ohcoa" - - chebi: "CHEBI:27648" - - kegg.compound: "C05269" - - metanetx.chemical: "MNXM717" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ohcoa" + - chebi: "CHEBI:27648" + - kegg.compound: "C05269" + - metanetx.chemical: "MNXM717" + - sbo: "SBO:0000247" - !!omap - id: "s_2916" - name: "3-oxooctanoyl-CoA" @@ -16481,11 +16481,11 @@ - formula: "C29H48N7O18P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "3oocoa" - - chebi: "CHEBI:28264" - - kegg.compound: "C05267" - - metanetx.chemical: "MNXM706" - - sbo: "SBO:0000247" + - bigg.metabolite: "3oocoa" + - chebi: "CHEBI:28264" + - kegg.compound: "C05267" + - metanetx.chemical: "MNXM706" + - sbo: "SBO:0000247" - !!omap - id: "s_2917" - name: "3-oxoicosanoyl-CoA" @@ -16493,10 +16493,10 @@ - formula: "C41H68N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2251" - - chebi: "CHEBI:52327" - - metanetx.chemical: "MNXM36762" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2251" + - chebi: "CHEBI:52327" + - metanetx.chemical: "MNXM36762" + - sbo: "SBO:0000247" - !!omap - id: "s_2918" - name: "3-oxodocosanoyl-CoA" @@ -16504,10 +16504,10 @@ - formula: "C43H72N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2250" - - chebi: "CHEBI:52328" - - metanetx.chemical: "MNXM36756" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2250" + - chebi: "CHEBI:52328" + - metanetx.chemical: "MNXM36756" + - sbo: "SBO:0000247" - !!omap - id: "s_2919" - name: "3-oxotetracosanoyl-CoA" @@ -16515,10 +16515,10 @@ - formula: "C45H76N7O18P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "CE2253" - - chebi: "CHEBI:52329" - - metanetx.chemical: "MNXM36773" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2253" + - chebi: "CHEBI:52329" + - metanetx.chemical: "MNXM36773" + - sbo: "SBO:0000247" - !!omap - id: "s_2920" - name: "3-oxo-cis-hexadec-9-enoyl-CoA" @@ -16526,8 +16526,8 @@ - formula: "C37H62N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:53152" - - sbo: "SBO:0000247" + - chebi: "CHEBI:53152" + - sbo: "SBO:0000247" - !!omap - id: "s_2921" - name: "3-oxo-cis-tetradec-7-enoyl-CoA" @@ -16535,7 +16535,7 @@ - formula: "C35H58N7O18P3S" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_2922" - name: "3-oxo-cis-dodec-5-enoyl-CoA" @@ -16543,7 +16543,7 @@ - formula: "C33H54N7O18P3S" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_2923" - name: "3-oxo-cis-octadec-9-enoyl-CoA" @@ -16551,8 +16551,8 @@ - formula: "C39H66N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:78146" - - sbo: "SBO:0000247" + - chebi: "CHEBI:78146" + - sbo: "SBO:0000247" - !!omap - id: "s_2924" - name: "3-oxo-cis-hexadec-7-enoyl-CoA" @@ -16560,9 +16560,9 @@ - formula: "C37H62N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88090" - - metanetx.chemical: "MNXM150996" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88090" + - metanetx.chemical: "MNXM150996" + - sbo: "SBO:0000247" - !!omap - id: "s_2925" - name: "3-oxo-cis-tetradec-5-enoyl-CoA" @@ -16570,9 +16570,9 @@ - formula: "C35H58N7O18P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88080" - - metanetx.chemical: "MNXM147795" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88080" + - metanetx.chemical: "MNXM147795" + - sbo: "SBO:0000247" - !!omap - id: "s_2926" - name: "cis-dec-3-enoyl-CoA" @@ -16580,8 +16580,8 @@ - formula: "C31H52N7O17P3S" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM164218" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM164218" + - sbo: "SBO:0000247" - !!omap - id: "s_2927" - name: "cis-dodec-3-enoyl-CoA" @@ -16589,10 +16589,10 @@ - formula: "C33H56N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:27989" - - kegg.compound: "C02944" - - metanetx.chemical: "MNXM3949" - - sbo: "SBO:0000247" + - chebi: "CHEBI:27989" + - kegg.compound: "C02944" + - metanetx.chemical: "MNXM3949" + - sbo: "SBO:0000247" - !!omap - id: "s_2928" - name: "trans-3,cis-5-dodecadienoyl-CoA" @@ -16600,8 +16600,8 @@ - formula: "C33H54N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:139121" - - sbo: "SBO:0000247" + - chebi: "CHEBI:139121" + - sbo: "SBO:0000247" - !!omap - id: "s_2929" - name: "trans-dodec-3-enoyl-CoA" @@ -16609,8 +16609,8 @@ - formula: "C33H56N7O17P3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dd3coa" - - sbo: "SBO:0000247" + - bigg.metabolite: "dd3coa" + - sbo: "SBO:0000247" - !!omap - id: "s_2930" - name: "trans-3,cis-5-tetradecadienoyl-CoA" @@ -16618,9 +16618,9 @@ - formula: "C35H58N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:72001" - - metanetx.chemical: "MNXM9966" - - sbo: "SBO:0000247" + - chebi: "CHEBI:72001" + - metanetx.chemical: "MNXM9966" + - sbo: "SBO:0000247" - !!omap - id: "s_2931" - name: "trans-tetradec-3-enoyl-CoA" @@ -16628,9 +16628,9 @@ - formula: "C35H60N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88083" - - metanetx.chemical: "MNXM7189" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88083" + - metanetx.chemical: "MNXM7189" + - sbo: "SBO:0000247" - !!omap - id: "s_2932" - name: "trans-2,trans-4-dodecadienoyl-CoA" @@ -16638,10 +16638,10 @@ - formula: "C33H54N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:28002" - - kegg.compound: "C05280" - - metanetx.chemical: "MNXM2008" - - sbo: "SBO:0000247" + - chebi: "CHEBI:28002" + - kegg.compound: "C05280" + - metanetx.chemical: "MNXM2008" + - sbo: "SBO:0000247" - !!omap - id: "s_2933" - name: "trans-2,trans-4-tetradecadienoyl-CoA" @@ -16649,9 +16649,9 @@ - formula: "C35H58N7O17P3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88084" - - metanetx.chemical: "MNXM147629" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88084" + - metanetx.chemical: "MNXM147629" + - sbo: "SBO:0000247" - !!omap - id: "s_2934" - name: "glycerol 3-phosphate" @@ -16659,11 +16659,11 @@ - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "glyc3p" - - chebi: "CHEBI:57597" - - kegg.compound: "C00093" - - metanetx.chemical: "MNXM66" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc3p" + - chebi: "CHEBI:57597" + - kegg.compound: "C00093" + - metanetx.chemical: "MNXM66" + - sbo: "SBO:0000247" - !!omap - id: "s_2935" - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" @@ -16671,11 +16671,11 @@ - formula: "C19H39O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1hdecg3p" - - chebi: "CHEBI:15799" - - kegg.compound: "C04036" - - metanetx.chemical: "MNXM2455" - - sbo: "SBO:0000247" + - bigg.metabolite: "1hdecg3p" + - chebi: "CHEBI:15799" + - kegg.compound: "C04036" + - metanetx.chemical: "MNXM2455" + - sbo: "SBO:0000247" - !!omap - id: "s_2936" - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" @@ -16683,9 +16683,9 @@ - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75070" - - metanetx.chemical: "MNXM66496" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75070" + - metanetx.chemical: "MNXM66496" + - sbo: "SBO:0000247" - !!omap - id: "s_2937" - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" @@ -16693,10 +16693,10 @@ - formula: "C21H43O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1odecg3p" - - chebi: "CHEBI:74850" - - metanetx.chemical: "MNXM32950" - - sbo: "SBO:0000247" + - bigg.metabolite: "1odecg3p" + - chebi: "CHEBI:74850" + - metanetx.chemical: "MNXM32950" + - sbo: "SBO:0000247" - !!omap - id: "s_2938" - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" @@ -16704,9 +16704,9 @@ - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62837" - - metanetx.chemical: "MNXM32960" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62837" + - metanetx.chemical: "MNXM32960" + - sbo: "SBO:0000247" - !!omap - id: "s_2939" - name: "dihydroxyacetone phosphate" @@ -16714,11 +16714,11 @@ - formula: "C3H5O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "dhap" - - chebi: "CHEBI:57642" - - kegg.compound: "C00111" - - metanetx.chemical: "MNXM77" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhap" + - chebi: "CHEBI:57642" + - kegg.compound: "C00111" + - metanetx.chemical: "MNXM77" + - sbo: "SBO:0000247" - !!omap - id: "s_2940" - name: "acylglycerone phosphate (16:0)" @@ -16726,10 +16726,10 @@ - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17868" - - kegg.compound: "C01192" - - metanetx.chemical: "MNXM1061" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17868" + - kegg.compound: "C01192" + - metanetx.chemical: "MNXM1061" + - sbo: "SBO:0000247" - !!omap - id: "s_2941" - name: "acylglycerone phosphate (16:1)" @@ -16737,7 +16737,7 @@ - formula: "C19H35O7P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_2942" - name: "acylglycerone phosphate (18:0)" @@ -16745,10 +16745,10 @@ - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:36476" - - kegg.compound: "C03805" - - metanetx.chemical: "MNXM33006" - - sbo: "SBO:0000247" + - chebi: "CHEBI:36476" + - kegg.compound: "C03805" + - metanetx.chemical: "MNXM33006" + - sbo: "SBO:0000247" - !!omap - id: "s_2943" - name: "acylglycerone phosphate (18:1)" @@ -16756,10 +16756,10 @@ - formula: "C21H39O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:36475" - - kegg.compound: "C03630" - - metanetx.chemical: "MNXM32961" - - sbo: "SBO:0000247" + - chebi: "CHEBI:36475" + - kegg.compound: "C03630" + - metanetx.chemical: "MNXM32961" + - sbo: "SBO:0000247" - !!omap - id: "s_2944" - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" @@ -16767,11 +16767,11 @@ - formula: "C19H39O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1hdecg3p" - - chebi: "CHEBI:15799" - - kegg.compound: "C04036" - - metanetx.chemical: "MNXM2455" - - sbo: "SBO:0000247" + - bigg.metabolite: "1hdecg3p" + - chebi: "CHEBI:15799" + - kegg.compound: "C04036" + - metanetx.chemical: "MNXM2455" + - sbo: "SBO:0000247" - !!omap - id: "s_2945" - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" @@ -16779,9 +16779,9 @@ - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75070" - - metanetx.chemical: "MNXM66496" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75070" + - metanetx.chemical: "MNXM66496" + - sbo: "SBO:0000247" - !!omap - id: "s_2946" - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" @@ -16789,10 +16789,10 @@ - formula: "C21H43O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1odecg3p" - - chebi: "CHEBI:74850" - - metanetx.chemical: "MNXM32950" - - sbo: "SBO:0000247" + - bigg.metabolite: "1odecg3p" + - chebi: "CHEBI:74850" + - metanetx.chemical: "MNXM32950" + - sbo: "SBO:0000247" - !!omap - id: "s_2947" - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" @@ -16800,9 +16800,9 @@ - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62837" - - metanetx.chemical: "MNXM32960" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62837" + - metanetx.chemical: "MNXM32960" + - sbo: "SBO:0000247" - !!omap - id: "s_2948" - name: "acylglycerone phosphate (16:0)" @@ -16810,10 +16810,10 @@ - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17868" - - kegg.compound: "C01192" - - metanetx.chemical: "MNXM1061" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17868" + - kegg.compound: "C01192" + - metanetx.chemical: "MNXM1061" + - sbo: "SBO:0000247" - !!omap - id: "s_2949" - name: "acylglycerone phosphate (16:1)" @@ -16821,7 +16821,7 @@ - formula: "C19H35O7P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_2950" - name: "acylglycerone phosphate (18:0)" @@ -16829,10 +16829,10 @@ - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:36476" - - kegg.compound: "C03805" - - metanetx.chemical: "MNXM33006" - - sbo: "SBO:0000247" + - chebi: "CHEBI:36476" + - kegg.compound: "C03805" + - metanetx.chemical: "MNXM33006" + - sbo: "SBO:0000247" - !!omap - id: "s_2951" - name: "acylglycerone phosphate (18:1)" @@ -16840,10 +16840,10 @@ - formula: "C21H39O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:36475" - - kegg.compound: "C03630" - - metanetx.chemical: "MNXM32961" - - sbo: "SBO:0000247" + - chebi: "CHEBI:36475" + - kegg.compound: "C03630" + - metanetx.chemical: "MNXM32961" + - sbo: "SBO:0000247" - !!omap - id: "s_2952" - name: "NADPH" @@ -16851,11 +16851,11 @@ - formula: "C21H26N7O17P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "nadph" - - chebi: "CHEBI:57783" - - kegg.compound: "C00005" - - metanetx.chemical: "MNXM6" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadph" + - chebi: "CHEBI:57783" + - kegg.compound: "C00005" + - metanetx.chemical: "MNXM6" + - sbo: "SBO:0000247" - !!omap - id: "s_2953" - name: "NADP(+)" @@ -16863,11 +16863,11 @@ - formula: "C21H25N7O17P3" - charge: -3 - annotation: !!omap - - bigg.metabolite: "nadp" - - chebi: "CHEBI:58349" - - kegg.compound: "C00006" - - metanetx.chemical: "MNXM5" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadp" + - chebi: "CHEBI:58349" + - kegg.compound: "C00006" + - metanetx.chemical: "MNXM5" + - sbo: "SBO:0000247" - !!omap - id: "s_2954" - name: "phosphatidate (1-16:0, 2-16:1)" @@ -16875,9 +16875,9 @@ - formula: "C35H67O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:73998" - - metanetx.chemical: "MNXM66470" - - sbo: "SBO:0000247" + - chebi: "CHEBI:73998" + - metanetx.chemical: "MNXM66470" + - sbo: "SBO:0000247" - !!omap - id: "s_2955" - name: "phosphatidate (1-16:0, 2-18:1)" @@ -16885,10 +16885,10 @@ - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:64844" - - kegg.compound: "C13889" - - metanetx.chemical: "MNXM66476" - - sbo: "SBO:0000247" + - chebi: "CHEBI:64844" + - kegg.compound: "C13889" + - metanetx.chemical: "MNXM66476" + - sbo: "SBO:0000247" - !!omap - id: "s_2956" - name: "phosphatidate (1-16:1, 2-16:1)" @@ -16896,10 +16896,10 @@ - formula: "C35H65O8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pa161" - - chebi: "CHEBI:75071" - - metanetx.chemical: "MNXM66504" - - sbo: "SBO:0000247" + - bigg.metabolite: "pa161" + - chebi: "CHEBI:75071" + - metanetx.chemical: "MNXM66504" + - sbo: "SBO:0000247" - !!omap - id: "s_2957" - name: "phosphatidate (1-16:1, 2-18:1)" @@ -16907,8 +16907,8 @@ - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM66509" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM66509" + - sbo: "SBO:0000247" - !!omap - id: "s_2958" - name: "phosphatidate (1-18:0, 2-16:1)" @@ -16916,9 +16916,9 @@ - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75073" - - metanetx.chemical: "MNXM66631" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75073" + - metanetx.chemical: "MNXM66631" + - sbo: "SBO:0000247" - !!omap - id: "s_2959" - name: "phosphatidate (1-18:0, 2-18:1)" @@ -16926,9 +16926,9 @@ - formula: "C39H75O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:74847" - - metanetx.chemical: "MNXM66635" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74847" + - metanetx.chemical: "MNXM66635" + - sbo: "SBO:0000247" - !!omap - id: "s_2960" - name: "phosphatidate (1-18:1, 2-16:1)" @@ -16936,9 +16936,9 @@ - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75074" - - metanetx.chemical: "MNXM66663" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75074" + - metanetx.chemical: "MNXM66663" + - sbo: "SBO:0000247" - !!omap - id: "s_2961" - name: "phosphatidate (1-18:1, 2-18:1)" @@ -16946,9 +16946,9 @@ - formula: "C39H73O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:83775" - - metanetx.chemical: "MNXM51075" - - sbo: "SBO:0000247" + - chebi: "CHEBI:83775" + - metanetx.chemical: "MNXM51075" + - sbo: "SBO:0000247" - !!omap - id: "s_2962" - name: "phosphatidate (1-16:0, 2-18:1)" @@ -16956,10 +16956,10 @@ - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:64844" - - kegg.compound: "C13889" - - metanetx.chemical: "MNXM66476" - - sbo: "SBO:0000247" + - chebi: "CHEBI:64844" + - kegg.compound: "C13889" + - metanetx.chemical: "MNXM66476" + - sbo: "SBO:0000247" - !!omap - id: "s_2963" - name: "phosphatidate (1-16:1, 2-18:1)" @@ -16967,8 +16967,8 @@ - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM66509" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM66509" + - sbo: "SBO:0000247" - !!omap - id: "s_2964" - name: "phosphatidate (1-18:0, 2-18:1)" @@ -16976,9 +16976,9 @@ - formula: "C39H75O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:74847" - - metanetx.chemical: "MNXM66635" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74847" + - metanetx.chemical: "MNXM66635" + - sbo: "SBO:0000247" - !!omap - id: "s_2965" - name: "phosphatidate (1-18:1, 2-18:1)" @@ -16986,9 +16986,9 @@ - formula: "C39H73O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:83775" - - metanetx.chemical: "MNXM51075" - - sbo: "SBO:0000247" + - chebi: "CHEBI:83775" + - metanetx.chemical: "MNXM51075" + - sbo: "SBO:0000247" - !!omap - id: "s_2966" - name: "phosphate" @@ -16996,11 +16996,11 @@ - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pi" - - chebi: "CHEBI:43474" - - kegg.compound: "C00009" - - metanetx.chemical: "MNXM9" - - sbo: "SBO:0000247" + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - id: "s_2967" - name: "diglyceride (1-16:0, 2-16:1)" @@ -17008,9 +17008,9 @@ - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:84394" - - metanetx.chemical: "MNXM49375" - - sbo: "SBO:0000247" + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - id: "s_2968" - name: "diglyceride (1-16:0, 2-18:1)" @@ -17018,9 +17018,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88454" - - metanetx.chemical: "MNXM49380" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - id: "s_2969" - name: "diglyceride (1-16:1, 2-16:1)" @@ -17028,10 +17028,10 @@ - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr161" - - chebi: "CHEBI:84417" - - metanetx.chemical: "MNXM176611" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - id: "s_2970" - name: "diglyceride (1-16:1, 2-18:1)" @@ -17039,9 +17039,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88500" - - metanetx.chemical: "MNXM49417" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - id: "s_2971" - name: "diglyceride (1-18:0, 2-16:1)" @@ -17049,9 +17049,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88527" - - metanetx.chemical: "MNXM49511" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - id: "s_2972" - name: "diglyceride (1-18:0, 2-18:1)" @@ -17059,9 +17059,9 @@ - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75468" - - metanetx.chemical: "MNXM49514" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - id: "s_2973" - name: "diglyceride (1-18:1, 2-16:1)" @@ -17069,9 +17069,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89229" - - metanetx.chemical: "MNXM49575" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - id: "s_2974" - name: "diglyceride (1-18:1, 2-18:1)" @@ -17079,10 +17079,10 @@ - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr181" - - chebi: "CHEBI:52333" - - metanetx.chemical: "MNXM9533" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - id: "s_2975" - name: "phosphatidate (1-16:0, 2-16:1)" @@ -17090,9 +17090,9 @@ - formula: "C35H67O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:73998" - - metanetx.chemical: "MNXM66470" - - sbo: "SBO:0000247" + - chebi: "CHEBI:73998" + - metanetx.chemical: "MNXM66470" + - sbo: "SBO:0000247" - !!omap - id: "s_2976" - name: "H2O" @@ -17100,11 +17100,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_2977" - name: "phosphate" @@ -17112,11 +17112,11 @@ - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pi" - - chebi: "CHEBI:43474" - - kegg.compound: "C00009" - - metanetx.chemical: "MNXM9" - - sbo: "SBO:0000247" + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - id: "s_2978" - name: "diglyceride (1-16:0, 2-16:1)" @@ -17124,9 +17124,9 @@ - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:84394" - - metanetx.chemical: "MNXM49375" - - sbo: "SBO:0000247" + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - id: "s_2979" - name: "phosphatidate (1-16:0, 2-18:1)" @@ -17134,10 +17134,10 @@ - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:64844" - - kegg.compound: "C13889" - - metanetx.chemical: "MNXM66476" - - sbo: "SBO:0000247" + - chebi: "CHEBI:64844" + - kegg.compound: "C13889" + - metanetx.chemical: "MNXM66476" + - sbo: "SBO:0000247" - !!omap - id: "s_2980" - name: "diglyceride (1-16:0, 2-18:1)" @@ -17145,9 +17145,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88454" - - metanetx.chemical: "MNXM49380" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - id: "s_2981" - name: "phosphatidate (1-16:1, 2-16:1)" @@ -17155,10 +17155,10 @@ - formula: "C35H65O8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pa161" - - chebi: "CHEBI:75071" - - metanetx.chemical: "MNXM66504" - - sbo: "SBO:0000247" + - bigg.metabolite: "pa161" + - chebi: "CHEBI:75071" + - metanetx.chemical: "MNXM66504" + - sbo: "SBO:0000247" - !!omap - id: "s_2982" - name: "diglyceride (1-16:1, 2-16:1)" @@ -17166,10 +17166,10 @@ - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr161" - - chebi: "CHEBI:84417" - - metanetx.chemical: "MNXM176611" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - id: "s_2983" - name: "phosphatidate (1-16:1, 2-18:1)" @@ -17177,8 +17177,8 @@ - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM66509" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM66509" + - sbo: "SBO:0000247" - !!omap - id: "s_2984" - name: "diglyceride (1-16:1, 2-18:1)" @@ -17186,9 +17186,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88500" - - metanetx.chemical: "MNXM49417" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - id: "s_2985" - name: "phosphatidate (1-18:0, 2-16:1)" @@ -17196,9 +17196,9 @@ - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75073" - - metanetx.chemical: "MNXM66631" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75073" + - metanetx.chemical: "MNXM66631" + - sbo: "SBO:0000247" - !!omap - id: "s_2986" - name: "diglyceride (1-18:0, 2-16:1)" @@ -17206,9 +17206,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88527" - - metanetx.chemical: "MNXM49511" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - id: "s_2987" - name: "phosphatidate (1-18:0, 2-18:1)" @@ -17216,9 +17216,9 @@ - formula: "C39H75O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:74847" - - metanetx.chemical: "MNXM66635" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74847" + - metanetx.chemical: "MNXM66635" + - sbo: "SBO:0000247" - !!omap - id: "s_2988" - name: "diglyceride (1-18:0, 2-18:1)" @@ -17226,9 +17226,9 @@ - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75468" - - metanetx.chemical: "MNXM49514" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - id: "s_2989" - name: "phosphatidate (1-18:1, 2-16:1)" @@ -17236,9 +17236,9 @@ - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75074" - - metanetx.chemical: "MNXM66663" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75074" + - metanetx.chemical: "MNXM66663" + - sbo: "SBO:0000247" - !!omap - id: "s_2990" - name: "diglyceride (1-18:1, 2-16:1)" @@ -17246,9 +17246,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89229" - - metanetx.chemical: "MNXM49575" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - id: "s_2991" - name: "phosphatidate (1-18:1, 2-18:1)" @@ -17256,9 +17256,9 @@ - formula: "C39H73O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:83775" - - metanetx.chemical: "MNXM51075" - - sbo: "SBO:0000247" + - chebi: "CHEBI:83775" + - metanetx.chemical: "MNXM51075" + - sbo: "SBO:0000247" - !!omap - id: "s_2992" - name: "diglyceride (1-18:1, 2-18:1)" @@ -17266,10 +17266,10 @@ - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr181" - - chebi: "CHEBI:52333" - - metanetx.chemical: "MNXM9533" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - id: "s_2993" - name: "phosphatidate (1-16:0, 2-16:1)" @@ -17277,9 +17277,9 @@ - formula: "C35H67O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:73998" - - metanetx.chemical: "MNXM66470" - - sbo: "SBO:0000247" + - chebi: "CHEBI:73998" + - metanetx.chemical: "MNXM66470" + - sbo: "SBO:0000247" - !!omap - id: "s_2994" - name: "H2O" @@ -17287,11 +17287,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_2995" - name: "phosphate" @@ -17299,11 +17299,11 @@ - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pi" - - chebi: "CHEBI:43474" - - kegg.compound: "C00009" - - metanetx.chemical: "MNXM9" - - sbo: "SBO:0000247" + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - id: "s_2996" - name: "diglyceride (1-16:0, 2-16:1)" @@ -17311,9 +17311,9 @@ - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:84394" - - metanetx.chemical: "MNXM49375" - - sbo: "SBO:0000247" + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - id: "s_2997" - name: "phosphatidate (1-16:0, 2-18:1)" @@ -17321,10 +17321,10 @@ - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:64844" - - kegg.compound: "C13889" - - metanetx.chemical: "MNXM66476" - - sbo: "SBO:0000247" + - chebi: "CHEBI:64844" + - kegg.compound: "C13889" + - metanetx.chemical: "MNXM66476" + - sbo: "SBO:0000247" - !!omap - id: "s_2998" - name: "diglyceride (1-16:0, 2-18:1)" @@ -17332,9 +17332,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88454" - - metanetx.chemical: "MNXM49380" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - id: "s_2999" - name: "phosphatidate (1-16:1, 2-16:1)" @@ -17342,10 +17342,10 @@ - formula: "C35H65O8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pa161" - - chebi: "CHEBI:75071" - - metanetx.chemical: "MNXM66504" - - sbo: "SBO:0000247" + - bigg.metabolite: "pa161" + - chebi: "CHEBI:75071" + - metanetx.chemical: "MNXM66504" + - sbo: "SBO:0000247" - !!omap - id: "s_3000" - name: "diglyceride (1-16:1, 2-16:1)" @@ -17353,10 +17353,10 @@ - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr161" - - chebi: "CHEBI:84417" - - metanetx.chemical: "MNXM176611" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - id: "s_3001" - name: "phosphatidate (1-16:1, 2-18:1)" @@ -17364,8 +17364,8 @@ - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM66509" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM66509" + - sbo: "SBO:0000247" - !!omap - id: "s_3002" - name: "diglyceride (1-16:1, 2-18:1)" @@ -17373,9 +17373,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88500" - - metanetx.chemical: "MNXM49417" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - id: "s_3003" - name: "phosphatidate (1-18:0, 2-16:1)" @@ -17383,9 +17383,9 @@ - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75073" - - metanetx.chemical: "MNXM66631" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75073" + - metanetx.chemical: "MNXM66631" + - sbo: "SBO:0000247" - !!omap - id: "s_3004" - name: "diglyceride (1-18:0, 2-16:1)" @@ -17393,9 +17393,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88527" - - metanetx.chemical: "MNXM49511" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - id: "s_3005" - name: "phosphatidate (1-18:0, 2-18:1)" @@ -17403,9 +17403,9 @@ - formula: "C39H75O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:74847" - - metanetx.chemical: "MNXM66635" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74847" + - metanetx.chemical: "MNXM66635" + - sbo: "SBO:0000247" - !!omap - id: "s_3006" - name: "diglyceride (1-18:0, 2-18:1)" @@ -17413,9 +17413,9 @@ - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75468" - - metanetx.chemical: "MNXM49514" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - id: "s_3007" - name: "phosphatidate (1-18:1, 2-16:1)" @@ -17423,9 +17423,9 @@ - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75074" - - metanetx.chemical: "MNXM66663" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75074" + - metanetx.chemical: "MNXM66663" + - sbo: "SBO:0000247" - !!omap - id: "s_3008" - name: "diglyceride (1-18:1, 2-16:1)" @@ -17433,9 +17433,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89229" - - metanetx.chemical: "MNXM49575" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - id: "s_3009" - name: "phosphatidate (1-18:1, 2-18:1)" @@ -17443,9 +17443,9 @@ - formula: "C39H73O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:83775" - - metanetx.chemical: "MNXM51075" - - sbo: "SBO:0000247" + - chebi: "CHEBI:83775" + - metanetx.chemical: "MNXM51075" + - sbo: "SBO:0000247" - !!omap - id: "s_3010" - name: "diglyceride (1-18:1, 2-18:1)" @@ -17453,10 +17453,10 @@ - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr181" - - chebi: "CHEBI:52333" - - metanetx.chemical: "MNXM9533" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - id: "s_3011" - name: "triglyceride (1-16:0, 2-16:1, 3-16:0)" @@ -17464,9 +17464,9 @@ - formula: "C51H96O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:85427" - - metanetx.chemical: "MNXM84113" - - sbo: "SBO:0000247" + - chebi: "CHEBI:85427" + - metanetx.chemical: "MNXM84113" + - sbo: "SBO:0000247" - !!omap - id: "s_3012" - name: "triglyceride (1-16:0, 2-18:1, 3-16:0)" @@ -17474,9 +17474,9 @@ - formula: "C53H100O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89759" - - metanetx.chemical: "MNXM84120" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89759" + - metanetx.chemical: "MNXM84120" + - sbo: "SBO:0000247" - !!omap - id: "s_3013" - name: "triglyceride (1-16:1, 2-16:1, 3-16:0)" @@ -17484,8 +17484,8 @@ - formula: "C51H94O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag1619Z1619Z160" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag1619Z1619Z160" + - sbo: "SBO:0000247" - !!omap - id: "s_3014" - name: "triglyceride (1-16:1, 2-18:1, 3-16:0)" @@ -17493,7 +17493,7 @@ - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3015" - name: "triglyceride (1-18:0, 2-16:1, 3-16:0)" @@ -17501,7 +17501,7 @@ - formula: "C53H100O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3016" - name: "triglyceride (1-18:0, 2-18:1, 3-16:0)" @@ -17509,9 +17509,9 @@ - formula: "C55H104O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89755" - - metanetx.chemical: "MNXM84227" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89755" + - metanetx.chemical: "MNXM84227" + - sbo: "SBO:0000247" - !!omap - id: "s_3017" - name: "triglyceride (1-18:1, 2-16:1, 3-16:0)" @@ -17519,7 +17519,7 @@ - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3018" - name: "triglyceride (1-18:1, 2-18:1, 3-16:0)" @@ -17527,9 +17527,9 @@ - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88999" - - metanetx.chemical: "MNXM85598" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88999" + - metanetx.chemical: "MNXM85598" + - sbo: "SBO:0000247" - !!omap - id: "s_3019" - name: "triglyceride (1-16:0, 2-16:1, 3-16:1)" @@ -17537,9 +17537,9 @@ - formula: "C51H94O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89765" - - metanetx.chemical: "MNXM84138" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89765" + - metanetx.chemical: "MNXM84138" + - sbo: "SBO:0000247" - !!omap - id: "s_3020" - name: "triglyceride (1-16:0, 2-18:1, 3-16:1)" @@ -17547,7 +17547,7 @@ - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3021" - name: "triglyceride (1-16:1, 2-16:1, 3-16:1)" @@ -17555,10 +17555,10 @@ - formula: "C51H92O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag1619Z1619Z1619Z" - - chebi: "CHEBI:75841" - - metanetx.chemical: "MNXM84424" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag1619Z1619Z1619Z" + - chebi: "CHEBI:75841" + - metanetx.chemical: "MNXM84424" + - sbo: "SBO:0000247" - !!omap - id: "s_3022" - name: "triglyceride (1-16:1, 2-18:1, 3-16:1)" @@ -17566,7 +17566,7 @@ - formula: "C53H96O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3023" - name: "triglyceride (1-18:0, 2-16:1, 3-16:1)" @@ -17574,9 +17574,9 @@ - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90053" - - metanetx.chemical: "MNXM84428" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90053" + - metanetx.chemical: "MNXM84428" + - sbo: "SBO:0000247" - !!omap - id: "s_3024" - name: "triglyceride (1-18:0, 2-18:1, 3-16:1)" @@ -17584,7 +17584,7 @@ - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3025" - name: "triglyceride (1-18:1, 2-16:1, 3-16:1)" @@ -17592,8 +17592,8 @@ - formula: "C53H96O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag1819Z1619Z1619Z" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag1819Z1619Z1619Z" + - sbo: "SBO:0000247" - !!omap - id: "s_3026" - name: "triglyceride (1-18:1, 2-18:1, 3-16:1)" @@ -17601,7 +17601,7 @@ - formula: "C55H100O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3027" - name: "triglyceride (1-16:0, 2-16:1, 3-18:0)" @@ -17609,9 +17609,9 @@ - formula: "C53H100O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89763" - - metanetx.chemical: "MNXM84142" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89763" + - metanetx.chemical: "MNXM84142" + - sbo: "SBO:0000247" - !!omap - id: "s_3028" - name: "triglyceride (1-16:0, 2-18:1, 3-18:0)" @@ -17619,9 +17619,9 @@ - formula: "C55H104O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88998" - - metanetx.chemical: "MNXM85401" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88998" + - metanetx.chemical: "MNXM85401" + - sbo: "SBO:0000247" - !!omap - id: "s_3029" - name: "triglyceride (1-16:1, 2-16:1, 3-18:0)" @@ -17629,7 +17629,7 @@ - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3030" - name: "triglyceride (1-16:1, 2-18:1, 3-18:0)" @@ -17637,7 +17637,7 @@ - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3031" - name: "triglyceride (1-18:0, 2-16:1, 3-18:0)" @@ -17645,9 +17645,9 @@ - formula: "C55H104O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89958" - - metanetx.chemical: "MNXM84510" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89958" + - metanetx.chemical: "MNXM84510" + - sbo: "SBO:0000247" - !!omap - id: "s_3032" - name: "triglyceride (1-18:0, 2-18:1, 3-18:0)" @@ -17655,8 +17655,8 @@ - formula: "C57H108O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90305" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90305" + - sbo: "SBO:0000247" - !!omap - id: "s_3033" - name: "triglyceride (1-18:1, 2-16:1, 3-18:0)" @@ -17664,7 +17664,7 @@ - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3034" - name: "triglyceride (1-18:1, 2-18:1, 3-18:0)" @@ -17672,7 +17672,7 @@ - formula: "C57H106O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3035" - name: "triglyceride (1-16:0, 2-16:1, 3-18:1)" @@ -17680,7 +17680,7 @@ - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3036" - name: "triglyceride (1-16:0, 2-18:1, 3-18:1)" @@ -17688,7 +17688,7 @@ - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3037" - name: "triglyceride (1-16:1, 2-16:1, 3-18:1)" @@ -17696,10 +17696,10 @@ - formula: "C53H96O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag1619Z1619Z1819Z" - - chebi: "CHEBI:90051" - - metanetx.chemical: "MNXM84429" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag1619Z1619Z1819Z" + - chebi: "CHEBI:90051" + - metanetx.chemical: "MNXM84429" + - sbo: "SBO:0000247" - !!omap - id: "s_3038" - name: "triglyceride (1-16:1, 2-18:1, 3-18:1)" @@ -17707,9 +17707,9 @@ - formula: "C55H100O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90048" - - metanetx.chemical: "MNXM84530" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90048" + - metanetx.chemical: "MNXM84530" + - sbo: "SBO:0000247" - !!omap - id: "s_3039" - name: "triglyceride (1-18:0, 2-16:1, 3-18:1)" @@ -17717,7 +17717,7 @@ - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3040" - name: "triglyceride (1-18:0, 2-18:1, 3-18:1)" @@ -17725,7 +17725,7 @@ - formula: "C57H106O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3041" - name: "triglyceride (1-18:1, 2-16:1, 3-18:1)" @@ -17733,10 +17733,10 @@ - formula: "C55H100O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag1819Z1619Z1819Z" - - chebi: "CHEBI:88984" - - metanetx.chemical: "MNXM85603" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag1819Z1619Z1819Z" + - chebi: "CHEBI:88984" + - metanetx.chemical: "MNXM85603" + - sbo: "SBO:0000247" - !!omap - id: "s_3042" - name: "triglyceride (1-18:1, 2-18:1, 3-18:1)" @@ -17744,9 +17744,9 @@ - formula: "C57H104O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88970" - - metanetx.chemical: "MNXM85618" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88970" + - metanetx.chemical: "MNXM85618" + - sbo: "SBO:0000247" - !!omap - id: "s_3043" - name: "diglyceride (1-16:0, 2-16:1)" @@ -17754,9 +17754,9 @@ - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:84394" - - metanetx.chemical: "MNXM49375" - - sbo: "SBO:0000247" + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - id: "s_3044" - name: "triglyceride (1-16:0, 2-16:1, 3-16:0)" @@ -17764,9 +17764,9 @@ - formula: "C51H96O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:85427" - - metanetx.chemical: "MNXM84113" - - sbo: "SBO:0000247" + - chebi: "CHEBI:85427" + - metanetx.chemical: "MNXM84113" + - sbo: "SBO:0000247" - !!omap - id: "s_3045" - name: "diglyceride (1-16:0, 2-18:1)" @@ -17774,9 +17774,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88454" - - metanetx.chemical: "MNXM49380" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - id: "s_3046" - name: "triglyceride (1-16:0, 2-18:1, 3-16:0)" @@ -17784,9 +17784,9 @@ - formula: "C53H100O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89759" - - metanetx.chemical: "MNXM84120" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89759" + - metanetx.chemical: "MNXM84120" + - sbo: "SBO:0000247" - !!omap - id: "s_3047" - name: "diglyceride (1-16:1, 2-16:1)" @@ -17794,10 +17794,10 @@ - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr161" - - chebi: "CHEBI:84417" - - metanetx.chemical: "MNXM176611" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - id: "s_3048" - name: "triglyceride (1-16:1, 2-16:1, 3-16:0)" @@ -17805,8 +17805,8 @@ - formula: "C51H94O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag1619Z1619Z160" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag1619Z1619Z160" + - sbo: "SBO:0000247" - !!omap - id: "s_3049" - name: "diglyceride (1-16:1, 2-18:1)" @@ -17814,9 +17814,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88500" - - metanetx.chemical: "MNXM49417" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - id: "s_3050" - name: "triglyceride (1-16:1, 2-18:1, 3-16:0)" @@ -17824,7 +17824,7 @@ - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3051" - name: "diglyceride (1-18:0, 2-16:1)" @@ -17832,9 +17832,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88527" - - metanetx.chemical: "MNXM49511" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - id: "s_3052" - name: "triglyceride (1-18:0, 2-16:1, 3-16:0)" @@ -17842,7 +17842,7 @@ - formula: "C53H100O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3053" - name: "diglyceride (1-18:0, 2-18:1)" @@ -17850,9 +17850,9 @@ - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75468" - - metanetx.chemical: "MNXM49514" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - id: "s_3054" - name: "triglyceride (1-18:0, 2-18:1, 3-16:0)" @@ -17860,9 +17860,9 @@ - formula: "C55H104O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89755" - - metanetx.chemical: "MNXM84227" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89755" + - metanetx.chemical: "MNXM84227" + - sbo: "SBO:0000247" - !!omap - id: "s_3055" - name: "diglyceride (1-18:1, 2-16:1)" @@ -17870,9 +17870,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89229" - - metanetx.chemical: "MNXM49575" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - id: "s_3056" - name: "triglyceride (1-18:1, 2-16:1, 3-16:0)" @@ -17880,7 +17880,7 @@ - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3057" - name: "diglyceride (1-18:1, 2-18:1)" @@ -17888,10 +17888,10 @@ - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr181" - - chebi: "CHEBI:52333" - - metanetx.chemical: "MNXM9533" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - id: "s_3058" - name: "triglyceride (1-18:1, 2-18:1, 3-16:0)" @@ -17899,9 +17899,9 @@ - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88999" - - metanetx.chemical: "MNXM85598" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88999" + - metanetx.chemical: "MNXM85598" + - sbo: "SBO:0000247" - !!omap - id: "s_3059" - name: "triglyceride (1-16:0, 2-16:1, 3-16:1)" @@ -17909,9 +17909,9 @@ - formula: "C51H94O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89765" - - metanetx.chemical: "MNXM84138" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89765" + - metanetx.chemical: "MNXM84138" + - sbo: "SBO:0000247" - !!omap - id: "s_3060" - name: "triglyceride (1-16:0, 2-18:1, 3-16:1)" @@ -17919,7 +17919,7 @@ - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3061" - name: "triglyceride (1-16:1, 2-16:1, 3-16:1)" @@ -17927,10 +17927,10 @@ - formula: "C51H92O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag1619Z1619Z1619Z" - - chebi: "CHEBI:75841" - - metanetx.chemical: "MNXM84424" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag1619Z1619Z1619Z" + - chebi: "CHEBI:75841" + - metanetx.chemical: "MNXM84424" + - sbo: "SBO:0000247" - !!omap - id: "s_3062" - name: "triglyceride (1-16:1, 2-18:1, 3-16:1)" @@ -17938,7 +17938,7 @@ - formula: "C53H96O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3063" - name: "triglyceride (1-18:0, 2-16:1, 3-16:1)" @@ -17946,9 +17946,9 @@ - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90053" - - metanetx.chemical: "MNXM84428" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90053" + - metanetx.chemical: "MNXM84428" + - sbo: "SBO:0000247" - !!omap - id: "s_3064" - name: "triglyceride (1-18:0, 2-18:1, 3-16:1)" @@ -17956,7 +17956,7 @@ - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3065" - name: "triglyceride (1-18:1, 2-16:1, 3-16:1)" @@ -17964,8 +17964,8 @@ - formula: "C53H96O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag1819Z1619Z1619Z" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag1819Z1619Z1619Z" + - sbo: "SBO:0000247" - !!omap - id: "s_3066" - name: "triglyceride (1-18:1, 2-18:1, 3-16:1)" @@ -17973,7 +17973,7 @@ - formula: "C55H100O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3067" - name: "triglyceride (1-16:0, 2-16:1, 3-18:0)" @@ -17981,9 +17981,9 @@ - formula: "C53H100O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89763" - - metanetx.chemical: "MNXM84142" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89763" + - metanetx.chemical: "MNXM84142" + - sbo: "SBO:0000247" - !!omap - id: "s_3068" - name: "triglyceride (1-16:0, 2-18:1, 3-18:0)" @@ -17991,9 +17991,9 @@ - formula: "C55H104O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88998" - - metanetx.chemical: "MNXM85401" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88998" + - metanetx.chemical: "MNXM85401" + - sbo: "SBO:0000247" - !!omap - id: "s_3069" - name: "triglyceride (1-16:1, 2-16:1, 3-18:0)" @@ -18001,7 +18001,7 @@ - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3070" - name: "triglyceride (1-16:1, 2-18:1, 3-18:0)" @@ -18009,7 +18009,7 @@ - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3071" - name: "triglyceride (1-18:0, 2-16:1, 3-18:0)" @@ -18017,9 +18017,9 @@ - formula: "C55H104O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89958" - - metanetx.chemical: "MNXM84510" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89958" + - metanetx.chemical: "MNXM84510" + - sbo: "SBO:0000247" - !!omap - id: "s_3072" - name: "triglyceride (1-18:0, 2-18:1, 3-18:0)" @@ -18027,8 +18027,8 @@ - formula: "C57H108O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90305" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90305" + - sbo: "SBO:0000247" - !!omap - id: "s_3073" - name: "triglyceride (1-18:1, 2-16:1, 3-18:0)" @@ -18036,7 +18036,7 @@ - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3074" - name: "triglyceride (1-18:1, 2-18:1, 3-18:0)" @@ -18044,7 +18044,7 @@ - formula: "C57H106O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3075" - name: "triglyceride (1-16:0, 2-16:1, 3-18:1)" @@ -18052,7 +18052,7 @@ - formula: "C53H98O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3076" - name: "triglyceride (1-16:0, 2-18:1, 3-18:1)" @@ -18060,7 +18060,7 @@ - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3077" - name: "triglyceride (1-16:1, 2-16:1, 3-18:1)" @@ -18068,10 +18068,10 @@ - formula: "C53H96O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag1619Z1619Z1819Z" - - chebi: "CHEBI:90051" - - metanetx.chemical: "MNXM84429" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag1619Z1619Z1819Z" + - chebi: "CHEBI:90051" + - metanetx.chemical: "MNXM84429" + - sbo: "SBO:0000247" - !!omap - id: "s_3078" - name: "triglyceride (1-16:1, 2-18:1, 3-18:1)" @@ -18079,9 +18079,9 @@ - formula: "C55H100O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90048" - - metanetx.chemical: "MNXM84530" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90048" + - metanetx.chemical: "MNXM84530" + - sbo: "SBO:0000247" - !!omap - id: "s_3079" - name: "triglyceride (1-18:0, 2-16:1, 3-18:1)" @@ -18089,7 +18089,7 @@ - formula: "C55H102O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3080" - name: "triglyceride (1-18:0, 2-18:1, 3-18:1)" @@ -18097,7 +18097,7 @@ - formula: "C57H106O6" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3081" - name: "triglyceride (1-18:1, 2-16:1, 3-18:1)" @@ -18105,10 +18105,10 @@ - formula: "C55H100O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag1819Z1619Z1819Z" - - chebi: "CHEBI:88984" - - metanetx.chemical: "MNXM85603" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag1819Z1619Z1819Z" + - chebi: "CHEBI:88984" + - metanetx.chemical: "MNXM85603" + - sbo: "SBO:0000247" - !!omap - id: "s_3082" - name: "triglyceride (1-18:1, 2-18:1, 3-18:1)" @@ -18116,9 +18116,9 @@ - formula: "C57H104O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88970" - - metanetx.chemical: "MNXM85618" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88970" + - metanetx.chemical: "MNXM85618" + - sbo: "SBO:0000247" - !!omap - id: "s_3083" - name: "CTP" @@ -18126,11 +18126,11 @@ - formula: "C9H12N3O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ctp" - - chebi: "CHEBI:37563" - - kegg.compound: "C00063" - - metanetx.chemical: "MNXM63" - - sbo: "SBO:0000247" + - bigg.metabolite: "ctp" + - chebi: "CHEBI:37563" + - kegg.compound: "C00063" + - metanetx.chemical: "MNXM63" + - sbo: "SBO:0000247" - !!omap - id: "s_3084" - name: "CDP-diacylglycerol (1-16:0, 2-16:1)" @@ -18138,7 +18138,7 @@ - formula: "C44H79N3O15P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3085" - name: "CDP-diacylglycerol (1-16:1, 2-16:1)" @@ -18146,9 +18146,9 @@ - formula: "C44H77N3O15P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:104012" - - metanetx.chemical: "MNXM4508" - - sbo: "SBO:0000247" + - chebi: "CHEBI:104012" + - metanetx.chemical: "MNXM4508" + - sbo: "SBO:0000247" - !!omap - id: "s_3086" - name: "CDP-diacylglycerol (1-18:0, 2-16:1)" @@ -18156,7 +18156,7 @@ - formula: "C46H83N3O15P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3087" - name: "CDP-diacylglycerol (1-18:1, 2-16:1)" @@ -18164,7 +18164,7 @@ - formula: "C46H81N3O15P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3088" - name: "CDP-diacylglycerol (1-16:0, 2-18:1)" @@ -18172,10 +18172,10 @@ - formula: "C46H83N3O15P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:34077" - - kegg.compound: "C13892" - - metanetx.chemical: "MNXM32787" - - sbo: "SBO:0000247" + - chebi: "CHEBI:34077" + - kegg.compound: "C13892" + - metanetx.chemical: "MNXM32787" + - sbo: "SBO:0000247" - !!omap - id: "s_3089" - name: "CDP-diacylglycerol (1-16:1, 2-18:1)" @@ -18183,7 +18183,7 @@ - formula: "C46H81N3O15P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3090" - name: "CDP-diacylglycerol (1-18:0, 2-18:1)" @@ -18191,7 +18191,7 @@ - formula: "C48H87N3O15P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3091" - name: "CDP-diacylglycerol (1-18:1, 2-18:1)" @@ -18199,8 +18199,8 @@ - formula: "C48H85N3O15P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:104362" - - sbo: "SBO:0000247" + - chebi: "CHEBI:104362" + - sbo: "SBO:0000247" - !!omap - id: "s_3092" - name: "phosphatidate (1-16:0, 2-16:1)" @@ -18208,9 +18208,9 @@ - formula: "C35H67O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:73998" - - metanetx.chemical: "MNXM66470" - - sbo: "SBO:0000247" + - chebi: "CHEBI:73998" + - metanetx.chemical: "MNXM66470" + - sbo: "SBO:0000247" - !!omap - id: "s_3093" - name: "CTP" @@ -18218,11 +18218,11 @@ - formula: "C9H12N3O14P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ctp" - - chebi: "CHEBI:37563" - - kegg.compound: "C00063" - - metanetx.chemical: "MNXM63" - - sbo: "SBO:0000247" + - bigg.metabolite: "ctp" + - chebi: "CHEBI:37563" + - kegg.compound: "C00063" + - metanetx.chemical: "MNXM63" + - sbo: "SBO:0000247" - !!omap - id: "s_3094" - name: "H+" @@ -18230,11 +18230,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_3095" - name: "diphosphate" @@ -18242,11 +18242,11 @@ - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ppi" - - chebi: "CHEBI:33019" - - kegg.compound: "C00013" - - metanetx.chemical: "MNXM11" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - id: "s_3096" - name: "CDP-diacylglycerol (1-16:0, 2-16:1)" @@ -18254,7 +18254,7 @@ - formula: "C44H79N3O15P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3097" - name: "phosphatidate (1-16:1, 2-16:1)" @@ -18262,10 +18262,10 @@ - formula: "C35H65O8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pa161" - - chebi: "CHEBI:75071" - - metanetx.chemical: "MNXM66504" - - sbo: "SBO:0000247" + - bigg.metabolite: "pa161" + - chebi: "CHEBI:75071" + - metanetx.chemical: "MNXM66504" + - sbo: "SBO:0000247" - !!omap - id: "s_3098" - name: "CDP-diacylglycerol (1-16:1, 2-16:1)" @@ -18273,9 +18273,9 @@ - formula: "C44H77N3O15P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:104012" - - metanetx.chemical: "MNXM4508" - - sbo: "SBO:0000247" + - chebi: "CHEBI:104012" + - metanetx.chemical: "MNXM4508" + - sbo: "SBO:0000247" - !!omap - id: "s_3099" - name: "phosphatidate (1-18:0, 2-16:1)" @@ -18283,9 +18283,9 @@ - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75073" - - metanetx.chemical: "MNXM66631" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75073" + - metanetx.chemical: "MNXM66631" + - sbo: "SBO:0000247" - !!omap - id: "s_3100" - name: "CDP-diacylglycerol (1-18:0, 2-16:1)" @@ -18293,7 +18293,7 @@ - formula: "C46H83N3O15P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3101" - name: "phosphatidate (1-18:1, 2-16:1)" @@ -18301,9 +18301,9 @@ - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75074" - - metanetx.chemical: "MNXM66663" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75074" + - metanetx.chemical: "MNXM66663" + - sbo: "SBO:0000247" - !!omap - id: "s_3102" - name: "CDP-diacylglycerol (1-18:1, 2-16:1)" @@ -18311,7 +18311,7 @@ - formula: "C46H81N3O15P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3103" - name: "phosphatidate (1-16:0, 2-18:1)" @@ -18319,10 +18319,10 @@ - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:64844" - - kegg.compound: "C13889" - - metanetx.chemical: "MNXM66476" - - sbo: "SBO:0000247" + - chebi: "CHEBI:64844" + - kegg.compound: "C13889" + - metanetx.chemical: "MNXM66476" + - sbo: "SBO:0000247" - !!omap - id: "s_3104" - name: "CDP-diacylglycerol (1-16:0, 2-18:1)" @@ -18330,10 +18330,10 @@ - formula: "C46H83N3O15P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:34077" - - kegg.compound: "C13892" - - metanetx.chemical: "MNXM32787" - - sbo: "SBO:0000247" + - chebi: "CHEBI:34077" + - kegg.compound: "C13892" + - metanetx.chemical: "MNXM32787" + - sbo: "SBO:0000247" - !!omap - id: "s_3105" - name: "phosphatidate (1-16:1, 2-18:1)" @@ -18341,8 +18341,8 @@ - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM66509" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM66509" + - sbo: "SBO:0000247" - !!omap - id: "s_3106" - name: "CDP-diacylglycerol (1-16:1, 2-18:1)" @@ -18350,7 +18350,7 @@ - formula: "C46H81N3O15P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3107" - name: "L-serine" @@ -18358,11 +18358,11 @@ - formula: "C3H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ser__L" - - chebi: "CHEBI:17115" - - kegg.compound: "C00065" - - metanetx.chemical: "MNXM53" - - sbo: "SBO:0000247" + - bigg.metabolite: "ser__L" + - chebi: "CHEBI:17115" + - kegg.compound: "C00065" + - metanetx.chemical: "MNXM53" + - sbo: "SBO:0000247" - !!omap - id: "s_3108" - name: "CMP" @@ -18370,11 +18370,11 @@ - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "cmp" - - chebi: "CHEBI:60377" - - kegg.compound: "C00055" - - metanetx.chemical: "MNXM31" - - sbo: "SBO:0000247" + - bigg.metabolite: "cmp" + - chebi: "CHEBI:60377" + - kegg.compound: "C00055" + - metanetx.chemical: "MNXM31" + - sbo: "SBO:0000247" - !!omap - id: "s_3109" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" @@ -18382,9 +18382,9 @@ - formula: "C38H72NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89824" - - metanetx.chemical: "MNXM78605" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89824" + - metanetx.chemical: "MNXM78605" + - sbo: "SBO:0000247" - !!omap - id: "s_3110" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" @@ -18392,8 +18392,8 @@ - formula: "C38H70NO10P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM78637" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM78637" + - sbo: "SBO:0000247" - !!omap - id: "s_3111" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" @@ -18401,9 +18401,9 @@ - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90036" - - metanetx.chemical: "MNXM78765" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90036" + - metanetx.chemical: "MNXM78765" + - sbo: "SBO:0000247" - !!omap - id: "s_3112" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" @@ -18411,9 +18411,9 @@ - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75101" - - metanetx.chemical: "MNXM78797" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75101" + - metanetx.chemical: "MNXM78797" + - sbo: "SBO:0000247" - !!omap - id: "s_3113" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" @@ -18421,10 +18421,10 @@ - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:34086" - - kegg.compound: "C13880" - - metanetx.chemical: "MNXM32501" - - sbo: "SBO:0000247" + - chebi: "CHEBI:34086" + - kegg.compound: "C13880" + - metanetx.chemical: "MNXM32501" + - sbo: "SBO:0000247" - !!omap - id: "s_3114" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" @@ -18432,9 +18432,9 @@ - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90032" - - metanetx.chemical: "MNXM78642" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90032" + - metanetx.chemical: "MNXM78642" + - sbo: "SBO:0000247" - !!omap - id: "s_3115" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" @@ -18442,9 +18442,9 @@ - formula: "C42H80NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:79096" - - metanetx.chemical: "MNXM32529" - - sbo: "SBO:0000247" + - chebi: "CHEBI:79096" + - metanetx.chemical: "MNXM32529" + - sbo: "SBO:0000247" - !!omap - id: "s_3116" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" @@ -18452,9 +18452,9 @@ - formula: "C42H78NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60568" - - metanetx.chemical: "MNXM32173" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60568" + - metanetx.chemical: "MNXM32173" + - sbo: "SBO:0000247" - !!omap - id: "s_3117" - name: "myo-inositol" @@ -18462,11 +18462,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "inost" - - chebi: "CHEBI:17268" - - kegg.compound: "C00137" - - metanetx.chemical: "MNXM127" - - sbo: "SBO:0000247" + - bigg.metabolite: "inost" + - chebi: "CHEBI:17268" + - kegg.compound: "C00137" + - metanetx.chemical: "MNXM127" + - sbo: "SBO:0000247" - !!omap - id: "s_3118" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" @@ -18474,9 +18474,9 @@ - formula: "C41H77O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88396" - - metanetx.chemical: "MNXM75492" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88396" + - metanetx.chemical: "MNXM75492" + - sbo: "SBO:0000247" - !!omap - id: "s_3119" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" @@ -18484,8 +18484,8 @@ - formula: "C41H75O13P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail161" + - sbo: "SBO:0000247" - !!omap - id: "s_3120" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" @@ -18493,9 +18493,9 @@ - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88557" - - metanetx.chemical: "MNXM75665" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88557" + - metanetx.chemical: "MNXM75665" + - sbo: "SBO:0000247" - !!omap - id: "s_3121" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" @@ -18503,8 +18503,8 @@ - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88626" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88626" + - sbo: "SBO:0000247" - !!omap - id: "s_3122" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" @@ -18512,10 +18512,10 @@ - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:73215" - - kegg.compound: "C13888" - - metanetx.chemical: "MNXM75499" - - sbo: "SBO:0000247" + - chebi: "CHEBI:73215" + - kegg.compound: "C13888" + - metanetx.chemical: "MNXM75499" + - sbo: "SBO:0000247" - !!omap - id: "s_3123" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" @@ -18523,8 +18523,8 @@ - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88562" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88562" + - sbo: "SBO:0000247" - !!omap - id: "s_3124" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" @@ -18532,9 +18532,9 @@ - formula: "C45H85O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77346" - - metanetx.chemical: "MNXM75671" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77346" + - metanetx.chemical: "MNXM75671" + - sbo: "SBO:0000247" - !!omap - id: "s_3125" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" @@ -18542,8 +18542,8 @@ - formula: "C45H83O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88612" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88612" + - sbo: "SBO:0000247" - !!omap - id: "s_3126" - name: "sn-2-acyl-1-lysophosphatidylinositol (16:1)" @@ -18551,8 +18551,8 @@ - formula: "C25H47O12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:138108" - - sbo: "SBO:0000247" + - chebi: "CHEBI:138108" + - sbo: "SBO:0000247" - !!omap - id: "s_3127" - name: "sn-2-acyl-1-lysophosphatidylinositol (18:1)" @@ -18560,7 +18560,7 @@ - formula: "C27H51O12P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3128" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" @@ -18568,9 +18568,9 @@ - formula: "C38H72NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89824" - - metanetx.chemical: "MNXM78605" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89824" + - metanetx.chemical: "MNXM78605" + - sbo: "SBO:0000247" - !!omap - id: "s_3129" - name: "carbon dioxide" @@ -18578,11 +18578,11 @@ - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "co2" - - chebi: "CHEBI:16526" - - kegg.compound: "C00011" - - metanetx.chemical: "MNXM13" - - sbo: "SBO:0000247" + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - id: "s_3130" - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" @@ -18590,8 +18590,8 @@ - formula: "C37H72NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136147" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136147" + - sbo: "SBO:0000247" - !!omap - id: "s_3131" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" @@ -18599,8 +18599,8 @@ - formula: "C38H70NO10P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM78637" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM78637" + - sbo: "SBO:0000247" - !!omap - id: "s_3132" - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" @@ -18608,9 +18608,9 @@ - formula: "C37H70NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pe161" - - chebi: "CHEBI:138792" - - sbo: "SBO:0000247" + - bigg.metabolite: "pe161" + - chebi: "CHEBI:138792" + - sbo: "SBO:0000247" - !!omap - id: "s_3133" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" @@ -18618,9 +18618,9 @@ - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90036" - - metanetx.chemical: "MNXM78765" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90036" + - metanetx.chemical: "MNXM78765" + - sbo: "SBO:0000247" - !!omap - id: "s_3134" - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" @@ -18628,8 +18628,8 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136155" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136155" + - sbo: "SBO:0000247" - !!omap - id: "s_3135" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" @@ -18637,9 +18637,9 @@ - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75101" - - metanetx.chemical: "MNXM78797" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75101" + - metanetx.chemical: "MNXM78797" + - sbo: "SBO:0000247" - !!omap - id: "s_3136" - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" @@ -18647,9 +18647,9 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:82837" - - metanetx.chemical: "MNXM71684" - - sbo: "SBO:0000247" + - chebi: "CHEBI:82837" + - metanetx.chemical: "MNXM71684" + - sbo: "SBO:0000247" - !!omap - id: "s_3137" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" @@ -18657,10 +18657,10 @@ - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:34086" - - kegg.compound: "C13880" - - metanetx.chemical: "MNXM32501" - - sbo: "SBO:0000247" + - chebi: "CHEBI:34086" + - kegg.compound: "C13880" + - metanetx.chemical: "MNXM32501" + - sbo: "SBO:0000247" - !!omap - id: "s_3138" - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" @@ -18668,8 +18668,8 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136148" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136148" + - sbo: "SBO:0000247" - !!omap - id: "s_3139" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" @@ -18677,9 +18677,9 @@ - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90032" - - metanetx.chemical: "MNXM78642" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90032" + - metanetx.chemical: "MNXM78642" + - sbo: "SBO:0000247" - !!omap - id: "s_3140" - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" @@ -18687,8 +18687,8 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90464" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90464" + - sbo: "SBO:0000247" - !!omap - id: "s_3141" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" @@ -18696,9 +18696,9 @@ - formula: "C42H80NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:79096" - - metanetx.chemical: "MNXM32529" - - sbo: "SBO:0000247" + - chebi: "CHEBI:79096" + - metanetx.chemical: "MNXM32529" + - sbo: "SBO:0000247" - !!omap - id: "s_3142" - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" @@ -18706,8 +18706,8 @@ - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136162" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136162" + - sbo: "SBO:0000247" - !!omap - id: "s_3143" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" @@ -18715,9 +18715,9 @@ - formula: "C42H78NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60568" - - metanetx.chemical: "MNXM32173" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60568" + - metanetx.chemical: "MNXM32173" + - sbo: "SBO:0000247" - !!omap - id: "s_3144" - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" @@ -18725,8 +18725,8 @@ - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136170" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136170" + - sbo: "SBO:0000247" - !!omap - id: "s_3145" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" @@ -18734,9 +18734,9 @@ - formula: "C38H72NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89824" - - metanetx.chemical: "MNXM78605" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89824" + - metanetx.chemical: "MNXM78605" + - sbo: "SBO:0000247" - !!omap - id: "s_3146" - name: "H+" @@ -18744,11 +18744,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_3147" - name: "carbon dioxide" @@ -18756,11 +18756,11 @@ - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "co2" - - chebi: "CHEBI:16526" - - kegg.compound: "C00011" - - metanetx.chemical: "MNXM13" - - sbo: "SBO:0000247" + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - id: "s_3148" - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" @@ -18768,8 +18768,8 @@ - formula: "C37H72NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136147" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136147" + - sbo: "SBO:0000247" - !!omap - id: "s_3149" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" @@ -18777,8 +18777,8 @@ - formula: "C38H70NO10P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM78637" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM78637" + - sbo: "SBO:0000247" - !!omap - id: "s_3150" - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" @@ -18786,9 +18786,9 @@ - formula: "C37H70NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pe161" - - chebi: "CHEBI:138792" - - sbo: "SBO:0000247" + - bigg.metabolite: "pe161" + - chebi: "CHEBI:138792" + - sbo: "SBO:0000247" - !!omap - id: "s_3151" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" @@ -18796,9 +18796,9 @@ - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90036" - - metanetx.chemical: "MNXM78765" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90036" + - metanetx.chemical: "MNXM78765" + - sbo: "SBO:0000247" - !!omap - id: "s_3152" - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" @@ -18806,8 +18806,8 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136155" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136155" + - sbo: "SBO:0000247" - !!omap - id: "s_3153" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" @@ -18815,9 +18815,9 @@ - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75101" - - metanetx.chemical: "MNXM78797" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75101" + - metanetx.chemical: "MNXM78797" + - sbo: "SBO:0000247" - !!omap - id: "s_3154" - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" @@ -18825,9 +18825,9 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:82837" - - metanetx.chemical: "MNXM71684" - - sbo: "SBO:0000247" + - chebi: "CHEBI:82837" + - metanetx.chemical: "MNXM71684" + - sbo: "SBO:0000247" - !!omap - id: "s_3155" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" @@ -18835,10 +18835,10 @@ - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:34086" - - kegg.compound: "C13880" - - metanetx.chemical: "MNXM32501" - - sbo: "SBO:0000247" + - chebi: "CHEBI:34086" + - kegg.compound: "C13880" + - metanetx.chemical: "MNXM32501" + - sbo: "SBO:0000247" - !!omap - id: "s_3156" - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" @@ -18846,8 +18846,8 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136148" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136148" + - sbo: "SBO:0000247" - !!omap - id: "s_3157" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" @@ -18855,9 +18855,9 @@ - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90032" - - metanetx.chemical: "MNXM78642" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90032" + - metanetx.chemical: "MNXM78642" + - sbo: "SBO:0000247" - !!omap - id: "s_3158" - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" @@ -18865,8 +18865,8 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90464" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90464" + - sbo: "SBO:0000247" - !!omap - id: "s_3159" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" @@ -18874,9 +18874,9 @@ - formula: "C42H80NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:79096" - - metanetx.chemical: "MNXM32529" - - sbo: "SBO:0000247" + - chebi: "CHEBI:79096" + - metanetx.chemical: "MNXM32529" + - sbo: "SBO:0000247" - !!omap - id: "s_3160" - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" @@ -18884,8 +18884,8 @@ - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136162" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136162" + - sbo: "SBO:0000247" - !!omap - id: "s_3161" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" @@ -18893,9 +18893,9 @@ - formula: "C42H78NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60568" - - metanetx.chemical: "MNXM32173" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60568" + - metanetx.chemical: "MNXM32173" + - sbo: "SBO:0000247" - !!omap - id: "s_3162" - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" @@ -18903,8 +18903,8 @@ - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136170" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136170" + - sbo: "SBO:0000247" - !!omap - id: "s_3163" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" @@ -18912,9 +18912,9 @@ - formula: "C38H72NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89824" - - metanetx.chemical: "MNXM78605" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89824" + - metanetx.chemical: "MNXM78605" + - sbo: "SBO:0000247" - !!omap - id: "s_3164" - name: "H+" @@ -18922,11 +18922,11 @@ - formula: "H" - charge: 1 - annotation: !!omap - - bigg.metabolite: "h" - - chebi: "CHEBI:24636" - - kegg.compound: "C00080" - - metanetx.chemical: "MNXM1" - - sbo: "SBO:0000247" + - bigg.metabolite: "h" + - chebi: "CHEBI:24636" + - kegg.compound: "C00080" + - metanetx.chemical: "MNXM1" + - sbo: "SBO:0000247" - !!omap - id: "s_3165" - name: "carbon dioxide" @@ -18934,11 +18934,11 @@ - formula: "CO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "co2" - - chebi: "CHEBI:16526" - - kegg.compound: "C00011" - - metanetx.chemical: "MNXM13" - - sbo: "SBO:0000247" + - bigg.metabolite: "co2" + - chebi: "CHEBI:16526" + - kegg.compound: "C00011" + - metanetx.chemical: "MNXM13" + - sbo: "SBO:0000247" - !!omap - id: "s_3166" - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" @@ -18946,8 +18946,8 @@ - formula: "C37H72NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136147" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136147" + - sbo: "SBO:0000247" - !!omap - id: "s_3167" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" @@ -18955,8 +18955,8 @@ - formula: "C38H70NO10P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM78637" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM78637" + - sbo: "SBO:0000247" - !!omap - id: "s_3168" - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" @@ -18964,9 +18964,9 @@ - formula: "C37H70NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pe161" - - chebi: "CHEBI:138792" - - sbo: "SBO:0000247" + - bigg.metabolite: "pe161" + - chebi: "CHEBI:138792" + - sbo: "SBO:0000247" - !!omap - id: "s_3169" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" @@ -18974,9 +18974,9 @@ - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90036" - - metanetx.chemical: "MNXM78765" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90036" + - metanetx.chemical: "MNXM78765" + - sbo: "SBO:0000247" - !!omap - id: "s_3170" - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" @@ -18984,8 +18984,8 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136155" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136155" + - sbo: "SBO:0000247" - !!omap - id: "s_3171" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" @@ -18993,9 +18993,9 @@ - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75101" - - metanetx.chemical: "MNXM78797" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75101" + - metanetx.chemical: "MNXM78797" + - sbo: "SBO:0000247" - !!omap - id: "s_3172" - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" @@ -19003,9 +19003,9 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:82837" - - metanetx.chemical: "MNXM71684" - - sbo: "SBO:0000247" + - chebi: "CHEBI:82837" + - metanetx.chemical: "MNXM71684" + - sbo: "SBO:0000247" - !!omap - id: "s_3173" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" @@ -19013,10 +19013,10 @@ - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:34086" - - kegg.compound: "C13880" - - metanetx.chemical: "MNXM32501" - - sbo: "SBO:0000247" + - chebi: "CHEBI:34086" + - kegg.compound: "C13880" + - metanetx.chemical: "MNXM32501" + - sbo: "SBO:0000247" - !!omap - id: "s_3174" - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" @@ -19024,8 +19024,8 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136148" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136148" + - sbo: "SBO:0000247" - !!omap - id: "s_3175" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" @@ -19033,9 +19033,9 @@ - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90032" - - metanetx.chemical: "MNXM78642" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90032" + - metanetx.chemical: "MNXM78642" + - sbo: "SBO:0000247" - !!omap - id: "s_3176" - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" @@ -19043,8 +19043,8 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90464" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90464" + - sbo: "SBO:0000247" - !!omap - id: "s_3177" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" @@ -19052,9 +19052,9 @@ - formula: "C42H80NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:79096" - - metanetx.chemical: "MNXM32529" - - sbo: "SBO:0000247" + - chebi: "CHEBI:79096" + - metanetx.chemical: "MNXM32529" + - sbo: "SBO:0000247" - !!omap - id: "s_3178" - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" @@ -19062,8 +19062,8 @@ - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136162" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136162" + - sbo: "SBO:0000247" - !!omap - id: "s_3179" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" @@ -19071,9 +19071,9 @@ - formula: "C42H78NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60568" - - metanetx.chemical: "MNXM32173" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60568" + - metanetx.chemical: "MNXM32173" + - sbo: "SBO:0000247" - !!omap - id: "s_3180" - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" @@ -19081,8 +19081,8 @@ - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136170" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136170" + - sbo: "SBO:0000247" - !!omap - id: "s_3181" - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" @@ -19090,8 +19090,8 @@ - formula: "C37H72NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136147" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136147" + - sbo: "SBO:0000247" - !!omap - id: "s_3182" - name: "S-adenosyl-L-methionine" @@ -19099,11 +19099,11 @@ - formula: "C15H23N6O5S" - charge: 1 - annotation: !!omap - - bigg.metabolite: "amet" - - chebi: "CHEBI:15414" - - kegg.compound: "C00019" - - metanetx.chemical: "MNXM16" - - sbo: "SBO:0000247" + - bigg.metabolite: "amet" + - chebi: "CHEBI:15414" + - kegg.compound: "C00019" + - metanetx.chemical: "MNXM16" + - sbo: "SBO:0000247" - !!omap - id: "s_3183" - name: "S-adenosyl-L-homocysteine" @@ -19111,11 +19111,11 @@ - formula: "C14H20N6O5S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ahcys" - - chebi: "CHEBI:16680" - - kegg.compound: "C00021" - - metanetx.chemical: "MNXM19" - - sbo: "SBO:0000247" + - bigg.metabolite: "ahcys" + - chebi: "CHEBI:16680" + - kegg.compound: "C00021" + - metanetx.chemical: "MNXM19" + - sbo: "SBO:0000247" - !!omap - id: "s_3184" - name: "phosphatidyl-N-methylethanolamine (1-16:0, 2-16:1)" @@ -19123,7 +19123,7 @@ - formula: "C38H74NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3185" - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" @@ -19131,9 +19131,9 @@ - formula: "C37H70NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pe161" - - chebi: "CHEBI:138792" - - sbo: "SBO:0000247" + - bigg.metabolite: "pe161" + - chebi: "CHEBI:138792" + - sbo: "SBO:0000247" - !!omap - id: "s_3186" - name: "phosphatidyl-N-methylethanolamine (1-16:1, 2-16:1)" @@ -19141,7 +19141,7 @@ - formula: "C38H72NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3187" - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" @@ -19149,8 +19149,8 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136155" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136155" + - sbo: "SBO:0000247" - !!omap - id: "s_3188" - name: "phosphatidyl-N-methylethanolamine (1-18:0, 2-16:1)" @@ -19158,7 +19158,7 @@ - formula: "C40H78NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3189" - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" @@ -19166,9 +19166,9 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:82837" - - metanetx.chemical: "MNXM71684" - - sbo: "SBO:0000247" + - chebi: "CHEBI:82837" + - metanetx.chemical: "MNXM71684" + - sbo: "SBO:0000247" - !!omap - id: "s_3190" - name: "phosphatidyl-N-methylethanolamine (1-18:1, 2-16:1)" @@ -19176,7 +19176,7 @@ - formula: "C40H76NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3191" - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" @@ -19184,8 +19184,8 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136148" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136148" + - sbo: "SBO:0000247" - !!omap - id: "s_3192" - name: "phosphatidyl-N-methylethanolamine (1-16:0, 2-18:1)" @@ -19193,7 +19193,7 @@ - formula: "C40H78NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3193" - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" @@ -19201,8 +19201,8 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90464" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90464" + - sbo: "SBO:0000247" - !!omap - id: "s_3194" - name: "phosphatidyl-N-methylethanolamine (1-16:1, 2-18:1)" @@ -19210,7 +19210,7 @@ - formula: "C40H76NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3195" - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" @@ -19218,8 +19218,8 @@ - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136162" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136162" + - sbo: "SBO:0000247" - !!omap - id: "s_3196" - name: "phosphatidyl-N-methylethanolamine (1-18:0, 2-18:1)" @@ -19227,7 +19227,7 @@ - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3197" - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" @@ -19235,8 +19235,8 @@ - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136170" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136170" + - sbo: "SBO:0000247" - !!omap - id: "s_3198" - name: "phosphatidyl-N-methylethanolamine (1-18:1, 2-18:1)" @@ -19244,9 +19244,9 @@ - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:85962" - - metanetx.chemical: "MNXM72986" - - sbo: "SBO:0000247" + - chebi: "CHEBI:85962" + - metanetx.chemical: "MNXM72986" + - sbo: "SBO:0000247" - !!omap - id: "s_3199" - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:0, 2-16:1)" @@ -19254,7 +19254,7 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3200" - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:1, 2-16:1)" @@ -19262,7 +19262,7 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3201" - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:0, 2-16:1)" @@ -19270,7 +19270,7 @@ - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3202" - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:1, 2-16:1)" @@ -19278,7 +19278,7 @@ - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3203" - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:0, 2-18:1)" @@ -19286,7 +19286,7 @@ - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3204" - name: "phosphatidyl-N,N-dimethylethanolamine (1-16:1, 2-18:1)" @@ -19294,7 +19294,7 @@ - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3205" - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:0, 2-18:1)" @@ -19302,7 +19302,7 @@ - formula: "C43H84NO8P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3206" - name: "phosphatidyl-N,N-dimethylethanolamine (1-18:1, 2-18:1)" @@ -19310,9 +19310,9 @@ - formula: "C43H82NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:85963" - - metanetx.chemical: "MNXM72998" - - sbo: "SBO:0000247" + - chebi: "CHEBI:85963" + - metanetx.chemical: "MNXM72998" + - sbo: "SBO:0000247" - !!omap - id: "s_3207" - name: "phosphatidylcholine (1-16:0, 2-16:1)" @@ -19320,8 +19320,8 @@ - formula: "C40H78NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134592" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134592" + - sbo: "SBO:0000247" - !!omap - id: "s_3208" - name: "phosphatidylcholine (1-16:1, 2-16:1)" @@ -19329,10 +19329,10 @@ - formula: "C40H76NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pc161" - - chebi: "CHEBI:83717" - - metanetx.chemical: "MNXM69377" - - sbo: "SBO:0000247" + - bigg.metabolite: "pc161" + - chebi: "CHEBI:83717" + - metanetx.chemical: "MNXM69377" + - sbo: "SBO:0000247" - !!omap - id: "s_3209" - name: "phosphatidylcholine (1-18:0, 2-16:1)" @@ -19340,9 +19340,9 @@ - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:86097" - - metanetx.chemical: "MNXM69528" - - sbo: "SBO:0000247" + - chebi: "CHEBI:86097" + - metanetx.chemical: "MNXM69528" + - sbo: "SBO:0000247" - !!omap - id: "s_3210" - name: "phosphatidylcholine (1-18:1, 2-16:1)" @@ -19350,9 +19350,9 @@ - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:86100" - - metanetx.chemical: "MNXM69658" - - sbo: "SBO:0000247" + - chebi: "CHEBI:86100" + - metanetx.chemical: "MNXM69658" + - sbo: "SBO:0000247" - !!omap - id: "s_3211" - name: "phosphatidylcholine (1-16:0, 2-18:1)" @@ -19360,8 +19360,8 @@ - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134594" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134594" + - sbo: "SBO:0000247" - !!omap - id: "s_3212" - name: "phosphatidylcholine (1-16:1, 2-18:1)" @@ -19369,9 +19369,9 @@ - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:84811" - - metanetx.chemical: "MNXM69383" - - sbo: "SBO:0000247" + - chebi: "CHEBI:84811" + - metanetx.chemical: "MNXM69383" + - sbo: "SBO:0000247" - !!omap - id: "s_3213" - name: "phosphatidylcholine (1-18:0, 2-18:1)" @@ -19379,9 +19379,9 @@ - formula: "C44H86NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75034" - - metanetx.chemical: "MNXM32526" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75034" + - metanetx.chemical: "MNXM32526" + - sbo: "SBO:0000247" - !!omap - id: "s_3214" - name: "phosphatidylcholine (1-18:1, 2-18:1)" @@ -19389,9 +19389,9 @@ - formula: "C44H84NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:74669" - - metanetx.chemical: "MNXM8549" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74669" + - metanetx.chemical: "MNXM8549" + - sbo: "SBO:0000247" - !!omap - id: "s_3215" - name: "CDP" @@ -19399,11 +19399,11 @@ - formula: "C9H12N3O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "cdp" - - chebi: "CHEBI:58069" - - kegg.compound: "C00112" - - metanetx.chemical: "MNXM220" - - sbo: "SBO:0000247" + - bigg.metabolite: "cdp" + - chebi: "CHEBI:58069" + - kegg.compound: "C00112" + - metanetx.chemical: "MNXM220" + - sbo: "SBO:0000247" - !!omap - id: "s_3216" - name: "CDP-ethanolamine" @@ -19411,11 +19411,11 @@ - formula: "C11H19N4O11P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "cdpea" - - chebi: "CHEBI:57876" - - kegg.compound: "C00570" - - metanetx.chemical: "MNXM449" - - sbo: "SBO:0000247" + - bigg.metabolite: "cdpea" + - chebi: "CHEBI:57876" + - kegg.compound: "C00570" + - metanetx.chemical: "MNXM449" + - sbo: "SBO:0000247" - !!omap - id: "s_3217" - name: "CDP-choline" @@ -19423,11 +19423,11 @@ - formula: "C14H25N4O11P2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "cdpchol" - - chebi: "CHEBI:16436" - - kegg.compound: "C00307" - - metanetx.chemical: "MNXM283" - - sbo: "SBO:0000247" + - bigg.metabolite: "cdpchol" + - chebi: "CHEBI:16436" + - kegg.compound: "C00307" + - metanetx.chemical: "MNXM283" + - sbo: "SBO:0000247" - !!omap - id: "s_3218" - name: "glycerol 3-phosphate" @@ -19435,11 +19435,11 @@ - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "glyc3p" - - chebi: "CHEBI:57597" - - kegg.compound: "C00093" - - metanetx.chemical: "MNXM66" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc3p" + - chebi: "CHEBI:57597" + - kegg.compound: "C00093" + - metanetx.chemical: "MNXM66" + - sbo: "SBO:0000247" - !!omap - id: "s_3219" - name: "CMP" @@ -19447,11 +19447,11 @@ - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "cmp" - - chebi: "CHEBI:60377" - - kegg.compound: "C00055" - - metanetx.chemical: "MNXM31" - - sbo: "SBO:0000247" + - bigg.metabolite: "cmp" + - chebi: "CHEBI:60377" + - kegg.compound: "C00055" + - metanetx.chemical: "MNXM31" + - sbo: "SBO:0000247" - !!omap - id: "s_3220" - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:0, 2-16:1)" @@ -19459,7 +19459,7 @@ - formula: "C38H74O13P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3221" - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:1, 2-16:1)" @@ -19467,7 +19467,7 @@ - formula: "C38H72O13P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3222" - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-18:0, 2-16:1)" @@ -19475,7 +19475,7 @@ - formula: "C40H78O13P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3223" - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-18:1, 2-16:1)" @@ -19483,7 +19483,7 @@ - formula: "C40H76O13P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3224" - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:0, 2-18:1)" @@ -19491,8 +19491,8 @@ - formula: "C40H78O13P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM725269" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM725269" + - sbo: "SBO:0000247" - !!omap - id: "s_3225" - name: "3-(3-sn-phosphatidyl)-sn-glycerol 1-phosphate (1-16:1, 2-18:1)" @@ -19500,7 +19500,7 @@ - formula: "C40H76O13P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3226" - name: "H2O" @@ -19508,11 +19508,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_3227" - name: "phosphatidylglycerol (1-16:0, 2-16:1)" @@ -19520,8 +19520,8 @@ - formula: "C38H73O10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136224" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136224" + - sbo: "SBO:0000247" - !!omap - id: "s_3228" - name: "phosphate" @@ -19529,11 +19529,11 @@ - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pi" - - chebi: "CHEBI:43474" - - kegg.compound: "C00009" - - metanetx.chemical: "MNXM9" - - sbo: "SBO:0000247" + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - id: "s_3229" - name: "phosphatidylglycerol (1-16:1, 2-16:1)" @@ -19541,7 +19541,7 @@ - formula: "C38H71O10P" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3230" - name: "phosphatidylglycerol (1-18:0, 2-16:1)" @@ -19549,8 +19549,8 @@ - formula: "C40H77O10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89270" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89270" + - sbo: "SBO:0000247" - !!omap - id: "s_3231" - name: "phosphatidylglycerol (1-18:1, 2-16:1)" @@ -19558,8 +19558,8 @@ - formula: "C40H75O10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89093" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89093" + - sbo: "SBO:0000247" - !!omap - id: "s_3232" - name: "phosphatidylglycerol (1-16:0, 2-18:1)" @@ -19567,9 +19567,9 @@ - formula: "C40H77O10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:34080" - - kegg.compound: "C13833" - - sbo: "SBO:0000247" + - chebi: "CHEBI:34080" + - kegg.compound: "C13833" + - sbo: "SBO:0000247" - !!omap - id: "s_3233" - name: "phosphatidylglycerol (1-16:1, 2-18:1)" @@ -19577,8 +19577,8 @@ - formula: "C40H75O10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89398" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89398" + - sbo: "SBO:0000247" - !!omap - id: "s_3234" - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-16:1)" @@ -19586,8 +19586,8 @@ - formula: "C73H138O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM120766" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM120766" + - sbo: "SBO:0000247" - !!omap - id: "s_3235" - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-16:1)" @@ -19595,8 +19595,8 @@ - formula: "C73H136O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM120775" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM120775" + - sbo: "SBO:0000247" - !!omap - id: "s_3236" - name: "cardiolipin (1-16:0, 2-16:1, 3-18:0, 4-16:1)" @@ -19604,8 +19604,8 @@ - formula: "C75H142O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM120785" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM120785" + - sbo: "SBO:0000247" - !!omap - id: "s_3237" - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-16:1)" @@ -19613,8 +19613,8 @@ - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM120792" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM120792" + - sbo: "SBO:0000247" - !!omap - id: "s_3238" - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-18:1)" @@ -19622,8 +19622,8 @@ - formula: "C75H142O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM120768" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM120768" + - sbo: "SBO:0000247" - !!omap - id: "s_3239" - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-18:1)" @@ -19631,8 +19631,8 @@ - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM120778" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM120778" + - sbo: "SBO:0000247" - !!omap - id: "s_3240" - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-16:1)" @@ -19640,7 +19640,7 @@ - formula: "C73H136O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3241" - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-16:1)" @@ -19648,10 +19648,10 @@ - formula: "C73H134O17P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "clpn161" - - chebi: "CHEBI:104873" - - metanetx.chemical: "MNXM4501" - - sbo: "SBO:0000247" + - bigg.metabolite: "clpn161" + - chebi: "CHEBI:104873" + - metanetx.chemical: "MNXM4501" + - sbo: "SBO:0000247" - !!omap - id: "s_3242" - name: "cardiolipin (1-16:1, 2-16:1, 3-18:0, 4-16:1)" @@ -19659,7 +19659,7 @@ - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3243" - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-16:1)" @@ -19667,8 +19667,8 @@ - formula: "C75H138O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM121254" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM121254" + - sbo: "SBO:0000247" - !!omap - id: "s_3244" - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-18:1)" @@ -19676,7 +19676,7 @@ - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3245" - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-18:1)" @@ -19684,8 +19684,8 @@ - formula: "C75H138O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM121237" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM121237" + - sbo: "SBO:0000247" - !!omap - id: "s_3246" - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-16:1)" @@ -19693,7 +19693,7 @@ - formula: "C75H142O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3247" - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-16:1)" @@ -19701,7 +19701,7 @@ - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3248" - name: "cardiolipin (1-18:0, 2-16:1, 3-18:0, 4-16:1)" @@ -19709,7 +19709,7 @@ - formula: "C77H146O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3249" - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-16:1)" @@ -19717,7 +19717,7 @@ - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3250" - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-18:1)" @@ -19725,7 +19725,7 @@ - formula: "C77H146O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3251" - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-18:1)" @@ -19733,7 +19733,7 @@ - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3252" - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-16:1)" @@ -19741,7 +19741,7 @@ - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3253" - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-16:1)" @@ -19749,7 +19749,7 @@ - formula: "C75H138O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3254" - name: "cardiolipin (1-18:1, 2-16:1, 3-18:0, 4-16:1)" @@ -19757,7 +19757,7 @@ - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3255" - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-16:1)" @@ -19765,7 +19765,7 @@ - formula: "C77H142O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3256" - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-18:1)" @@ -19773,7 +19773,7 @@ - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3257" - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-18:1)" @@ -19781,7 +19781,7 @@ - formula: "C77H142O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3258" - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-16:1)" @@ -19789,7 +19789,7 @@ - formula: "C75H142O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3259" - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-16:1)" @@ -19797,8 +19797,8 @@ - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM120922" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM120922" + - sbo: "SBO:0000247" - !!omap - id: "s_3260" - name: "cardiolipin (1-16:0, 2-18:1, 3-18:0, 4-16:1)" @@ -19806,7 +19806,7 @@ - formula: "C77H146O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3261" - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-16:1)" @@ -19814,8 +19814,8 @@ - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM120940" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM120940" + - sbo: "SBO:0000247" - !!omap - id: "s_3262" - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-18:1)" @@ -19823,7 +19823,7 @@ - formula: "C77H146O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3263" - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-18:1)" @@ -19831,8 +19831,8 @@ - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM120924" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM120924" + - sbo: "SBO:0000247" - !!omap - id: "s_3264" - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-16:1)" @@ -19840,7 +19840,7 @@ - formula: "C75H140O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3265" - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-16:1)" @@ -19848,7 +19848,7 @@ - formula: "C75H138O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3266" - name: "cardiolipin (1-16:1, 2-18:1, 3-18:0, 4-16:1)" @@ -19856,7 +19856,7 @@ - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3267" - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-16:1)" @@ -19864,7 +19864,7 @@ - formula: "C77H142O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3268" - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-18:1)" @@ -19872,7 +19872,7 @@ - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3269" - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-18:1)" @@ -19880,7 +19880,7 @@ - formula: "C77H142O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3270" - name: "monolysocardiolipin (2-16:1, 3-16:0, 4-16:1)" @@ -19888,7 +19888,7 @@ - formula: "C57H108O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3271" - name: "palmitate" @@ -19896,11 +19896,11 @@ - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdca" - - chebi: "CHEBI:7896" - - kegg.compound: "C00249" - - metanetx.chemical: "MNXM108" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - id: "s_3272" - name: "monolysocardiolipin (2-16:1, 3-16:1, 4-16:1)" @@ -19908,7 +19908,7 @@ - formula: "C57H106O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3273" - name: "monolysocardiolipin (2-16:1, 3-18:0, 4-16:1)" @@ -19916,7 +19916,7 @@ - formula: "C59H112O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3274" - name: "monolysocardiolipin (2-16:1, 3-18:1, 4-16:1)" @@ -19924,7 +19924,7 @@ - formula: "C59H110O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3275" - name: "monolysocardiolipin (2-16:1, 3-16:0, 4-18:1)" @@ -19932,7 +19932,7 @@ - formula: "C59H112O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3276" - name: "monolysocardiolipin (2-16:1, 3-16:1, 4-18:1)" @@ -19940,7 +19940,7 @@ - formula: "C59H110O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3277" - name: "stearate" @@ -19948,11 +19948,11 @@ - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdca" - - chebi: "CHEBI:25629" - - kegg.compound: "C01530" - - metanetx.chemical: "MNXM236" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - id: "s_3278" - name: "monolysocardiolipin (2-18:1, 3-16:0, 4-16:1)" @@ -19960,7 +19960,7 @@ - formula: "C59H112O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3279" - name: "monolysocardiolipin (2-18:1, 3-16:1, 4-16:1)" @@ -19968,7 +19968,7 @@ - formula: "C59H110O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3280" - name: "monolysocardiolipin (2-18:1, 3-18:0, 4-16:1)" @@ -19976,7 +19976,7 @@ - formula: "C61H116O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3281" - name: "monolysocardiolipin (2-18:1, 3-18:1, 4-16:1)" @@ -19984,7 +19984,7 @@ - formula: "C61H114O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3282" - name: "monolysocardiolipin (2-18:1, 3-16:0, 4-18:1)" @@ -19992,7 +19992,7 @@ - formula: "C61H116O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3283" - name: "monolysocardiolipin (2-18:1, 3-16:1, 4-18:1)" @@ -20000,7 +20000,7 @@ - formula: "C61H114O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3284" - name: "monolysocardiolipin (1-16:0, 2-16:1, 4-16:1)" @@ -20008,7 +20008,7 @@ - formula: "C57H108O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3285" - name: "monolysocardiolipin (1-16:0, 2-16:1, 4-18:1)" @@ -20016,7 +20016,7 @@ - formula: "C59H112O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3286" - name: "monolysocardiolipin (1-16:1, 2-16:1, 4-16:1)" @@ -20024,7 +20024,7 @@ - formula: "C57H106O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3287" - name: "monolysocardiolipin (1-16:1, 2-16:1, 4-18:1)" @@ -20032,7 +20032,7 @@ - formula: "C59H110O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3288" - name: "monolysocardiolipin (1-18:0, 2-16:1, 4-16:1)" @@ -20040,7 +20040,7 @@ - formula: "C59H112O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3289" - name: "monolysocardiolipin (1-18:0, 2-16:1, 4-18:1)" @@ -20048,7 +20048,7 @@ - formula: "C61H116O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3290" - name: "monolysocardiolipin (1-18:1, 2-16:1, 4-16:1)" @@ -20056,7 +20056,7 @@ - formula: "C59H110O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3291" - name: "monolysocardiolipin (1-18:1, 2-16:1, 4-18:1)" @@ -20064,7 +20064,7 @@ - formula: "C61H114O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3292" - name: "monolysocardiolipin (1-16:0, 2-18:1, 4-16:1)" @@ -20072,7 +20072,7 @@ - formula: "C59H112O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3293" - name: "monolysocardiolipin (1-16:0, 2-18:1, 4-18:1)" @@ -20080,7 +20080,7 @@ - formula: "C61H116O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3294" - name: "monolysocardiolipin (1-16:1, 2-18:1, 4-16:1)" @@ -20088,7 +20088,7 @@ - formula: "C59H110O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3295" - name: "monolysocardiolipin (1-16:1, 2-18:1, 4-18:1)" @@ -20096,7 +20096,7 @@ - formula: "C61H114O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3296" - name: "phosphatidylcholine (1-16:0, 2-16:1)" @@ -20104,8 +20104,8 @@ - formula: "C40H78NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134592" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134592" + - sbo: "SBO:0000247" - !!omap - id: "s_3297" - name: "1-acylglycerophosphocholine (16:0)" @@ -20113,11 +20113,11 @@ - formula: "C24H50NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc160" - - chebi: "CHEBI:72998" - - kegg.compound: "C04102" - - metanetx.chemical: "MNXM32510" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc160" + - chebi: "CHEBI:72998" + - kegg.compound: "C04102" + - metanetx.chemical: "MNXM32510" + - sbo: "SBO:0000247" - !!omap - id: "s_3298" - name: "phosphatidylcholine (1-16:1, 2-16:1)" @@ -20125,10 +20125,10 @@ - formula: "C40H76NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pc161" - - chebi: "CHEBI:83717" - - metanetx.chemical: "MNXM69377" - - sbo: "SBO:0000247" + - bigg.metabolite: "pc161" + - chebi: "CHEBI:83717" + - metanetx.chemical: "MNXM69377" + - sbo: "SBO:0000247" - !!omap - id: "s_3299" - name: "1-acylglycerophosphocholine (16:1)" @@ -20136,10 +20136,10 @@ - formula: "C24H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc161" - - chebi: "CHEBI:73851" - - metanetx.chemical: "MNXM32519" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc161" + - chebi: "CHEBI:73851" + - metanetx.chemical: "MNXM32519" + - sbo: "SBO:0000247" - !!omap - id: "s_3300" - name: "phosphatidylcholine (1-18:0, 2-16:1)" @@ -20147,9 +20147,9 @@ - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:86097" - - metanetx.chemical: "MNXM69528" - - sbo: "SBO:0000247" + - chebi: "CHEBI:86097" + - metanetx.chemical: "MNXM69528" + - sbo: "SBO:0000247" - !!omap - id: "s_3301" - name: "1-acylglycerophosphocholine (18:0)" @@ -20157,10 +20157,10 @@ - formula: "C26H54NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc180" - - chebi: "CHEBI:73858" - - metanetx.chemical: "MNXM32545" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc180" + - chebi: "CHEBI:73858" + - metanetx.chemical: "MNXM32545" + - sbo: "SBO:0000247" - !!omap - id: "s_3302" - name: "phosphatidylcholine (1-18:1, 2-16:1)" @@ -20168,9 +20168,9 @@ - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:86100" - - metanetx.chemical: "MNXM69658" - - sbo: "SBO:0000247" + - chebi: "CHEBI:86100" + - metanetx.chemical: "MNXM69658" + - sbo: "SBO:0000247" - !!omap - id: "s_3303" - name: "1-acylglycerophosphocholine (18:1)" @@ -20178,11 +20178,11 @@ - formula: "C26H52NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc181" - - chebi: "CHEBI:28610" - - kegg.compound: "C03916" - - metanetx.chemical: "MNXM13872" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc181" + - chebi: "CHEBI:28610" + - kegg.compound: "C03916" + - metanetx.chemical: "MNXM13872" + - sbo: "SBO:0000247" - !!omap - id: "s_3304" - name: "phosphatidylcholine (1-16:0, 2-18:1)" @@ -20190,8 +20190,8 @@ - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134594" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134594" + - sbo: "SBO:0000247" - !!omap - id: "s_3305" - name: "phosphatidylcholine (1-16:1, 2-18:1)" @@ -20199,9 +20199,9 @@ - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:84811" - - metanetx.chemical: "MNXM69383" - - sbo: "SBO:0000247" + - chebi: "CHEBI:84811" + - metanetx.chemical: "MNXM69383" + - sbo: "SBO:0000247" - !!omap - id: "s_3306" - name: "phosphatidylcholine (1-18:0, 2-18:1)" @@ -20209,9 +20209,9 @@ - formula: "C44H86NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75034" - - metanetx.chemical: "MNXM32526" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75034" + - metanetx.chemical: "MNXM32526" + - sbo: "SBO:0000247" - !!omap - id: "s_3307" - name: "phosphatidylcholine (1-18:1, 2-18:1)" @@ -20219,9 +20219,9 @@ - formula: "C44H84NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:74669" - - metanetx.chemical: "MNXM8549" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74669" + - metanetx.chemical: "MNXM8549" + - sbo: "SBO:0000247" - !!omap - id: "s_3308" - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-16:1)" @@ -20229,7 +20229,7 @@ - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3309" - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-16:1)" @@ -20237,7 +20237,7 @@ - formula: "C77H142O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3310" - name: "cardiolipin (1-18:1, 2-18:1, 3-18:0, 4-16:1)" @@ -20245,7 +20245,7 @@ - formula: "C79H148O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3311" - name: "cardiolipin (1-18:1, 2-18:1, 3-18:1, 4-16:1)" @@ -20253,7 +20253,7 @@ - formula: "C79H146O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3312" - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-18:1)" @@ -20261,7 +20261,7 @@ - formula: "C79H148O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3313" - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-18:1)" @@ -20269,7 +20269,7 @@ - formula: "C79H146O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3314" - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-18:1)" @@ -20277,7 +20277,7 @@ - formula: "C77H144O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3315" - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-18:1)" @@ -20285,7 +20285,7 @@ - formula: "C77H142O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3316" - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-18:1)" @@ -20293,7 +20293,7 @@ - formula: "C79H148O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3317" - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-18:1)" @@ -20301,7 +20301,7 @@ - formula: "C79H146O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3318" - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-18:1)" @@ -20309,7 +20309,7 @@ - formula: "C79H148O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3319" - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-18:1)" @@ -20317,7 +20317,7 @@ - formula: "C79H146O17P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3320" - name: "palmitoleoyl-CoA(4-)" @@ -20325,11 +20325,11 @@ - formula: "C37H60N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "hdcoa" - - chebi: "CHEBI:61540" - - kegg.compound: "C21072" - - metanetx.chemical: "MNXM781" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdcoa" + - chebi: "CHEBI:61540" + - kegg.compound: "C21072" + - metanetx.chemical: "MNXM781" + - sbo: "SBO:0000247" - !!omap - id: "s_3321" - name: "coenzyme A" @@ -20337,11 +20337,11 @@ - formula: "C21H32N7O16P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "coa" - - chebi: "CHEBI:57287" - - kegg.compound: "C00010" - - metanetx.chemical: "MNXM12" - - sbo: "SBO:0000247" + - bigg.metabolite: "coa" + - chebi: "CHEBI:57287" + - kegg.compound: "C00010" + - metanetx.chemical: "MNXM12" + - sbo: "SBO:0000247" - !!omap - id: "s_3322" - name: "oleoyl-CoA" @@ -20349,11 +20349,11 @@ - formula: "C39H64N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ocdce9coa" - - chebi: "CHEBI:57387" - - kegg.compound: "C00510" - - metanetx.chemical: "MNXM686" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdce9coa" + - chebi: "CHEBI:57387" + - kegg.compound: "C00510" + - metanetx.chemical: "MNXM686" + - sbo: "SBO:0000247" - !!omap - id: "s_3323" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" @@ -20361,9 +20361,9 @@ - formula: "C41H77O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88396" - - metanetx.chemical: "MNXM75492" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88396" + - metanetx.chemical: "MNXM75492" + - sbo: "SBO:0000247" - !!omap - id: "s_3324" - name: "ADP" @@ -20371,11 +20371,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "adp" - - chebi: "CHEBI:456216" - - kegg.compound: "C00008" - - metanetx.chemical: "MNXM7" - - sbo: "SBO:0000247" + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - id: "s_3325" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" @@ -20383,7 +20383,7 @@ - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3326" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" @@ -20391,8 +20391,8 @@ - formula: "C41H75O13P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail161" + - sbo: "SBO:0000247" - !!omap - id: "s_3327" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" @@ -20400,8 +20400,8 @@ - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail4p161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail4p161" + - sbo: "SBO:0000247" - !!omap - id: "s_3328" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" @@ -20409,9 +20409,9 @@ - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88557" - - metanetx.chemical: "MNXM75665" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88557" + - metanetx.chemical: "MNXM75665" + - sbo: "SBO:0000247" - !!omap - id: "s_3329" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" @@ -20419,7 +20419,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3330" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" @@ -20427,8 +20427,8 @@ - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88626" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88626" + - sbo: "SBO:0000247" - !!omap - id: "s_3331" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" @@ -20436,7 +20436,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3332" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" @@ -20444,10 +20444,10 @@ - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:73215" - - kegg.compound: "C13888" - - metanetx.chemical: "MNXM75499" - - sbo: "SBO:0000247" + - chebi: "CHEBI:73215" + - kegg.compound: "C13888" + - metanetx.chemical: "MNXM75499" + - sbo: "SBO:0000247" - !!omap - id: "s_3333" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" @@ -20455,7 +20455,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3334" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" @@ -20463,8 +20463,8 @@ - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88562" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88562" + - sbo: "SBO:0000247" - !!omap - id: "s_3335" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" @@ -20472,7 +20472,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3336" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" @@ -20480,9 +20480,9 @@ - formula: "C45H85O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77346" - - metanetx.chemical: "MNXM75671" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77346" + - metanetx.chemical: "MNXM75671" + - sbo: "SBO:0000247" - !!omap - id: "s_3337" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" @@ -20490,8 +20490,8 @@ - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77277" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77277" + - sbo: "SBO:0000247" - !!omap - id: "s_3338" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" @@ -20499,8 +20499,8 @@ - formula: "C45H83O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88612" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88612" + - sbo: "SBO:0000247" - !!omap - id: "s_3339" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" @@ -20508,7 +20508,7 @@ - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3340" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" @@ -20516,9 +20516,9 @@ - formula: "C41H77O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88396" - - metanetx.chemical: "MNXM75492" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88396" + - metanetx.chemical: "MNXM75492" + - sbo: "SBO:0000247" - !!omap - id: "s_3341" - name: "ATP" @@ -20526,11 +20526,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "atp" - - chebi: "CHEBI:30616" - - kegg.compound: "C00002" - - metanetx.chemical: "MNXM3" - - sbo: "SBO:0000247" + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - id: "s_3342" - name: "ADP" @@ -20538,11 +20538,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "adp" - - chebi: "CHEBI:456216" - - kegg.compound: "C00008" - - metanetx.chemical: "MNXM7" - - sbo: "SBO:0000247" + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - id: "s_3343" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" @@ -20550,7 +20550,7 @@ - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3344" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" @@ -20558,8 +20558,8 @@ - formula: "C41H75O13P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail161" + - sbo: "SBO:0000247" - !!omap - id: "s_3345" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" @@ -20567,8 +20567,8 @@ - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail4p161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail4p161" + - sbo: "SBO:0000247" - !!omap - id: "s_3346" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" @@ -20576,9 +20576,9 @@ - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88557" - - metanetx.chemical: "MNXM75665" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88557" + - metanetx.chemical: "MNXM75665" + - sbo: "SBO:0000247" - !!omap - id: "s_3347" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" @@ -20586,7 +20586,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3348" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" @@ -20594,8 +20594,8 @@ - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88626" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88626" + - sbo: "SBO:0000247" - !!omap - id: "s_3349" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" @@ -20603,7 +20603,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3350" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" @@ -20611,10 +20611,10 @@ - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:73215" - - kegg.compound: "C13888" - - metanetx.chemical: "MNXM75499" - - sbo: "SBO:0000247" + - chebi: "CHEBI:73215" + - kegg.compound: "C13888" + - metanetx.chemical: "MNXM75499" + - sbo: "SBO:0000247" - !!omap - id: "s_3351" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" @@ -20622,7 +20622,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3352" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" @@ -20630,8 +20630,8 @@ - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88562" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88562" + - sbo: "SBO:0000247" - !!omap - id: "s_3353" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" @@ -20639,7 +20639,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3354" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" @@ -20647,9 +20647,9 @@ - formula: "C45H85O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77346" - - metanetx.chemical: "MNXM75671" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77346" + - metanetx.chemical: "MNXM75671" + - sbo: "SBO:0000247" - !!omap - id: "s_3355" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" @@ -20657,8 +20657,8 @@ - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77277" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77277" + - sbo: "SBO:0000247" - !!omap - id: "s_3356" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" @@ -20666,8 +20666,8 @@ - formula: "C45H83O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88612" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88612" + - sbo: "SBO:0000247" - !!omap - id: "s_3357" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" @@ -20675,7 +20675,7 @@ - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3358" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" @@ -20683,9 +20683,9 @@ - formula: "C41H77O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88396" - - metanetx.chemical: "MNXM75492" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88396" + - metanetx.chemical: "MNXM75492" + - sbo: "SBO:0000247" - !!omap - id: "s_3359" - name: "ATP" @@ -20693,11 +20693,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "atp" - - chebi: "CHEBI:30616" - - kegg.compound: "C00002" - - metanetx.chemical: "MNXM3" - - sbo: "SBO:0000247" + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - id: "s_3360" - name: "ADP" @@ -20705,11 +20705,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "adp" - - chebi: "CHEBI:456216" - - kegg.compound: "C00008" - - metanetx.chemical: "MNXM7" - - sbo: "SBO:0000247" + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - id: "s_3361" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" @@ -20717,7 +20717,7 @@ - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3362" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" @@ -20725,8 +20725,8 @@ - formula: "C41H75O13P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail161" + - sbo: "SBO:0000247" - !!omap - id: "s_3363" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" @@ -20734,8 +20734,8 @@ - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail4p161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail4p161" + - sbo: "SBO:0000247" - !!omap - id: "s_3364" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" @@ -20743,9 +20743,9 @@ - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88557" - - metanetx.chemical: "MNXM75665" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88557" + - metanetx.chemical: "MNXM75665" + - sbo: "SBO:0000247" - !!omap - id: "s_3365" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" @@ -20753,7 +20753,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3366" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" @@ -20761,8 +20761,8 @@ - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88626" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88626" + - sbo: "SBO:0000247" - !!omap - id: "s_3367" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" @@ -20770,7 +20770,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3368" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" @@ -20778,10 +20778,10 @@ - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:73215" - - kegg.compound: "C13888" - - metanetx.chemical: "MNXM75499" - - sbo: "SBO:0000247" + - chebi: "CHEBI:73215" + - kegg.compound: "C13888" + - metanetx.chemical: "MNXM75499" + - sbo: "SBO:0000247" - !!omap - id: "s_3369" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" @@ -20789,7 +20789,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3370" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" @@ -20797,8 +20797,8 @@ - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88562" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88562" + - sbo: "SBO:0000247" - !!omap - id: "s_3371" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" @@ -20806,7 +20806,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3372" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" @@ -20814,9 +20814,9 @@ - formula: "C45H85O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77346" - - metanetx.chemical: "MNXM75671" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77346" + - metanetx.chemical: "MNXM75671" + - sbo: "SBO:0000247" - !!omap - id: "s_3373" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" @@ -20824,8 +20824,8 @@ - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77277" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77277" + - sbo: "SBO:0000247" - !!omap - id: "s_3374" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" @@ -20833,8 +20833,8 @@ - formula: "C45H83O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88612" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88612" + - sbo: "SBO:0000247" - !!omap - id: "s_3375" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" @@ -20842,7 +20842,7 @@ - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3376" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" @@ -20850,9 +20850,9 @@ - formula: "C41H77O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88396" - - metanetx.chemical: "MNXM75492" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88396" + - metanetx.chemical: "MNXM75492" + - sbo: "SBO:0000247" - !!omap - id: "s_3377" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" @@ -20860,7 +20860,7 @@ - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3378" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" @@ -20868,8 +20868,8 @@ - formula: "C41H75O13P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail161" + - sbo: "SBO:0000247" - !!omap - id: "s_3379" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" @@ -20877,8 +20877,8 @@ - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail4p161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail4p161" + - sbo: "SBO:0000247" - !!omap - id: "s_3380" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" @@ -20886,9 +20886,9 @@ - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88557" - - metanetx.chemical: "MNXM75665" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88557" + - metanetx.chemical: "MNXM75665" + - sbo: "SBO:0000247" - !!omap - id: "s_3381" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" @@ -20896,7 +20896,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3382" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" @@ -20904,8 +20904,8 @@ - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88626" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88626" + - sbo: "SBO:0000247" - !!omap - id: "s_3383" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" @@ -20913,7 +20913,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3384" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" @@ -20921,10 +20921,10 @@ - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:73215" - - kegg.compound: "C13888" - - metanetx.chemical: "MNXM75499" - - sbo: "SBO:0000247" + - chebi: "CHEBI:73215" + - kegg.compound: "C13888" + - metanetx.chemical: "MNXM75499" + - sbo: "SBO:0000247" - !!omap - id: "s_3385" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" @@ -20932,7 +20932,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3386" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" @@ -20940,8 +20940,8 @@ - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88562" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88562" + - sbo: "SBO:0000247" - !!omap - id: "s_3387" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" @@ -20949,7 +20949,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3388" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" @@ -20957,9 +20957,9 @@ - formula: "C45H85O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77346" - - metanetx.chemical: "MNXM75671" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77346" + - metanetx.chemical: "MNXM75671" + - sbo: "SBO:0000247" - !!omap - id: "s_3389" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" @@ -20967,8 +20967,8 @@ - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77277" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77277" + - sbo: "SBO:0000247" - !!omap - id: "s_3390" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" @@ -20976,8 +20976,8 @@ - formula: "C45H83O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88612" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88612" + - sbo: "SBO:0000247" - !!omap - id: "s_3391" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" @@ -20985,7 +20985,7 @@ - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3392" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" @@ -20993,7 +20993,7 @@ - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3393" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" @@ -21001,8 +21001,8 @@ - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail3p161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail3p161" + - sbo: "SBO:0000247" - !!omap - id: "s_3394" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" @@ -21010,7 +21010,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3395" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" @@ -21018,7 +21018,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3396" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" @@ -21026,7 +21026,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3397" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" @@ -21034,7 +21034,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3398" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" @@ -21042,8 +21042,8 @@ - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77347" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77347" + - sbo: "SBO:0000247" - !!omap - id: "s_3399" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" @@ -21051,8 +21051,8 @@ - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77344" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77344" + - sbo: "SBO:0000247" - !!omap - id: "s_3400" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" @@ -21060,7 +21060,7 @@ - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3401" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" @@ -21068,7 +21068,7 @@ - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3402" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" @@ -21076,7 +21076,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3403" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" @@ -21084,7 +21084,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3404" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" @@ -21092,7 +21092,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3405" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" @@ -21100,7 +21100,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3406" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" @@ -21108,8 +21108,8 @@ - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77279" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77279" + - sbo: "SBO:0000247" - !!omap - id: "s_3407" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" @@ -21117,7 +21117,7 @@ - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3408" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" @@ -21125,7 +21125,7 @@ - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3409" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" @@ -21133,7 +21133,7 @@ - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3410" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" @@ -21141,7 +21141,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3411" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" @@ -21149,7 +21149,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3412" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" @@ -21157,7 +21157,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3413" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" @@ -21165,7 +21165,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3414" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" @@ -21173,8 +21173,8 @@ - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77279" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77279" + - sbo: "SBO:0000247" - !!omap - id: "s_3415" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" @@ -21182,7 +21182,7 @@ - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3416" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1)" @@ -21190,7 +21190,7 @@ - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3417" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1)" @@ -21198,7 +21198,7 @@ - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3418" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1)" @@ -21206,7 +21206,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3419" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1)" @@ -21214,7 +21214,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3420" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1)" @@ -21222,7 +21222,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3421" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1)" @@ -21230,7 +21230,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3422" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1)" @@ -21238,7 +21238,7 @@ - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3423" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1)" @@ -21246,7 +21246,7 @@ - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3424" - name: "1-acylglycerophosphoethanolamine (16:0)" @@ -21254,9 +21254,9 @@ - formula: "C21H44NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpe160" - - chebi: "CHEBI:90452" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpe160" + - chebi: "CHEBI:90452" + - sbo: "SBO:0000247" - !!omap - id: "s_3425" - name: "1-acylglycerophosphoethanolamine (16:1)" @@ -21264,8 +21264,8 @@ - formula: "C21H42NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpe161" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpe161" + - sbo: "SBO:0000247" - !!omap - id: "s_3426" - name: "1-acylglycerophosphoethanolamine (18:0)" @@ -21273,9 +21273,9 @@ - formula: "C23H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpe180" - - chebi: "CHEBI:64576" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpe180" + - chebi: "CHEBI:64576" + - sbo: "SBO:0000247" - !!omap - id: "s_3427" - name: "1-acylglycerophosphoethanolamine (18:1)" @@ -21283,9 +21283,9 @@ - formula: "C23H46NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpe181" - - chebi: "CHEBI:64575" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpe181" + - chebi: "CHEBI:64575" + - sbo: "SBO:0000247" - !!omap - id: "s_3428" - name: "1-acylglycerophosphocholine (16:0)" @@ -21293,11 +21293,11 @@ - formula: "C24H50NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc160" - - chebi: "CHEBI:72998" - - kegg.compound: "C04102" - - metanetx.chemical: "MNXM32510" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc160" + - chebi: "CHEBI:72998" + - kegg.compound: "C04102" + - metanetx.chemical: "MNXM32510" + - sbo: "SBO:0000247" - !!omap - id: "s_3429" - name: "1-acylglycerophosphocholine (16:1)" @@ -21305,10 +21305,10 @@ - formula: "C24H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc161" - - chebi: "CHEBI:73851" - - metanetx.chemical: "MNXM32519" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc161" + - chebi: "CHEBI:73851" + - metanetx.chemical: "MNXM32519" + - sbo: "SBO:0000247" - !!omap - id: "s_3430" - name: "1-acylglycerophosphocholine (18:0)" @@ -21316,10 +21316,10 @@ - formula: "C26H54NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc180" - - chebi: "CHEBI:73858" - - metanetx.chemical: "MNXM32545" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc180" + - chebi: "CHEBI:73858" + - metanetx.chemical: "MNXM32545" + - sbo: "SBO:0000247" - !!omap - id: "s_3431" - name: "1-acylglycerophosphocholine (18:1)" @@ -21327,11 +21327,11 @@ - formula: "C26H52NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc181" - - chebi: "CHEBI:28610" - - kegg.compound: "C03916" - - metanetx.chemical: "MNXM13872" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc181" + - chebi: "CHEBI:28610" + - kegg.compound: "C03916" + - metanetx.chemical: "MNXM13872" + - sbo: "SBO:0000247" - !!omap - id: "s_3432" - name: "episterol" @@ -21339,11 +21339,11 @@ - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "epist" - - chebi: "CHEBI:23929" - - kegg.compound: "C15777" - - metanetx.chemical: "MNXM52365" - - sbo: "SBO:0000247" + - bigg.metabolite: "epist" + - chebi: "CHEBI:23929" + - kegg.compound: "C15777" + - metanetx.chemical: "MNXM52365" + - sbo: "SBO:0000247" - !!omap - id: "s_3433" - name: "episteryl oleate" @@ -21351,9 +21351,9 @@ - formula: "C46H78O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52375" - - metanetx.chemical: "MNXM52367" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52375" + - metanetx.chemical: "MNXM52367" + - sbo: "SBO:0000247" - !!omap - id: "s_3434" - name: "episteryl palmitoleate" @@ -21361,9 +21361,9 @@ - formula: "C44H74O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52376" - - metanetx.chemical: "MNXM52369" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52376" + - metanetx.chemical: "MNXM52369" + - sbo: "SBO:0000247" - !!omap - id: "s_3435" - name: "fecosterol" @@ -21371,11 +21371,11 @@ - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "fecost" - - chebi: "CHEBI:17038" - - kegg.compound: "C04525" - - metanetx.chemical: "MNXM1741" - - sbo: "SBO:0000247" + - bigg.metabolite: "fecost" + - chebi: "CHEBI:17038" + - kegg.compound: "C04525" + - metanetx.chemical: "MNXM1741" + - sbo: "SBO:0000247" - !!omap - id: "s_3436" - name: "fecosteryl oleate" @@ -21383,9 +21383,9 @@ - formula: "C46H78O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52379" - - metanetx.chemical: "MNXM53170" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52379" + - metanetx.chemical: "MNXM53170" + - sbo: "SBO:0000247" - !!omap - id: "s_3437" - name: "fecosteryl palmitoleate" @@ -21393,9 +21393,9 @@ - formula: "C44H74O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52380" - - metanetx.chemical: "MNXM53171" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52380" + - metanetx.chemical: "MNXM53171" + - sbo: "SBO:0000247" - !!omap - id: "s_3438" - name: "lanosterol" @@ -21403,11 +21403,11 @@ - formula: "C30H50O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "lanost" - - chebi: "CHEBI:16521" - - kegg.compound: "C01724" - - metanetx.chemical: "MNXM482" - - sbo: "SBO:0000247" + - bigg.metabolite: "lanost" + - chebi: "CHEBI:16521" + - kegg.compound: "C01724" + - metanetx.chemical: "MNXM482" + - sbo: "SBO:0000247" - !!omap - id: "s_3439" - name: "lanosteryl oleate" @@ -21415,9 +21415,9 @@ - formula: "C48H82O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52382" - - metanetx.chemical: "MNXM59726" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52382" + - metanetx.chemical: "MNXM59726" + - sbo: "SBO:0000247" - !!omap - id: "s_3440" - name: "lanosteryl palmitoleate" @@ -21425,9 +21425,9 @@ - formula: "C46H78O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52383" - - metanetx.chemical: "MNXM59727" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52383" + - metanetx.chemical: "MNXM59727" + - sbo: "SBO:0000247" - !!omap - id: "s_3441" - name: "ergosterol" @@ -21435,11 +21435,11 @@ - formula: "C28H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ergst" - - chebi: "CHEBI:16933" - - kegg.compound: "C01694" - - metanetx.chemical: "MNXM922" - - sbo: "SBO:0000247" + - bigg.metabolite: "ergst" + - chebi: "CHEBI:16933" + - kegg.compound: "C01694" + - metanetx.chemical: "MNXM922" + - sbo: "SBO:0000247" - !!omap - id: "s_3442" - name: "ergosteryl oleate" @@ -21447,9 +21447,9 @@ - formula: "C46H76O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52377" - - metanetx.chemical: "MNXM52466" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52377" + - metanetx.chemical: "MNXM52466" + - sbo: "SBO:0000247" - !!omap - id: "s_3443" - name: "ergosteryl palmitoleate" @@ -21457,9 +21457,9 @@ - formula: "C44H72O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52378" - - metanetx.chemical: "MNXM52467" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52378" + - metanetx.chemical: "MNXM52467" + - sbo: "SBO:0000247" - !!omap - id: "s_3444" - name: "zymosterol" @@ -21467,11 +21467,11 @@ - formula: "C27H44O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "zymst" - - chebi: "CHEBI:18252" - - kegg.compound: "C05437" - - metanetx.chemical: "MNXM574" - - sbo: "SBO:0000247" + - bigg.metabolite: "zymst" + - chebi: "CHEBI:18252" + - kegg.compound: "C05437" + - metanetx.chemical: "MNXM574" + - sbo: "SBO:0000247" - !!omap - id: "s_3445" - name: "zymosteryl oleate" @@ -21479,9 +21479,9 @@ - formula: "C45H76O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52384" - - metanetx.chemical: "MNXM89472" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52384" + - metanetx.chemical: "MNXM89472" + - sbo: "SBO:0000247" - !!omap - id: "s_3446" - name: "zymosteryl palmitoleate" @@ -21489,9 +21489,9 @@ - formula: "C43H72O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52385" - - metanetx.chemical: "MNXM89473" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52385" + - metanetx.chemical: "MNXM89473" + - sbo: "SBO:0000247" - !!omap - id: "s_3447" - name: "sn-glycero-3-phosphocholine" @@ -21499,11 +21499,11 @@ - formula: "C8H20NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "g3pc" - - chebi: "CHEBI:16870" - - kegg.compound: "C00670" - - metanetx.chemical: "MNXM367" - - sbo: "SBO:0000247" + - bigg.metabolite: "g3pc" + - chebi: "CHEBI:16870" + - kegg.compound: "C00670" + - metanetx.chemical: "MNXM367" + - sbo: "SBO:0000247" - !!omap - id: "s_3448" - name: "phosphatidylcholine (1-16:0, 2-16:1)" @@ -21511,8 +21511,8 @@ - formula: "C40H78NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134592" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134592" + - sbo: "SBO:0000247" - !!omap - id: "s_3449" - name: "H2O" @@ -21520,11 +21520,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_3450" - name: "1-acylglycerophosphocholine (16:0)" @@ -21532,11 +21532,11 @@ - formula: "C24H50NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc160" - - chebi: "CHEBI:72998" - - kegg.compound: "C04102" - - metanetx.chemical: "MNXM32510" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc160" + - chebi: "CHEBI:72998" + - kegg.compound: "C04102" + - metanetx.chemical: "MNXM32510" + - sbo: "SBO:0000247" - !!omap - id: "s_3451" - name: "palmitoleate" @@ -21544,11 +21544,11 @@ - formula: "C16H29O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdcea" - - chebi: "CHEBI:32372" - - kegg.compound: "C08362" - - metanetx.chemical: "MNXM162245" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdcea" + - chebi: "CHEBI:32372" + - kegg.compound: "C08362" + - metanetx.chemical: "MNXM162245" + - sbo: "SBO:0000247" - !!omap - id: "s_3452" - name: "phosphatidylcholine (1-16:1, 2-16:1)" @@ -21556,10 +21556,10 @@ - formula: "C40H76NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pc161" - - chebi: "CHEBI:83717" - - metanetx.chemical: "MNXM69377" - - sbo: "SBO:0000247" + - bigg.metabolite: "pc161" + - chebi: "CHEBI:83717" + - metanetx.chemical: "MNXM69377" + - sbo: "SBO:0000247" - !!omap - id: "s_3453" - name: "1-acylglycerophosphocholine (16:1)" @@ -21567,10 +21567,10 @@ - formula: "C24H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc161" - - chebi: "CHEBI:73851" - - metanetx.chemical: "MNXM32519" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc161" + - chebi: "CHEBI:73851" + - metanetx.chemical: "MNXM32519" + - sbo: "SBO:0000247" - !!omap - id: "s_3454" - name: "phosphatidylcholine (1-18:0, 2-16:1)" @@ -21578,9 +21578,9 @@ - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:86097" - - metanetx.chemical: "MNXM69528" - - sbo: "SBO:0000247" + - chebi: "CHEBI:86097" + - metanetx.chemical: "MNXM69528" + - sbo: "SBO:0000247" - !!omap - id: "s_3455" - name: "1-acylglycerophosphocholine (18:0)" @@ -21588,10 +21588,10 @@ - formula: "C26H54NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc180" - - chebi: "CHEBI:73858" - - metanetx.chemical: "MNXM32545" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc180" + - chebi: "CHEBI:73858" + - metanetx.chemical: "MNXM32545" + - sbo: "SBO:0000247" - !!omap - id: "s_3456" - name: "phosphatidylcholine (1-18:1, 2-16:1)" @@ -21599,9 +21599,9 @@ - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:86100" - - metanetx.chemical: "MNXM69658" - - sbo: "SBO:0000247" + - chebi: "CHEBI:86100" + - metanetx.chemical: "MNXM69658" + - sbo: "SBO:0000247" - !!omap - id: "s_3457" - name: "1-acylglycerophosphocholine (18:1)" @@ -21609,11 +21609,11 @@ - formula: "C26H52NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc181" - - chebi: "CHEBI:28610" - - kegg.compound: "C03916" - - metanetx.chemical: "MNXM13872" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc181" + - chebi: "CHEBI:28610" + - kegg.compound: "C03916" + - metanetx.chemical: "MNXM13872" + - sbo: "SBO:0000247" - !!omap - id: "s_3458" - name: "phosphatidylcholine (1-16:0, 2-18:1)" @@ -21621,8 +21621,8 @@ - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134594" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134594" + - sbo: "SBO:0000247" - !!omap - id: "s_3459" - name: "oleate" @@ -21630,11 +21630,11 @@ - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdcea" - - chebi: "CHEBI:30823" - - kegg.compound: "C00712" - - metanetx.chemical: "MNXM306" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - id: "s_3460" - name: "phosphatidylcholine (1-16:1, 2-18:1)" @@ -21642,9 +21642,9 @@ - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:84811" - - metanetx.chemical: "MNXM69383" - - sbo: "SBO:0000247" + - chebi: "CHEBI:84811" + - metanetx.chemical: "MNXM69383" + - sbo: "SBO:0000247" - !!omap - id: "s_3461" - name: "phosphatidylcholine (1-18:0, 2-18:1)" @@ -21652,9 +21652,9 @@ - formula: "C44H86NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75034" - - metanetx.chemical: "MNXM32526" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75034" + - metanetx.chemical: "MNXM32526" + - sbo: "SBO:0000247" - !!omap - id: "s_3462" - name: "phosphatidylcholine (1-18:1, 2-18:1)" @@ -21662,9 +21662,9 @@ - formula: "C44H84NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:74669" - - metanetx.chemical: "MNXM8549" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74669" + - metanetx.chemical: "MNXM8549" + - sbo: "SBO:0000247" - !!omap - id: "s_3463" - name: "palmitate" @@ -21672,11 +21672,11 @@ - formula: "C16H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hdca" - - chebi: "CHEBI:7896" - - kegg.compound: "C00249" - - metanetx.chemical: "MNXM108" - - sbo: "SBO:0000247" + - bigg.metabolite: "hdca" + - chebi: "CHEBI:7896" + - kegg.compound: "C00249" + - metanetx.chemical: "MNXM108" + - sbo: "SBO:0000247" - !!omap - id: "s_3464" - name: "stearate" @@ -21684,11 +21684,11 @@ - formula: "C18H35O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdca" - - chebi: "CHEBI:25629" - - kegg.compound: "C01530" - - metanetx.chemical: "MNXM236" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdca" + - chebi: "CHEBI:25629" + - kegg.compound: "C01530" + - metanetx.chemical: "MNXM236" + - sbo: "SBO:0000247" - !!omap - id: "s_3465" - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" @@ -21696,8 +21696,8 @@ - formula: "C37H72NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136147" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136147" + - sbo: "SBO:0000247" - !!omap - id: "s_3466" - name: "1-acylglycerophosphoethanolamine (16:0)" @@ -21705,9 +21705,9 @@ - formula: "C21H44NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpe160" - - chebi: "CHEBI:90452" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpe160" + - chebi: "CHEBI:90452" + - sbo: "SBO:0000247" - !!omap - id: "s_3467" - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" @@ -21715,9 +21715,9 @@ - formula: "C37H70NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pe161" - - chebi: "CHEBI:138792" - - sbo: "SBO:0000247" + - bigg.metabolite: "pe161" + - chebi: "CHEBI:138792" + - sbo: "SBO:0000247" - !!omap - id: "s_3468" - name: "1-acylglycerophosphoethanolamine (16:1)" @@ -21725,8 +21725,8 @@ - formula: "C21H42NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpe161" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpe161" + - sbo: "SBO:0000247" - !!omap - id: "s_3469" - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" @@ -21734,8 +21734,8 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136155" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136155" + - sbo: "SBO:0000247" - !!omap - id: "s_3470" - name: "1-acylglycerophosphoethanolamine (18:0)" @@ -21743,9 +21743,9 @@ - formula: "C23H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpe180" - - chebi: "CHEBI:64576" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpe180" + - chebi: "CHEBI:64576" + - sbo: "SBO:0000247" - !!omap - id: "s_3471" - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" @@ -21753,9 +21753,9 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:82837" - - metanetx.chemical: "MNXM71684" - - sbo: "SBO:0000247" + - chebi: "CHEBI:82837" + - metanetx.chemical: "MNXM71684" + - sbo: "SBO:0000247" - !!omap - id: "s_3472" - name: "1-acylglycerophosphoethanolamine (18:1)" @@ -21763,9 +21763,9 @@ - formula: "C23H46NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpe181" - - chebi: "CHEBI:64575" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpe181" + - chebi: "CHEBI:64575" + - sbo: "SBO:0000247" - !!omap - id: "s_3473" - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" @@ -21773,8 +21773,8 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136148" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136148" + - sbo: "SBO:0000247" - !!omap - id: "s_3474" - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" @@ -21782,8 +21782,8 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90464" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90464" + - sbo: "SBO:0000247" - !!omap - id: "s_3475" - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" @@ -21791,8 +21791,8 @@ - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136162" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136162" + - sbo: "SBO:0000247" - !!omap - id: "s_3476" - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" @@ -21800,8 +21800,8 @@ - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136170" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136170" + - sbo: "SBO:0000247" - !!omap - id: "s_3477" - name: "sn-glycero-3-phosphoethanolamine" @@ -21809,11 +21809,11 @@ - formula: "C5H14NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "g3pe" - - chebi: "CHEBI:16929" - - kegg.compound: "C01233" - - metanetx.chemical: "MNXM368" - - sbo: "SBO:0000247" + - bigg.metabolite: "g3pe" + - chebi: "CHEBI:16929" + - kegg.compound: "C01233" + - metanetx.chemical: "MNXM368" + - sbo: "SBO:0000247" - !!omap - id: "s_3478" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1)" @@ -21821,9 +21821,9 @@ - formula: "C38H72NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89824" - - metanetx.chemical: "MNXM78605" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89824" + - metanetx.chemical: "MNXM78605" + - sbo: "SBO:0000247" - !!omap - id: "s_3479" - name: "1-acylglycerophosphoserine (16:0)" @@ -21831,8 +21831,8 @@ - formula: "C22H44NO9P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM78597" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM78597" + - sbo: "SBO:0000247" - !!omap - id: "s_3480" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1)" @@ -21840,8 +21840,8 @@ - formula: "C38H70NO10P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM78637" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM78637" + - sbo: "SBO:0000247" - !!omap - id: "s_3481" - name: "1-acylglycerophosphoserine (16:1)" @@ -21849,8 +21849,8 @@ - formula: "C22H42NO9P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM78629" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM78629" + - sbo: "SBO:0000247" - !!omap - id: "s_3482" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1)" @@ -21858,9 +21858,9 @@ - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90036" - - metanetx.chemical: "MNXM78765" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90036" + - metanetx.chemical: "MNXM78765" + - sbo: "SBO:0000247" - !!omap - id: "s_3483" - name: "1-acylglycerophosphoserine (18:0)" @@ -21868,9 +21868,9 @@ - formula: "C24H48NO9P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:85403" - - metanetx.chemical: "MNXM78757" - - sbo: "SBO:0000247" + - chebi: "CHEBI:85403" + - metanetx.chemical: "MNXM78757" + - sbo: "SBO:0000247" - !!omap - id: "s_3484" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1)" @@ -21878,9 +21878,9 @@ - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75101" - - metanetx.chemical: "MNXM78797" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75101" + - metanetx.chemical: "MNXM78797" + - sbo: "SBO:0000247" - !!omap - id: "s_3485" - name: "1-acylglycerophosphoserine (18:1)" @@ -21888,9 +21888,9 @@ - formula: "C24H46NO9P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52649" - - metanetx.chemical: "MNXM32944" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52649" + - metanetx.chemical: "MNXM32944" + - sbo: "SBO:0000247" - !!omap - id: "s_3486" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1)" @@ -21898,10 +21898,10 @@ - formula: "C40H76NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:34086" - - kegg.compound: "C13880" - - metanetx.chemical: "MNXM32501" - - sbo: "SBO:0000247" + - chebi: "CHEBI:34086" + - kegg.compound: "C13880" + - metanetx.chemical: "MNXM32501" + - sbo: "SBO:0000247" - !!omap - id: "s_3487" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1)" @@ -21909,9 +21909,9 @@ - formula: "C40H74NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90032" - - metanetx.chemical: "MNXM78642" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90032" + - metanetx.chemical: "MNXM78642" + - sbo: "SBO:0000247" - !!omap - id: "s_3488" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1)" @@ -21919,9 +21919,9 @@ - formula: "C42H80NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:79096" - - metanetx.chemical: "MNXM32529" - - sbo: "SBO:0000247" + - chebi: "CHEBI:79096" + - metanetx.chemical: "MNXM32529" + - sbo: "SBO:0000247" - !!omap - id: "s_3489" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1)" @@ -21929,9 +21929,9 @@ - formula: "C42H78NO10P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:60568" - - metanetx.chemical: "MNXM32173" - - sbo: "SBO:0000247" + - chebi: "CHEBI:60568" + - metanetx.chemical: "MNXM32173" + - sbo: "SBO:0000247" - !!omap - id: "s_3490" - name: "sn-glycero-3-phosphoserine" @@ -21939,9 +21939,9 @@ - formula: "C6H14NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "g3ps" - - chebi: "CHEBI:64945" - - sbo: "SBO:0000247" + - bigg.metabolite: "g3ps" + - chebi: "CHEBI:64945" + - sbo: "SBO:0000247" - !!omap - id: "s_3491" - name: "1-acylglycerophosphoinositol (16:0)" @@ -21949,9 +21949,9 @@ - formula: "C25H49O12P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pailpalm_hs" - - chebi: "CHEBI:73218" - - sbo: "SBO:0000247" + - bigg.metabolite: "pailpalm_hs" + - chebi: "CHEBI:73218" + - sbo: "SBO:0000247" - !!omap - id: "s_3492" - name: "1-acylglycerophosphoinositol (16:1)" @@ -21959,8 +21959,8 @@ - formula: "C25H47O12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:138108" - - sbo: "SBO:0000247" + - chebi: "CHEBI:138108" + - sbo: "SBO:0000247" - !!omap - id: "s_3493" - name: "1-acylglycerophosphoinositol (18:0)" @@ -21968,9 +21968,9 @@ - formula: "C27H53O12P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pailste_hs" - - chebi: "CHEBI:83054" - - sbo: "SBO:0000247" + - bigg.metabolite: "pailste_hs" + - chebi: "CHEBI:83054" + - sbo: "SBO:0000247" - !!omap - id: "s_3494" - name: "1-acylglycerophosphoinositol (18:1)" @@ -21978,8 +21978,8 @@ - formula: "C27H51O12P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:82753" - - sbo: "SBO:0000247" + - chebi: "CHEBI:82753" + - sbo: "SBO:0000247" - !!omap - id: "s_3495" - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol" @@ -21987,11 +21987,11 @@ - formula: "C9H18O11P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "g3pi" - - chebi: "CHEBI:58444" - - kegg.compound: "C01225" - - metanetx.chemical: "MNXM1517" - - sbo: "SBO:0000247" + - bigg.metabolite: "g3pi" + - chebi: "CHEBI:58444" + - kegg.compound: "C01225" + - metanetx.chemical: "MNXM1517" + - sbo: "SBO:0000247" - !!omap - id: "s_3496" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" @@ -21999,7 +21999,7 @@ - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3497" - name: "diglyceride (1-16:0, 2-16:1)" @@ -22007,9 +22007,9 @@ - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:84394" - - metanetx.chemical: "MNXM49375" - - sbo: "SBO:0000247" + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - id: "s_3498" - name: "1D-myo-inositol 1,4,5-trisphosphate" @@ -22017,11 +22017,11 @@ - formula: "C6H9O15P3" - charge: -6 - annotation: !!omap - - bigg.metabolite: "mi145p" - - chebi: "CHEBI:203600" - - kegg.compound: "C01245" - - metanetx.chemical: "MNXM200" - - sbo: "SBO:0000247" + - bigg.metabolite: "mi145p" + - chebi: "CHEBI:203600" + - kegg.compound: "C01245" + - metanetx.chemical: "MNXM200" + - sbo: "SBO:0000247" - !!omap - id: "s_3499" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" @@ -22029,7 +22029,7 @@ - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3500" - name: "diglyceride (1-16:1, 2-16:1)" @@ -22037,10 +22037,10 @@ - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr161" - - chebi: "CHEBI:84417" - - metanetx.chemical: "MNXM176611" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - id: "s_3501" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" @@ -22048,7 +22048,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3502" - name: "diglyceride (1-18:0, 2-16:1)" @@ -22056,9 +22056,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88527" - - metanetx.chemical: "MNXM49511" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - id: "s_3503" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" @@ -22066,7 +22066,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3504" - name: "diglyceride (1-18:1, 2-16:1)" @@ -22074,9 +22074,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89229" - - metanetx.chemical: "MNXM49575" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - id: "s_3505" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" @@ -22084,7 +22084,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3506" - name: "diglyceride (1-16:0, 2-18:1)" @@ -22092,9 +22092,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88454" - - metanetx.chemical: "MNXM49380" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - id: "s_3507" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" @@ -22102,7 +22102,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3508" - name: "diglyceride (1-16:1, 2-18:1)" @@ -22110,9 +22110,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88500" - - metanetx.chemical: "MNXM49417" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - id: "s_3509" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" @@ -22120,8 +22120,8 @@ - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77279" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77279" + - sbo: "SBO:0000247" - !!omap - id: "s_3510" - name: "diglyceride (1-18:0, 2-18:1)" @@ -22129,9 +22129,9 @@ - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75468" - - metanetx.chemical: "MNXM49514" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - id: "s_3511" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" @@ -22139,7 +22139,7 @@ - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3512" - name: "diglyceride (1-18:1, 2-18:1)" @@ -22147,10 +22147,10 @@ - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr181" - - chebi: "CHEBI:52333" - - metanetx.chemical: "MNXM9533" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - id: "s_3513" - name: "diglyceride (1-16:0, 2-16:1)" @@ -22158,9 +22158,9 @@ - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:84394" - - metanetx.chemical: "MNXM49375" - - sbo: "SBO:0000247" + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - id: "s_3514" - name: "diglyceride (1-16:1, 2-16:1)" @@ -22168,10 +22168,10 @@ - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr161" - - chebi: "CHEBI:84417" - - metanetx.chemical: "MNXM176611" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - id: "s_3515" - name: "diglyceride (1-18:0, 2-16:1)" @@ -22179,9 +22179,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88527" - - metanetx.chemical: "MNXM49511" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - id: "s_3516" - name: "diglyceride (1-18:1, 2-16:1)" @@ -22189,9 +22189,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89229" - - metanetx.chemical: "MNXM49575" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - id: "s_3517" - name: "diglyceride (1-16:0, 2-18:1)" @@ -22199,9 +22199,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88454" - - metanetx.chemical: "MNXM49380" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - id: "s_3518" - name: "diglyceride (1-16:1, 2-18:1)" @@ -22209,9 +22209,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88500" - - metanetx.chemical: "MNXM49417" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - id: "s_3519" - name: "diglyceride (1-18:0, 2-18:1)" @@ -22219,9 +22219,9 @@ - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75468" - - metanetx.chemical: "MNXM49514" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - id: "s_3520" - name: "diglyceride (1-18:1, 2-18:1)" @@ -22229,10 +22229,10 @@ - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr181" - - chebi: "CHEBI:52333" - - metanetx.chemical: "MNXM9533" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - id: "s_3521" - name: "diglyceride (1-16:0, 2-16:1)" @@ -22240,9 +22240,9 @@ - formula: "C35H66O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:84394" - - metanetx.chemical: "MNXM49375" - - sbo: "SBO:0000247" + - chebi: "CHEBI:84394" + - metanetx.chemical: "MNXM49375" + - sbo: "SBO:0000247" - !!omap - id: "s_3522" - name: "diglyceride (1-16:1, 2-16:1)" @@ -22250,10 +22250,10 @@ - formula: "C35H64O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr161" - - chebi: "CHEBI:84417" - - metanetx.chemical: "MNXM176611" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr161" + - chebi: "CHEBI:84417" + - metanetx.chemical: "MNXM176611" + - sbo: "SBO:0000247" - !!omap - id: "s_3523" - name: "diglyceride (1-18:0, 2-16:1)" @@ -22261,9 +22261,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88527" - - metanetx.chemical: "MNXM49511" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88527" + - metanetx.chemical: "MNXM49511" + - sbo: "SBO:0000247" - !!omap - id: "s_3524" - name: "diglyceride (1-18:1, 2-16:1)" @@ -22271,9 +22271,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:89229" - - metanetx.chemical: "MNXM49575" - - sbo: "SBO:0000247" + - chebi: "CHEBI:89229" + - metanetx.chemical: "MNXM49575" + - sbo: "SBO:0000247" - !!omap - id: "s_3525" - name: "diglyceride (1-16:0, 2-18:1)" @@ -22281,9 +22281,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88454" - - metanetx.chemical: "MNXM49380" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - id: "s_3526" - name: "diglyceride (1-16:1, 2-18:1)" @@ -22291,9 +22291,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88500" - - metanetx.chemical: "MNXM49417" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - id: "s_3527" - name: "phosphatidate (1-16:0, 2-16:1)" @@ -22301,9 +22301,9 @@ - formula: "C35H67O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:73998" - - metanetx.chemical: "MNXM66470" - - sbo: "SBO:0000247" + - chebi: "CHEBI:73998" + - metanetx.chemical: "MNXM66470" + - sbo: "SBO:0000247" - !!omap - id: "s_3528" - name: "phosphatidate (1-16:1, 2-16:1)" @@ -22311,10 +22311,10 @@ - formula: "C35H65O8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pa161" - - chebi: "CHEBI:75071" - - metanetx.chemical: "MNXM66504" - - sbo: "SBO:0000247" + - bigg.metabolite: "pa161" + - chebi: "CHEBI:75071" + - metanetx.chemical: "MNXM66504" + - sbo: "SBO:0000247" - !!omap - id: "s_3529" - name: "phosphatidate (1-18:0, 2-16:1)" @@ -22322,9 +22322,9 @@ - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75073" - - metanetx.chemical: "MNXM66631" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75073" + - metanetx.chemical: "MNXM66631" + - sbo: "SBO:0000247" - !!omap - id: "s_3530" - name: "phosphatidate (1-18:1, 2-16:1)" @@ -22332,9 +22332,9 @@ - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75074" - - metanetx.chemical: "MNXM66663" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75074" + - metanetx.chemical: "MNXM66663" + - sbo: "SBO:0000247" - !!omap - id: "s_3531" - name: "phosphatidate (1-16:0, 2-18:1)" @@ -22342,10 +22342,10 @@ - formula: "C37H71O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:64844" - - kegg.compound: "C13889" - - metanetx.chemical: "MNXM66476" - - sbo: "SBO:0000247" + - chebi: "CHEBI:64844" + - kegg.compound: "C13889" + - metanetx.chemical: "MNXM66476" + - sbo: "SBO:0000247" - !!omap - id: "s_3532" - name: "phosphatidate (1-16:1, 2-18:1)" @@ -22353,8 +22353,8 @@ - formula: "C37H69O8P" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM66509" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM66509" + - sbo: "SBO:0000247" - !!omap - id: "s_3533" - name: "phosphatidate (1-18:0, 2-18:1)" @@ -22362,9 +22362,9 @@ - formula: "C39H75O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:74847" - - metanetx.chemical: "MNXM66635" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74847" + - metanetx.chemical: "MNXM66635" + - sbo: "SBO:0000247" - !!omap - id: "s_3534" - name: "phosphatidate (1-18:1, 2-18:1)" @@ -22372,9 +22372,9 @@ - formula: "C39H73O8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:83775" - - metanetx.chemical: "MNXM51075" - - sbo: "SBO:0000247" + - chebi: "CHEBI:83775" + - metanetx.chemical: "MNXM51075" + - sbo: "SBO:0000247" - !!omap - id: "s_3535" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" @@ -22382,7 +22382,7 @@ - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3536" - name: "phosphate" @@ -22390,11 +22390,11 @@ - formula: "HO4P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pi" - - chebi: "CHEBI:43474" - - kegg.compound: "C00009" - - metanetx.chemical: "MNXM9" - - sbo: "SBO:0000247" + - bigg.metabolite: "pi" + - chebi: "CHEBI:43474" + - kegg.compound: "C00009" + - metanetx.chemical: "MNXM9" + - sbo: "SBO:0000247" - !!omap - id: "s_3537" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" @@ -22402,8 +22402,8 @@ - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail3p161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail3p161" + - sbo: "SBO:0000247" - !!omap - id: "s_3538" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" @@ -22411,7 +22411,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3539" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" @@ -22419,7 +22419,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3540" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" @@ -22427,7 +22427,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3541" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" @@ -22435,7 +22435,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3542" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" @@ -22443,8 +22443,8 @@ - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77347" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77347" + - sbo: "SBO:0000247" - !!omap - id: "s_3543" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" @@ -22452,8 +22452,8 @@ - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77344" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77344" + - sbo: "SBO:0000247" - !!omap - id: "s_3544" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" @@ -22461,7 +22461,7 @@ - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3545" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1)" @@ -22469,9 +22469,9 @@ - formula: "C41H77O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88396" - - metanetx.chemical: "MNXM75492" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88396" + - metanetx.chemical: "MNXM75492" + - sbo: "SBO:0000247" - !!omap - id: "s_3546" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" @@ -22479,8 +22479,8 @@ - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail3p161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail3p161" + - sbo: "SBO:0000247" - !!omap - id: "s_3547" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1)" @@ -22488,8 +22488,8 @@ - formula: "C41H75O13P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail161" + - sbo: "SBO:0000247" - !!omap - id: "s_3548" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" @@ -22497,7 +22497,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3549" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1)" @@ -22505,9 +22505,9 @@ - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88557" - - metanetx.chemical: "MNXM75665" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88557" + - metanetx.chemical: "MNXM75665" + - sbo: "SBO:0000247" - !!omap - id: "s_3550" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" @@ -22515,7 +22515,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3551" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1)" @@ -22523,8 +22523,8 @@ - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88626" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88626" + - sbo: "SBO:0000247" - !!omap - id: "s_3552" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" @@ -22532,7 +22532,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3553" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1)" @@ -22540,10 +22540,10 @@ - formula: "C43H81O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:73215" - - kegg.compound: "C13888" - - metanetx.chemical: "MNXM75499" - - sbo: "SBO:0000247" + - chebi: "CHEBI:73215" + - kegg.compound: "C13888" + - metanetx.chemical: "MNXM75499" + - sbo: "SBO:0000247" - !!omap - id: "s_3554" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" @@ -22551,7 +22551,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3555" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1)" @@ -22559,8 +22559,8 @@ - formula: "C43H79O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88562" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88562" + - sbo: "SBO:0000247" - !!omap - id: "s_3556" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" @@ -22568,8 +22568,8 @@ - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77347" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77347" + - sbo: "SBO:0000247" - !!omap - id: "s_3557" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1)" @@ -22577,9 +22577,9 @@ - formula: "C45H85O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77346" - - metanetx.chemical: "MNXM75671" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77346" + - metanetx.chemical: "MNXM75671" + - sbo: "SBO:0000247" - !!omap - id: "s_3558" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" @@ -22587,8 +22587,8 @@ - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77344" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77344" + - sbo: "SBO:0000247" - !!omap - id: "s_3559" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1)" @@ -22596,8 +22596,8 @@ - formula: "C45H83O13P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88612" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88612" + - sbo: "SBO:0000247" - !!omap - id: "s_3560" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" @@ -22605,7 +22605,7 @@ - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3561" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" @@ -22613,8 +22613,8 @@ - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail3p161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail3p161" + - sbo: "SBO:0000247" - !!omap - id: "s_3562" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" @@ -22622,7 +22622,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3563" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" @@ -22630,7 +22630,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3564" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" @@ -22638,7 +22638,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3565" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" @@ -22646,7 +22646,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3566" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" @@ -22654,8 +22654,8 @@ - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77347" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77347" + - sbo: "SBO:0000247" - !!omap - id: "s_3567" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" @@ -22663,8 +22663,8 @@ - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77344" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77344" + - sbo: "SBO:0000247" - !!omap - id: "s_3568" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1)" @@ -22672,7 +22672,7 @@ - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3569" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1)" @@ -22680,8 +22680,8 @@ - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail3p161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail3p161" + - sbo: "SBO:0000247" - !!omap - id: "s_3570" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1)" @@ -22689,7 +22689,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3571" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1)" @@ -22697,7 +22697,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3572" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1)" @@ -22705,7 +22705,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3573" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1)" @@ -22713,7 +22713,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3574" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1)" @@ -22721,8 +22721,8 @@ - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77347" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77347" + - sbo: "SBO:0000247" - !!omap - id: "s_3575" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1)" @@ -22730,8 +22730,8 @@ - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77344" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77344" + - sbo: "SBO:0000247" - !!omap - id: "s_3576" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" @@ -22739,7 +22739,7 @@ - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3577" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" @@ -22747,8 +22747,8 @@ - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail4p161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail4p161" + - sbo: "SBO:0000247" - !!omap - id: "s_3578" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" @@ -22756,7 +22756,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3579" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" @@ -22764,7 +22764,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3580" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" @@ -22772,7 +22772,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3581" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" @@ -22780,7 +22780,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3582" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" @@ -22788,8 +22788,8 @@ - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77277" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77277" + - sbo: "SBO:0000247" - !!omap - id: "s_3583" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" @@ -22797,7 +22797,7 @@ - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3584" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1)" @@ -22805,7 +22805,7 @@ - formula: "C41H78O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3585" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1)" @@ -22813,8 +22813,8 @@ - formula: "C41H76O16P2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pail4p161" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail4p161" + - sbo: "SBO:0000247" - !!omap - id: "s_3586" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1)" @@ -22822,7 +22822,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3587" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1)" @@ -22830,7 +22830,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3588" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1)" @@ -22838,7 +22838,7 @@ - formula: "C43H82O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3589" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1)" @@ -22846,7 +22846,7 @@ - formula: "C43H80O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3590" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1)" @@ -22854,8 +22854,8 @@ - formula: "C45H86O16P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77277" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77277" + - sbo: "SBO:0000247" - !!omap - id: "s_3591" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1)" @@ -22863,7 +22863,7 @@ - formula: "C45H84O16P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3592" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1)" @@ -22871,7 +22871,7 @@ - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3593" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1)" @@ -22879,7 +22879,7 @@ - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3594" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1)" @@ -22887,7 +22887,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3595" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1)" @@ -22895,7 +22895,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3596" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1)" @@ -22903,7 +22903,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3597" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1)" @@ -22911,7 +22911,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3598" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1)" @@ -22919,7 +22919,7 @@ - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3599" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1)" @@ -22927,7 +22927,7 @@ - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3600" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1)" @@ -22935,7 +22935,7 @@ - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3601" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1)" @@ -22943,7 +22943,7 @@ - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3602" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1)" @@ -22951,7 +22951,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3603" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1)" @@ -22959,7 +22959,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3604" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1)" @@ -22967,7 +22967,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3605" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1)" @@ -22975,7 +22975,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3606" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1)" @@ -22983,7 +22983,7 @@ - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3607" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1)" @@ -22991,7 +22991,7 @@ - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3608" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1)" @@ -22999,7 +22999,7 @@ - formula: "C41H79O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3609" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1)" @@ -23007,7 +23007,7 @@ - formula: "C41H77O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3610" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1)" @@ -23015,7 +23015,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3611" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1)" @@ -23023,7 +23023,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3612" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1)" @@ -23031,7 +23031,7 @@ - formula: "C43H83O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3613" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1)" @@ -23039,7 +23039,7 @@ - formula: "C43H81O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3614" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1)" @@ -23047,8 +23047,8 @@ - formula: "C45H87O19P3" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:77279" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77279" + - sbo: "SBO:0000247" - !!omap - id: "s_3615" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1)" @@ -23056,7 +23056,7 @@ - formula: "C45H85O19P3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3616" - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-16:1)" @@ -23064,7 +23064,7 @@ - formula: "C35H68O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3617" - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-16:1)" @@ -23072,7 +23072,7 @@ - formula: "C35H66O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3618" - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-16:1)" @@ -23080,7 +23080,7 @@ - formula: "C37H72O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3619" - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-16:1)" @@ -23088,7 +23088,7 @@ - formula: "C37H70O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3620" - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-18:1)" @@ -23096,9 +23096,9 @@ - formula: "C37H72O11P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:34087" - - kegg.compound: "C13890" - - sbo: "SBO:0000247" + - chebi: "CHEBI:34087" + - kegg.compound: "C13890" + - sbo: "SBO:0000247" - !!omap - id: "s_3621" - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-18:1)" @@ -23106,7 +23106,7 @@ - formula: "C37H70O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3622" - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-18:1)" @@ -23114,7 +23114,7 @@ - formula: "C39H76O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3623" - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-18:1)" @@ -23122,7 +23122,7 @@ - formula: "C39H74O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3624" - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-16:1)" @@ -23130,7 +23130,7 @@ - formula: "C35H68O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3625" - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-16:1)" @@ -23138,7 +23138,7 @@ - formula: "C35H66O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3626" - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-16:1)" @@ -23146,7 +23146,7 @@ - formula: "C37H72O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3627" - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-16:1)" @@ -23154,7 +23154,7 @@ - formula: "C37H70O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3628" - name: "1,2-diacylglycerol 3-diphosphate (1-16:0, 2-18:1)" @@ -23162,9 +23162,9 @@ - formula: "C37H72O11P2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:34087" - - kegg.compound: "C13890" - - sbo: "SBO:0000247" + - chebi: "CHEBI:34087" + - kegg.compound: "C13890" + - sbo: "SBO:0000247" - !!omap - id: "s_3629" - name: "1,2-diacylglycerol 3-diphosphate (1-16:1, 2-18:1)" @@ -23172,7 +23172,7 @@ - formula: "C37H70O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3630" - name: "1,2-diacylglycerol 3-diphosphate (1-18:0, 2-18:1)" @@ -23180,7 +23180,7 @@ - formula: "C39H76O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3631" - name: "1,2-diacylglycerol 3-diphosphate (1-18:1, 2-18:1)" @@ -23188,7 +23188,7 @@ - formula: "C39H74O11P2" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3632" - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" @@ -23196,11 +23196,11 @@ - formula: "C19H39O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1hdecg3p" - - chebi: "CHEBI:15799" - - kegg.compound: "C04036" - - metanetx.chemical: "MNXM2455" - - sbo: "SBO:0000247" + - bigg.metabolite: "1hdecg3p" + - chebi: "CHEBI:15799" + - kegg.compound: "C04036" + - metanetx.chemical: "MNXM2455" + - sbo: "SBO:0000247" - !!omap - id: "s_3633" - name: "1-monoglyceride (16:0)" @@ -23208,9 +23208,9 @@ - formula: "C19H38O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mag160" - - chebi: "CHEBI:134127" - - sbo: "SBO:0000247" + - bigg.metabolite: "mag160" + - chebi: "CHEBI:134127" + - sbo: "SBO:0000247" - !!omap - id: "s_3634" - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" @@ -23218,9 +23218,9 @@ - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75070" - - metanetx.chemical: "MNXM66496" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75070" + - metanetx.chemical: "MNXM66496" + - sbo: "SBO:0000247" - !!omap - id: "s_3635" - name: "1-monoglyceride (16:1)" @@ -23228,8 +23228,8 @@ - formula: "C19H36O4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134128" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134128" + - sbo: "SBO:0000247" - !!omap - id: "s_3636" - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" @@ -23237,10 +23237,10 @@ - formula: "C21H43O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1odecg3p" - - chebi: "CHEBI:74850" - - metanetx.chemical: "MNXM32950" - - sbo: "SBO:0000247" + - bigg.metabolite: "1odecg3p" + - chebi: "CHEBI:74850" + - metanetx.chemical: "MNXM32950" + - sbo: "SBO:0000247" - !!omap - id: "s_3637" - name: "1-monoglyceride (18:0)" @@ -23248,9 +23248,9 @@ - formula: "C21H42O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mag180" - - chebi: "CHEBI:134129" - - sbo: "SBO:0000247" + - bigg.metabolite: "mag180" + - chebi: "CHEBI:134129" + - sbo: "SBO:0000247" - !!omap - id: "s_3638" - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" @@ -23258,9 +23258,9 @@ - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62837" - - metanetx.chemical: "MNXM32960" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62837" + - metanetx.chemical: "MNXM32960" + - sbo: "SBO:0000247" - !!omap - id: "s_3639" - name: "1-monoglyceride (18:1)" @@ -23268,9 +23268,9 @@ - formula: "C21H40O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "magole_hs" - - chebi: "CHEBI:134130" - - sbo: "SBO:0000247" + - bigg.metabolite: "magole_hs" + - chebi: "CHEBI:134130" + - sbo: "SBO:0000247" - !!omap - id: "s_3640" - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" @@ -23278,11 +23278,11 @@ - formula: "C19H39O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1hdecg3p" - - chebi: "CHEBI:15799" - - kegg.compound: "C04036" - - metanetx.chemical: "MNXM2455" - - sbo: "SBO:0000247" + - bigg.metabolite: "1hdecg3p" + - chebi: "CHEBI:15799" + - kegg.compound: "C04036" + - metanetx.chemical: "MNXM2455" + - sbo: "SBO:0000247" - !!omap - id: "s_3641" - name: "1-monoglyceride (16:0)" @@ -23290,9 +23290,9 @@ - formula: "C19H38O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mag160" - - chebi: "CHEBI:134127" - - sbo: "SBO:0000247" + - bigg.metabolite: "mag160" + - chebi: "CHEBI:134127" + - sbo: "SBO:0000247" - !!omap - id: "s_3642" - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" @@ -23300,9 +23300,9 @@ - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75070" - - metanetx.chemical: "MNXM66496" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75070" + - metanetx.chemical: "MNXM66496" + - sbo: "SBO:0000247" - !!omap - id: "s_3643" - name: "1-monoglyceride (16:1)" @@ -23310,8 +23310,8 @@ - formula: "C19H36O4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134128" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134128" + - sbo: "SBO:0000247" - !!omap - id: "s_3644" - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" @@ -23319,10 +23319,10 @@ - formula: "C21H43O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1odecg3p" - - chebi: "CHEBI:74850" - - metanetx.chemical: "MNXM32950" - - sbo: "SBO:0000247" + - bigg.metabolite: "1odecg3p" + - chebi: "CHEBI:74850" + - metanetx.chemical: "MNXM32950" + - sbo: "SBO:0000247" - !!omap - id: "s_3645" - name: "1-monoglyceride (18:0)" @@ -23330,9 +23330,9 @@ - formula: "C21H42O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mag180" - - chebi: "CHEBI:134129" - - sbo: "SBO:0000247" + - bigg.metabolite: "mag180" + - chebi: "CHEBI:134129" + - sbo: "SBO:0000247" - !!omap - id: "s_3646" - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" @@ -23340,9 +23340,9 @@ - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62837" - - metanetx.chemical: "MNXM32960" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62837" + - metanetx.chemical: "MNXM32960" + - sbo: "SBO:0000247" - !!omap - id: "s_3647" - name: "1-monoglyceride (18:1)" @@ -23350,9 +23350,9 @@ - formula: "C21H40O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "magole_hs" - - chebi: "CHEBI:134130" - - sbo: "SBO:0000247" + - bigg.metabolite: "magole_hs" + - chebi: "CHEBI:134130" + - sbo: "SBO:0000247" - !!omap - id: "s_3648" - name: "1-acyl-sn-glycerol 3-phosphate (16:0)" @@ -23360,11 +23360,11 @@ - formula: "C19H39O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1hdecg3p" - - chebi: "CHEBI:15799" - - kegg.compound: "C04036" - - metanetx.chemical: "MNXM2455" - - sbo: "SBO:0000247" + - bigg.metabolite: "1hdecg3p" + - chebi: "CHEBI:15799" + - kegg.compound: "C04036" + - metanetx.chemical: "MNXM2455" + - sbo: "SBO:0000247" - !!omap - id: "s_3649" - name: "1-monoglyceride (16:0)" @@ -23372,9 +23372,9 @@ - formula: "C19H38O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mag160" - - chebi: "CHEBI:134127" - - sbo: "SBO:0000247" + - bigg.metabolite: "mag160" + - chebi: "CHEBI:134127" + - sbo: "SBO:0000247" - !!omap - id: "s_3650" - name: "1-acyl-sn-glycerol 3-phosphate (16:1)" @@ -23382,9 +23382,9 @@ - formula: "C19H37O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75070" - - metanetx.chemical: "MNXM66496" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75070" + - metanetx.chemical: "MNXM66496" + - sbo: "SBO:0000247" - !!omap - id: "s_3651" - name: "1-monoglyceride (16:1)" @@ -23392,8 +23392,8 @@ - formula: "C19H36O4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134128" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134128" + - sbo: "SBO:0000247" - !!omap - id: "s_3652" - name: "1-acyl-sn-glycerol 3-phosphate (18:0)" @@ -23401,10 +23401,10 @@ - formula: "C21H43O7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1odecg3p" - - chebi: "CHEBI:74850" - - metanetx.chemical: "MNXM32950" - - sbo: "SBO:0000247" + - bigg.metabolite: "1odecg3p" + - chebi: "CHEBI:74850" + - metanetx.chemical: "MNXM32950" + - sbo: "SBO:0000247" - !!omap - id: "s_3653" - name: "1-monoglyceride (18:0)" @@ -23412,9 +23412,9 @@ - formula: "C21H42O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mag180" - - chebi: "CHEBI:134129" - - sbo: "SBO:0000247" + - bigg.metabolite: "mag180" + - chebi: "CHEBI:134129" + - sbo: "SBO:0000247" - !!omap - id: "s_3654" - name: "1-acyl-sn-glycerol 3-phosphate (18:1)" @@ -23422,9 +23422,9 @@ - formula: "C21H41O7P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:62837" - - metanetx.chemical: "MNXM32960" - - sbo: "SBO:0000247" + - chebi: "CHEBI:62837" + - metanetx.chemical: "MNXM32960" + - sbo: "SBO:0000247" - !!omap - id: "s_3655" - name: "1-monoglyceride (18:1)" @@ -23432,9 +23432,9 @@ - formula: "C21H40O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "magole_hs" - - chebi: "CHEBI:134130" - - sbo: "SBO:0000247" + - bigg.metabolite: "magole_hs" + - chebi: "CHEBI:134130" + - sbo: "SBO:0000247" - !!omap - id: "s_3656" - name: "ergosteryl palmitoleate" @@ -23442,9 +23442,9 @@ - formula: "C44H72O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52378" - - metanetx.chemical: "MNXM52467" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52378" + - metanetx.chemical: "MNXM52467" + - sbo: "SBO:0000247" - !!omap - id: "s_3657" - name: "H2O" @@ -23452,11 +23452,11 @@ - formula: "H2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "h2o" - - chebi: "CHEBI:15377" - - kegg.compound: "C00001" - - metanetx.chemical: "MNXM2" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2o" + - chebi: "CHEBI:15377" + - kegg.compound: "C00001" + - metanetx.chemical: "MNXM2" + - sbo: "SBO:0000247" - !!omap - id: "s_3658" - name: "ergosteryl oleate" @@ -23464,9 +23464,9 @@ - formula: "C46H76O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52377" - - metanetx.chemical: "MNXM52466" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52377" + - metanetx.chemical: "MNXM52466" + - sbo: "SBO:0000247" - !!omap - id: "s_3659" - name: "episteryl palmitoleate" @@ -23474,9 +23474,9 @@ - formula: "C44H74O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52376" - - metanetx.chemical: "MNXM52369" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52376" + - metanetx.chemical: "MNXM52369" + - sbo: "SBO:0000247" - !!omap - id: "s_3660" - name: "episterol" @@ -23484,11 +23484,11 @@ - formula: "C28H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "epist" - - chebi: "CHEBI:23929" - - kegg.compound: "C15777" - - metanetx.chemical: "MNXM52365" - - sbo: "SBO:0000247" + - bigg.metabolite: "epist" + - chebi: "CHEBI:23929" + - kegg.compound: "C15777" + - metanetx.chemical: "MNXM52365" + - sbo: "SBO:0000247" - !!omap - id: "s_3661" - name: "episteryl oleate" @@ -23496,9 +23496,9 @@ - formula: "C46H78O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52375" - - metanetx.chemical: "MNXM52367" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52375" + - metanetx.chemical: "MNXM52367" + - sbo: "SBO:0000247" - !!omap - id: "s_3662" - name: "fecosteryl palmitoleate" @@ -23506,9 +23506,9 @@ - formula: "C44H74O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52380" - - metanetx.chemical: "MNXM53171" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52380" + - metanetx.chemical: "MNXM53171" + - sbo: "SBO:0000247" - !!omap - id: "s_3663" - name: "fecosteryl oleate" @@ -23516,9 +23516,9 @@ - formula: "C46H78O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52379" - - metanetx.chemical: "MNXM53170" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52379" + - metanetx.chemical: "MNXM53170" + - sbo: "SBO:0000247" - !!omap - id: "s_3664" - name: "lanosteryl palmitoleate" @@ -23526,9 +23526,9 @@ - formula: "C46H78O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52383" - - metanetx.chemical: "MNXM59727" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52383" + - metanetx.chemical: "MNXM59727" + - sbo: "SBO:0000247" - !!omap - id: "s_3665" - name: "lanosterol" @@ -23536,11 +23536,11 @@ - formula: "C30H50O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "lanost" - - chebi: "CHEBI:16521" - - kegg.compound: "C01724" - - metanetx.chemical: "MNXM482" - - sbo: "SBO:0000247" + - bigg.metabolite: "lanost" + - chebi: "CHEBI:16521" + - kegg.compound: "C01724" + - metanetx.chemical: "MNXM482" + - sbo: "SBO:0000247" - !!omap - id: "s_3666" - name: "lanosteryl oleate" @@ -23548,9 +23548,9 @@ - formula: "C48H82O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52382" - - metanetx.chemical: "MNXM59726" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52382" + - metanetx.chemical: "MNXM59726" + - sbo: "SBO:0000247" - !!omap - id: "s_3667" - name: "zymosteryl palmitoleate" @@ -23558,9 +23558,9 @@ - formula: "C43H72O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52385" - - metanetx.chemical: "MNXM89473" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52385" + - metanetx.chemical: "MNXM89473" + - sbo: "SBO:0000247" - !!omap - id: "s_3668" - name: "zymosteryl oleate" @@ -23568,9 +23568,9 @@ - formula: "C45H76O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52384" - - metanetx.chemical: "MNXM89472" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52384" + - metanetx.chemical: "MNXM89472" + - sbo: "SBO:0000247" - !!omap - id: "s_3669" - name: "zymosteryl palmitoleate" @@ -23578,9 +23578,9 @@ - formula: "C43H72O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52385" - - metanetx.chemical: "MNXM89473" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52385" + - metanetx.chemical: "MNXM89473" + - sbo: "SBO:0000247" - !!omap - id: "s_3670" - name: "zymosteryl oleate" @@ -23588,9 +23588,9 @@ - formula: "C45H76O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:52384" - - metanetx.chemical: "MNXM89472" - - sbo: "SBO:0000247" + - chebi: "CHEBI:52384" + - metanetx.chemical: "MNXM89472" + - sbo: "SBO:0000247" - !!omap - id: "s_3671" - name: "1-monoglyceride (16:0)" @@ -23598,9 +23598,9 @@ - formula: "C19H38O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mag160" - - chebi: "CHEBI:134127" - - sbo: "SBO:0000247" + - bigg.metabolite: "mag160" + - chebi: "CHEBI:134127" + - sbo: "SBO:0000247" - !!omap - id: "s_3672" - name: "1-monoglyceride (16:1)" @@ -23608,8 +23608,8 @@ - formula: "C19H36O4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134128" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134128" + - sbo: "SBO:0000247" - !!omap - id: "s_3673" - name: "1-monoglyceride (18:0)" @@ -23617,9 +23617,9 @@ - formula: "C21H42O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mag180" - - chebi: "CHEBI:134129" - - sbo: "SBO:0000247" + - bigg.metabolite: "mag180" + - chebi: "CHEBI:134129" + - sbo: "SBO:0000247" - !!omap - id: "s_3674" - name: "1-monoglyceride (18:1)" @@ -23627,9 +23627,9 @@ - formula: "C21H40O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "magole_hs" - - chebi: "CHEBI:134130" - - sbo: "SBO:0000247" + - bigg.metabolite: "magole_hs" + - chebi: "CHEBI:134130" + - sbo: "SBO:0000247" - !!omap - id: "s_3675" - name: "diglyceride (1-16:0, 2-18:1)" @@ -23637,9 +23637,9 @@ - formula: "C37H70O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88454" - - metanetx.chemical: "MNXM49380" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88454" + - metanetx.chemical: "MNXM49380" + - sbo: "SBO:0000247" - !!omap - id: "s_3676" - name: "1-monoglyceride (16:0)" @@ -23647,9 +23647,9 @@ - formula: "C19H38O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mag160" - - chebi: "CHEBI:134127" - - sbo: "SBO:0000247" + - bigg.metabolite: "mag160" + - chebi: "CHEBI:134127" + - sbo: "SBO:0000247" - !!omap - id: "s_3677" - name: "oleate" @@ -23657,11 +23657,11 @@ - formula: "C18H33O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ocdcea" - - chebi: "CHEBI:30823" - - kegg.compound: "C00712" - - metanetx.chemical: "MNXM306" - - sbo: "SBO:0000247" + - bigg.metabolite: "ocdcea" + - chebi: "CHEBI:30823" + - kegg.compound: "C00712" + - metanetx.chemical: "MNXM306" + - sbo: "SBO:0000247" - !!omap - id: "s_3678" - name: "diglyceride (1-16:1, 2-18:1)" @@ -23669,9 +23669,9 @@ - formula: "C37H68O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88500" - - metanetx.chemical: "MNXM49417" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88500" + - metanetx.chemical: "MNXM49417" + - sbo: "SBO:0000247" - !!omap - id: "s_3679" - name: "1-monoglyceride (16:1)" @@ -23679,8 +23679,8 @@ - formula: "C19H36O4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134128" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134128" + - sbo: "SBO:0000247" - !!omap - id: "s_3680" - name: "diglyceride (1-18:0, 2-18:1)" @@ -23688,9 +23688,9 @@ - formula: "C39H74O5" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75468" - - metanetx.chemical: "MNXM49514" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75468" + - metanetx.chemical: "MNXM49514" + - sbo: "SBO:0000247" - !!omap - id: "s_3681" - name: "1-monoglyceride (18:0)" @@ -23698,9 +23698,9 @@ - formula: "C21H42O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mag180" - - chebi: "CHEBI:134129" - - sbo: "SBO:0000247" + - bigg.metabolite: "mag180" + - chebi: "CHEBI:134129" + - sbo: "SBO:0000247" - !!omap - id: "s_3682" - name: "diglyceride (1-18:1, 2-18:1)" @@ -23708,10 +23708,10 @@ - formula: "C39H72O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "12dgr181" - - chebi: "CHEBI:52333" - - metanetx.chemical: "MNXM9533" - - sbo: "SBO:0000247" + - bigg.metabolite: "12dgr181" + - chebi: "CHEBI:52333" + - metanetx.chemical: "MNXM9533" + - sbo: "SBO:0000247" - !!omap - id: "s_3683" - name: "1-monoglyceride (18:1)" @@ -23719,9 +23719,9 @@ - formula: "C21H40O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "magole_hs" - - chebi: "CHEBI:134130" - - sbo: "SBO:0000247" + - bigg.metabolite: "magole_hs" + - chebi: "CHEBI:134130" + - sbo: "SBO:0000247" - !!omap - id: "s_3684" - name: "glycerol" @@ -23729,11 +23729,11 @@ - formula: "C3H8O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glyc" - - chebi: "CHEBI:17754" - - kegg.compound: "C00116" - - metanetx.chemical: "MNXM89612" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc" + - chebi: "CHEBI:17754" + - kegg.compound: "C00116" + - metanetx.chemical: "MNXM89612" + - sbo: "SBO:0000247" - !!omap - id: "s_3685" - name: "1-acylglycerophosphoethanolamine (16:0)" @@ -23741,9 +23741,9 @@ - formula: "C21H44NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpe160" - - chebi: "CHEBI:90452" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpe160" + - chebi: "CHEBI:90452" + - sbo: "SBO:0000247" - !!omap - id: "s_3686" - name: "phosphatidylethanolamine (1-16:0, 2-18:1)" @@ -23751,8 +23751,8 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136148" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136148" + - sbo: "SBO:0000247" - !!omap - id: "s_3687" - name: "1-acylglycerophosphoethanolamine (16:1)" @@ -23760,8 +23760,8 @@ - formula: "C21H42NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpe161" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpe161" + - sbo: "SBO:0000247" - !!omap - id: "s_3688" - name: "phosphatidylethanolamine (1-16:1, 2-18:1)" @@ -23769,8 +23769,8 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:90464" - - sbo: "SBO:0000247" + - chebi: "CHEBI:90464" + - sbo: "SBO:0000247" - !!omap - id: "s_3689" - name: "1-acylglycerophosphoethanolamine (18:0)" @@ -23778,9 +23778,9 @@ - formula: "C23H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpe180" - - chebi: "CHEBI:64576" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpe180" + - chebi: "CHEBI:64576" + - sbo: "SBO:0000247" - !!omap - id: "s_3690" - name: "phosphatidylethanolamine (1-18:0, 2-18:1)" @@ -23788,8 +23788,8 @@ - formula: "C41H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136162" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136162" + - sbo: "SBO:0000247" - !!omap - id: "s_3691" - name: "1-acylglycerophosphoethanolamine (18:1)" @@ -23797,9 +23797,9 @@ - formula: "C23H46NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpe181" - - chebi: "CHEBI:64575" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpe181" + - chebi: "CHEBI:64575" + - sbo: "SBO:0000247" - !!omap - id: "s_3692" - name: "phosphatidylethanolamine (1-18:1, 2-18:1)" @@ -23807,8 +23807,8 @@ - formula: "C41H78NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136170" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136170" + - sbo: "SBO:0000247" - !!omap - id: "s_3693" - name: "phosphatidylcholine (1-16:0, 2-16:1)" @@ -23816,8 +23816,8 @@ - formula: "C40H78NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134592" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134592" + - sbo: "SBO:0000247" - !!omap - id: "s_3694" - name: "1-acylglycerophosphocholine (16:0)" @@ -23825,11 +23825,11 @@ - formula: "C24H50NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc160" - - chebi: "CHEBI:72998" - - kegg.compound: "C04102" - - metanetx.chemical: "MNXM32510" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc160" + - chebi: "CHEBI:72998" + - kegg.compound: "C04102" + - metanetx.chemical: "MNXM32510" + - sbo: "SBO:0000247" - !!omap - id: "s_3695" - name: "phosphatidylcholine (1-16:1, 2-16:1)" @@ -23837,10 +23837,10 @@ - formula: "C40H76NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pc161" - - chebi: "CHEBI:83717" - - metanetx.chemical: "MNXM69377" - - sbo: "SBO:0000247" + - bigg.metabolite: "pc161" + - chebi: "CHEBI:83717" + - metanetx.chemical: "MNXM69377" + - sbo: "SBO:0000247" - !!omap - id: "s_3696" - name: "1-acylglycerophosphocholine (16:1)" @@ -23848,10 +23848,10 @@ - formula: "C24H48NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc161" - - chebi: "CHEBI:73851" - - metanetx.chemical: "MNXM32519" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc161" + - chebi: "CHEBI:73851" + - metanetx.chemical: "MNXM32519" + - sbo: "SBO:0000247" - !!omap - id: "s_3697" - name: "phosphatidylcholine (1-18:0, 2-16:1)" @@ -23859,9 +23859,9 @@ - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:86097" - - metanetx.chemical: "MNXM69528" - - sbo: "SBO:0000247" + - chebi: "CHEBI:86097" + - metanetx.chemical: "MNXM69528" + - sbo: "SBO:0000247" - !!omap - id: "s_3698" - name: "1-acylglycerophosphocholine (18:0)" @@ -23869,10 +23869,10 @@ - formula: "C26H54NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc180" - - chebi: "CHEBI:73858" - - metanetx.chemical: "MNXM32545" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc180" + - chebi: "CHEBI:73858" + - metanetx.chemical: "MNXM32545" + - sbo: "SBO:0000247" - !!omap - id: "s_3699" - name: "phosphatidylcholine (1-18:1, 2-16:1)" @@ -23880,9 +23880,9 @@ - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:86100" - - metanetx.chemical: "MNXM69658" - - sbo: "SBO:0000247" + - chebi: "CHEBI:86100" + - metanetx.chemical: "MNXM69658" + - sbo: "SBO:0000247" - !!omap - id: "s_3700" - name: "1-acylglycerophosphocholine (18:1)" @@ -23890,11 +23890,11 @@ - formula: "C26H52NO7P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "1agpc181" - - chebi: "CHEBI:28610" - - kegg.compound: "C03916" - - metanetx.chemical: "MNXM13872" - - sbo: "SBO:0000247" + - bigg.metabolite: "1agpc181" + - chebi: "CHEBI:28610" + - kegg.compound: "C03916" + - metanetx.chemical: "MNXM13872" + - sbo: "SBO:0000247" - !!omap - id: "s_3701" - name: "phosphatidylcholine (1-16:0, 2-18:1)" @@ -23902,8 +23902,8 @@ - formula: "C42H82NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:134594" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134594" + - sbo: "SBO:0000247" - !!omap - id: "s_3702" - name: "phosphatidylcholine (1-16:1, 2-18:1)" @@ -23911,9 +23911,9 @@ - formula: "C42H80NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:84811" - - metanetx.chemical: "MNXM69383" - - sbo: "SBO:0000247" + - chebi: "CHEBI:84811" + - metanetx.chemical: "MNXM69383" + - sbo: "SBO:0000247" - !!omap - id: "s_3703" - name: "phosphatidylcholine (1-18:0, 2-18:1)" @@ -23921,9 +23921,9 @@ - formula: "C44H86NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75034" - - metanetx.chemical: "MNXM32526" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75034" + - metanetx.chemical: "MNXM32526" + - sbo: "SBO:0000247" - !!omap - id: "s_3704" - name: "phosphatidylcholine (1-18:1, 2-18:1)" @@ -23931,9 +23931,9 @@ - formula: "C44H84NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:74669" - - metanetx.chemical: "MNXM8549" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74669" + - metanetx.chemical: "MNXM8549" + - sbo: "SBO:0000247" - !!omap - id: "s_3705" - name: "phosphatidylethanolamine (1-16:0, 2-16:1)" @@ -23941,8 +23941,8 @@ - formula: "C37H72NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136147" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136147" + - sbo: "SBO:0000247" - !!omap - id: "s_3706" - name: "phosphatidylethanolamine (1-16:1, 2-16:1)" @@ -23950,9 +23950,9 @@ - formula: "C37H70NO8P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pe161" - - chebi: "CHEBI:138792" - - sbo: "SBO:0000247" + - bigg.metabolite: "pe161" + - chebi: "CHEBI:138792" + - sbo: "SBO:0000247" - !!omap - id: "s_3707" - name: "phosphatidylethanolamine (1-18:0, 2-16:1)" @@ -23960,8 +23960,8 @@ - formula: "C39H76NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:136155" - - sbo: "SBO:0000247" + - chebi: "CHEBI:136155" + - sbo: "SBO:0000247" - !!omap - id: "s_3708" - name: "phosphatidylethanolamine (1-18:1, 2-16:1)" @@ -23969,9 +23969,9 @@ - formula: "C39H74NO8P" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:82837" - - metanetx.chemical: "MNXM71684" - - sbo: "SBO:0000247" + - chebi: "CHEBI:82837" + - metanetx.chemical: "MNXM71684" + - sbo: "SBO:0000247" - !!omap - id: "s_3709" - name: "ergosterol ester backbone" @@ -23979,8 +23979,8 @@ - formula: "C28H42" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM5739" - - sbo: "SBO:0000649" + - metanetx.chemical: "MNXM5739" + - sbo: "SBO:0000649" - !!omap - id: "s_3710" - name: "phosphatidyl-L-serine backbone" @@ -23988,10 +23988,10 @@ - formula: "C6H10NO6P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ps_cho" - - kegg.compound: "C02737" - - metanetx.chemical: "MNXM221" - - sbo: "SBO:0000649" + - bigg.metabolite: "ps_cho" + - kegg.compound: "C02737" + - metanetx.chemical: "MNXM221" + - sbo: "SBO:0000649" - !!omap - id: "s_3711" - name: "phosphatidylcholine backbone" @@ -23999,10 +23999,10 @@ - formula: "C8H16NO3P" - charge: 1 - annotation: !!omap - - bigg.metabolite: "pchol_cho" - - kegg.compound: "C00157" - - metanetx.chemical: "MNXM96952" - - sbo: "SBO:0000649" + - bigg.metabolite: "pchol_cho" + - kegg.compound: "C00157" + - metanetx.chemical: "MNXM96952" + - sbo: "SBO:0000649" - !!omap - id: "s_3712" - name: "phosphatidylethanolamine backbone" @@ -24010,10 +24010,10 @@ - formula: "C5H10NO4P" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pe_hs" - - kegg.compound: "C00350" - - metanetx.chemical: "MNXM115" - - sbo: "SBO:0000649" + - bigg.metabolite: "pe_hs" + - kegg.compound: "C00350" + - metanetx.chemical: "MNXM115" + - sbo: "SBO:0000649" - !!omap - id: "s_3713" - name: "triglyceride backbone" @@ -24021,10 +24021,10 @@ - formula: "C3H2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag_cho" - - kegg.compound: "C00422" - - metanetx.chemical: "MNXM248" - - sbo: "SBO:0000649" + - bigg.metabolite: "tag_cho" + - kegg.compound: "C00422" + - metanetx.chemical: "MNXM248" + - sbo: "SBO:0000649" - !!omap - id: "s_3714" - name: "heme a" @@ -24032,11 +24032,11 @@ - formula: "C49H55FeN4O6" - charge: -3 - annotation: !!omap - - bigg.metabolite: "hemeA" - - chebi: "CHEBI:24479" - - kegg.compound: "C15670" - - metanetx.chemical: "MNXM53309" - - sbo: "SBO:0000247" + - bigg.metabolite: "hemeA" + - chebi: "CHEBI:24479" + - kegg.compound: "C15670" + - metanetx.chemical: "MNXM53309" + - sbo: "SBO:0000247" - !!omap - id: "s_3715" - name: "raffinose" @@ -24044,11 +24044,11 @@ - formula: "C18H32O16" - charge: 0 - annotation: !!omap - - bigg.metabolite: "raffin" - - chebi: "CHEBI:16634" - - kegg.compound: "C00492" - - metanetx.chemical: "MNXM621" - - sbo: "SBO:0000247" + - bigg.metabolite: "raffin" + - chebi: "CHEBI:16634" + - kegg.compound: "C00492" + - metanetx.chemical: "MNXM621" + - sbo: "SBO:0000247" - !!omap - id: "s_3716" - name: "melibiose" @@ -24056,235 +24056,235 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: "melib" - - chebi: "CHEBI:28053" - - kegg.compound: "C05402" - - metanetx.chemical: "MNXM1434" - - sbo: "SBO:0000247" + - bigg.metabolite: "melib" + - chebi: "CHEBI:28053" + - kegg.compound: "C05402" + - metanetx.chemical: "MNXM1434" + - sbo: "SBO:0000247" - !!omap - id: "s_3717" - name: "protein" - compartment: "c" - formula: "" - annotation: !!omap - - bigg.metabolite: "protein" - - kegg.compound: "C00492" - - metanetx.chemical: "MNXM621" - - sbo: "SBO:0000649" + - bigg.metabolite: "protein" + - kegg.compound: "C00492" + - metanetx.chemical: "MNXM621" + - sbo: "SBO:0000649" - !!omap - id: "s_3718" - name: "carbohydrate" - compartment: "c" - formula: "" - annotation: !!omap - - kegg.compound: "C05402" - - metanetx.chemical: "MNXM1434" - - sbo: "SBO:0000649" + - kegg.compound: "C05402" + - metanetx.chemical: "MNXM1434" + - sbo: "SBO:0000649" - !!omap - id: "s_3719" - name: "RNA" - compartment: "c" - formula: "" - annotation: !!omap - - bigg.metabolite: "rna" - - sbo: "SBO:0000649" + - bigg.metabolite: "rna" + - sbo: "SBO:0000649" - !!omap - id: "s_3720" - name: "DNA" - compartment: "c" - formula: "" - annotation: !!omap - - bigg.metabolite: "dna" - - sbo: "SBO:0000649" + - bigg.metabolite: "dna" + - sbo: "SBO:0000649" - !!omap - id: "s_3721" - name: "ceramide backbone" - compartment: "g" - formula: "HNO2" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3722" - name: "ceramide backbone" - compartment: "c" - formula: "HNO2" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3723" - name: "inositol phosphomannosylinositol phosphoceramide backbone" - compartment: "c" - formula: "C18H33NO23P2" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3724" - name: "inositol-P-ceramide backbone" - compartment: "c" - formula: "C6H12NO10P" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3725" - name: "mannosylinositol phosphorylceramide backbone" - compartment: "c" - formula: "C12H22NO15P" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3726" - name: "long-chain base backbone" - compartment: "er" - formula: "H4N" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3727" - name: "long-chain base backbone" - compartment: "c" - formula: "H4N" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3728" - name: "long-chain base phosphate backbone" - compartment: "er" - formula: "H3NO3P" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3729" - name: "long-chain base phosphate backbone" - compartment: "c" - formula: "H3NO3P" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3730" - name: "phosphatidate backbone" - compartment: "erm" - formula: "C3H5O4P" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3731" - name: "phosphatidate backbone" - compartment: "c" - formula: "C3H5O4P" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3732" - name: "diglyceride backbone" - compartment: "erm" - formula: "C3H4O" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3733" - name: "diglyceride backbone" - compartment: "c" - formula: "C3H4O" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3734" - name: "sn-2-acyl-1-lysophosphatidylinositol backbone" - compartment: "erm" - formula: "C9H11O10P" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3735" - name: "sn-2-acyl-1-lysophosphatidylinositol backbone" - compartment: "c" - formula: "C9H11O10P" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3736" - name: "phosphatidylglycerol backbone" - compartment: "mm" - formula: "C6H11O6P" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3737" - name: "phosphatidylglycerol backbone" - compartment: "c" - formula: "C6H11O6P" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3738" - name: "cardiolipin backbone" - compartment: "mm" - formula: "C9H14O9P2" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3739" - name: "cardiolipin backbone" - compartment: "c" - formula: "C9H14O9P2" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3740" - name: "C16:0 chain" - compartment: "c" - formula: "C16H32O2" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3741" - name: "C16:1 chain" - compartment: "c" - formula: "C16H30O2" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3742" - name: "C18:0 chain" - compartment: "c" - formula: "C18H36O2" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3743" - name: "C18:1 chain" - compartment: "c" - formula: "C18H34O2" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3744" - name: "C24:0 chain" - compartment: "c" - formula: "C24H48O2" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3745" - name: "C26:0 chain" - compartment: "c" - formula: "C26H52O2" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3746" - name: "lipid backbone" - compartment: "c" - formula: "" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3747" - name: "lipid chain" - compartment: "c" - formula: "" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_3748" - name: "Cytochrome c" @@ -24292,10 +24292,10 @@ - formula: "C40H40FeN6O6S2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "cytc" - - chebi: "CHEBI:83739" - - kegg.compound: "C00524" - - sbo: "SBO:0000247" + - bigg.metabolite: "cytc" + - chebi: "CHEBI:83739" + - kegg.compound: "C00524" + - sbo: "SBO:0000247" - !!omap - id: "s_3749" - name: "Apocytochrome c" @@ -24303,11 +24303,11 @@ - formula: "C6H10N2O2S2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "apocytc" - - chebi: "CHEBI:15697" - - kegg.compound: "C02248" - - metanetx.chemical: "MNXM2100" - - sbo: "SBO:0000247" + - bigg.metabolite: "apocytc" + - chebi: "CHEBI:15697" + - kegg.compound: "C02248" + - metanetx.chemical: "MNXM2100" + - sbo: "SBO:0000247" - !!omap - id: "s_3750" - name: "diacetyl" @@ -24315,11 +24315,11 @@ - formula: "C4H6O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "diact" - - chebi: "CHEBI:16583" - - kegg.compound: "C00741" - - metanetx.chemical: "MNXM1467" - - sbo: "SBO:0000247" + - bigg.metabolite: "diact" + - chebi: "CHEBI:16583" + - kegg.compound: "C00741" + - metanetx.chemical: "MNXM1467" + - sbo: "SBO:0000247" - !!omap - id: "s_3751" - name: "(R)-acetoin" @@ -24327,11 +24327,11 @@ - formula: "C4H8O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "actn__R" - - chebi: "CHEBI:15686" - - kegg.compound: "C00810" - - metanetx.chemical: "MNXM664" - - sbo: "SBO:0000247" + - bigg.metabolite: "actn__R" + - chebi: "CHEBI:15686" + - kegg.compound: "C00810" + - metanetx.chemical: "MNXM664" + - sbo: "SBO:0000247" - !!omap - id: "s_3752" - name: "diacetyl" @@ -24339,11 +24339,11 @@ - formula: "C4H6O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "diact" - - chebi: "CHEBI:16583" - - kegg.compound: "C00741" - - metanetx.chemical: "MNXM1467" - - sbo: "SBO:0000247" + - bigg.metabolite: "diact" + - chebi: "CHEBI:16583" + - kegg.compound: "C00741" + - metanetx.chemical: "MNXM1467" + - sbo: "SBO:0000247" - !!omap - id: "s_3753" - name: "NADH" @@ -24351,11 +24351,11 @@ - formula: "C21H27N7O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "nadh" - - chebi: "CHEBI:57945" - - kegg.compound: "C00004" - - metanetx.chemical: "MNXM10" - - sbo: "SBO:0000247" + - bigg.metabolite: "nadh" + - chebi: "CHEBI:57945" + - kegg.compound: "C00004" + - metanetx.chemical: "MNXM10" + - sbo: "SBO:0000247" - !!omap - id: "s_3754" - name: "L-glutamyl-tRNA(Gln)" @@ -24363,11 +24363,11 @@ - formula: "C5H8NO3R" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glutrna_gln" - - chebi: "CHEBI:29165" - - kegg.compound: "C06112" - - metanetx.chemical: "MNXM91213" - - sbo: "SBO:0000247" + - bigg.metabolite: "glutrna_gln" + - chebi: "CHEBI:29165" + - kegg.compound: "C06112" + - metanetx.chemical: "MNXM91213" + - sbo: "SBO:0000247" - !!omap - id: "s_3755" - name: "L-glutamine" @@ -24375,11 +24375,11 @@ - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gln__L" - - chebi: "CHEBI:18050" - - kegg.compound: "C00064" - - metanetx.chemical: "MNXM37" - - sbo: "SBO:0000247" + - bigg.metabolite: "gln__L" + - chebi: "CHEBI:18050" + - kegg.compound: "C00064" + - metanetx.chemical: "MNXM37" + - sbo: "SBO:0000247" - !!omap - id: "s_3756" - name: "Gln-tRNA(Gln)" @@ -24387,11 +24387,11 @@ - formula: "C5H10N2O2R" - charge: 1 - annotation: !!omap - - bigg.metabolite: "glntrna" - - chebi: "CHEBI:29166" - - kegg.compound: "C02282" - - metanetx.chemical: "MNXM89810" - - sbo: "SBO:0000247" + - bigg.metabolite: "glntrna" + - chebi: "CHEBI:29166" + - kegg.compound: "C02282" + - metanetx.chemical: "MNXM89810" + - sbo: "SBO:0000247" - !!omap - id: "s_3757" - name: "Met-Ala" @@ -24399,10 +24399,10 @@ - formula: "C8H16N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "met_L_ala__L" - - chebi: "CHEBI:73610" - - metanetx.chemical: "MNXM61647" - - sbo: "SBO:0000247" + - bigg.metabolite: "met_L_ala__L" + - chebi: "CHEBI:73610" + - metanetx.chemical: "MNXM61647" + - sbo: "SBO:0000247" - !!omap - id: "s_3758" - name: "L-methionine" @@ -24410,11 +24410,11 @@ - formula: "C5H11NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "met__L" - - chebi: "CHEBI:16643" - - kegg.compound: "C00073" - - metanetx.chemical: "MNXM61" - - sbo: "SBO:0000247" + - bigg.metabolite: "met__L" + - chebi: "CHEBI:16643" + - kegg.compound: "C00073" + - metanetx.chemical: "MNXM61" + - sbo: "SBO:0000247" - !!omap - id: "s_3759" - name: "L-alanine" @@ -24422,11 +24422,11 @@ - formula: "C3H7NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala__L" - - chebi: "CHEBI:16977" - - kegg.compound: "C00041" - - metanetx.chemical: "MNXM32" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala__L" + - chebi: "CHEBI:16977" + - kegg.compound: "C00041" + - metanetx.chemical: "MNXM32" + - sbo: "SBO:0000247" - !!omap - id: "s_3760" - name: "ADP-D-ribose 1''-phosphate" @@ -24434,9 +24434,9 @@ - formula: "C15H20N5O17P3" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:58753" - - metanetx.chemical: "MNXM5039" - - sbo: "SBO:0000247" + - chebi: "CHEBI:58753" + - metanetx.chemical: "MNXM5039" + - sbo: "SBO:0000247" - !!omap - id: "s_3761" - name: "ADP-ribose" @@ -24444,11 +24444,11 @@ - formula: "C15H21N5O14P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "adprib" - - chebi: "CHEBI:57967" - - kegg.compound: "C00301" - - metanetx.chemical: "MNXM48596" - - sbo: "SBO:0000247" + - bigg.metabolite: "adprib" + - chebi: "CHEBI:57967" + - kegg.compound: "C00301" + - metanetx.chemical: "MNXM48596" + - sbo: "SBO:0000247" - !!omap - id: "s_3762" - name: "quinone" @@ -24456,10 +24456,10 @@ - formula: "C6H4O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:16509" - - kegg.compound: "C00472" - - metanetx.chemical: "MNXM769" - - sbo: "SBO:0000247" + - chebi: "CHEBI:16509" + - kegg.compound: "C00472" + - metanetx.chemical: "MNXM769" + - sbo: "SBO:0000247" - !!omap - id: "s_3763" - name: "1,4-benzosemiquinone" @@ -24467,10 +24467,10 @@ - formula: "C6H5O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17977" - - kegg.compound: "C02389" - - metanetx.chemical: "MNXM7107" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17977" + - kegg.compound: "C02389" + - metanetx.chemical: "MNXM7107" + - sbo: "SBO:0000247" - !!omap - id: "s_3764" - name: "UDP-N-acetyl-alpha-D-glucosamine" @@ -24478,11 +24478,11 @@ - formula: "C17H25N3O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "uacgam" - - chebi: "CHEBI:57705" - - kegg.compound: "C00043" - - metanetx.chemical: "MNXM47" - - sbo: "SBO:0000247" + - bigg.metabolite: "uacgam" + - chebi: "CHEBI:57705" + - kegg.compound: "C00043" + - metanetx.chemical: "MNXM47" + - sbo: "SBO:0000247" - !!omap - id: "s_3765" - name: "N-Acetyl-D-glucosaminyldiphosphodolichol" @@ -24490,11 +24490,11 @@ - formula: "C28H51NO12P2R" - charge: 0 - annotation: !!omap - - bigg.metabolite: "naglc2p" - - chebi: "CHEBI:18278" - - kegg.compound: "C04500" - - metanetx.chemical: "MNXM818" - - sbo: "SBO:0000247" + - bigg.metabolite: "naglc2p" + - chebi: "CHEBI:18278" + - kegg.compound: "C04500" + - metanetx.chemical: "MNXM818" + - sbo: "SBO:0000247" - !!omap - id: "s_3766" - name: "UDP" @@ -24502,11 +24502,11 @@ - formula: "C9H11N2O12P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "udp" - - chebi: "CHEBI:58223" - - kegg.compound: "C00015" - - metanetx.chemical: "MNXM17" - - sbo: "SBO:0000247" + - bigg.metabolite: "udp" + - chebi: "CHEBI:58223" + - kegg.compound: "C00015" + - metanetx.chemical: "MNXM17" + - sbo: "SBO:0000247" - !!omap - id: "s_3767" - name: "N,N'-Chitobiosyldiphosphodolichol" @@ -24514,7 +24514,7 @@ - formula: "C36H64N2O17P2R" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3768" - name: "D-ribofuranose 5-phosphate" @@ -24522,10 +24522,10 @@ - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:78346" - - kegg.compound: "C00117" - - metanetx.chemical: "MNXM722712" - - sbo: "SBO:0000247" + - chebi: "CHEBI:78346" + - kegg.compound: "C00117" + - metanetx.chemical: "MNXM722712" + - sbo: "SBO:0000247" - !!omap - id: "s_3769" - name: "Oxalate" @@ -24533,11 +24533,11 @@ - formula: "C2O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "oxa" - - chebi: "CHEBI:30623" - - kegg.compound: "C00209" - - metanetx.chemical: "MNXM291" - - sbo: "SBO:0000247" + - bigg.metabolite: "oxa" + - chebi: "CHEBI:30623" + - kegg.compound: "C00209" + - metanetx.chemical: "MNXM291" + - sbo: "SBO:0000247" - !!omap - id: "s_3770" - name: "Oxalyl-CoA" @@ -24545,11 +24545,11 @@ - formula: "C23H31N7O19P3S" - charge: -5 - annotation: !!omap - - bigg.metabolite: "oxalcoa" - - chebi: "CHEBI:57388" - - kegg.compound: "C00313" - - metanetx.chemical: "MNXM618" - - sbo: "SBO:0000247" + - bigg.metabolite: "oxalcoa" + - chebi: "CHEBI:57388" + - kegg.compound: "C00313" + - metanetx.chemical: "MNXM618" + - sbo: "SBO:0000247" - !!omap - id: "s_3771" - name: "G00171" @@ -24557,7 +24557,7 @@ - formula: "C86H142N4O67R" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3772" - name: "D-glucose" @@ -24565,11 +24565,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glc__D" - - chebi: "CHEBI:4167" - - kegg.compound: "C00031" - - metanetx.chemical: "MNXM41" - - sbo: "SBO:0000247" + - bigg.metabolite: "glc__D" + - chebi: "CHEBI:4167" + - kegg.compound: "C00031" + - metanetx.chemical: "MNXM41" + - sbo: "SBO:0000247" - !!omap - id: "s_3773" - name: "G00010" @@ -24577,7 +24577,7 @@ - formula: "C80H132N4O62R" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3774" - name: "G00011" @@ -24585,8 +24585,8 @@ - formula: "C74H122N4O57R" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM6479" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM6479" + - sbo: "SBO:0000247" - !!omap - id: "s_3775" - name: "sodium" @@ -24594,11 +24594,11 @@ - formula: "Na" - charge: 1 - annotation: !!omap - - bigg.metabolite: "na1" - - chebi: "CHEBI:29101" - - kegg.compound: "C01330" - - metanetx.chemical: "MNXM27" - - sbo: "SBO:0000247" + - bigg.metabolite: "na1" + - chebi: "CHEBI:29101" + - kegg.compound: "C01330" + - metanetx.chemical: "MNXM27" + - sbo: "SBO:0000247" - !!omap - id: "s_3776" - name: "potassium" @@ -24606,11 +24606,11 @@ - formula: "K" - charge: 1 - annotation: !!omap - - bigg.metabolite: "k" - - chebi: "CHEBI:29103" - - kegg.compound: "C00238" - - metanetx.chemical: "MNXM95" - - sbo: "SBO:0000247" + - bigg.metabolite: "k" + - chebi: "CHEBI:29103" + - kegg.compound: "C00238" + - metanetx.chemical: "MNXM95" + - sbo: "SBO:0000247" - !!omap - id: "s_3777" - name: "chloride" @@ -24618,11 +24618,11 @@ - formula: "Cl" - charge: -1 - annotation: !!omap - - bigg.metabolite: "cl" - - chebi: "CHEBI:17996" - - kegg.compound: "C00698" - - metanetx.chemical: "MNXM43" - - sbo: "SBO:0000247" + - bigg.metabolite: "cl" + - chebi: "CHEBI:17996" + - kegg.compound: "C00698" + - metanetx.chemical: "MNXM43" + - sbo: "SBO:0000247" - !!omap - id: "s_3778" - name: "chloride" @@ -24630,11 +24630,11 @@ - formula: "Cl" - charge: -1 - annotation: !!omap - - bigg.metabolite: "cl" - - chebi: "CHEBI:17996" - - kegg.compound: "C00698" - - metanetx.chemical: "MNXM43" - - sbo: "SBO:0000247" + - bigg.metabolite: "cl" + - chebi: "CHEBI:17996" + - kegg.compound: "C00698" + - metanetx.chemical: "MNXM43" + - sbo: "SBO:0000247" - !!omap - id: "s_3779" - name: "D-fructose" @@ -24642,11 +24642,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "fru" - - chebi: "CHEBI:15824" - - kegg.compound: "C00095" - - metanetx.chemical: "MNXM175" - - sbo: "SBO:0000247" + - bigg.metabolite: "fru" + - chebi: "CHEBI:15824" + - kegg.compound: "C00095" + - metanetx.chemical: "MNXM175" + - sbo: "SBO:0000247" - !!omap - id: "s_3780" - name: "D-galactose" @@ -24654,11 +24654,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gal" - - chebi: "CHEBI:4139" - - kegg.compound: "C00124" - - metanetx.chemical: "MNXM390" - - sbo: "SBO:0000247" + - bigg.metabolite: "gal" + - chebi: "CHEBI:4139" + - kegg.compound: "C00124" + - metanetx.chemical: "MNXM390" + - sbo: "SBO:0000247" - !!omap - id: "s_3781" - name: "UMP" @@ -24666,11 +24666,11 @@ - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "ump" - - chebi: "CHEBI:57865" - - kegg.compound: "C00105" - - metanetx.chemical: "MNXM80" - - sbo: "SBO:0000247" + - bigg.metabolite: "ump" + - chebi: "CHEBI:57865" + - kegg.compound: "C00105" + - metanetx.chemical: "MNXM80" + - sbo: "SBO:0000247" - !!omap - id: "s_3782" - name: "cadmium(2+)" @@ -24678,11 +24678,11 @@ - formula: "Cd" - charge: 2 - annotation: !!omap - - bigg.metabolite: "cd2" - - chebi: "CHEBI:48775" - - kegg.compound: "C01413" - - metanetx.chemical: "MNXM4505" - - sbo: "SBO:0000247" + - bigg.metabolite: "cd2" + - chebi: "CHEBI:48775" + - kegg.compound: "C01413" + - metanetx.chemical: "MNXM4505" + - sbo: "SBO:0000247" - !!omap - id: "s_3783" - name: "cadmium(2+)" @@ -24690,11 +24690,11 @@ - formula: "Cd" - charge: 2 - annotation: !!omap - - bigg.metabolite: "cd2" - - chebi: "CHEBI:48775" - - kegg.compound: "C01413" - - metanetx.chemical: "MNXM4505" - - sbo: "SBO:0000247" + - bigg.metabolite: "cd2" + - chebi: "CHEBI:48775" + - kegg.compound: "C01413" + - metanetx.chemical: "MNXM4505" + - sbo: "SBO:0000247" - !!omap - id: "s_3784" - name: "(sulfur carrier)-H" @@ -24702,7 +24702,7 @@ - formula: "R" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3785" - name: "L-cysteine" @@ -24710,11 +24710,11 @@ - formula: "C3H7NO2S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cys__L" - - chebi: "CHEBI:17561" - - kegg.compound: "C00097" - - metanetx.chemical: "MNXM55" - - sbo: "SBO:0000247" + - bigg.metabolite: "cys__L" + - chebi: "CHEBI:17561" + - kegg.compound: "C00097" + - metanetx.chemical: "MNXM55" + - sbo: "SBO:0000247" - !!omap - id: "s_3786" - name: "(sulfur carrier)-SH" @@ -24722,7 +24722,7 @@ - formula: "SR" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3787" - name: "cholesterol" @@ -24730,11 +24730,11 @@ - formula: "C27H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "chsterol" - - chebi: "CHEBI:16113" - - kegg.compound: "C00187" - - metanetx.chemical: "MNXM103" - - sbo: "SBO:0000247" + - bigg.metabolite: "chsterol" + - chebi: "CHEBI:16113" + - kegg.compound: "C00187" + - metanetx.chemical: "MNXM103" + - sbo: "SBO:0000247" - !!omap - id: "s_3788" - name: "cholesterol" @@ -24742,11 +24742,11 @@ - formula: "C27H46O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "chsterol" - - chebi: "CHEBI:16113" - - kegg.compound: "C00187" - - metanetx.chemical: "MNXM103" - - sbo: "SBO:0000247" + - bigg.metabolite: "chsterol" + - chebi: "CHEBI:16113" + - kegg.compound: "C00187" + - metanetx.chemical: "MNXM103" + - sbo: "SBO:0000247" - !!omap - id: "s_3789" - name: "3-chlorobenzyl alcohol" @@ -24754,7 +24754,7 @@ - formula: "C7H7ClO" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3790" - name: "3-chlorobenzaldehyde" @@ -24762,7 +24762,7 @@ - formula: "C7H5ClO" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3791" - name: "3-hydroxybenzyl alcohol" @@ -24770,10 +24770,10 @@ - formula: "C7H8O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17069" - - kegg.compound: "C03351" - - metanetx.chemical: "MNXM2785" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17069" + - kegg.compound: "C03351" + - metanetx.chemical: "MNXM2785" + - sbo: "SBO:0000247" - !!omap - id: "s_3792" - name: "3-hydroxybenzaldehyde" @@ -24781,10 +24781,10 @@ - formula: "C7H6O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:16207" - - kegg.compound: "C03067" - - metanetx.chemical: "MNXM2483" - - sbo: "SBO:0000247" + - chebi: "CHEBI:16207" + - kegg.compound: "C03067" + - metanetx.chemical: "MNXM2483" + - sbo: "SBO:0000247" - !!omap - id: "s_3793" - name: "3-methylbenzyl alcohol" @@ -24792,11 +24792,11 @@ - formula: "C8H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "3mbzalc" - - chebi: "CHEBI:27995" - - kegg.compound: "C07216" - - metanetx.chemical: "MNXM3486" - - sbo: "SBO:0000247" + - bigg.metabolite: "3mbzalc" + - chebi: "CHEBI:27995" + - kegg.compound: "C07216" + - metanetx.chemical: "MNXM3486" + - sbo: "SBO:0000247" - !!omap - id: "s_3794" - name: "3-methylbenzaldehyde" @@ -24804,11 +24804,11 @@ - formula: "C8H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "3mbzald" - - chebi: "CHEBI:28476" - - kegg.compound: "C07209" - - metanetx.chemical: "MNXM4040" - - sbo: "SBO:0000247" + - bigg.metabolite: "3mbzald" + - chebi: "CHEBI:28476" + - kegg.compound: "C07209" + - metanetx.chemical: "MNXM4040" + - sbo: "SBO:0000247" - !!omap - id: "s_3795" - name: "4-isopropylbenzyl alcohol" @@ -24816,10 +24816,10 @@ - formula: "C10H14O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:27628" - - kegg.compound: "C06576" - - metanetx.chemical: "MNXM5878" - - sbo: "SBO:0000247" + - chebi: "CHEBI:27628" + - kegg.compound: "C06576" + - metanetx.chemical: "MNXM5878" + - sbo: "SBO:0000247" - !!omap - id: "s_3796" - name: "p-cumic aldehyde" @@ -24827,10 +24827,10 @@ - formula: "C10H12O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:28671" - - kegg.compound: "C06577" - - metanetx.chemical: "MNXM5879" - - sbo: "SBO:0000247" + - chebi: "CHEBI:28671" + - kegg.compound: "C06577" + - metanetx.chemical: "MNXM5879" + - sbo: "SBO:0000247" - !!omap - id: "s_3797" - name: "4-methylbenzyl alcohol" @@ -24838,11 +24838,11 @@ - formula: "C8H10O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4mbzalc" - - chebi: "CHEBI:1895" - - kegg.compound: "C06757" - - metanetx.chemical: "MNXM3500" - - sbo: "SBO:0000247" + - bigg.metabolite: "4mbzalc" + - chebi: "CHEBI:1895" + - kegg.compound: "C06757" + - metanetx.chemical: "MNXM3500" + - sbo: "SBO:0000247" - !!omap - id: "s_3798" - name: "4-methylbenzaldehyde" @@ -24850,11 +24850,11 @@ - formula: "C8H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4mbzald" - - chebi: "CHEBI:28617" - - kegg.compound: "C06758" - - metanetx.chemical: "MNXM4077" - - sbo: "SBO:0000247" + - bigg.metabolite: "4mbzald" + - chebi: "CHEBI:28617" + - kegg.compound: "C06758" + - metanetx.chemical: "MNXM4077" + - sbo: "SBO:0000247" - !!omap - id: "s_3799" - name: "benzyl alcohol" @@ -24862,11 +24862,11 @@ - formula: "C7H8O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "bzalc" - - chebi: "CHEBI:17987" - - kegg.compound: "C00556" - - metanetx.chemical: "MNXM562" - - sbo: "SBO:0000247" + - bigg.metabolite: "bzalc" + - chebi: "CHEBI:17987" + - kegg.compound: "C00556" + - metanetx.chemical: "MNXM562" + - sbo: "SBO:0000247" - !!omap - id: "s_3800" - name: "benzaldehyde" @@ -24874,11 +24874,11 @@ - formula: "C7H6O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "bzal" - - chebi: "CHEBI:17169" - - kegg.compound: "C00261" - - metanetx.chemical: "MNXM371" - - sbo: "SBO:0000247" + - bigg.metabolite: "bzal" + - chebi: "CHEBI:17169" + - kegg.compound: "C00261" + - metanetx.chemical: "MNXM371" + - sbo: "SBO:0000247" - !!omap - id: "s_3801" - name: "Mn(2+)" @@ -24886,11 +24886,11 @@ - formula: "Mn" - charge: 2 - annotation: !!omap - - bigg.metabolite: "mn2" - - chebi: "CHEBI:29035" - - kegg.compound: "C19610" - - metanetx.chemical: "MNXM2255" - - sbo: "SBO:0000247" + - bigg.metabolite: "mn2" + - chebi: "CHEBI:29035" + - kegg.compound: "C19610" + - metanetx.chemical: "MNXM2255" + - sbo: "SBO:0000247" - !!omap - id: "s_3802" - name: "Mn(2+)" @@ -24898,11 +24898,11 @@ - formula: "Mn" - charge: 2 - annotation: !!omap - - bigg.metabolite: "mn2" - - chebi: "CHEBI:29035" - - kegg.compound: "C19610" - - metanetx.chemical: "MNXM2255" - - sbo: "SBO:0000247" + - bigg.metabolite: "mn2" + - chebi: "CHEBI:29035" + - kegg.compound: "C19610" + - metanetx.chemical: "MNXM2255" + - sbo: "SBO:0000247" - !!omap - id: "s_3805" - name: "Mannitol" @@ -24910,11 +24910,11 @@ - formula: "C6H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "mnl" - - chebi: "CHEBI:16899" - - kegg.compound: "C00392" - - metanetx.chemical: "MNXM615" - - sbo: "SBO:0000247" + - bigg.metabolite: "mnl" + - chebi: "CHEBI:16899" + - kegg.compound: "C00392" + - metanetx.chemical: "MNXM615" + - sbo: "SBO:0000247" - !!omap - id: "s_3806" - name: "4-hydroxy-4-methyl-2-oxoglutarate" @@ -24922,10 +24922,10 @@ - formula: "C6H6O6" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:58276" - - kegg.compound: "C06033" - - metanetx.chemical: "MNXM2196" - - sbo: "SBO:0000247" + - chebi: "CHEBI:58276" + - kegg.compound: "C06033" + - metanetx.chemical: "MNXM2196" + - sbo: "SBO:0000247" - !!omap - id: "s_3807" - name: "L-methionine (S)-S-oxide" @@ -24933,10 +24933,10 @@ - formula: "C5H11NO3S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:49031" - - kegg.compound: "C15999" - - metanetx.chemical: "MNXM722780" - - sbo: "SBO:0000247" + - chebi: "CHEBI:49031" + - kegg.compound: "C15999" + - metanetx.chemical: "MNXM722780" + - sbo: "SBO:0000247" - !!omap - id: "s_3808" - name: "tRNA(Pro)" @@ -24944,11 +24944,11 @@ - formula: "RH" - charge: 0 - annotation: !!omap - - bigg.metabolite: "trnapro" - - chebi: "CHEBI:29177" - - kegg.compound: "C01649" - - metanetx.chemical: "MNXM90667" - - sbo: "SBO:0000247" + - bigg.metabolite: "trnapro" + - chebi: "CHEBI:29177" + - kegg.compound: "C01649" + - metanetx.chemical: "MNXM90667" + - sbo: "SBO:0000247" - !!omap - id: "s_3809" - name: "Pro-tRNA(Pro)" @@ -24956,11 +24956,11 @@ - formula: "C5H9NOR" - charge: 1 - annotation: !!omap - - bigg.metabolite: "protrna" - - chebi: "CHEBI:29154" - - kegg.compound: "C02702" - - metanetx.chemical: "MNXM247" - - sbo: "SBO:0000247" + - bigg.metabolite: "protrna" + - chebi: "CHEBI:29154" + - kegg.compound: "C02702" + - metanetx.chemical: "MNXM247" + - sbo: "SBO:0000247" - !!omap - id: "s_3810" - name: "5-oxo-L-proline" @@ -24968,11 +24968,11 @@ - formula: "C5H6NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "5oxpro" - - chebi: "CHEBI:58402" - - kegg.compound: "C01879" - - metanetx.chemical: "MNXM722719" - - sbo: "SBO:0000247" + - bigg.metabolite: "5oxpro" + - chebi: "CHEBI:58402" + - kegg.compound: "C01879" + - metanetx.chemical: "MNXM722719" + - sbo: "SBO:0000247" - !!omap - id: "s_3811" - name: "4a-Hydroxytetrahydrobiopterin" @@ -24980,11 +24980,11 @@ - formula: "C9H15N5O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "hthbp" - - chebi: "CHEBI:15642" - - kegg.compound: "C15522" - - metanetx.chemical: "MNXM31340" - - sbo: "SBO:0000247" + - bigg.metabolite: "hthbp" + - chebi: "CHEBI:15642" + - kegg.compound: "C15522" + - metanetx.chemical: "MNXM31340" + - sbo: "SBO:0000247" - !!omap - id: "s_3812" - name: "Dihydrobiopterin" @@ -24992,11 +24992,11 @@ - formula: "C9H13N5O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "CE2705" - - chebi: "CHEBI:20680" - - kegg.compound: "C00268" - - metanetx.chemical: "MNXM162257" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE2705" + - chebi: "CHEBI:20680" + - kegg.compound: "C00268" + - metanetx.chemical: "MNXM162257" + - sbo: "SBO:0000247" - !!omap - id: "s_3813" - name: "superoxide" @@ -25004,11 +25004,11 @@ - formula: "O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "o2s" - - chebi: "CHEBI:18421" - - kegg.compound: "C00704" - - metanetx.chemical: "MNXM330" - - sbo: "SBO:0000247" + - bigg.metabolite: "o2s" + - chebi: "CHEBI:18421" + - kegg.compound: "C00704" + - metanetx.chemical: "MNXM330" + - sbo: "SBO:0000247" - !!omap - id: "s_3814" - name: "2-deoxy-D-glucose 6-phosphate" @@ -25016,11 +25016,11 @@ - formula: "C6H11O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "2doxg6p" - - chebi: "CHEBI:84760" - - kegg.compound: "C06369" - - metanetx.chemical: "MNXM3809" - - sbo: "SBO:0000247" + - bigg.metabolite: "2doxg6p" + - chebi: "CHEBI:84760" + - kegg.compound: "C06369" + - metanetx.chemical: "MNXM3809" + - sbo: "SBO:0000247" - !!omap - id: "s_3815" - name: "2-deoxy-D-glucose" @@ -25028,11 +25028,11 @@ - formula: "C6H12O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "2dglc" - - chebi: "CHEBI:84755" - - kegg.compound: "C00586" - - metanetx.chemical: "MNXM2925" - - sbo: "SBO:0000247" + - bigg.metabolite: "2dglc" + - chebi: "CHEBI:84755" + - kegg.compound: "C00586" + - metanetx.chemical: "MNXM2925" + - sbo: "SBO:0000247" - !!omap - id: "s_3816" - name: "[cytochrome c]-L-lysine" @@ -25040,8 +25040,8 @@ - formula: "C6H13N2O" - charge: 1 - annotation: !!omap - - chebi: "CHEBI:29969" - - sbo: "SBO:0000247" + - chebi: "CHEBI:29969" + - sbo: "SBO:0000247" - !!omap - id: "s_3817" - name: "[cytochrome c]-N6-methyl-L-lysine" @@ -25049,8 +25049,8 @@ - formula: "C7H15N2O" - charge: 1 - annotation: !!omap - - chebi: "CHEBI:61929" - - sbo: "SBO:0000247" + - chebi: "CHEBI:61929" + - sbo: "SBO:0000247" - !!omap - id: "s_3818" - name: "S-adenosyl-L-methionine" @@ -25058,11 +25058,11 @@ - formula: "C15H23N6O5S" - charge: 1 - annotation: !!omap - - bigg.metabolite: "amet" - - chebi: "CHEBI:67040" - - kegg.compound: "C00019" - - metanetx.chemical: "MNXM16" - - sbo: "SBO:0000247" + - bigg.metabolite: "amet" + - chebi: "CHEBI:67040" + - kegg.compound: "C00019" + - metanetx.chemical: "MNXM16" + - sbo: "SBO:0000247" - !!omap - id: "s_3819" - name: "L-lysine-[histone]" @@ -25070,9 +25070,9 @@ - formula: "C6H13N2OR2" - charge: 1 - annotation: !!omap - - chebi: "CHEBI:29969" - - metanetx.chemical: "MNXM59465" - - sbo: "SBO:0000247" + - chebi: "CHEBI:29969" + - metanetx.chemical: "MNXM59465" + - sbo: "SBO:0000247" - !!omap - id: "s_3820" - name: "S-adenosyl-L-homocysteine" @@ -25080,11 +25080,11 @@ - formula: "C14H20N6O5S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ahcys" - - chebi: "CHEBI:16680" - - kegg.compound: "C00021" - - metanetx.chemical: "MNXM19" - - sbo: "SBO:0000247" + - bigg.metabolite: "ahcys" + - chebi: "CHEBI:16680" + - kegg.compound: "C00021" + - metanetx.chemical: "MNXM19" + - sbo: "SBO:0000247" - !!omap - id: "s_3821" - name: "N6-methyl-L-lysine-[histone]" @@ -25092,9 +25092,9 @@ - formula: "C7H15N2OR2" - charge: 1 - annotation: !!omap - - chebi: "CHEBI:61929" - - metanetx.chemical: "MNXM63025" - - sbo: "SBO:0000247" + - chebi: "CHEBI:61929" + - metanetx.chemical: "MNXM63025" + - sbo: "SBO:0000247" - !!omap - id: "s_3822" - name: "Zn(2+)" @@ -25102,11 +25102,11 @@ - formula: "Zn" - charge: 2 - annotation: !!omap - - bigg.metabolite: "zn2" - - chebi: "CHEBI:29105" - - kegg.compound: "C00038" - - metanetx.chemical: "MNXM149" - - sbo: "SBO:0000247" + - bigg.metabolite: "zn2" + - chebi: "CHEBI:29105" + - kegg.compound: "C00038" + - metanetx.chemical: "MNXM149" + - sbo: "SBO:0000247" - !!omap - id: "s_3823" - name: "Zn(2+)" @@ -25114,11 +25114,11 @@ - formula: "Zn" - charge: 2 - annotation: !!omap - - bigg.metabolite: "zn2" - - chebi: "CHEBI:29105" - - kegg.compound: "C00038" - - metanetx.chemical: "MNXM149" - - sbo: "SBO:0000247" + - bigg.metabolite: "zn2" + - chebi: "CHEBI:29105" + - kegg.compound: "C00038" + - metanetx.chemical: "MNXM149" + - sbo: "SBO:0000247" - !!omap - id: "s_3826" - name: "Ferricytochrome b5" @@ -25126,11 +25126,11 @@ - formula: "Fe" - charge: 3 - annotation: !!omap - - bigg.metabolite: "ficytb5" - - chebi: "CHEBI:18097" - - kegg.compound: "C00996" - - metanetx.chemical: "MNXM1083" - - sbo: "SBO:0000247" + - bigg.metabolite: "ficytb5" + - chebi: "CHEBI:18097" + - kegg.compound: "C00996" + - metanetx.chemical: "MNXM1083" + - sbo: "SBO:0000247" - !!omap - id: "s_3827" - name: "Ferrocytochrome b5" @@ -25138,9 +25138,9 @@ - formula: "Fe" - charge: 2 - annotation: !!omap - - bigg.metabolite: "focytb5" - - kegg.compound: "C00999" - - sbo: "SBO:0000247" + - bigg.metabolite: "focytb5" + - kegg.compound: "C00999" + - sbo: "SBO:0000247" - !!omap - id: "s_3828" - name: "(S)-benzoin" @@ -25148,9 +25148,9 @@ - formula: "C14H12O2" - charge: 0 - annotation: !!omap - - kegg.compound: "C20227" - - metanetx.chemical: "MNXM5393" - - sbo: "SBO:0000247" + - kegg.compound: "C20227" + - metanetx.chemical: "MNXM5393" + - sbo: "SBO:0000247" - !!omap - id: "s_3829" - name: "benzil" @@ -25158,10 +25158,10 @@ - formula: "C14H10O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:51507" - - kegg.compound: "C20226" - - metanetx.chemical: "MNXM2349" - - sbo: "SBO:0000247" + - chebi: "CHEBI:51507" + - kegg.compound: "C20226" + - metanetx.chemical: "MNXM2349" + - sbo: "SBO:0000247" - !!omap - id: "s_3830" - name: "RX" @@ -25169,10 +25169,10 @@ - formula: "RX" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17792" - - kegg.compound: "C01322" - - metanetx.chemical: "MNXM6428" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17792" + - kegg.compound: "C01322" + - metanetx.chemical: "MNXM6428" + - sbo: "SBO:0000247" - !!omap - id: "s_3831" - name: "glutathione" @@ -25180,11 +25180,11 @@ - formula: "C10H16N3O6S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gthrd" - - chebi: "CHEBI:57925" - - kegg.compound: "C00051" - - metanetx.chemical: "MNXM57" - - sbo: "SBO:0000247" + - bigg.metabolite: "gthrd" + - chebi: "CHEBI:57925" + - kegg.compound: "C00051" + - metanetx.chemical: "MNXM57" + - sbo: "SBO:0000247" - !!omap - id: "s_3832" - name: "HX" @@ -25192,10 +25192,10 @@ - formula: "X" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:16042" - - kegg.compound: "C00462" - - metanetx.chemical: "MNXM55844" - - sbo: "SBO:0000247" + - chebi: "CHEBI:16042" + - kegg.compound: "C00462" + - metanetx.chemical: "MNXM55844" + - sbo: "SBO:0000247" - !!omap - id: "s_3833" - name: "R-S-glutathione" @@ -25203,10 +25203,10 @@ - formula: "C10H16N3O6SR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17021" - - kegg.compound: "C02320" - - metanetx.chemical: "MNXM3350" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17021" + - kegg.compound: "C02320" + - metanetx.chemical: "MNXM3350" + - sbo: "SBO:0000247" - !!omap - id: "s_3834" - name: "RX" @@ -25214,10 +25214,10 @@ - formula: "RX" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17792" - - kegg.compound: "C01322" - - metanetx.chemical: "MNXM6428" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17792" + - kegg.compound: "C01322" + - metanetx.chemical: "MNXM6428" + - sbo: "SBO:0000247" - !!omap - id: "s_3835" - name: "HX" @@ -25225,10 +25225,10 @@ - formula: "X" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:16042" - - kegg.compound: "C00462" - - metanetx.chemical: "MNXM55844" - - sbo: "SBO:0000247" + - chebi: "CHEBI:16042" + - kegg.compound: "C00462" + - metanetx.chemical: "MNXM55844" + - sbo: "SBO:0000247" - !!omap - id: "s_3836" - name: "R-S-glutathione" @@ -25236,10 +25236,10 @@ - formula: "C10H16N3O6SR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17021" - - kegg.compound: "C02320" - - metanetx.chemical: "MNXM3350" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17021" + - kegg.compound: "C02320" + - metanetx.chemical: "MNXM3350" + - sbo: "SBO:0000247" - !!omap - id: "s_3837" - name: "L-Methionine S-oxide" @@ -25247,11 +25247,11 @@ - formula: "C5H11NO3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "metsox_S__L" - - chebi: "CHEBI:17016" - - kegg.compound: "C02989" - - metanetx.chemical: "MNXM2246" - - sbo: "SBO:0000247" + - bigg.metabolite: "metsox_S__L" + - chebi: "CHEBI:17016" + - kegg.compound: "C02989" + - metanetx.chemical: "MNXM2246" + - sbo: "SBO:0000247" - !!omap - id: "s_3838" - name: "Ala-Gly" @@ -25259,10 +25259,10 @@ - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "L_alagly" - - chebi: "CHEBI:73757" - - metanetx.chemical: "MNXM15783" - - sbo: "SBO:0000247" + - bigg.metabolite: "L_alagly" + - chebi: "CHEBI:73757" + - metanetx.chemical: "MNXM15783" + - sbo: "SBO:0000247" - !!omap - id: "s_3839" - name: "L-glycine" @@ -25270,11 +25270,11 @@ - formula: "C2H5NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly" - - chebi: "CHEBI:15428" - - kegg.compound: "C00037" - - metanetx.chemical: "MNXM29" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly" + - chebi: "CHEBI:15428" + - kegg.compound: "C00037" + - metanetx.chemical: "MNXM29" + - sbo: "SBO:0000247" - !!omap - id: "s_3840" - name: "Ala-Leu" @@ -25282,10 +25282,10 @@ - formula: "C9H18N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_L_ile__L" - - chebi: "CHEBI:73770" - - metanetx.chemical: "MNXM15786" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_ile__L" + - chebi: "CHEBI:73770" + - metanetx.chemical: "MNXM15786" + - sbo: "SBO:0000247" - !!omap - id: "s_3841" - name: "Threo-3-hydroxy-L-aspartate" @@ -25293,10 +25293,10 @@ - formula: "C4H6NO5" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:57251" - - kegg.compound: "C11511" - - metanetx.chemical: "MNXM4918" - - sbo: "SBO:0000247" + - chebi: "CHEBI:57251" + - kegg.compound: "C11511" + - metanetx.chemical: "MNXM4918" + - sbo: "SBO:0000247" - !!omap - id: "s_3842" - name: "RX" @@ -25304,10 +25304,10 @@ - formula: "RX" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17792" - - kegg.compound: "C01322" - - metanetx.chemical: "MNXM6428" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17792" + - kegg.compound: "C01322" + - metanetx.chemical: "MNXM6428" + - sbo: "SBO:0000247" - !!omap - id: "s_3843" - name: "glutathione" @@ -25315,11 +25315,11 @@ - formula: "C10H16N3O6S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gthrd" - - chebi: "CHEBI:57925" - - kegg.compound: "C00051" - - metanetx.chemical: "MNXM57" - - sbo: "SBO:0000247" + - bigg.metabolite: "gthrd" + - chebi: "CHEBI:57925" + - kegg.compound: "C00051" + - metanetx.chemical: "MNXM57" + - sbo: "SBO:0000247" - !!omap - id: "s_3844" - name: "HX" @@ -25327,10 +25327,10 @@ - formula: "X" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:16042" - - kegg.compound: "C00462" - - metanetx.chemical: "MNXM55844" - - sbo: "SBO:0000247" + - chebi: "CHEBI:16042" + - kegg.compound: "C00462" + - metanetx.chemical: "MNXM55844" + - sbo: "SBO:0000247" - !!omap - id: "s_3845" - name: "R-S-glutathione" @@ -25338,10 +25338,10 @@ - formula: "C10H16N3O6SR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17021" - - kegg.compound: "C02320" - - metanetx.chemical: "MNXM3350" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17021" + - kegg.compound: "C02320" + - metanetx.chemical: "MNXM3350" + - sbo: "SBO:0000247" - !!omap - id: "s_3846" - name: "dehydroascorbate" @@ -25349,11 +25349,11 @@ - formula: "C6H6O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dhdascb" - - chebi: "CHEBI:27956" - - kegg.compound: "C05422" - - metanetx.chemical: "MNXM250" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhdascb" + - chebi: "CHEBI:27956" + - kegg.compound: "C05422" + - metanetx.chemical: "MNXM250" + - sbo: "SBO:0000247" - !!omap - id: "s_3847" - name: "ascorbate" @@ -25361,11 +25361,11 @@ - formula: "C6H8O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ascb__L" - - chebi: "CHEBI:38290" - - kegg.compound: "C00072" - - metanetx.chemical: "MNXM129" - - sbo: "SBO:0000247" + - bigg.metabolite: "ascb__L" + - chebi: "CHEBI:38290" + - kegg.compound: "C00072" + - metanetx.chemical: "MNXM129" + - sbo: "SBO:0000247" - !!omap - id: "s_3848" - name: "dehydroascorbate" @@ -25373,11 +25373,11 @@ - formula: "C6H6O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dhdascb" - - chebi: "CHEBI:27956" - - kegg.compound: "C05422" - - metanetx.chemical: "MNXM250" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhdascb" + - chebi: "CHEBI:27956" + - kegg.compound: "C05422" + - metanetx.chemical: "MNXM250" + - sbo: "SBO:0000247" - !!omap - id: "s_3849" - name: "glutathione disulfide" @@ -25385,11 +25385,11 @@ - formula: "C20H30N6O12S2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "gthox" - - chebi: "CHEBI:58297" - - kegg.compound: "C00127" - - metanetx.chemical: "MNXM151" - - sbo: "SBO:0000247" + - bigg.metabolite: "gthox" + - chebi: "CHEBI:58297" + - kegg.compound: "C00127" + - metanetx.chemical: "MNXM151" + - sbo: "SBO:0000247" - !!omap - id: "s_3850" - name: "ascorbate" @@ -25397,11 +25397,11 @@ - formula: "C6H8O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ascb__L" - - chebi: "CHEBI:38290" - - kegg.compound: "C00072" - - metanetx.chemical: "MNXM129" - - sbo: "SBO:0000247" + - bigg.metabolite: "ascb__L" + - chebi: "CHEBI:38290" + - kegg.compound: "C00072" + - metanetx.chemical: "MNXM129" + - sbo: "SBO:0000247" - !!omap - id: "s_3851" - name: "Cyanamide" @@ -25409,10 +25409,10 @@ - formula: "CH2N2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:16698" - - kegg.compound: "C01566" - - metanetx.chemical: "MNXM4538" - - sbo: "SBO:0000247" + - chebi: "CHEBI:16698" + - kegg.compound: "C01566" + - metanetx.chemical: "MNXM4538" + - sbo: "SBO:0000247" - !!omap - id: "s_3852" - name: "aldehydo-D-ribose 5-phosphate" @@ -25420,10 +25420,10 @@ - formula: "C5H9O8P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:58273" - - kegg.compound: "C00117" - - metanetx.chemical: "MNXM722712" - - sbo: "SBO:0000247" + - chebi: "CHEBI:58273" + - kegg.compound: "C00117" + - metanetx.chemical: "MNXM722712" + - sbo: "SBO:0000247" - !!omap - id: "s_3853" - name: "R-S-Cysteinylglycine" @@ -25431,10 +25431,10 @@ - formula: "C5H9N2O3SR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:8744" - - kegg.compound: "C05729" - - metanetx.chemical: "MNXM7734" - - sbo: "SBO:0000247" + - chebi: "CHEBI:8744" + - kegg.compound: "C05729" + - metanetx.chemical: "MNXM7734" + - sbo: "SBO:0000247" - !!omap - id: "s_3854" - name: "S-Substituted L-cysteine" @@ -25442,10 +25442,10 @@ - formula: "C3H6NO2SR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:47910" - - kegg.compound: "C05726" - - metanetx.chemical: "MNXM96107" - - sbo: "SBO:0000247" + - chebi: "CHEBI:47910" + - kegg.compound: "C05726" + - metanetx.chemical: "MNXM96107" + - sbo: "SBO:0000247" - !!omap - id: "s_3855" - name: "iron(3+)" @@ -25453,11 +25453,11 @@ - formula: "Fe" - charge: 3 - annotation: !!omap - - bigg.metabolite: "fe3" - - chebi: "CHEBI:29034" - - kegg.compound: "C14819" - - metanetx.chemical: "MNXM196" - - sbo: "SBO:0000247" + - bigg.metabolite: "fe3" + - chebi: "CHEBI:29034" + - kegg.compound: "C14819" + - metanetx.chemical: "MNXM196" + - sbo: "SBO:0000247" - !!omap - id: "s_3856" - name: "Glycyl-tRNA(Ala)" @@ -25465,7 +25465,7 @@ - formula: "C2H5NOR" - charge: 1 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3857" - name: "D-tyrosyl-tRNA(Tyr)" @@ -25473,7 +25473,7 @@ - formula: "C9H11NO2R" - charge: 1 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3858" - name: "D-tyrosine" @@ -25481,10 +25481,10 @@ - formula: "C9H11NO3" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:28479" - - kegg.compound: "C06420" - - metanetx.chemical: "MNXM5704" - - sbo: "SBO:0000247" + - chebi: "CHEBI:28479" + - kegg.compound: "C06420" + - metanetx.chemical: "MNXM5704" + - sbo: "SBO:0000247" - !!omap - id: "s_3859" - name: "4-nitrophenyl phosphate" @@ -25492,11 +25492,11 @@ - formula: "C6H4NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "HC01104" - - chebi: "CHEBI:61146" - - kegg.compound: "C03360" - - metanetx.chemical: "MNXM3867" - - sbo: "SBO:0000247" + - bigg.metabolite: "HC01104" + - chebi: "CHEBI:61146" + - kegg.compound: "C03360" + - metanetx.chemical: "MNXM3867" + - sbo: "SBO:0000247" - !!omap - id: "s_3860" - name: "4-nitrophenol" @@ -25504,11 +25504,11 @@ - formula: "C6H4NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "4nph" - - chebi: "CHEBI:57917" - - kegg.compound: "C00870" - - metanetx.chemical: "MNXM526" - - sbo: "SBO:0000247" + - bigg.metabolite: "4nph" + - chebi: "CHEBI:57917" + - kegg.compound: "C00870" + - metanetx.chemical: "MNXM526" + - sbo: "SBO:0000247" - !!omap - id: "s_3861" - name: "L-iditol" @@ -25516,11 +25516,11 @@ - formula: "C6H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "C01507" - - chebi: "CHEBI:18202" - - kegg.compound: "C01507" - - metanetx.chemical: "MNXM3633" - - sbo: "SBO:0000247" + - bigg.metabolite: "C01507" + - chebi: "CHEBI:18202" + - kegg.compound: "C01507" + - metanetx.chemical: "MNXM3633" + - sbo: "SBO:0000247" - !!omap - id: "s_3862" - name: "alpha-D-Galactose" @@ -25528,11 +25528,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "a_gal__D" - - chebi: "CHEBI:28061" - - kegg.compound: "C00984" - - metanetx.chemical: "MNXM390" - - sbo: "SBO:0000247" + - bigg.metabolite: "a_gal__D" + - chebi: "CHEBI:28061" + - kegg.compound: "C00984" + - metanetx.chemical: "MNXM390" + - sbo: "SBO:0000247" - !!omap - id: "s_3863" - name: "3-hydroxy-2-methylpropanoyl-CoA" @@ -25540,10 +25540,10 @@ - formula: "C25H38N7O18P3S" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:57340" - - kegg.compound: "C04047" - - metanetx.chemical: "MNXM1034" - - sbo: "SBO:0000247" + - chebi: "CHEBI:57340" + - kegg.compound: "C04047" + - metanetx.chemical: "MNXM1034" + - sbo: "SBO:0000247" - !!omap - id: "s_3864" - name: "3-hydroxy-2-methylpropanoate" @@ -25551,11 +25551,11 @@ - formula: "C4H7O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3hmp" - - chebi: "CHEBI:11805" - - kegg.compound: "C01188" - - metanetx.chemical: "MNXM396" - - sbo: "SBO:0000247" + - bigg.metabolite: "3hmp" + - chebi: "CHEBI:11805" + - kegg.compound: "C01188" + - metanetx.chemical: "MNXM396" + - sbo: "SBO:0000247" - !!omap - id: "s_3865" - name: "sterols" @@ -25563,10 +25563,10 @@ - formula: "C19H31OR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:15889" - - kegg.compound: "C00370" - - metanetx.chemical: "MNXM82761" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15889" + - kegg.compound: "C00370" + - metanetx.chemical: "MNXM82761" + - sbo: "SBO:0000247" - !!omap - id: "s_3866" - name: "sterols" @@ -25574,10 +25574,10 @@ - formula: "C19H31OR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:15889" - - kegg.compound: "C00370" - - metanetx.chemical: "MNXM82761" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15889" + - kegg.compound: "C00370" + - metanetx.chemical: "MNXM82761" + - sbo: "SBO:0000247" - !!omap - id: "s_3867" - name: "2-Phenylacetamide" @@ -25585,11 +25585,11 @@ - formula: "C8H9NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pad" - - chebi: "CHEBI:16562" - - kegg.compound: "C02505" - - metanetx.chemical: "MNXM2073" - - sbo: "SBO:0000247" + - bigg.metabolite: "pad" + - chebi: "CHEBI:16562" + - kegg.compound: "C02505" + - metanetx.chemical: "MNXM2073" + - sbo: "SBO:0000247" - !!omap - id: "s_3868" - name: "(Indol-3-yl)acetamide" @@ -25597,11 +25597,11 @@ - formula: "C10H10N2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "iad" - - chebi: "CHEBI:16031" - - kegg.compound: "C02693" - - metanetx.chemical: "MNXM2239" - - sbo: "SBO:0000247" + - bigg.metabolite: "iad" + - chebi: "CHEBI:16031" + - kegg.compound: "C02693" + - metanetx.chemical: "MNXM2239" + - sbo: "SBO:0000247" - !!omap - id: "s_3871" - name: "Acrylic acid" @@ -25609,11 +25609,11 @@ - formula: "C3H3O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "acryl" - - chebi: "CHEBI:37080" - - kegg.compound: "C00511" - - metanetx.chemical: "MNXM1368" - - sbo: "SBO:0000247" + - bigg.metabolite: "acryl" + - chebi: "CHEBI:37080" + - kegg.compound: "C00511" + - metanetx.chemical: "MNXM1368" + - sbo: "SBO:0000247" - !!omap - id: "s_3872" - name: "Acrylamide" @@ -25621,11 +25621,11 @@ - formula: "C3H5NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: "aa" - - chebi: "CHEBI:28619" - - kegg.compound: "C01659" - - metanetx.chemical: "MNXM3208" - - sbo: "SBO:0000247" + - bigg.metabolite: "aa" + - chebi: "CHEBI:28619" + - kegg.compound: "C01659" + - metanetx.chemical: "MNXM3208" + - sbo: "SBO:0000247" - !!omap - id: "s_3873" - name: "Benzamide" @@ -25633,10 +25633,10 @@ - formula: "C7H7NO" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:28179" - - kegg.compound: "C09815" - - metanetx.chemical: "MNXM5065" - - sbo: "SBO:0000247" + - chebi: "CHEBI:28179" + - kegg.compound: "C09815" + - metanetx.chemical: "MNXM5065" + - sbo: "SBO:0000247" - !!omap - id: "s_3874" - name: "Benzoate" @@ -25644,11 +25644,11 @@ - formula: "C7H5O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "bz" - - chebi: "CHEBI:16150" - - kegg.compound: "C00180" - - metanetx.chemical: "MNXM217" - - sbo: "SBO:0000247" + - bigg.metabolite: "bz" + - chebi: "CHEBI:16150" + - kegg.compound: "C00180" + - metanetx.chemical: "MNXM217" + - sbo: "SBO:0000247" - !!omap - id: "s_3875" - name: "D-gluconate" @@ -25656,11 +25656,11 @@ - formula: "C6H11O7" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glcn" - - chebi: "CHEBI:18391" - - kegg.compound: "C00257" - - metanetx.chemical: "MNXM341" - - sbo: "SBO:0000247" + - bigg.metabolite: "glcn" + - chebi: "CHEBI:18391" + - kegg.compound: "C00257" + - metanetx.chemical: "MNXM341" + - sbo: "SBO:0000247" - !!omap - id: "s_3876" - name: "Protein C-terminal S-farnesyl-L-cysteine" @@ -25668,10 +25668,10 @@ - formula: "C20H32N2O3SR" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:17171" - - kegg.compound: "C04506" - - metanetx.chemical: "MNXM5285" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17171" + - kegg.compound: "C04506" + - metanetx.chemical: "MNXM5285" + - sbo: "SBO:0000247" - !!omap - id: "s_3877" - name: "Protein C-terminal S-farnesyl-L-cysteine methyl ester" @@ -25679,10 +25679,10 @@ - formula: "C21H35N2O3SR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:15818" - - kegg.compound: "C04748" - - metanetx.chemical: "MNXM6400" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15818" + - kegg.compound: "C04748" + - metanetx.chemical: "MNXM6400" + - sbo: "SBO:0000247" - !!omap - id: "s_3878" - name: "1-phosphatidyl-1D-myo-inositol" @@ -25690,11 +25690,11 @@ - formula: "C11H16O13PR2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "pail_cho" - - chebi: "CHEBI:57880" - - kegg.compound: "C01194" - - metanetx.chemical: "MNXM62" - - sbo: "SBO:0000247" + - bigg.metabolite: "pail_cho" + - chebi: "CHEBI:57880" + - kegg.compound: "C01194" + - metanetx.chemical: "MNXM62" + - sbo: "SBO:0000247" - !!omap - id: "s_3879" - name: "G00143" @@ -25702,9 +25702,9 @@ - formula: "C19H29NO18PR2" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:57265" - - metanetx.chemical: "MNXM92477" - - sbo: "SBO:0000247" + - chebi: "CHEBI:57265" + - metanetx.chemical: "MNXM92477" + - sbo: "SBO:0000247" - !!omap - id: "s_3880" - name: "Ca(2+)" @@ -25712,11 +25712,11 @@ - formula: "Ca" - charge: 2 - annotation: !!omap - - bigg.metabolite: "ca2" - - chebi: "CHEBI:29108" - - kegg.compound: "C00076" - - metanetx.chemical: "MNXM128" - - sbo: "SBO:0000247" + - bigg.metabolite: "ca2" + - chebi: "CHEBI:29108" + - kegg.compound: "C00076" + - metanetx.chemical: "MNXM128" + - sbo: "SBO:0000247" - !!omap - id: "s_3881" - name: "ATP" @@ -25724,11 +25724,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "atp" - - chebi: "CHEBI:30616" - - kegg.compound: "C00002" - - metanetx.chemical: "MNXM3" - - sbo: "SBO:0000247" + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - id: "s_3882" - name: "Ca(2+)" @@ -25736,11 +25736,11 @@ - formula: "Ca" - charge: 2 - annotation: !!omap - - bigg.metabolite: "ca2" - - chebi: "CHEBI:29108" - - kegg.compound: "C00076" - - metanetx.chemical: "MNXM128" - - sbo: "SBO:0000247" + - bigg.metabolite: "ca2" + - chebi: "CHEBI:29108" + - kegg.compound: "C00076" + - metanetx.chemical: "MNXM128" + - sbo: "SBO:0000247" - !!omap - id: "s_3883" - name: "ADP" @@ -25748,11 +25748,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "adp" - - chebi: "CHEBI:456216" - - kegg.compound: "C00008" - - metanetx.chemical: "MNXM7" - - sbo: "SBO:0000247" + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - id: "s_3884" - name: "generic protein" @@ -25760,8 +25760,8 @@ - formula: "C2H4NOR" - charge: 1 - annotation: !!omap - - kegg.compound: "C00017" - - sbo: "SBO:0000247" + - kegg.compound: "C00017" + - sbo: "SBO:0000247" - !!omap - id: "s_3885" - name: "L-Arginyl-protein" @@ -25769,10 +25769,10 @@ - formula: "C8H17N5O2R" - charge: 2 - annotation: !!omap - - chebi: "CHEBI:17518" - - kegg.compound: "C16739" - - metanetx.chemical: "MNXM73312" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17518" + - kegg.compound: "C16739" + - metanetx.chemical: "MNXM73312" + - sbo: "SBO:0000247" - !!omap - id: "s_3886" - name: "Protein asparagine" @@ -25780,9 +25780,9 @@ - formula: "C4H6N2O2R" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:50347" - - kegg.compound: "C03021" - - sbo: "SBO:0000247" + - chebi: "CHEBI:50347" + - kegg.compound: "C03021" + - sbo: "SBO:0000247" - !!omap - id: "s_3887" - name: "G00008" @@ -25790,8 +25790,8 @@ - formula: "C108H182N2O77P2R" - charge: -2 - annotation: !!omap - - metanetx.chemical: "MNXM9308" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM9308" + - sbo: "SBO:0000247" - !!omap - id: "s_3888" - name: "Dolichyl diphosphate" @@ -25799,10 +25799,10 @@ - formula: "C20H35O7P2R" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:57497" - - kegg.compound: "C00621" - - metanetx.chemical: "MNXM2370" - - sbo: "SBO:0000247" + - chebi: "CHEBI:57497" + - kegg.compound: "C00621" + - metanetx.chemical: "MNXM2370" + - sbo: "SBO:0000247" - !!omap - id: "s_3889" - name: "G00009" @@ -25810,8 +25810,8 @@ - formula: "C92H152N4O72R" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:132537" - - sbo: "SBO:0000247" + - chebi: "CHEBI:132537" + - sbo: "SBO:0000247" - !!omap - id: "s_3890" - name: "GDP-alpha-D-mannose" @@ -25819,11 +25819,11 @@ - formula: "C16H23N5O16P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "gdpmann" - - chebi: "CHEBI:57527" - - kegg.compound: "C00096" - - metanetx.chemical: "MNXM82" - - sbo: "SBO:0000247" + - bigg.metabolite: "gdpmann" + - chebi: "CHEBI:57527" + - kegg.compound: "C00096" + - metanetx.chemical: "MNXM82" + - sbo: "SBO:0000247" - !!omap - id: "s_3891" - name: "G10694" @@ -25831,7 +25831,7 @@ - formula: "C68H112N4O52R" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3892" - name: "GDP" @@ -25839,11 +25839,11 @@ - formula: "C10H12N5O11P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "gdp" - - chebi: "CHEBI:58189" - - kegg.compound: "C00035" - - metanetx.chemical: "MNXM30" - - sbo: "SBO:0000247" + - bigg.metabolite: "gdp" + - chebi: "CHEBI:58189" + - kegg.compound: "C00035" + - metanetx.chemical: "MNXM30" + - sbo: "SBO:0000247" - !!omap - id: "s_3893" - name: "G01813" @@ -25851,7 +25851,7 @@ - formula: "C74H122N4O57R" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3894" - name: "G00003" @@ -25859,7 +25859,7 @@ - formula: "C42H72N2O22P2R" - charge: -2 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3895" - name: "G00004" @@ -25867,7 +25867,7 @@ - formula: "C48H82N2O27P2R" - charge: -2 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3896" - name: "G00005" @@ -25875,7 +25875,7 @@ - formula: "C54H92N2O32P2R" - charge: -2 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3897" - name: "2-O-(6-phospho-alpha-D-mannosyl)-D-glycerate" @@ -25883,11 +25883,11 @@ - formula: "C9H14O12P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "man6pglyc" - - chebi: "CHEBI:60331" - - kegg.compound: "C16699" - - metanetx.chemical: "MNXM3470" - - sbo: "SBO:0000247" + - bigg.metabolite: "man6pglyc" + - chebi: "CHEBI:60331" + - kegg.compound: "C16699" + - metanetx.chemical: "MNXM3470" + - sbo: "SBO:0000247" - !!omap - id: "s_3898" - name: "D-mannose 6-phosphate" @@ -25895,11 +25895,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "man6p" - - chebi: "CHEBI:17369" - - kegg.compound: "C00275" - - metanetx.chemical: "MNXM427" - - sbo: "SBO:0000247" + - bigg.metabolite: "man6p" + - chebi: "CHEBI:17369" + - kegg.compound: "C00275" + - metanetx.chemical: "MNXM427" + - sbo: "SBO:0000247" - !!omap - id: "s_3899" - name: "D-Glycerate" @@ -25907,11 +25907,11 @@ - formula: "C3H5O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glyc__R" - - chebi: "CHEBI:16659" - - kegg.compound: "C00258" - - metanetx.chemical: "MNXM189" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc__R" + - chebi: "CHEBI:16659" + - kegg.compound: "C00258" + - metanetx.chemical: "MNXM189" + - sbo: "SBO:0000247" - !!omap - id: "s_3900" - name: "alpha-D-mannoside" @@ -25919,10 +25919,10 @@ - formula: "C6H11O6R" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:27535" - - kegg.compound: "C02603" - - metanetx.chemical: "MNXM3535" - - sbo: "SBO:0000247" + - chebi: "CHEBI:27535" + - kegg.compound: "C02603" + - metanetx.chemical: "MNXM3535" + - sbo: "SBO:0000247" - !!omap - id: "s_3901" - name: "alpha-D-mannopyranose" @@ -25930,10 +25930,10 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:28729" - - kegg.compound: "C00936" - - metanetx.chemical: "MNXM919" - - sbo: "SBO:0000247" + - chebi: "CHEBI:28729" + - kegg.compound: "C00936" + - metanetx.chemical: "MNXM919" + - sbo: "SBO:0000247" - !!omap - id: "s_3902" - name: "non glycosylated sugar acceptor" @@ -25941,7 +25941,7 @@ - formula: "HOR" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3903" - name: "L-Threonylcarbamoyladenylate" @@ -25949,9 +25949,9 @@ - formula: "C15H19N6O11P" - charge: -2 - annotation: !!omap - - kegg.compound: "C20641" - - metanetx.chemical: "MNXM145767" - - sbo: "SBO:0000247" + - kegg.compound: "C20641" + - metanetx.chemical: "MNXM145767" + - sbo: "SBO:0000247" - !!omap - id: "s_3904" - name: "D-Serine" @@ -25959,11 +25959,11 @@ - formula: "C3H7NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ser__D" - - chebi: "CHEBI:16523" - - kegg.compound: "C00740" - - metanetx.chemical: "MNXM694" - - sbo: "SBO:0000247" + - bigg.metabolite: "ser__D" + - chebi: "CHEBI:16523" + - kegg.compound: "C00740" + - metanetx.chemical: "MNXM694" + - sbo: "SBO:0000247" - !!omap - id: "s_3905" - name: "O-acetyl-L-serine" @@ -25971,11 +25971,11 @@ - formula: "C5H9NO4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "acser" - - chebi: "CHEBI:17981" - - kegg.compound: "C00979" - - metanetx.chemical: "MNXM418" - - sbo: "SBO:0000247" + - bigg.metabolite: "acser" + - chebi: "CHEBI:17981" + - kegg.compound: "C00979" + - metanetx.chemical: "MNXM418" + - sbo: "SBO:0000247" - !!omap - id: "s_3906" - name: "hydrogen sulfide" @@ -25983,11 +25983,11 @@ - formula: "HS" - charge: -1 - annotation: !!omap - - bigg.metabolite: "h2s" - - chebi: "CHEBI:29919" - - kegg.compound: "C00283" - - metanetx.chemical: "MNXM89582" - - sbo: "SBO:0000247" + - bigg.metabolite: "h2s" + - chebi: "CHEBI:29919" + - kegg.compound: "C00283" + - metanetx.chemical: "MNXM89582" + - sbo: "SBO:0000247" - !!omap - id: "s_3907" - name: "phosphatidate" @@ -25995,11 +25995,11 @@ - formula: "C5H7O8PR2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pa_EC" - - chebi: "CHEBI:16337" - - kegg.compound: "C00416" - - metanetx.chemical: "MNXM96054" - - sbo: "SBO:0000247" + - bigg.metabolite: "pa_EC" + - chebi: "CHEBI:16337" + - kegg.compound: "C00416" + - metanetx.chemical: "MNXM96054" + - sbo: "SBO:0000247" - !!omap - id: "s_3908" - name: "CDP-diacylglycerol" @@ -26007,11 +26007,11 @@ - formula: "C14H19N3O15P2R2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cdpdag_cho" - - chebi: "CHEBI:17962" - - kegg.compound: "C00269" - - metanetx.chemical: "MNXM201" - - sbo: "SBO:0000247" + - bigg.metabolite: "cdpdag_cho" + - chebi: "CHEBI:17962" + - kegg.compound: "C00269" + - metanetx.chemical: "MNXM201" + - sbo: "SBO:0000247" - !!omap - id: "s_3909" - name: "Sulfur donor" @@ -26019,10 +26019,10 @@ - formula: "" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:80867" - - kegg.compound: "C17023" - - metanetx.chemical: "MNXM4111" - - sbo: "SBO:0000247" + - chebi: "CHEBI:80867" + - kegg.compound: "C17023" + - metanetx.chemical: "MNXM4111" + - sbo: "SBO:0000247" - !!omap - id: "s_3910" - name: "ADP-5-ethyl-4-methylthiazole-2-carboxylate" @@ -26030,10 +26030,10 @@ - formula: "C17H19N6O12P2S" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:134399" - - kegg.compound: "C20784" - - metanetx.chemical: "MNXM722955" - - sbo: "SBO:0000247" + - chebi: "CHEBI:134399" + - kegg.compound: "C20784" + - metanetx.chemical: "MNXM722955" + - sbo: "SBO:0000247" - !!omap - id: "s_3911" - name: "Dolichyl beta-D-glucosyl phosphate" @@ -26041,10 +26041,10 @@ - formula: "C26H46O9PR" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:57525" - - kegg.compound: "C01246" - - metanetx.chemical: "MNXM145615" - - sbo: "SBO:0000247" + - chebi: "CHEBI:57525" + - kegg.compound: "C01246" + - metanetx.chemical: "MNXM145615" + - sbo: "SBO:0000247" - !!omap - id: "s_3912" - name: "G10599" @@ -26052,8 +26052,8 @@ - formula: "C102H172N2O72P2R" - charge: -2 - annotation: !!omap - - metanetx.chemical: "MNXM9258" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM9258" + - sbo: "SBO:0000247" - !!omap - id: "s_3913" - name: "nitric oxide" @@ -26061,11 +26061,11 @@ - formula: "NO" - charge: 0 - annotation: !!omap - - bigg.metabolite: "no" - - chebi: "CHEBI:16480" - - kegg.compound: "C00533" - - metanetx.chemical: "MNXM228" - - sbo: "SBO:0000247" + - bigg.metabolite: "no" + - chebi: "CHEBI:16480" + - kegg.compound: "C00533" + - metanetx.chemical: "MNXM228" + - sbo: "SBO:0000247" - !!omap - id: "s_3914" - name: "nitrate" @@ -26073,11 +26073,11 @@ - formula: "NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "no3" - - chebi: "CHEBI:17632" - - kegg.compound: "C00244" - - metanetx.chemical: "MNXM207" - - sbo: "SBO:0000247" + - bigg.metabolite: "no3" + - chebi: "CHEBI:17632" + - kegg.compound: "C00244" + - metanetx.chemical: "MNXM207" + - sbo: "SBO:0000247" - !!omap - id: "s_3915" - name: "(R)-Lipoate" @@ -26085,11 +26085,11 @@ - formula: "C8H13O2S2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lipoate" - - chebi: "CHEBI:83088" - - kegg.compound: "C16241" - - metanetx.chemical: "MNXM1484" - - sbo: "SBO:0000247" + - bigg.metabolite: "lipoate" + - chebi: "CHEBI:83088" + - kegg.compound: "C16241" + - metanetx.chemical: "MNXM1484" + - sbo: "SBO:0000247" - !!omap - id: "s_3916" - name: "Lipoyl-AMP" @@ -26097,11 +26097,11 @@ - formula: "C18H25N5O8PS2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lipoamp" - - chebi: "CHEBI:83091" - - kegg.compound: "C16238" - - metanetx.chemical: "MNXM2392" - - sbo: "SBO:0000247" + - bigg.metabolite: "lipoamp" + - chebi: "CHEBI:83091" + - kegg.compound: "C16238" + - metanetx.chemical: "MNXM2392" + - sbo: "SBO:0000247" - !!omap - id: "s_3917" - name: "Apoprotein" @@ -26109,10 +26109,10 @@ - formula: "NH2R" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:13850" - - kegg.compound: "C16240" - - metanetx.chemical: "MNXM91491" - - sbo: "SBO:0000247" + - chebi: "CHEBI:13850" + - kegg.compound: "C16240" + - metanetx.chemical: "MNXM91491" + - sbo: "SBO:0000247" - !!omap - id: "s_3918" - name: "Protein N6-(lipoyl)lysine" @@ -26120,10 +26120,10 @@ - formula: "C8H14NOS2R" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:80399" - - kegg.compound: "C16237" - - metanetx.chemical: "MNXM96070" - - sbo: "SBO:0000247" + - chebi: "CHEBI:80399" + - kegg.compound: "C16237" + - metanetx.chemical: "MNXM96070" + - sbo: "SBO:0000247" - !!omap - id: "s_3923" - name: "N-(4-oxoglutarate)-L-cysteinylglycine" @@ -26131,8 +26131,8 @@ - formula: "C10H12N2O7S" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:138256" - - sbo: "SBO:0000247" + - chebi: "CHEBI:138256" + - sbo: "SBO:0000247" - !!omap - id: "s_3924" - name: "N-(4-oxoglutarate)-L-cysteinylglycine" @@ -26140,8 +26140,8 @@ - formula: "C10H12N2O7S" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:138256" - - sbo: "SBO:0000247" + - chebi: "CHEBI:138256" + - sbo: "SBO:0000247" - !!omap - id: "s_3925" - name: "L-cysteinylglycine" @@ -26149,11 +26149,11 @@ - formula: "C5H10N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cgly" - - chebi: "CHEBI:4047" - - kegg.compound: "C01419" - - metanetx.chemical: "MNXM683" - - sbo: "SBO:0000247" + - bigg.metabolite: "cgly" + - chebi: "CHEBI:4047" + - kegg.compound: "C01419" + - metanetx.chemical: "MNXM683" + - sbo: "SBO:0000247" - !!omap - id: "s_3926" - name: "chloride" @@ -26161,11 +26161,11 @@ - formula: "Cl" - charge: -1 - annotation: !!omap - - bigg.metabolite: "cl" - - chebi: "CHEBI:17996" - - kegg.compound: "C00698" - - metanetx.chemical: "MNXM43" - - sbo: "SBO:0000247" + - bigg.metabolite: "cl" + - chebi: "CHEBI:17996" + - kegg.compound: "C00698" + - metanetx.chemical: "MNXM43" + - sbo: "SBO:0000247" - !!omap - id: "s_3927" - name: "ribonucleoside 5'-triphosphate" @@ -26173,10 +26173,10 @@ - formula: "C5H8O13P3R" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:61557" - - kegg.compound: "C03802" - - metanetx.chemical: "MNXM96380" - - sbo: "SBO:0000247" + - chebi: "CHEBI:61557" + - kegg.compound: "C03802" + - metanetx.chemical: "MNXM96380" + - sbo: "SBO:0000247" - !!omap - id: "s_3928" - name: "ribonucleoside 5'-phosphate" @@ -26184,10 +26184,10 @@ - formula: "C5H8O7PR" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:58043" - - kegg.compound: "C00171" - - metanetx.chemical: "MNXM80910" - - sbo: "SBO:0000247" + - chebi: "CHEBI:58043" + - kegg.compound: "C00171" + - metanetx.chemical: "MNXM80910" + - sbo: "SBO:0000247" - !!omap - id: "s_3929" - name: "2'-deoxyribonucleoside 5'-triphosphate" @@ -26195,10 +26195,10 @@ - formula: "C5H8O12P3R" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:61560" - - kegg.compound: "C00677" - - metanetx.chemical: "MNXM96330" - - sbo: "SBO:0000247" + - chebi: "CHEBI:61560" + - kegg.compound: "C00677" + - metanetx.chemical: "MNXM96330" + - sbo: "SBO:0000247" - !!omap - id: "s_3930" - name: "2'-deoxyribonucleoside 5'-phosphate" @@ -26206,10 +26206,10 @@ - formula: "C5H8O6PR" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:65317" - - kegg.compound: "C00676" - - metanetx.chemical: "MNXM6057" - - sbo: "SBO:0000247" + - chebi: "CHEBI:65317" + - kegg.compound: "C00676" + - metanetx.chemical: "MNXM6057" + - sbo: "SBO:0000247" - !!omap - id: "s_3931" - name: "superoxide" @@ -26217,11 +26217,11 @@ - formula: "O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "o2s" - - chebi: "CHEBI:18421" - - kegg.compound: "C00704" - - metanetx.chemical: "MNXM330" - - sbo: "SBO:0000247" + - bigg.metabolite: "o2s" + - chebi: "CHEBI:18421" + - kegg.compound: "C00704" + - metanetx.chemical: "MNXM330" + - sbo: "SBO:0000247" - !!omap - id: "s_3932" - name: "G00012" @@ -26229,8 +26229,8 @@ - formula: "C50H82N4O37" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM9328" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM9328" + - sbo: "SBO:0000247" - !!omap - id: "s_3933" - name: "D-mannose" @@ -26238,11 +26238,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "man" - - chebi: "CHEBI:4208" - - kegg.compound: "C00159" - - metanetx.chemical: "MNXM182" - - sbo: "SBO:0000247" + - bigg.metabolite: "man" + - chebi: "CHEBI:4208" + - kegg.compound: "C00159" + - metanetx.chemical: "MNXM182" + - sbo: "SBO:0000247" - !!omap - id: "s_3934" - name: "Ethylnitronate" @@ -26250,10 +26250,10 @@ - formula: "C2H5NO2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:16268" - - kegg.compound: "C18091" - - metanetx.chemical: "MNXM2143" - - sbo: "SBO:0000247" + - chebi: "CHEBI:16268" + - kegg.compound: "C18091" + - metanetx.chemical: "MNXM2143" + - sbo: "SBO:0000247" - !!omap - id: "s_3935" - name: "Nitrite" @@ -26261,11 +26261,11 @@ - formula: "NO2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "no2" - - chebi: "CHEBI:16301" - - kegg.compound: "C00088" - - metanetx.chemical: "MNXM107" - - sbo: "SBO:0000247" + - bigg.metabolite: "no2" + - chebi: "CHEBI:16301" + - kegg.compound: "C00088" + - metanetx.chemical: "MNXM107" + - sbo: "SBO:0000247" - !!omap - id: "s_3936" - name: "iron(3+)" @@ -26273,10 +26273,10 @@ - formula: "Fe" - charge: 3 - annotation: !!omap - - bigg.metabolite: "fe3" - - kegg.compound: "C14819" - - metanetx.chemical: "MNXM196" - - sbo: "SBO:0000247" + - bigg.metabolite: "fe3" + - kegg.compound: "C14819" + - metanetx.chemical: "MNXM196" + - sbo: "SBO:0000247" - !!omap - id: "s_3937" - name: "Acyl-CoA" @@ -26284,11 +26284,11 @@ - formula: "C22H31N7O17P3SR" - charge: -4 - annotation: !!omap - - bigg.metabolite: "acoa" - - chebi: "CHEBI:58342" - - kegg.compound: "C00040" - - metanetx.chemical: "MNXM44" - - sbo: "SBO:0000247" + - bigg.metabolite: "acoa" + - chebi: "CHEBI:58342" + - kegg.compound: "C00040" + - metanetx.chemical: "MNXM44" + - sbo: "SBO:0000247" - !!omap - id: "s_3938" - name: "1-acyl-sn-glycerol 3-phosphate" @@ -26296,11 +26296,11 @@ - formula: "C4H6O7PR" - charge: -2 - annotation: !!omap - - bigg.metabolite: "1ag3p_SC" - - chebi: "CHEBI:57970" - - kegg.compound: "C00681" - - metanetx.chemical: "MNXM145527" - - sbo: "SBO:0000247" + - bigg.metabolite: "1ag3p_SC" + - chebi: "CHEBI:57970" + - kegg.compound: "C00681" + - metanetx.chemical: "MNXM145527" + - sbo: "SBO:0000247" - !!omap - id: "s_3939" - name: "1,2-diacyl-sn-glycerol 3-phosphate" @@ -26308,11 +26308,11 @@ - formula: "C5H5O8PR2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pa_EC" - - chebi: "CHEBI:58608" - - kegg.compound: "C00416" - - metanetx.chemical: "MNXM96054" - - sbo: "SBO:0000247" + - bigg.metabolite: "pa_EC" + - chebi: "CHEBI:58608" + - kegg.compound: "C00416" + - metanetx.chemical: "MNXM96054" + - sbo: "SBO:0000247" - !!omap - id: "s_3940" - name: "Peptide diphthine" @@ -26320,10 +26320,10 @@ - formula: "C13H20N4O3R2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:18054" - - kegg.compound: "C01573" - - metanetx.chemical: "MNXM3980" - - sbo: "SBO:0000247" + - chebi: "CHEBI:18054" + - kegg.compound: "C01573" + - metanetx.chemical: "MNXM3980" + - sbo: "SBO:0000247" - !!omap - id: "s_3941" - name: "Peptide diphthamide" @@ -26331,10 +26331,10 @@ - formula: "C13H22N5O2R2" - charge: 1 - annotation: !!omap - - chebi: "CHEBI:82696" - - kegg.compound: "C02872" - - metanetx.chemical: "MNXM51194" - - sbo: "SBO:0000247" + - chebi: "CHEBI:82696" + - kegg.compound: "C02872" + - metanetx.chemical: "MNXM51194" + - sbo: "SBO:0000247" - !!omap - id: "s_3942" - name: "8-oxo-dGTP" @@ -26342,9 +26342,9 @@ - formula: "C10H12N5O14P3" - charge: -4 - annotation: !!omap - - kegg.compound: "C19967" - - metanetx.chemical: "MNXM4425" - - sbo: "SBO:0000247" + - kegg.compound: "C19967" + - metanetx.chemical: "MNXM4425" + - sbo: "SBO:0000247" - !!omap - id: "s_3943" - name: "8-oxo-dGMP" @@ -26352,9 +26352,9 @@ - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - kegg.compound: "C19968" - - metanetx.chemical: "MNXM2497" - - sbo: "SBO:0000247" + - kegg.compound: "C19968" + - metanetx.chemical: "MNXM2497" + - sbo: "SBO:0000247" - !!omap - id: "s_3944" - name: "Apoprotein" @@ -26362,10 +26362,10 @@ - formula: "NH2R" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:13850" - - kegg.compound: "C16240" - - metanetx.chemical: "MNXM91491" - - sbo: "SBO:0000247" + - chebi: "CHEBI:13850" + - kegg.compound: "C16240" + - metanetx.chemical: "MNXM91491" + - sbo: "SBO:0000247" - !!omap - id: "s_3945" - name: "Protein N6-(octanoyl)lysine" @@ -26373,10 +26373,10 @@ - formula: "C8H16NOR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:80398" - - kegg.compound: "C16236" - - metanetx.chemical: "MNXM4090" - - sbo: "SBO:0000247" + - chebi: "CHEBI:80398" + - kegg.compound: "C16236" + - metanetx.chemical: "MNXM4090" + - sbo: "SBO:0000247" - !!omap - id: "s_3946" - name: "Lipoyl-[acp]" @@ -26384,11 +26384,11 @@ - formula: "C8H13OS3R" - charge: 0 - annotation: !!omap - - bigg.metabolite: "lipACP" - - chebi: "CHEBI:80400" - - kegg.compound: "C16239" - - metanetx.chemical: "MNXM19093" - - sbo: "SBO:0000247" + - bigg.metabolite: "lipACP" + - chebi: "CHEBI:80400" + - kegg.compound: "C16239" + - metanetx.chemical: "MNXM19093" + - sbo: "SBO:0000247" - !!omap - id: "s_3947" - name: "Protein N6-(lipoyl)lysine" @@ -26396,10 +26396,10 @@ - formula: "C8H14NOS2R" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:80399" - - kegg.compound: "C16237" - - metanetx.chemical: "MNXM96070" - - sbo: "SBO:0000247" + - chebi: "CHEBI:80399" + - kegg.compound: "C16237" + - metanetx.chemical: "MNXM96070" + - sbo: "SBO:0000247" - !!omap - id: "s_3948" - name: "beta-D-Fructose 6-phosphate" @@ -26407,11 +26407,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "f6p_B" - - chebi: "CHEBI:57634" - - kegg.compound: "C05345" - - metanetx.chemical: "MNXM89621" - - sbo: "SBO:0000247" + - bigg.metabolite: "f6p_B" + - chebi: "CHEBI:57634" + - kegg.compound: "C05345" + - metanetx.chemical: "MNXM89621" + - sbo: "SBO:0000247" - !!omap - id: "s_3949" - name: "beta-D-Glucose" @@ -26419,11 +26419,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glc__bD" - - chebi: "CHEBI:15903" - - kegg.compound: "C00221" - - metanetx.chemical: "MNXM105" - - sbo: "SBO:0000247" + - bigg.metabolite: "glc__bD" + - chebi: "CHEBI:15903" + - kegg.compound: "C00221" + - metanetx.chemical: "MNXM105" + - sbo: "SBO:0000247" - !!omap - id: "s_3950" - name: "beta-D-Glucose 6-phosphate" @@ -26431,11 +26431,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "g6p_B" - - chebi: "CHEBI:58247" - - kegg.compound: "C01172" - - metanetx.chemical: "MNXM508" - - sbo: "SBO:0000247" + - bigg.metabolite: "g6p_B" + - chebi: "CHEBI:58247" + - kegg.compound: "C01172" + - metanetx.chemical: "MNXM508" + - sbo: "SBO:0000247" - !!omap - id: "s_3951" - name: "alpha-D-Glucose" @@ -26443,10 +26443,10 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17925" - - kegg.compound: "C00267" - - metanetx.chemical: "MNXM99" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17925" + - kegg.compound: "C00267" + - metanetx.chemical: "MNXM99" + - sbo: "SBO:0000247" - !!omap - id: "s_3952" - name: "alpha-D-Glucose 6-phosphate" @@ -26454,11 +26454,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "g6p_A" - - chebi: "CHEBI:58225" - - kegg.compound: "C00668" - - metanetx.chemical: "MNXM215" - - sbo: "SBO:0000247" + - bigg.metabolite: "g6p_A" + - chebi: "CHEBI:58225" + - kegg.compound: "C00668" + - metanetx.chemical: "MNXM215" + - sbo: "SBO:0000247" - !!omap - id: "s_3953" - name: "D-Glucosamine" @@ -26466,11 +26466,11 @@ - formula: "C6H14NO5" - charge: 1 - annotation: !!omap - - bigg.metabolite: "gam" - - chebi: "CHEBI:47977" - - kegg.compound: "C00329" - - metanetx.chemical: "MNXM533" - - sbo: "SBO:0000247" + - bigg.metabolite: "gam" + - chebi: "CHEBI:47977" + - kegg.compound: "C00329" + - metanetx.chemical: "MNXM533" + - sbo: "SBO:0000247" - !!omap - id: "s_3954" - name: "beta-D-Fructose" @@ -26478,11 +26478,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "fru_B" - - chebi: "CHEBI:28645" - - kegg.compound: "C02336" - - metanetx.chemical: "MNXM1542" - - sbo: "SBO:0000247" + - bigg.metabolite: "fru_B" + - chebi: "CHEBI:28645" + - kegg.compound: "C02336" + - metanetx.chemical: "MNXM1542" + - sbo: "SBO:0000247" - !!omap - id: "s_3958" - name: "D-Glycerate" @@ -26490,11 +26490,11 @@ - formula: "C3H5O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glyc__R" - - chebi: "CHEBI:16659" - - kegg.compound: "C00258" - - metanetx.chemical: "MNXM189" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc__R" + - chebi: "CHEBI:16659" + - kegg.compound: "C00258" + - metanetx.chemical: "MNXM189" + - sbo: "SBO:0000247" - !!omap - id: "s_3959" - name: "2-Propynal" @@ -26502,10 +26502,10 @@ - formula: "C3H2O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:27976" - - kegg.compound: "C05985" - - metanetx.chemical: "MNXM2716" - - sbo: "SBO:0000247" + - chebi: "CHEBI:27976" + - kegg.compound: "C05985" + - metanetx.chemical: "MNXM2716" + - sbo: "SBO:0000247" - !!omap - id: "s_3960" - name: "Propynoate" @@ -26513,10 +26513,10 @@ - formula: "C3HO2" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:15364" - - kegg.compound: "C00804" - - metanetx.chemical: "MNXM2422" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15364" + - kegg.compound: "C00804" + - metanetx.chemical: "MNXM2422" + - sbo: "SBO:0000247" - !!omap - id: "s_3961" - name: "D-Glucuronolactone" @@ -26524,11 +26524,11 @@ - formula: "C6H8O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "glcurn" - - chebi: "CHEBI:18268" - - kegg.compound: "C02670" - - metanetx.chemical: "MNXM17108" - - sbo: "SBO:0000247" + - bigg.metabolite: "glcurn" + - chebi: "CHEBI:18268" + - kegg.compound: "C02670" + - metanetx.chemical: "MNXM17108" + - sbo: "SBO:0000247" - !!omap - id: "s_3962" - name: "D-Glucarate" @@ -26536,11 +26536,11 @@ - formula: "C6H8O8" - charge: -2 - annotation: !!omap - - bigg.metabolite: "glcr" - - chebi: "CHEBI:30612" - - kegg.compound: "C00818" - - metanetx.chemical: "MNXM744" - - sbo: "SBO:0000247" + - bigg.metabolite: "glcr" + - chebi: "CHEBI:30612" + - kegg.compound: "C00818" + - metanetx.chemical: "MNXM744" + - sbo: "SBO:0000247" - !!omap - id: "s_3963" - name: "4-Trimethylammoniobutanal" @@ -26548,11 +26548,11 @@ - formula: "C7H16NO" - charge: 1 - annotation: !!omap - - bigg.metabolite: "4tmeabut" - - chebi: "CHEBI:18020" - - kegg.compound: "C01149" - - metanetx.chemical: "MNXM940" - - sbo: "SBO:0000247" + - bigg.metabolite: "4tmeabut" + - chebi: "CHEBI:18020" + - kegg.compound: "C01149" + - metanetx.chemical: "MNXM940" + - sbo: "SBO:0000247" - !!omap - id: "s_3964" - name: "4-Trimethylammoniobutanoate" @@ -26560,11 +26560,11 @@ - formula: "C7H15NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4tmeabutn" - - chebi: "CHEBI:1941" - - kegg.compound: "C01181" - - metanetx.chemical: "MNXM626" - - sbo: "SBO:0000247" + - bigg.metabolite: "4tmeabutn" + - chebi: "CHEBI:1941" + - kegg.compound: "C01181" + - metanetx.chemical: "MNXM626" + - sbo: "SBO:0000247" - !!omap - id: "s_3965" - name: "(S)-Methylmalonate semialdehyde" @@ -26572,11 +26572,11 @@ - formula: "C4H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "mmtsa" - - chebi: "CHEBI:62413" - - kegg.compound: "C06002" - - metanetx.chemical: "MNXM933" - - sbo: "SBO:0000247" + - bigg.metabolite: "mmtsa" + - chebi: "CHEBI:62413" + - kegg.compound: "C06002" + - metanetx.chemical: "MNXM933" + - sbo: "SBO:0000247" - !!omap - id: "s_3966" - name: "Methylmalonate" @@ -26584,11 +26584,11 @@ - formula: "C4H4O4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "mmal" - - chebi: "CHEBI:17453" - - kegg.compound: "C02170" - - metanetx.chemical: "MNXM1572" - - sbo: "SBO:0000247" + - bigg.metabolite: "mmal" + - chebi: "CHEBI:17453" + - kegg.compound: "C02170" + - metanetx.chemical: "MNXM1572" + - sbo: "SBO:0000247" - !!omap - id: "s_3967" - name: "Imidazole-4-acetaldehyde" @@ -26596,11 +26596,11 @@ - formula: "C5H6N2O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "im4act" - - chebi: "CHEBI:27398" - - kegg.compound: "C05130" - - metanetx.chemical: "MNXM1745" - - sbo: "SBO:0000247" + - bigg.metabolite: "im4act" + - chebi: "CHEBI:27398" + - kegg.compound: "C05130" + - metanetx.chemical: "MNXM1745" + - sbo: "SBO:0000247" - !!omap - id: "s_3968" - name: "Imidazole-4-acetate" @@ -26608,11 +26608,11 @@ - formula: "C5H5N2O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "im4ac" - - chebi: "CHEBI:16974" - - kegg.compound: "C02835" - - metanetx.chemical: "MNXM1330" - - sbo: "SBO:0000247" + - bigg.metabolite: "im4ac" + - chebi: "CHEBI:16974" + - kegg.compound: "C02835" + - metanetx.chemical: "MNXM1330" + - sbo: "SBO:0000247" - !!omap - id: "s_3969" - name: "3alpha,7alpha-Dihydroxy-5beta-cholestan-26-al" @@ -26620,11 +26620,11 @@ - formula: "C27H46O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "xol7ah2al" - - chebi: "CHEBI:27428" - - kegg.compound: "C05445" - - metanetx.chemical: "MNXM1174" - - sbo: "SBO:0000247" + - bigg.metabolite: "xol7ah2al" + - chebi: "CHEBI:27428" + - kegg.compound: "C05445" + - metanetx.chemical: "MNXM1174" + - sbo: "SBO:0000247" - !!omap - id: "s_3970" - name: "3alpha,7alpha-Dihydroxy-5beta-cholestanate" @@ -26632,11 +26632,11 @@ - formula: "C27H45O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "dhcholestanate" - - chebi: "CHEBI:16577" - - kegg.compound: "C04554" - - metanetx.chemical: "MNXM484588" - - sbo: "SBO:0000247" + - bigg.metabolite: "dhcholestanate" + - chebi: "CHEBI:16577" + - kegg.compound: "C04554" + - metanetx.chemical: "MNXM484588" + - sbo: "SBO:0000247" - !!omap - id: "s_3971" - name: "5-Hydroxyindoleacetaldehyde" @@ -26644,11 +26644,11 @@ - formula: "C10H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "5hoxindact" - - chebi: "CHEBI:50157" - - kegg.compound: "C05634" - - metanetx.chemical: "MNXM1057" - - sbo: "SBO:0000247" + - bigg.metabolite: "5hoxindact" + - chebi: "CHEBI:50157" + - kegg.compound: "C05634" + - metanetx.chemical: "MNXM1057" + - sbo: "SBO:0000247" - !!omap - id: "s_3972" - name: "5-Hydroxyindoleacetate" @@ -26656,11 +26656,11 @@ - formula: "C10H8NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "5hoxindoa" - - chebi: "CHEBI:27823" - - kegg.compound: "C05635" - - metanetx.chemical: "MNXM1961" - - sbo: "SBO:0000247" + - bigg.metabolite: "5hoxindoa" + - chebi: "CHEBI:27823" + - kegg.compound: "C05635" + - metanetx.chemical: "MNXM1961" + - sbo: "SBO:0000247" - !!omap - id: "s_3973" - name: "N4-Acetylaminobutanal" @@ -26668,11 +26668,11 @@ - formula: "C6H11NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "n4abutn" - - chebi: "CHEBI:7386" - - kegg.compound: "C05936" - - metanetx.chemical: "MNXM1527" - - sbo: "SBO:0000247" + - bigg.metabolite: "n4abutn" + - chebi: "CHEBI:7386" + - kegg.compound: "C05936" + - metanetx.chemical: "MNXM1527" + - sbo: "SBO:0000247" - !!omap - id: "s_3974" - name: "4-Acetamidobutanoate" @@ -26680,11 +26680,11 @@ - formula: "C6H10NO3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "4aabutn" - - chebi: "CHEBI:11951" - - kegg.compound: "C02946" - - metanetx.chemical: "MNXM2083" - - sbo: "SBO:0000247" + - bigg.metabolite: "4aabutn" + - chebi: "CHEBI:11951" + - kegg.compound: "C02946" + - metanetx.chemical: "MNXM2083" + - sbo: "SBO:0000247" - !!omap - id: "s_3975" - name: "trans-3-Chloroallyl aldehyde" @@ -26692,10 +26692,10 @@ - formula: "C3H3ClO" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:28452" - - kegg.compound: "C06613" - - metanetx.chemical: "MNXM5312" - - sbo: "SBO:0000247" + - chebi: "CHEBI:28452" + - kegg.compound: "C06613" + - metanetx.chemical: "MNXM5312" + - sbo: "SBO:0000247" - !!omap - id: "s_3976" - name: "trans-3-Chloroacrylic acid" @@ -26703,10 +26703,10 @@ - formula: "C3H2ClO2" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:19982" - - kegg.compound: "C06614" - - metanetx.chemical: "MNXM6086" - - sbo: "SBO:0000247" + - chebi: "CHEBI:19982" + - kegg.compound: "C06614" + - metanetx.chemical: "MNXM6086" + - sbo: "SBO:0000247" - !!omap - id: "s_3977" - name: "cis-3-Chloroallyl aldehyde" @@ -26714,10 +26714,10 @@ - formula: "C3H3ClO" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:80465" - - kegg.compound: "C16348" - - metanetx.chemical: "MNXM6216" - - sbo: "SBO:0000247" + - chebi: "CHEBI:80465" + - kegg.compound: "C16348" + - metanetx.chemical: "MNXM6216" + - sbo: "SBO:0000247" - !!omap - id: "s_3978" - name: "cis-3-Chloroacrylic acid" @@ -26725,10 +26725,10 @@ - formula: "C3H2ClO2" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:27397" - - kegg.compound: "C06615" - - metanetx.chemical: "MNXM46935" - - sbo: "SBO:0000247" + - chebi: "CHEBI:27397" + - kegg.compound: "C06615" + - metanetx.chemical: "MNXM46935" + - sbo: "SBO:0000247" - !!omap - id: "s_3979" - name: "Chloroacetaldehyde" @@ -26736,10 +26736,10 @@ - formula: "C2H3ClO" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:27871" - - kegg.compound: "C06754" - - metanetx.chemical: "MNXM1816" - - sbo: "SBO:0000247" + - chebi: "CHEBI:27871" + - kegg.compound: "C06754" + - metanetx.chemical: "MNXM1816" + - sbo: "SBO:0000247" - !!omap - id: "s_3980" - name: "Chloroacetic acid" @@ -26747,10 +26747,10 @@ - formula: "C2H2ClO2" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:27869" - - kegg.compound: "C06755" - - metanetx.chemical: "MNXM1468" - - sbo: "SBO:0000247" + - chebi: "CHEBI:27869" + - kegg.compound: "C06755" + - metanetx.chemical: "MNXM1468" + - sbo: "SBO:0000247" - !!omap - id: "s_3981" - name: "Perillyl aldehyde" @@ -26758,11 +26758,11 @@ - formula: "C10H14O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pylald" - - chebi: "CHEBI:15421" - - kegg.compound: "C02576" - - metanetx.chemical: "MNXM2149" - - sbo: "SBO:0000247" + - bigg.metabolite: "pylald" + - chebi: "CHEBI:15421" + - kegg.compound: "C02576" + - metanetx.chemical: "MNXM2149" + - sbo: "SBO:0000247" - !!omap - id: "s_3982" - name: "Perillic acid" @@ -26770,11 +26770,11 @@ - formula: "C10H13O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "peracd" - - chebi: "CHEBI:36999" - - kegg.compound: "C11924" - - metanetx.chemical: "MNXM2414" - - sbo: "SBO:0000247" + - bigg.metabolite: "peracd" + - chebi: "CHEBI:36999" + - kegg.compound: "C11924" + - metanetx.chemical: "MNXM2414" + - sbo: "SBO:0000247" - !!omap - id: "s_3983" - name: "2-trans,6-trans-Farnesal" @@ -26782,10 +26782,10 @@ - formula: "C15H24O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:15894" - - kegg.compound: "C03461" - - metanetx.chemical: "MNXM1959" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15894" + - kegg.compound: "C03461" + - metanetx.chemical: "MNXM1959" + - sbo: "SBO:0000247" - !!omap - id: "s_3984" - name: "Farnesoic acid" @@ -26793,10 +26793,10 @@ - formula: "C15H23O2" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:84162" - - kegg.compound: "C16502" - - metanetx.chemical: "MNXM3989" - - sbo: "SBO:0000247" + - chebi: "CHEBI:84162" + - kegg.compound: "C16502" + - metanetx.chemical: "MNXM3989" + - sbo: "SBO:0000247" - !!omap - id: "s_3985" - name: "phospholipid" @@ -26804,9 +26804,9 @@ - formula: "C5H6O8PR3" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:16247" - - kegg.compound: "C00865" - - sbo: "SBO:0000247" + - chebi: "CHEBI:16247" + - kegg.compound: "C00865" + - sbo: "SBO:0000247" - !!omap - id: "s_3986" - name: "phospholipid" @@ -26814,9 +26814,9 @@ - formula: "C5H6O8PR3" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:16247" - - kegg.compound: "C00865" - - sbo: "SBO:0000247" + - chebi: "CHEBI:16247" + - kegg.compound: "C00865" + - sbo: "SBO:0000247" - !!omap - id: "s_3987" - name: "ADP" @@ -26824,11 +26824,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "adp" - - chebi: "CHEBI:456216" - - kegg.compound: "C00008" - - metanetx.chemical: "MNXM7" - - sbo: "SBO:0000247" + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - id: "s_3988" - name: "1-oleoyl-sn-glycerol" @@ -26836,9 +26836,9 @@ - formula: "C21H40O4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:75757" - - metanetx.chemical: "MNXM62354" - - sbo: "SBO:0000247" + - chebi: "CHEBI:75757" + - metanetx.chemical: "MNXM62354" + - sbo: "SBO:0000247" - !!omap - id: "s_3989" - name: "G10526" @@ -26846,8 +26846,8 @@ - formula: "C66H112N2O42P2R" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:132511" - - sbo: "SBO:0000247" + - chebi: "CHEBI:132511" + - sbo: "SBO:0000247" - !!omap - id: "s_3990" - name: "G00006" @@ -26855,8 +26855,8 @@ - formula: "C78H132N2O52P2R" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:132515" - - sbo: "SBO:0000247" + - chebi: "CHEBI:132515" + - sbo: "SBO:0000247" - !!omap - id: "s_3991" - name: "carnosine" @@ -26864,11 +26864,11 @@ - formula: "C9H14N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "carn" - - chebi: "CHEBI:15727" - - kegg.compound: "C00386" - - metanetx.chemical: "MNXM1419" - - sbo: "SBO:0000247" + - bigg.metabolite: "carn" + - chebi: "CHEBI:15727" + - kegg.compound: "C00386" + - metanetx.chemical: "MNXM1419" + - sbo: "SBO:0000247" - !!omap - id: "s_3992" - name: "anserine" @@ -26876,11 +26876,11 @@ - formula: "C10H16N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ans" - - chebi: "CHEBI:18323" - - kegg.compound: "C01262" - - metanetx.chemical: "MNXM2639" - - sbo: "SBO:0000247" + - bigg.metabolite: "ans" + - chebi: "CHEBI:18323" + - kegg.compound: "C01262" + - metanetx.chemical: "MNXM2639" + - sbo: "SBO:0000247" - !!omap - id: "s_3993" - name: "G10595" @@ -26888,8 +26888,8 @@ - formula: "C72H122N2O47P2R" - charge: -2 - annotation: !!omap - - metanetx.chemical: "MNXM9262" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM9262" + - sbo: "SBO:0000247" - !!omap - id: "s_3994" - name: "G10596" @@ -26897,8 +26897,8 @@ - formula: "C78H132N2O52P2R" - charge: -2 - annotation: !!omap - - metanetx.chemical: "MNXM9265" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM9265" + - sbo: "SBO:0000247" - !!omap - id: "s_3995" - name: "G10597" @@ -26906,7 +26906,7 @@ - formula: "C84H142N2O57P2R" - charge: -2 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_3996" - name: "G00007" @@ -26914,9 +26914,9 @@ - formula: "C90H152N2O62P2R" - charge: -2 - annotation: !!omap - - kegg.compound: "C05868" - - metanetx.chemical: "MNXM31425" - - sbo: "SBO:0000247" + - kegg.compound: "C05868" + - metanetx.chemical: "MNXM31425" + - sbo: "SBO:0000247" - !!omap - id: "s_3997" - name: "glycolate" @@ -26924,11 +26924,11 @@ - formula: "C2H3O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "glyclt" - - chebi: "CHEBI:29805" - - kegg.compound: "C00160" - - metanetx.chemical: "MNXM222" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyclt" + - chebi: "CHEBI:29805" + - kegg.compound: "C00160" + - metanetx.chemical: "MNXM222" + - sbo: "SBO:0000247" - !!omap - id: "s_3998" - name: "sucrose" @@ -26936,11 +26936,11 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: "sucr" - - chebi: "CHEBI:17992" - - kegg.compound: "C00089" - - metanetx.chemical: "MNXM167" - - sbo: "SBO:0000247" + - bigg.metabolite: "sucr" + - chebi: "CHEBI:17992" + - kegg.compound: "C00089" + - metanetx.chemical: "MNXM167" + - sbo: "SBO:0000247" - !!omap - id: "s_3999" - name: "Isomaltose" @@ -26948,11 +26948,11 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: "isomal" - - chebi: "CHEBI:28189" - - kegg.compound: "C00252" - - metanetx.chemical: "MNXM58018" - - sbo: "SBO:0000247" + - bigg.metabolite: "isomal" + - chebi: "CHEBI:28189" + - kegg.compound: "C00252" + - metanetx.chemical: "MNXM58018" + - sbo: "SBO:0000247" - !!omap - id: "s_4000" - name: "Dextrin" @@ -26960,10 +26960,10 @@ - formula: "C12H20O10" - charge: 0 - annotation: !!omap - - bigg.metabolite: "starch" - - chebi: "CHEBI:28675" - - kegg.compound: "C00721" - - sbo: "SBO:0000247" + - bigg.metabolite: "starch" + - chebi: "CHEBI:28675" + - kegg.compound: "C00721" + - sbo: "SBO:0000247" - !!omap - id: "s_4001" - name: "G10598" @@ -26971,8 +26971,8 @@ - formula: "C96H162N2O67P2R" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM9336" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM9336" + - sbo: "SBO:0000247" - !!omap - id: "s_4002" - name: "G00149" @@ -26980,8 +26980,8 @@ - formula: "" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM7903" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM7903" + - sbo: "SBO:0000247" - !!omap - id: "s_4003" - name: "G00140" @@ -26989,8 +26989,8 @@ - formula: "" - charge: 0 - annotation: !!omap - - metanetx.chemical: "MNXM9266" - - sbo: "SBO:0000247" + - metanetx.chemical: "MNXM9266" + - sbo: "SBO:0000247" - !!omap - id: "s_4004" - name: "Sulfur donor" @@ -26998,10 +26998,10 @@ - formula: "" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:80867" - - kegg.compound: "C17023" - - metanetx.chemical: "MNXM4111" - - sbo: "SBO:0000247" + - chebi: "CHEBI:80867" + - kegg.compound: "C17023" + - metanetx.chemical: "MNXM4111" + - sbo: "SBO:0000247" - !!omap - id: "s_4005" - name: "5'-Deoxyadenosine" @@ -27009,11 +27009,11 @@ - formula: "C10H13N5O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dad_5" - - chebi: "CHEBI:17319" - - kegg.compound: "C05198" - - metanetx.chemical: "MNXM316" - - sbo: "SBO:0000247" + - bigg.metabolite: "dad_5" + - chebi: "CHEBI:17319" + - kegg.compound: "C05198" + - metanetx.chemical: "MNXM316" + - sbo: "SBO:0000247" - !!omap - id: "s_4006" - name: "S-sulfanyl-[L-cysteine desulfurase]" @@ -27021,7 +27021,7 @@ - formula: "" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_4007" - name: "[disordered-form [Fe-S] cluster scaffold protein]" @@ -27029,7 +27029,7 @@ - formula: "" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_4008" - name: "S-sulfanyl-[cysteine desulfurase]-[disordered-form scaffold protein] complex" @@ -27037,7 +27037,7 @@ - formula: "" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_4009" - name: "hydrogen cyanide" @@ -27045,11 +27045,11 @@ - formula: "CHN" - charge: 0 - annotation: !!omap - - bigg.metabolite: "cyan" - - chebi: "CHEBI:18407" - - kegg.compound: "C01326" - - metanetx.chemical: "MNXM254" - - sbo: "SBO:0000247" + - bigg.metabolite: "cyan" + - chebi: "CHEBI:18407" + - kegg.compound: "C01326" + - metanetx.chemical: "MNXM254" + - sbo: "SBO:0000247" - !!omap - id: "s_4010" - name: "thiosulfate" @@ -27057,11 +27057,11 @@ - formula: "HO3S2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "tsul" - - chebi: "CHEBI:33541" - - kegg.compound: "C00320" - - metanetx.chemical: "MNXM323" - - sbo: "SBO:0000247" + - bigg.metabolite: "tsul" + - chebi: "CHEBI:33541" + - kegg.compound: "C00320" + - metanetx.chemical: "MNXM323" + - sbo: "SBO:0000247" - !!omap - id: "s_4011" - name: "sulphite" @@ -27069,11 +27069,11 @@ - formula: "O3S" - charge: -2 - annotation: !!omap - - bigg.metabolite: "so3" - - chebi: "CHEBI:17359" - - kegg.compound: "C11481" - - metanetx.chemical: "MNXM105630" - - sbo: "SBO:0000247" + - bigg.metabolite: "so3" + - chebi: "CHEBI:17359" + - kegg.compound: "C11481" + - metanetx.chemical: "MNXM105630" + - sbo: "SBO:0000247" - !!omap - id: "s_4012" - name: "thiocyanate" @@ -27081,11 +27081,11 @@ - formula: "CNS" - charge: -1 - annotation: !!omap - - bigg.metabolite: "tcynt" - - chebi: "CHEBI:29200" - - kegg.compound: "C01755" - - metanetx.chemical: "MNXM762" - - sbo: "SBO:0000247" + - bigg.metabolite: "tcynt" + - chebi: "CHEBI:29200" + - kegg.compound: "C01755" + - metanetx.chemical: "MNXM762" + - sbo: "SBO:0000247" - !!omap - id: "s_4013" - name: "Mg(2+)" @@ -27093,11 +27093,11 @@ - formula: "Mg" - charge: 2 - annotation: !!omap - - bigg.metabolite: "mg2" - - chebi: "CHEBI:18420" - - kegg.compound: "C00305" - - metanetx.chemical: "MNXM653" - - sbo: "SBO:0000247" + - bigg.metabolite: "mg2" + - chebi: "CHEBI:18420" + - kegg.compound: "C00305" + - metanetx.chemical: "MNXM653" + - sbo: "SBO:0000247" - !!omap - id: "s_4014" - name: "Mg(2+)" @@ -27105,11 +27105,11 @@ - formula: "Mg" - charge: 2 - annotation: !!omap - - bigg.metabolite: "mg2" - - chebi: "CHEBI:18420" - - kegg.compound: "C00305" - - metanetx.chemical: "MNXM653" - - sbo: "SBO:0000247" + - bigg.metabolite: "mg2" + - chebi: "CHEBI:18420" + - kegg.compound: "C00305" + - metanetx.chemical: "MNXM653" + - sbo: "SBO:0000247" - !!omap - id: "s_4015" - name: "UDP-D-glucose" @@ -27117,11 +27117,11 @@ - formula: "C15H22N2O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "udpg" - - chebi: "CHEBI:58367" - - kegg.compound: "C00029" - - metanetx.chemical: "MNXM722710" - - sbo: "SBO:0000247" + - bigg.metabolite: "udpg" + - chebi: "CHEBI:58367" + - kegg.compound: "C00029" + - metanetx.chemical: "MNXM722710" + - sbo: "SBO:0000247" - !!omap - id: "s_4016" - name: "sulphate" @@ -27129,11 +27129,11 @@ - formula: "O4S" - charge: -2 - annotation: !!omap - - bigg.metabolite: "so4" - - chebi: "CHEBI:16189" - - kegg.compound: "C00059" - - metanetx.chemical: "MNXM58" - - sbo: "SBO:0000247" + - bigg.metabolite: "so4" + - chebi: "CHEBI:16189" + - kegg.compound: "C00059" + - metanetx.chemical: "MNXM58" + - sbo: "SBO:0000247" - !!omap - id: "s_4017" - name: "N-Acetyl-D-glucosamine" @@ -27141,11 +27141,11 @@ - formula: "C8H15NO6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "acgam" - - chebi: "CHEBI:506227" - - kegg.compound: "C00140" - - metanetx.chemical: "MNXM143" - - sbo: "SBO:0000247" + - bigg.metabolite: "acgam" + - chebi: "CHEBI:506227" + - kegg.compound: "C00140" + - metanetx.chemical: "MNXM143" + - sbo: "SBO:0000247" - !!omap - id: "s_4018" - name: "polyphosphate" @@ -27153,10 +27153,10 @@ - formula: "HO7P2" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:16838" - - kegg.compound: "C00404" - - metanetx.chemical: "MNXM77738" - - sbo: "SBO:0000247" + - chebi: "CHEBI:16838" + - kegg.compound: "C00404" + - metanetx.chemical: "MNXM77738" + - sbo: "SBO:0000247" - !!omap - id: "s_4019" - name: "Cu2(+)" @@ -27164,11 +27164,11 @@ - formula: "Cu" - charge: 2 - annotation: !!omap - - bigg.metabolite: "cu2" - - chebi: "CHEBI:29036" - - kegg.compound: "C00070" - - metanetx.chemical: "MNXM632" - - sbo: "SBO:0000247" + - bigg.metabolite: "cu2" + - chebi: "CHEBI:29036" + - kegg.compound: "C00070" + - metanetx.chemical: "MNXM632" + - sbo: "SBO:0000247" - !!omap - id: "s_4020" - name: "Cu2(+)" @@ -27176,11 +27176,11 @@ - formula: "Cu" - charge: 2 - annotation: !!omap - - bigg.metabolite: "cu2" - - chebi: "CHEBI:29036" - - kegg.compound: "C00070" - - metanetx.chemical: "MNXM632" - - sbo: "SBO:0000247" + - bigg.metabolite: "cu2" + - chebi: "CHEBI:29036" + - kegg.compound: "C00070" + - metanetx.chemical: "MNXM632" + - sbo: "SBO:0000247" - !!omap - id: "s_4021" - name: "2-Oxoglutaramate" @@ -27188,11 +27188,11 @@ - formula: "C5H6NO4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "HC00591" - - chebi: "CHEBI:16769" - - kegg.compound: "C00940" - - metanetx.chemical: "MNXM575" - - sbo: "SBO:0000247" + - bigg.metabolite: "HC00591" + - chebi: "CHEBI:16769" + - kegg.compound: "C00940" + - metanetx.chemical: "MNXM575" + - sbo: "SBO:0000247" - !!omap - id: "s_4022" - name: "porphyrin" @@ -27200,10 +27200,10 @@ - formula: "C20H14N4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:8337" - - kegg.compound: "C05113" - - metanetx.chemical: "MNXM2714" - - sbo: "SBO:0000247" + - chebi: "CHEBI:8337" + - kegg.compound: "C05113" + - metanetx.chemical: "MNXM2714" + - sbo: "SBO:0000247" - !!omap - id: "s_4023" - name: "porphyrin" @@ -27211,10 +27211,10 @@ - formula: "C20H14N4" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:8337" - - kegg.compound: "C05113" - - metanetx.chemical: "MNXM2714" - - sbo: "SBO:0000247" + - chebi: "CHEBI:8337" + - kegg.compound: "C05113" + - metanetx.chemical: "MNXM2714" + - sbo: "SBO:0000247" - !!omap - id: "s_4024" - name: "Starch" @@ -27222,7 +27222,7 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_4025" - name: "UDP-N-acetyl-alpha-D-glucosamine" @@ -27230,11 +27230,11 @@ - formula: "C17H25N3O17P2" - charge: -2 - annotation: !!omap - - bigg.metabolite: "uacgam" - - chebi: "CHEBI:57705" - - kegg.compound: "C00043" - - metanetx.chemical: "MNXM47" - - sbo: "SBO:0000247" + - bigg.metabolite: "uacgam" + - chebi: "CHEBI:57705" + - kegg.compound: "C00043" + - metanetx.chemical: "MNXM47" + - sbo: "SBO:0000247" - !!omap - id: "s_4026" - name: "Zn(2+)" @@ -27242,11 +27242,11 @@ - formula: "Zn" - charge: 2 - annotation: !!omap - - bigg.metabolite: "zn2" - - chebi: "CHEBI:29105" - - kegg.compound: "C00038" - - metanetx.chemical: "MNXM149" - - sbo: "SBO:0000247" + - bigg.metabolite: "zn2" + - chebi: "CHEBI:29105" + - kegg.compound: "C00038" + - metanetx.chemical: "MNXM149" + - sbo: "SBO:0000247" - !!omap - id: "s_4027" - name: "Zn(2+)" @@ -27254,11 +27254,11 @@ - formula: "Zn" - charge: 2 - annotation: !!omap - - bigg.metabolite: "zn2" - - chebi: "CHEBI:29105" - - kegg.compound: "C00038" - - metanetx.chemical: "MNXM149" - - sbo: "SBO:0000247" + - bigg.metabolite: "zn2" + - chebi: "CHEBI:29105" + - kegg.compound: "C00038" + - metanetx.chemical: "MNXM149" + - sbo: "SBO:0000247" - !!omap - id: "s_4028" - name: "RX" @@ -27266,10 +27266,10 @@ - formula: "RX" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17792" - - kegg.compound: "C01322" - - metanetx.chemical: "MNXM6428" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17792" + - kegg.compound: "C01322" + - metanetx.chemical: "MNXM6428" + - sbo: "SBO:0000247" - !!omap - id: "s_4029" - name: "HX" @@ -27277,10 +27277,10 @@ - formula: "X" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:16042" - - kegg.compound: "C00462" - - metanetx.chemical: "MNXM55844" - - sbo: "SBO:0000247" + - chebi: "CHEBI:16042" + - kegg.compound: "C00462" + - metanetx.chemical: "MNXM55844" + - sbo: "SBO:0000247" - !!omap - id: "s_4030" - name: "R-S-glutathione" @@ -27288,10 +27288,10 @@ - formula: "C10H16N3O6SR" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17021" - - kegg.compound: "C02320" - - metanetx.chemical: "MNXM3350" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17021" + - kegg.compound: "C02320" + - metanetx.chemical: "MNXM3350" + - sbo: "SBO:0000247" - !!omap - id: "s_4031" - name: "iron(3+)" @@ -27299,11 +27299,11 @@ - formula: "Fe" - charge: 3 - annotation: !!omap - - bigg.metabolite: "fe3" - - chebi: "CHEBI:29034" - - kegg.compound: "C14819" - - metanetx.chemical: "MNXM196" - - sbo: "SBO:0000247" + - bigg.metabolite: "fe3" + - chebi: "CHEBI:29034" + - kegg.compound: "C14819" + - metanetx.chemical: "MNXM196" + - sbo: "SBO:0000247" - !!omap - id: "s_4032" - name: "[protein]-L-lysine" @@ -27311,10 +27311,10 @@ - formula: "C6H13N2O" - charge: 1 - annotation: !!omap - - bigg.metabolite: "pcollglys" - - chebi: "CHEBI:29969" - - kegg.compound: "C02188" - - sbo: "SBO:0000247" + - bigg.metabolite: "pcollglys" + - chebi: "CHEBI:29969" + - kegg.compound: "C02188" + - sbo: "SBO:0000247" - !!omap - id: "s_4033" - name: "[protein]-N(6)-acetyl-L-lysine" @@ -27322,8 +27322,8 @@ - formula: "C8H14N2O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:61930" - - sbo: "SBO:0000247" + - chebi: "CHEBI:61930" + - sbo: "SBO:0000247" - !!omap - id: "s_4034" - name: "Ala-Gln" @@ -27331,10 +27331,10 @@ - formula: "C8H15N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_L_gln__L" - - chebi: "CHEBI:73788" - - metanetx.chemical: "MNXM40495" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_gln__L" + - chebi: "CHEBI:73788" + - metanetx.chemical: "MNXM40495" + - sbo: "SBO:0000247" - !!omap - id: "s_4035" - name: "Ala-Gln" @@ -27342,10 +27342,10 @@ - formula: "C8H15N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_L_gln__L" - - chebi: "CHEBI:73788" - - metanetx.chemical: "MNXM40495" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_gln__L" + - chebi: "CHEBI:73788" + - metanetx.chemical: "MNXM40495" + - sbo: "SBO:0000247" - !!omap - id: "s_4036" - name: "Ala-Gln" @@ -27353,10 +27353,10 @@ - formula: "C8H15N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_L_gln__L" - - chebi: "CHEBI:73788" - - metanetx.chemical: "MNXM40495" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_gln__L" + - chebi: "CHEBI:73788" + - metanetx.chemical: "MNXM40495" + - sbo: "SBO:0000247" - !!omap - id: "s_4037" - name: "Ala-Glu" @@ -27364,11 +27364,11 @@ - formula: "C8H13N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "LalaLglu" - - chebi: "CHEBI:61396" - - kegg.compound: "C20958" - - metanetx.chemical: "MNXM4026" - - sbo: "SBO:0000247" + - bigg.metabolite: "LalaLglu" + - chebi: "CHEBI:61396" + - kegg.compound: "C20958" + - metanetx.chemical: "MNXM4026" + - sbo: "SBO:0000247" - !!omap - id: "s_4038" - name: "Ala-Glu" @@ -27376,11 +27376,11 @@ - formula: "C8H13N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "LalaLglu" - - chebi: "CHEBI:61396" - - kegg.compound: "C20958" - - metanetx.chemical: "MNXM4026" - - sbo: "SBO:0000247" + - bigg.metabolite: "LalaLglu" + - chebi: "CHEBI:61396" + - kegg.compound: "C20958" + - metanetx.chemical: "MNXM4026" + - sbo: "SBO:0000247" - !!omap - id: "s_4039" - name: "Ala-Glu" @@ -27388,11 +27388,11 @@ - formula: "C8H13N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "LalaLglu" - - chebi: "CHEBI:61396" - - kegg.compound: "C20958" - - metanetx.chemical: "MNXM4026" - - sbo: "SBO:0000247" + - bigg.metabolite: "LalaLglu" + - chebi: "CHEBI:61396" + - kegg.compound: "C20958" + - metanetx.chemical: "MNXM4026" + - sbo: "SBO:0000247" - !!omap - id: "s_4040" - name: "Ala-Thr" @@ -27400,10 +27400,10 @@ - formula: "C7H14N2O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_L_Thr__L" - - chebi: "CHEBI:73762" - - metanetx.chemical: "MNXM40497" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_Thr__L" + - chebi: "CHEBI:73762" + - metanetx.chemical: "MNXM40497" + - sbo: "SBO:0000247" - !!omap - id: "s_4041" - name: "Ala-Thr" @@ -27411,10 +27411,10 @@ - formula: "C7H14N2O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_L_Thr__L" - - chebi: "CHEBI:73762" - - metanetx.chemical: "MNXM40497" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_Thr__L" + - chebi: "CHEBI:73762" + - metanetx.chemical: "MNXM40497" + - sbo: "SBO:0000247" - !!omap - id: "s_4042" - name: "Ala-Thr" @@ -27422,10 +27422,10 @@ - formula: "C7H14N2O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_L_Thr__L" - - chebi: "CHEBI:73762" - - metanetx.chemical: "MNXM40497" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_Thr__L" + - chebi: "CHEBI:73762" + - metanetx.chemical: "MNXM40497" + - sbo: "SBO:0000247" - !!omap - id: "s_4043" - name: "L-threonine" @@ -27433,11 +27433,11 @@ - formula: "C4H9NO3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "thr__L" - - chebi: "CHEBI:16857" - - kegg.compound: "C00188" - - metanetx.chemical: "MNXM142" - - sbo: "SBO:0000247" + - bigg.metabolite: "thr__L" + - chebi: "CHEBI:16857" + - kegg.compound: "C00188" + - metanetx.chemical: "MNXM142" + - sbo: "SBO:0000247" - !!omap - id: "s_4044" - name: "thymidine 3'-monophosphate" @@ -27445,9 +27445,9 @@ - formula: "C10H13N2O8P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:77843" - - metanetx.chemical: "MNXM87165" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77843" + - metanetx.chemical: "MNXM87165" + - sbo: "SBO:0000247" - !!omap - id: "s_4045" - name: "thymidine 3'-monophosphate" @@ -27455,9 +27455,9 @@ - formula: "C10H13N2O8P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:77843" - - metanetx.chemical: "MNXM87165" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77843" + - metanetx.chemical: "MNXM87165" + - sbo: "SBO:0000247" - !!omap - id: "s_4046" - name: "thymidine 5'-monophosphate" @@ -27465,9 +27465,9 @@ - formula: "C10H13N2O8P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:15245" - - metanetx.chemical: "MNXM87167" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15245" + - metanetx.chemical: "MNXM87167" + - sbo: "SBO:0000247" - !!omap - id: "s_4047" - name: "thymidine 5'-monophosphate" @@ -27475,9 +27475,9 @@ - formula: "C10H13N2O8P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:15245" - - metanetx.chemical: "MNXM87167" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15245" + - metanetx.chemical: "MNXM87167" + - sbo: "SBO:0000247" - !!omap - id: "s_4048" - name: "glycerol 1-phosphate" @@ -27485,11 +27485,11 @@ - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "glyc1p" - - chebi: "CHEBI:231935" - - kegg.compound: "C03189" - - metanetx.chemical: "MNXM682" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc1p" + - chebi: "CHEBI:231935" + - kegg.compound: "C03189" + - metanetx.chemical: "MNXM682" + - sbo: "SBO:0000247" - !!omap - id: "s_4049" - name: "glycerol 1-phosphate" @@ -27497,11 +27497,11 @@ - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "glyc1p" - - chebi: "CHEBI:231935" - - kegg.compound: "C03189" - - metanetx.chemical: "MNXM682" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc1p" + - chebi: "CHEBI:231935" + - kegg.compound: "C03189" + - metanetx.chemical: "MNXM682" + - sbo: "SBO:0000247" - !!omap - id: "s_4050" - name: "Ala-His" @@ -27509,10 +27509,10 @@ - formula: "C9H14N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_L_his__L" - - chebi: "CHEBI:73771" - - metanetx.chemical: "MNXM40496" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_his__L" + - chebi: "CHEBI:73771" + - metanetx.chemical: "MNXM40496" + - sbo: "SBO:0000247" - !!omap - id: "s_4051" - name: "Ala-His" @@ -27520,10 +27520,10 @@ - formula: "C9H14N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_L_his__L" - - chebi: "CHEBI:73771" - - metanetx.chemical: "MNXM40496" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_his__L" + - chebi: "CHEBI:73771" + - metanetx.chemical: "MNXM40496" + - sbo: "SBO:0000247" - !!omap - id: "s_4052" - name: "Ala-His" @@ -27531,10 +27531,10 @@ - formula: "C9H14N4O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_L_his__L" - - chebi: "CHEBI:73771" - - metanetx.chemical: "MNXM40496" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_his__L" + - chebi: "CHEBI:73771" + - metanetx.chemical: "MNXM40496" + - sbo: "SBO:0000247" - !!omap - id: "s_4053" - name: "Gly-Asn" @@ -27542,10 +27542,10 @@ - formula: "C6H11N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly_asn__L" - - chebi: "CHEBI:73888" - - metanetx.chemical: "MNXM55268" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly_asn__L" + - chebi: "CHEBI:73888" + - metanetx.chemical: "MNXM55268" + - sbo: "SBO:0000247" - !!omap - id: "s_4054" - name: "Gly-Asn" @@ -27553,10 +27553,10 @@ - formula: "C6H11N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly_asn__L" - - chebi: "CHEBI:73888" - - metanetx.chemical: "MNXM55268" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly_asn__L" + - chebi: "CHEBI:73888" + - metanetx.chemical: "MNXM55268" + - sbo: "SBO:0000247" - !!omap - id: "s_4055" - name: "Gly-Asn" @@ -27564,10 +27564,10 @@ - formula: "C6H11N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly_asn__L" - - chebi: "CHEBI:73888" - - metanetx.chemical: "MNXM55268" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly_asn__L" + - chebi: "CHEBI:73888" + - metanetx.chemical: "MNXM55268" + - sbo: "SBO:0000247" - !!omap - id: "s_4056" - name: "Gly-Gln" @@ -27575,10 +27575,10 @@ - formula: "C7H13N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly_gln__L" - - chebi: "CHEBI:73898" - - metanetx.chemical: "MNXM55276" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly_gln__L" + - chebi: "CHEBI:73898" + - metanetx.chemical: "MNXM55276" + - sbo: "SBO:0000247" - !!omap - id: "s_4057" - name: "Gly-Gln" @@ -27586,10 +27586,10 @@ - formula: "C7H13N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly_gln__L" - - chebi: "CHEBI:73898" - - metanetx.chemical: "MNXM55276" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly_gln__L" + - chebi: "CHEBI:73898" + - metanetx.chemical: "MNXM55276" + - sbo: "SBO:0000247" - !!omap - id: "s_4058" - name: "Gly-Gln" @@ -27597,10 +27597,10 @@ - formula: "C7H13N3O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly_gln__L" - - chebi: "CHEBI:73898" - - metanetx.chemical: "MNXM55276" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly_gln__L" + - chebi: "CHEBI:73898" + - metanetx.chemical: "MNXM55276" + - sbo: "SBO:0000247" - !!omap - id: "s_4059" - name: "Gly-Glu" @@ -27608,10 +27608,10 @@ - formula: "C7H11N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gly_glu__L" - - chebi: "CHEBI:73784" - - metanetx.chemical: "MNXM55454" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly_glu__L" + - chebi: "CHEBI:73784" + - metanetx.chemical: "MNXM55454" + - sbo: "SBO:0000247" - !!omap - id: "s_4060" - name: "Gly-Glu" @@ -27619,10 +27619,10 @@ - formula: "C7H11N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gly_glu__L" - - chebi: "CHEBI:73784" - - metanetx.chemical: "MNXM55454" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly_glu__L" + - chebi: "CHEBI:73784" + - metanetx.chemical: "MNXM55454" + - sbo: "SBO:0000247" - !!omap - id: "s_4061" - name: "Gly-Glu" @@ -27630,10 +27630,10 @@ - formula: "C7H11N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "gly_glu__L" - - chebi: "CHEBI:73784" - - metanetx.chemical: "MNXM55454" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly_glu__L" + - chebi: "CHEBI:73784" + - metanetx.chemical: "MNXM55454" + - sbo: "SBO:0000247" - !!omap - id: "s_4062" - name: "glycerol 2-phosphate(2-)" @@ -27641,11 +27641,11 @@ - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "glyc2p" - - chebi: "CHEBI:58083" - - kegg.compound: "C02979" - - metanetx.chemical: "MNXM2527" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc2p" + - chebi: "CHEBI:58083" + - kegg.compound: "C02979" + - metanetx.chemical: "MNXM2527" + - sbo: "SBO:0000247" - !!omap - id: "s_4063" - name: "glycerol 2-phosphate(2-)" @@ -27653,11 +27653,11 @@ - formula: "C3H7O6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "glyc2p" - - chebi: "CHEBI:58083" - - kegg.compound: "C02979" - - metanetx.chemical: "MNXM2527" - - sbo: "SBO:0000247" + - bigg.metabolite: "glyc2p" + - chebi: "CHEBI:58083" + - kegg.compound: "C02979" + - metanetx.chemical: "MNXM2527" + - sbo: "SBO:0000247" - !!omap - id: "s_4064" - name: "O-phospho-L-threonine" @@ -27665,11 +27665,11 @@ - formula: "C4H8NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "thrp" - - chebi: "CHEBI:58675" - - kegg.compound: "C12147" - - metanetx.chemical: "MNXM1492" - - sbo: "SBO:0000247" + - bigg.metabolite: "thrp" + - chebi: "CHEBI:58675" + - kegg.compound: "C12147" + - metanetx.chemical: "MNXM1492" + - sbo: "SBO:0000247" - !!omap - id: "s_4065" - name: "O-phospho-L-threonine" @@ -27677,11 +27677,11 @@ - formula: "C4H8NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "thrp" - - chebi: "CHEBI:58675" - - kegg.compound: "C12147" - - metanetx.chemical: "MNXM1492" - - sbo: "SBO:0000247" + - bigg.metabolite: "thrp" + - chebi: "CHEBI:58675" + - kegg.compound: "C12147" + - metanetx.chemical: "MNXM1492" + - sbo: "SBO:0000247" - !!omap - id: "s_4066" - name: "guanosine 2'-monophosphate" @@ -27689,9 +27689,9 @@ - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:74604" - - metanetx.chemical: "MNXM18285" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74604" + - metanetx.chemical: "MNXM18285" + - sbo: "SBO:0000247" - !!omap - id: "s_4067" - name: "guanosine 2'-monophosphate" @@ -27699,9 +27699,9 @@ - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:74604" - - metanetx.chemical: "MNXM18285" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74604" + - metanetx.chemical: "MNXM18285" + - sbo: "SBO:0000247" - !!omap - id: "s_4068" - name: "3'-GMP" @@ -27709,11 +27709,11 @@ - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3gmp" - - chebi: "CHEBI:60732" - - kegg.compound: "C06193" - - metanetx.chemical: "MNXM2183" - - sbo: "SBO:0000247" + - bigg.metabolite: "3gmp" + - chebi: "CHEBI:60732" + - kegg.compound: "C06193" + - metanetx.chemical: "MNXM2183" + - sbo: "SBO:0000247" - !!omap - id: "s_4069" - name: "3'-GMP" @@ -27721,11 +27721,11 @@ - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3gmp" - - chebi: "CHEBI:60732" - - kegg.compound: "C06193" - - metanetx.chemical: "MNXM2183" - - sbo: "SBO:0000247" + - bigg.metabolite: "3gmp" + - chebi: "CHEBI:60732" + - kegg.compound: "C06193" + - metanetx.chemical: "MNXM2183" + - sbo: "SBO:0000247" - !!omap - id: "s_4070" - name: "2-phosphoglycolate" @@ -27733,11 +27733,11 @@ - formula: "C2H2O6P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "2pglyc" - - chebi: "CHEBI:58033" - - kegg.compound: "C00988" - - metanetx.chemical: "MNXM2074" - - sbo: "SBO:0000247" + - bigg.metabolite: "2pglyc" + - chebi: "CHEBI:58033" + - kegg.compound: "C00988" + - metanetx.chemical: "MNXM2074" + - sbo: "SBO:0000247" - !!omap - id: "s_4071" - name: "2-phosphoglycolate" @@ -27745,11 +27745,11 @@ - formula: "C2H2O6P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "2pglyc" - - chebi: "CHEBI:58033" - - kegg.compound: "C00988" - - metanetx.chemical: "MNXM2074" - - sbo: "SBO:0000247" + - bigg.metabolite: "2pglyc" + - chebi: "CHEBI:58033" + - kegg.compound: "C00988" + - metanetx.chemical: "MNXM2074" + - sbo: "SBO:0000247" - !!omap - id: "s_4072" - name: "cysteamine S-phosphate" @@ -27757,9 +27757,9 @@ - formula: "C2H7NO3PS" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:74631" - - metanetx.chemical: "MNXM48297" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74631" + - metanetx.chemical: "MNXM48297" + - sbo: "SBO:0000247" - !!omap - id: "s_4073" - name: "cysteamine" @@ -27767,11 +27767,11 @@ - formula: "C2H8NS" - charge: 1 - annotation: !!omap - - bigg.metabolite: "cysam" - - chebi: "CHEBI:58029" - - kegg.compound: "C01678" - - metanetx.chemical: "MNXM1226" - - sbo: "SBO:0000247" + - bigg.metabolite: "cysam" + - chebi: "CHEBI:58029" + - kegg.compound: "C01678" + - metanetx.chemical: "MNXM1226" + - sbo: "SBO:0000247" - !!omap - id: "s_4074" - name: "cysteamine" @@ -27779,11 +27779,11 @@ - formula: "C2H8NS" - charge: 1 - annotation: !!omap - - bigg.metabolite: "cysam" - - chebi: "CHEBI:58029" - - kegg.compound: "C01678" - - metanetx.chemical: "MNXM1226" - - sbo: "SBO:0000247" + - bigg.metabolite: "cysam" + - chebi: "CHEBI:58029" + - kegg.compound: "C01678" + - metanetx.chemical: "MNXM1226" + - sbo: "SBO:0000247" - !!omap - id: "s_4075" - name: "cysteamine S-phosphate" @@ -27791,9 +27791,9 @@ - formula: "C2H7NO3PS" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:74631" - - metanetx.chemical: "MNXM48297" - - sbo: "SBO:0000247" + - chebi: "CHEBI:74631" + - metanetx.chemical: "MNXM48297" + - sbo: "SBO:0000247" - !!omap - id: "s_4076" - name: "hypotaurine" @@ -27801,10 +27801,10 @@ - formula: "C2H7NO2S" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:16668" - - kegg.compound: "C00519" - - metanetx.chemical: "MNXM726" - - sbo: "SBO:0000247" + - chebi: "CHEBI:16668" + - kegg.compound: "C00519" + - metanetx.chemical: "MNXM726" + - sbo: "SBO:0000247" - !!omap - id: "s_4077" - name: "O-phosphonatooxy-D-serine(2-)" @@ -27812,11 +27812,11 @@ - formula: "C3H6NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pser__D" - - chebi: "CHEBI:58680" - - kegg.compound: "C02532" - - metanetx.chemical: "MNXM4752" - - sbo: "SBO:0000247" + - bigg.metabolite: "pser__D" + - chebi: "CHEBI:58680" + - kegg.compound: "C02532" + - metanetx.chemical: "MNXM4752" + - sbo: "SBO:0000247" - !!omap - id: "s_4078" - name: "O-phosphonatooxy-D-serine(2-)" @@ -27824,11 +27824,11 @@ - formula: "C3H6NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pser__D" - - chebi: "CHEBI:58680" - - kegg.compound: "C02532" - - metanetx.chemical: "MNXM4752" - - sbo: "SBO:0000247" + - bigg.metabolite: "pser__D" + - chebi: "CHEBI:58680" + - kegg.compound: "C02532" + - metanetx.chemical: "MNXM4752" + - sbo: "SBO:0000247" - !!omap - id: "s_4079" - name: "2-aminobutanoate" @@ -27836,10 +27836,10 @@ - formula: "C4H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "C02356" - - chebi: "CHEBI:35621" - - metanetx.chemical: "MNXM15850" - - sbo: "SBO:0000247" + - bigg.metabolite: "C02356" + - chebi: "CHEBI:35621" + - metanetx.chemical: "MNXM15850" + - sbo: "SBO:0000247" - !!omap - id: "s_4080" - name: "2-aminobutanoate" @@ -27847,10 +27847,10 @@ - formula: "C4H9NO2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "C02356" - - chebi: "CHEBI:35621" - - metanetx.chemical: "MNXM15850" - - sbo: "SBO:0000247" + - bigg.metabolite: "C02356" + - chebi: "CHEBI:35621" + - metanetx.chemical: "MNXM15850" + - sbo: "SBO:0000247" - !!omap - id: "s_4081" - name: "uridine 2'-phosphate" @@ -27858,10 +27858,10 @@ - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:77802" - - kegg.compound: "C03031" - - metanetx.chemical: "MNXM13238" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77802" + - kegg.compound: "C03031" + - metanetx.chemical: "MNXM13238" + - sbo: "SBO:0000247" - !!omap - id: "s_4082" - name: "uridine 2'-phosphate" @@ -27869,10 +27869,10 @@ - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:77802" - - kegg.compound: "C03031" - - metanetx.chemical: "MNXM13238" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77802" + - kegg.compound: "C03031" + - metanetx.chemical: "MNXM13238" + - sbo: "SBO:0000247" - !!omap - id: "s_4083" - name: "3'-UMP" @@ -27880,11 +27880,11 @@ - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3ump" - - chebi: "CHEBI:60784" - - kegg.compound: "C01368" - - metanetx.chemical: "MNXM2184" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ump" + - chebi: "CHEBI:60784" + - kegg.compound: "C01368" + - metanetx.chemical: "MNXM2184" + - sbo: "SBO:0000247" - !!omap - id: "s_4084" - name: "3'-UMP" @@ -27892,11 +27892,11 @@ - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3ump" - - chebi: "CHEBI:60784" - - kegg.compound: "C01368" - - metanetx.chemical: "MNXM2184" - - sbo: "SBO:0000247" + - bigg.metabolite: "3ump" + - chebi: "CHEBI:60784" + - kegg.compound: "C01368" + - metanetx.chemical: "MNXM2184" + - sbo: "SBO:0000247" - !!omap - id: "s_4085" - name: "Gly-Met" @@ -27904,10 +27904,10 @@ - formula: "C7H14N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly_met__L" - - chebi: "CHEBI:74393" - - metanetx.chemical: "MNXM55287" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly_met__L" + - chebi: "CHEBI:74393" + - metanetx.chemical: "MNXM55287" + - sbo: "SBO:0000247" - !!omap - id: "s_4086" - name: "Gly-Met" @@ -27915,10 +27915,10 @@ - formula: "C7H14N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly_met__L" - - chebi: "CHEBI:74393" - - metanetx.chemical: "MNXM55287" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly_met__L" + - chebi: "CHEBI:74393" + - metanetx.chemical: "MNXM55287" + - sbo: "SBO:0000247" - !!omap - id: "s_4087" - name: "Gly-Met" @@ -27926,10 +27926,10 @@ - formula: "C7H14N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "gly_met__L" - - chebi: "CHEBI:74393" - - metanetx.chemical: "MNXM55287" - - sbo: "SBO:0000247" + - bigg.metabolite: "gly_met__L" + - chebi: "CHEBI:74393" + - metanetx.chemical: "MNXM55287" + - sbo: "SBO:0000247" - !!omap - id: "s_4088" - name: "N-phosphocreatine" @@ -27937,9 +27937,9 @@ - formula: "C4H8N3O5P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:58092" - - metanetx.chemical: "MNXM819" - - sbo: "SBO:0000247" + - chebi: "CHEBI:58092" + - metanetx.chemical: "MNXM819" + - sbo: "SBO:0000247" - !!omap - id: "s_4089" - name: "creatinine" @@ -27947,11 +27947,11 @@ - formula: "C4H7N3O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "creat" - - chebi: "CHEBI:16737" - - kegg.compound: "C00791" - - metanetx.chemical: "MNXM1470" - - sbo: "SBO:0000247" + - bigg.metabolite: "creat" + - chebi: "CHEBI:16737" + - kegg.compound: "C00791" + - metanetx.chemical: "MNXM1470" + - sbo: "SBO:0000247" - !!omap - id: "s_4090" - name: "N-phosphocreatine" @@ -27959,9 +27959,9 @@ - formula: "C4H8N3O5P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:58092" - - metanetx.chemical: "MNXM819" - - sbo: "SBO:0000247" + - chebi: "CHEBI:58092" + - metanetx.chemical: "MNXM819" + - sbo: "SBO:0000247" - !!omap - id: "s_4091" - name: "creatinine" @@ -27969,11 +27969,11 @@ - formula: "C4H7N3O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "creat" - - chebi: "CHEBI:16737" - - kegg.compound: "C00791" - - metanetx.chemical: "MNXM1470" - - sbo: "SBO:0000247" + - bigg.metabolite: "creat" + - chebi: "CHEBI:16737" + - kegg.compound: "C00791" + - metanetx.chemical: "MNXM1470" + - sbo: "SBO:0000247" - !!omap - id: "s_4092" - name: "N(omega)-phospho-L-arginine" @@ -27981,11 +27981,11 @@ - formula: "C6H14N4O5P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "argp" - - chebi: "CHEBI:58477" - - kegg.compound: "C05945" - - metanetx.chemical: "MNXM3663" - - sbo: "SBO:0000247" + - bigg.metabolite: "argp" + - chebi: "CHEBI:58477" + - kegg.compound: "C05945" + - metanetx.chemical: "MNXM3663" + - sbo: "SBO:0000247" - !!omap - id: "s_4093" - name: "N(omega)-phospho-L-arginine" @@ -27993,11 +27993,11 @@ - formula: "C6H14N4O5P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "argp" - - chebi: "CHEBI:58477" - - kegg.compound: "C05945" - - metanetx.chemical: "MNXM3663" - - sbo: "SBO:0000247" + - bigg.metabolite: "argp" + - chebi: "CHEBI:58477" + - kegg.compound: "C05945" + - metanetx.chemical: "MNXM3663" + - sbo: "SBO:0000247" - !!omap - id: "s_4094" - name: "2',3'-cyclic GMP" @@ -28005,11 +28005,11 @@ - formula: "C10H11N5O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "23cgmp" - - chebi: "CHEBI:60837" - - kegg.compound: "C06194" - - metanetx.chemical: "MNXM3149" - - sbo: "SBO:0000247" + - bigg.metabolite: "23cgmp" + - chebi: "CHEBI:60837" + - kegg.compound: "C06194" + - metanetx.chemical: "MNXM3149" + - sbo: "SBO:0000247" - !!omap - id: "s_4095" - name: "2',3'-cyclic GMP" @@ -28017,11 +28017,11 @@ - formula: "C10H11N5O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "23cgmp" - - chebi: "CHEBI:60837" - - kegg.compound: "C06194" - - metanetx.chemical: "MNXM3149" - - sbo: "SBO:0000247" + - bigg.metabolite: "23cgmp" + - chebi: "CHEBI:60837" + - kegg.compound: "C06194" + - metanetx.chemical: "MNXM3149" + - sbo: "SBO:0000247" - !!omap - id: "s_4096" - name: "O(4)-phospho-L-tyrosine" @@ -28029,11 +28029,11 @@ - formula: "C9H10NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "tyrp" - - chebi: "CHEBI:62338" - - kegg.compound: "C06501" - - metanetx.chemical: "MNXM3323" - - sbo: "SBO:0000247" + - bigg.metabolite: "tyrp" + - chebi: "CHEBI:62338" + - kegg.compound: "C06501" + - metanetx.chemical: "MNXM3323" + - sbo: "SBO:0000247" - !!omap - id: "s_4097" - name: "O(4)-phospho-L-tyrosine" @@ -28041,11 +28041,11 @@ - formula: "C9H10NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "tyrp" - - chebi: "CHEBI:62338" - - kegg.compound: "C06501" - - metanetx.chemical: "MNXM3323" - - sbo: "SBO:0000247" + - bigg.metabolite: "tyrp" + - chebi: "CHEBI:62338" + - kegg.compound: "C06501" + - metanetx.chemical: "MNXM3323" + - sbo: "SBO:0000247" - !!omap - id: "s_4098" - name: "triphosphate" @@ -28053,11 +28053,11 @@ - formula: "O10P3" - charge: -5 - annotation: !!omap - - bigg.metabolite: "pppi" - - chebi: "CHEBI:18036" - - kegg.compound: "C00536" - - metanetx.chemical: "MNXM332" - - sbo: "SBO:0000247" + - bigg.metabolite: "pppi" + - chebi: "CHEBI:18036" + - kegg.compound: "C00536" + - metanetx.chemical: "MNXM332" + - sbo: "SBO:0000247" - !!omap - id: "s_4099" - name: "triphosphate" @@ -28065,11 +28065,11 @@ - formula: "O10P3" - charge: -5 - annotation: !!omap - - bigg.metabolite: "pppi" - - chebi: "CHEBI:18036" - - kegg.compound: "C00536" - - metanetx.chemical: "MNXM332" - - sbo: "SBO:0000247" + - bigg.metabolite: "pppi" + - chebi: "CHEBI:18036" + - kegg.compound: "C00536" + - metanetx.chemical: "MNXM332" + - sbo: "SBO:0000247" - !!omap - id: "s_4100" - name: "cytidine 2'-phosphate" @@ -28077,10 +28077,10 @@ - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:77766" - - kegg.compound: "C03104" - - metanetx.chemical: "MNXM11237" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77766" + - kegg.compound: "C03104" + - metanetx.chemical: "MNXM11237" + - sbo: "SBO:0000247" - !!omap - id: "s_4101" - name: "cytidine 2'-phosphate" @@ -28088,10 +28088,10 @@ - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - chebi: "CHEBI:77766" - - kegg.compound: "C03104" - - metanetx.chemical: "MNXM11237" - - sbo: "SBO:0000247" + - chebi: "CHEBI:77766" + - kegg.compound: "C03104" + - metanetx.chemical: "MNXM11237" + - sbo: "SBO:0000247" - !!omap - id: "s_4102" - name: "2',3'-cyclic UMP" @@ -28099,11 +28099,11 @@ - formula: "C9H10N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "23cump" - - chebi: "CHEBI:60873" - - kegg.compound: "C02355" - - metanetx.chemical: "MNXM3150" - - sbo: "SBO:0000247" + - bigg.metabolite: "23cump" + - chebi: "CHEBI:60873" + - kegg.compound: "C02355" + - metanetx.chemical: "MNXM3150" + - sbo: "SBO:0000247" - !!omap - id: "s_4103" - name: "2',3'-cyclic UMP" @@ -28111,11 +28111,11 @@ - formula: "C9H10N2O8P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "23cump" - - chebi: "CHEBI:60873" - - kegg.compound: "C02355" - - metanetx.chemical: "MNXM3150" - - sbo: "SBO:0000247" + - bigg.metabolite: "23cump" + - chebi: "CHEBI:60873" + - kegg.compound: "C02355" + - metanetx.chemical: "MNXM3150" + - sbo: "SBO:0000247" - !!omap - id: "s_4104" - name: "3-sulfino-L-alanine" @@ -28123,11 +28123,11 @@ - formula: "C3H6NO4S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3sala" - - chebi: "CHEBI:61085" - - kegg.compound: "C00606" - - metanetx.chemical: "MNXM498" - - sbo: "SBO:0000247" + - bigg.metabolite: "3sala" + - chebi: "CHEBI:61085" + - kegg.compound: "C00606" + - metanetx.chemical: "MNXM498" + - sbo: "SBO:0000247" - !!omap - id: "s_4105" - name: "3-sulfino-L-alanine" @@ -28135,11 +28135,11 @@ - formula: "C3H6NO4S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3sala" - - chebi: "CHEBI:61085" - - kegg.compound: "C00606" - - metanetx.chemical: "MNXM498" - - sbo: "SBO:0000247" + - bigg.metabolite: "3sala" + - chebi: "CHEBI:61085" + - kegg.compound: "C00606" + - metanetx.chemical: "MNXM498" + - sbo: "SBO:0000247" - !!omap - id: "s_4106" - name: "3'-AMP" @@ -28147,11 +28147,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3amp" - - chebi: "CHEBI:60880" - - kegg.compound: "C01367" - - metanetx.chemical: "MNXM1985" - - sbo: "SBO:0000247" + - bigg.metabolite: "3amp" + - chebi: "CHEBI:60880" + - kegg.compound: "C01367" + - metanetx.chemical: "MNXM1985" + - sbo: "SBO:0000247" - !!omap - id: "s_4107" - name: "3'-AMP" @@ -28159,11 +28159,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "3amp" - - chebi: "CHEBI:60880" - - kegg.compound: "C01367" - - metanetx.chemical: "MNXM1985" - - sbo: "SBO:0000247" + - bigg.metabolite: "3amp" + - chebi: "CHEBI:60880" + - kegg.compound: "C01367" + - metanetx.chemical: "MNXM1985" + - sbo: "SBO:0000247" - !!omap - id: "s_4108" - name: "6-O-alpha-D-glucopyranosyl-D-fructofuranose" @@ -28171,11 +28171,11 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pala" - - chebi: "CHEBI:18394" - - kegg.compound: "C01742" - - metanetx.chemical: "MNXM3518" - - sbo: "SBO:0000247" + - bigg.metabolite: "pala" + - chebi: "CHEBI:18394" + - kegg.compound: "C01742" + - metanetx.chemical: "MNXM3518" + - sbo: "SBO:0000247" - !!omap - id: "s_4109" - name: "6-O-alpha-D-glucopyranosyl-D-fructofuranose" @@ -28183,11 +28183,11 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - bigg.metabolite: "pala" - - chebi: "CHEBI:18394" - - kegg.compound: "C01742" - - metanetx.chemical: "MNXM3518" - - sbo: "SBO:0000247" + - bigg.metabolite: "pala" + - chebi: "CHEBI:18394" + - kegg.compound: "C01742" + - metanetx.chemical: "MNXM3518" + - sbo: "SBO:0000247" - !!omap - id: "s_4110" - name: "N-acetyl-L-cysteine" @@ -28195,11 +28195,11 @@ - formula: "C5H8NO3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "CE1310" - - chebi: "CHEBI:78236" - - kegg.compound: "C06809" - - metanetx.chemical: "MNXM98606" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE1310" + - chebi: "CHEBI:78236" + - kegg.compound: "C06809" + - metanetx.chemical: "MNXM98606" + - sbo: "SBO:0000247" - !!omap - id: "s_4111" - name: "N-acetyl-L-cysteine" @@ -28207,11 +28207,11 @@ - formula: "C5H8NO3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "CE1310" - - chebi: "CHEBI:78236" - - kegg.compound: "C06809" - - metanetx.chemical: "MNXM98606" - - sbo: "SBO:0000247" + - bigg.metabolite: "CE1310" + - chebi: "CHEBI:78236" + - kegg.compound: "C06809" + - metanetx.chemical: "MNXM98606" + - sbo: "SBO:0000247" - !!omap - id: "s_4112" - name: "tetrathionate" @@ -28219,11 +28219,11 @@ - formula: "O6S4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "tet" - - chebi: "CHEBI:15226" - - kegg.compound: "C02084" - - metanetx.chemical: "MNXM1781" - - sbo: "SBO:0000247" + - bigg.metabolite: "tet" + - chebi: "CHEBI:15226" + - kegg.compound: "C02084" + - metanetx.chemical: "MNXM1781" + - sbo: "SBO:0000247" - !!omap - id: "s_4113" - name: "thiosulfate" @@ -28231,11 +28231,11 @@ - formula: "HO3S2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "tsul" - - chebi: "CHEBI:33542" - - kegg.compound: "C00320" - - metanetx.chemical: "MNXM323" - - sbo: "SBO:0000247" + - bigg.metabolite: "tsul" + - chebi: "CHEBI:33542" + - kegg.compound: "C00320" + - metanetx.chemical: "MNXM323" + - sbo: "SBO:0000247" - !!omap - id: "s_4114" - name: "tetrathionate" @@ -28243,11 +28243,11 @@ - formula: "O6S4" - charge: -2 - annotation: !!omap - - bigg.metabolite: "tet" - - chebi: "CHEBI:15226" - - kegg.compound: "C02084" - - metanetx.chemical: "MNXM1781" - - sbo: "SBO:0000247" + - bigg.metabolite: "tet" + - chebi: "CHEBI:15226" + - kegg.compound: "C02084" + - metanetx.chemical: "MNXM1781" + - sbo: "SBO:0000247" - !!omap - id: "s_4115" - name: "2-hydroxyethane-1-sulfonate" @@ -28255,11 +28255,11 @@ - formula: "C2H5O4S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "isetac" - - chebi: "CHEBI:61904" - - kegg.compound: "C05123" - - metanetx.chemical: "MNXM1630" - - sbo: "SBO:0000247" + - bigg.metabolite: "isetac" + - chebi: "CHEBI:61904" + - kegg.compound: "C05123" + - metanetx.chemical: "MNXM1630" + - sbo: "SBO:0000247" - !!omap - id: "s_4116" - name: "2-hydroxyethane-1-sulfonate" @@ -28267,11 +28267,11 @@ - formula: "C2H5O4S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "isetac" - - chebi: "CHEBI:61904" - - kegg.compound: "C05123" - - metanetx.chemical: "MNXM1630" - - sbo: "SBO:0000247" + - bigg.metabolite: "isetac" + - chebi: "CHEBI:61904" + - kegg.compound: "C05123" + - metanetx.chemical: "MNXM1630" + - sbo: "SBO:0000247" - !!omap - id: "s_4117" - name: "5-dehydro-D-gluconate" @@ -28279,11 +28279,11 @@ - formula: "C6H9O7" - charge: -1 - annotation: !!omap - - bigg.metabolite: "5dglcn" - - chebi: "CHEBI:58143" - - kegg.compound: "C01062" - - metanetx.chemical: "MNXM963" - - sbo: "SBO:0000247" + - bigg.metabolite: "5dglcn" + - chebi: "CHEBI:58143" + - kegg.compound: "C01062" + - metanetx.chemical: "MNXM963" + - sbo: "SBO:0000247" - !!omap - id: "s_4118" - name: "5-dehydro-D-gluconate" @@ -28291,11 +28291,11 @@ - formula: "C6H9O7" - charge: -1 - annotation: !!omap - - bigg.metabolite: "5dglcn" - - chebi: "CHEBI:58143" - - kegg.compound: "C01062" - - metanetx.chemical: "MNXM963" - - sbo: "SBO:0000247" + - bigg.metabolite: "5dglcn" + - chebi: "CHEBI:58143" + - kegg.compound: "C01062" + - metanetx.chemical: "MNXM963" + - sbo: "SBO:0000247" - !!omap - id: "s_4119" - name: "Ala-Asp" @@ -28303,10 +28303,10 @@ - formula: "C7H11N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ala_L_asp__L" - - chebi: "CHEBI:74363" - - metanetx.chemical: "MNXM40494" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_asp__L" + - chebi: "CHEBI:74363" + - metanetx.chemical: "MNXM40494" + - sbo: "SBO:0000247" - !!omap - id: "s_4120" - name: "Ala-Asp" @@ -28314,10 +28314,10 @@ - formula: "C7H11N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ala_L_asp__L" - - chebi: "CHEBI:74363" - - metanetx.chemical: "MNXM40494" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_asp__L" + - chebi: "CHEBI:74363" + - metanetx.chemical: "MNXM40494" + - sbo: "SBO:0000247" - !!omap - id: "s_4121" - name: "Ala-Asp" @@ -28325,10 +28325,10 @@ - formula: "C7H11N2O5" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ala_L_asp__L" - - chebi: "CHEBI:74363" - - metanetx.chemical: "MNXM40494" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_asp__L" + - chebi: "CHEBI:74363" + - metanetx.chemical: "MNXM40494" + - sbo: "SBO:0000247" - !!omap - id: "s_4122" - name: "methyl alpha-D-glucopyranoside" @@ -28336,10 +28336,10 @@ - formula: "C7H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "madg" - - chebi: "CHEBI:320061" - - metanetx.chemical: "MNXM724960" - - sbo: "SBO:0000247" + - bigg.metabolite: "madg" + - chebi: "CHEBI:320061" + - metanetx.chemical: "MNXM724960" + - sbo: "SBO:0000247" - !!omap - id: "s_4123" - name: "methanol" @@ -28347,11 +28347,11 @@ - formula: "CH4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "meoh" - - chebi: "CHEBI:17790" - - kegg.compound: "C00132" - - metanetx.chemical: "MNXM157" - - sbo: "SBO:0000247" + - bigg.metabolite: "meoh" + - chebi: "CHEBI:17790" + - kegg.compound: "C00132" + - metanetx.chemical: "MNXM157" + - sbo: "SBO:0000247" - !!omap - id: "s_4124" - name: "methanol" @@ -28359,11 +28359,11 @@ - formula: "CH4O" - charge: 0 - annotation: !!omap - - bigg.metabolite: "meoh" - - chebi: "CHEBI:17790" - - kegg.compound: "C00132" - - metanetx.chemical: "MNXM157" - - sbo: "SBO:0000247" + - bigg.metabolite: "meoh" + - chebi: "CHEBI:17790" + - kegg.compound: "C00132" + - metanetx.chemical: "MNXM157" + - sbo: "SBO:0000247" - !!omap - id: "s_4125" - name: "methyl alpha-D-glucopyranoside" @@ -28371,10 +28371,10 @@ - formula: "C7H14O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "madg" - - chebi: "CHEBI:320061" - - metanetx.chemical: "MNXM724960" - - sbo: "SBO:0000247" + - bigg.metabolite: "madg" + - chebi: "CHEBI:320061" + - metanetx.chemical: "MNXM724960" + - sbo: "SBO:0000247" - !!omap - id: "s_4126" - name: "2',3'-cyclic CMP" @@ -28382,11 +28382,11 @@ - formula: "C9H11N3O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "23ccmp" - - chebi: "CHEBI:60877" - - kegg.compound: "C02354" - - metanetx.chemical: "MNXM3148" - - sbo: "SBO:0000247" + - bigg.metabolite: "23ccmp" + - chebi: "CHEBI:60877" + - kegg.compound: "C02354" + - metanetx.chemical: "MNXM3148" + - sbo: "SBO:0000247" - !!omap - id: "s_4127" - name: "2',3'-cyclic CMP" @@ -28394,11 +28394,11 @@ - formula: "C9H11N3O7P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "23ccmp" - - chebi: "CHEBI:60877" - - kegg.compound: "C02354" - - metanetx.chemical: "MNXM3148" - - sbo: "SBO:0000247" + - bigg.metabolite: "23ccmp" + - chebi: "CHEBI:60877" + - kegg.compound: "C02354" + - metanetx.chemical: "MNXM3148" + - sbo: "SBO:0000247" - !!omap - id: "s_4128" - name: "D-tagatose" @@ -28406,11 +28406,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag__D" - - chebi: "CHEBI:4249" - - kegg.compound: "C00795" - - metanetx.chemical: "MNXM92401" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag__D" + - chebi: "CHEBI:4249" + - kegg.compound: "C00795" + - metanetx.chemical: "MNXM92401" + - sbo: "SBO:0000247" - !!omap - id: "s_4129" - name: "D-tagatofuranose 6-phosphate" @@ -28418,11 +28418,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "tag6p__D" - - chebi: "CHEBI:58695" - - kegg.compound: "C01097" - - metanetx.chemical: "MNXM795" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag6p__D" + - chebi: "CHEBI:58695" + - kegg.compound: "C01097" + - metanetx.chemical: "MNXM795" + - sbo: "SBO:0000247" - !!omap - id: "s_4130" - name: "D-tagatose" @@ -28430,11 +28430,11 @@ - formula: "C6H12O6" - charge: 0 - annotation: !!omap - - bigg.metabolite: "tag__D" - - chebi: "CHEBI:4249" - - kegg.compound: "C00795" - - metanetx.chemical: "MNXM92401" - - sbo: "SBO:0000247" + - bigg.metabolite: "tag__D" + - chebi: "CHEBI:4249" + - kegg.compound: "C00795" + - metanetx.chemical: "MNXM92401" + - sbo: "SBO:0000247" - !!omap - id: "s_4131" - name: "turanose" @@ -28442,10 +28442,10 @@ - formula: "C12H22O11" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:32528" - - kegg.compound: "C19636" - - metanetx.chemical: "MNXM161984" - - sbo: "SBO:0000247" + - chebi: "CHEBI:32528" + - kegg.compound: "C19636" + - metanetx.chemical: "MNXM161984" + - sbo: "SBO:0000247" - !!omap - id: "s_4132" - name: "acetoacetate" @@ -28453,11 +28453,11 @@ - formula: "C4H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "acac" - - chebi: "CHEBI:13705" - - kegg.compound: "C00164" - - metanetx.chemical: "MNXM154" - - sbo: "SBO:0000247" + - bigg.metabolite: "acac" + - chebi: "CHEBI:13705" + - kegg.compound: "C00164" + - metanetx.chemical: "MNXM154" + - sbo: "SBO:0000247" - !!omap - id: "s_4133" - name: "acetoacetate" @@ -28465,11 +28465,11 @@ - formula: "C4H5O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "acac" - - chebi: "CHEBI:13705" - - kegg.compound: "C00164" - - metanetx.chemical: "MNXM154" - - sbo: "SBO:0000247" + - bigg.metabolite: "acac" + - chebi: "CHEBI:13705" + - kegg.compound: "C00164" + - metanetx.chemical: "MNXM154" + - sbo: "SBO:0000247" - !!omap - id: "s_4134" - name: "N(alpha)-acetyl-L-methionine" @@ -28477,11 +28477,11 @@ - formula: "C7H12NO3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "C02712" - - chebi: "CHEBI:132957" - - kegg.compound: "C02712" - - metanetx.chemical: "MNXM7576" - - sbo: "SBO:0000247" + - bigg.metabolite: "C02712" + - chebi: "CHEBI:132957" + - kegg.compound: "C02712" + - metanetx.chemical: "MNXM7576" + - sbo: "SBO:0000247" - !!omap - id: "s_4135" - name: "N(alpha)-acetyl-L-methionine" @@ -28489,11 +28489,11 @@ - formula: "C7H12NO3S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "C02712" - - chebi: "CHEBI:132957" - - kegg.compound: "C02712" - - metanetx.chemical: "MNXM7576" - - sbo: "SBO:0000247" + - bigg.metabolite: "C02712" + - chebi: "CHEBI:132957" + - kegg.compound: "C02712" + - metanetx.chemical: "MNXM7576" + - sbo: "SBO:0000247" - !!omap - id: "s_4136" - name: "3-oxalomalate(3-)" @@ -28501,10 +28501,10 @@ - formula: "C6H3O8" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:15593" - - kegg.compound: "C01990" - - metanetx.chemical: "MNXM3850" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15593" + - kegg.compound: "C01990" + - metanetx.chemical: "MNXM3850" + - sbo: "SBO:0000247" - !!omap - id: "s_4137" - name: "3-oxalomalate(3-)" @@ -28512,10 +28512,10 @@ - formula: "C6H3O8" - charge: -3 - annotation: !!omap - - chebi: "CHEBI:15593" - - kegg.compound: "C01990" - - metanetx.chemical: "MNXM3850" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15593" + - kegg.compound: "C01990" + - metanetx.chemical: "MNXM3850" + - sbo: "SBO:0000247" - !!omap - id: "s_4138" - name: "L-cysteate" @@ -28523,11 +28523,11 @@ - formula: "C3H6NO5S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "Lcyst" - - chebi: "CHEBI:58090" - - kegg.compound: "C00506" - - metanetx.chemical: "MNXM713" - - sbo: "SBO:0000247" + - bigg.metabolite: "Lcyst" + - chebi: "CHEBI:58090" + - kegg.compound: "C00506" + - metanetx.chemical: "MNXM713" + - sbo: "SBO:0000247" - !!omap - id: "s_4139" - name: "L-cysteate" @@ -28535,11 +28535,11 @@ - formula: "C3H6NO5S" - charge: -1 - annotation: !!omap - - bigg.metabolite: "Lcyst" - - chebi: "CHEBI:58090" - - kegg.compound: "C00506" - - metanetx.chemical: "MNXM713" - - sbo: "SBO:0000247" + - bigg.metabolite: "Lcyst" + - chebi: "CHEBI:58090" + - kegg.compound: "C00506" + - metanetx.chemical: "MNXM713" + - sbo: "SBO:0000247" - !!omap - id: "s_4140" - name: "alpha-maltotriose" @@ -28547,11 +28547,11 @@ - formula: "C18H32O16" - charge: 0 - annotation: !!omap - - bigg.metabolite: "malttr" - - chebi: "CHEBI:61993" - - kegg.compound: "C01835" - - metanetx.chemical: "MNXM468" - - sbo: "SBO:0000247" + - bigg.metabolite: "malttr" + - chebi: "CHEBI:61993" + - kegg.compound: "C01835" + - metanetx.chemical: "MNXM468" + - sbo: "SBO:0000247" - !!omap - id: "s_4141" - name: "2-phospho-D-glyceric acid" @@ -28559,11 +28559,11 @@ - formula: "C3H4O7P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "2pg" - - chebi: "CHEBI:58289" - - kegg.compound: "C00631" - - metanetx.chemical: "MNXM275" - - sbo: "SBO:0000247" + - bigg.metabolite: "2pg" + - chebi: "CHEBI:58289" + - kegg.compound: "C00631" + - metanetx.chemical: "MNXM275" + - sbo: "SBO:0000247" - !!omap - id: "s_4142" - name: "3-phosphonato-D-glycerate(3-)" @@ -28571,11 +28571,11 @@ - formula: "C3H4O7P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "3pg" - - chebi: "CHEBI:58272" - - kegg.compound: "C00197" - - metanetx.chemical: "MNXM126" - - sbo: "SBO:0000247" + - bigg.metabolite: "3pg" + - chebi: "CHEBI:58272" + - kegg.compound: "C00197" + - metanetx.chemical: "MNXM126" + - sbo: "SBO:0000247" - !!omap - id: "s_4143" - name: "Met-Ala" @@ -28583,10 +28583,10 @@ - formula: "C8H16N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "met_L_ala__L" - - chebi: "CHEBI:73610" - - metanetx.chemical: "MNXM61647" - - sbo: "SBO:0000247" + - bigg.metabolite: "met_L_ala__L" + - chebi: "CHEBI:73610" + - metanetx.chemical: "MNXM61647" + - sbo: "SBO:0000247" - !!omap - id: "s_4144" - name: "Met-Ala" @@ -28594,10 +28594,10 @@ - formula: "C8H16N2O3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "met_L_ala__L" - - chebi: "CHEBI:73610" - - metanetx.chemical: "MNXM61647" - - sbo: "SBO:0000247" + - bigg.metabolite: "met_L_ala__L" + - chebi: "CHEBI:73610" + - metanetx.chemical: "MNXM61647" + - sbo: "SBO:0000247" - !!omap - id: "s_4145" - name: "D-glucose 1-phosphate" @@ -28605,11 +28605,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "g1p" - - chebi: "CHEBI:57629" - - kegg.compound: "C00103" - - metanetx.chemical: "MNXM89588" - - sbo: "SBO:0000247" + - bigg.metabolite: "g1p" + - chebi: "CHEBI:57629" + - kegg.compound: "C00103" + - metanetx.chemical: "MNXM89588" + - sbo: "SBO:0000247" - !!omap - id: "s_4146" - name: "carbamoyl phosphate" @@ -28617,11 +28617,11 @@ - formula: "CH2NO5P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "cbp" - - chebi: "CHEBI:58228" - - kegg.compound: "C00169" - - metanetx.chemical: "MNXM138" - - sbo: "SBO:0000247" + - bigg.metabolite: "cbp" + - chebi: "CHEBI:58228" + - kegg.compound: "C00169" + - metanetx.chemical: "MNXM138" + - sbo: "SBO:0000247" - !!omap - id: "s_4147" - name: "3-phospho-serine" @@ -28629,11 +28629,11 @@ - formula: "C3H6NO6P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "pser__L" - - chebi: "CHEBI:57524" - - kegg.compound: "C01005" - - metanetx.chemical: "MNXM379" - - sbo: "SBO:0000247" + - bigg.metabolite: "pser__L" + - chebi: "CHEBI:57524" + - kegg.compound: "C01005" + - metanetx.chemical: "MNXM379" + - sbo: "SBO:0000247" - !!omap - id: "s_4148" - name: "GMP" @@ -28641,11 +28641,11 @@ - formula: "C10H12N5O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "gmp" - - chebi: "CHEBI:58115" - - kegg.compound: "C00144" - - metanetx.chemical: "MNXM113" - - sbo: "SBO:0000247" + - bigg.metabolite: "gmp" + - chebi: "CHEBI:58115" + - kegg.compound: "C00144" + - metanetx.chemical: "MNXM113" + - sbo: "SBO:0000247" - !!omap - id: "s_4149" - name: "myo-inositol hexakisphosphate" @@ -28653,11 +28653,11 @@ - formula: "C6H6O24P6" - charge: -12 - annotation: !!omap - - bigg.metabolite: "minohp" - - chebi: "CHEBI:58130" - - kegg.compound: "C01204" - - metanetx.chemical: "MNXM491" - - sbo: "SBO:0000247" + - bigg.metabolite: "minohp" + - chebi: "CHEBI:58130" + - kegg.compound: "C01204" + - metanetx.chemical: "MNXM491" + - sbo: "SBO:0000247" - !!omap - id: "s_4150" - name: "D-glucose 6-phosphate" @@ -28665,11 +28665,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "g6p" - - chebi: "CHEBI:61548" - - kegg.compound: "C00092" - - metanetx.chemical: "MNXM160" - - sbo: "SBO:0000247" + - bigg.metabolite: "g6p" + - chebi: "CHEBI:61548" + - kegg.compound: "C00092" + - metanetx.chemical: "MNXM160" + - sbo: "SBO:0000247" - !!omap - id: "s_4151" - name: "UMP" @@ -28677,11 +28677,11 @@ - formula: "C9H11N2O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "ump" - - chebi: "CHEBI:57865" - - kegg.compound: "C00105" - - metanetx.chemical: "MNXM80" - - sbo: "SBO:0000247" + - bigg.metabolite: "ump" + - chebi: "CHEBI:57865" + - kegg.compound: "C00105" + - metanetx.chemical: "MNXM80" + - sbo: "SBO:0000247" - !!omap - id: "s_4152" - name: "phosphoenolpyruvate" @@ -28689,11 +28689,11 @@ - formula: "C3H2O6P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "pep" - - chebi: "CHEBI:58702" - - kegg.compound: "C00074" - - metanetx.chemical: "MNXM73" - - sbo: "SBO:0000247" + - bigg.metabolite: "pep" + - chebi: "CHEBI:58702" + - kegg.compound: "C00074" + - metanetx.chemical: "MNXM73" + - sbo: "SBO:0000247" - !!omap - id: "s_4153" - name: "D-mannose 6-phosphate" @@ -28701,11 +28701,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "man6p" - - chebi: "CHEBI:58735" - - kegg.compound: "C00275" - - metanetx.chemical: "MNXM427" - - sbo: "SBO:0000247" + - bigg.metabolite: "man6p" + - chebi: "CHEBI:58735" + - kegg.compound: "C00275" + - metanetx.chemical: "MNXM427" + - sbo: "SBO:0000247" - !!omap - id: "s_4154" - name: "O-phosphoethanolamine" @@ -28713,11 +28713,11 @@ - formula: "C2H7NO4P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "ethamp" - - chebi: "CHEBI:58190" - - kegg.compound: "C00346" - - metanetx.chemical: "MNXM187" - - sbo: "SBO:0000247" + - bigg.metabolite: "ethamp" + - chebi: "CHEBI:58190" + - kegg.compound: "C00346" + - metanetx.chemical: "MNXM187" + - sbo: "SBO:0000247" - !!omap - id: "s_4155" - name: "6-phospho-D-gluconate" @@ -28725,11 +28725,11 @@ - formula: "C6H10O10P" - charge: -3 - annotation: !!omap - - bigg.metabolite: "6pgc" - - chebi: "CHEBI:58759" - - kegg.compound: "C00345" - - metanetx.chemical: "MNXM325" - - sbo: "SBO:0000247" + - bigg.metabolite: "6pgc" + - chebi: "CHEBI:58759" + - kegg.compound: "C00345" + - metanetx.chemical: "MNXM325" + - sbo: "SBO:0000247" - !!omap - id: "s_4156" - name: "D-mannose 1-phosphate" @@ -28737,11 +28737,11 @@ - formula: "C6H11O9P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "man1p" - - chebi: "CHEBI:58409" - - kegg.compound: "C00636" - - metanetx.chemical: "MNXM721" - - sbo: "SBO:0000247" + - bigg.metabolite: "man1p" + - chebi: "CHEBI:58409" + - kegg.compound: "C00636" + - metanetx.chemical: "MNXM721" + - sbo: "SBO:0000247" - !!omap - id: "s_4157" - name: "diphosphate" @@ -28749,11 +28749,11 @@ - formula: "HO7P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "ppi" - - chebi: "CHEBI:33019" - - kegg.compound: "C00013" - - metanetx.chemical: "MNXM11" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppi" + - chebi: "CHEBI:33019" + - kegg.compound: "C00013" + - metanetx.chemical: "MNXM11" + - sbo: "SBO:0000247" - !!omap - id: "s_4158" - name: "choline phosphate" @@ -28761,11 +28761,11 @@ - formula: "C5H13NO4P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "cholp" - - chebi: "CHEBI:295975" - - kegg.compound: "C00588" - - metanetx.chemical: "MNXM229" - - sbo: "SBO:0000247" + - bigg.metabolite: "cholp" + - chebi: "CHEBI:295975" + - kegg.compound: "C00588" + - metanetx.chemical: "MNXM229" + - sbo: "SBO:0000247" - !!omap - id: "s_4159" - name: "thiosulfate" @@ -28773,11 +28773,11 @@ - formula: "HO3S2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "tsul" - - chebi: "CHEBI:33542" - - kegg.compound: "C00320" - - metanetx.chemical: "MNXM323" - - sbo: "SBO:0000247" + - bigg.metabolite: "tsul" + - chebi: "CHEBI:33542" + - kegg.compound: "C00320" + - metanetx.chemical: "MNXM323" + - sbo: "SBO:0000247" - !!omap - id: "s_4160" - name: "AMP" @@ -28785,11 +28785,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "amp" - - chebi: "CHEBI:456215" - - kegg.compound: "C00020" - - metanetx.chemical: "MNXM14" - - sbo: "SBO:0000247" + - bigg.metabolite: "amp" + - chebi: "CHEBI:456215" + - kegg.compound: "C00020" + - metanetx.chemical: "MNXM14" + - sbo: "SBO:0000247" - !!omap - id: "s_4161" - name: "2',3'-cyclic AMP" @@ -28797,11 +28797,11 @@ - formula: "C10H11N5O6P" - charge: -1 - annotation: !!omap - - bigg.metabolite: "23camp" - - chebi: "CHEBI:60879" - - kegg.compound: "C02353" - - metanetx.chemical: "MNXM2598" - - sbo: "SBO:0000247" + - bigg.metabolite: "23camp" + - chebi: "CHEBI:60879" + - kegg.compound: "C02353" + - metanetx.chemical: "MNXM2598" + - sbo: "SBO:0000247" - !!omap - id: "s_4162" - name: "adenosine 2'-phosphate" @@ -28809,11 +28809,11 @@ - formula: "C10H12N5O7P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "amp2p" - - chebi: "CHEBI:77740" - - kegg.compound: "C00946" - - metanetx.chemical: "MNXM7028" - - sbo: "SBO:0000247" + - bigg.metabolite: "amp2p" + - chebi: "CHEBI:77740" + - kegg.compound: "C00946" + - metanetx.chemical: "MNXM7028" + - sbo: "SBO:0000247" - !!omap - id: "s_4163" - name: "CMP" @@ -28821,11 +28821,11 @@ - formula: "C9H12N3O8P" - charge: -2 - annotation: !!omap - - bigg.metabolite: "cmp" - - chebi: "CHEBI:60377" - - kegg.compound: "C00055" - - metanetx.chemical: "MNXM31" - - sbo: "SBO:0000247" + - bigg.metabolite: "cmp" + - chebi: "CHEBI:60377" + - kegg.compound: "C00055" + - metanetx.chemical: "MNXM31" + - sbo: "SBO:0000247" - !!omap - id: "s_4164" - name: "D-Glucosamine" @@ -28833,11 +28833,11 @@ - formula: "C6H14NO5" - charge: 1 - annotation: !!omap - - bigg.metabolite: "gam" - - chebi: "CHEBI:58723" - - kegg.compound: "C00329" - - metanetx.chemical: "MNXM533" - - sbo: "SBO:0000247" + - bigg.metabolite: "gam" + - chebi: "CHEBI:58723" + - kegg.compound: "C00329" + - metanetx.chemical: "MNXM533" + - sbo: "SBO:0000247" - !!omap - id: "s_4165" - name: "2-deoxy-D-ribose" @@ -28845,11 +28845,11 @@ - formula: "C5H10O4" - charge: 0 - annotation: !!omap - - bigg.metabolite: "drib" - - chebi: "CHEBI:28816" - - kegg.compound: "C08347" - - metanetx.chemical: "MNXM2474" - - sbo: "SBO:0000247" + - bigg.metabolite: "drib" + - chebi: "CHEBI:28816" + - kegg.compound: "C08347" + - metanetx.chemical: "MNXM2474" + - sbo: "SBO:0000247" - !!omap - id: "s_4166" - name: "L-citrulline" @@ -28857,11 +28857,11 @@ - formula: "C6H13N3O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "citr__L" - - chebi: "CHEBI:16349" - - kegg.compound: "C00327" - - metanetx.chemical: "MNXM211" - - sbo: "SBO:0000247" + - bigg.metabolite: "citr__L" + - chebi: "CHEBI:16349" + - kegg.compound: "C00327" + - metanetx.chemical: "MNXM211" + - sbo: "SBO:0000247" - !!omap - id: "s_4167" - name: "glycerone" @@ -28869,11 +28869,11 @@ - formula: "C3H6O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "dha" - - chebi: "CHEBI:16016" - - kegg.compound: "C00184" - - metanetx.chemical: "MNXM460" - - sbo: "SBO:0000247" + - bigg.metabolite: "dha" + - chebi: "CHEBI:16016" + - kegg.compound: "C00184" + - metanetx.chemical: "MNXM460" + - sbo: "SBO:0000247" - !!omap - id: "s_4168" - name: "Ala-Leu" @@ -28881,10 +28881,10 @@ - formula: "C9H18N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_L_ile__L" - - chebi: "CHEBI:73770" - - metanetx.chemical: "MNXM15786" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_ile__L" + - chebi: "CHEBI:73770" + - metanetx.chemical: "MNXM15786" + - sbo: "SBO:0000247" - !!omap - id: "s_4169" - name: "Ala-Leu" @@ -28892,10 +28892,10 @@ - formula: "C9H18N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "ala_L_ile__L" - - chebi: "CHEBI:73770" - - metanetx.chemical: "MNXM15786" - - sbo: "SBO:0000247" + - bigg.metabolite: "ala_L_ile__L" + - chebi: "CHEBI:73770" + - metanetx.chemical: "MNXM15786" + - sbo: "SBO:0000247" - !!omap - id: "s_4170" - name: "Ala-Gly" @@ -28903,10 +28903,10 @@ - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "L_alagly" - - chebi: "CHEBI:73757" - - metanetx.chemical: "MNXM15783" - - sbo: "SBO:0000247" + - bigg.metabolite: "L_alagly" + - chebi: "CHEBI:73757" + - metanetx.chemical: "MNXM15783" + - sbo: "SBO:0000247" - !!omap - id: "s_4171" - name: "Ala-Gly" @@ -28914,10 +28914,10 @@ - formula: "C5H10N2O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "L_alagly" - - chebi: "CHEBI:73757" - - metanetx.chemical: "MNXM15783" - - sbo: "SBO:0000247" + - bigg.metabolite: "L_alagly" + - chebi: "CHEBI:73757" + - metanetx.chemical: "MNXM15783" + - sbo: "SBO:0000247" - !!omap - id: "s_4172" - name: "N-acetyl-L-glutamate" @@ -28925,11 +28925,11 @@ - formula: "C7H9NO5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "acglu" - - chebi: "CHEBI:44337" - - kegg.compound: "C00624" - - metanetx.chemical: "MNXM730" - - sbo: "SBO:0000247" + - bigg.metabolite: "acglu" + - chebi: "CHEBI:44337" + - kegg.compound: "C00624" + - metanetx.chemical: "MNXM730" + - sbo: "SBO:0000247" - !!omap - id: "s_4173" - name: "N-acetyl-L-glutamate" @@ -28937,11 +28937,11 @@ - formula: "C7H9NO5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "acglu" - - chebi: "CHEBI:44337" - - kegg.compound: "C00624" - - metanetx.chemical: "MNXM730" - - sbo: "SBO:0000247" + - bigg.metabolite: "acglu" + - chebi: "CHEBI:44337" + - kegg.compound: "C00624" + - metanetx.chemical: "MNXM730" + - sbo: "SBO:0000247" - !!omap - id: "s_4174" - name: "lipoamide" @@ -28949,11 +28949,11 @@ - formula: "C8H15NOS2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "lpam" - - chebi: "CHEBI:17460" - - kegg.compound: "C00248" - - metanetx.chemical: "MNXM1024" - - sbo: "SBO:0000247" + - bigg.metabolite: "lpam" + - chebi: "CHEBI:17460" + - kegg.compound: "C00248" + - metanetx.chemical: "MNXM1024" + - sbo: "SBO:0000247" - !!omap - id: "s_4175" - name: "lipoamide" @@ -28961,11 +28961,11 @@ - formula: "C8H15NOS2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "lpam" - - chebi: "CHEBI:17460" - - kegg.compound: "C00248" - - metanetx.chemical: "MNXM1024" - - sbo: "SBO:0000247" + - bigg.metabolite: "lpam" + - chebi: "CHEBI:17460" + - kegg.compound: "C00248" + - metanetx.chemical: "MNXM1024" + - sbo: "SBO:0000247" - !!omap - id: "s_4176" - name: "L-Methionine S-oxide" @@ -28973,11 +28973,11 @@ - formula: "C5H11NO3S" - charge: 0 - annotation: !!omap - - bigg.metabolite: "metsox_S__L" - - chebi: "CHEBI:17016" - - kegg.compound: "C02989" - - metanetx.chemical: "MNXM2246" - - sbo: "SBO:0000247" + - bigg.metabolite: "metsox_S__L" + - chebi: "CHEBI:17016" + - kegg.compound: "C02989" + - metanetx.chemical: "MNXM2246" + - sbo: "SBO:0000247" - !!omap - id: "s_4177" - name: "homogentisate" @@ -28985,11 +28985,11 @@ - formula: "C8H7O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "hgentis" - - chebi: "CHEBI:16169" - - kegg.compound: "C00544" - - metanetx.chemical: "MNXM345" - - sbo: "SBO:0000247" + - bigg.metabolite: "hgentis" + - chebi: "CHEBI:16169" + - kegg.compound: "C00544" + - metanetx.chemical: "MNXM345" + - sbo: "SBO:0000247" - !!omap - id: "s_4178" - name: "4-maleylacetoacetate" @@ -28997,11 +28997,11 @@ - formula: "C8H6O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "4mlacac" - - chebi: "CHEBI:17105" - - kegg.compound: "C01036" - - metanetx.chemical: "MNXM691" - - sbo: "SBO:0000247" + - bigg.metabolite: "4mlacac" + - chebi: "CHEBI:17105" + - kegg.compound: "C01036" + - metanetx.chemical: "MNXM691" + - sbo: "SBO:0000247" - !!omap - id: "s_4179" - name: "4-fumarylacetoacetate" @@ -29009,11 +29009,11 @@ - formula: "C8H6O6" - charge: -2 - annotation: !!omap - - bigg.metabolite: "4fumacac" - - chebi: "CHEBI:18034" - - kegg.compound: "C01061" - - metanetx.chemical: "MNXM708" - - sbo: "SBO:0000247" + - bigg.metabolite: "4fumacac" + - chebi: "CHEBI:18034" + - kegg.compound: "C01061" + - metanetx.chemical: "MNXM708" + - sbo: "SBO:0000247" - !!omap - id: "s_4180" - name: "L-xylulose" @@ -29021,11 +29021,11 @@ - formula: "C5H10O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "xylu__L" - - chebi: "CHEBI:17140" - - kegg.compound: "C00312" - - metanetx.chemical: "MNXM597" - - sbo: "SBO:0000247" + - bigg.metabolite: "xylu__L" + - chebi: "CHEBI:17140" + - kegg.compound: "C00312" + - metanetx.chemical: "MNXM597" + - sbo: "SBO:0000247" - !!omap - id: "s_4181" - name: "D-arabinitol" @@ -29033,11 +29033,11 @@ - formula: "C5H12O5" - charge: 0 - annotation: !!omap - - bigg.metabolite: "abt__D" - - chebi: "CHEBI:18333" - - kegg.compound: "C01904" - - metanetx.chemical: "MNXM1018" - - sbo: "SBO:0000247" + - bigg.metabolite: "abt__D" + - chebi: "CHEBI:18333" + - kegg.compound: "C01904" + - metanetx.chemical: "MNXM1018" + - sbo: "SBO:0000247" - !!omap - id: "s_4182" - name: "2-hydroxyglutarate" @@ -29045,11 +29045,11 @@ - formula: "C5H6O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "2hog" - - chebi: "CHEBI:11596" - - kegg.compound: "C02630" - - metanetx.chemical: "MNXM1210" - - sbo: "SBO:0000247" + - bigg.metabolite: "2hog" + - chebi: "CHEBI:11596" + - kegg.compound: "C02630" + - metanetx.chemical: "MNXM1210" + - sbo: "SBO:0000247" - !!omap - id: "s_4183" - name: "propionyl-CoA" @@ -29057,11 +29057,11 @@ - formula: "C24H36N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "ppcoa" - - chebi: "CHEBI:57392" - - kegg.compound: "C00100" - - metanetx.chemical: "MNXM86" - - sbo: "SBO:0000247" + - bigg.metabolite: "ppcoa" + - chebi: "CHEBI:57392" + - kegg.compound: "C00100" + - metanetx.chemical: "MNXM86" + - sbo: "SBO:0000247" - !!omap - id: "s_4184" - name: "3-oxopropanoate" @@ -29069,11 +29069,11 @@ - formula: "C3H3O3" - charge: -1 - annotation: !!omap - - bigg.metabolite: "msa" - - chebi: "CHEBI:33190" - - kegg.compound: "C00222" - - metanetx.chemical: "MNXM244" - - sbo: "SBO:0000247" + - bigg.metabolite: "msa" + - chebi: "CHEBI:33190" + - kegg.compound: "C00222" + - metanetx.chemical: "MNXM244" + - sbo: "SBO:0000247" - !!omap - id: "s_4185" - name: "(R)-2,3-dihydroxy-3-methylbutanoate" @@ -29081,11 +29081,11 @@ - formula: "C5H9O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "23dhmb" - - chebi: "CHEBI:49072" - - kegg.compound: "C04272" - - metanetx.chemical: "MNXM114097" - - sbo: "SBO:0000247" + - bigg.metabolite: "23dhmb" + - chebi: "CHEBI:49072" + - kegg.compound: "C04272" + - metanetx.chemical: "MNXM114097" + - sbo: "SBO:0000247" - !!omap - id: "s_4186" - name: "3-hydroxy-3-methyl-2-oxobutanoate" @@ -29093,11 +29093,11 @@ - formula: "C5H7O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "3hmoa" - - chebi: "CHEBI:11812" - - kegg.compound: "C04181" - - metanetx.chemical: "MNXM1638" - - sbo: "SBO:0000247" + - bigg.metabolite: "3hmoa" + - chebi: "CHEBI:11812" + - kegg.compound: "C04181" + - metanetx.chemical: "MNXM1638" + - sbo: "SBO:0000247" - !!omap - id: "s_4187" - name: "2-acetyllactic acid" @@ -29105,10 +29105,10 @@ - formula: "C5H7O4" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:57774" - - kegg.compound: "C00900" - - metanetx.chemical: "MNXM426" - - sbo: "SBO:0000247" + - chebi: "CHEBI:57774" + - kegg.compound: "C00900" + - metanetx.chemical: "MNXM426" + - sbo: "SBO:0000247" - !!omap - id: "s_4188" - name: "(2S)-2-acetolactate" @@ -29116,11 +29116,11 @@ - formula: "C5H7O4" - charge: -1 - annotation: !!omap - - bigg.metabolite: "alac__S" - - chebi: "CHEBI:58476" - - kegg.compound: "C06010" - - metanetx.chemical: "MNXM114079" - - sbo: "SBO:0000247" + - bigg.metabolite: "alac__S" + - chebi: "CHEBI:58476" + - kegg.compound: "C06010" + - metanetx.chemical: "MNXM114079" + - sbo: "SBO:0000247" - !!omap - id: "s_4189" - name: "(2R,3S)-3-methylmalate" @@ -29128,11 +29128,11 @@ - formula: "C5H6O5" - charge: -2 - annotation: !!omap - - bigg.metabolite: "r3mmal" - - chebi: "CHEBI:58511" - - kegg.compound: "C06032" - - metanetx.chemical: "MNXM2512" - - sbo: "SBO:0000247" + - bigg.metabolite: "r3mmal" + - chebi: "CHEBI:58511" + - kegg.compound: "C06032" + - metanetx.chemical: "MNXM2512" + - sbo: "SBO:0000247" - !!omap - id: "s_4190" - name: "trans-2,cis-9-octadecadienoyl-CoA" @@ -29140,11 +29140,11 @@ - formula: "C39H62N7O17P3S" - charge: -4 - annotation: !!omap - - bigg.metabolite: "lnlccoa" - - chebi: "CHEBI:57383" - - kegg.compound: "C02050" - - metanetx.chemical: "MNXM638" - - sbo: "SBO:0000247" + - bigg.metabolite: "lnlccoa" + - chebi: "CHEBI:57383" + - kegg.compound: "C02050" + - metanetx.chemical: "MNXM638" + - sbo: "SBO:0000247" - !!omap - id: "s_4191" - name: "(9Z,12Z)-octadecadienoate" @@ -29152,11 +29152,11 @@ - formula: "C18H31O2" - charge: -1 - annotation: !!omap - - bigg.metabolite: "lnlc" - - chebi: "CHEBI:30245" - - kegg.compound: "C01595" - - metanetx.chemical: "MNXM293" - - sbo: "SBO:0000247" + - bigg.metabolite: "lnlc" + - chebi: "CHEBI:30245" + - kegg.compound: "C01595" + - metanetx.chemical: "MNXM293" + - sbo: "SBO:0000247" - !!omap - id: "s_4192" - name: "stachyose" @@ -29164,11 +29164,11 @@ - formula: "C24H42O21" - charge: 0 - annotation: !!omap - - bigg.metabolite: "stys" - - chebi: "CHEBI:17164" - - kegg.compound: "C01613" - - metanetx.chemical: "MNXM1503" - - sbo: "SBO:0000247" + - bigg.metabolite: "stys" + - chebi: "CHEBI:17164" + - kegg.compound: "C01613" + - metanetx.chemical: "MNXM1503" + - sbo: "SBO:0000247" - !!omap - id: "s_4193" - name: "raffinose" @@ -29176,11 +29176,11 @@ - formula: "C18H32O16" - charge: 0 - annotation: !!omap - - bigg.metabolite: "raffin" - - chebi: "CHEBI:16634" - - kegg.compound: "C00492" - - metanetx.chemical: "MNXM621" - - sbo: "SBO:0000247" + - bigg.metabolite: "raffin" + - chebi: "CHEBI:16634" + - kegg.compound: "C00492" + - metanetx.chemical: "MNXM621" + - sbo: "SBO:0000247" - !!omap - id: "s_4194" - name: "4-hydroxyphenyl acetate" @@ -29188,11 +29188,11 @@ - formula: "C8H8O3" - charge: 0 - annotation: !!omap - - bigg.metabolite: "4hphac" - - chebi: "CHEBI:18101" - - kegg.compound: "C00642" - - metanetx.chemical: "MNXM3863" - - sbo: "SBO:0000247" + - bigg.metabolite: "4hphac" + - chebi: "CHEBI:18101" + - kegg.compound: "C00642" + - metanetx.chemical: "MNXM3863" + - sbo: "SBO:0000247" - !!omap - id: "s_4195" - name: "Hydroquinone" @@ -29200,11 +29200,11 @@ - formula: "C6H6O2" - charge: 0 - annotation: !!omap - - bigg.metabolite: "hqn" - - chebi: "CHEBI:17594" - - kegg.compound: "C00530" - - metanetx.chemical: "MNXM376" - - sbo: "SBO:0000247" + - bigg.metabolite: "hqn" + - chebi: "CHEBI:17594" + - kegg.compound: "C00530" + - metanetx.chemical: "MNXM376" + - sbo: "SBO:0000247" - !!omap - id: "s_4196" - name: "ATP" @@ -29212,11 +29212,11 @@ - formula: "C10H12N5O13P3" - charge: -4 - annotation: !!omap - - bigg.metabolite: "atp" - - chebi: "CHEBI:30616" - - kegg.compound: "C00002" - - metanetx.chemical: "MNXM3" - - sbo: "SBO:0000247" + - bigg.metabolite: "atp" + - chebi: "CHEBI:30616" + - kegg.compound: "C00002" + - metanetx.chemical: "MNXM3" + - sbo: "SBO:0000247" - !!omap - id: "s_4197" - name: "Ca(2+)" @@ -29224,11 +29224,11 @@ - formula: "Ca" - charge: 2 - annotation: !!omap - - bigg.metabolite: "ca2" - - chebi: "CHEBI:29108" - - kegg.compound: "C00076" - - metanetx.chemical: "MNXM128" - - sbo: "SBO:0000247" + - bigg.metabolite: "ca2" + - chebi: "CHEBI:29108" + - kegg.compound: "C00076" + - metanetx.chemical: "MNXM128" + - sbo: "SBO:0000247" - !!omap - id: "s_4198" - name: "ADP" @@ -29236,11 +29236,11 @@ - formula: "C10H12N5O10P2" - charge: -3 - annotation: !!omap - - bigg.metabolite: "adp" - - chebi: "CHEBI:456216" - - kegg.compound: "C00008" - - metanetx.chemical: "MNXM7" - - sbo: "SBO:0000247" + - bigg.metabolite: "adp" + - chebi: "CHEBI:456216" + - kegg.compound: "C00008" + - metanetx.chemical: "MNXM7" + - sbo: "SBO:0000247" - !!omap - id: "s_4199" - name: "Ca(2+)" @@ -29248,11 +29248,11 @@ - formula: "Ca" - charge: 2 - annotation: !!omap - - bigg.metabolite: "ca2" - - chebi: "CHEBI:29108" - - kegg.compound: "C00076" - - metanetx.chemical: "MNXM128" - - sbo: "SBO:0000247" + - bigg.metabolite: "ca2" + - chebi: "CHEBI:29108" + - kegg.compound: "C00076" + - metanetx.chemical: "MNXM128" + - sbo: "SBO:0000247" - !!omap - id: "s_4200" - name: "chloride" @@ -29260,11 +29260,11 @@ - formula: "Cl" - charge: -1 - annotation: !!omap - - bigg.metabolite: "cl" - - chebi: "CHEBI:17996" - - kegg.compound: "C00698" - - metanetx.chemical: "MNXM43" - - sbo: "SBO:0000247" + - bigg.metabolite: "cl" + - chebi: "CHEBI:17996" + - kegg.compound: "C00698" + - metanetx.chemical: "MNXM43" + - sbo: "SBO:0000247" - !!omap - id: "s_4201" - name: "Cu2(+)" @@ -29272,11 +29272,11 @@ - formula: "Cu" - charge: 2 - annotation: !!omap - - bigg.metabolite: "cu2" - - chebi: "CHEBI:29036" - - kegg.compound: "C00070" - - metanetx.chemical: "MNXM632" - - sbo: "SBO:0000247" + - bigg.metabolite: "cu2" + - chebi: "CHEBI:29036" + - kegg.compound: "C00070" + - metanetx.chemical: "MNXM632" + - sbo: "SBO:0000247" - !!omap - id: "s_4202" - name: "Mn(2+)" @@ -29284,11 +29284,11 @@ - formula: "Mn" - charge: 2 - annotation: !!omap - - bigg.metabolite: "mn2" - - chebi: "CHEBI:29035" - - kegg.compound: "C19610" - - metanetx.chemical: "MNXM2255" - - sbo: "SBO:0000247" + - bigg.metabolite: "mn2" + - chebi: "CHEBI:29035" + - kegg.compound: "C19610" + - metanetx.chemical: "MNXM2255" + - sbo: "SBO:0000247" - !!omap - id: "s_4203" - name: "Zn(2+)" @@ -29296,11 +29296,11 @@ - formula: "Zn" - charge: 2 - annotation: !!omap - - bigg.metabolite: "zn2" - - chebi: "CHEBI:29105" - - kegg.compound: "C00038" - - metanetx.chemical: "MNXM149" - - sbo: "SBO:0000247" + - bigg.metabolite: "zn2" + - chebi: "CHEBI:29105" + - kegg.compound: "C00038" + - metanetx.chemical: "MNXM149" + - sbo: "SBO:0000247" - !!omap - id: "s_4204" - name: "Mg(2+)" @@ -29308,25 +29308,25 @@ - formula: "Mg" - charge: 2 - annotation: !!omap - - bigg.metabolite: "mg2" - - chebi: "CHEBI:18420" - - kegg.compound: "C00305" - - metanetx.chemical: "MNXM653" - - sbo: "SBO:0000247" + - bigg.metabolite: "mg2" + - chebi: "CHEBI:18420" + - kegg.compound: "C00305" + - metanetx.chemical: "MNXM653" + - sbo: "SBO:0000247" - !!omap - id: "s_4205" - name: "cofactor" - compartment: "c" - formula: "" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_4206" - name: "ion" - compartment: "c" - formula: "" - annotation: !!omap - - sbo: "SBO:0000649" + - sbo: "SBO:0000649" - !!omap - id: "s_4207" - name: "trans-4-hydroxy-L-proline" @@ -29334,10 +29334,10 @@ - formula: "C5H9NO3" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:18072" - - kegg.compound: "C01157" - - metanetx.chemical: "MNXM87584" - - sbo: "SBO:0000247" + - chebi: "CHEBI:18072" + - kegg.compound: "C01157" + - metanetx.chemical: "MNXM87584" + - sbo: "SBO:0000247" - !!omap - id: "s_4208" - name: "2,3-dihydroxy-3-methylbutanoate" @@ -29345,31 +29345,31 @@ - formula: "C5H9O4" - charge: -1 - annotation: !!omap - - chebi: "CHEBI:11424" - - kegg.compound: "C04039" - - metanetx.chemical: "MNXM734" - - sbo: "SBO:0000247" + - chebi: "CHEBI:11424" + - kegg.compound: "C04039" + - metanetx.chemical: "MNXM734" + - sbo: "SBO:0000247" - !!omap - id: "s_4209" - name: "Ferrocytochrome b5" - compartment: "erm" - formula: "" - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_4210" - name: "Ferricytochrome b5" - compartment: "erm" - formula: "" - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_4211" - name: "hexanoyl-CoA" - compartment: "m" - formula: "" - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_4212" - name: "ethyl hexanoate" @@ -29377,8 +29377,8 @@ - formula: "C8H16O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:86055" - - sbo: "SBO:0000247" + - chebi: "CHEBI:86055" + - sbo: "SBO:0000247" - !!omap - id: "s_4213" - name: "octanoyl-CoA" @@ -29386,9 +29386,9 @@ - formula: "C29H46N7O17P3S" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:15533" - - kegg.compound: "C01944" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15533" + - kegg.compound: "C01944" + - sbo: "SBO:0000247" - !!omap - id: "s_4214" - name: "ethyl octanoate" @@ -29396,9 +29396,9 @@ - formula: "C10H20O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:87426" - - kegg.compound: "C12292" - - sbo: "SBO:0000247" + - chebi: "CHEBI:87426" + - kegg.compound: "C12292" + - sbo: "SBO:0000247" - !!omap - id: "s_4215" - name: "butanoyl-CoA" @@ -29406,9 +29406,9 @@ - formula: "C25H38N7O17P3S" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:57371" - - kegg.compound: "C00136" - - sbo: "SBO:0000247" + - chebi: "CHEBI:57371" + - kegg.compound: "C00136" + - sbo: "SBO:0000247" - !!omap - id: "s_4216" - name: "ethyl butanoate" @@ -29416,8 +29416,8 @@ - formula: "C6H12O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88764" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88764" + - sbo: "SBO:0000247" - !!omap - id: "s_4217" - name: "hexanol" @@ -29425,8 +29425,8 @@ - formula: "C6H14O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:87393" - - sbo: "SBO:0000247" + - chebi: "CHEBI:87393" + - sbo: "SBO:0000247" - !!omap - id: "s_4218" - name: "hexyl acetate" @@ -29434,8 +29434,8 @@ - formula: "C8H16O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:87510" - - sbo: "SBO:0000247" + - chebi: "CHEBI:87510" + - sbo: "SBO:0000247" - !!omap - id: "s_4219" - name: "decanoyl-CoA" @@ -29443,9 +29443,9 @@ - formula: "C31H50N7O17P3S" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:61430" - - kegg.compound: "C05274" - - sbo: "SBO:0000247" + - chebi: "CHEBI:61430" + - kegg.compound: "C05274" + - sbo: "SBO:0000247" - !!omap - id: "s_4220" - name: "ethyl decanoate" @@ -29453,8 +29453,8 @@ - formula: "C12H24O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:87430" - - sbo: "SBO:0000247" + - chebi: "CHEBI:87430" + - sbo: "SBO:0000247" - !!omap - id: "s_4221" - name: "ethyl hexanoate" @@ -29462,8 +29462,8 @@ - formula: "C8H16O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:86055" - - sbo: "SBO:0000247" + - chebi: "CHEBI:86055" + - sbo: "SBO:0000247" - !!omap - id: "s_4222" - name: "ethyl octanoate" @@ -29471,9 +29471,9 @@ - formula: "C10H20O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:87426" - - kegg.compound: "C12292" - - sbo: "SBO:0000247" + - chebi: "CHEBI:87426" + - kegg.compound: "C12292" + - sbo: "SBO:0000247" - !!omap - id: "s_4223" - name: "ethyl butanoate" @@ -29481,8 +29481,8 @@ - formula: "C6H12O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88764" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88764" + - sbo: "SBO:0000247" - !!omap - id: "s_4224" - name: "hexyl acetate" @@ -29490,8 +29490,8 @@ - formula: "C8H16O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:87510" - - sbo: "SBO:0000247" + - chebi: "CHEBI:87510" + - sbo: "SBO:0000247" - !!omap - id: "s_4225" - name: "ethyl decanoate" @@ -29499,8 +29499,8 @@ - formula: "C12H24O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:87430" - - sbo: "SBO:0000247" + - chebi: "CHEBI:87430" + - sbo: "SBO:0000247" - !!omap - id: "s_4226" - name: "ethyl hexanoate" @@ -29508,8 +29508,8 @@ - formula: "C8H16O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:86055" - - sbo: "SBO:0000247" + - chebi: "CHEBI:86055" + - sbo: "SBO:0000247" - !!omap - id: "s_4227" - name: "ethyl octanoate" @@ -29517,9 +29517,9 @@ - formula: "C10H20O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:87426" - - kegg.compound: "C12292" - - sbo: "SBO:0000247" + - chebi: "CHEBI:87426" + - kegg.compound: "C12292" + - sbo: "SBO:0000247" - !!omap - id: "s_4228" - name: "ethyl butanoate" @@ -29527,8 +29527,8 @@ - formula: "C6H12O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:88764" - - sbo: "SBO:0000247" + - chebi: "CHEBI:88764" + - sbo: "SBO:0000247" - !!omap - id: "s_4229" - name: "hexyl acetate" @@ -29536,8 +29536,8 @@ - formula: "C8H16O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:87510" - - sbo: "SBO:0000247" + - chebi: "CHEBI:87510" + - sbo: "SBO:0000247" - !!omap - id: "s_4230" - name: "ethyl decanoate" @@ -29545,8 +29545,8 @@ - formula: "C12H24O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:87430" - - sbo: "SBO:0000247" + - chebi: "CHEBI:87430" + - sbo: "SBO:0000247" - !!omap - id: "s_4231" - name: "ethyl acetate" @@ -29554,9 +29554,9 @@ - formula: "C4H8O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:27750" - - kegg.compound: "C00849" - - sbo: "SBO:0000247" + - chebi: "CHEBI:27750" + - kegg.compound: "C00849" + - sbo: "SBO:0000247" - !!omap - id: "s_4232" - name: "propanal" @@ -29564,9 +29564,9 @@ - formula: "C3H6O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17153" - - kegg.compound: "C00479" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17153" + - kegg.compound: "C00479" + - sbo: "SBO:0000247" - !!omap - id: "s_4233" - name: "propanol" @@ -29574,9 +29574,9 @@ - formula: "C3H8O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:28831" - - kegg.compound: "C05979" - - sbo: "SBO:0000247" + - chebi: "CHEBI:28831" + - kegg.compound: "C05979" + - sbo: "SBO:0000247" - !!omap - id: "s_4234" - name: "propanal" @@ -29584,9 +29584,9 @@ - formula: "C3H6O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17153" - - kegg.compound: "C00479" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17153" + - kegg.compound: "C00479" + - sbo: "SBO:0000247" - !!omap - id: "s_4235" - name: "propanol" @@ -29594,9 +29594,9 @@ - formula: "C3H8O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:28831" - - kegg.compound: "C05979" - - sbo: "SBO:0000247" + - chebi: "CHEBI:28831" + - kegg.compound: "C05979" + - sbo: "SBO:0000247" - !!omap - id: "s_4236" - name: "propanal" @@ -29604,9 +29604,9 @@ - formula: "C3H6O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:17153" - - kegg.compound: "C00479" - - sbo: "SBO:0000247" + - chebi: "CHEBI:17153" + - kegg.compound: "C00479" + - sbo: "SBO:0000247" - !!omap - id: "s_4237" - name: "propanol" @@ -29614,9 +29614,9 @@ - formula: "C3H8O" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:28831" - - kegg.compound: "C05979" - - sbo: "SBO:0000247" + - chebi: "CHEBI:28831" + - kegg.compound: "C05979" + - sbo: "SBO:0000247" - !!omap - id: "s_4238" - name: "methional" @@ -29624,8 +29624,8 @@ - formula: "C4H8OS" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:49017" - - sbo: "SBO:0000247" + - chebi: "CHEBI:49017" + - sbo: "SBO:0000247" - !!omap - id: "s_4239" - name: "methionol" @@ -29633,8 +29633,8 @@ - formula: "C4H10OS" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:49019" - - sbo: "SBO:0000247" + - chebi: "CHEBI:49019" + - sbo: "SBO:0000247" - !!omap - id: "s_4240" - name: "methional" @@ -29642,8 +29642,8 @@ - formula: "C4H8OS" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:49017" - - sbo: "SBO:0000247" + - chebi: "CHEBI:49017" + - sbo: "SBO:0000247" - !!omap - id: "s_4241" - name: "methionol" @@ -29651,8 +29651,8 @@ - formula: "C4H10OS" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:49019" - - sbo: "SBO:0000247" + - chebi: "CHEBI:49019" + - sbo: "SBO:0000247" - !!omap - id: "s_4242" - name: "methional" @@ -29660,8 +29660,8 @@ - formula: "C4H8OS" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:49017" - - sbo: "SBO:0000247" + - chebi: "CHEBI:49017" + - sbo: "SBO:0000247" - !!omap - id: "s_4243" - name: "methionol" @@ -29669,8 +29669,8 @@ - formula: "C4H10OS" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:49019" - - sbo: "SBO:0000247" + - chebi: "CHEBI:49019" + - sbo: "SBO:0000247" - !!omap - id: "s_4244" - name: "(4-hydroxyphenyl)acetaldehyde" @@ -29678,8 +29678,8 @@ - formula: "C8H8O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:15621" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15621" + - sbo: "SBO:0000247" - !!omap - id: "s_4245" - name: "tyrosol" @@ -29687,9 +29687,9 @@ - formula: "C8H10O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:1879" - - kegg.compound: "C06044" - - sbo: "SBO:0000247" + - chebi: "CHEBI:1879" + - kegg.compound: "C06044" + - sbo: "SBO:0000247" - !!omap - id: "s_4246" - name: "(4-hydroxyphenyl)acetaldehyde" @@ -29697,8 +29697,8 @@ - formula: "C8H8O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:15621" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15621" + - sbo: "SBO:0000247" - !!omap - id: "s_4247" - name: "tyrosol" @@ -29706,9 +29706,9 @@ - formula: "C8H10O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:1879" - - kegg.compound: "C06044" - - sbo: "SBO:0000247" + - chebi: "CHEBI:1879" + - kegg.compound: "C06044" + - sbo: "SBO:0000247" - !!omap - id: "s_4248" - name: "(4-hydroxyphenyl)acetaldehyde" @@ -29716,8 +29716,8 @@ - formula: "C8H8O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:15621" - - sbo: "SBO:0000247" + - chebi: "CHEBI:15621" + - sbo: "SBO:0000247" - !!omap - id: "s_4249" - name: "tyrosol" @@ -29725,9 +29725,9 @@ - formula: "C8H10O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:1879" - - kegg.compound: "C06044" - - sbo: "SBO:0000247" + - chebi: "CHEBI:1879" + - kegg.compound: "C06044" + - sbo: "SBO:0000247" - !!omap - id: "s_4250" - name: "propionate" @@ -29735,9 +29735,9 @@ - formula: "C3H6O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:30768" - - kegg.compound: "C00163" - - sbo: "SBO:0000247" + - chebi: "CHEBI:30768" + - kegg.compound: "C00163" + - sbo: "SBO:0000247" - !!omap - id: "s_4251" - name: "propionate" @@ -29745,9 +29745,9 @@ - formula: "C3H6O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:30768" - - kegg.compound: "C00163" - - sbo: "SBO:0000247" + - chebi: "CHEBI:30768" + - kegg.compound: "C00163" + - sbo: "SBO:0000247" - !!omap - id: "s_4252" - name: "propionyl-CoA" @@ -29755,9 +29755,9 @@ - formula: "C24H36N7O17P3S" - charge: -4 - annotation: !!omap - - chebi: "CHEBI:57386" - - kegg.compound: "C00100" - - sbo: "SBO:0000247" + - chebi: "CHEBI:57386" + - kegg.compound: "C00100" + - sbo: "SBO:0000247" - !!omap - id: "s_4253" - name: "ethyl propionate" @@ -29765,8 +29765,8 @@ - formula: "C5H10O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:41330" - - sbo: "SBO:0000247" + - chebi: "CHEBI:41330" + - sbo: "SBO:0000247" - !!omap - id: "s_4254" - name: "tyrosyl acetate" @@ -29774,7 +29774,7 @@ - formula: "C10H12O3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_4255" - name: "tyrosyl acetate" @@ -29782,7 +29782,7 @@ - formula: "C10H12O3" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_4256" - name: "methionyl acetate" @@ -29790,7 +29790,7 @@ - formula: "C6H12O2S" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_4257" - name: "methionyl acetate" @@ -29798,7 +29798,7 @@ - formula: "C6H12O2S" - charge: 0 - annotation: !!omap - - sbo: "SBO:0000247" + - sbo: "SBO:0000247" - !!omap - id: "s_4258" - name: "propyl acetate" @@ -29806,8 +29806,8 @@ - formula: "C5H10O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:40116" - - sbo: "SBO:0000247" + - chebi: "CHEBI:40116" + - sbo: "SBO:0000247" - !!omap - id: "s_4259" - name: "propyl acetate" @@ -29815,8 +29815,8 @@ - formula: "C5H10O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:40116" - - sbo: "SBO:0000247" + - chebi: "CHEBI:40116" + - sbo: "SBO:0000247" - !!omap - id: "s_4261" - name: "ethyl propionate" @@ -29824,8 +29824,8 @@ - formula: "C5H10O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:41330" - - sbo: "SBO:0000247" + - chebi: "CHEBI:41330" + - sbo: "SBO:0000247" - !!omap - id: "s_4262" - name: "ethyl propionate" @@ -29833,8 +29833,8 @@ - formula: "C5H10O2" - charge: 0 - annotation: !!omap - - chebi: "CHEBI:41330" - - sbo: "SBO:0000247" + - chebi: "CHEBI:41330" + - sbo: "SBO:0000247" - reactions: - !!omap - id: "r_0001" @@ -29852,15 +29852,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.2.4; 1.1.99.-" - - bigg.reaction: "D_LACDcm" - - kegg.pathway: - - "sce00620" - - "sce00920" - - kegg.reaction: "R00197" - - metanetx.reaction: "MNXR138960" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.2.4; 1.1.99.-" + - bigg.reaction: "D_LACDcm" + - kegg.pathway: + - "sce00620" + - "sce00920" + - kegg.reaction: "R00197" + - metanetx.reaction: "MNXR138960" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0002" - name: "(R)-lactate:ferricytochrome-c 2-oxidoreductase" @@ -29877,15 +29877,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.2.4; 1.1.99.-" - - bigg.reaction: "D_LACDm" - - kegg.pathway: - - "sce00620" - - "sce00920" - - kegg.reaction: "R00197" - - metanetx.reaction: "MNXR138960" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.2.4; 1.1.99.-" + - bigg.reaction: "D_LACDm" + - kegg.pathway: + - "sce00620" + - "sce00920" + - kegg.reaction: "R00197" + - metanetx.reaction: "MNXR138960" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0003" - name: "(R,R)-butanediol dehydrogenase" @@ -29903,13 +29903,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.4" - - bigg.reaction: "BTDD_RR" - - kegg.pathway: "sce00650" - - kegg.reaction: "R02946" - - metanetx.reaction: "MNXR107844" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.4" + - bigg.reaction: "BTDD_RR" + - kegg.pathway: "sce00650" + - kegg.reaction: "R02946" + - metanetx.reaction: "MNXR107844" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0004" - name: "(S)-lactate:ferricytochrome-c 2-oxidoreductase" @@ -29926,15 +29926,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.2.3" - - bigg.reaction: "L_LACD2cm" - - kegg.pathway: - - "sce00620" - - "sce00920" - - kegg.reaction: "R00196" - - metanetx.reaction: "MNXR138959" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.2.3" + - bigg.reaction: "L_LACD2cm" + - kegg.pathway: + - "sce00620" + - "sce00920" + - kegg.reaction: "R00196" + - metanetx.reaction: "MNXR138959" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0005" - name: "1,3-beta-glucan synthase" @@ -29951,15 +29951,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.34" - - kegg.pathway: - - "sce00500" - - "sce04011" - - kegg.reaction: "R03118" - - metanetx.reaction: "MNXR143499" - - pmid: "7649185" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.1.34" + - kegg.pathway: + - "sce00500" + - "sce04011" + - kegg.reaction: "R03118" + - metanetx.reaction: "MNXR143499" + - pmid: "7649185" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0006" - name: "1,6-beta-glucan synthase" @@ -29976,10 +29976,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "8321211" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - pmid: "8321211" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0007" - name: "1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino)imidazole-4-carboxamide isomerase" @@ -29994,16 +29994,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.1.16" - - bigg.reaction: "PRMICI" - - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" - - kegg.reaction: "R04640" - - metanetx.reaction: "MNXR103169" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "5.3.1.16" + - bigg.reaction: "PRMICI" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" + - kegg.reaction: "R04640" + - metanetx.reaction: "MNXR103169" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0012" - name: "1-pyrroline-5-carboxylate dehydrogenase" @@ -30022,16 +30022,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.88" - - bigg.reaction: "P5CDm" - - kegg.pathway: - - "sce00250" - - "sce00330" - - kegg.reaction: "R00707" - - metanetx.reaction: "MNXR102301" - - pmid: "387737" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.1.88" + - bigg.reaction: "P5CDm" + - kegg.pathway: + - "sce00250" + - "sce00330" + - kegg.reaction: "R00707" + - metanetx.reaction: "MNXR102301" + - pmid: "387737" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0013" - name: "2,3-diketo-5-methylthio-1-phosphopentane degradation reaction" @@ -30050,11 +30050,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.13.11.54; 3.1.3.77" - - kegg.pathway: "sce00270" - - pmid: "14506228" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.13.11.54; 3.1.3.77" + - kegg.pathway: "sce00270" + - pmid: "14506228" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0014" - name: "2,5-diamino-6-ribitylamino-4(3H)-pyrimidinone 5'-phosphate deaminase" @@ -30072,14 +30072,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.26; 5.4.99.28" - - bigg.reaction: "DRTPPD" - - kegg.pathway: "sce00740" - - kegg.reaction: "R09377" - - metanetx.reaction: "MNXR112805" - - pmid: "9068650" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.4.26; 5.4.99.28" + - bigg.reaction: "DRTPPD" + - kegg.pathway: "sce00740" + - kegg.reaction: "R09377" + - metanetx.reaction: "MNXR112805" + - pmid: "9068650" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0015" - name: "2,5-diamino-6-ribosylamino-4(3H)-pyrimidinone 5'-phosphate reductase (NADPH)" @@ -30097,13 +30097,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.302" - - kegg.pathway: "sce00740" - - kegg.reaction: "R09376" - - metanetx.reaction: "MNXR112804" - - pmid: "9068650" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.302" + - kegg.pathway: "sce00740" + - kegg.reaction: "R09376" + - metanetx.reaction: "MNXR112804" + - pmid: "9068650" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0016" - name: "2-aceto-2-hydroxybutanoate synthase" @@ -30121,22 +30121,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.2.1.6" - - bigg.reaction: "ACHBSm" - - kegg.pathway: - - "sce00290" - - "sce00650" - - "sce00660" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R08648" - - metanetx.reaction: "MNXR95260" - - pmid: "8972574" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.2.1.6" + - bigg.reaction: "ACHBSm" + - kegg.pathway: + - "sce00290" + - "sce00650" + - "sce00660" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R08648" + - metanetx.reaction: "MNXR95260" + - pmid: "8972574" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0017" - name: "2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase" @@ -30154,12 +30154,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" - - kegg.pathway: "sce00790" - - kegg.reaction: "R03503" - - metanetx.reaction: "MNXR100694" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" + - kegg.pathway: "sce00790" + - kegg.reaction: "R03503" + - metanetx.reaction: "MNXR100694" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0018" - name: "2-aminoadipate transaminase" @@ -30176,27 +30176,27 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.39; 2.6.1.57; 2.6.1.7" - - bigg.reaction: "AATA" - - kegg.pathway: - - "sce00130" - - "sce00270" - - "sce00300" - - "sce00350" - - "sce00360" - - "sce00380" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01939" - - metanetx.reaction: "MNXR95160" - - pmid: - - "10714900" - - "19342587" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.39; 2.6.1.57; 2.6.1.7" + - bigg.reaction: "AATA" + - kegg.pathway: + - "sce00130" + - "sce00270" + - "sce00300" + - "sce00350" + - "sce00360" + - "sce00380" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01939" + - metanetx.reaction: "MNXR95160" + - pmid: + - "10714900" + - "19342587" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0019" - name: "2-dehydropantoate 2-reductase" @@ -30214,15 +30214,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.169" - - bigg.reaction: "DPR" - - kegg.pathway: - - "sce00770" - - "sce01110" - - kegg.reaction: "R02472" - - metanetx.reaction: "MNXR97779" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.169" + - bigg.reaction: "DPR" + - kegg.pathway: + - "sce00770" + - "sce01110" + - kegg.reaction: "R02472" + - metanetx.reaction: "MNXR97779" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0020" - name: "2-deoxy-D-arabino-heptulosonate 7-phosphate synthetase" @@ -30240,17 +30240,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.54" - - bigg.reaction: "DDPAm" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01826" - - metanetx.reaction: "MNXR97218" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.54" + - bigg.reaction: "DDPAm" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01826" + - metanetx.reaction: "MNXR97218" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0021" - name: "2-hexaprenyl-6-methoxy-1,4-benzoquinone methyltransferase" @@ -30268,16 +30268,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - - bigg.reaction: "2HPMBQMTm" - - kegg.pathway: - - "sce00130" - - "sce01110" - - kegg.reaction: "R04983" - - metanetx.reaction: "MNXR109269" - - pmid: "15792955" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" + - bigg.reaction: "2HPMBQMTm" + - kegg.pathway: + - "sce00130" + - "sce01110" + - kegg.reaction: "R04983" + - metanetx.reaction: "MNXR109269" + - pmid: "15792955" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0022" - name: "2-hexaprenyl-6-methoxyphenol monooxygenase" @@ -30294,16 +30294,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - - bigg.reaction: "2HP6MPMOm" - - kegg.pathway: - - "sce00130" - - "sce01110" - - kegg.reaction: "R04982" - - metanetx.reaction: "MNXR109268" - - pmid: "15792955" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" + - bigg.reaction: "2HP6MPMOm" + - kegg.pathway: + - "sce00130" + - "sce01110" + - kegg.reaction: "R04982" + - metanetx.reaction: "MNXR109268" + - pmid: "15792955" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0023" - name: "2-isopropylmalate hydratase" @@ -30319,18 +30319,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.33" - - bigg.reaction: "IPPMIb" - - kegg.pathway: - - "sce00290" - - "sce01110" - - "sce01210" - - "sce01230" - - kegg.reaction: "R03968" - - metanetx.reaction: "MNXR100826" - - pmid: "3071717" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.33" + - bigg.reaction: "IPPMIb" + - kegg.pathway: + - "sce00290" + - "sce01110" + - "sce01210" + - "sce01230" + - kegg.reaction: "R03968" + - metanetx.reaction: "MNXR100826" + - pmid: "3071717" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0024" - name: "2-isopropylmalate synthase" @@ -30349,19 +30349,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.3.13" - - bigg.reaction: "IPPS" - - kegg.pathway: - - "sce00290" - - "sce00620" - - "sce01110" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01213" - - metanetx.reaction: "MNXR100879" - - pmid: "6090272" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.3.13" + - bigg.reaction: "IPPS" + - kegg.pathway: + - "sce00290" + - "sce00620" + - "sce01110" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01213" + - metanetx.reaction: "MNXR100879" + - pmid: "6090272" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0025" - name: "2-isopropylmalate synthase" @@ -30380,19 +30380,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.3.13" - - bigg.reaction: "IPPSm" - - kegg.pathway: - - "sce00290" - - "sce00620" - - "sce01110" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01213" - - metanetx.reaction: "MNXR100879" - - pmid: "6090272" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.3.13" + - bigg.reaction: "IPPSm" + - kegg.pathway: + - "sce00290" + - "sce00620" + - "sce01110" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01213" + - metanetx.reaction: "MNXR100879" + - pmid: "6090272" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0026" - name: "2-keto-4-methylthiobutyrate transamination" @@ -30409,12 +30409,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R07396" - - metanetx.reaction: "MNXR95923" - - pmid: "14506228" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - kegg.reaction: "R07396" + - metanetx.reaction: "MNXR95923" + - pmid: "14506228" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0027" - name: "2-methylcitrate dehydratase" @@ -30430,17 +30430,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.36" - - kegg.pathway: - - "sce00300" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R03444" - - metanetx.reaction: "MNXR141287" - - pmid: "5908136" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.36" + - kegg.pathway: + - "sce00300" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R03444" + - metanetx.reaction: "MNXR141287" + - pmid: "5908136" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0028" - name: "2-methylcitrate synthase" @@ -30459,21 +30459,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.3.1" - - bigg.reaction: "MCITSm" - - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00931" - - metanetx.reaction: "MNXR101417" - - pmid: "16332871" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.3.1" + - bigg.reaction: "MCITSm" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00931" + - metanetx.reaction: "MNXR101417" + - pmid: "16332871" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0029" - name: "2-oxo-4-methyl-3-carboxypentanoate decarboxylation" @@ -30490,21 +30490,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.42" - - bigg.reaction: "OMCDC" - - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01652" - - metanetx.reaction: "MNXR102180" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.42" + - bigg.reaction: "OMCDC" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01652" + - metanetx.reaction: "MNXR102180" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0030" - name: "2-oxo-4-methyl-3-carboxypentanoate decarboxylation" @@ -30521,21 +30521,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.42" - - bigg.reaction: "OMCDCm" - - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01652" - - metanetx.reaction: "MNXR102180" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.42" + - bigg.reaction: "OMCDCm" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01652" + - metanetx.reaction: "MNXR102180" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0032" - name: "3',5'-bisphosphate nucleotidase" @@ -30552,16 +30552,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.7" - - bigg.reaction: "BPNT" - - kegg.pathway: - - "sce00920" - - "sce01130" - - kegg.reaction: "R00188" - - metanetx.reaction: "MNXR96321" - - pmid: "7809627" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.7" + - bigg.reaction: "BPNT" + - kegg.pathway: + - "sce00920" + - "sce01130" + - kegg.reaction: "R00188" + - metanetx.reaction: "MNXR96321" + - pmid: "7809627" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0033" - name: "3',5'-cyclic-nucleotide phosphodiesterase" @@ -30578,13 +30578,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.17; 3.1.4.53" - - bigg.reaction: "PDE1" - - kegg.pathway: "sce00230" - - kegg.reaction: "R00191" - - metanetx.reaction: "MNXR95886" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.4.17; 3.1.4.53" + - bigg.reaction: "PDE1" + - kegg.pathway: "sce00230" + - kegg.reaction: "R00191" + - metanetx.reaction: "MNXR95886" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0034" - name: "3',5'-cyclic-nucleotide phosphodiesterase" @@ -30601,12 +30601,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.53" - - bigg.reaction: "PDE2" - - kegg.pathway: "sce00230" - - metanetx.reaction: "MNXR136084" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.4.53" + - bigg.reaction: "PDE2" + - kegg.pathway: "sce00230" + - metanetx.reaction: "MNXR136084" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0035" - name: "3',5'-cyclic-nucleotide phosphodiesterase" @@ -30623,12 +30623,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.53" - - bigg.reaction: "PDE3" - - kegg.pathway: "sce00230" - - metanetx.reaction: "MNXR136083" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.4.53" + - bigg.reaction: "PDE3" + - kegg.pathway: "sce00230" + - metanetx.reaction: "MNXR136083" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0036" - name: "3',5'-cyclic-nucleotide phosphodiesterase" @@ -30645,13 +30645,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.53" - - bigg.reaction: "PDE4" - - kegg.pathway: "sce00230" - - kegg.reaction: "R01234" - - metanetx.reaction: "MNXR100078" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.4.53" + - bigg.reaction: "PDE4" + - kegg.pathway: "sce00230" + - kegg.reaction: "R01234" + - metanetx.reaction: "MNXR100078" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0037" - name: "3',5'-cyclic-nucleotide phosphodiesterase" @@ -30668,12 +30668,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.53" - - bigg.reaction: "PDE5" - - kegg.pathway: "sce00230" - - metanetx.reaction: "MNXR136082" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.4.53" + - bigg.reaction: "PDE5" + - kegg.pathway: "sce00230" + - metanetx.reaction: "MNXR136082" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0038" - name: "3,4-dihydroxy-2-butanone-4-phosphate synthase" @@ -30690,16 +30690,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.99.12" - - bigg.reaction: "DB4PS" - - kegg.pathway: - - "sce00740" - - "sce01110" - - kegg.reaction: "R07281" - - metanetx.reaction: "MNXR97178" - - pmid: "12595523" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.99.12" + - bigg.reaction: "DB4PS" + - kegg.pathway: + - "sce00740" + - "sce01110" + - kegg.reaction: "R07281" + - metanetx.reaction: "MNXR97178" + - pmid: "12595523" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0039" - name: "3-dehydroquinate dehydratase" @@ -30715,17 +30715,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - - bigg.reaction: "DHQTi" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R03084" - - metanetx.reaction: "MNXR97449" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" + - bigg.reaction: "DHQTi" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R03084" + - metanetx.reaction: "MNXR97449" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0040" - name: "3-dehydroquinate synthase" @@ -30741,18 +30741,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - - bigg.reaction: "DHQS" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R03083" - - metanetx.reaction: "MNXR97447" - - pmid: "6355828" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" + - bigg.reaction: "DHQS" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R03083" + - metanetx.reaction: "MNXR97447" + - pmid: "6355828" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0041" - name: "3-dehydrosphinganine reductase" @@ -30770,15 +30770,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.102" - - kegg.pathway: "sce00600" - - kegg.reaction: "R02978" - - metanetx.reaction: "MNXR94866" - - pmid: - - "18296751" - - "9804843" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.102" + - kegg.pathway: "sce00600" + - kegg.reaction: "R02978" + - metanetx.reaction: "MNXR94866" + - pmid: + - "18296751" + - "9804843" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0042" - name: "3-deoxy-D-arabino-heptulosonate 7-phosphate synthetase" @@ -30796,18 +30796,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.54" - - bigg.reaction: "DDPA" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01826" - - metanetx.reaction: "MNXR97218" - - pmid: "2880280" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.54" + - bigg.reaction: "DDPA" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01826" + - metanetx.reaction: "MNXR97218" + - pmid: "2880280" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0043" - name: "3-hexaprenyl-4,5-dihydroxybenzoate hydroxylase" @@ -30823,13 +30823,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3OPHB5Hm" - - kegg.reaction: "R06865" - - metanetx.reaction: "MNXR110601" - - pmid: "15792955" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "3OPHB5Hm" + - kegg.reaction: "R06865" + - metanetx.reaction: "MNXR110601" + - pmid: "15792955" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0044" - name: "3-hexaprenyl-4-hydroxy-5-methoxybenzoate decarboxylase" @@ -30846,12 +30846,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R06866" - - metanetx.reaction: "MNXR94901" - - pmid: "15792955" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - kegg.reaction: "R06866" + - metanetx.reaction: "MNXR94901" + - pmid: "15792955" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0045" - name: "3-hydroxy-L-kynurenine hydrolase" @@ -30869,13 +30869,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.7.1.3" - - bigg.reaction: "HKYNH" - - kegg.pathway: "sce00380" - - kegg.reaction: "R02668" - - metanetx.reaction: "MNXR100656" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.7.1.3" + - bigg.reaction: "HKYNH" + - kegg.pathway: "sce00380" + - kegg.reaction: "R02668" + - metanetx.reaction: "MNXR100656" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0057" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxotetradecanoyl-CoA)" @@ -30893,12 +30893,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - bigg.reaction: "HACD6p" - - kegg.reaction: "R04739" - - metanetx.reaction: "MNXR100547" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.n12; 4.2.1.119" + - bigg.reaction: "HACD6p" + - kegg.reaction: "R04739" + - metanetx.reaction: "MNXR100547" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0058" - name: "3-hydroxyanthranilate 3,4-dioxygenase" @@ -30914,14 +30914,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.13.11.6" - - bigg.reaction: "3HAO" - - kegg.pathway: "sce00380" - - kegg.reaction: "R02665" - - metanetx.reaction: "MNXR94889" - - pmid: "9539135" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.13.11.6" + - bigg.reaction: "3HAO" + - kegg.pathway: "sce00380" + - kegg.reaction: "R02665" + - metanetx.reaction: "MNXR94889" + - pmid: "9539135" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0059" - name: "3-isopropylmalate 3-methyltransferase" @@ -30938,10 +30938,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.145" - - pmid: "15147181" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.145" + - pmid: "15147181" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0060" - name: "3-isopropylmalate dehydratase" @@ -30957,18 +30957,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.33" - - bigg.reaction: "IPPMIa" - - kegg.pathway: - - "sce00290" - - "sce01110" - - "sce01210" - - "sce01230" - - kegg.reaction: "R04001" - - metanetx.reaction: "MNXR100827" - - pmid: "3071717" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.33" + - bigg.reaction: "IPPMIa" + - kegg.pathway: + - "sce00290" + - "sce01110" + - "sce01210" + - "sce01230" + - kegg.reaction: "R04001" + - metanetx.reaction: "MNXR100827" + - pmid: "3071717" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0061" - name: "3-isopropylmalate dehydrogenase" @@ -30986,19 +30986,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.85" - - bigg.reaction: "IPMD" - - kegg.pathway: - - "sce00290" - - "sce00660" - - "sce01110" - - "sce01210" - - "sce01230" - - kegg.reaction: "R04426" - - metanetx.reaction: "MNXR100878" - - pmid: "6297759" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.85" + - bigg.reaction: "IPMD" + - kegg.pathway: + - "sce00290" + - "sce00660" + - "sce01110" + - "sce01210" + - "sce01230" + - kegg.reaction: "R04426" + - metanetx.reaction: "MNXR100878" + - pmid: "6297759" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0062" - name: "3-methyl-2-oxobutanoate decarboxylase" @@ -31015,16 +31015,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - - bigg.reaction: "3MOBDC" - - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR94922" - - pmid: "12902239" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" + - bigg.reaction: "3MOBDC" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR94922" + - pmid: "12902239" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0063" - name: "3-methyl-2-oxobutanoate hydroxymethyltransferase" @@ -31042,15 +31042,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.2.11" - - bigg.reaction: "MTMOHT" - - kegg.pathway: - - "sce00770" - - "sce01110" - - kegg.reaction: "R01226" - - metanetx.reaction: "MNXR101702" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.2.11" + - bigg.reaction: "MTMOHT" + - kegg.pathway: + - "sce00770" + - "sce01110" + - kegg.reaction: "R01226" + - metanetx.reaction: "MNXR101702" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0064" - name: "3-methyl-2-oxopentanoate decarboxylase" @@ -31067,17 +31067,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - - bigg.reaction: "3MOPDC" - - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - kegg.reaction: "R03894" - - metanetx.reaction: "MNXR94925" - - pmid: "12902239" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" + - bigg.reaction: "3MOPDC" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - kegg.reaction: "R03894" + - metanetx.reaction: "MNXR94925" + - pmid: "12902239" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0065" - name: "3-phosphoshikimate 1-carboxyvinyltransferase" @@ -31094,18 +31094,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - - bigg.reaction: "PSCVT" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R03460" - - metanetx.reaction: "MNXR103226" - - pmid: "6355828" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" + - bigg.reaction: "PSCVT" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R03460" + - metanetx.reaction: "MNXR103226" + - pmid: "6355828" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0066" - name: "4-amino-4-deoxychorismate synthase" @@ -31122,13 +31122,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.85" - - bigg.reaction: "ADCS" - - kegg.pathway: "sce00790" - - kegg.reaction: "R01716" - - metanetx.reaction: "MNXR95440" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.85" + - bigg.reaction: "ADCS" + - kegg.pathway: "sce00790" + - kegg.reaction: "R01716" + - metanetx.reaction: "MNXR95440" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0067" - name: "4-aminobenzoate synthase" @@ -31145,12 +31145,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.3.38" - - bigg.reaction: "ADCL" - - kegg.reaction: "R05553" - - metanetx.reaction: "MNXR95436" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.3.38" + - bigg.reaction: "ADCL" + - kegg.reaction: "R05553" + - metanetx.reaction: "MNXR95436" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0068" - name: "4-aminobutyrate transaminase" @@ -31167,19 +31167,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.19" - - bigg.reaction: "ABTA" - - kegg.pathway: - - "sce00250" - - "sce00280" - - "sce00410" - - "sce00640" - - "sce00650" - - kegg.reaction: "R01648" - - metanetx.reaction: "MNXR95186" - - pmid: "10590462" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.19" + - bigg.reaction: "ABTA" + - kegg.pathway: + - "sce00250" + - "sce00280" + - "sce00410" + - "sce00640" + - "sce00650" + - kegg.reaction: "R01648" + - metanetx.reaction: "MNXR95186" + - pmid: "10590462" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0069" - name: "4-hydroxy-L-threonine synthase" @@ -31196,18 +31196,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.3.1" - - bigg.reaction: "4HTHRS" - - kegg.pathway: - - "sce00260" - - "sce00750" - - "sce01110" - - "sce01230" - - kegg.reaction: "R05086" - - metanetx.reaction: "MNXR95024" - - pmid: "8082795" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.3.1" + - bigg.reaction: "4HTHRS" + - kegg.pathway: + - "sce00260" + - "sce00750" + - "sce01110" + - "sce01230" + - kegg.reaction: "R05086" + - metanetx.reaction: "MNXR95024" + - pmid: "8082795" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0070" - name: "4-hydroxybenzoate formation" @@ -31225,13 +31225,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "4HBZFm" - - kegg.reaction: "R01301" - - metanetx.reaction: "MNXR95011" - - pmid: "11583838" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "4HBZFm" + - kegg.reaction: "R01301" + - metanetx.reaction: "MNXR95011" + - pmid: "11583838" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_0072" - name: "4-methyl-2-oxopentanoate decarboxylase" @@ -31248,16 +31248,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.-" - - bigg.reaction: "4MOPDC" - - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR137950" - - pmid: "12902239" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.-" + - bigg.reaction: "4MOPDC" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR137950" + - pmid: "12902239" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0073" - name: "4PP-IP5 depyrophosphorylation to IP6" @@ -31275,12 +31275,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.21; 2.7.4.24; 3.6.1.52; 3.6.1.60" - - kegg.reaction: "R05779" - - metanetx.reaction: "MNXR103044" - - pmid: "17412958" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.4.21; 2.7.4.24; 3.6.1.52; 3.6.1.60" + - kegg.reaction: "R05779" + - metanetx.reaction: "MNXR103044" + - pmid: "17412958" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0074" - name: "4PP-IP5 pyrophosphorylation to 4,5-PP2-IP4" @@ -31298,13 +31298,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.21" - - kegg.pathway: - - "sce04070" - - "sce04138" - - pmid: "17412958" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.4.21" + - kegg.pathway: + - "sce04070" + - "sce04138" + - pmid: "17412958" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0075" - name: "5'-methylthioadenosine phosphorylase" @@ -31321,14 +31321,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.28" - - bigg.reaction: "MTAP" - - kegg.pathway: "sce00270" - - kegg.reaction: "R01402" - - metanetx.reaction: "MNXR101745" - - pmid: "14506228" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.2.28" + - bigg.reaction: "MTAP" + - kegg.pathway: "sce00270" + - kegg.reaction: "R01402" + - metanetx.reaction: "MNXR101745" + - pmid: "14506228" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0076" - name: "5'-nucleotidase (CMP)" @@ -31345,16 +31345,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - bigg.reaction: "NTD4" - - kegg.pathway: "sce00760" - - kegg.reaction: "R00511" - - metanetx.reaction: "MNXR102034" - - pmid: - - "11934891" - - "23670538" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - bigg.reaction: "NTD4" + - kegg.pathway: "sce00760" + - kegg.reaction: "R00511" + - metanetx.reaction: "MNXR102034" + - pmid: + - "11934891" + - "23670538" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0077" - name: "5'-nucleotidase (IMP)" @@ -31371,16 +31371,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.99" - - bigg.reaction: "NTD11" - - kegg.pathway: - - "sce00230" - - "sce00760" - - kegg.reaction: "R01126" - - metanetx.reaction: "MNXR102030" - - pmid: "12735798" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.99" + - bigg.reaction: "NTD11" + - kegg.pathway: + - "sce00230" + - "sce00760" + - kegg.reaction: "R01126" + - metanetx.reaction: "MNXR102030" + - pmid: "12735798" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0078" - name: "5'-nucleotidase (UMP)" @@ -31397,16 +31397,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - bigg.reaction: "NTD2" - - kegg.pathway: "sce00760" - - kegg.reaction: "R00963" - - metanetx.reaction: "MNXR102032" - - pmid: - - "11934891" - - "23670538" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - bigg.reaction: "NTD2" + - kegg.pathway: "sce00760" + - kegg.reaction: "R00963" + - metanetx.reaction: "MNXR102032" + - pmid: + - "11934891" + - "23670538" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0079" - name: "5'-phosphoribosylformyl glycinamidine synthetase" @@ -31428,16 +31428,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.5.3" - - bigg.reaction: "PRFGS" - - kegg.pathway: - - "sce00230" - - "sce01110" - - "sce01130" - - kegg.reaction: "R04463" - - metanetx.reaction: "MNXR108904" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.5.3" + - bigg.reaction: "PRFGS" + - kegg.pathway: + - "sce00230" + - "sce01110" + - "sce01130" + - kegg.reaction: "R04463" + - metanetx.reaction: "MNXR108904" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0080" - name: "5,10-methylenetetrahydrofolate reductase (NADPH)" @@ -31455,16 +31455,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.20" - - bigg.reaction: "MTHFR3" - - kegg.pathway: - - "sce00670" - - "sce01200" - - kegg.reaction: "R01224" - - metanetx.reaction: "MNXR101752" - - pmid: "21623372" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.5.1.20" + - bigg.reaction: "MTHFR3" + - kegg.pathway: + - "sce00670" + - "sce01200" + - kegg.reaction: "R01224" + - metanetx.reaction: "MNXR101752" + - pmid: "21623372" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0081" - name: "5-aminolevulinate synthase" @@ -31483,16 +31483,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.37" - - bigg.reaction: "ALASm" - - kegg.pathway: - - "sce00260" - - "sce00860" - - "sce01110" - - kegg.reaction: "R00830" - - metanetx.reaction: "MNXR95695" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.37" + - bigg.reaction: "ALASm" + - kegg.pathway: + - "sce00260" + - "sce00860" + - "sce01110" + - kegg.reaction: "R00830" + - metanetx.reaction: "MNXR95695" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0082" - name: "5-diphosphoinositol-1,2,3,4,6-pentakisphosphate diphosphohydrolase" @@ -31510,12 +31510,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.52; 3.6.1.60" - - kegg.reaction: "R05779" - - metanetx.reaction: "MNXR103044" - - pmid: "10419486" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.6.1.52; 3.6.1.60" + - kegg.reaction: "R05779" + - metanetx.reaction: "MNXR103044" + - pmid: "10419486" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0083" - name: "5-diphosphoinositol-1,2,3,4,6-pentakisphosphate synthase" @@ -31532,15 +31532,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.21" - - kegg.pathway: - - "sce04070" - - "sce04138" - - kegg.reaction: "R09087" - - metanetx.reaction: "MNXR101584" - - pmid: "11956213" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.4.21" + - kegg.pathway: + - "sce04070" + - "sce04138" + - kegg.reaction: "R09087" + - metanetx.reaction: "MNXR101584" + - pmid: "11956213" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0084" - name: "5-formethyltetrahydrofolate cyclo-ligase" @@ -31558,13 +31558,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.3.2" - - bigg.reaction: "FTHFCL" - - kegg.pathway: "sce00670" - - kegg.reaction: "R02301" - - metanetx.reaction: "MNXR99668" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.3.2" + - bigg.reaction: "FTHFCL" + - kegg.pathway: "sce00670" + - kegg.reaction: "R02301" + - metanetx.reaction: "MNXR99668" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0085" - name: "5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase" @@ -31581,18 +31581,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.14" - - bigg.reaction: "MHPGLUT" - - kegg.pathway: - - "sce00270" - - "sce00450" - - "sce01110" - - "sce01230" - - kegg.reaction: "R04405" - - metanetx.reaction: "MNXR101555" - - pmid: "3542720" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.14" + - bigg.reaction: "MHPGLUT" + - kegg.pathway: + - "sce00270" + - "sce00450" + - "sce01110" + - "sce01230" + - kegg.reaction: "R04405" + - metanetx.reaction: "MNXR101555" + - pmid: "3542720" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0086" - name: "5-methylthio-5-deoxy-D-ribulose 1-phosphate dehydratase" @@ -31608,13 +31608,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MDRPD" - - kegg.reaction: "R07392" - - metanetx.reaction: "MNXR125830" - - pmid: "14506228" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "MDRPD" + - kegg.reaction: "R07392" + - metanetx.reaction: "MNXR125830" + - pmid: "14506228" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0087" - name: "5-methylthioribose-1-phosphate isomerase" @@ -31629,13 +31629,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MTRI" - - kegg.reaction: "R04420" - - metanetx.reaction: "MNXR101759" - - pmid: "14506228" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "MTRI" + - kegg.reaction: "R04420" + - metanetx.reaction: "MNXR101759" + - pmid: "14506228" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0088" - name: "5PP-IP5 pyrophosphorylation to 4,5-PP2-IP4" @@ -31653,10 +31653,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.21; 2.7.4.24" - - pmid: "17412958" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.4.21; 2.7.4.24" + - pmid: "17412958" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0089" - name: "5PP-IP5 pyrophosphorylation to 5,6-PP2-IP4" @@ -31674,10 +31674,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.21; 2.7.4.24" - - pmid: "17412958" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.4.21; 2.7.4.24" + - pmid: "17412958" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0090" - name: "6-phosphofructo-2-kinase" @@ -31695,12 +31695,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.105" - - bigg.reaction: "PFK26" - - kegg.pathway: "sce00051" - - metanetx.reaction: "MNXR124534" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.105" + - bigg.reaction: "PFK26" + - kegg.pathway: "sce00051" + - metanetx.reaction: "MNXR124534" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0091" - name: "6-phosphogluconolactonase" @@ -31717,18 +31717,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.31" - - bigg.reaction: "PGL" - - kegg.pathway: - - "sce00030" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R02035" - - metanetx.reaction: "MNXR102539" - - pmid: "14454532" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.31" + - bigg.reaction: "PGL" + - kegg.pathway: + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R02035" + - metanetx.reaction: "MNXR102539" + - pmid: "14454532" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0092" - name: "6PP-IP5 depyrophosphorylation to IP6" @@ -31746,12 +31746,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.21; 2.7.4.24; 3.6.1.52; 3.6.1.60" - - kegg.reaction: "R05779" - - metanetx.reaction: "MNXR103044" - - pmid: "17412958" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.4.21; 2.7.4.24; 3.6.1.52; 3.6.1.60" + - kegg.reaction: "R05779" + - metanetx.reaction: "MNXR103044" + - pmid: "17412958" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0093" - name: "6PP-IP5 pyrophosphorylation to 5,6-PP2-IP4" @@ -31769,13 +31769,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.21" - - kegg.pathway: - - "sce04070" - - "sce04138" - - pmid: "17412958" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.4.21" + - kegg.pathway: + - "sce04070" + - "sce04138" + - pmid: "17412958" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0094" - name: "8-amino-7-oxononanoate synthase" @@ -31794,12 +31794,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R03210" - - metanetx.reaction: "MNXR95854" - - pmid: "16269718" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - kegg.reaction: "R03210" + - metanetx.reaction: "MNXR95854" + - pmid: "16269718" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0095" - name: "acetaldehyde condensation" @@ -31814,16 +31814,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - - bigg.reaction: "ACALDCD" - - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR95211" - - pmid: "12902239" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" + - bigg.reaction: "ACALDCD" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR95211" + - pmid: "12902239" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0096" - name: "acetohydroxy acid isomeroreductase" @@ -31841,17 +31841,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.86" - - kegg.pathway: - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - pmid: "8972574" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.86" + - kegg.pathway: + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - pmid: "8972574" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0097" - name: "acetolactate synthase" @@ -31868,21 +31868,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.2.1.6" - - kegg.pathway: - - "sce00290" - - "sce00650" - - "sce00660" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00006" - - metanetx.reaction: "MNXR106335" - - pmid: "8972574" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.2.1.6" + - kegg.pathway: + - "sce00290" + - "sce00650" + - "sce00660" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00006" + - metanetx.reaction: "MNXR106335" + - pmid: "8972574" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0099" - name: "acetyl-CoA ACP transacylase" @@ -31899,14 +31899,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ACOATAm" - - kegg.pathway: "sce00190" - - kegg.reaction: "R01624" - - metanetx.reaction: "MNXR95376" - - pmid: "15387819" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ACOATAm" + - kegg.pathway: "sce00190" + - kegg.reaction: "R01624" + - metanetx.reaction: "MNXR95376" + - pmid: "15387819" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0100" - name: "acetyl-CoA C-acyltransferase (palmitoyl-CoA)" @@ -31923,19 +31923,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - bigg.reaction: "ACACT8p" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR95204" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT8p" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR95204" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0101" - name: "acetyl-CoA C-acyltransferase (tetracosanoyl-CoA)" @@ -31952,19 +31952,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - bigg.reaction: "ACACT9p" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR124343" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT9p" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR124343" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0102" - name: "acetyl-CoA C-acyltransferase (myristoyl-CoA)" @@ -31981,20 +31981,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - bigg.reaction: "ACACT7p" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - kegg.reaction: "R03991" - - metanetx.reaction: "MNXR95203" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT7p" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - kegg.reaction: "R03991" + - metanetx.reaction: "MNXR95203" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0103" - name: "acetyl-CoA C-acetyltransferase" @@ -32010,27 +32010,27 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.9" - - bigg.reaction: "ACACT1r" - - kegg.pathway: - - "sce00071" - - "sce00072" - - "sce00280" - - "sce00310" - - "sce00380" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00650" - - "sce00900" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01212" - - kegg.reaction: "R00238" - - metanetx.reaction: "MNXR95194" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.9" + - bigg.reaction: "ACACT1r" + - kegg.pathway: + - "sce00071" + - "sce00072" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00650" + - "sce00900" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01212" + - kegg.reaction: "R00238" + - metanetx.reaction: "MNXR95194" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0104" - name: "acetyl-CoA C-acetyltransferase" @@ -32046,27 +32046,27 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.9" - - bigg.reaction: "ACACT1m" - - kegg.pathway: - - "sce00071" - - "sce00072" - - "sce00280" - - "sce00310" - - "sce00380" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00650" - - "sce00900" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01212" - - kegg.reaction: "R00238" - - metanetx.reaction: "MNXR95194" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.9" + - bigg.reaction: "ACACT1m" + - kegg.pathway: + - "sce00071" + - "sce00072" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00650" + - "sce00900" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01212" + - kegg.reaction: "R00238" + - metanetx.reaction: "MNXR95194" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0105" - name: "acetyl-CoA C-acyltransferase (lauroyl-CoA)" @@ -32083,20 +32083,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - bigg.reaction: "ACACT6p" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - kegg.reaction: "R03858" - - metanetx.reaction: "MNXR95201" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT6p" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - kegg.reaction: "R03858" + - metanetx.reaction: "MNXR95201" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0106" - name: "acetyl-CoA C-acyltransferase (octanoyl-CoA)" @@ -32113,20 +32113,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - bigg.reaction: "ACACT4p" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - kegg.reaction: "R03778" - - metanetx.reaction: "MNXR95198" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT4p" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - kegg.reaction: "R03778" + - metanetx.reaction: "MNXR95198" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0107" - name: "acetyl-CoA C-acyltransferase (decanoyl-CoA)" @@ -32143,19 +32143,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - kegg.reaction: "R04742" - - metanetx.reaction: "MNXR95200" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - kegg.reaction: "R04742" + - metanetx.reaction: "MNXR95200" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0108" - name: "acetyl-Coa carboxylase" @@ -32175,19 +32175,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.4.14; 6.4.1.2" - - bigg.reaction: "ACCOACrm" - - kegg.pathway: - - "sce00061" - - "sce00620" - - "sce00640" - - "sce01110" - - "sce01212" - - kegg.reaction: "R00742" - - metanetx.reaction: "MNXR95219" - - pmid: "14761959" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.3.4.14; 6.4.1.2" + - bigg.reaction: "ACCOACrm" + - kegg.pathway: + - "sce00061" + - "sce00620" + - "sce00640" + - "sce01110" + - "sce01212" + - kegg.reaction: "R00742" + - metanetx.reaction: "MNXR95219" + - pmid: "14761959" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0109" - name: "acetyl-CoA carboxylase, reaction" @@ -32207,19 +32207,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.4.14" - - bigg.reaction: "ACCOAC" - - kegg.pathway: - - "sce00061" - - "sce00620" - - "sce00640" - - "sce00780" - - "sce01110" - - "sce01212" - - kegg.reaction: "R00742" - - metanetx.reaction: "MNXR95219" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.4.14" + - bigg.reaction: "ACCOAC" + - kegg.pathway: + - "sce00061" + - "sce00620" + - "sce00640" + - "sce00780" + - "sce01110" + - "sce01212" + - kegg.reaction: "R00742" + - metanetx.reaction: "MNXR95219" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0111" - name: "acetyl-CoA hydrolase" @@ -32237,13 +32237,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.1" - - bigg.reaction: "ACOAHim" - - kegg.pathway: "sce00620" - - kegg.reaction: "R00227" - - metanetx.reaction: "MNXR95363" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.2.1" + - bigg.reaction: "ACOAHim" + - kegg.pathway: "sce00620" + - kegg.reaction: "R00227" + - metanetx.reaction: "MNXR95363" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0112" - name: "acetyl-CoA synthetase" @@ -32262,20 +32262,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.1" - - bigg.reaction: "ACS" - - kegg.pathway: - - "sce00010" - - "sce00620" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00235" - - metanetx.reaction: "MNXR95413" - - pmid: "8910545" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.1" + - bigg.reaction: "ACS" + - kegg.pathway: + - "sce00010" + - "sce00620" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00235" + - metanetx.reaction: "MNXR95413" + - pmid: "8910545" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0113" - name: "acetyl-CoA synthetase" @@ -32294,19 +32294,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.1" - - bigg.reaction: "ACSm" - - kegg.pathway: - - "sce00010" - - "sce00620" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00235" - - metanetx.reaction: "MNXR95413" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.2.1.1" + - bigg.reaction: "ACSm" + - kegg.pathway: + - "sce00010" + - "sce00620" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00235" + - metanetx.reaction: "MNXR95413" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0114" - name: "acetyl-CoA synthetase nuclear" @@ -32325,19 +32325,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.1" - - kegg.pathway: - - "sce00010" - - "sce00620" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00235" - - metanetx.reaction: "MNXR95413" - - pmid: "16857587" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.1" + - kegg.pathway: + - "sce00010" + - "sce00620" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00235" + - metanetx.reaction: "MNXR95413" + - pmid: "16857587" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0115" - name: "acetylglutamate kinase" @@ -32354,18 +32354,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.38; 2.7.2.8" - - bigg.reaction: "ACGKm" - - kegg.pathway: - - "sce00220" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R02649" - - metanetx.reaction: "MNXR95256" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.38; 2.7.2.8" + - bigg.reaction: "ACGKm" + - kegg.pathway: + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R02649" + - metanetx.reaction: "MNXR95256" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0116" - name: "acid phosphatase (secreted)" @@ -32382,17 +32382,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.2" - - bigg.reaction: "ACP1e" - - kegg.pathway: - - "sce00730" - - "sce00740" - - "sce04111" - - kegg.reaction: "R00548" - - metanetx.reaction: "MNXR95393" - - pmid: "13405892" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.2" + - bigg.reaction: "ACP1e" + - kegg.pathway: + - "sce00730" + - "sce00740" + - "sce04111" + - kegg.reaction: "R00548" + - metanetx.reaction: "MNXR95393" + - pmid: "13405892" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0117" - name: "aconitase" @@ -32407,13 +32407,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.79" - - bigg.reaction: "ACONT3m" - - kegg.pathway: "sce00640" - - metanetx.reaction: "MNXR95385" - - pmid: "16332871" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.79" + - bigg.reaction: "ACONT3m" + - kegg.pathway: "sce00640" + - metanetx.reaction: "MNXR95385" + - pmid: "16332871" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0118" - name: "acteylornithine transaminase" @@ -32430,18 +32430,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.11" - - bigg.reaction: "ACOTAim" - - kegg.pathway: - - "sce00220" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R02283" - - metanetx.reaction: "MNXR95388" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.11" + - bigg.reaction: "ACOTAim" + - kegg.pathway: + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R02283" + - metanetx.reaction: "MNXR95388" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0119" - name: "acyl carrier protein synthase" @@ -32459,12 +32459,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.7" - - bigg.reaction: "ACPSm" - - kegg.reaction: "R10747" - - metanetx.reaction: "MNXR95402" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.8.7" + - bigg.reaction: "ACPSm" + - kegg.reaction: "R10747" + - metanetx.reaction: "MNXR95402" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0120" - name: "acyl-CoA oxidase (decanoyl-CoA)" @@ -32481,16 +32481,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR127526" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR127526" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0121" - name: "acyl-CoA oxidase (dodecanoyl-CoA)" @@ -32507,17 +32507,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - bigg.reaction: "ACOAO5p" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR95365" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.3.3.6" + - bigg.reaction: "ACOAO5p" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR95365" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0122" - name: "acyl-CoA oxidase (hexacosanoyl-CoA)" @@ -32534,17 +32534,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - bigg.reaction: "ACOAO9p" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR124346" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.3.3.6" + - bigg.reaction: "ACOAO9p" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR124346" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0123" - name: "acyl-CoA oxidase (hexadecanoyl-CoA)" @@ -32561,17 +32561,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - bigg.reaction: "ACOAO7p" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR95367" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.3.3.6" + - bigg.reaction: "ACOAO7p" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR95367" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0124" - name: "acyl-CoA oxidase (octadecanoyl-CoA)" @@ -32588,17 +32588,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - bigg.reaction: "ACOAO8p" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR95368" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.3.3.6" + - bigg.reaction: "ACOAO8p" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR95368" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0125" - name: "acyl-CoA oxidase (tetradecanoyl-CoA)" @@ -32615,17 +32615,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - bigg.reaction: "ACOAO6p" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR95366" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.3.3.6" + - bigg.reaction: "ACOAO6p" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR95366" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0126" - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:episterol), ER membrane" @@ -32642,11 +32642,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.26" - - kegg.pathway: "sce00100" - - pmid: "10672016" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" + - pmid: "10672016" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0127" - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:ergosterol), ER membrane" @@ -32663,12 +32663,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.26" - - kegg.pathway: "sce00100" - - metanetx.reaction: "MNXR119161" - - pmid: "10672016" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" + - metanetx.reaction: "MNXR119161" + - pmid: "10672016" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0128" - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:fecosterol), ER membrane" @@ -32685,11 +32685,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.26" - - kegg.pathway: "sce00100" - - pmid: "10672016" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" + - pmid: "10672016" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0129" - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:lanosterol), ER membrane" @@ -32706,12 +32706,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.26" - - kegg.pathway: "sce00100" - - metanetx.reaction: "MNXR119159" - - pmid: "10672016" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" + - metanetx.reaction: "MNXR119159" + - pmid: "10672016" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0130" - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:zymosterol), ER membrane" @@ -32728,11 +32728,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.26" - - kegg.pathway: "sce00100" - - pmid: "10672016" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" + - pmid: "10672016" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0131" - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:episterol), ER membrane" @@ -32749,11 +32749,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.26" - - kegg.pathway: "sce00100" - - pmid: "10672016" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" + - pmid: "10672016" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0132" - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:ergosterol), ER membrane" @@ -32770,11 +32770,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.26" - - kegg.pathway: "sce00100" - - pmid: "10672016" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" + - pmid: "10672016" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0133" - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:fecosterol), ER membrane" @@ -32791,11 +32791,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.26" - - kegg.pathway: "sce00100" - - pmid: "10672016" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" + - pmid: "10672016" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0134" - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:lanosterol), ER membrane" @@ -32812,11 +32812,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.26" - - kegg.pathway: "sce00100" - - pmid: "10672016" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" + - pmid: "10672016" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0135" - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:zymosterol), ER membrane" @@ -32833,11 +32833,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.26" - - kegg.pathway: "sce00100" - - pmid: "10672016" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.26" + - kegg.pathway: "sce00100" + - pmid: "10672016" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0137" - name: "acylation of GPI inositol at 2 position, GPI-anchor assembly, step 3" @@ -32854,11 +32854,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.-.-" - - kegg.pathway: "sce00563" - - pmid: "12714589" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.-.-" + - kegg.pathway: "sce00563" + - pmid: "12714589" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0138" - name: "adenine deaminase" @@ -32876,13 +32876,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.2" - - bigg.reaction: "ADD" - - kegg.pathway: "sce00230" - - kegg.reaction: "R01244" - - metanetx.reaction: "MNXR95443" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.4.2" + - bigg.reaction: "ADD" + - kegg.pathway: "sce00230" + - kegg.reaction: "R01244" + - metanetx.reaction: "MNXR95443" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0139" - name: "adenine phosphoribosyltransferase" @@ -32899,14 +32899,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.7" - - bigg.reaction: "ADPT" - - kegg.pathway: "sce00230" - - kegg.reaction: "R00190" - - metanetx.reaction: "MNXR95482" - - pmid: "9864350" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.2.7" + - bigg.reaction: "ADPT" + - kegg.pathway: "sce00230" + - kegg.reaction: "R00190" + - metanetx.reaction: "MNXR95482" + - pmid: "9864350" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0140" - name: "adenosine deaminase" @@ -32924,13 +32924,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.2" - - bigg.reaction: "ADA" - - kegg.pathway: "sce00230" - - kegg.reaction: "R01560" - - metanetx.reaction: "MNXR95432" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.4.2" + - bigg.reaction: "ADA" + - kegg.pathway: "sce00230" + - kegg.reaction: "R01560" + - metanetx.reaction: "MNXR95432" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0142" - name: "adenosine kinase" @@ -32948,13 +32948,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.20" - - bigg.reaction: "ADNK1" - - kegg.pathway: "sce00230" - - kegg.reaction: "R00185" - - metanetx.reaction: "MNXR95456" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.20" + - bigg.reaction: "ADNK1" + - kegg.pathway: "sce00230" + - kegg.reaction: "R00185" + - metanetx.reaction: "MNXR95456" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0143" - name: "adenosine monophosphate deaminase" @@ -32972,16 +32972,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.6" - - bigg.reaction: "AMPDA" - - kegg.pathway: - - "sce00230" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00181" - - metanetx.reaction: "MNXR95824" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.4.6" + - bigg.reaction: "AMPDA" + - kegg.pathway: + - "sce00230" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00181" + - metanetx.reaction: "MNXR95824" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0144" - name: "adenosylhomocysteinase" @@ -32998,14 +32998,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.3.1.1" - - bigg.reaction: "AHCi" - - kegg.pathway: "sce00270" - - kegg.reaction: "R00192" - - metanetx.reaction: "MNXR95492" - - pmid: "15556636" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.3.1.1" + - bigg.reaction: "AHCi" + - kegg.pathway: "sce00270" + - kegg.reaction: "R00192" + - metanetx.reaction: "MNXR95492" + - pmid: "15556636" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0145" - name: "adenosylmethionine decarboxylase" @@ -33022,16 +33022,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.50" - - bigg.reaction: "ADMDC" - - kegg.pathway: - - "sce00270" - - "sce00330" - - kegg.reaction: "R00178" - - metanetx.reaction: "MNXR95455" - - pmid: "3087344" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.50" + - bigg.reaction: "ADMDC" + - kegg.pathway: + - "sce00270" + - "sce00330" + - kegg.reaction: "R00178" + - metanetx.reaction: "MNXR95455" + - pmid: "3087344" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0146" - name: "adenosylmethionine-8-amino-7-oxononanoate transaminase" @@ -33048,13 +33048,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.62" - - bigg.reaction: "AMAOTr" - - kegg.pathway: "sce00780" - - kegg.reaction: "R03231" - - metanetx.reaction: "MNXR95806" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.62" + - bigg.reaction: "AMAOTr" + - kegg.pathway: "sce00780" + - kegg.reaction: "R03231" + - metanetx.reaction: "MNXR95806" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0147" - name: "adenylate cyclase" @@ -33070,16 +33070,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.6.1.1" - - bigg.reaction: "ADNCYC" - - kegg.pathway: - - "sce00230" - - "sce04113" - - "sce04213" - - kegg.reaction: "R00089" - - metanetx.reaction: "MNXR95444" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.6.1.1" + - bigg.reaction: "ADNCYC" + - kegg.pathway: + - "sce00230" + - "sce04113" + - "sce04213" + - kegg.reaction: "R00089" + - metanetx.reaction: "MNXR95444" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0148" - name: "adenylate kinase" @@ -33095,17 +33095,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.3" - - bigg.reaction: "ADK1" - - kegg.pathway: - - "sce00230" - - "sce00730" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00127" - - metanetx.reaction: "MNXR95450" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.3" + - bigg.reaction: "ADK1" + - kegg.pathway: + - "sce00230" + - "sce00730" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00127" + - metanetx.reaction: "MNXR95450" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0149" - name: "adenylate kinase" @@ -33121,17 +33121,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.10" - - bigg.reaction: "ADK1m" - - kegg.pathway: - - "sce00230" - - "sce00730" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00127" - - metanetx.reaction: "MNXR95450" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.10" + - bigg.reaction: "ADK1m" + - kegg.pathway: + - "sce00230" + - "sce00730" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00127" + - metanetx.reaction: "MNXR95450" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0150" - name: "adenylate kinase (GTP)" @@ -33148,16 +33148,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.10" - - bigg.reaction: "ADK3m" - - kegg.pathway: - - "sce00230" - - "sce00730" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR95452" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.10" + - bigg.reaction: "ADK3m" + - kegg.pathway: + - "sce00230" + - "sce00730" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR95452" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0151" - name: "adenylosuccinate lyase (AICAR)" @@ -33173,17 +33173,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.3.2.2" - - bigg.reaction: "ADSL2r" - - kegg.pathway: - - "sce00230" - - "sce00250" - - "sce01110" - - "sce01130" - - kegg.reaction: "R04559" - - metanetx.reaction: "MNXR108966" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.3.2.2" + - bigg.reaction: "ADSL2r" + - kegg.pathway: + - "sce00230" + - "sce00250" + - "sce01110" + - "sce01130" + - kegg.reaction: "R04559" + - metanetx.reaction: "MNXR108966" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0152" - name: "adenylosuccinate lyase" @@ -33199,17 +33199,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.3.2.2" - - bigg.reaction: "ADSL1r" - - kegg.pathway: - - "sce00230" - - "sce00250" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01083" - - metanetx.reaction: "MNXR95493" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.3.2.2" + - bigg.reaction: "ADSL1r" + - kegg.pathway: + - "sce00230" + - "sce00250" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01083" + - metanetx.reaction: "MNXR95493" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0153" - name: "adenylosuccinate synthase" @@ -33229,15 +33229,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.4.4" - - bigg.reaction: "ADSS" - - kegg.pathway: - - "sce00230" - - "sce00250" - - kegg.reaction: "R01135" - - metanetx.reaction: "MNXR95495" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.4.4" + - bigg.reaction: "ADSS" + - kegg.pathway: + - "sce00230" + - "sce00250" + - kegg.reaction: "R01135" + - metanetx.reaction: "MNXR95495" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0154" - name: "adenylyl-sulfate kinase" @@ -33255,16 +33255,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.25" - - bigg.reaction: "ADSK" - - kegg.pathway: - - "sce00230" - - "sce00920" - - kegg.reaction: "R00509" - - metanetx.reaction: "MNXR95159" - - pmid: "1654509" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.25" + - bigg.reaction: "ADSK" + - kegg.pathway: + - "sce00230" + - "sce00920" + - kegg.reaction: "R00509" + - metanetx.reaction: "MNXR95159" + - pmid: "1654509" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0155" - name: "ADP-ribose 2,3-cyclic phosphodiesterase" @@ -33281,12 +33281,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.37" - - bigg.reaction: "23CAPPD" - - metanetx.reaction: "MNXR117324" - - pmid: "10734185" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.37" + - bigg.reaction: "23CAPPD" + - metanetx.reaction: "MNXR117324" + - pmid: "10734185" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0156" - name: "alanine glyoxylate aminotransferase" @@ -33303,20 +33303,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.44" - - bigg.reaction: "AGTi" - - kegg.pathway: - - "sce00250" - - "sce00260" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce04146" - - kegg.reaction: "R00369" - - metanetx.reaction: "MNXR95618" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.44" + - bigg.reaction: "AGTi" + - kegg.pathway: + - "sce00250" + - "sce00260" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce04146" + - kegg.reaction: "R00369" + - metanetx.reaction: "MNXR95618" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0157" - name: "alanyl-tRNA synthetase" @@ -33335,14 +33335,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.7" - - bigg.reaction: "ALATRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03038" - - metanetx.reaction: "MNXR107903" - - pmid: "7761427" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.7" + - bigg.reaction: "ALATRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03038" + - metanetx.reaction: "MNXR107903" + - pmid: "7761427" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0158" - name: "alcohol acetyltransferase (2-methylbutanol)" @@ -33359,12 +33359,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - bigg.reaction: "OHACT3" - - metanetx.reaction: "MNXR102165" - - pmid: "12957907" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.84" + - bigg.reaction: "OHACT3" + - metanetx.reaction: "MNXR102165" + - pmid: "12957907" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0159" - name: "alcohol acetyltransferase (ethanol)" @@ -33381,11 +33381,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - metanetx.reaction: "MNXR117501" - - pmid: "12957907" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.84" + - metanetx.reaction: "MNXR117501" + - pmid: "12957907" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0160" - name: "alcohol acetyltransferase (isoamyl alcohol)" @@ -33402,12 +33402,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - bigg.reaction: "OHACT2" - - metanetx.reaction: "MNXR102164" - - pmid: "12957907" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.84" + - bigg.reaction: "OHACT2" + - metanetx.reaction: "MNXR102164" + - pmid: "12957907" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0161" - name: "alcohol acetyltransferase (isobutyl alcohol)" @@ -33424,12 +33424,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - bigg.reaction: "OHACT4" - - metanetx.reaction: "MNXR102166" - - pmid: "12957907" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.84" + - bigg.reaction: "OHACT4" + - metanetx.reaction: "MNXR102166" + - pmid: "12957907" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0162" - name: "alcohol acetyltransferase (phenylethanol alcohol)" @@ -33446,12 +33446,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - bigg.reaction: "OHACT5" - - metanetx.reaction: "MNXR102167" - - pmid: "12957907" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.84" + - bigg.reaction: "OHACT5" + - metanetx.reaction: "MNXR102167" + - pmid: "12957907" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0163" - name: "alcohol dehydrogenase (ethanol to acetaldehyde)" @@ -33469,19 +33469,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.1" - - bigg.reaction: "ALCD2x" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00754" - - metanetx.reaction: "MNXR95725" - - pmid: "12702265" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD2x" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00754" + - metanetx.reaction: "MNXR95725" + - pmid: "12702265" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0164" - name: "alcohol dehydrogenase (glycerol, NADP)" @@ -33499,14 +33499,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.21" - - bigg.reaction: "ALCD19y" - - kegg.pathway: "sce00040" - - kegg.reaction: "R01041" - - metanetx.reaction: "MNXR95711" - - pmid: "12210903" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.-; 1.1.1.21" + - bigg.reaction: "ALCD19y" + - kegg.pathway: "sce00040" + - kegg.reaction: "R01041" + - metanetx.reaction: "MNXR95711" + - pmid: "12210903" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0165" - name: "mitochondrial alcohol dehydrogenase" @@ -33524,19 +33524,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.1" - - bigg.reaction: "ALCD2irm" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00754" - - metanetx.reaction: "MNXR95725" - - pmid: "12499363" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD2irm" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00754" + - metanetx.reaction: "MNXR95725" + - pmid: "12499363" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0166" - name: "aldehyde dehydrogenase (2-methylbutanol, NAD)" @@ -33554,19 +33554,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - bigg.reaction: "ALCD22xi" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - "sce01200" - - metanetx.reaction: "MNXR95716" - - pmid: "12702265" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - bigg.reaction: "ALCD22xi" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" + - metanetx.reaction: "MNXR95716" + - pmid: "12702265" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0167" - name: "aldehyde dehydrogenase (2-methylbutanol, NAD)" @@ -33584,18 +33584,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.1" - - bigg.reaction: "ALCD22xim" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR95716" - - pmid: "12499363" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD22xim" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR95716" + - pmid: "12499363" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0168" - name: "aldehyde dehydrogenase (2-methylbutanol, NADP)" @@ -33613,20 +33613,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.2" - - bigg.reaction: "ALCD22yi" - - kegg.pathway: - - "sce00010" - - "sce00040" - - "sce00561" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR95717" - - pmid: - - "12210903" - - "12423374" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.-; 1.1.1.2" + - bigg.reaction: "ALCD22yi" + - kegg.pathway: + - "sce00010" + - "sce00040" + - "sce00561" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR95717" + - pmid: + - "12210903" + - "12423374" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0169" - name: "aldehyde dehydrogenase (2-phenylethanol, NAD)" @@ -33644,20 +33644,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - bigg.reaction: "ALCD25xi" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R02611" - - metanetx.reaction: "MNXR95722" - - pmid: "12702265" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - bigg.reaction: "ALCD25xi" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R02611" + - metanetx.reaction: "MNXR95722" + - pmid: "12702265" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0170" - name: "aldehyde dehydrogenase (2-phenylethanol, NAD)" @@ -33675,19 +33675,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.1" - - bigg.reaction: "ALCD25xim" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - kegg.reaction: "R02611" - - metanetx.reaction: "MNXR95722" - - pmid: "12499363" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD25xim" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - kegg.reaction: "R02611" + - metanetx.reaction: "MNXR95722" + - pmid: "12499363" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0171" - name: "aldehyde dehydrogenase (2-phenylethanol, NADP)" @@ -33705,20 +33705,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.2" - - bigg.reaction: "ALCD25yi" - - kegg.pathway: - - "sce00010" - - "sce00040" - - "sce00561" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR95723" - - pmid: - - "11742541" - - "12423374" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.2" + - bigg.reaction: "ALCD25yi" + - kegg.pathway: + - "sce00010" + - "sce00040" + - "sce00561" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR95723" + - pmid: + - "11742541" + - "12423374" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0172" - name: "aldehyde dehydrogenase (3-aminopropanal, NAD)" @@ -33737,20 +33737,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - bigg.reaction: "ALDD22x" - - kegg.pathway: - - "sce00010" - - "sce00340" - - "sce00350" - - "sce00360" - - "sce00410" - - "sce01110" - - kegg.reaction: "R00904" - - metanetx.reaction: "MNXR95748" - - pmid: "12586697" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.1.3" + - bigg.reaction: "ALDD22x" + - kegg.pathway: + - "sce00010" + - "sce00340" + - "sce00350" + - "sce00360" + - "sce00410" + - "sce01110" + - kegg.reaction: "R00904" + - metanetx.reaction: "MNXR95748" + - pmid: "12586697" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0173" - name: "aldehyde dehydrogenase (acetaldehyde, NADP)" @@ -33769,26 +33769,26 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.4" - - bigg.reaction: "ALDD2y" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00711" - - metanetx.reaction: "MNXR95750" - - pmid: "15256563" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.1.4" + - bigg.reaction: "ALDD2y" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00711" + - metanetx.reaction: "MNXR95750" + - pmid: "15256563" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0174" - name: "aldehyde dehydrogenase (acetylaldehyde, NAD)" @@ -33807,26 +33807,26 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.5" - - bigg.reaction: "ALDD2xm" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00710" - - metanetx.reaction: "MNXR95749" - - pmid: "15256563" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.1.5" + - bigg.reaction: "ALDD2xm" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00710" + - metanetx.reaction: "MNXR95749" + - pmid: "15256563" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0175" - name: "aldehyde dehydrogenase (acetylaldehyde, NADP)" @@ -33845,26 +33845,26 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.5" - - bigg.reaction: "ALDD2ym" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00711" - - metanetx.reaction: "MNXR95750" - - pmid: "15256563" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.1.5" + - bigg.reaction: "ALDD2ym" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00711" + - metanetx.reaction: "MNXR95750" + - pmid: "15256563" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0176" - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NAD)" @@ -33883,25 +33883,25 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.5" - - bigg.reaction: "ALDD20xm" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" - - kegg.reaction: "R02678" - - metanetx.reaction: "MNXR95744" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.5" + - bigg.reaction: "ALDD20xm" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" + - kegg.reaction: "R02678" + - metanetx.reaction: "MNXR95744" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0177" - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NADP)" @@ -33920,24 +33920,24 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.4" - - bigg.reaction: "ALDD20y" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR95746" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.4" + - bigg.reaction: "ALDD20y" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR95746" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0178" - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NADP)" @@ -33956,25 +33956,25 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.5" - - bigg.reaction: "ALDD20ym" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR95746" - - pmid: "9675847" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.1.5" + - bigg.reaction: "ALDD20ym" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR95746" + - pmid: "9675847" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0179" - name: "aldehyde dehydrogenase (isoamyl alcohol, NAD)" @@ -33992,20 +33992,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - bigg.reaction: "ALCD24xi" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R05685" - - metanetx.reaction: "MNXR138038" - - pmid: "12702265" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - bigg.reaction: "ALCD24xi" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R05685" + - metanetx.reaction: "MNXR138038" + - pmid: "12702265" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0180" - name: "aldehyde dehydrogenase (isoamyl alcohol, NAD)" @@ -34023,19 +34023,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.1" - - bigg.reaction: "ALCD24xim" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - kegg.reaction: "R05685" - - metanetx.reaction: "MNXR138038" - - pmid: "12499363" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD24xim" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - kegg.reaction: "R05685" + - metanetx.reaction: "MNXR138038" + - pmid: "12499363" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0181" - name: "aldehyde dehydrogenase (isoamyl alcohol, NADP)" @@ -34053,21 +34053,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.2" - - bigg.reaction: "ALCD24yi" - - kegg.pathway: - - "sce00010" - - "sce00040" - - "sce00561" - - "sce01110" - - "sce01130" - - kegg.reaction: "R05686" - - metanetx.reaction: "MNXR138039" - - pmid: - - "11742541" - - "12423374" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.2" + - bigg.reaction: "ALCD24yi" + - kegg.pathway: + - "sce00010" + - "sce00040" + - "sce00561" + - "sce01110" + - "sce01130" + - kegg.reaction: "R05686" + - metanetx.reaction: "MNXR138039" + - pmid: + - "11742541" + - "12423374" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0182" - name: "aldehyde dehydrogenase (isobutyl alcohol, NAD)" @@ -34085,19 +34085,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - bigg.reaction: "ALCD23xi" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - "sce01200" - - metanetx.reaction: "MNXR95718" - - pmid: "12702265" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - bigg.reaction: "ALCD23xi" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" + - metanetx.reaction: "MNXR95718" + - pmid: "12702265" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0183" - name: "aldehyde dehydrogenase (isobutyl alcohol, NAD)" @@ -34115,18 +34115,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.1" - - bigg.reaction: "ALCD23xim" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR95718" - - pmid: "12499363" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD23xim" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR95718" + - pmid: "12499363" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0184" - name: "aldehyde dehydrogenase (isobutyl alcohol, NADP)" @@ -34144,20 +34144,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.2" - - bigg.reaction: "ALCD23yi" - - kegg.pathway: - - "sce00010" - - "sce00040" - - "sce00561" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR95719" - - pmid: - - "11742541" - - "12423374" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.2" + - bigg.reaction: "ALCD23yi" + - kegg.pathway: + - "sce00010" + - "sce00040" + - "sce00561" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR95719" + - pmid: + - "11742541" + - "12423374" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0185" - name: "aldehyde dehydrogenase (phenylacetaldehyde, NAD)" @@ -34176,20 +34176,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - bigg.reaction: "ALDD19xr" - - kegg.pathway: - - "sce00010" - - "sce00340" - - "sce00350" - - "sce00360" - - "sce00410" - - "sce01110" - - kegg.reaction: "R02536" - - metanetx.reaction: "MNXR95743" - - pmid: "8801420" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.1.3" + - bigg.reaction: "ALDD19xr" + - kegg.pathway: + - "sce00010" + - "sce00340" + - "sce00350" + - "sce00360" + - "sce00410" + - "sce01110" + - kegg.reaction: "R02536" + - metanetx.reaction: "MNXR95743" + - pmid: "8801420" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0186" - name: "aldehyde dehydrogenase (tryptophol, NAD)" @@ -34207,20 +34207,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - bigg.reaction: "ALCD26xi" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R02679" - - metanetx.reaction: "MNXR95724" - - pmid: "12702265" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - bigg.reaction: "ALCD26xi" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R02679" + - metanetx.reaction: "MNXR95724" + - pmid: "12702265" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0187" - name: "aldehyde dehydrogenase (tryptophol, NAD)" @@ -34238,19 +34238,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.1" - - bigg.reaction: "ALCD26xim" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - kegg.reaction: "R02679" - - metanetx.reaction: "MNXR95724" - - pmid: "12499363" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD26xim" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - kegg.reaction: "R02679" + - metanetx.reaction: "MNXR95724" + - pmid: "12499363" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0188" - name: "alkaline phosphatase (dihydroneopterin)" @@ -34268,15 +34268,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.1; 3.1.3.54; 3.1.7.6" - - bigg.reaction: "AKP1" - - kegg.pathway: - - "sce00730" - - "sce00790" - - kegg.reaction: "R04620" - - metanetx.reaction: "MNXR139295" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.3.1; 3.1.3.54; 3.1.7.6" + - bigg.reaction: "AKP1" + - kegg.pathway: + - "sce00730" + - "sce00790" + - kegg.reaction: "R04620" + - metanetx.reaction: "MNXR139295" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0189" - name: "allantoate amidinohydrolase" @@ -34293,14 +34293,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.3.4" - - bigg.reaction: "ALLTAHr" - - kegg.pathway: "sce00230" - - kegg.reaction: "R02422" - - metanetx.reaction: "MNXR95767" - - pmid: "4604238" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.3.4" + - bigg.reaction: "ALLTAHr" + - kegg.pathway: "sce00230" + - kegg.reaction: "R02422" + - metanetx.reaction: "MNXR95767" + - pmid: "4604238" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0190" - name: "allantoinase, reaction" @@ -34317,14 +34317,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.2.5" - - bigg.reaction: "ALLTN" - - kegg.pathway: "sce00230" - - kegg.reaction: "R02424" - - metanetx.reaction: "MNXR95769" - - pmid: "4604238" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.2.5" + - bigg.reaction: "ALLTN" + - kegg.pathway: "sce00230" + - kegg.reaction: "R02424" + - metanetx.reaction: "MNXR95769" + - pmid: "4604238" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0191" - name: "allophanate hydrolase" @@ -34342,15 +34342,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.54; 6.3.4.6" - - bigg.reaction: "ALPHNH" - - kegg.pathway: - - "sce00220" - - "sce00791" - - kegg.reaction: "R00005" - - metanetx.reaction: "MNXR95786" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.1.54; 6.3.4.6" + - bigg.reaction: "ALPHNH" + - kegg.pathway: + - "sce00220" + - "sce00791" + - kegg.reaction: "R00005" + - metanetx.reaction: "MNXR95786" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0192" - name: "alpha 1,2-mannosyltransferase" @@ -34368,19 +34368,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.-" - - kegg.pathway: - - "sce00513" - - "sce00514" - - kegg.reaction: "R05002" - - metanetx.reaction: "MNXR109280" - - pmid: - - "14752117" - - "21623372" - - "8631921" - - "9020857" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.1.-" + - kegg.pathway: + - "sce00513" + - "sce00514" + - kegg.reaction: "R05002" + - metanetx.reaction: "MNXR109280" + - pmid: + - "14752117" + - "21623372" + - "8631921" + - "9020857" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0193" - name: "alpha,alpha-trehalase" @@ -34396,13 +34396,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.28" - - bigg.reaction: "TREHv" - - kegg.pathway: "sce00500" - - kegg.reaction: "R00010" - - metanetx.reaction: "MNXR95163" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.28" + - bigg.reaction: "TREHv" + - kegg.pathway: "sce00500" + - kegg.reaction: "R00010" + - metanetx.reaction: "MNXR95163" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0194" - name: "alpha,alpha-trehalase" @@ -34418,14 +34418,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.28" - - bigg.reaction: "TREH" - - kegg.pathway: "sce00500" - - kegg.reaction: "R00010" - - metanetx.reaction: "MNXR95163" - - pmid: "8764988" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.2.1.28" + - bigg.reaction: "TREH" + - kegg.pathway: "sce00500" + - kegg.reaction: "R00010" + - metanetx.reaction: "MNXR95163" + - pmid: "8764988" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0195" - name: "alpha,alpha-trehalose-phosphate synthase (UDP-forming)" @@ -34443,14 +34443,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.15; 3.1.3.12" - - bigg.reaction: "TRE6PS" - - kegg.pathway: "sce00500" - - kegg.reaction: "R00836" - - metanetx.reaction: "MNXR143415" - - pmid: "21623372" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.1.15; 3.1.3.12" + - bigg.reaction: "TRE6PS" + - kegg.pathway: "sce00500" + - kegg.reaction: "R00836" + - metanetx.reaction: "MNXR143415" + - pmid: "21623372" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0198" - name: "alpha-glucosidase" @@ -34466,15 +34466,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.10; 3.2.1.20" - - bigg.reaction: "MALT" - - kegg.pathway: - - "sce00052" - - "sce00500" - - kegg.reaction: "R00028" - - metanetx.reaction: "MNXR101350" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.10; 3.2.1.20" + - bigg.reaction: "MALT" + - kegg.pathway: + - "sce00052" + - "sce00500" + - kegg.reaction: "R00028" + - metanetx.reaction: "MNXR101350" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0199" - name: "amidase" @@ -34491,13 +34491,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.5.7" - - bigg.reaction: "AMID" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03180" - - metanetx.reaction: "MNXR95812" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.5.7" + - bigg.reaction: "AMID" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03180" + - metanetx.reaction: "MNXR95812" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0200" - name: "Aminoacetone:oxygen oxidoreductase(deaminating)(flavin-containing)" @@ -34516,13 +34516,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AACTOOR" - - kegg.reaction: "R02529" - - metanetx.reaction: "MNXR95149" - - pmid: "3086094" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "AACTOOR" + - kegg.reaction: "R02529" + - metanetx.reaction: "MNXR95149" + - pmid: "3086094" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_0201" - name: "Aminobutyraldehyde dehydrogenase" @@ -34541,25 +34541,25 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.5" - - bigg.reaction: "ABUTDm" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00280" - - "sce00310" - - "sce00330" - - "sce00340" - - "sce00380" - - "sce00410" - - "sce00561" - - "sce00620" - - "sce01110" - - "sce01130" - - kegg.reaction: "R02549" - - metanetx.reaction: "MNXR95191" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.5" + - bigg.reaction: "ABUTDm" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00280" + - "sce00310" + - "sce00330" + - "sce00340" + - "sce00380" + - "sce00410" + - "sce00561" + - "sce00620" + - "sce01110" + - "sce01130" + - kegg.reaction: "R02549" + - metanetx.reaction: "MNXR95191" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0202" - name: "anthranilate phosphoribosyltransferase" @@ -34576,17 +34576,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.18" - - bigg.reaction: "ANPRT" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01073" - - metanetx.reaction: "MNXR95842" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.2.18" + - bigg.reaction: "ANPRT" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01073" + - metanetx.reaction: "MNXR95842" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0203" - name: "anthranilate synthase" @@ -34605,18 +34605,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.3.27" - - bigg.reaction: "ANS" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R00986" - - metanetx.reaction: "MNXR95843" - - pmid: "8001582" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.3.27" + - bigg.reaction: "ANS" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R00986" + - metanetx.reaction: "MNXR95843" + - pmid: "8001582" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0204" - name: "Ap4A hydrolase" @@ -34633,13 +34633,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.29" - - bigg.reaction: "AP4AH" - - kegg.pathway: "sce00230" - - kegg.reaction: "R00125" - - metanetx.reaction: "MNXR95856" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.29" + - bigg.reaction: "AP4AH" + - kegg.pathway: "sce00230" + - kegg.reaction: "R00125" + - metanetx.reaction: "MNXR95856" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0205" - name: "arabinose reductase" @@ -34657,13 +34657,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.21" - - bigg.reaction: "ARABR" - - kegg.pathway: "sce00040" - - kegg.reaction: "R01759" - - metanetx.reaction: "MNXR107158" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-; 1.1.1.21" + - bigg.reaction: "ARABR" + - kegg.pathway: "sce00040" + - kegg.reaction: "R01759" + - metanetx.reaction: "MNXR107158" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0206" - name: "arginase" @@ -34680,18 +34680,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.3.1" - - bigg.reaction: "ARGN" - - kegg.pathway: - - "sce00220" - - "sce00330" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R00551" - - metanetx.reaction: "MNXR95945" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.3.1" + - bigg.reaction: "ARGN" + - kegg.pathway: + - "sce00220" + - "sce00330" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R00551" + - metanetx.reaction: "MNXR95945" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0207" - name: "argininosuccinate lyase" @@ -34707,18 +34707,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.3.2.1" - - bigg.reaction: "ARGSL" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01086" - - metanetx.reaction: "MNXR138059" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.3.2.1" + - bigg.reaction: "ARGSL" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01086" + - metanetx.reaction: "MNXR138059" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0208" - name: "argininosuccinate synthase" @@ -34738,19 +34738,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.4.5" - - bigg.reaction: "ARGSS" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01954" - - metanetx.reaction: "MNXR138060" - - pmid: "35347" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.3.4.5" + - bigg.reaction: "ARGSS" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01954" + - metanetx.reaction: "MNXR138060" + - pmid: "35347" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0209" - name: "arginyl-tRNA synthetase" @@ -34769,13 +34769,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.19" - - bigg.reaction: "ARGTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03646" - - metanetx.reaction: "MNXR95950" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.1.1.19" + - bigg.reaction: "ARGTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03646" + - metanetx.reaction: "MNXR95950" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0210" - name: "arginyl-tRNA synthetase" @@ -34794,13 +34794,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.19" - - bigg.reaction: "ARGTRSm" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03646" - - metanetx.reaction: "MNXR95950" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.1.1.19" + - bigg.reaction: "ARGTRSm" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03646" + - metanetx.reaction: "MNXR95950" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0211" - name: "asparagine synthase (glutamine-hydrolysing)" @@ -34822,16 +34822,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.5.4" - - bigg.reaction: "ASNS1" - - kegg.pathway: - - "sce00250" - - "sce01110" - - kegg.reaction: "R00578" - - metanetx.reaction: "MNXR96059" - - pmid: "9881155" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.3.5.4" + - bigg.reaction: "ASNS1" + - kegg.pathway: + - "sce00250" + - "sce01110" + - kegg.reaction: "R00578" + - metanetx.reaction: "MNXR96059" + - pmid: "9881155" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0212" - name: "Asparaginyl-tRNA synthetase" @@ -34850,14 +34850,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.22" - - bigg.reaction: "ASNTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03648" - - metanetx.reaction: "MNXR96064" - - pmid: "9605503" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.22" + - bigg.reaction: "ASNTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03648" + - metanetx.reaction: "MNXR96064" + - pmid: "9605503" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0213" - name: "asparaginyl-tRNA synthetase, miotchondrial" @@ -34876,14 +34876,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.22" - - bigg.reaction: "ASNTRSm" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03648" - - metanetx.reaction: "MNXR96064" - - pmid: "9605503" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.22" + - bigg.reaction: "ASNTRSm" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03648" + - metanetx.reaction: "MNXR96064" + - pmid: "9605503" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0214" - name: "aspartate carbamoyltransferase" @@ -34901,15 +34901,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.3.2; 6.3.5.5" - - bigg.reaction: "ASPCT" - - kegg.pathway: - - "sce00240" - - "sce00250" - - kegg.reaction: "R01397" - - metanetx.reaction: "MNXR96080" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.3.2; 6.3.5.5" + - bigg.reaction: "ASPCT" + - kegg.pathway: + - "sce00240" + - "sce00250" + - kegg.reaction: "R01397" + - metanetx.reaction: "MNXR96080" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0215" - name: "aspartate kinase" @@ -34926,22 +34926,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.2.4" - - bigg.reaction: "ASPK" - - kegg.pathway: - - "sce00260" - - "sce00261" - - "sce00270" - - "sce00300" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00480" - - metanetx.reaction: "MNXR96085" - - pmid: "9315655" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.2.4" + - bigg.reaction: "ASPK" + - kegg.pathway: + - "sce00260" + - "sce00261" + - "sce00270" + - "sce00300" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00480" + - metanetx.reaction: "MNXR96085" + - pmid: "9315655" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0216" - name: "aspartate transaminase" @@ -34958,26 +34958,26 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.1" - - bigg.reaction: "ASPTA" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00355" - - metanetx.reaction: "MNXR96079" - - pmid: "1859361" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.1" + - bigg.reaction: "ASPTA" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00355" + - metanetx.reaction: "MNXR96079" + - pmid: "1859361" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0217" - name: "aspartate transaminase" @@ -34994,26 +34994,26 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.1" - - bigg.reaction: "ASPTAm" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00355" - - metanetx.reaction: "MNXR96079" - - pmid: "1482685" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.1" + - bigg.reaction: "ASPTAm" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00355" + - metanetx.reaction: "MNXR96079" + - pmid: "1482685" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0218" - name: "aspartate transaminase" @@ -35030,26 +35030,26 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.1" - - bigg.reaction: "ASPTAp" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00355" - - metanetx.reaction: "MNXR96079" - - pmid: "9288922" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.1" + - bigg.reaction: "ASPTAp" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00355" + - metanetx.reaction: "MNXR96079" + - pmid: "9288922" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0219" - name: "aspartate-semialdehyde dehydrogenase" @@ -35068,22 +35068,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.11" - - bigg.reaction: "ASAD" - - kegg.pathway: - - "sce00260" - - "sce00261" - - "sce00270" - - "sce00300" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R02291" - - metanetx.reaction: "MNXR96039" - - pmid: "2570346" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.1.11" + - bigg.reaction: "ASAD" + - kegg.pathway: + - "sce00260" + - "sce00261" + - "sce00270" + - "sce00300" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R02291" + - metanetx.reaction: "MNXR96039" + - pmid: "2570346" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0220" - name: "Aspartyl-tRNA synthetase" @@ -35102,14 +35102,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.12" - - bigg.reaction: "ASPTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R05577" - - metanetx.reaction: "MNXR96101" - - pmid: "3902099" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.12" + - bigg.reaction: "ASPTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R05577" + - metanetx.reaction: "MNXR96101" + - pmid: "3902099" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0221" - name: "Aspartyl-tRNA synthetase" @@ -35128,14 +35128,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.12" - - bigg.reaction: "ASPTRSm" - - kegg.pathway: "sce00970" - - kegg.reaction: "R05577" - - metanetx.reaction: "MNXR96101" - - pmid: "2668951" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.12" + - bigg.reaction: "ASPTRSm" + - kegg.pathway: "sce00970" + - kegg.reaction: "R05577" + - metanetx.reaction: "MNXR96101" + - pmid: "2668951" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0222" - name: "ATP adenylyltransferase" @@ -35153,13 +35153,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.5; 2.7.7.53" - - bigg.reaction: "ATPATF1" - - kegg.pathway: "sce00230" - - kegg.reaction: "R00126" - - metanetx.reaction: "MNXR95435" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.7.5; 2.7.7.53" + - bigg.reaction: "ATPATF1" + - kegg.pathway: "sce00230" + - kegg.reaction: "R00126" + - metanetx.reaction: "MNXR95435" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0223" - name: "ATP adenylyltransferase" @@ -35177,14 +35177,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.5; 2.7.7.53" - - bigg.reaction: "ATPATF2" - - kegg.pathway: - - "sce00230" - - "sce00920" - - metanetx.reaction: "MNXR136085" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.7.5; 2.7.7.53" + - bigg.reaction: "ATPATF2" + - kegg.pathway: + - "sce00230" + - "sce00920" + - metanetx.reaction: "MNXR136085" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0224" - name: "ATP adenylyltransferase" @@ -35202,14 +35202,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.5; 2.7.7.53" - - bigg.reaction: "ATPATF3" - - kegg.pathway: - - "sce00230" - - "sce00920" - - metanetx.reaction: "MNXR96127" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.7.5; 2.7.7.53" + - bigg.reaction: "ATPATF3" + - kegg.pathway: + - "sce00230" + - "sce00920" + - metanetx.reaction: "MNXR96127" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0225" - name: "ATP phosphoribosyltransferase" @@ -35226,16 +35226,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.17" - - bigg.reaction: "ATPPRT" - - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" - - kegg.reaction: "R01071" - - metanetx.reaction: "MNXR96132" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.2.17" + - bigg.reaction: "ATPPRT" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" + - kegg.reaction: "R01071" + - metanetx.reaction: "MNXR96132" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0226" - name: "ATP synthase" @@ -35254,15 +35254,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.3.14" - - bigg.reaction: "ATPS3m" - - kegg.pathway: "sce00190" - - metanetx.reaction: "MNXR96136" - - pmid: - - "6223276" - - "10576729" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "3.6.3.14" + - bigg.reaction: "ATPS3m" + - kegg.pathway: "sce00190" + - metanetx.reaction: "MNXR96136" + - pmid: + - "6223276" + - "10576729" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_0227" - name: "ATPase, cytosolic" @@ -35280,17 +35280,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.5; 3.6.3.6" - - bigg.reaction: "ATPS" - - kegg.pathway: - - "sce00190" - - "sce00230" - - "sce00240" - - kegg.reaction: "R00086" - - metanetx.reaction: "MNXR96131" - - pmid: "10409709" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.6.1.5; 3.6.3.6" + - bigg.reaction: "ATPS" + - kegg.pathway: + - "sce00190" + - "sce00230" + - "sce00240" + - kegg.reaction: "R00086" + - metanetx.reaction: "MNXR96131" + - pmid: "10409709" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0228" - name: "beta-1,4 mannosyltransferase" @@ -35308,15 +35308,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.142" - - kegg.pathway: - - "sce00510" - - "sce00513" - - kegg.reaction: "R04502" - - metanetx.reaction: "MNXR108930" - - pmid: "6368538" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.1.142" + - kegg.pathway: + - "sce00510" + - "sce00513" + - kegg.reaction: "R04502" + - metanetx.reaction: "MNXR108930" + - pmid: "6368538" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0229" - name: "biotin synthase" @@ -35333,10 +35333,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.8.1.6" - - kegg.pathway: "sce00780" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.8.1.6" + - kegg.pathway: "sce00780" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0230" - name: "biotin-[acetyl-CoA-carboxylase] ligase" @@ -35354,14 +35354,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.4.-; 6.3.4.10; 6.3.4.11; 6.3.4.15; 6.3.4.9" - - bigg.reaction: "BACCL" - - kegg.pathway: "sce00780" - - kegg.reaction: "R01074" - - metanetx.reaction: "MNXR96208" - - pmid: "9688262" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.3.4.-; 6.3.4.10; 6.3.4.11; 6.3.4.15; 6.3.4.9" + - bigg.reaction: "BACCL" + - kegg.pathway: "sce00780" + - kegg.reaction: "R01074" + - metanetx.reaction: "MNXR96208" + - pmid: "9688262" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0231" - name: "C-14 sterol reductase" @@ -35379,16 +35379,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.70" - - bigg.reaction: "C14STR" - - kegg.pathway: - - "sce00100" - - "sce01110" - - "sce01130" - - kegg.reaction: "R05639" - - metanetx.reaction: "MNXR109728" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.3.1.70" + - bigg.reaction: "C14STR" + - kegg.pathway: + - "sce00100" + - "sce01110" + - "sce01130" + - kegg.reaction: "R05639" + - metanetx.reaction: "MNXR109728" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0233" - name: "C-22 sterol desaturase (NADP)" @@ -35408,15 +35408,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.19.41" - - bigg.reaction: "C22STDS" - - kegg.pathway: - - "sce00100" - - "sce01130" - - kegg.reaction: "R07506" - - metanetx.reaction: "MNXR123636" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.14.19.41" + - bigg.reaction: "C22STDS" + - kegg.pathway: + - "sce00100" + - "sce01130" + - kegg.reaction: "R07506" + - metanetx.reaction: "MNXR123636" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0234" - name: "C-3 sterol dehydrogenase" @@ -35434,13 +35434,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.170" - - kegg.pathway: - - "sce00100" - - "sce01130" - - pmid: "22194828" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.170" + - kegg.pathway: + - "sce00100" + - "sce01130" + - pmid: "22194828" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0235" - name: "C-3 sterol dehydrogenase (4-methylzymosterol)" @@ -35458,13 +35458,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.170" - - kegg.pathway: - - "sce00100" - - "sce01130" - - metanetx.reaction: "MNXR128630" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.170" + - kegg.pathway: + - "sce00100" + - "sce01130" + - metanetx.reaction: "MNXR128630" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0236" - name: "C-3 sterol keto reductase (4-methylzymosterol)" @@ -35482,14 +35482,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.270" - - kegg.pathway: - - "sce00100" - - "sce01130" - - kegg.reaction: "R07495" - - metanetx.reaction: "MNXR111123" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.270" + - kegg.pathway: + - "sce00100" + - "sce01130" + - kegg.reaction: "R07495" + - metanetx.reaction: "MNXR111123" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0237" - name: "C-3 sterol keto reductase (zymosterol)" @@ -35507,14 +35507,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.270" - - bigg.reaction: "HMR_1509" - - kegg.pathway: - - "sce00100" - - "sce01130" - - metanetx.reaction: "MNXR123719" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.270" + - bigg.reaction: "HMR_1509" + - kegg.pathway: + - "sce00100" + - "sce01130" + - metanetx.reaction: "MNXR123719" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0238" - name: "C-4 methyl sterol oxidase" @@ -35534,13 +35534,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.13.72" - - kegg.pathway: - - "sce00100" - - "sce01130" - - metanetx.reaction: "MNXR128521" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.14.13.72" + - kegg.pathway: + - "sce00100" + - "sce01130" + - metanetx.reaction: "MNXR128521" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0239" - name: "C-4 methyl sterol oxidase" @@ -35560,14 +35560,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.13.72" - - bigg.reaction: "HMR_1503" - - kegg.pathway: - - "sce00100" - - "sce01130" - - metanetx.reaction: "MNXR128522" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.14.13.72" + - bigg.reaction: "HMR_1503" + - kegg.pathway: + - "sce00100" + - "sce01130" + - metanetx.reaction: "MNXR128522" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0240" - name: "C-4 methyl sterol oxidase" @@ -35586,13 +35586,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.13.72" - - kegg.pathway: - - "sce00100" - - "sce01130" - - pmid: "22194828" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.14.13.72" + - kegg.pathway: + - "sce00100" + - "sce01130" + - pmid: "22194828" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0241" - name: "C-4 sterol methyl oxidase (4,4-dimethylzymosterol)" @@ -35612,14 +35612,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.13.72" - - kegg.pathway: - - "sce00100" - - "sce01130" - - kegg.reaction: "R07509" - - metanetx.reaction: "MNXR111130" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.14.13.72" + - kegg.pathway: + - "sce00100" + - "sce01130" + - kegg.reaction: "R07509" + - metanetx.reaction: "MNXR111130" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0242" - name: "C-5 sterol desaturase" @@ -35639,15 +35639,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.19.20" - - bigg.reaction: "C5STDS" - - kegg.pathway: - - "sce00100" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR126641" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.14.19.20" + - bigg.reaction: "C5STDS" + - kegg.pathway: + - "sce00100" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR126641" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0243" - name: "C-8 sterol isomerase" @@ -35662,15 +35662,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.-.-.-" - - bigg.reaction: "C8STI" - - kegg.pathway: - - "sce00100" - - "sce01130" - - kegg.reaction: "R07497" - - metanetx.reaction: "MNXR96432" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "5.-.-.-" + - bigg.reaction: "C8STI" + - kegg.pathway: + - "sce00100" + - "sce01130" + - kegg.reaction: "R07497" + - metanetx.reaction: "MNXR96432" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0244" - name: "C-s24 sterol reductase" @@ -35688,15 +35688,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.71" - - bigg.reaction: "C24STRer" - - kegg.pathway: - - "sce00100" - - "sce01130" - - kegg.reaction: "R05641" - - metanetx.reaction: "MNXR96407" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.3.1.71" + - bigg.reaction: "C24STRer" + - kegg.pathway: + - "sce00100" + - "sce01130" + - kegg.reaction: "R05641" + - metanetx.reaction: "MNXR96407" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0249" - name: "CAAX farnesyltransferase" @@ -35713,15 +35713,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.58" - - kegg.pathway: - - "sce00900" - - "sce01130" - - kegg.reaction: "R07273" - - metanetx.reaction: "MNXR110956" - - pmid: "1763050" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.58" + - kegg.pathway: + - "sce00900" + - "sce01130" + - kegg.reaction: "R07273" + - metanetx.reaction: "MNXR110956" + - pmid: "1763050" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0250" - name: "carbamoyl-phosphate synthase (glutamine-hydrolysing)" @@ -35743,15 +35743,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.3.2; 6.3.5.5" - - bigg.reaction: "CBPS" - - kegg.pathway: - - "sce00240" - - "sce00250" - - kegg.reaction: "R00575" - - metanetx.reaction: "MNXR96485" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.3.2; 6.3.5.5" + - bigg.reaction: "CBPS" + - kegg.pathway: + - "sce00240" + - "sce00250" + - kegg.reaction: "R00575" + - metanetx.reaction: "MNXR96485" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0252" - name: "carnitine O-acetyltransferase" @@ -35768,14 +35768,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.7" - - bigg.reaction: "CSNATr" - - kegg.pathway: "sce04146" - - kegg.reaction: "R02396" - - metanetx.reaction: "MNXR96926" - - pmid: "11329169" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.7" + - bigg.reaction: "CSNATr" + - kegg.pathway: "sce04146" + - kegg.reaction: "R02396" + - metanetx.reaction: "MNXR96926" + - pmid: "11329169" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0253" - name: "carnitine O-acetyltransferase" @@ -35792,13 +35792,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.7" - - bigg.reaction: "CSNATp" - - kegg.pathway: "sce04146" - - kegg.reaction: "R02396" - - metanetx.reaction: "MNXR96926" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.7" + - bigg.reaction: "CSNATp" + - kegg.pathway: "sce04146" + - kegg.reaction: "R02396" + - metanetx.reaction: "MNXR96926" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0254" - name: "carnitine O-acetyltransferase" @@ -35815,13 +35815,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.7" - - bigg.reaction: "CSNATm" - - kegg.pathway: "sce04146" - - kegg.reaction: "R02396" - - metanetx.reaction: "MNXR96926" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.7" + - bigg.reaction: "CSNATm" + - kegg.pathway: "sce04146" + - kegg.reaction: "R02396" + - metanetx.reaction: "MNXR96926" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0255" - name: "catalase" @@ -35837,22 +35837,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.11.1.6" - - bigg.reaction: "CAT" - - kegg.pathway: - - "sce00380" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce04011" - - "sce04146" - - "sce04213" - - kegg.reaction: "R00009" - - metanetx.reaction: "MNXR96455" - - pmid: "3536508" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.11.1.6" + - bigg.reaction: "CAT" + - kegg.pathway: + - "sce00380" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce04011" + - "sce04146" + - "sce04213" + - kegg.reaction: "R00009" + - metanetx.reaction: "MNXR96455" + - pmid: "3536508" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0256" - name: "catalase" @@ -35868,22 +35868,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.11.1.6" - - bigg.reaction: "CATp" - - kegg.pathway: - - "sce00380" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce04011" - - "sce04146" - - "sce04213" - - kegg.reaction: "R00009" - - metanetx.reaction: "MNXR96455" - - pmid: "9931255" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.11.1.6" + - bigg.reaction: "CATp" + - kegg.pathway: + - "sce00380" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce04011" + - "sce04146" + - "sce04213" + - kegg.reaction: "R00009" + - metanetx.reaction: "MNXR96455" + - pmid: "9931255" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0259" - name: "ceramide-1 hydroxylase (24C)" @@ -35903,14 +35903,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.-.-.-" - - kegg.pathway: "sce00600" - - metanetx.reaction: "MNXR126673" - - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.-.-.-" + - kegg.pathway: "sce00600" + - metanetx.reaction: "MNXR126673" + - pmid: + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0260" - name: "ceramide-1 hydroxylase (24C)" @@ -35930,13 +35930,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.-.-.-" - - metanetx.reaction: "MNXR126668" - - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126668" + - pmid: + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0261" - name: "ceramide-1 hydroxylase (26C)" @@ -35956,14 +35956,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.-.-.-" - - kegg.pathway: "sce00600" - - metanetx.reaction: "MNXR126661" - - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.-.-.-" + - kegg.pathway: "sce00600" + - metanetx.reaction: "MNXR126661" + - pmid: + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0262" - name: "ceramide-1 hydroxylase (26C)" @@ -35983,13 +35983,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.-.-.-" - - metanetx.reaction: "MNXR126662" - - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126662" + - pmid: + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0263" - name: "ceramide-1 synthase (24C)" @@ -36007,16 +36007,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.24" - - bigg.reaction: "CERS124er" - - kegg.pathway: "sce00600" - - metanetx.reaction: "MNXR126659" - - pmid: - - "11387200" - - "15692566" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.24" + - bigg.reaction: "CERS124er" + - kegg.pathway: "sce00600" + - metanetx.reaction: "MNXR126659" + - pmid: + - "11387200" + - "15692566" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0264" - name: "ceramide-1 synthase (26C)" @@ -36034,17 +36034,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.24" - - bigg.reaction: "CERS126er" - - kegg.pathway: "sce00600" - - kegg.reaction: "R06517" - - metanetx.reaction: "MNXR126619" - - pmid: - - "11387200" - - "15692566" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.24" + - bigg.reaction: "CERS126er" + - kegg.pathway: "sce00600" + - kegg.reaction: "R06517" + - metanetx.reaction: "MNXR126619" + - pmid: + - "11387200" + - "15692566" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0265" - name: "ceramide-2 synthase (24C)" @@ -36062,16 +36062,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.24" - - bigg.reaction: "CERS224er" - - kegg.pathway: "sce00600" - - metanetx.reaction: "MNXR126660" - - pmid: - - "11387200" - - "15692566" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.24" + - bigg.reaction: "CERS224er" + - kegg.pathway: "sce00600" + - metanetx.reaction: "MNXR126660" + - pmid: + - "11387200" + - "15692566" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0266" - name: "ceramide-2 synthase (26C)" @@ -36089,17 +36089,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.24" - - bigg.reaction: "CERS226er" - - kegg.pathway: "sce00600" - - kegg.reaction: "R06527" - - metanetx.reaction: "MNXR126618" - - pmid: - - "11387200" - - "15692566" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.24" + - bigg.reaction: "CERS226er" + - kegg.pathway: "sce00600" + - kegg.reaction: "R06527" + - metanetx.reaction: "MNXR126618" + - pmid: + - "11387200" + - "15692566" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0267" - name: "ceramide-3 synthase (24C)" @@ -36119,13 +36119,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.-.-.-" - - metanetx.reaction: "MNXR126670" - - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126670" + - pmid: + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0268" - name: "ceramide-3 synthase (26C)" @@ -36145,13 +36145,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.-.-.-" - - metanetx.reaction: "MNXR126669" - - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126669" + - pmid: + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0269" - name: "ceramide-4 synthase (24C)" @@ -36171,13 +36171,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.-.-.-" - - metanetx.reaction: "MNXR126672" - - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126672" + - pmid: + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0270" - name: "ceramide-4 synthase (26C)" @@ -36197,13 +36197,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.-.-.-" - - metanetx.reaction: "MNXR126671" - - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.-.-.-" + - metanetx.reaction: "MNXR126671" + - pmid: + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0271" - name: "chitin deacetylase" @@ -36221,12 +36221,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.41" - - kegg.pathway: "sce00520" - - kegg.reaction: "R02333" - - metanetx.reaction: "MNXR107444" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.1.41" + - kegg.pathway: "sce00520" + - kegg.reaction: "R02333" + - metanetx.reaction: "MNXR107444" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0272" - name: "chitin synthase" @@ -36243,13 +36243,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.16" - - kegg.pathway: "sce00520" - - kegg.reaction: "R02335" - - metanetx.reaction: "MNXR107446" - - pmid: "16408321" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.1.16" + - kegg.pathway: "sce00520" + - kegg.reaction: "R02335" + - metanetx.reaction: "MNXR107446" + - pmid: "16408321" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0273" - name: "choline kinase" @@ -36267,14 +36267,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.32" - - bigg.reaction: "CHOLK" - - kegg.pathway: "sce00564" - - kegg.reaction: "R01021" - - metanetx.reaction: "MNXR96702" - - pmid: "10329685" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.32" + - bigg.reaction: "CHOLK" + - kegg.pathway: "sce00564" + - kegg.reaction: "R01021" + - metanetx.reaction: "MNXR96702" + - pmid: "10329685" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0274" - name: "choline phosphate cytididyltransferase" @@ -36292,15 +36292,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.15" - - bigg.reaction: "CHLPCTD" - - kegg.pathway: - - "sce00440" - - "sce00564" - - kegg.reaction: "R01890" - - metanetx.reaction: "MNXR96686" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.7.15" + - bigg.reaction: "CHLPCTD" + - kegg.pathway: + - "sce00440" + - "sce00564" + - kegg.reaction: "R01890" + - metanetx.reaction: "MNXR96686" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0278" - name: "chorismate mutase" @@ -36315,18 +36315,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.4.99.5" - - bigg.reaction: "CHORM" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01715" - - metanetx.reaction: "MNXR96708" - - pmid: "3027508" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.4.99.5" + - bigg.reaction: "CHORM" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01715" + - metanetx.reaction: "MNXR96708" + - pmid: "3027508" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0279" - name: "chorismate synthase" @@ -36342,18 +36342,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.3.5" - - bigg.reaction: "CHORS" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01714" - - metanetx.reaction: "MNXR96709" - - pmid: "8971708" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.3.5" + - bigg.reaction: "CHORS" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01714" + - metanetx.reaction: "MNXR96709" + - pmid: "8971708" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0280" - name: "cis-aconitate(3-) to isocitrate" @@ -36369,21 +36369,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.3" - - bigg.reaction: "ACN_b_m" - - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01900" - - metanetx.reaction: "MNXR95387" - - pmid: "21623372" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.3" + - bigg.reaction: "ACN_b_m" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01900" + - metanetx.reaction: "MNXR95387" + - pmid: "21623372" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0281" - name: "cis-prenyltransferase step 01" @@ -36400,15 +36400,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - kegg.reaction: "R02061" - - metanetx.reaction: "MNXR99650" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - kegg.reaction: "R02061" + - metanetx.reaction: "MNXR99650" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0282" - name: "cis-prenyltransferase step 02" @@ -36425,15 +36425,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - kegg.reaction: "R07475" - - metanetx.reaction: "MNXR100137" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - kegg.reaction: "R07475" + - metanetx.reaction: "MNXR100137" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0283" - name: "cis-prenyltransferase step 03" @@ -36450,15 +36450,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - kegg.reaction: "R05613" - - metanetx.reaction: "MNXR103150" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - kegg.reaction: "R05613" + - metanetx.reaction: "MNXR103150" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0284" - name: "cis-prenyltransferase step 04" @@ -36475,15 +36475,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - kegg.reaction: "R05612" - - metanetx.reaction: "MNXR100621" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - kegg.reaction: "R05612" + - metanetx.reaction: "MNXR100621" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0285" - name: "cis-prenyltransferase step 05" @@ -36500,15 +36500,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - kegg.reaction: "R05611" - - metanetx.reaction: "MNXR109713" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - kegg.reaction: "R05611" + - metanetx.reaction: "MNXR109713" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0286" - name: "cis-prenyltransferase step 06" @@ -36525,15 +36525,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - kegg.reaction: "R07267" - - metanetx.reaction: "MNXR110950" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - kegg.reaction: "R07267" + - metanetx.reaction: "MNXR110950" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0287" - name: "cis-prenyltransferase step 07" @@ -36550,15 +36550,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - kegg.reaction: "R08747" - - metanetx.reaction: "MNXR112246" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - kegg.reaction: "R08747" + - metanetx.reaction: "MNXR112246" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0288" - name: "cis-prenyltransferase step 08" @@ -36575,14 +36575,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - metanetx.reaction: "MNXR105052" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - metanetx.reaction: "MNXR105052" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0289" - name: "cis-prenyltransferase step 09" @@ -36599,13 +36599,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0290" - name: "cis-prenyltransferase step 10" @@ -36622,13 +36622,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0291" - name: "cis-prenyltransferase step 11" @@ -36645,13 +36645,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0292" - name: "cis-prenyltransferase step 12" @@ -36668,13 +36668,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0293" - name: "cis-prenyltransferase step 13" @@ -36691,13 +36691,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0294" - name: "cis-prenyltransferase step 14" @@ -36714,13 +36714,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0295" - name: "cis-prenyltransferase step 15" @@ -36737,13 +36737,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0296" - name: "cis-prenyltransferase step 16" @@ -36760,13 +36760,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0297" - name: "cis-prenyltransferase step 17" @@ -36783,13 +36783,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0298" - name: "cis-prenyltransferase step 18" @@ -36806,13 +36806,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0299" - name: "cis-prenyltransferase step 19" @@ -36829,13 +36829,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.87" - - kegg.pathway: - - "sce00900" - - "sce01110" - - pmid: "12702274" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.87" + - kegg.pathway: + - "sce00900" + - "sce01110" + - pmid: "12702274" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0300" - name: "citrate synthase" @@ -36854,21 +36854,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.3.1" - - bigg.reaction: "CSm" - - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00351" - - metanetx.reaction: "MNXR96920" - - pmid: "9140965" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.3.1" + - bigg.reaction: "CSm" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00351" + - metanetx.reaction: "MNXR96920" + - pmid: "9140965" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0301" - name: "citrate synthase, peroxisomal" @@ -36887,21 +36887,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.3.16" - - bigg.reaction: "CSp" - - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00351" - - metanetx.reaction: "MNXR96920" - - pmid: "10587442" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.3.16" + - bigg.reaction: "CSp" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00351" + - metanetx.reaction: "MNXR96920" + - pmid: "10587442" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0302" - name: "citrate to cis-aconitate(3-)" @@ -36917,21 +36917,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.3" - - bigg.reaction: "ACN_a_m" - - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01325" - - metanetx.reaction: "MNXR95386" - - pmid: "21623372" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.3" + - bigg.reaction: "ACN_a_m" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01325" + - metanetx.reaction: "MNXR95386" + - pmid: "21623372" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0303" - name: "citrate to cis-aconitate(3-), cytoplasmic" @@ -36947,21 +36947,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.3" - - bigg.reaction: "ACONTa" - - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01325" - - metanetx.reaction: "MNXR95386" - - pmid: "15975908" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.3" + - bigg.reaction: "ACONTa" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01325" + - metanetx.reaction: "MNXR95386" + - pmid: "15975908" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0304" - name: "coproporphyrinogen oxidase (O2 required)" @@ -36980,15 +36980,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.3" - - bigg.reaction: "CPPPGO" - - kegg.pathway: - - "sce00860" - - "sce01110" - - kegg.reaction: "R03220" - - metanetx.reaction: "MNXR96880" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.3.3.3" + - bigg.reaction: "CPPPGO" + - kegg.pathway: + - "sce00860" + - "sce01110" + - kegg.reaction: "R03220" + - metanetx.reaction: "MNXR96880" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0306" - name: "CTP synthase (glutamine)" @@ -37010,13 +37010,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.4.2" - - bigg.reaction: "CTPS2" - - kegg.pathway: "sce00240" - - kegg.reaction: "R00573" - - metanetx.reaction: "MNXR96945" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.4.2" + - bigg.reaction: "CTPS2" + - kegg.pathway: "sce00240" + - kegg.reaction: "R00573" + - metanetx.reaction: "MNXR96945" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0307" - name: "CTP synthase (NH3)" @@ -37036,13 +37036,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.4.2" - - bigg.reaction: "CTPS1" - - kegg.pathway: "sce00240" - - kegg.reaction: "R00571" - - metanetx.reaction: "MNXR96944" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.4.2" + - bigg.reaction: "CTPS1" + - kegg.pathway: "sce00240" + - kegg.reaction: "R00571" + - metanetx.reaction: "MNXR96944" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0308" - name: "cystathionine b-lyase" @@ -37060,18 +37060,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.4.1.8" - - bigg.reaction: "CYSTL" - - kegg.pathway: - - "sce00270" - - "sce00450" - - "sce01110" - - "sce01230" - - kegg.reaction: "R01286" - - metanetx.reaction: "MNXR96469" - - pmid: "10922376" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.4.1.8" + - bigg.reaction: "CYSTL" + - kegg.pathway: + - "sce00270" + - "sce00450" + - "sce01110" + - "sce01230" + - kegg.reaction: "R01286" + - metanetx.reaction: "MNXR96469" + - pmid: "10922376" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0309" - name: "cystathionine beta-synthase" @@ -37088,18 +37088,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.22" - - bigg.reaction: "CYSTS" - - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01290" - - metanetx.reaction: "MNXR97019" - - pmid: "10766767" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.22" + - bigg.reaction: "CYSTS" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01290" + - metanetx.reaction: "MNXR97019" + - pmid: "10766767" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0310" - name: "cystathionine g-lyase" @@ -37117,19 +37117,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.4.1.1" - - bigg.reaction: "CYSTGL" - - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce00450" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01001" - - metanetx.reaction: "MNXR97012" - - pmid: "1577698" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.4.1.1" + - bigg.reaction: "CYSTGL" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce00450" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01001" + - metanetx.reaction: "MNXR97012" + - pmid: "1577698" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0311" - name: "cystathionine gamma-synthase" @@ -37147,20 +37147,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.48" - - bigg.reaction: "METB1" - - kegg.pathway: - - "sce00270" - - "sce00450" - - "sce00920" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R03217" - - metanetx.reaction: "MNXR95637" - - pmid: "10821189" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.48" + - bigg.reaction: "METB1" + - kegg.pathway: + - "sce00270" + - "sce00450" + - "sce00920" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R03217" + - metanetx.reaction: "MNXR95637" + - pmid: "10821189" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0312" - name: "cysteine synthase" @@ -37177,22 +37177,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.47; 2.5.1.49" - - bigg.reaction: "CYSS" - - kegg.pathway: - - "sce00270" - - "sce00920" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R00897" - - metanetx.reaction: "MNXR97007" - - pmid: - - "21623372" - - "7765825" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.47; 2.5.1.49" + - bigg.reaction: "CYSS" + - kegg.pathway: + - "sce00270" + - "sce00920" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R00897" + - metanetx.reaction: "MNXR97007" + - pmid: + - "21623372" + - "7765825" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0313" - name: "cysteinyl-tRNA synthetase" @@ -37211,14 +37211,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.16" - - bigg.reaction: "CYSTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03650" - - metanetx.reaction: "MNXR97018" - - pmid: "9523015" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.16" + - bigg.reaction: "CYSTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03650" + - metanetx.reaction: "MNXR97018" + - pmid: "9523015" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0314" - name: "cytidine deaminase" @@ -37236,13 +37236,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.5" - - bigg.reaction: "CYTD" - - kegg.pathway: "sce00240" - - kegg.reaction: "R01878" - - metanetx.reaction: "MNXR97039" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.4.5" + - bigg.reaction: "CYTD" + - kegg.pathway: "sce00240" + - kegg.reaction: "R01878" + - metanetx.reaction: "MNXR97039" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0315" - name: "cytidine kinase (GTP)" @@ -37260,13 +37260,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.48" - - bigg.reaction: "CYTDK2" - - kegg.pathway: "sce00240" - - kegg.reaction: "R00517" - - metanetx.reaction: "MNXR97042" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.48" + - bigg.reaction: "CYTDK2" + - kegg.pathway: "sce00240" + - kegg.reaction: "R00517" + - metanetx.reaction: "MNXR97042" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0317" - name: "cytochrome P450 lanosterol 14-alpha-demethylase (NADP)" @@ -37287,17 +37287,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.13.70; 1.6.2.4" - - bigg.reaction: "LNS14DM" - - kegg.pathway: - - "sce00100" - - "sce01110" - - "sce01130" - - kegg.reaction: "R05640" - - metanetx.reaction: "MNXR109729" - - pmid: "10622712" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.14.13.70; 1.6.2.4" + - bigg.reaction: "LNS14DM" + - kegg.pathway: + - "sce00100" + - "sce01110" + - "sce01130" + - kegg.reaction: "R05640" + - metanetx.reaction: "MNXR109729" + - pmid: "10622712" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0318" - name: "cytosine deaminase" @@ -37315,15 +37315,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.1" - - bigg.reaction: "CSND" - - kegg.pathway: - - "sce00240" - - "sce00330" - - kegg.reaction: "R00974" - - metanetx.reaction: "MNXR96927" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.4.1" + - bigg.reaction: "CSND" + - kegg.pathway: + - "sce00240" + - "sce00330" + - kegg.reaction: "R00974" + - metanetx.reaction: "MNXR96927" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0319" - name: "D-arabinono-1,4-lactone oxidase" @@ -37341,12 +37341,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.3.37" - - kegg.reaction: "R02715" - - metanetx.reaction: "MNXR107687" - - pmid: "10508108" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.3.37" + - kegg.reaction: "R02715" + - metanetx.reaction: "MNXR107687" + - pmid: "10508108" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0320" - name: "D-arabinose 1-dehydrogenase (NAD)" @@ -37364,13 +37364,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.116" - - bigg.reaction: "ARAB1D1" - - kegg.reaction: "R01574" - - metanetx.reaction: "MNXR95907" - - pmid: "17097644" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.116" + - bigg.reaction: "ARAB1D1" + - kegg.reaction: "R01574" + - metanetx.reaction: "MNXR95907" + - pmid: "17097644" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0321" - name: "D-arabinose 1-dehydrogenase (NADP)" @@ -37388,12 +37388,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.117" - - bigg.reaction: "ARAB1D2" - - kegg.reaction: "R01575" - - metanetx.reaction: "MNXR95908" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.117" + - bigg.reaction: "ARAB1D2" + - kegg.reaction: "R01575" + - metanetx.reaction: "MNXR95908" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0322" - name: "D-fructose 1-phosphate D-glyceraldehyde-3-phosphate-lyase" @@ -37409,20 +37409,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.2.13" - - bigg.reaction: "FBA2" - - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00051" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R02568" - - metanetx.reaction: "MNXR99460" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.2.13" + - bigg.reaction: "FBA2" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00051" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R02568" + - metanetx.reaction: "MNXR99460" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0323" - name: "D-sorbitol dehydrogenase (D-fructose producing)" @@ -37440,15 +37440,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.14" - - bigg.reaction: "SBTD_D2" - - kegg.pathway: - - "sce00040" - - "sce00051" - - kegg.reaction: "R00875" - - metanetx.reaction: "MNXR104283" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.14" + - bigg.reaction: "SBTD_D2" + - kegg.pathway: + - "sce00040" + - "sce00051" + - kegg.reaction: "R00875" + - metanetx.reaction: "MNXR104283" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0326" - name: "dCMP deaminase" @@ -37466,13 +37466,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.12" - - bigg.reaction: "DCMPDA" - - kegg.pathway: "sce00240" - - kegg.reaction: "R01663" - - metanetx.reaction: "MNXR97185" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.4.12" + - bigg.reaction: "DCMPDA" + - kegg.pathway: "sce00240" + - kegg.reaction: "R01663" + - metanetx.reaction: "MNXR97185" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0327" - name: "dCTP deaminase" @@ -37490,13 +37490,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.12" - - bigg.reaction: "DCTPD" - - kegg.pathway: "sce00240" - - kegg.reaction: "R02325" - - metanetx.reaction: "MNXR97201" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.4.12" + - bigg.reaction: "DCTPD" + - kegg.pathway: "sce00240" + - kegg.reaction: "R02325" + - metanetx.reaction: "MNXR97201" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0328" - name: "deoxyadenosine deaminase" @@ -37514,13 +37514,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.2" - - bigg.reaction: "DADA" - - kegg.pathway: "sce00230" - - kegg.reaction: "R02556" - - metanetx.reaction: "MNXR97076" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.4.2" + - bigg.reaction: "DADA" + - kegg.pathway: "sce00230" + - kegg.reaction: "R02556" + - metanetx.reaction: "MNXR97076" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0329" - name: "deoxycytidine deaminase" @@ -37538,13 +37538,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.5" - - bigg.reaction: "DCYTD" - - kegg.pathway: "sce00240" - - kegg.reaction: "R02485" - - metanetx.reaction: "MNXR97207" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.4.5" + - bigg.reaction: "DCYTD" + - kegg.pathway: "sce00240" + - kegg.reaction: "R02485" + - metanetx.reaction: "MNXR97207" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0330" - name: "deoxyguanylate kinase (dGMP:ATP)" @@ -37561,13 +37561,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.8" - - bigg.reaction: "DGK1" - - kegg.pathway: "sce00230" - - kegg.reaction: "R02090" - - metanetx.reaction: "MNXR97320" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.8" + - bigg.reaction: "DGK1" + - kegg.pathway: "sce00230" + - kegg.reaction: "R02090" + - metanetx.reaction: "MNXR97320" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0331" - name: "deoxyhypusine synthase, cytosolic/mitochondrial" @@ -37586,10 +37586,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.46" - - metanetx.reaction: "MNXR136013" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.46" + - metanetx.reaction: "MNXR136013" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0332" - name: "deoxyribokinase" @@ -37607,13 +37607,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.15" - - bigg.reaction: "DRBK" - - kegg.pathway: "sce00030" - - kegg.reaction: "R02750" - - metanetx.reaction: "MNXR97781" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.15" + - bigg.reaction: "DRBK" + - kegg.pathway: "sce00030" + - kegg.reaction: "R02750" + - metanetx.reaction: "MNXR97781" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0334" - name: "dephospho-CoA kinase" @@ -37631,13 +37631,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.24" - - bigg.reaction: "DPCOAKm" - - kegg.pathway: "sce00770" - - kegg.reaction: "R00130" - - metanetx.reaction: "MNXR97762" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.24" + - bigg.reaction: "DPCOAKm" + - kegg.pathway: "sce00770" + - kegg.reaction: "R00130" + - metanetx.reaction: "MNXR97762" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0335" - name: "dethiobiotin synthase" @@ -37657,13 +37657,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.3.3" - - bigg.reaction: "DBTS" - - kegg.pathway: "sce00780" - - kegg.reaction: "R03182" - - metanetx.reaction: "MNXR97180" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.3.3" + - bigg.reaction: "DBTS" + - kegg.pathway: "sce00780" + - kegg.reaction: "R03182" + - metanetx.reaction: "MNXR97180" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0340" - name: "dihydroceramidase" @@ -37680,14 +37680,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00600" - - metanetx.reaction: "MNXR126695" - - pmid: - - "10900202" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00600" + - metanetx.reaction: "MNXR126695" + - pmid: + - "10900202" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0341" - name: "dihydroceramidase" @@ -37704,13 +37704,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00600" - - pmid: - - "10900202" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00600" + - pmid: + - "10900202" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0342" - name: "dihydroceramidase" @@ -37727,14 +37727,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00600" - - metanetx.reaction: "MNXR126696" - - pmid: - - "10900202" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00600" + - metanetx.reaction: "MNXR126696" + - pmid: + - "10900202" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0343" - name: "dihydroceramidase" @@ -37751,14 +37751,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00600" - - metanetx.reaction: "MNXR126694" - - pmid: - - "10900202" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00600" + - metanetx.reaction: "MNXR126694" + - pmid: + - "10900202" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0344" - name: "dihydrofolate reductase" @@ -37776,15 +37776,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.3" - - bigg.reaction: "DHFR" - - kegg.pathway: - - "sce00670" - - "sce00790" - - kegg.reaction: "R00939" - - metanetx.reaction: "MNXR97401" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.5.1.3" + - bigg.reaction: "DHFR" + - kegg.pathway: + - "sce00670" + - "sce00790" + - kegg.reaction: "R00939" + - metanetx.reaction: "MNXR97401" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0345" - name: "dihydrofolate reductase" @@ -37802,15 +37802,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.3" - - bigg.reaction: "DHFRim" - - kegg.pathway: - - "sce00670" - - "sce00790" - - kegg.reaction: "R00939" - - metanetx.reaction: "MNXR97401" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.5.1.3" + - bigg.reaction: "DHFRim" + - kegg.pathway: + - "sce00670" + - "sce00790" + - kegg.reaction: "R00939" + - metanetx.reaction: "MNXR97401" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0346" - name: "dihydrofolate synthase" @@ -37830,14 +37830,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.2.12" - - bigg.reaction: "DHFS" - - kegg.pathway: "sce00790" - - kegg.reaction: "R02237" - - metanetx.reaction: "MNXR140043" - - pmid: "11731153" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.3.2.12" + - bigg.reaction: "DHFS" + - kegg.pathway: "sce00790" + - kegg.reaction: "R02237" + - metanetx.reaction: "MNXR140043" + - pmid: "11731153" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0347" - name: "dihydroneopterin aldolase" @@ -37853,12 +37853,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" - - kegg.pathway: "sce00790" - - kegg.reaction: "R03504" - - metanetx.reaction: "MNXR97415" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" + - kegg.pathway: "sce00790" + - kegg.reaction: "R03504" + - metanetx.reaction: "MNXR97415" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0348" - name: "dihydroneopterin monophosphate dephosphorylase" @@ -37875,12 +37875,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.-.-" - - bigg.reaction: "DNMPPA" - - kegg.reaction: "R04621" - - metanetx.reaction: "MNXR126238" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.-.-" + - bigg.reaction: "DNMPPA" + - kegg.reaction: "R04621" + - metanetx.reaction: "MNXR126238" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0349" - name: "dihydroorotase" @@ -37897,14 +37897,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.2.3" - - bigg.reaction: "DHORTS" - - kegg.pathway: "sce00240" - - kegg.reaction: "R01993" - - metanetx.reaction: "MNXR97428" - - pmid: "2897615" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.2.3" + - bigg.reaction: "DHORTS" + - kegg.pathway: "sce00240" + - kegg.reaction: "R01993" + - metanetx.reaction: "MNXR97428" + - pmid: "2897615" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0350" - name: "dihydropteroate synthase" @@ -37921,12 +37921,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" - - kegg.pathway: "sce00790" - - kegg.reaction: "R03066" - - metanetx.reaction: "MNXR140386" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" + - kegg.pathway: "sce00790" + - kegg.reaction: "R03066" + - metanetx.reaction: "MNXR140386" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0351" - name: "dihydropteroate synthase" @@ -37943,13 +37943,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" - - bigg.reaction: "FOLD3m" - - kegg.pathway: "sce00790" - - kegg.reaction: "R03067" - - metanetx.reaction: "MNXR140085" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" + - bigg.reaction: "FOLD3m" + - kegg.pathway: "sce00790" + - kegg.reaction: "R03067" + - metanetx.reaction: "MNXR140085" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0352" - name: "dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylbutanoate)" @@ -37965,20 +37965,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.9" - - bigg.reaction: "DHAD1m" - - kegg.pathway: - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R04441" - - metanetx.reaction: "MNXR97358" - - pmid: "14576278" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.9" + - bigg.reaction: "DHAD1m" + - kegg.pathway: + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R04441" + - metanetx.reaction: "MNXR97358" + - pmid: "14576278" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0353" - name: "dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylpentanoate)" @@ -37994,20 +37994,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.9" - - bigg.reaction: "DHAD2m" - - kegg.pathway: - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R05070" - - metanetx.reaction: "MNXR97359" - - pmid: "14576278" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.9" + - bigg.reaction: "DHAD2m" + - kegg.pathway: + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R05070" + - metanetx.reaction: "MNXR97359" + - pmid: "14576278" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0354" - name: "dihydroxyacetone kinase" @@ -38025,16 +38025,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.28; 2.7.1.29" - - bigg.reaction: "DHAK" - - kegg.pathway: - - "sce00051" - - "sce00561" - - "sce01200" - - kegg.reaction: "R01011" - - metanetx.reaction: "MNXR97361" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.28; 2.7.1.29" + - bigg.reaction: "DHAK" + - kegg.pathway: + - "sce00051" + - "sce00561" + - "sce01200" + - kegg.reaction: "R01011" + - metanetx.reaction: "MNXR97361" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0355" - name: "dimethylallyltranstransferase" @@ -38051,16 +38051,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.1; 2.5.1.10" - - bigg.reaction: "DMATT" - - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01658" - - metanetx.reaction: "MNXR97512" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.1; 2.5.1.10" + - bigg.reaction: "DMATT" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01658" + - metanetx.reaction: "MNXR97512" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0356" - name: "diphosphoglyceromutase" @@ -38076,20 +38076,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.4.2.11" - - bigg.reaction: "DPGM" - - kegg.pathway: - - "sce00010" - - "sce00260" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R01662" - - metanetx.reaction: "MNXR107112" - - pmid: "6313356" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.4.2.11" + - bigg.reaction: "DPGM" + - kegg.pathway: + - "sce00010" + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R01662" + - metanetx.reaction: "MNXR107112" + - pmid: "6313356" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0357" - name: "diphosphoinositol-1,3,4,6-tetrakisphosphate diphosphohydrolase" @@ -38107,10 +38107,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.52; 3.6.1.60" - - pmid: "10419486" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.6.1.52; 3.6.1.60" + - pmid: "10419486" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0358" - name: "diphosphoinositol-1,3,4,6-tetrakisphosphate synthase" @@ -38130,13 +38130,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.21" - - kegg.pathway: - - "sce04070" - - "sce04138" - - pmid: "11956213" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.4.21" + - kegg.pathway: + - "sce04070" + - "sce04138" + - pmid: "11956213" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0359" - name: "diphthine synthase" @@ -38154,13 +38154,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.314" - - bigg.reaction: "DIPS" - - kegg.reaction: "R04481" - - metanetx.reaction: "MNXR108915" - - pmid: "1508200" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.314" + - bigg.reaction: "DIPS" + - kegg.reaction: "R04481" + - metanetx.reaction: "MNXR108915" + - pmid: "1508200" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0360" - name: "dolichol kinase" @@ -38178,13 +38178,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.108" - - bigg.reaction: "DOLK" - - kegg.pathway: "sce00510" - - kegg.reaction: "R01018" - - metanetx.reaction: "MNXR106791" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.108" + - bigg.reaction: "DOLK" + - kegg.pathway: "sce00510" + - kegg.reaction: "R01018" + - metanetx.reaction: "MNXR106791" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0361" - name: "dolichyl-phosphate D-mannosyltransferase" @@ -38202,13 +38202,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.83" - - bigg.reaction: "DOLPMTcer" - - kegg.pathway: "sce00510" - - kegg.reaction: "R01009" - - metanetx.reaction: "MNXR106788" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.83" + - bigg.reaction: "DOLPMTcer" + - kegg.pathway: "sce00510" + - kegg.reaction: "R01009" + - metanetx.reaction: "MNXR106788" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0362" - name: "dolichyl-phosphate-mannose--protein mannosyltransferase" @@ -38224,14 +38224,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.109" - - bigg.reaction: "DOLPMMer" - - kegg.pathway: - - "sce00514" - - "sce00515" - - metanetx.reaction: "MNXR136057" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.109" + - bigg.reaction: "DOLPMMer" + - kegg.pathway: + - "sce00514" + - "sce00515" + - metanetx.reaction: "MNXR136057" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0363" - name: "dTMP kinase" @@ -38248,13 +38248,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.9" - - bigg.reaction: "DTMPK" - - kegg.pathway: "sce00240" - - kegg.reaction: "R02094" - - metanetx.reaction: "MNXR97804" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.9" + - bigg.reaction: "DTMPK" + - kegg.pathway: "sce00240" + - kegg.reaction: "R02094" + - metanetx.reaction: "MNXR97804" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0364" - name: "dUTP diphosphatase" @@ -38272,13 +38272,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.23" - - bigg.reaction: "DUTPDP" - - kegg.pathway: "sce00240" - - kegg.reaction: "R02100" - - metanetx.reaction: "MNXR97822" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.23" + - bigg.reaction: "DUTPDP" + - kegg.pathway: "sce00240" + - kegg.reaction: "R02100" + - metanetx.reaction: "MNXR97822" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0365" - name: "endopolygalacturonase" @@ -38294,12 +38294,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.15" - - bigg.reaction: "EPGALURSe" - - kegg.pathway: "sce00040" - - pmid: "10028181" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.2.1.15" + - bigg.reaction: "EPGALURSe" + - kegg.pathway: "sce00040" + - pmid: "10028181" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0366" - name: "enolase" @@ -38315,20 +38315,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.11" - - bigg.reaction: "ENO" - - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - "sce03018" - - kegg.reaction: "R00658" - - metanetx.reaction: "MNXR97932" - - pmid: "7520111" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.11" + - bigg.reaction: "ENO" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - "sce03018" + - kegg.reaction: "R00658" + - metanetx.reaction: "MNXR97932" + - pmid: "7520111" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0368" - name: "ethanolamine kinase" @@ -38346,14 +38346,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.32; 2.7.1.82" - - bigg.reaction: "ETHAK" - - kegg.pathway: "sce00564" - - kegg.reaction: "R01468" - - metanetx.reaction: "MNXR97969" - - pmid: "9506987" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.32; 2.7.1.82" + - bigg.reaction: "ETHAK" + - kegg.pathway: "sce00564" + - kegg.reaction: "R01468" + - metanetx.reaction: "MNXR97969" + - pmid: "9506987" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0369" - name: "ethyl acetate-hydrolyzing esterase" @@ -38371,11 +38371,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.-.-" - - metanetx.reaction: "MNXR121010" - - pmid: "10855721" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.-.-" + - metanetx.reaction: "MNXR121010" + - pmid: "10855721" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0370" - name: "exo-1,3-beta-glucan glucohydrase" @@ -38391,14 +38391,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.58; 3.2.1.6" - - bigg.reaction: "13BGHe" - - kegg.pathway: "sce00500" - - kegg.reaction: "R00308" - - metanetx.reaction: "MNXR106465" - - pmid: "8458852" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.2.1.58; 3.2.1.6" + - bigg.reaction: "13BGHe" + - kegg.pathway: "sce00500" + - kegg.reaction: "R00308" + - metanetx.reaction: "MNXR106465" + - pmid: "8458852" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0373" - name: "farnesyltranstransferase" @@ -38415,17 +38415,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.-; 2.5.1.1; 2.5.1.10; 2.5.1.29" - - bigg.reaction: "FRTT" - - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - kegg.reaction: "R02061" - - metanetx.reaction: "MNXR99650" - - pmid: "7665600" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.-; 2.5.1.1; 2.5.1.10; 2.5.1.29" + - bigg.reaction: "FRTT" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - kegg.reaction: "R02061" + - metanetx.reaction: "MNXR99650" + - pmid: "7665600" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0399" - name: "fatty-acid--CoA ligase (decanoate)" @@ -38444,15 +38444,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR118203" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR118203" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0400" - name: "fatty-acid--CoA ligase (dodecanoate)" @@ -38471,16 +38471,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - bigg.reaction: "FACOAL120p" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR120051" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.2.1.3" + - bigg.reaction: "FACOAL120p" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR120051" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0402" - name: "fatty-acid--CoA ligase (hexadecanoate)" @@ -38499,17 +38499,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - bigg.reaction: "FACOAL160p" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - kegg.reaction: "R01280" - - metanetx.reaction: "MNXR99153" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.2.1.3" + - bigg.reaction: "FACOAL160p" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - kegg.reaction: "R01280" + - metanetx.reaction: "MNXR99153" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0410" - name: "fatty-acid--CoA ligase (octanoate)" @@ -38528,16 +38528,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - bigg.reaction: "FACOAL80p" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR99205" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.2.1.3" + - bigg.reaction: "FACOAL80p" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR99205" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0412" - name: "fatty-acid--CoA ligase (tetradecanoate)" @@ -38556,16 +38556,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - bigg.reaction: "FACOAL140p" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR126663" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.2.1.3" + - bigg.reaction: "FACOAL140p" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR126663" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0436" - name: "ferrochelatase" @@ -38582,15 +38582,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.99.1.1" - - bigg.reaction: "FCLTm" - - kegg.pathway: - - "sce00860" - - "sce01110" - - kegg.reaction: "R00310" - - metanetx.reaction: "MNXR99471" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.99.1.1" + - bigg.reaction: "FCLTm" + - kegg.pathway: + - "sce00860" + - "sce01110" + - kegg.reaction: "R00310" + - metanetx.reaction: "MNXR99471" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0437" - name: "ferrocytochrome-c:hydrogen-peroxide oxidoreductase" @@ -38607,13 +38607,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.11.1.5" - - bigg.reaction: "CCP2m" - - kegg.pathway: "sce00920" - - kegg.reaction: "R00017" - - metanetx.reaction: "MNXR138164" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.11.1.5" + - bigg.reaction: "CCP2m" + - kegg.pathway: "sce00920" + - kegg.reaction: "R00017" + - metanetx.reaction: "MNXR138164" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0438" - name: "ferrocytochrome-c:oxygen oxidoreductase" @@ -38632,15 +38632,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.9.3.1" - - kegg.pathway: - - "sce00190" - - "sce00920" - - kegg.reaction: "R00081" - - metanetx.reaction: "MNXR138955" - - pmid: "21964735" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "1.9.3.1" + - kegg.pathway: + - "sce00190" + - "sce00920" + - kegg.reaction: "R00081" + - metanetx.reaction: "MNXR138955" + - pmid: "21964735" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_0439" - name: "ubiquinol:ferricytochrome c reductase" @@ -38659,12 +38659,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.10.2.2" - - kegg.pathway: - - "sce00190" - - "sce00920" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "1.10.2.2" + - kegg.pathway: + - "sce00190" + - "sce00920" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_0440" - name: "FMN adenylyltransferase" @@ -38682,15 +38682,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.2" - - bigg.reaction: "FMNAT" - - kegg.pathway: - - "sce00740" - - "sce01110" - - kegg.reaction: "R00161" - - metanetx.reaction: "MNXR95501" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.7.2" + - bigg.reaction: "FMNAT" + - kegg.pathway: + - "sce00740" + - "sce01110" + - kegg.reaction: "R00161" + - metanetx.reaction: "MNXR95501" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0441" - name: "FMN reductase" @@ -38708,13 +38708,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.39" - - bigg.reaction: "FMNRx" - - kegg.reaction: "R05705" - - metanetx.reaction: "MNXR99607" - - pmid: "15184374" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.5.1.39" + - bigg.reaction: "FMNRx" + - kegg.reaction: "R05705" + - metanetx.reaction: "MNXR99607" + - pmid: "15184374" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0442" - name: "FMN reductase" @@ -38732,13 +38732,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.39" - - bigg.reaction: "FMNRx2" - - kegg.reaction: "R05706" - - metanetx.reaction: "MNXR99597" - - pmid: "15184374" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.5.1.39" + - bigg.reaction: "FMNRx2" + - kegg.reaction: "R05706" + - metanetx.reaction: "MNXR99597" + - pmid: "15184374" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0443" - name: "formaldehyde dehydrogenase" @@ -38757,18 +38757,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - bigg.reaction: "FALDH" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - "sce01200" - - metanetx.reaction: "MNXR99236" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - bigg.reaction: "FALDH" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - "sce01200" + - metanetx.reaction: "MNXR99236" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0445" - name: "formate dehydrogenase" @@ -38785,15 +38785,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.2" - - bigg.reaction: "FDH" - - kegg.pathway: - - "sce00630" - - "sce01200" - - kegg.reaction: "R00519" - - metanetx.reaction: "MNXR99475" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.2" + - bigg.reaction: "FDH" + - kegg.pathway: + - "sce00630" + - "sce01200" + - kegg.reaction: "R00519" + - metanetx.reaction: "MNXR99475" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0446" - name: "formate-tetrahydrofolate ligase" @@ -38812,17 +38812,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - - bigg.reaction: "FTHFLi" - - kegg.pathway: "sce00670" - - kegg.reaction: "R00943" - - metanetx.reaction: "MNXR99672" - - pmid: - - "10871621" - - "1916088" - - "8852837" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" + - bigg.reaction: "FTHFLi" + - kegg.pathway: "sce00670" + - kegg.reaction: "R00943" + - metanetx.reaction: "MNXR99672" + - pmid: + - "10871621" + - "1916088" + - "8852837" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0447" - name: "formate-tetrahydrofolate ligase" @@ -38841,17 +38841,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - - bigg.reaction: "FTHFLmi" - - kegg.pathway: "sce00670" - - kegg.reaction: "R00943" - - metanetx.reaction: "MNXR99672" - - pmid: - - "10871621" - - "1916088" - - "8852837" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" + - bigg.reaction: "FTHFLmi" + - kegg.pathway: "sce00670" + - kegg.reaction: "R00943" + - metanetx.reaction: "MNXR99672" + - pmid: + - "10871621" + - "1916088" + - "8852837" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0448" - name: "fructose-2,6-bisphosphate 2-phosphatase" @@ -38868,13 +38868,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.46" - - bigg.reaction: "FBP26" - - kegg.pathway: "sce00051" - - kegg.reaction: "R00763" - - metanetx.reaction: "MNXR106671" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.3.46" + - bigg.reaction: "FBP26" + - kegg.pathway: "sce00051" + - kegg.reaction: "R00763" + - metanetx.reaction: "MNXR106671" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0449" - name: "fructose-bisphosphatase" @@ -38891,19 +38891,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.11" - - bigg.reaction: "FBP" - - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00051" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00762" - - metanetx.reaction: "MNXR106670" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.3.11" + - bigg.reaction: "FBP" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00051" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00762" + - metanetx.reaction: "MNXR106670" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0450" - name: "fructose-bisphosphate aldolase" @@ -38919,20 +38919,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.2.13" - - bigg.reaction: "FBA" - - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00051" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - metanetx.reaction: "MNXR124532" - - pmid: "8435847" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.2.13" + - bigg.reaction: "FBA" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00051" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - metanetx.reaction: "MNXR124532" + - pmid: "8435847" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0451" - name: "fumarase" @@ -38948,19 +38948,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.2" - - bigg.reaction: "FUMm" - - kegg.pathway: - - "sce00020" - - "sce00620" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R01082" - - metanetx.reaction: "MNXR99705" - - pmid: "9627400" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.2" + - bigg.reaction: "FUMm" + - kegg.pathway: + - "sce00020" + - "sce00620" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R01082" + - metanetx.reaction: "MNXR99705" + - pmid: "9627400" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0452" - name: "fumarase, cytoplasmic" @@ -38976,21 +38976,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.2" - - bigg.reaction: "FUM" - - kegg.pathway: - - "sce00020" - - "sce00620" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R01082" - - metanetx.reaction: "MNXR99705" - - pmid: - - "11585823" - - "20231875" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.2" + - bigg.reaction: "FUM" + - kegg.pathway: + - "sce00020" + - "sce00620" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R01082" + - metanetx.reaction: "MNXR99705" + - pmid: + - "11585823" + - "20231875" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0453" - name: "dihydoorotic acid dehydrogenase" @@ -39007,14 +39007,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.98.1" - - bigg.reaction: "DHORDfum" - - kegg.pathway: "sce00240" - - kegg.reaction: "R01867" - - metanetx.reaction: "MNXR97425" - - pmid: "1409592" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.98.1" + - bigg.reaction: "DHORDfum" + - kegg.pathway: "sce00240" + - kegg.reaction: "R01867" + - metanetx.reaction: "MNXR97425" + - pmid: "1409592" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0454" - name: "fumarate reductase" @@ -39032,16 +39032,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.6" - - bigg.reaction: "FRDm" - - kegg.reaction: "R00408" - - metanetx.reaction: "MNXR99636" - - pmid: - - "22672422" - - "8946166" - - "9587404" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.6" + - bigg.reaction: "FRDm" + - kegg.reaction: "R00408" + - metanetx.reaction: "MNXR99636" + - pmid: + - "22672422" + - "8946166" + - "9587404" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0455" - name: "soluble fumarate reductase" @@ -39059,13 +39059,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.6" - - bigg.reaction: "FRD" - - kegg.reaction: "R00408" - - metanetx.reaction: "MNXR99636" - - pmid: "22672422" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.6" + - bigg.reaction: "FRD" + - kegg.reaction: "R00408" + - metanetx.reaction: "MNXR99636" + - pmid: "22672422" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0457" - name: "g-glutamyltransferase" @@ -39082,14 +39082,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.2.2; 3.4.19.13" - - bigg.reaction: "GTMLT" - - kegg.pathway: - - "sce00430" - - "sce00480" - - metanetx.reaction: "MNXR100451" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.2.2; 3.4.19.13" + - bigg.reaction: "GTMLT" + - kegg.pathway: + - "sce00430" + - "sce00480" + - metanetx.reaction: "MNXR100451" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0458" - name: "galactokinase" @@ -39107,15 +39107,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.6" - - bigg.reaction: "GALKr" - - kegg.pathway: - - "sce00052" - - "sce00520" - - kegg.reaction: "R01092" - - metanetx.reaction: "MNXR99985" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.6" + - bigg.reaction: "GALKr" + - kegg.pathway: + - "sce00052" + - "sce00520" + - kegg.reaction: "R01092" + - metanetx.reaction: "MNXR99985" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0459" - name: "galactose-1-phosphate uridylyltransferase" @@ -39133,15 +39133,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.12" - - bigg.reaction: "GALT" - - kegg.pathway: - - "sce00052" - - "sce00520" - - kegg.reaction: "R00502" - - metanetx.reaction: "MNXR100014" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.7.12" + - bigg.reaction: "GALT" + - kegg.pathway: + - "sce00052" + - "sce00520" + - kegg.reaction: "R00502" + - metanetx.reaction: "MNXR100014" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0460" - name: "gamma-glutamylcysteine synthetase" @@ -39161,15 +39161,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.2.2" - - bigg.reaction: "GLUCYS" - - kegg.pathway: - - "sce00270" - - "sce00480" - - kegg.reaction: "R00894" - - metanetx.reaction: "MNXR100074" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.2.2" + - bigg.reaction: "GLUCYS" + - kegg.pathway: + - "sce00270" + - "sce00480" + - kegg.reaction: "R00894" + - metanetx.reaction: "MNXR100074" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0461" - name: "geranylgeranyltranstransferase" @@ -39186,13 +39186,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GGTT" - - kegg.reaction: "R07475" - - metanetx.reaction: "MNXR100137" - - pmid: "15792955" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GGTT" + - kegg.reaction: "R07475" + - metanetx.reaction: "MNXR100137" + - pmid: "15792955" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_0462" - name: "geranyltranstransferase" @@ -39209,16 +39209,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.1; 2.5.1.10" - - bigg.reaction: "GRTT" - - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - kegg.reaction: "R02003" - - metanetx.reaction: "MNXR99634" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.1; 2.5.1.10" + - bigg.reaction: "GRTT" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - kegg.reaction: "R02003" + - metanetx.reaction: "MNXR99634" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0463" - name: "glucan 1,4-alpha-glucosidase" @@ -39234,15 +39234,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.25; 3.2.1.33" - - bigg.reaction: "GLCGSD" - - kegg.pathway: - - "sce00500" - - "sce01110" - - metanetx.reaction: "MNXR100180" - - pmid: "11094287" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.1.25; 3.2.1.33" + - bigg.reaction: "GLCGSD" + - kegg.pathway: + - "sce00500" + - "sce01110" + - metanetx.reaction: "MNXR100180" + - pmid: "11094287" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0464" - name: "glucan 1,4-alpha-glucosidase, vacuole" @@ -39258,13 +39258,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.3" - - bigg.reaction: "GLCGSDv" - - kegg.pathway: "sce00500" - - metanetx.reaction: "MNXR100180" - - pmid: "11486014" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.2.1.3" + - bigg.reaction: "GLCGSDv" + - kegg.pathway: "sce00500" + - metanetx.reaction: "MNXR100180" + - pmid: "11486014" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0465" - name: "glucosamine-6-phosphate deaminase" @@ -39281,12 +39281,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "G6PDA" - - metanetx.reaction: "MNXR125024" - - pmid: "369615" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "G6PDA" + - metanetx.reaction: "MNXR125024" + - pmid: "369615" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_0466" - name: "glucose 6-phosphate dehydrogenase" @@ -39304,19 +39304,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.49" - - bigg.reaction: "G6PDH2r" - - kegg.pathway: - - "sce00030" - - "sce00480" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00835" - - metanetx.reaction: "MNXR99907" - - pmid: "2269430" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.49" + - bigg.reaction: "G6PDH2r" + - kegg.pathway: + - "sce00030" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00835" + - metanetx.reaction: "MNXR99907" + - pmid: "2269430" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0467" - name: "glucose-6-phosphate isomerase" @@ -39331,21 +39331,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.1.9" - - bigg.reaction: "PGI" - - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00500" - - "sce00520" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00771" - - metanetx.reaction: "MNXR106678" - - pmid: "8435847" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.3.1.9" + - bigg.reaction: "PGI" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00771" + - metanetx.reaction: "MNXR106678" + - pmid: "8435847" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0468" - name: "glutamate 5-kinase" @@ -39362,17 +39362,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.2.11" - - bigg.reaction: "GLU5K" - - kegg.pathway: - - "sce00330" - - "sce00332" - - "sce01130" - - "sce01230" - - kegg.reaction: "R00239" - - metanetx.reaction: "MNXR100277" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.2.11" + - bigg.reaction: "GLU5K" + - kegg.pathway: + - "sce00330" + - "sce00332" + - "sce01130" + - "sce01230" + - kegg.reaction: "R00239" + - metanetx.reaction: "MNXR100277" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0469" - name: "glutamate decarboxylase" @@ -39389,19 +39389,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.15" - - bigg.reaction: "GLUDC" - - kegg.pathway: - - "sce00250" - - "sce00410" - - "sce00430" - - "sce00650" - - "sce01110" - - kegg.reaction: "R00261" - - metanetx.reaction: "MNXR95942" - - pmid: "11031268" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.15" + - bigg.reaction: "GLUDC" + - kegg.pathway: + - "sce00250" + - "sce00410" + - "sce00430" + - "sce00650" + - "sce01110" + - kegg.reaction: "R00261" + - metanetx.reaction: "MNXR95942" + - pmid: "11031268" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0470" - name: "glutamate dehydrogenase (NAD)" @@ -39421,18 +39421,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.1.2" - - bigg.reaction: "GLUDxi" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00430" - - "sce00910" - - kegg.reaction: "R00243" - - metanetx.reaction: "MNXR100085" - - pmid: "14554197" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.4.1.2" + - bigg.reaction: "GLUDxi" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00430" + - "sce00910" + - kegg.reaction: "R00243" + - metanetx.reaction: "MNXR100085" + - pmid: "14554197" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0471" - name: "glutamate dehydrogenase (NADP)" @@ -39452,16 +39452,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.1.4" - - bigg.reaction: "GLUDy" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00910" - - kegg.reaction: "R00248" - - metanetx.reaction: "MNXR100086" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.4.1.4" + - bigg.reaction: "GLUDy" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00910" + - kegg.reaction: "R00248" + - metanetx.reaction: "MNXR100086" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0472" - name: "glutamate synthase (NADH2)" @@ -39480,19 +39480,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.1.14" - - bigg.reaction: "GLUSx" - - kegg.pathway: - - "sce00250" - - "sce00910" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R00093" - - metanetx.reaction: "MNXR100289" - - pmid: "9657994" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.4.1.14" + - bigg.reaction: "GLUSx" + - kegg.pathway: + - "sce00250" + - "sce00910" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R00093" + - metanetx.reaction: "MNXR100289" + - pmid: "9657994" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0473" - name: "glutamate-5-semialdehyde dehydrogenase" @@ -39511,18 +39511,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.41" - - bigg.reaction: "G5SD" - - kegg.pathway: - - "sce00330" - - "sce00332" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R03313" - - metanetx.reaction: "MNXR99896" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.41" + - bigg.reaction: "G5SD" + - kegg.pathway: + - "sce00330" + - "sce00332" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R03313" + - metanetx.reaction: "MNXR99896" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0475" - name: "glutaminase" @@ -39539,13 +39539,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLUN" - - kegg.reaction: "R00256" - - metanetx.reaction: "MNXR100030" - - pmid: "3309138" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "GLUN" + - kegg.reaction: "R00256" + - metanetx.reaction: "MNXR100030" + - pmid: "3309138" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0476" - name: "glutamine synthetase" @@ -39565,19 +39565,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.1.2" - - bigg.reaction: "GLNS" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00630" - - "sce00910" - - "sce01230" - - kegg.reaction: "R00253" - - metanetx.reaction: "MNXR100024" - - pmid: "9611819" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.3.1.2" + - bigg.reaction: "GLNS" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00630" + - "sce00910" + - "sce01230" + - kegg.reaction: "R00253" + - metanetx.reaction: "MNXR100024" + - pmid: "9611819" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0477" - name: "glutamine-fructose-6-phosphate transaminase" @@ -39594,17 +39594,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.16" - - bigg.reaction: "GF6PTA" - - kegg.pathway: - - "sce00250" - - "sce00520" - - "sce01130" - - kegg.reaction: "R00768" - - metanetx.reaction: "MNXR106675" - - pmid: "2656689" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.16" + - bigg.reaction: "GF6PTA" + - kegg.pathway: + - "sce00250" + - "sce00520" + - "sce01130" + - kegg.reaction: "R00768" + - metanetx.reaction: "MNXR106675" + - pmid: "2656689" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0478" - name: "glutaminyl-tRNA synthetase" @@ -39623,14 +39623,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.18" - - bigg.reaction: "GLNTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03652" - - metanetx.reaction: "MNXR100257" - - pmid: "2991203" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.18" + - bigg.reaction: "GLNTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03652" + - metanetx.reaction: "MNXR100257" + - pmid: "2991203" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0479" - name: "glutamyl-tRNA synthetase" @@ -39649,16 +39649,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.17" - - bigg.reaction: "GLUTRS" - - kegg.pathway: - - "sce00860" - - "sce00970" - - "sce01110" - - kegg.reaction: "R05578" - - metanetx.reaction: "MNXR100295" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.1.1.17" + - bigg.reaction: "GLUTRS" + - kegg.pathway: + - "sce00860" + - "sce00970" + - "sce01110" + - kegg.reaction: "R05578" + - metanetx.reaction: "MNXR100295" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0480" - name: "glutamyl-tRNA synthetase" @@ -39677,17 +39677,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.17" - - bigg.reaction: "GLUTRSm" - - kegg.pathway: - - "sce00860" - - "sce00970" - - "sce01110" - - kegg.reaction: "R05578" - - metanetx.reaction: "MNXR100295" - - pmid: "7607232" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.17" + - bigg.reaction: "GLUTRSm" + - kegg.pathway: + - "sce00860" + - "sce00970" + - "sce01110" + - kegg.reaction: "R05578" + - metanetx.reaction: "MNXR100295" + - pmid: "7607232" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0481" - name: "glutathione oxidoreductase" @@ -39705,13 +39705,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.8.1.7" - - bigg.reaction: "GTHOr" - - kegg.pathway: "sce00480" - - kegg.reaction: "R00115" - - metanetx.reaction: "MNXR100098" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.8.1.7" + - bigg.reaction: "GTHOr" + - kegg.pathway: "sce00480" + - kegg.reaction: "R00115" + - metanetx.reaction: "MNXR100098" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0482" - name: "glutathione oxidoreductase" @@ -39729,14 +39729,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.8.1.7" - - bigg.reaction: "GTHOm" - - kegg.pathway: "sce00480" - - kegg.reaction: "R00115" - - metanetx.reaction: "MNXR100098" - - pmid: "14672937" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.8.1.7" + - bigg.reaction: "GTHOm" + - kegg.pathway: "sce00480" + - kegg.reaction: "R00115" + - metanetx.reaction: "MNXR100098" + - pmid: "14672937" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0483" - name: "glutathione peridoxase" @@ -39753,13 +39753,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.11.1.15; 1.11.1.9" - - bigg.reaction: "GTHPi" - - kegg.pathway: "sce00480" - - kegg.reaction: "R00274" - - metanetx.reaction: "MNXR100446" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.11.1.15; 1.11.1.9" + - bigg.reaction: "GTHPi" + - kegg.pathway: "sce00480" + - kegg.reaction: "R00274" + - metanetx.reaction: "MNXR100446" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0484" - name: "glutathione peroxidase, mitochondria" @@ -39776,13 +39776,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GTHPm" - - kegg.reaction: "R00274" - - metanetx.reaction: "MNXR100446" - - pmid: "12138088" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "GTHPm" + - kegg.reaction: "R00274" + - metanetx.reaction: "MNXR100446" + - pmid: "12138088" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0485" - name: "glutathione synthetase" @@ -39802,15 +39802,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.2.3" - - bigg.reaction: "GTHS" - - kegg.pathway: - - "sce00270" - - "sce00480" - - kegg.reaction: "R00497" - - metanetx.reaction: "MNXR100450" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.2.3" + - bigg.reaction: "GTHS" + - kegg.pathway: + - "sce00270" + - "sce00480" + - kegg.reaction: "R00497" + - metanetx.reaction: "MNXR100450" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0486" - name: "glyceraldehyde-3-phosphate dehydrogenase" @@ -39829,19 +39829,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.12" - - bigg.reaction: "GAPD" - - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R01061" - - metanetx.reaction: "MNXR100040" - - pmid: "3905788" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.1.12" + - bigg.reaction: "GAPD" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R01061" + - metanetx.reaction: "MNXR100040" + - pmid: "3905788" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0487" - name: "glycerol dehydrogenase (NADP-dependent)" @@ -39859,14 +39859,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.156" - - bigg.reaction: "GLYCDy" - - kegg.pathway: "sce00561" - - kegg.reaction: "R01039" - - metanetx.reaction: "MNXR100327" - - pmid: "11113971" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.156" + - bigg.reaction: "GLYCDy" + - kegg.pathway: "sce00561" + - kegg.reaction: "R01039" + - metanetx.reaction: "MNXR100327" + - pmid: "11113971" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0488" - name: "glycerol kinase" @@ -39884,13 +39884,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.30" - - bigg.reaction: "GLYK" - - kegg.pathway: "sce00561" - - kegg.reaction: "R00847" - - metanetx.reaction: "MNXR100348" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.30" + - bigg.reaction: "GLYK" + - kegg.pathway: "sce00561" + - kegg.reaction: "R00847" + - metanetx.reaction: "MNXR100348" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0489" - name: "glycerol-3-phosphatase" @@ -39907,13 +39907,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.21" - - bigg.reaction: "G3PT" - - kegg.pathway: "sce00561" - - kegg.reaction: "R00841" - - metanetx.reaction: "MNXR99894" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.3.21" + - bigg.reaction: "G3PT" + - kegg.pathway: "sce00561" + - kegg.reaction: "R00841" + - metanetx.reaction: "MNXR99894" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0490" - name: "glycerol-3-phosphate dehydrogenase (fad)" @@ -39931,15 +39931,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.5.3" - - bigg.reaction: "G3PDm" - - kegg.pathway: - - "sce00564" - - "sce01110" - - kegg.reaction: "R00848" - - metanetx.reaction: "MNXR99875" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.5.3" + - bigg.reaction: "G3PDm" + - kegg.pathway: + - "sce00564" + - "sce01110" + - kegg.reaction: "R00848" + - metanetx.reaction: "MNXR99875" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0491" - name: "glycerol-3-phosphate dehydrogenase (NAD)" @@ -39957,17 +39957,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.8" - - bigg.reaction: "G3PD1ir" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04011" - - kegg.reaction: "R00842" - - metanetx.reaction: "MNXR99876" - - pmid: "8196651" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.8" + - bigg.reaction: "G3PD1ir" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04011" + - kegg.reaction: "R00842" + - metanetx.reaction: "MNXR99876" + - pmid: "8196651" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0492" - name: "glycerol-3-phosphate dehydrogenase (NAD)" @@ -39985,16 +39985,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.8" - - bigg.reaction: "G3PD1irm" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04011" - - kegg.reaction: "R00842" - - metanetx.reaction: "MNXR99876" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.8" + - bigg.reaction: "G3PD1irm" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04011" + - kegg.reaction: "R00842" + - metanetx.reaction: "MNXR99876" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0497" - name: "glycerophosphodiester phosphodiesterase (glycerophosphocholine)" @@ -40012,14 +40012,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.46" - - bigg.reaction: "GPDDA1" - - kegg.pathway: "sce00564" - - kegg.reaction: "R01030" - - metanetx.reaction: "MNXR100410" - - pmid: "16141200" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.46" + - bigg.reaction: "GPDDA1" + - kegg.pathway: "sce00564" + - kegg.reaction: "R01030" + - metanetx.reaction: "MNXR100410" + - pmid: "16141200" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0499" - name: "glycinamide ribotide transformylase" @@ -40037,17 +40037,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.2.2" - - bigg.reaction: "GARFT" - - kegg.pathway: - - "sce00230" - - "sce00670" - - "sce01110" - - "sce01130" - - kegg.reaction: "R04325" - - metanetx.reaction: "MNXR99623" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.2.2" + - bigg.reaction: "GARFT" + - kegg.pathway: + - "sce00230" + - "sce00670" + - "sce01110" + - "sce01130" + - kegg.reaction: "R04325" + - metanetx.reaction: "MNXR99623" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0500" - name: "glycine C-acetyltransferase" @@ -40064,13 +40064,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLYAT" - - kegg.reaction: "R00371" - - metanetx.reaction: "MNXR100313" - - pmid: "3086094" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GLYAT" + - kegg.reaction: "R00371" + - metanetx.reaction: "MNXR100313" + - pmid: "3086094" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_0501" - name: "glycine cleavage system" @@ -40090,22 +40090,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - bigg.reaction: "GLYCLm" - - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - bigg.reaction: "GLYCLm" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0502" - name: "glycine hydroxymethyltransferase" @@ -40123,21 +40123,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.2.1" - - bigg.reaction: "GHMT2r" - - kegg.pathway: - - "sce00260" - - "sce00630" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R00945" - - metanetx.reaction: "MNXR100142" - - pmid: "8852837" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.2.1" + - bigg.reaction: "GHMT2r" + - kegg.pathway: + - "sce00260" + - "sce00630" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R00945" + - metanetx.reaction: "MNXR100142" + - pmid: "8852837" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0503" - name: "glycine hydroxymethyltransferase" @@ -40155,23 +40155,23 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.2.1" - - bigg.reaction: "GHMT2rm" - - kegg.pathway: - - "sce00260" - - "sce00630" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R00945" - - metanetx.reaction: "MNXR100142" - - pmid: - - "22672422" - - "8852837" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.2.1" + - bigg.reaction: "GHMT2rm" + - kegg.pathway: + - "sce00260" + - "sce00630" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R00945" + - metanetx.reaction: "MNXR100142" + - pmid: + - "22672422" + - "8852837" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0504" - name: "glycine-cleavage complex (lipoamide)" @@ -40189,23 +40189,23 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - bigg.reaction: "GCC2am" - - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - metanetx.reaction: "MNXR100065" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - bigg.reaction: "GCC2am" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - metanetx.reaction: "MNXR100065" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0505" - name: "glycine-cleavage complex (lipoamide)" @@ -40223,26 +40223,26 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.4.2; 1.4.4.2; 1.8.1.4; 2.1.2.10; 2.3.1.61" - - bigg.reaction: "GCC2cm" - - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00310" - - "sce00380" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R01698" - - metanetx.reaction: "MNXR100066" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.4.2; 1.4.4.2; 1.8.1.4; 2.1.2.10; 2.3.1.61" + - bigg.reaction: "GCC2cm" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R01698" + - metanetx.reaction: "MNXR100066" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0506" - name: "glycine-cleavage complex (lipoylprotein)" @@ -40259,24 +40259,24 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - bigg.reaction: "GCCam" - - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R03425" - - metanetx.reaction: "MNXR100067" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - bigg.reaction: "GCCam" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R03425" + - metanetx.reaction: "MNXR100067" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0507" - name: "glycine-cleavage complex (lipoylprotein)" @@ -40295,24 +40295,24 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - bigg.reaction: "GCCbim" - - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R04125" - - metanetx.reaction: "MNXR100068" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - bigg.reaction: "GCCbim" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R04125" + - metanetx.reaction: "MNXR100068" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0508" - name: "glycine-cleavage complex (lipoylprotein)" @@ -40330,24 +40330,24 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - bigg.reaction: "GCCcm" - - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R03815" - - metanetx.reaction: "MNXR100069" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - bigg.reaction: "GCCcm" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R03815" + - metanetx.reaction: "MNXR100069" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0509" - name: "glycine-cleavage system (lipoamide)" @@ -40365,22 +40365,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - bigg.reaction: "GCC2bim" - - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - bigg.reaction: "GCC2bim" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0510" - name: "glycogen (starch) synthase" @@ -40397,12 +40397,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.11; 2.4.1.186" - - kegg.pathway: "sce00500" - - metanetx.reaction: "MNXR143136" - - pmid: "8900126" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.1.11; 2.4.1.186" + - kegg.pathway: "sce00500" + - metanetx.reaction: "MNXR143136" + - pmid: "8900126" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0511" - name: "glycogen phosphorylase" @@ -40418,14 +40418,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.1" - - bigg.reaction: "GLCP" - - kegg.pathway: - - "sce00500" - - "sce01110" - - metanetx.reaction: "MNXR100214" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.1" + - bigg.reaction: "GLCP" + - kegg.pathway: + - "sce00500" + - "sce01110" + - metanetx.reaction: "MNXR100214" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0512" - name: "glycyl-tRNA synthetase" @@ -40444,14 +40444,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.14" - - bigg.reaction: "GLYTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03654" - - metanetx.reaction: "MNXR100365" - - pmid: "10874035" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.14" + - bigg.reaction: "GLYTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03654" + - metanetx.reaction: "MNXR100365" + - pmid: "10874035" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0514" - name: "GMP synthase" @@ -40473,13 +40473,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.5.2" - - bigg.reaction: "GMPS2" - - kegg.pathway: "sce00230" - - kegg.reaction: "R01231" - - metanetx.reaction: "MNXR100384" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.5.2" + - bigg.reaction: "GMPS2" + - kegg.pathway: "sce00230" + - kegg.reaction: "R01231" + - metanetx.reaction: "MNXR100384" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0518" - name: "GPI-anchor assembly, step 2" @@ -40497,13 +40497,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.89" - - kegg.pathway: "sce00563" - - kegg.reaction: "R05917" - - metanetx.reaction: "MNXR95257" - - pmid: "10085243" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.89" + - kegg.pathway: "sce00563" + - kegg.reaction: "R05917" + - metanetx.reaction: "MNXR95257" + - pmid: "10085243" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0519" - name: "GPI-anchor assembly, step 5" @@ -40520,11 +40520,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.-" - - kegg.pathway: "sce00563" - - pmid: "11102867" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.1.-" + - kegg.pathway: "sce00563" + - pmid: "11102867" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0520" - name: "GPI-anchor assembly, step 6" @@ -40540,11 +40540,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - kegg.pathway: "sce00563" - - pmid: "11102867" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - kegg.pathway: "sce00563" + - pmid: "11102867" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0521" - name: "GPI-anchor assembly, step 7" @@ -40561,11 +40561,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.-" - - kegg.pathway: "sce00563" - - pmid: "15623507" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.1.-" + - kegg.pathway: "sce00563" + - pmid: "15623507" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0522" - name: "GPI-anchor assembly, step 8" @@ -40581,11 +40581,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.-" - - kegg.pathway: "sce00563" - - pmid: "11102867" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.1.-" + - kegg.pathway: "sce00563" + - pmid: "11102867" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0523" - name: "GPI-anchor assembly, step 9" @@ -40602,11 +40602,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - kegg.pathway: "sce00563" - - pmid: "10793139" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - kegg.pathway: "sce00563" + - pmid: "10793139" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0524" - name: "GTP cyclohydrolase I" @@ -40624,13 +40624,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.16" - - bigg.reaction: "GTPCI" - - kegg.pathway: "sce00790" - - kegg.reaction: "R00424" - - metanetx.reaction: "MNXR100453" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.4.16" + - bigg.reaction: "GTPCI" + - kegg.pathway: "sce00790" + - kegg.reaction: "R00424" + - metanetx.reaction: "MNXR100453" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0525" - name: "GTP cyclohydrolase II" @@ -40649,16 +40649,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.25" - - bigg.reaction: "GTPCII2" - - kegg.pathway: - - "sce00740" - - "sce00790" - - "sce01110" - - kegg.reaction: "R00425" - - metanetx.reaction: "MNXR100455" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.4.25" + - bigg.reaction: "GTPCII2" + - kegg.pathway: + - "sce00740" + - "sce00790" + - "sce01110" + - kegg.reaction: "R00425" + - metanetx.reaction: "MNXR100455" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0526" - name: "guanine deaminase" @@ -40676,14 +40676,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.4.3" - - bigg.reaction: "GUAD" - - kegg.pathway: "sce00230" - - kegg.reaction: "R01676" - - metanetx.reaction: "MNXR100464" - - pmid: "15565584" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.4.3" + - bigg.reaction: "GUAD" + - kegg.pathway: "sce00230" + - kegg.reaction: "R01676" + - metanetx.reaction: "MNXR100464" + - pmid: "15565584" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0527" - name: "guanine phosphoribosyltransferase" @@ -40700,15 +40700,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.8" - - bigg.reaction: "GUAPRT" - - kegg.pathway: - - "sce00230" - - "sce01110" - - kegg.reaction: "R01229" - - metanetx.reaction: "MNXR100409" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.2.8" + - bigg.reaction: "GUAPRT" + - kegg.pathway: + - "sce00230" + - "sce01110" + - kegg.reaction: "R01229" + - metanetx.reaction: "MNXR100409" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0528" - name: "guanylate kinase" @@ -40725,13 +40725,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.8" - - bigg.reaction: "GK1" - - kegg.pathway: "sce00230" - - kegg.reaction: "R00332" - - metanetx.reaction: "MNXR100144" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.8" + - bigg.reaction: "GK1" + - kegg.pathway: "sce00230" + - kegg.reaction: "R00332" + - metanetx.reaction: "MNXR100144" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0529" - name: "guanylate kinase (GMP:dATP)" @@ -40748,12 +40748,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.8" - - bigg.reaction: "GK2" - - kegg.pathway: "sce00230" - - metanetx.reaction: "MNXR100145" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.8" + - bigg.reaction: "GK2" + - kegg.pathway: "sce00230" + - metanetx.reaction: "MNXR100145" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0530" - name: "heme O monooxygenase" @@ -40772,12 +40772,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.18.1.6" - - bigg.reaction: "HEMEOMOm" - - metanetx.reaction: "MNXR100595" - - pmid: "11788607" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.18.1.6" + - bigg.reaction: "HEMEOMOm" + - metanetx.reaction: "MNXR100595" + - pmid: "11788607" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0531" - name: "Heme O synthase" @@ -40795,17 +40795,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.-" - - bigg.reaction: "HEMEOSm" - - kegg.pathway: - - "sce00190" - - "sce00860" - - "sce01110" - - kegg.reaction: "R07411" - - metanetx.reaction: "MNXR100596" - - pmid: "11788607" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.-" + - bigg.reaction: "HEMEOSm" + - kegg.pathway: + - "sce00190" + - "sce00860" + - "sce01110" + - kegg.reaction: "R07411" + - metanetx.reaction: "MNXR100596" + - pmid: "11788607" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0532" - name: "hexaprenyldihydroxybenzoate methyltransferase" @@ -40823,12 +40823,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - - kegg.pathway: - - "sce00130" - - "sce01110" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" + - kegg.pathway: + - "sce00130" + - "sce01110" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0533" - name: "hexokinase (D-fructose:ATP)" @@ -40846,21 +40846,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.1" - - bigg.reaction: "HEX7" - - kegg.pathway: - - "sce00010" - - "sce00051" - - "sce00052" - - "sce00500" - - "sce00520" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00760" - - metanetx.reaction: "MNXR106668" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.1" + - bigg.reaction: "HEX7" + - kegg.pathway: + - "sce00010" + - "sce00051" + - "sce00052" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00760" + - metanetx.reaction: "MNXR106668" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0534" - name: "hexokinase (D-glucose:ATP)" @@ -40878,22 +40878,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.1; 2.7.1.2" - - bigg.reaction: "HEX1" - - kegg.pathway: - - "sce00010" - - "sce00051" - - "sce00052" - - "sce00500" - - "sce00520" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00299" - - metanetx.reaction: "MNXR100612" - - pmid: "6394965" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.1; 2.7.1.2" + - bigg.reaction: "HEX1" + - kegg.pathway: + - "sce00010" + - "sce00051" + - "sce00052" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00299" + - metanetx.reaction: "MNXR100612" + - pmid: "6394965" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0535" - name: "hexokinase (D-mannose:ATP)" @@ -40911,21 +40911,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.1" - - bigg.reaction: "HEX4" - - kegg.pathway: - - "sce00010" - - "sce00051" - - "sce00052" - - "sce00500" - - "sce00520" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R01326" - - metanetx.reaction: "MNXR95795" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.1" + - bigg.reaction: "HEX4" + - kegg.pathway: + - "sce00010" + - "sce00051" + - "sce00052" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R01326" + - metanetx.reaction: "MNXR95795" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0536" - name: "histidinol dehydrogenase" @@ -40944,16 +40944,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.23; 3.5.4.19; 3.6.1.31" - - bigg.reaction: "HISTD" - - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" - - kegg.reaction: "R01158" - - metanetx.reaction: "MNXR100587" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.23; 3.5.4.19; 3.6.1.31" + - bigg.reaction: "HISTD" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" + - kegg.reaction: "R01158" + - metanetx.reaction: "MNXR100587" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0537" - name: "histidinol-phosphatase" @@ -40970,16 +40970,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.15" - - bigg.reaction: "HISTP" - - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" - - kegg.reaction: "R03013" - - metanetx.reaction: "MNXR100642" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.3.15" + - bigg.reaction: "HISTP" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" + - kegg.reaction: "R03013" + - metanetx.reaction: "MNXR100642" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0538" - name: "histidinol-phosphate transaminase" @@ -40996,20 +40996,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.9" - - bigg.reaction: "HSTPT" - - kegg.pathway: - - "sce00340" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R03243" - - metanetx.reaction: "MNXR95852" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.9" + - bigg.reaction: "HSTPT" + - kegg.pathway: + - "sce00340" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R03243" + - metanetx.reaction: "MNXR95852" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0539" - name: "histidyl-tRNA synthetase" @@ -41028,14 +41028,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.21" - - bigg.reaction: "HISTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03655" - - metanetx.reaction: "MNXR100643" - - pmid: "1459448" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.21" + - bigg.reaction: "HISTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03655" + - metanetx.reaction: "MNXR100643" + - pmid: "1459448" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0540" - name: "histidyl-tRNA synthetase" @@ -41054,14 +41054,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.21" - - bigg.reaction: "HISTRSm" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03655" - - metanetx.reaction: "MNXR100643" - - pmid: "1459448" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.21" + - bigg.reaction: "HISTRSm" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03655" + - metanetx.reaction: "MNXR100643" + - pmid: "1459448" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0541" - name: "hnRNP arginine N-methyltransferase" @@ -41079,13 +41079,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.-" - - bigg.reaction: "ARMT" - - kegg.reaction: "R01159" - - metanetx.reaction: "MNXR141861" - - pmid: "8647869" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.-" + - bigg.reaction: "ARMT" + - kegg.reaction: "R01159" + - metanetx.reaction: "MNXR141861" + - pmid: "8647869" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0542" - name: "homoacontinate hydratase" @@ -41101,18 +41101,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.36" - - bigg.reaction: "HACNHm" - - kegg.pathway: - - "sce00300" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R04371" - - metanetx.reaction: "MNXR100552" - - pmid: "2507177" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.36" + - bigg.reaction: "HACNHm" + - kegg.pathway: + - "sce00300" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R04371" + - metanetx.reaction: "MNXR100552" + - pmid: "2507177" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0543" - name: "homocitrate synthase" @@ -41131,17 +41131,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.3.14" - - kegg.pathway: - - "sce00300" - - "sce00620" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00271" - - metanetx.reaction: "MNXR141692" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.3.14" + - kegg.pathway: + - "sce00300" + - "sce00620" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00271" + - metanetx.reaction: "MNXR141692" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0544" - name: "homocysteine S-methyltransferase" @@ -41159,16 +41159,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.10" - - bigg.reaction: "HCYSMT" - - kegg.pathway: - - "sce00270" - - "sce01110" - - kegg.reaction: "R00650" - - metanetx.reaction: "MNXR100577" - - pmid: "11013242" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.10" + - bigg.reaction: "HCYSMT" + - kegg.pathway: + - "sce00270" + - "sce01110" + - kegg.reaction: "R00650" + - metanetx.reaction: "MNXR100577" + - pmid: "11013242" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0545" - name: "homoisocitrate dehydrogenase" @@ -41186,17 +41186,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.87" - - kegg.pathway: - - "sce00300" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01934" - - metanetx.reaction: "MNXR107239" - - pmid: "10714900" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.87" + - kegg.pathway: + - "sce00300" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01934" + - metanetx.reaction: "MNXR107239" + - pmid: "10714900" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0546" - name: "homoserine dehydrogenase (NADH)" @@ -41214,22 +41214,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.3" - - bigg.reaction: "HSDxi" - - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce00300" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01775" - - metanetx.reaction: "MNXR100734" - - pmid: - - "8500624" - - "11341914" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.3" + - bigg.reaction: "HSDxi" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce00300" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01775" + - metanetx.reaction: "MNXR100734" + - pmid: + - "8500624" + - "11341914" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0547" - name: "homoserine dehydrogenase (NADP)" @@ -41247,20 +41247,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.3" - - bigg.reaction: "HSDy" - - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce00300" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01775" - - metanetx.reaction: "MNXR100734" - - pmid: "8500624" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.3" + - bigg.reaction: "HSDy" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce00300" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01775" + - metanetx.reaction: "MNXR100734" + - pmid: "8500624" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0548" - name: "homoserine kinase" @@ -41278,17 +41278,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.39" - - bigg.reaction: "HSK" - - kegg.pathway: - - "sce00260" - - "sce01110" - - "sce01230" - - kegg.reaction: "R01771" - - metanetx.reaction: "MNXR100737" - - pmid: "8973190" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.39" + - bigg.reaction: "HSK" + - kegg.pathway: + - "sce00260" + - "sce01110" + - "sce01230" + - kegg.reaction: "R01771" + - metanetx.reaction: "MNXR100737" + - pmid: "8973190" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0549" - name: "homoserine O-trans-acetylase" @@ -41305,16 +41305,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.31" - - bigg.reaction: "HSERTA" - - kegg.pathway: - - "sce00270" - - "sce01130" - - kegg.reaction: "R01776" - - metanetx.reaction: "MNXR100736" - - pmid: "16232856" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.31" + - bigg.reaction: "HSERTA" + - kegg.pathway: + - "sce00270" + - "sce01130" + - kegg.reaction: "R01776" + - metanetx.reaction: "MNXR100736" + - pmid: "16232856" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0550" - name: "hydrogen peroxide reductase (thioredoxin)" @@ -41332,12 +41332,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.11.1.15" - - bigg.reaction: "THIORDXi" - - metanetx.reaction: "MNXR104815" - - pmid: "15210711" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.11.1.15" + - bigg.reaction: "THIORDXi" + - metanetx.reaction: "MNXR104815" + - pmid: "15210711" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0551" - name: "hydrogen peroxide reductase (thioredoxin)" @@ -41355,12 +41355,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.11.1.15" - - bigg.reaction: "THIORDXm" - - metanetx.reaction: "MNXR104815" - - pmid: "10821871" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.11.1.15" + - bigg.reaction: "THIORDXm" + - metanetx.reaction: "MNXR104815" + - pmid: "10821871" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0552" - name: "hydrogen peroxide reductase (thioredoxin)" @@ -41378,13 +41378,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.11.1.15" - - bigg.reaction: "THIORDXp" - - kegg.pathway: "sce04122" - - metanetx.reaction: "MNXR104815" - - pmid: "14640681" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.11.1.15" + - bigg.reaction: "THIORDXp" + - kegg.pathway: "sce04122" + - metanetx.reaction: "MNXR104815" + - pmid: "14640681" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0553" - name: "hydroxyacylglutathione hydrolase" @@ -41402,13 +41402,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.6" - - bigg.reaction: "GLYOX" - - kegg.pathway: "sce00620" - - kegg.reaction: "R01736" - - metanetx.reaction: "MNXR100353" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.2.6" + - bigg.reaction: "GLYOX" + - kegg.pathway: "sce00620" + - kegg.reaction: "R01736" + - metanetx.reaction: "MNXR100353" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0554" - name: "hydroxyacylglutathione hydrolase" @@ -41426,13 +41426,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.6" - - bigg.reaction: "GLYOXm" - - kegg.pathway: "sce00620" - - kegg.reaction: "R01736" - - metanetx.reaction: "MNXR100353" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.2.6" + - bigg.reaction: "GLYOXm" + - kegg.pathway: "sce00620" + - kegg.reaction: "R01736" + - metanetx.reaction: "MNXR100353" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0555" - name: "hydroxybenzoate octaprenyltransferase" @@ -41449,15 +41449,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.39" - - bigg.reaction: "HBZOPT6m" - - kegg.pathway: - - "sce00130" - - "sce01110" - - kegg.reaction: "R05616" - - metanetx.reaction: "MNXR100569" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.39" + - bigg.reaction: "HBZOPT6m" + - kegg.pathway: + - "sce00130" + - "sce01110" + - kegg.reaction: "R05616" + - metanetx.reaction: "MNXR100569" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0556" - name: "hydroxyethylthiazole kinase" @@ -41475,13 +41475,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.3; 2.7.1.50" - - bigg.reaction: "HETZK" - - kegg.pathway: "sce00730" - - kegg.reaction: "R04448" - - metanetx.reaction: "MNXR100611" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.3; 2.7.1.50" + - bigg.reaction: "HETZK" + - kegg.pathway: "sce00730" + - kegg.reaction: "R04448" + - metanetx.reaction: "MNXR100611" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0557" - name: "hydroxymethylbilane synthase" @@ -41498,15 +41498,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.61" - - bigg.reaction: "HMBS" - - kegg.pathway: - - "sce00860" - - "sce01110" - - kegg.reaction: "R00084" - - metanetx.reaction: "MNXR100658" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.61" + - bigg.reaction: "HMBS" + - kegg.pathway: + - "sce00860" + - "sce01110" + - kegg.reaction: "R00084" + - metanetx.reaction: "MNXR100658" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0558" - name: "hydroxymethylglutaryl CoA reductase" @@ -41525,16 +41525,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.34" - - bigg.reaction: "HMGCOAR" - - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - kegg.reaction: "R02082" - - metanetx.reaction: "MNXR107304" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.34" + - bigg.reaction: "HMGCOAR" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - kegg.reaction: "R02082" + - metanetx.reaction: "MNXR107304" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0559" - name: "hydroxymethylglutaryl CoA synthase" @@ -41553,19 +41553,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.3.10" - - bigg.reaction: "HMGCOAS" - - kegg.pathway: - - "sce00072" - - "sce00280" - - "sce00650" - - "sce00900" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01978" - - metanetx.reaction: "MNXR107257" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.3.10" + - bigg.reaction: "HMGCOAS" + - kegg.pathway: + - "sce00072" + - "sce00280" + - "sce00650" + - "sce00900" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01978" + - metanetx.reaction: "MNXR107257" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0560" - name: "hydroxymethylglutaryl CoA synthase" @@ -41584,19 +41584,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.3.10" - - bigg.reaction: "HMGCOASm" - - kegg.pathway: - - "sce00072" - - "sce00280" - - "sce00650" - - "sce00900" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01978" - - metanetx.reaction: "MNXR107257" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.3.10" + - bigg.reaction: "HMGCOASm" + - kegg.pathway: + - "sce00072" + - "sce00280" + - "sce00650" + - "sce00900" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01978" + - metanetx.reaction: "MNXR107257" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0561" - name: "hydroxymethylpyrimidine kinase (ATP)" @@ -41614,13 +41614,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.49; 2.7.4.7" - - bigg.reaction: "HMPK1" - - kegg.pathway: "sce00730" - - kegg.reaction: "R03471" - - metanetx.reaction: "MNXR100664" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.49; 2.7.4.7" + - bigg.reaction: "HMPK1" + - kegg.pathway: "sce00730" + - kegg.reaction: "R03471" + - metanetx.reaction: "MNXR100664" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0562" - name: "hypoxanthine phosphoribosyltransferase (Hypoxanthine)" @@ -41637,15 +41637,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.8" - - bigg.reaction: "HXPRT" - - kegg.pathway: - - "sce00230" - - "sce01110" - - kegg.reaction: "R01132" - - metanetx.reaction: "MNXR100752" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.2.8" + - bigg.reaction: "HXPRT" + - kegg.pathway: + - "sce00230" + - "sce01110" + - kegg.reaction: "R01132" + - metanetx.reaction: "MNXR100752" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0563" - name: "Imidazole-glycerol-3-phosphate synthase" @@ -41664,16 +41664,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.-; 4.1.3.-" - - bigg.reaction: "IG3PS" - - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" - - kegg.reaction: "R04558" - - metanetx.reaction: "MNXR100811" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.2.-; 4.1.3.-" + - bigg.reaction: "IG3PS" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" + - kegg.reaction: "R04558" + - metanetx.reaction: "MNXR100811" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0564" - name: "imidazoleglycerol-phosphate dehydratase" @@ -41689,16 +41689,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.19" - - bigg.reaction: "IGPDH" - - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" - - kegg.reaction: "R03457" - - metanetx.reaction: "MNXR100813" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.2.1.19" + - bigg.reaction: "IGPDH" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" + - kegg.reaction: "R03457" + - metanetx.reaction: "MNXR100813" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0565" - name: "IMP dehydrogenase" @@ -41717,16 +41717,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.205" - - bigg.reaction: "IMPD" - - kegg.pathway: - - "sce00230" - - "sce01110" - - kegg.reaction: "R01130" - - metanetx.reaction: "MNXR100830" - - pmid: "11003640" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.205" + - bigg.reaction: "IMPD" + - kegg.pathway: + - "sce00230" + - "sce01110" + - kegg.reaction: "R01130" + - metanetx.reaction: "MNXR100830" + - pmid: "11003640" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0566" - name: "indole-3-glycerol-phosphate synthase" @@ -41744,18 +41744,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.48; 4.1.3.27" - - bigg.reaction: "IGPS" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R03508" - - metanetx.reaction: "MNXR100814" - - pmid: "6323449" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.48; 4.1.3.27" + - bigg.reaction: "IGPS" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R03508" + - metanetx.reaction: "MNXR100814" + - pmid: "6323449" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0567" - name: "indole-3-pyruvate decarboxylase" @@ -41772,17 +41772,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - - bigg.reaction: "INDPYRD" - - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01974" - - metanetx.reaction: "MNXR100837" - - pmid: "12902239" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" + - bigg.reaction: "INDPYRD" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01974" + - metanetx.reaction: "MNXR100837" + - pmid: "12902239" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0568" - name: "inorganic diphosphatase" @@ -41799,14 +41799,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.1" - - bigg.reaction: "PPA" - - kegg.pathway: "sce00190" - - kegg.reaction: "R00004" - - metanetx.reaction: "MNXR100808" - - pmid: "8224193" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.6.1.1" + - bigg.reaction: "PPA" + - kegg.pathway: "sce00190" + - kegg.reaction: "R00004" + - metanetx.reaction: "MNXR100808" + - pmid: "8224193" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0569" - name: "inorganic diphosphatase" @@ -41823,14 +41823,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.1" - - bigg.reaction: "PPAm" - - kegg.pathway: "sce00190" - - kegg.reaction: "R00004" - - metanetx.reaction: "MNXR100808" - - pmid: "1648084" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.6.1.1" + - bigg.reaction: "PPAm" + - kegg.pathway: "sce00190" + - kegg.reaction: "R00004" + - metanetx.reaction: "MNXR100808" + - pmid: "1648084" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0570" - name: "inosine monophosphate cyclohydrolase" @@ -41846,17 +41846,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.2.3; 3.5.4.10" - - bigg.reaction: "IMPC" - - kegg.pathway: - - "sce00230" - - "sce00670" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01127" - - metanetx.reaction: "MNXR100783" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.2.3; 3.5.4.10" + - bigg.reaction: "IMPC" + - kegg.pathway: + - "sce00230" + - "sce00670" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01127" + - metanetx.reaction: "MNXR100783" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0571" - name: "inositol-1,3,4,5,6-pentakisphosphate 2-kinase" @@ -41874,15 +41874,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.158" - - kegg.pathway: - - "sce00562" - - "sce04070" - - kegg.reaction: "R05202" - - metanetx.reaction: "MNXR109392" - - pmid: "10960485" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.158" + - kegg.pathway: + - "sce00562" + - "sce04070" + - kegg.reaction: "R05202" + - metanetx.reaction: "MNXR109392" + - pmid: "10960485" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0572" - name: "inositol-1,3,4,5-triphosphate 6-kinase, nucleus" @@ -41900,16 +41900,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.151" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - kegg.reaction: "R10953" - - metanetx.reaction: "MNXR114260" - - pmid: "11956213" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.151" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - kegg.reaction: "R10953" + - metanetx.reaction: "MNXR114260" + - pmid: "11956213" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0573" - name: "inositol-1,4,5,6- tetrakisphosphate 3-kinase, nucleus" @@ -41927,16 +41927,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.151" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - kegg.reaction: "R05801" - - metanetx.reaction: "MNXR109848" - - pmid: "11956213" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.151" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - kegg.reaction: "R05801" + - metanetx.reaction: "MNXR109848" + - pmid: "11956213" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0574" - name: "inositol-1,4,5-triphosphate 6-kinase, nucleus" @@ -41954,16 +41954,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.151" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - kegg.reaction: "R05800" - - metanetx.reaction: "MNXR109847" - - pmid: "11956213" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.151" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - kegg.reaction: "R05800" + - metanetx.reaction: "MNXR109847" + - pmid: "11956213" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0575" - name: "inositol-1,4,5-trisphosphate 3-kinase, nucleus" @@ -41981,16 +41981,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.151" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - kegg.reaction: "R03433" - - metanetx.reaction: "MNXR108166" - - pmid: "11956213" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.151" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - kegg.reaction: "R03433" + - metanetx.reaction: "MNXR108166" + - pmid: "11956213" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0596" - name: "IPS phospholipase C" @@ -42007,13 +42007,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0597" - name: "IPS phospholipase C" @@ -42030,13 +42030,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0598" - name: "IPS phospholipase C" @@ -42053,13 +42053,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0599" - name: "IPS phospholipase C" @@ -42076,13 +42076,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0600" - name: "IPS phospholipase C" @@ -42099,13 +42099,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0601" - name: "IPS phospholipase C" @@ -42122,13 +42122,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0602" - name: "IPS phospholipase C" @@ -42145,13 +42145,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0603" - name: "IPS phospholipase C" @@ -42168,13 +42168,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0604" - name: "IPS phospholipase C" @@ -42191,13 +42191,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0605" - name: "IPS phospholipase C" @@ -42214,13 +42214,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0606" - name: "IPS phospholipase C" @@ -42237,13 +42237,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0607" - name: "IPS phospholipase C" @@ -42260,13 +42260,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0608" - name: "IPS phospholipase C" @@ -42283,13 +42283,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0609" - name: "IPS phospholipase C" @@ -42306,13 +42306,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0610" - name: "IPS phospholipase C" @@ -42329,13 +42329,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0611" - name: "IPS phospholipase C" @@ -42352,13 +42352,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0612" - name: "IPS phospholipase C" @@ -42375,13 +42375,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0613" - name: "IPS phospholipase C" @@ -42398,13 +42398,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0614" - name: "IPS phospholipase C" @@ -42421,13 +42421,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0615" - name: "IPS phospholipase C" @@ -42444,13 +42444,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0616" - name: "IPS phospholipase C" @@ -42468,13 +42468,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0617" - name: "IPS phospholipase C" @@ -42492,13 +42492,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0618" - name: "IPS phospholipase C" @@ -42516,13 +42516,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0619" - name: "IPS phospholipase C" @@ -42540,13 +42540,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0620" - name: "IPS phospholipase C" @@ -42564,13 +42564,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0621" - name: "IPS phospholipase C" @@ -42588,13 +42588,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0622" - name: "IPS phospholipase C" @@ -42612,13 +42612,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0623" - name: "IPS phospholipase C" @@ -42636,13 +42636,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0624" - name: "IPS phospholipase C" @@ -42660,13 +42660,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0625" - name: "IPS phospholipase C" @@ -42684,13 +42684,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0626" - name: "IPS phospholipase C" @@ -42707,13 +42707,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0627" - name: "IPS phospholipase C" @@ -42730,13 +42730,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0628" - name: "IPS phospholipase C" @@ -42753,13 +42753,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0629" - name: "IPS phospholipase C" @@ -42776,13 +42776,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0630" - name: "IPS phospholipase C" @@ -42799,13 +42799,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0631" - name: "IPS phospholipase C" @@ -42822,13 +42822,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0632" - name: "IPS phospholipase C" @@ -42845,13 +42845,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0633" - name: "IPS phospholipase C" @@ -42868,13 +42868,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0634" - name: "IPS phospholipase C" @@ -42891,13 +42891,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0635" - name: "IPS phospholipase C" @@ -42914,13 +42914,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0636" - name: "IPS phospholipase C" @@ -42937,13 +42937,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0637" - name: "IPS phospholipase C" @@ -42960,13 +42960,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0638" - name: "IPS phospholipase C" @@ -42983,13 +42983,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0639" - name: "IPS phospholipase C" @@ -43006,13 +43006,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0640" - name: "IPS phospholipase C" @@ -43029,13 +43029,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0641" - name: "IPS phospholipase C" @@ -43052,13 +43052,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0642" - name: "IPS phospholipase C" @@ -43075,13 +43075,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0643" - name: "IPS phospholipase C" @@ -43098,13 +43098,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0644" - name: "IPS phospholipase C" @@ -43121,13 +43121,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0645" - name: "IPS phospholipase C" @@ -43144,13 +43144,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "17880915" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "17880915" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0646" - name: "IPS phospholipase C" @@ -43168,13 +43168,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0647" - name: "IPS phospholipase C" @@ -43192,13 +43192,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0648" - name: "IPS phospholipase C" @@ -43216,13 +43216,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0649" - name: "IPS phospholipase C" @@ -43240,13 +43240,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0650" - name: "IPS phospholipase C" @@ -43264,13 +43264,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0651" - name: "IPS phospholipase C" @@ -43288,13 +43288,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0652" - name: "IPS phospholipase C" @@ -43312,13 +43312,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0653" - name: "IPS phospholipase C" @@ -43336,13 +43336,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0654" - name: "IPS phospholipase C" @@ -43360,13 +43360,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0655" - name: "IPS phospholipase C" @@ -43384,13 +43384,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00600" - - pmid: - - "11006294" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00600" + - pmid: + - "11006294" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0656" - name: "isoamyl acetate-hydrolyzing esterase" @@ -43408,12 +43408,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.-.-" - - bigg.reaction: "ACHLE1" - - metanetx.reaction: "MNXR95262" - - pmid: "10855721" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.-.-" + - bigg.reaction: "ACHLE1" + - metanetx.reaction: "MNXR95262" + - pmid: "10855721" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0657" - name: "isobutyl acetate-hydrolyzing esterase" @@ -43431,12 +43431,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.-.-" - - bigg.reaction: "ACHLE2" - - metanetx.reaction: "MNXR95263" - - pmid: "10855721" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.-.-" + - bigg.reaction: "ACHLE2" + - metanetx.reaction: "MNXR95263" + - pmid: "10855721" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0658" - name: "isocitrate dehydrogenase (NAD+)" @@ -43454,20 +43454,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.41" - - bigg.reaction: "ICDHxm" - - kegg.pathway: - - "sce00020" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00709" - - metanetx.reaction: "MNXR100782" - - pmid: "1644826" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.41" + - bigg.reaction: "ICDHxm" + - kegg.pathway: + - "sce00020" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00709" + - metanetx.reaction: "MNXR100782" + - pmid: "1644826" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0659" - name: "isocitrate dehydrogenase (NADP)" @@ -43485,22 +43485,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.42" - - bigg.reaction: "ICDHyr" - - kegg.pathway: - - "sce00020" - - "sce00480" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - "sce04146" - - kegg.reaction: "R00267" - - metanetx.reaction: "MNXR100781" - - pmid: "9175438" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.42" + - bigg.reaction: "ICDHyr" + - kegg.pathway: + - "sce00020" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - "sce04146" + - kegg.reaction: "R00267" + - metanetx.reaction: "MNXR100781" + - pmid: "9175438" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0661" - name: "isocitrate dehydrogenase (NADP+), peroxisomal" @@ -43518,22 +43518,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.42" - - bigg.reaction: "ICDHyp" - - kegg.pathway: - - "sce00020" - - "sce00480" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - "sce04146" - - kegg.reaction: "R00267" - - metanetx.reaction: "MNXR100781" - - pmid: "9175438" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.42" + - bigg.reaction: "ICDHyp" + - kegg.pathway: + - "sce00020" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - "sce04146" + - kegg.reaction: "R00267" + - metanetx.reaction: "MNXR100781" + - pmid: "9175438" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0662" - name: "isocitrate lyase" @@ -43549,16 +43549,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.3.1; 4.1.3.30" - - bigg.reaction: "ICL" - - kegg.pathway: - - "sce00630" - - "sce01110" - - "sce01200" - - kegg.reaction: "R00479" - - metanetx.reaction: "MNXR100789" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.3.1; 4.1.3.30" + - bigg.reaction: "ICL" + - kegg.pathway: + - "sce00630" + - "sce01110" + - "sce01200" + - kegg.reaction: "R00479" + - metanetx.reaction: "MNXR100789" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0663" - name: "isoleucine transaminase" @@ -43575,22 +43575,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.42" - - bigg.reaction: "ILETA" - - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R02199" - - metanetx.reaction: "MNXR96228" - - pmid: "8798704" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.42" + - bigg.reaction: "ILETA" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R02199" + - metanetx.reaction: "MNXR96228" + - pmid: "8798704" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0664" - name: "isoleucine transaminase" @@ -43607,22 +43607,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.42" - - bigg.reaction: "ILETAm" - - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R02199" - - metanetx.reaction: "MNXR96228" - - pmid: "8798704" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.42" + - bigg.reaction: "ILETAm" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R02199" + - metanetx.reaction: "MNXR96228" + - pmid: "8798704" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0665" - name: "isoleucyl-tRNA synthetase" @@ -43641,14 +43641,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.5" - - bigg.reaction: "ILETRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03656" - - metanetx.reaction: "MNXR100820" - - pmid: "7619074" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.5" + - bigg.reaction: "ILETRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03656" + - metanetx.reaction: "MNXR100820" + - pmid: "7619074" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0666" - name: "isoleucyl-tRNA synthetase" @@ -43667,14 +43667,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.5" - - bigg.reaction: "ILETRSm" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03656" - - metanetx.reaction: "MNXR100820" - - pmid: "7607232" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.5" + - bigg.reaction: "ILETRSm" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03656" + - metanetx.reaction: "MNXR100820" + - pmid: "7607232" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0667" - name: "isopentenyl-diphosphate D-isomerase" @@ -43689,16 +43689,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.3.2" - - bigg.reaction: "IPDDI" - - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01123" - - metanetx.reaction: "MNXR100796" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "5.3.3.2" + - bigg.reaction: "IPDDI" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01123" + - metanetx.reaction: "MNXR100796" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0668" - name: "itaconate-CoA ligase (ADP-forming)" @@ -43717,19 +43717,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.5" - - bigg.reaction: "ITCOALm" - - kegg.pathway: - - "sce00020" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R02404" - - metanetx.reaction: "MNXR100884" - - pmid: "9874242" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.5" + - bigg.reaction: "ITCOALm" + - kegg.pathway: + - "sce00020" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R02404" + - metanetx.reaction: "MNXR100884" + - pmid: "9874242" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0669" - name: "ketol-acid reductoisomerase (2-aceto-2-hydroxybutanoate)" @@ -43747,19 +43747,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.86" - - bigg.reaction: "KARA2im" - - kegg.pathway: - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - metanetx.reaction: "MNXR100902" - - pmid: "3027658" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.86" + - bigg.reaction: "KARA2im" + - kegg.pathway: + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - metanetx.reaction: "MNXR100902" + - pmid: "3027658" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0670" - name: "kynureninase" @@ -43777,14 +43777,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.7.1.3" - - bigg.reaction: "KYN" - - kegg.pathway: "sce00380" - - kegg.reaction: "R00987" - - metanetx.reaction: "MNXR100946" - - pmid: "12062417" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.7.1.3" + - bigg.reaction: "KYN" + - kegg.pathway: "sce00380" + - kegg.reaction: "R00987" + - metanetx.reaction: "MNXR100946" + - pmid: "12062417" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0671" - name: "kynurenine 3-monooxygenase" @@ -43804,14 +43804,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.13.9" - - bigg.reaction: "KYN3OX" - - kegg.pathway: "sce00380" - - kegg.reaction: "R01960" - - metanetx.reaction: "MNXR100947" - - pmid: "12062417" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.14.13.9" + - bigg.reaction: "KYN3OX" + - kegg.pathway: "sce00380" + - kegg.reaction: "R01960" + - metanetx.reaction: "MNXR100947" + - pmid: "12062417" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0672" - name: "L-1-pyrroline-3-hydroxy-5-carboxylate dehydrogenase" @@ -43830,15 +43830,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.88" - - bigg.reaction: "PHCDm" - - kegg.pathway: - - "sce00250" - - "sce00330" - - kegg.reaction: "R04444" - - metanetx.reaction: "MNXR102616" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.88" + - bigg.reaction: "PHCDm" + - kegg.pathway: + - "sce00250" + - "sce00330" + - kegg.reaction: "R04444" + - metanetx.reaction: "MNXR102616" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0673" - name: "L-4-hydroxyglutamate semialdehyde dehydrogenase" @@ -43857,15 +43857,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.88" - - bigg.reaction: "4HGLSDm" - - kegg.pathway: - - "sce00250" - - "sce00330" - - kegg.reaction: "R05051" - - metanetx.reaction: "MNXR95015" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.88" + - bigg.reaction: "4HGLSDm" + - kegg.pathway: + - "sce00250" + - "sce00330" + - kegg.reaction: "R05051" + - metanetx.reaction: "MNXR95015" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0674" - name: "L-alanine transaminase" @@ -43882,18 +43882,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.2" - - bigg.reaction: "ALATA_Lm" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00258" - - metanetx.reaction: "MNXR95698" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.2" + - bigg.reaction: "ALATA_Lm" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00258" + - metanetx.reaction: "MNXR95698" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0675" - name: "L-allo-threonine aldolase" @@ -43909,18 +43909,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.2.48" - - bigg.reaction: "THRA2" - - kegg.pathway: - - "sce00260" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R06171" - - metanetx.reaction: "MNXR104834" - - pmid: "9151955" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.2.48" + - bigg.reaction: "THRA2" + - kegg.pathway: + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R06171" + - metanetx.reaction: "MNXR104834" + - pmid: "9151955" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0676" - name: "L-allo-threonine dehydrogenase" @@ -43938,16 +43938,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.381" - - bigg.reaction: "ATHRDHr" - - kegg.pathway: - - "sce00240" - - "sce00260" - - kegg.reaction: "R10851" - - metanetx.reaction: "MNXR96121" - - pmid: "12535615" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.381" + - bigg.reaction: "ATHRDHr" + - kegg.pathway: + - "sce00240" + - "sce00260" + - kegg.reaction: "R10851" + - metanetx.reaction: "MNXR96121" + - pmid: "12535615" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0678" - name: "L-aminoadipate-semialdehyde dehydrogenase (NADPH)" @@ -43968,18 +43968,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.31; 1.2.1.95; 2.7.8.7" - - bigg.reaction: "AASAD1" - - kegg.pathway: - - "sce00300" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01230" - - metanetx.reaction: "MNXR95156" - - pmid: "3928261" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.1.31; 1.2.1.95; 2.7.8.7" + - bigg.reaction: "AASAD1" + - kegg.pathway: + - "sce00300" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01230" + - metanetx.reaction: "MNXR95156" + - pmid: "3928261" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0679" - name: "L-asparaginase" @@ -43996,16 +43996,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.1" - - bigg.reaction: "ASNN" - - kegg.pathway: - - "sce00250" - - "sce01110" - - kegg.reaction: "R00485" - - metanetx.reaction: "MNXR96056" - - pmid: "8026756" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.1" + - bigg.reaction: "ASNN" + - kegg.pathway: + - "sce00250" + - "sce01110" + - kegg.reaction: "R00485" + - metanetx.reaction: "MNXR96056" + - pmid: "8026756" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0680" - name: "L-asparaginase" @@ -44022,13 +44022,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.1" - - bigg.reaction: "ASNNe" - - kegg.reaction: "R00485" - - metanetx.reaction: "MNXR96056" - - pmid: "3042786" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.1" + - bigg.reaction: "ASNNe" + - kegg.reaction: "R00485" + - metanetx.reaction: "MNXR96056" + - pmid: "3042786" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0681" - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" @@ -44045,25 +44045,25 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.1" - - bigg.reaction: "EHGLAT" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R03266" - - metanetx.reaction: "MNXR97908" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.1" + - bigg.reaction: "EHGLAT" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R03266" + - metanetx.reaction: "MNXR97908" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0682" - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" @@ -44080,25 +44080,25 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.1" - - bigg.reaction: "EHGLATm" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R03266" - - metanetx.reaction: "MNXR97908" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.1" + - bigg.reaction: "EHGLATm" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R03266" + - metanetx.reaction: "MNXR97908" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0683" - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" @@ -44115,25 +44115,25 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.1" - - bigg.reaction: "EHGLATp" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R03266" - - metanetx.reaction: "MNXR97908" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.1" + - bigg.reaction: "EHGLATp" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R03266" + - metanetx.reaction: "MNXR97908" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0687" - name: "L-hydroxyproline reductase (NADP)" @@ -44151,11 +44151,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.2" - - kegg.reaction: "R03293" - - metanetx.reaction: "MNXR100699" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.5.1.2" + - kegg.reaction: "R03293" + - metanetx.reaction: "MNXR100699" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0688" - name: "L-lactaldehyde:NADP+ 1-oxidoreductase" @@ -44173,18 +44173,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.21; 1.1.1.265; 1.1.1.283" - - bigg.reaction: "LALDO3" - - kegg.pathway: - - "sce00040" - - "sce00620" - - "sce00640" - - "sce04011" - - kegg.reaction: "R02260" - - metanetx.reaction: "MNXR101010" - - pmid: "12722185" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.-; 1.1.1.21; 1.1.1.265; 1.1.1.283" + - bigg.reaction: "LALDO3" + - kegg.pathway: + - "sce00040" + - "sce00620" + - "sce00640" + - "sce04011" + - kegg.reaction: "R02260" + - metanetx.reaction: "MNXR101010" + - pmid: "12722185" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0689" - name: "L-serine deaminase" @@ -44200,21 +44200,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.3.1.17; 4.3.1.19" - - bigg.reaction: "SERD_L" - - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce00290" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R00220" - - metanetx.reaction: "MNXR104339" - - pmid: "2194168" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.3.1.17; 4.3.1.19" + - bigg.reaction: "SERD_L" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce00290" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R00220" + - metanetx.reaction: "MNXR104339" + - pmid: "2194168" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0690" - name: "L-serine dehydrogenase" @@ -44232,16 +44232,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.381" - - bigg.reaction: "LSERDHr" - - kegg.pathway: - - "sce00240" - - "sce00260" - - kegg.reaction: "R06126" - - metanetx.reaction: "MNXR101242" - - pmid: "12535615" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.381" + - bigg.reaction: "LSERDHr" + - kegg.pathway: + - "sce00240" + - "sce00260" + - kegg.reaction: "R06126" + - metanetx.reaction: "MNXR101242" + - pmid: "12535615" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0691" - name: "L-sorbitol dehydrogenase (L-sorbose-producing)" @@ -44259,14 +44259,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.14" - - bigg.reaction: "SBTD_L" - - kegg.pathway: - - "sce00040" - - "sce00051" - - metanetx.reaction: "MNXR104284" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.14" + - bigg.reaction: "SBTD_L" + - kegg.pathway: + - "sce00040" + - "sce00051" + - metanetx.reaction: "MNXR104284" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0692" - name: "L-threonine deaminase" @@ -44282,21 +44282,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.3.1.17; 4.3.1.19" - - bigg.reaction: "THRD_L" - - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce00290" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R00996" - - metanetx.reaction: "MNXR104714" - - pmid: "1628804" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.3.1.17; 4.3.1.19" + - bigg.reaction: "THRD_L" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce00290" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R00996" + - metanetx.reaction: "MNXR104714" + - pmid: "1628804" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0693" - name: "L-threonine deaminase" @@ -44312,20 +44312,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.3.1.19" - - bigg.reaction: "THRD_Lm" - - kegg.pathway: - - "sce00260" - - "sce00290" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R00996" - - metanetx.reaction: "MNXR104714" - - pmid: "3289762" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.3.1.19" + - bigg.reaction: "THRD_Lm" + - kegg.pathway: + - "sce00260" + - "sce00290" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R00996" + - metanetx.reaction: "MNXR104714" + - pmid: "3289762" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0694" - name: "L-tryptophan:oxygen 2,3-oxidoreductase (decyclizing)" @@ -44341,14 +44341,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.13.11.52" - - bigg.reaction: "TRPO2" - - kegg.pathway: "sce00380" - - kegg.reaction: "R00678" - - metanetx.reaction: "MNXR104944" - - pmid: "12062417" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.13.11.52" + - bigg.reaction: "TRPO2" + - kegg.pathway: "sce00380" + - kegg.reaction: "R00678" + - metanetx.reaction: "MNXR104944" + - pmid: "12062417" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0695" - name: "L-tyrosine N-formyltransferase" @@ -44366,12 +44366,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TYRNFT" - - metanetx.reaction: "MNXR104994" - - pmid: "8706696" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "TYRNFT" + - metanetx.reaction: "MNXR104994" + - pmid: "8706696" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0696" - name: "lactaldehyde dehydrogenase" @@ -44390,13 +44390,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "LCADi" - - kegg.reaction: "R01446" - - metanetx.reaction: "MNXR101018" - - pmid: "3908097" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "LCADi" + - kegg.reaction: "R01446" + - metanetx.reaction: "MNXR101018" + - pmid: "3908097" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0697" - name: "lactoylglutathione lyase" @@ -44412,13 +44412,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.4.1.5" - - bigg.reaction: "LGTHL" - - kegg.pathway: "sce00620" - - kegg.reaction: "R02530" - - metanetx.reaction: "MNXR100355" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.4.1.5" + - bigg.reaction: "LGTHL" + - kegg.pathway: "sce00620" + - kegg.reaction: "R02530" + - metanetx.reaction: "MNXR100355" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0698" - name: "lanosterol synthase" @@ -44433,16 +44433,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.4.99.7" - - bigg.reaction: "LNSTLS" - - kegg.pathway: - - "sce00100" - - "sce01110" - - "sce01130" - - kegg.reaction: "R03199" - - metanetx.reaction: "MNXR101117" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "5.4.99.7" + - bigg.reaction: "LNSTLS" + - kegg.pathway: + - "sce00100" + - "sce01110" + - "sce01130" + - kegg.reaction: "R03199" + - metanetx.reaction: "MNXR101117" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0699" - name: "leucine transaminase" @@ -44459,22 +44459,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.42" - - bigg.reaction: "LEUTA" - - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01090" - - metanetx.reaction: "MNXR96229" - - pmid: "9748245" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.42" + - bigg.reaction: "LEUTA" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01090" + - metanetx.reaction: "MNXR96229" + - pmid: "9748245" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0700" - name: "leucine transaminase" @@ -44491,22 +44491,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.42" - - bigg.reaction: "LEUTAm" - - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01090" - - metanetx.reaction: "MNXR96229" - - pmid: "8798704" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.42" + - bigg.reaction: "LEUTAm" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01090" + - metanetx.reaction: "MNXR96229" + - pmid: "8798704" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0701" - name: "leucyl-tRNA synthetase" @@ -44525,14 +44525,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.4" - - bigg.reaction: "LEUTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03657" - - metanetx.reaction: "MNXR101053" - - pmid: "9742237" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.4" + - bigg.reaction: "LEUTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03657" + - metanetx.reaction: "MNXR101053" + - pmid: "9742237" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0702" - name: "leucyl-tRNA synthetase" @@ -44551,14 +44551,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.4" - - bigg.reaction: "LEUTRSm" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03657" - - metanetx.reaction: "MNXR101053" - - pmid: "1990003" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.4" + - bigg.reaction: "LEUTRSm" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03657" + - metanetx.reaction: "MNXR101053" + - pmid: "1990003" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0703" - name: "leukotriene A4 hydrolase" @@ -44574,10 +44574,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.3.2.6" - - pmid: "11601994" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.3.2.6" + - pmid: "11601994" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0704" - name: "leukotriene A4 hydrolase" @@ -44593,10 +44593,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.3.2.6" - - pmid: "11601994" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.3.2.6" + - pmid: "11601994" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0705" - name: "leukotriene A4 hydrolase" @@ -44612,10 +44612,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.3.2.6" - - pmid: "11601994" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.3.2.6" + - pmid: "11601994" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0706" - name: "leukotriene A4 hydrolase" @@ -44631,10 +44631,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.3.2.6" - - pmid: "11601994" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.3.2.6" + - pmid: "11601994" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0707" - name: "leukotriene A4 hydrolase" @@ -44650,13 +44650,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.3.2.6" - - bigg.reaction: "LTA4H" - - kegg.reaction: "R03057" - - metanetx.reaction: "MNXR107919" - - pmid: "11601994" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.3.2.6" + - bigg.reaction: "LTA4H" + - kegg.reaction: "R03057" + - metanetx.reaction: "MNXR107919" + - pmid: "11601994" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0708" - name: "leukotriene A4 hydrolase" @@ -44672,12 +44672,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.3.2.6" - - kegg.reaction: "R03057" - - metanetx.reaction: "MNXR107919" - - pmid: "11601994" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.3.2.6" + - kegg.reaction: "R03057" + - metanetx.reaction: "MNXR107919" + - pmid: "11601994" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0711" - name: "lysyl-tRNA synthetase" @@ -44696,14 +44696,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.6" - - bigg.reaction: "LYSTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03658" - - metanetx.reaction: "MNXR101264" - - pmid: "2903861" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.6" + - bigg.reaction: "LYSTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03658" + - metanetx.reaction: "MNXR101264" + - pmid: "2903861" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0712" - name: "lysyl-tRNA synthetase" @@ -44722,14 +44722,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.6" - - bigg.reaction: "LYSTRSm" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03658" - - metanetx.reaction: "MNXR101264" - - pmid: "2016746" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.6" + - bigg.reaction: "LYSTRSm" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03658" + - metanetx.reaction: "MNXR101264" + - pmid: "2016746" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0713" - name: "malate dehydrogenase" @@ -44747,21 +44747,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.37" - - bigg.reaction: "MDHm" - - kegg.pathway: - - "sce00020" - - "sce00270" - - "sce00620" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00342" - - metanetx.reaction: "MNXR101439" - - pmid: "9175438" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.37" + - bigg.reaction: "MDHm" + - kegg.pathway: + - "sce00020" + - "sce00270" + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00342" + - metanetx.reaction: "MNXR101439" + - pmid: "9175438" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0714" - name: "malate dehydrogenase, cytoplasmic" @@ -44779,21 +44779,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.37" - - bigg.reaction: "MDH" - - kegg.pathway: - - "sce00020" - - "sce00270" - - "sce00620" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00342" - - metanetx.reaction: "MNXR101439" - - pmid: "11914276" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.37" + - bigg.reaction: "MDH" + - kegg.pathway: + - "sce00020" + - "sce00270" + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00342" + - metanetx.reaction: "MNXR101439" + - pmid: "11914276" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0715" - name: "malate dehydrogenase, peroxisomal" @@ -44811,21 +44811,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.37" - - bigg.reaction: "MDHp" - - kegg.pathway: - - "sce00020" - - "sce00270" - - "sce00620" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00342" - - metanetx.reaction: "MNXR101439" - - pmid: "9175438" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.37" + - bigg.reaction: "MDHp" + - kegg.pathway: + - "sce00020" + - "sce00270" + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00342" + - metanetx.reaction: "MNXR101439" + - pmid: "9175438" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0716" - name: "malate synthase" @@ -44844,17 +44844,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.3.9" - - bigg.reaction: "MALS" - - kegg.pathway: - - "sce00620" - - "sce00630" - - "sce01110" - - "sce01200" - - kegg.reaction: "R00472" - - metanetx.reaction: "MNXR101347" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.3.9" + - bigg.reaction: "MALS" + - kegg.pathway: + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01200" + - kegg.reaction: "R00472" + - metanetx.reaction: "MNXR101347" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0717" - name: "malate synthase" @@ -44873,18 +44873,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.3.9" - - bigg.reaction: "MALSp" - - kegg.pathway: - - "sce00620" - - "sce00630" - - "sce01110" - - "sce01200" - - kegg.reaction: "R00472" - - metanetx.reaction: "MNXR101347" - - pmid: "11846793" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.3.9" + - bigg.reaction: "MALSp" + - kegg.pathway: + - "sce00620" + - "sce00630" + - "sce01110" + - "sce01200" + - kegg.reaction: "R00472" + - metanetx.reaction: "MNXR101347" + - pmid: "11846793" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0718" - name: "malic enzyme (NAD)" @@ -44902,19 +44902,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.38" - - bigg.reaction: "ME1m" - - kegg.pathway: - - "sce00620" - - "sce01200" - - kegg.reaction: "R00214" - - metanetx.reaction: "MNXR101446" - - pmid: - - "9603875" - - "15491864" - - "22851014" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.38" + - bigg.reaction: "ME1m" + - kegg.pathway: + - "sce00620" + - "sce01200" + - kegg.reaction: "R00214" + - metanetx.reaction: "MNXR101446" + - pmid: + - "9603875" + - "15491864" + - "22851014" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0719" - name: "malic enzyme (NADP)" @@ -44932,19 +44932,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.38" - - bigg.reaction: "ME2m" - - kegg.pathway: - - "sce00620" - - "sce01200" - - kegg.reaction: "R00214" - - metanetx.reaction: "MNXR101446" - - pmid: - - "9603875" - - "15491864" - - "22851014" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.38" + - bigg.reaction: "ME2m" + - kegg.pathway: + - "sce00620" + - "sce01200" + - kegg.reaction: "R00214" + - metanetx.reaction: "MNXR101446" + - pmid: + - "9603875" + - "15491864" + - "22851014" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0721" - name: "malonyl-CoA-ACP transacylase" @@ -44961,18 +44961,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.39" - - bigg.reaction: "MCOATAm" - - kegg.pathway: - - "sce00061" - - "sce00190" - - "sce01130" - - "sce01212" - - kegg.reaction: "R01626" - - metanetx.reaction: "MNXR101421" - - pmid: "15387819" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.39" + - bigg.reaction: "MCOATAm" + - kegg.pathway: + - "sce00061" + - "sce00190" + - "sce01130" + - "sce01212" + - kegg.reaction: "R01626" + - metanetx.reaction: "MNXR101421" + - pmid: "15387819" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0722" - name: "mannose-1-phosphate guanylyltransferase" @@ -44990,16 +44990,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.13" - - bigg.reaction: "MAN1PT" - - kegg.pathway: - - "sce00051" - - "sce00520" - - "sce01110" - - kegg.reaction: "R00885" - - metanetx.reaction: "MNXR101375" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.7.13" + - bigg.reaction: "MAN1PT" + - kegg.pathway: + - "sce00051" + - "sce00520" + - "sce01110" + - kegg.reaction: "R00885" + - metanetx.reaction: "MNXR101375" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0723" - name: "mannose-6-phosphate isomerase" @@ -45014,17 +45014,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.1.8" - - bigg.reaction: "MAN6PI" - - kegg.pathway: - - "sce00051" - - "sce00520" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00772" - - metanetx.reaction: "MNXR106679" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "5.3.1.8" + - bigg.reaction: "MAN6PI" + - kegg.pathway: + - "sce00051" + - "sce00520" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00772" + - metanetx.reaction: "MNXR106679" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0724" - name: "methenyltetrahydrifikate cyclohydrolase" @@ -45041,13 +45041,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - - bigg.reaction: "MTHFCm" - - kegg.pathway: "sce00670" - - kegg.reaction: "R01655" - - metanetx.reaction: "MNXR101748" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" + - bigg.reaction: "MTHFCm" + - kegg.pathway: "sce00670" + - kegg.reaction: "R01655" + - metanetx.reaction: "MNXR101748" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0725" - name: "methenyltetrahydrofolate cyclohydrolase" @@ -45064,13 +45064,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - - bigg.reaction: "MTHFC" - - kegg.pathway: "sce00670" - - kegg.reaction: "R01655" - - metanetx.reaction: "MNXR101748" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" + - bigg.reaction: "MTHFC" + - kegg.pathway: "sce00670" + - kegg.reaction: "R01655" + - metanetx.reaction: "MNXR101748" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0726" - name: "methionine adenosyltransferase" @@ -45089,17 +45089,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.6" - - bigg.reaction: "METAT" - - kegg.pathway: - - "sce00270" - - "sce01110" - - "sce01230" - - kegg.reaction: "R00177" - - metanetx.reaction: "MNXR101407" - - pmid: "194884" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.6" + - bigg.reaction: "METAT" + - kegg.pathway: + - "sce00270" + - "sce01110" + - "sce01230" + - kegg.reaction: "R00177" + - metanetx.reaction: "MNXR101407" + - pmid: "194884" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0727" - name: "methionine synthase" @@ -45116,18 +45116,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.14" - - bigg.reaction: "METS" - - kegg.pathway: - - "sce00270" - - "sce00450" - - "sce01110" - - "sce01230" - - kegg.reaction: "R00946" - - metanetx.reaction: "MNXR101481" - - pmid: "16083849" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.14" + - bigg.reaction: "METS" + - kegg.pathway: + - "sce00270" + - "sce00450" + - "sce01110" + - "sce01230" + - kegg.reaction: "R00946" + - metanetx.reaction: "MNXR101481" + - pmid: "16083849" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0728" - name: "methionyl-tRNA formyltransferase" @@ -45145,15 +45145,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.2.9" - - bigg.reaction: "FMETTRSm" - - kegg.pathway: - - "sce00670" - - "sce00970" - - kegg.reaction: "R03940" - - metanetx.reaction: "MNXR99604" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.2.9" + - bigg.reaction: "FMETTRSm" + - kegg.pathway: + - "sce00670" + - "sce00970" + - kegg.reaction: "R03940" + - metanetx.reaction: "MNXR99604" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0729" - name: "methionyl-tRNA synthetase" @@ -45172,16 +45172,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.10" - - bigg.reaction: "METTRS" - - kegg.pathway: - - "sce00450" - - "sce00970" - - kegg.reaction: "R03659" - - metanetx.reaction: "MNXR101488" - - pmid: "6304034" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.10" + - bigg.reaction: "METTRS" + - kegg.pathway: + - "sce00450" + - "sce00970" + - kegg.reaction: "R03659" + - metanetx.reaction: "MNXR101488" + - pmid: "6304034" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0730" - name: "methionyl-tRNA synthetase" @@ -45200,16 +45200,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.10" - - bigg.reaction: "METTRSm" - - kegg.pathway: - - "sce00450" - - "sce00970" - - kegg.reaction: "R03659" - - metanetx.reaction: "MNXR101488" - - pmid: "2645139" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.10" + - bigg.reaction: "METTRSm" + - kegg.pathway: + - "sce00450" + - "sce00970" + - kegg.reaction: "R03659" + - metanetx.reaction: "MNXR101488" + - pmid: "2645139" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0731" - name: "methylenetetrahydrofolate dehydrogenase (NAD)" @@ -45226,13 +45226,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.15" - - bigg.reaction: "MTHFD2i" - - kegg.pathway: "sce00670" - - kegg.reaction: "R01218" - - metanetx.reaction: "MNXR101750" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.5.1.15" + - bigg.reaction: "MTHFD2i" + - kegg.pathway: "sce00670" + - kegg.reaction: "R01218" + - metanetx.reaction: "MNXR101750" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0732" - name: "methylenetetrahydrofolate dehydrogenase (NADP)" @@ -45249,13 +45249,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - - bigg.reaction: "MTHFD" - - kegg.pathway: "sce00670" - - kegg.reaction: "R01220" - - metanetx.reaction: "MNXR101749" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" + - bigg.reaction: "MTHFD" + - kegg.pathway: "sce00670" + - kegg.reaction: "R01220" + - metanetx.reaction: "MNXR101749" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0733" - name: "methylenetetrahydrofolate dehydrogenase (NADP)" @@ -45272,17 +45272,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - - bigg.reaction: "MTHFDm" - - kegg.pathway: "sce00670" - - kegg.reaction: "R01220" - - metanetx.reaction: "MNXR101749" - - pmid: - - "10871621" - - "1916088" - - "8852837" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" + - bigg.reaction: "MTHFDm" + - kegg.pathway: "sce00670" + - kegg.reaction: "R01220" + - metanetx.reaction: "MNXR101749" + - pmid: + - "10871621" + - "1916088" + - "8852837" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0734" - name: "methylisocitrate lyase" @@ -45298,17 +45298,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.3.30" - - bigg.reaction: "MCITL2m" - - kegg.pathway: - - "sce00630" - - "sce01110" - - "sce01200" - - kegg.reaction: "R00409" - - metanetx.reaction: "MNXR101415" - - pmid: "16332871" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.3.30" + - bigg.reaction: "MCITL2m" + - kegg.pathway: + - "sce00630" + - "sce01110" + - "sce01200" + - kegg.reaction: "R00409" + - metanetx.reaction: "MNXR101415" + - pmid: "16332871" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0735" - name: "mevalonate kinase (atp)" @@ -45326,17 +45326,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.36" - - bigg.reaction: "MEVK1" - - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - "sce04146" - - kegg.reaction: "R02245" - - metanetx.reaction: "MNXR101495" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.36" + - bigg.reaction: "MEVK1" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - "sce04146" + - kegg.reaction: "R02245" + - metanetx.reaction: "MNXR101495" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0736" - name: "mevalonate kinase (ctp)" @@ -45354,16 +45354,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.36" - - bigg.reaction: "MEVK2" - - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - "sce04146" - - metanetx.reaction: "MNXR101496" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.36" + - bigg.reaction: "MEVK2" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - "sce04146" + - metanetx.reaction: "MNXR101496" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0737" - name: "mevalonate kinase (gtp)" @@ -45381,16 +45381,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.36" - - bigg.reaction: "MEVK3" - - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - "sce04146" - - metanetx.reaction: "MNXR101497" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.36" + - bigg.reaction: "MEVK3" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - "sce04146" + - metanetx.reaction: "MNXR101497" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0738" - name: "mevalonate kinase (UTP)" @@ -45408,16 +45408,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.36" - - bigg.reaction: "MEVK4" - - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - "sce04146" - - metanetx.reaction: "MNXR101498" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.36" + - bigg.reaction: "MEVK4" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - "sce04146" + - metanetx.reaction: "MNXR101498" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0739" - name: "mevalonate pyrophoshate decarboxylase" @@ -45436,16 +45436,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.33" - - bigg.reaction: "DPMVD" - - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01121" - - metanetx.reaction: "MNXR97776" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.1.33" + - bigg.reaction: "DPMVD" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01121" + - metanetx.reaction: "MNXR97776" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0747" - name: "MIPC synthase" @@ -45463,13 +45463,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - metanetx.reaction: "MNXR126697" - - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-; 2.4.-.-" + - metanetx.reaction: "MNXR126697" + - pmid: + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0748" - name: "MIPC synthase" @@ -45487,12 +45487,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-; 2.4.-.-" + - pmid: + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0749" - name: "MIPC synthase" @@ -45510,12 +45510,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-; 2.4.-.-" + - pmid: + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0750" - name: "MIPC synthase" @@ -45533,12 +45533,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-; 2.4.-.-" + - pmid: + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0751" - name: "MIPC synthase" @@ -45556,12 +45556,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-; 2.4.-.-" + - pmid: + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0752" - name: "MIPC synthase" @@ -45579,12 +45579,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-; 2.4.-.-" + - pmid: + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0753" - name: "MIPC synthase" @@ -45602,12 +45602,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-; 2.4.-.-" + - pmid: + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0754" - name: "MIPC synthase" @@ -45625,12 +45625,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-; 2.4.-.-" + - pmid: + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0755" - name: "MIPC synthase" @@ -45648,12 +45648,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-; 2.4.-.-" + - pmid: + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0756" - name: "MIPC synthase" @@ -45671,12 +45671,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: - - "12954640" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-; 2.4.-.-" + - pmid: + - "12954640" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0757" - name: "myo-inositol 1-phosphatase" @@ -45693,16 +45693,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.25" - - bigg.reaction: "MI1PP" - - kegg.pathway: - - "sce00562" - - "sce04070" - - kegg.reaction: "R01185" - - metanetx.reaction: "MNXR101570" - - pmid: "10844654" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.25" + - bigg.reaction: "MI1PP" + - kegg.pathway: + - "sce00562" + - "sce04070" + - kegg.reaction: "R01185" + - metanetx.reaction: "MNXR101570" + - pmid: "10844654" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0758" - name: "myo-inositol-1-phosphate synthase" @@ -45717,14 +45717,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.5.1.4" - - bigg.reaction: "MI1PS" - - kegg.pathway: - - "sce00562" - - "sce01130" - - metanetx.reaction: "MNXR101571" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "5.5.1.4" + - bigg.reaction: "MI1PS" + - kegg.pathway: + - "sce00562" + - "sce01130" + - metanetx.reaction: "MNXR101571" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0759" - name: "N-acetyl-g-glutamyl-phosphate reductase" @@ -45743,18 +45743,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.38; 2.7.2.8" - - bigg.reaction: "AGPRim" - - kegg.pathway: - - "sce00220" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R03443" - - metanetx.reaction: "MNXR95530" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.38; 2.7.2.8" + - bigg.reaction: "AGPRim" + - kegg.pathway: + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R03443" + - metanetx.reaction: "MNXR95530" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0760" - name: "N-acetylglucosamine-6-phosphate synthase" @@ -45772,14 +45772,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.4" - - bigg.reaction: "ACGAM6PS" - - kegg.pathway: "sce00520" - - kegg.reaction: "R02058" - - metanetx.reaction: "MNXR95248" - - pmid: "9867860" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.4" + - bigg.reaction: "ACGAM6PS" + - kegg.pathway: "sce00520" + - kegg.reaction: "R02058" + - metanetx.reaction: "MNXR95248" + - pmid: "9867860" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0761" - name: "N-acteylglutamate synthase" @@ -45797,18 +45797,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.1; 2.3.1.35" - - bigg.reaction: "ACGSm" - - kegg.pathway: - - "sce00220" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00259" - - metanetx.reaction: "MNXR95259" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.1; 2.3.1.35" + - bigg.reaction: "ACGSm" + - kegg.pathway: + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00259" + - metanetx.reaction: "MNXR95259" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0762" - name: "N-formyl-L-kynurenine amidohydrolase" @@ -45826,16 +45826,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.9" - - bigg.reaction: "FKYNH" - - kegg.pathway: - - "sce00380" - - "sce00630" - - kegg.reaction: "R01959" - - metanetx.reaction: "MNXR99596" - - pmid: "18205391" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.9" + - bigg.reaction: "FKYNH" + - kegg.pathway: + - "sce00380" + - "sce00630" + - kegg.reaction: "R01959" + - metanetx.reaction: "MNXR99596" + - pmid: "18205391" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0763" - name: "N-formyltyrosine oxidase" @@ -45853,14 +45853,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.14.-" - - kegg.pathway: - - "sce00071" - - "sce00380" - - metanetx.reaction: "MNXR101947" - - pmid: "8706696" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.14.14.-" + - kegg.pathway: + - "sce00071" + - "sce00380" + - metanetx.reaction: "MNXR101947" + - pmid: "8706696" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0764" - name: "NAD diphosphatase" @@ -45878,15 +45878,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.22" - - bigg.reaction: "NADDPp" - - kegg.pathway: - - "sce00760" - - "sce04146" - - kegg.reaction: "R00103" - - metanetx.reaction: "MNXR101861" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.22" + - bigg.reaction: "NADDPp" + - kegg.pathway: + - "sce00760" + - "sce04146" + - kegg.reaction: "R00103" + - metanetx.reaction: "MNXR101861" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0765" - name: "NAD kinase" @@ -45904,14 +45904,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.23; 2.7.1.86" - - bigg.reaction: "NADK" - - kegg.pathway: "sce00760" - - kegg.reaction: "R00104" - - metanetx.reaction: "MNXR101882" - - pmid: "15978040" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.23; 2.7.1.86" + - bigg.reaction: "NADK" + - kegg.pathway: "sce00760" + - kegg.reaction: "R00104" + - metanetx.reaction: "MNXR101882" + - pmid: "15978040" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0766" - name: "NAD kinase" @@ -45929,14 +45929,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.23; 2.7.1.86" - - bigg.reaction: "NADKm" - - kegg.pathway: "sce00760" - - kegg.reaction: "R00104" - - metanetx.reaction: "MNXR101882" - - pmid: "15978040" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.23; 2.7.1.86" + - bigg.reaction: "NADKm" + - kegg.pathway: "sce00760" + - kegg.reaction: "R00104" + - metanetx.reaction: "MNXR101882" + - pmid: "15978040" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0767" - name: "NAD nucleosidase nuclear" @@ -45954,15 +45954,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: - - "sce00760" - - "sce04213" - - kegg.reaction: "R00102" - - metanetx.reaction: "MNXR101888" - - pmid: "17482543" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: + - "sce00760" + - "sce04213" + - kegg.reaction: "R00102" + - metanetx.reaction: "MNXR101888" + - pmid: "17482543" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0768" - name: "NAD synthase" @@ -45984,14 +45984,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.5.1" - - bigg.reaction: "NADS2" - - kegg.pathway: "sce00760" - - kegg.reaction: "R00257" - - metanetx.reaction: "MNXR97678" - - pmid: "12771147" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.3.5.1" + - bigg.reaction: "NADS2" + - kegg.pathway: "sce00760" + - kegg.reaction: "R00257" + - metanetx.reaction: "MNXR97678" + - pmid: "12771147" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0769" - name: "NAD synthase" @@ -46013,13 +46013,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.5.1" - - kegg.pathway: "sce00760" - - kegg.reaction: "R00257" - - metanetx.reaction: "MNXR97678" - - pmid: "12771147" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.3.5.1" + - kegg.pathway: "sce00760" + - kegg.reaction: "R00257" + - metanetx.reaction: "MNXR97678" + - pmid: "12771147" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0770" - name: "NADH dehydrogenase, cytosolic/mitochondrial" @@ -46037,12 +46037,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.6.5.9" - - bigg.reaction: "NADH2_u6cm" - - metanetx.reaction: "MNXR101868" - - pmid: "9733747" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.6.5.9" + - bigg.reaction: "NADH2_u6cm" + - metanetx.reaction: "MNXR101868" + - pmid: "9733747" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0771" - name: "NADH kinase" @@ -46060,13 +46060,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.23; 2.7.1.86" - - kegg.pathway: "sce00760" - - kegg.reaction: "R00105" - - metanetx.reaction: "MNXR106390" - - pmid: "15978040" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.23; 2.7.1.86" + - kegg.pathway: "sce00760" + - kegg.reaction: "R00105" + - metanetx.reaction: "MNXR106390" + - pmid: "15978040" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0772" - name: "NADH kinase mitochondrial" @@ -46084,13 +46084,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.23; 2.7.1.86" - - kegg.pathway: "sce00760" - - kegg.reaction: "R00105" - - metanetx.reaction: "MNXR106390" - - pmid: "15978040" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.23; 2.7.1.86" + - kegg.pathway: "sce00760" + - kegg.reaction: "R00105" + - metanetx.reaction: "MNXR106390" + - pmid: "15978040" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0773" - name: "NADH:ubiquinone oxidoreductase" @@ -46108,11 +46108,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.6.5.9" - - bigg.reaction: "NADH2_u6m" - - metanetx.reaction: "MNXR101869" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.6.5.9" + - bigg.reaction: "NADH2_u6m" + - metanetx.reaction: "MNXR101869" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0774" - name: "NAPRtase" @@ -46133,13 +46133,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.4.21" - - bigg.reaction: "NAPRT" - - kegg.pathway: "sce00760" - - kegg.reaction: "R01724" - - metanetx.reaction: "MNXR101909" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.4.21" + - bigg.reaction: "NAPRT" + - kegg.pathway: "sce00760" + - kegg.reaction: "R01724" + - metanetx.reaction: "MNXR101909" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0775" - name: "NAPRtase" @@ -46160,13 +46160,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.4.21" - - bigg.reaction: "NAPRTm" - - kegg.pathway: "sce00760" - - kegg.reaction: "R01724" - - metanetx.reaction: "MNXR101909" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.4.21" + - bigg.reaction: "NAPRTm" + - kegg.pathway: "sce00760" + - kegg.reaction: "R01724" + - metanetx.reaction: "MNXR101909" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0781" - name: "nicotinamidase" @@ -46183,15 +46183,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.19" - - bigg.reaction: "NNAM" - - kegg.pathway: - - "sce00760" - - "sce04213" - - kegg.reaction: "R01268" - - metanetx.reaction: "MNXR101977" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.1.19" + - bigg.reaction: "NNAM" + - kegg.pathway: + - "sce00760" + - "sce04213" + - kegg.reaction: "R01268" + - metanetx.reaction: "MNXR101977" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0782" - name: "nicotinamide N-methyltransferase" @@ -46208,13 +46208,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.-" - - bigg.reaction: "NNMT" - - kegg.reaction: "R01269" - - metanetx.reaction: "MNXR101981" - - pmid: "12736687" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.-" + - bigg.reaction: "NNMT" + - kegg.reaction: "R01269" + - metanetx.reaction: "MNXR101981" + - pmid: "12736687" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0783" - name: "nicotinamide-nucleotide adenylyltransferase" @@ -46232,14 +46232,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.1; 2.7.7.18" - - bigg.reaction: "NMNAT" - - kegg.pathway: "sce00760" - - kegg.reaction: "R00137" - - metanetx.reaction: "MNXR95841" - - pmid: "15078171" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.1; 2.7.7.18" + - bigg.reaction: "NMNAT" + - kegg.pathway: "sce00760" + - kegg.reaction: "R00137" + - metanetx.reaction: "MNXR95841" + - pmid: "15078171" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0784" - name: "nicotinamide-nucleotide adenylyltransferase" @@ -46257,14 +46257,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.1; 2.7.7.18" - - bigg.reaction: "NMNATn" - - kegg.pathway: "sce00760" - - kegg.reaction: "R00137" - - metanetx.reaction: "MNXR95841" - - pmid: "15078171" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.1; 2.7.7.18" + - bigg.reaction: "NMNATn" + - kegg.pathway: "sce00760" + - kegg.reaction: "R00137" + - metanetx.reaction: "MNXR95841" + - pmid: "15078171" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0785" - name: "nicotinate-nucleotide adenylyltransferase" @@ -46282,14 +46282,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.1; 2.7.7.18" - - bigg.reaction: "NNATr" - - kegg.pathway: "sce00760" - - kegg.reaction: "R03005" - - metanetx.reaction: "MNXR101978" - - pmid: "15078171" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.1; 2.7.7.18" + - bigg.reaction: "NNATr" + - kegg.pathway: "sce00760" + - kegg.reaction: "R03005" + - metanetx.reaction: "MNXR101978" + - pmid: "15078171" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0786" - name: "nicotinate-nucleotide diphosphorylase (carboxylating)" @@ -46308,13 +46308,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.19" - - bigg.reaction: "NNDPR" - - kegg.pathway: "sce00760" - - kegg.reaction: "R03348" - - metanetx.reaction: "MNXR101980" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.2.19" + - bigg.reaction: "NNDPR" + - kegg.pathway: "sce00760" + - kegg.reaction: "R03348" + - metanetx.reaction: "MNXR101980" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0787" - name: "nicotinate-nucleotide diphosphorylase (carboxylating)" @@ -46333,13 +46333,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.19" - - bigg.reaction: "NNDPRm" - - kegg.pathway: "sce00760" - - kegg.reaction: "R03348" - - metanetx.reaction: "MNXR101980" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.2.19" + - bigg.reaction: "NNDPRm" + - kegg.pathway: "sce00760" + - kegg.reaction: "R03348" + - metanetx.reaction: "MNXR101980" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0788" - name: "nucleoside diphosphatase" @@ -46357,16 +46357,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.5" - - bigg.reaction: "NDP1" - - kegg.pathway: - - "sce00230" - - "sce00240" - - kegg.reaction: "R00122" - - metanetx.reaction: "MNXR96129" - - pmid: "10409709" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.6.1.5" + - bigg.reaction: "NDP1" + - kegg.pathway: + - "sce00230" + - "sce00240" + - kegg.reaction: "R00122" + - metanetx.reaction: "MNXR96129" + - pmid: "10409709" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0789" - name: "nucleoside diphosphatase" @@ -46384,16 +46384,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.5" - - bigg.reaction: "NDP3" - - kegg.pathway: - - "sce00230" - - "sce00240" - - kegg.reaction: "R00328" - - metanetx.reaction: "MNXR101928" - - pmid: "10409709" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.6.1.5" + - bigg.reaction: "NDP3" + - kegg.pathway: + - "sce00230" + - "sce00240" + - kegg.reaction: "R00328" + - metanetx.reaction: "MNXR101928" + - pmid: "10409709" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0790" - name: "nucleoside diphosphatase" @@ -46411,16 +46411,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.5" - - bigg.reaction: "NDP7" - - kegg.pathway: - - "sce00230" - - "sce00240" - - kegg.reaction: "R00155" - - metanetx.reaction: "MNXR101931" - - pmid: "10409709" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.6.1.5" + - bigg.reaction: "NDP7" + - kegg.pathway: + - "sce00230" + - "sce00240" + - kegg.reaction: "R00155" + - metanetx.reaction: "MNXR101931" + - pmid: "10409709" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0791" - name: "nucleoside diphosphatase" @@ -46438,12 +46438,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.42" - - bigg.reaction: "NDP7g" - - kegg.reaction: "R00155" - - metanetx.reaction: "MNXR101931" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.42" + - bigg.reaction: "NDP7g" + - kegg.reaction: "R00155" + - metanetx.reaction: "MNXR101931" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0792" - name: "nucleoside diphosphatase" @@ -46461,15 +46461,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.5" - - bigg.reaction: "CDPPH" - - kegg.pathway: - - "sce00230" - - "sce00240" - - kegg.reaction: "R00514" - - metanetx.reaction: "MNXR96559" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.5" + - bigg.reaction: "CDPPH" + - kegg.pathway: + - "sce00230" + - "sce00240" + - kegg.reaction: "R00514" + - metanetx.reaction: "MNXR96559" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0793" - name: "nucleoside diphosphatase" @@ -46487,15 +46487,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.5" - - bigg.reaction: "IDPA" - - kegg.pathway: - - "sce00230" - - "sce00240" - - kegg.reaction: "R00961" - - metanetx.reaction: "MNXR100807" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.5" + - bigg.reaction: "IDPA" + - kegg.pathway: + - "sce00230" + - "sce00240" + - kegg.reaction: "R00961" + - metanetx.reaction: "MNXR100807" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0795" - name: "nucleoside diphosphate kinase" @@ -46512,17 +46512,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.6" - - bigg.reaction: "NDPK3" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00570" - - metanetx.reaction: "MNXR101936" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK3" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00570" + - metanetx.reaction: "MNXR101936" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0796" - name: "nucleoside diphosphate kinase" @@ -46539,17 +46539,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.6" - - bigg.reaction: "NDPK8" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01137" - - metanetx.reaction: "MNXR101940" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK8" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01137" + - metanetx.reaction: "MNXR101940" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0797" - name: "nucleoside diphosphate kinase" @@ -46566,17 +46566,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.6" - - bigg.reaction: "NDPK7" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" - - kegg.reaction: "R02326" - - metanetx.reaction: "MNXR101939" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK7" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" + - kegg.reaction: "R02326" + - metanetx.reaction: "MNXR101939" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0798" - name: "nucleoside diphosphate kinase" @@ -46593,17 +46593,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.6" - - bigg.reaction: "NDPK5" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01857" - - metanetx.reaction: "MNXR96118" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK5" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01857" + - metanetx.reaction: "MNXR96118" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0799" - name: "nucleoside diphosphate kinase" @@ -46620,17 +46620,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.6" - - bigg.reaction: "NDPK4" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" - - kegg.reaction: "R02093" - - metanetx.reaction: "MNXR101937" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK4" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" + - kegg.reaction: "R02093" + - metanetx.reaction: "MNXR101937" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0800" - name: "nucleoside diphosphate kinase" @@ -46647,17 +46647,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.6" - - bigg.reaction: "NDPK1" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00330" - - metanetx.reaction: "MNXR96119" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK1" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00330" + - metanetx.reaction: "MNXR96119" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0801" - name: "nucleoside diphosphate kinase" @@ -46674,17 +46674,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.6" - - bigg.reaction: "NDPK9" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00722" - - metanetx.reaction: "MNXR101941" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK9" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00722" + - metanetx.reaction: "MNXR101941" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0802" - name: "nucleoside diphosphate kinase" @@ -46701,17 +46701,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.6" - - bigg.reaction: "NDPK10" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" - - kegg.reaction: "R03530" - - metanetx.reaction: "MNXR101934" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK10" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" + - kegg.reaction: "R03530" + - metanetx.reaction: "MNXR101934" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0803" - name: "nucleoside diphosphate kinase" @@ -46728,17 +46728,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.6" - - bigg.reaction: "NDPK6" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" - - kegg.reaction: "R02331" - - metanetx.reaction: "MNXR101938" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK6" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" + - kegg.reaction: "R02331" + - metanetx.reaction: "MNXR101938" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0804" - name: "nucleoside triphosphatase" @@ -46756,16 +46756,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.5" - - bigg.reaction: "NTP3" - - kegg.pathway: - - "sce00230" - - "sce00240" - - kegg.reaction: "R00335" - - metanetx.reaction: "MNXR102043" - - pmid: "10409709" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.6.1.5" + - bigg.reaction: "NTP3" + - kegg.pathway: + - "sce00230" + - "sce00240" + - kegg.reaction: "R00335" + - metanetx.reaction: "MNXR102043" + - pmid: "10409709" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0805" - name: "nucleoside triphosphatase" @@ -46783,16 +46783,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.5" - - bigg.reaction: "NTP7" - - kegg.pathway: - - "sce00230" - - "sce00240" - - kegg.reaction: "R00159" - - metanetx.reaction: "MNXR101933" - - pmid: "10409709" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.6.1.5" + - bigg.reaction: "NTP7" + - kegg.pathway: + - "sce00230" + - "sce00240" + - kegg.reaction: "R00159" + - metanetx.reaction: "MNXR101933" + - pmid: "10409709" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0806" - name: "nucleoside triphosphatase" @@ -46810,15 +46810,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.5" - - bigg.reaction: "NTP5" - - kegg.pathway: - - "sce00230" - - "sce00240" - - kegg.reaction: "R00569" - - metanetx.reaction: "MNXR102045" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.5" + - bigg.reaction: "NTP5" + - kegg.pathway: + - "sce00230" + - "sce00240" + - kegg.reaction: "R00569" + - metanetx.reaction: "MNXR102045" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0807" - name: "nucleoside triphosphatase" @@ -46836,15 +46836,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.5" - - bigg.reaction: "NTP10" - - kegg.pathway: - - "sce00230" - - "sce00240" - - kegg.reaction: "R00719" - - metanetx.reaction: "MNXR100892" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.5" + - bigg.reaction: "NTP10" + - kegg.pathway: + - "sce00230" + - "sce00240" + - kegg.reaction: "R00719" + - metanetx.reaction: "MNXR100892" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0810" - name: "nucleoside-diphosphatase (GDP), Golgi" @@ -46862,12 +46862,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.42" - - bigg.reaction: "NDP3g" - - kegg.reaction: "R00328" - - metanetx.reaction: "MNXR101928" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.42" + - bigg.reaction: "NDP3g" + - kegg.reaction: "R00328" + - metanetx.reaction: "MNXR101928" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0811" - name: "nucleoside-diphosphate kinase (ATP:UDP)" @@ -46884,17 +46884,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.6" - - bigg.reaction: "NDPK2" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00156" - - metanetx.reaction: "MNXR101935" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.6" + - bigg.reaction: "NDPK2" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00156" + - metanetx.reaction: "MNXR101935" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0812" - name: "O-acetylhomoserine (thiol)-lyase" @@ -46912,20 +46912,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.47; 2.5.1.49" - - bigg.reaction: "AHSERL" - - kegg.pathway: - - "sce00270" - - "sce00920" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R00651" - - metanetx.reaction: "MNXR95634" - - pmid: "15042590" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.47; 2.5.1.49" + - bigg.reaction: "AHSERL" + - kegg.pathway: + - "sce00270" + - "sce00920" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R00651" + - metanetx.reaction: "MNXR95634" + - pmid: "15042590" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0813" - name: "O-acetylhomoserine (thiol)-lyase" @@ -46942,20 +46942,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.47; 2.5.1.49" - - bigg.reaction: "AHSERL2" - - kegg.pathway: - - "sce00270" - - "sce00920" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R01287" - - metanetx.reaction: "MNXR95631" - - pmid: "15042590" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.47; 2.5.1.49" + - bigg.reaction: "AHSERL2" + - kegg.pathway: + - "sce00270" + - "sce00920" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R01287" + - metanetx.reaction: "MNXR95631" + - pmid: "15042590" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0815" - name: "O-succinylhomoserine lyase (L-cysteine)" @@ -46973,19 +46973,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.4.1.1" - - bigg.reaction: "SHSL1" - - kegg.pathway: - - "sce00260" - - "sce00270" - - "sce00450" - - "sce01130" - - "sce01230" - - kegg.reaction: "R03260" - - metanetx.reaction: "MNXR104380" - - pmid: "8511969" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.4.1.1" + - bigg.reaction: "SHSL1" + - kegg.pathway: + - "sce00260" + - "sce00270" + - "sce00450" + - "sce01130" + - "sce01230" + - kegg.reaction: "R03260" + - metanetx.reaction: "MNXR104380" + - pmid: "8511969" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0816" - name: "ornithine carbamoyltransferase" @@ -47003,17 +47003,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.3.3" - - bigg.reaction: "OCBT" - - kegg.pathway: - - "sce00220" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01398" - - metanetx.reaction: "MNXR102137" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.3.3" + - bigg.reaction: "OCBT" + - kegg.pathway: + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01398" + - metanetx.reaction: "MNXR102137" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0817" - name: "ornithine decarboxylase" @@ -47030,17 +47030,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.17" - - bigg.reaction: "ORNDC" - - kegg.pathway: - - "sce00330" - - "sce00480" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00670" - - metanetx.reaction: "MNXR102209" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.1.17" + - bigg.reaction: "ORNDC" + - kegg.pathway: + - "sce00330" + - "sce00480" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00670" + - metanetx.reaction: "MNXR102209" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0818" - name: "ornithine transacetylase" @@ -47057,18 +47057,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.1; 2.3.1.35" - - bigg.reaction: "ORNTACim" - - kegg.pathway: - - "sce00220" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R02282" - - metanetx.reaction: "MNXR102221" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.1; 2.3.1.35" + - bigg.reaction: "ORNTACim" + - kegg.pathway: + - "sce00220" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R02282" + - metanetx.reaction: "MNXR102221" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0819" - name: "ornithine transaminase" @@ -47085,16 +47085,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.13" - - bigg.reaction: "ORNTA" - - kegg.pathway: - - "sce00330" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00667" - - metanetx.reaction: "MNXR102220" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.13" + - bigg.reaction: "ORNTA" + - kegg.pathway: + - "sce00330" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00667" + - metanetx.reaction: "MNXR102220" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0820" - name: "orotate phosphoribosyltransferase" @@ -47111,13 +47111,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.10" - - bigg.reaction: "ORPT" - - kegg.pathway: "sce00240" - - kegg.reaction: "R01870" - - metanetx.reaction: "MNXR102231" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.2.10" + - bigg.reaction: "ORPT" + - kegg.pathway: "sce00240" + - kegg.reaction: "R01870" + - metanetx.reaction: "MNXR102231" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0821" - name: "orotidine-5'-phosphate decarboxylase" @@ -47134,13 +47134,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.23" - - bigg.reaction: "OMPDC" - - kegg.pathway: "sce00240" - - kegg.reaction: "R00965" - - metanetx.reaction: "MNXR102190" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.1.23" + - bigg.reaction: "OMPDC" + - kegg.pathway: "sce00240" + - kegg.reaction: "R00965" + - metanetx.reaction: "MNXR102190" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0831" - name: "oxoglutarate dehydrogenase (dihydrolipoamide S-succinyltransferase)" @@ -47157,26 +47157,26 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.4.2; 1.8.1.4; 2.3.1.61" - - bigg.reaction: "AKGDbm" - - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00310" - - "sce00380" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R02570" - - metanetx.reaction: "MNXR95656" - - pmid: "2178788" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.4.2; 1.8.1.4; 2.3.1.61" + - bigg.reaction: "AKGDbm" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R02570" + - metanetx.reaction: "MNXR95656" + - pmid: "2178788" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0832" - name: "oxoglutarate dehydrogenase (lipoamide)" @@ -47194,26 +47194,26 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.4.2; 1.8.1.4; 2.3.1.61" - - bigg.reaction: "AKGDam" - - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00310" - - "sce00380" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R01700" - - metanetx.reaction: "MNXR95657" - - pmid: "10224250" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.4.2; 1.8.1.4; 2.3.1.61" + - bigg.reaction: "AKGDam" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00310" + - "sce00380" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R01700" + - metanetx.reaction: "MNXR95657" + - pmid: "10224250" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0841" - name: "pantetheine-phosphate adenylyltransferase" @@ -47231,14 +47231,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.3" - - bigg.reaction: "PTPATi" - - kegg.pathway: "sce00770" - - kegg.reaction: "R03035" - - metanetx.reaction: "MNXR95892" - - pmid: "19266201" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.3" + - bigg.reaction: "PTPATi" + - kegg.pathway: "sce00770" + - kegg.reaction: "R03035" + - metanetx.reaction: "MNXR95892" + - pmid: "19266201" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0842" - name: "pantothenate kinase" @@ -47256,13 +47256,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.33" - - bigg.reaction: "PNTK" - - kegg.pathway: "sce00770" - - kegg.reaction: "R03018" - - metanetx.reaction: "MNXR103050" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.33" + - bigg.reaction: "PNTK" + - kegg.pathway: "sce00770" + - kegg.reaction: "R03018" + - metanetx.reaction: "MNXR103050" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0843" - name: "pantothenate synthase" @@ -47282,16 +47282,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.2.1" - - bigg.reaction: "PANTS" - - kegg.pathway: - - "sce00410" - - "sce00770" - - "sce01110" - - kegg.reaction: "R02473" - - metanetx.reaction: "MNXR102345" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.2.1" + - bigg.reaction: "PANTS" + - kegg.pathway: + - "sce00410" + - "sce00770" + - "sce01110" + - kegg.reaction: "R02473" + - metanetx.reaction: "MNXR102345" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0844" - name: "peroxisomal acyl-CoA thioesterase" @@ -47309,15 +47309,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.2" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - metanetx.reaction: "MNXR122908" - - pmid: "10092594" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.2.2" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - metanetx.reaction: "MNXR122908" + - pmid: "10092594" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0845" - name: "peroxisomal acyl-CoA thioesterase" @@ -47335,16 +47335,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.2" - - bigg.reaction: "PTE11x" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - metanetx.reaction: "MNXR122907" - - pmid: "10092594" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.2.2" + - bigg.reaction: "PTE11x" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - metanetx.reaction: "MNXR122907" + - pmid: "10092594" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0847" - name: "peroxisomal acyl-CoA thioesterase" @@ -47362,17 +47362,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.2" - - bigg.reaction: "PTE2x" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - kegg.reaction: "R01274" - - metanetx.reaction: "MNXR99131" - - pmid: "10092594" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.2.2" + - bigg.reaction: "PTE2x" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - kegg.reaction: "R01274" + - metanetx.reaction: "MNXR99131" + - pmid: "10092594" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0848" - name: "peroxisomal acyl-CoA thioesterase" @@ -47390,16 +47390,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.2" - - bigg.reaction: "PTE7x" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - metanetx.reaction: "MNXR122906" - - pmid: "10092594" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.2.2" + - bigg.reaction: "PTE7x" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - metanetx.reaction: "MNXR122906" + - pmid: "10092594" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0849" - name: "peroxisomal acyl-CoA thioesterase" @@ -47417,17 +47417,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.2" - - bigg.reaction: "PTE8x" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - kegg.reaction: "R08174" - - metanetx.reaction: "MNXR99133" - - pmid: "10092594" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.2.2" + - bigg.reaction: "PTE8x" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - kegg.reaction: "R08174" + - metanetx.reaction: "MNXR99133" + - pmid: "10092594" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0850" - name: "peroxisomal acyl-CoA thioesterase" @@ -47445,16 +47445,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.2" - - bigg.reaction: "PTE9x" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - metanetx.reaction: "MNXR99140" - - pmid: "10092594" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.2.2" + - bigg.reaction: "PTE9x" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - metanetx.reaction: "MNXR99140" + - pmid: "10092594" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0851" - name: "phenylalanine transaminase" @@ -47471,27 +47471,27 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.39; 2.6.1.57" - - bigg.reaction: "PHETA1" - - kegg.pathway: - - "sce00130" - - "sce00270" - - "sce00300" - - "sce00350" - - "sce00360" - - "sce00380" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00694" - - metanetx.reaction: "MNXR126234" - - pmid: - - "9491082" - - "9491083" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.39; 2.6.1.57" + - bigg.reaction: "PHETA1" + - kegg.pathway: + - "sce00130" + - "sce00270" + - "sce00300" + - "sce00350" + - "sce00360" + - "sce00380" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00694" + - metanetx.reaction: "MNXR126234" + - pmid: + - "9491082" + - "9491083" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0852" - name: "phenylalanyl-tRNA synthetase" @@ -47510,14 +47510,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.20" - - bigg.reaction: "PHETRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03660" - - metanetx.reaction: "MNXR102634" - - pmid: "3049607" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.20" + - bigg.reaction: "PHETRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03660" + - metanetx.reaction: "MNXR102634" + - pmid: "3049607" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0853" - name: "phenylalanyl-tRNA synthetase" @@ -47536,14 +47536,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.20" - - bigg.reaction: "PHETRSm" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03660" - - metanetx.reaction: "MNXR102634" - - pmid: "3029120" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.20" + - bigg.reaction: "PHETRSm" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03660" + - metanetx.reaction: "MNXR102634" + - pmid: "3029120" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0854" - name: "phenylpyruvate decarboxylase" @@ -47560,14 +47560,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.43" - - bigg.reaction: "PPYRDC" - - kegg.pathway: "sce00360" - - kegg.reaction: "R01377" - - metanetx.reaction: "MNXR125761" - - pmid: "12902239" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.43" + - bigg.reaction: "PPYRDC" + - kegg.pathway: "sce00360" + - kegg.reaction: "R01377" + - metanetx.reaction: "MNXR125761" + - pmid: "12902239" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0855" - name: "phopshoribosylaminoimidazole synthetase" @@ -47586,16 +47586,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.3.1; 6.3.4.13" - - bigg.reaction: "PRAIS" - - kegg.pathway: - - "sce00230" - - "sce01110" - - "sce01130" - - kegg.reaction: "R04208" - - metanetx.reaction: "MNXR139261" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.3.1; 6.3.4.13" + - bigg.reaction: "PRAIS" + - kegg.pathway: + - "sce00230" + - "sce01110" + - "sce01130" + - kegg.reaction: "R04208" + - metanetx.reaction: "MNXR139261" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0882" - name: "phosphoacetylglucosamine mutase" @@ -47610,15 +47610,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.4.2.3" - - kegg.pathway: - - "sce00520" - - "sce01130" - - kegg.reaction: "R08193" - - metanetx.reaction: "MNXR111765" - - pmid: "8174553" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.4.2.3" + - kegg.pathway: + - "sce00520" + - "sce01130" + - kegg.reaction: "R08193" + - metanetx.reaction: "MNXR111765" + - pmid: "8174553" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0883" - name: "phosphoadenylyl-sulfate reductase (thioredoxin)" @@ -47637,13 +47637,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.8.4.8" - - bigg.reaction: "PAPSR" - - kegg.pathway: "sce00920" - - metanetx.reaction: "MNXR137297" - - pmid: "2203779" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.8.4.8" + - bigg.reaction: "PAPSR" + - kegg.pathway: "sce00920" + - metanetx.reaction: "MNXR137297" + - pmid: "2203779" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0884" - name: "phosphoenolpyruvate carboxykinase" @@ -47661,19 +47661,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.49" - - bigg.reaction: "PPCK" - - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00620" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00341" - - metanetx.reaction: "MNXR103099" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.1.49" + - bigg.reaction: "PPCK" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00620" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00341" + - metanetx.reaction: "MNXR103099" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0885" - name: "phosphoethanolamine cytidyltransferase" @@ -47691,15 +47691,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.14" - - bigg.reaction: "PETHCT" - - kegg.pathway: - - "sce00440" - - "sce00564" - - kegg.reaction: "R02038" - - metanetx.reaction: "MNXR102498" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.7.14" + - bigg.reaction: "PETHCT" + - kegg.pathway: + - "sce00440" + - "sce00564" + - kegg.reaction: "R02038" + - metanetx.reaction: "MNXR102498" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0886" - name: "phosphofructokinase" @@ -47717,23 +47717,23 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.11" - - bigg.reaction: "PFK" - - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00051" - - "sce00052" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - "sce03018" - - kegg.reaction: "R00756" - - metanetx.reaction: "MNXR106666" - - pmid: "3007939" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.11" + - bigg.reaction: "PFK" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00051" + - "sce00052" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - "sce03018" + - kegg.reaction: "R00756" + - metanetx.reaction: "MNXR106666" + - pmid: "3007939" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0887" - name: "phosphofructokinase (s7p)" @@ -47751,22 +47751,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.11" - - bigg.reaction: "PFK_3" - - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00051" - - "sce00052" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - "sce03018" - - kegg.reaction: "R01843" - - metanetx.reaction: "MNXR102510" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.11" + - bigg.reaction: "PFK_3" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00051" + - "sce00052" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - "sce03018" + - kegg.reaction: "R01843" + - metanetx.reaction: "MNXR102510" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0888" - name: "phosphoglucomutase" @@ -47781,24 +47781,24 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.4.2.2" - - bigg.reaction: "PGMT" - - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00052" - - "sce00230" - - "sce00500" - - "sce00520" - - "sce01110" - - "sce01130" - - kegg.reaction: "R08639" - - metanetx.reaction: "MNXR102548" - - pmid: - - "18042468" - - "8119301" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.4.2.2" + - bigg.reaction: "PGMT" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00052" + - "sce00230" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - kegg.reaction: "R08639" + - metanetx.reaction: "MNXR102548" + - pmid: + - "18042468" + - "8119301" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0889" - name: "phosphogluconate dehydrogenase" @@ -47816,19 +47816,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.44" - - bigg.reaction: "GND" - - kegg.pathway: - - "sce00030" - - "sce00480" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R01528" - - metanetx.reaction: "MNXR100389" - - pmid: "24626" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.44" + - bigg.reaction: "GND" + - kegg.pathway: + - "sce00030" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R01528" + - metanetx.reaction: "MNXR100389" + - pmid: "24626" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0890" - name: "phosphoglucosamine mutase" @@ -47843,16 +47843,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.4.2.3" - - bigg.reaction: "PGAMT" - - kegg.pathway: - - "sce00520" - - "sce01130" - - kegg.reaction: "R02060" - - metanetx.reaction: "MNXR102526" - - pmid: "8174553" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.4.2.3" + - bigg.reaction: "PGAMT" + - kegg.pathway: + - "sce00520" + - "sce01130" + - kegg.reaction: "R02060" + - metanetx.reaction: "MNXR102526" + - pmid: "8174553" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0891" - name: "phosphoglycerate dehydrogenase" @@ -47870,18 +47870,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.399; 1.1.1.95" - - bigg.reaction: "PGCD" - - kegg.pathway: - - "sce00260" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R01513" - - metanetx.reaction: "MNXR102527" - - pmid: "12525494" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.399; 1.1.1.95" + - bigg.reaction: "PGCD" + - kegg.pathway: + - "sce00260" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R01513" + - metanetx.reaction: "MNXR102527" + - pmid: "12525494" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0892" - name: "phosphoglycerate kinase" @@ -47898,19 +47898,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.2.3" - - bigg.reaction: "PGK" - - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R01512" - - metanetx.reaction: "MNXR102538" - - pmid: "6347186" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.2.3" + - bigg.reaction: "PGK" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R01512" + - metanetx.reaction: "MNXR102538" + - pmid: "6347186" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0893" - name: "phosphoglycerate mutase" @@ -47925,20 +47925,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.4.2.11" - - bigg.reaction: "PGM" - - kegg.pathway: - - "sce00010" - - "sce00260" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R01518" - - metanetx.reaction: "MNXR102547" - - pmid: "3033435" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.4.2.11" + - bigg.reaction: "PGM" + - kegg.pathway: + - "sce00010" + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R01518" + - metanetx.reaction: "MNXR102547" + - pmid: "3033435" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0902" - name: "phosphomannomutase" @@ -47953,17 +47953,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.4.2.8" - - bigg.reaction: "PMANM" - - kegg.pathway: - - "sce00051" - - "sce00520" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01818" - - metanetx.reaction: "MNXR101729" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "5.4.2.8" + - bigg.reaction: "PMANM" + - kegg.pathway: + - "sce00051" + - "sce00520" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01818" + - metanetx.reaction: "MNXR101729" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0903" - name: "phosphomethylpyrimidine kinase" @@ -47980,14 +47980,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.49; 2.7.4.7" - - bigg.reaction: "PMPK" - - kegg.pathway: "sce00730" - - kegg.reaction: "R04509" - - metanetx.reaction: "MNXR103045" - - pmid: "10383756" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.49; 2.7.4.7" + - bigg.reaction: "PMPK" + - kegg.pathway: "sce00730" + - kegg.reaction: "R04509" + - metanetx.reaction: "MNXR103045" + - pmid: "10383756" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0904" - name: "phosphomevalonate kinase" @@ -48004,16 +48004,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.2" - - bigg.reaction: "PMEVK" - - kegg.pathway: - - "sce00900" - - "sce01110" - - "sce01130" - - kegg.reaction: "R03245" - - metanetx.reaction: "MNXR103043" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.2" + - bigg.reaction: "PMEVK" + - kegg.pathway: + - "sce00900" + - "sce01110" + - "sce01130" + - kegg.reaction: "R03245" + - metanetx.reaction: "MNXR103043" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0905" - name: "phosphopantothenate-cysteine ligase" @@ -48033,13 +48033,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.2.5" - - bigg.reaction: "PPNCL2" - - kegg.pathway: "sce00770" - - kegg.reaction: "R04231" - - metanetx.reaction: "MNXR103119" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.2.5" + - bigg.reaction: "PPNCL2" + - kegg.pathway: "sce00770" + - kegg.reaction: "R04231" + - metanetx.reaction: "MNXR103119" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0906" - name: "phosphopantothenoylcysteine decarboxylase" @@ -48056,13 +48056,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.36" - - bigg.reaction: "PPCDC" - - kegg.pathway: "sce00770" - - kegg.reaction: "R03269" - - metanetx.reaction: "MNXR103098" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.1.36" + - bigg.reaction: "PPCDC" + - kegg.pathway: "sce00770" + - kegg.reaction: "R03269" + - metanetx.reaction: "MNXR103098" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0907" - name: "phosphopentomutase" @@ -48077,20 +48077,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.4.2.2; 5.4.2.7" - - bigg.reaction: "PPM" - - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00052" - - "sce00230" - - "sce00500" - - "sce00520" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR103115" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "5.4.2.2; 5.4.2.7" + - bigg.reaction: "PPM" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00052" + - "sce00230" + - "sce00500" + - "sce00520" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR103115" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0908" - name: "phosphoribosyl amino imidazolesuccinocarbozamide synthetase" @@ -48110,16 +48110,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.2.6" - - bigg.reaction: "PRASCSi" - - kegg.pathway: - - "sce00230" - - "sce01110" - - "sce01130" - - kegg.reaction: "R04591" - - metanetx.reaction: "MNXR108987" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.2.6" + - bigg.reaction: "PRASCSi" + - kegg.pathway: + - "sce00230" + - "sce01110" + - "sce01130" + - kegg.reaction: "R04591" + - metanetx.reaction: "MNXR108987" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0909" - name: "phosphoribosyl-AMP cyclohydrolase" @@ -48135,17 +48135,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.23; 3.5.4.19; 3.6.1.31" - - bigg.reaction: "PRAMPC" - - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" - - kegg.reaction: "R04037" - - metanetx.reaction: "MNXR103154" - - pmid: "7049842" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.23; 3.5.4.19; 3.6.1.31" + - bigg.reaction: "PRAMPC" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" + - kegg.reaction: "R04037" + - metanetx.reaction: "MNXR103154" + - pmid: "7049842" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0910" - name: "phosphoribosyl-ATP pyrophosphatase" @@ -48163,16 +48163,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.23; 3.5.4.19; 3.6.1.31" - - bigg.reaction: "PRATPP" - - kegg.pathway: - - "sce00340" - - "sce01110" - - "sce01230" - - kegg.reaction: "R04035" - - metanetx.reaction: "MNXR103155" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.23; 3.5.4.19; 3.6.1.31" + - bigg.reaction: "PRATPP" + - kegg.pathway: + - "sce00340" + - "sce01110" + - "sce01230" + - kegg.reaction: "R04035" + - metanetx.reaction: "MNXR103155" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0911" - name: "phosphoribosylaminoimidazole-carboxylase" @@ -48189,14 +48189,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.21" - - kegg.pathway: - - "sce00230" - - "sce01110" - - kegg.reaction: "R04209" - - metanetx.reaction: "MNXR108735" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.1.21" + - kegg.pathway: + - "sce00230" + - "sce01110" + - kegg.reaction: "R04209" + - metanetx.reaction: "MNXR108735" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0912" - name: "phosphoribosylaminoimidazolecarboxamide formyltransferase" @@ -48213,17 +48213,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.2.3; 3.5.4.10" - - bigg.reaction: "AICART" - - kegg.pathway: - - "sce00230" - - "sce00670" - - "sce01110" - - "sce01130" - - kegg.reaction: "R04560" - - metanetx.reaction: "MNXR95639" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.2.3; 3.5.4.10" + - bigg.reaction: "AICART" + - kegg.pathway: + - "sce00230" + - "sce00670" + - "sce01110" + - "sce01130" + - kegg.reaction: "R04560" + - metanetx.reaction: "MNXR95639" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0913" - name: "phosphoribosylanthranilate isomerase" @@ -48238,18 +48238,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.1.24" - - bigg.reaction: "PRAIi" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R03509" - - metanetx.reaction: "MNXR103156" - - pmid: "348687" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.3.1.24" + - bigg.reaction: "PRAIi" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R03509" + - metanetx.reaction: "MNXR103156" + - pmid: "348687" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0914" - name: "phosphoribosylglycinamidine synthetase" @@ -48269,16 +48269,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.3.1; 6.3.4.13" - - bigg.reaction: "PRAGSr" - - kegg.pathway: - - "sce00230" - - "sce01110" - - "sce01130" - - kegg.reaction: "R04144" - - metanetx.reaction: "MNXR103139" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.3.1; 6.3.4.13" + - bigg.reaction: "PRAGSr" + - kegg.pathway: + - "sce00230" + - "sce01110" + - "sce01130" + - kegg.reaction: "R04144" + - metanetx.reaction: "MNXR103139" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0915" - name: "phosphoribosylpyrophosphate amidotransferase" @@ -48297,17 +48297,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.14" - - bigg.reaction: "GLUPRT" - - kegg.pathway: - - "sce00230" - - "sce00250" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01072" - - metanetx.reaction: "MNXR100287" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.2.14" + - bigg.reaction: "GLUPRT" + - kegg.pathway: + - "sce00230" + - "sce00250" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01072" + - metanetx.reaction: "MNXR100287" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0916" - name: "phosphoribosylpyrophosphate synthetase" @@ -48325,19 +48325,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.6.1" - - bigg.reaction: "PRPPS" - - kegg.pathway: - - "sce00030" - - "sce00230" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - metanetx.reaction: "MNXR103215" - - pmid: "10212224" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.6.1" + - bigg.reaction: "PRPPS" + - kegg.pathway: + - "sce00030" + - "sce00230" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - metanetx.reaction: "MNXR103215" + - pmid: "10212224" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0917" - name: "phosphoserine phosphatase (L-serine)" @@ -48354,18 +48354,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.3" - - bigg.reaction: "PSP_L" - - kegg.pathway: - - "sce00260" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R00582" - - metanetx.reaction: "MNXR103260" - - pmid: "1326413" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.3" + - bigg.reaction: "PSP_L" + - kegg.pathway: + - "sce00260" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R00582" + - metanetx.reaction: "MNXR103260" + - pmid: "1326413" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0918" - name: "phosphoserine transaminase" @@ -48382,19 +48382,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.52" - - bigg.reaction: "PSERT" - - kegg.pathway: - - "sce00260" - - "sce00750" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R04173" - - metanetx.reaction: "MNXR103225" - - pmid: "8017107" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.52" + - bigg.reaction: "PSERT" + - kegg.pathway: + - "sce00260" + - "sce00750" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R04173" + - metanetx.reaction: "MNXR103225" + - pmid: "8017107" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0919" - name: "phytoceramidase" @@ -48411,14 +48411,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00600" - - metanetx.reaction: "MNXR126696" - - pmid: - - "10702247" - - "18296751" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00600" + - metanetx.reaction: "MNXR126696" + - pmid: + - "10702247" + - "18296751" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0920" - name: "phytoceramidase" @@ -48435,14 +48435,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.14.-" - - kegg.pathway: - - "sce00071" - - "sce00380" - - kegg.reaction: "R06527" - - metanetx.reaction: "MNXR126694" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.14.14.-" + - kegg.pathway: + - "sce00071" + - "sce00380" + - kegg.reaction: "R06527" + - metanetx.reaction: "MNXR126694" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0921" - name: "Phytosphingosine phosphate lyase" @@ -48458,14 +48458,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.2.27" - - kegg.pathway: "sce00600" - - metanetx.reaction: "MNXR103262" - - pmid: - - "18296751" - - "9334171" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.2.27" + - kegg.pathway: "sce00600" + - metanetx.reaction: "MNXR103262" + - pmid: + - "18296751" + - "9334171" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0922" - name: "phytosphingosine synthesis" @@ -48485,15 +48485,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.-.-.-" - - kegg.pathway: "sce00600" - - kegg.reaction: "R06525" - - metanetx.reaction: "MNXR103263" - - pmid: - - "18296751" - - "9368039" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.-.-.-" + - kegg.pathway: "sce00600" + - kegg.reaction: "R06525" + - metanetx.reaction: "MNXR103263" + - pmid: + - "18296751" + - "9368039" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0929" - name: "polyamine oxidase" @@ -48512,15 +48512,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.3.17" - - bigg.reaction: "POLYAO" - - kegg.pathway: - - "sce00330" - - "sce00410" - - metanetx.reaction: "MNXR103057" - - pmid: "12670477" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.5.3.17" + - bigg.reaction: "POLYAO" + - kegg.pathway: + - "sce00330" + - "sce00410" + - metanetx.reaction: "MNXR103057" + - pmid: "12670477" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0935" - name: "porphobilinogen synthase" @@ -48537,15 +48537,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.24" - - bigg.reaction: "PPBNGS" - - kegg.pathway: - - "sce00860" - - "sce01110" - - kegg.reaction: "R00036" - - metanetx.reaction: "MNXR103095" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.2.1.24" + - bigg.reaction: "PPBNGS" + - kegg.pathway: + - "sce00860" + - "sce01110" + - kegg.reaction: "R00036" + - metanetx.reaction: "MNXR103095" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0936" - name: "poylamine oxidase" @@ -48564,16 +48564,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.3.17" - - bigg.reaction: "POLYAO2" - - kegg.pathway: - - "sce00330" - - "sce00410" - - kegg.reaction: "R03899" - - metanetx.reaction: "MNXR103058" - - pmid: "12670477" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.5.3.17" + - bigg.reaction: "POLYAO2" + - kegg.pathway: + - "sce00330" + - "sce00410" + - kegg.reaction: "R03899" + - metanetx.reaction: "MNXR103058" + - pmid: "12670477" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0937" - name: "poylamine oxidase" @@ -48592,16 +48592,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.3.17" - - bigg.reaction: "POLYAO3" - - kegg.pathway: - - "sce00330" - - "sce00410" - - kegg.reaction: "R09076" - - metanetx.reaction: "MNXR103059" - - pmid: "12670477" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.5.3.17" + - bigg.reaction: "POLYAO3" + - kegg.pathway: + - "sce00330" + - "sce00410" + - kegg.reaction: "R09076" + - metanetx.reaction: "MNXR103059" + - pmid: "12670477" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0938" - name: "prephenate dehydratase" @@ -48619,18 +48619,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.51" - - bigg.reaction: "PPNDH" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01373" - - metanetx.reaction: "MNXR126086" - - pmid: "7502583" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.51" + - bigg.reaction: "PPNDH" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01373" + - metanetx.reaction: "MNXR126086" + - pmid: "7502583" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0939" - name: "prephenate dehydrogenase (NADP)" @@ -48648,17 +48648,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.13" - - bigg.reaction: "PPND2" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - kegg.reaction: "R01730" - - metanetx.reaction: "MNXR103122" - - pmid: "2697638" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.13" + - bigg.reaction: "PPND2" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - kegg.reaction: "R01730" + - metanetx.reaction: "MNXR103122" + - pmid: "2697638" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0940" - name: "proline oxidase (NAD)" @@ -48675,15 +48675,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.5.2" - - kegg.pathway: - - "sce00330" - - "sce01110" - - "sce01130" - - kegg.reaction: "R10507" - - metanetx.reaction: "MNXR103187" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.5.5.2" + - kegg.pathway: + - "sce00330" + - "sce01110" + - "sce01130" + - kegg.reaction: "R10507" + - metanetx.reaction: "MNXR103187" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0941" - name: "prolyl-tRNA synthetase" @@ -48702,13 +48702,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.15" - - bigg.reaction: "PROTRS_1" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03661" - - metanetx.reaction: "MNXR103208" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.1.1.15" + - bigg.reaction: "PROTRS_1" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03661" + - metanetx.reaction: "MNXR103208" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0942" - name: "protoporphyrinogen oxidase" @@ -48725,15 +48725,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.4" - - bigg.reaction: "PPPGOm" - - kegg.pathway: - - "sce00860" - - "sce01110" - - kegg.reaction: "R03222" - - metanetx.reaction: "MNXR103132" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.3.3.4" + - bigg.reaction: "PPPGOm" + - kegg.pathway: + - "sce00860" + - "sce01110" + - kegg.reaction: "R03222" + - metanetx.reaction: "MNXR103132" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0943" - name: "purine-nucleoside phosphorylase" @@ -48751,19 +48751,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.1; 2.4.2.28; 3.2.2.3" - - bigg.reaction: "PNP" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00270" - - "sce00760" - - "sce01110" - - kegg.reaction: "R02294" - - metanetx.reaction: "MNXR103048" - - pmid: "17482543" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.2.1; 2.4.2.28; 3.2.2.3" + - bigg.reaction: "PNP" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00270" + - "sce00760" + - "sce01110" + - kegg.reaction: "R02294" + - metanetx.reaction: "MNXR103048" + - pmid: "17482543" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0949" - name: "guanosine phosphorylase" @@ -48780,18 +48780,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.1" - - bigg.reaction: "PUNP3" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00760" - - "sce01110" - - kegg.reaction: "R02147" - - metanetx.reaction: "MNXR103345" - - pmid: "23670538" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.2.1" + - bigg.reaction: "PUNP3" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00760" + - "sce01110" + - kegg.reaction: "R02147" + - metanetx.reaction: "MNXR103345" + - pmid: "23670538" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0950" - name: "guanosine phosphorylase" @@ -48808,18 +48808,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.1" - - bigg.reaction: "PUNP3m" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00760" - - "sce01110" - - kegg.reaction: "R02147" - - metanetx.reaction: "MNXR103345" - - pmid: "23670538" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.2.1" + - bigg.reaction: "PUNP3m" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00760" + - "sce01110" + - kegg.reaction: "R02147" + - metanetx.reaction: "MNXR103345" + - pmid: "23670538" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0951" - name: "inosine phosphorylase" @@ -48836,18 +48836,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.1" - - bigg.reaction: "PUNP5" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00760" - - "sce01110" - - kegg.reaction: "R01863" - - metanetx.reaction: "MNXR103347" - - pmid: "23670538" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.2.1" + - bigg.reaction: "PUNP5" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00760" + - "sce01110" + - kegg.reaction: "R01863" + - metanetx.reaction: "MNXR103347" + - pmid: "23670538" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0953" - name: "pyridoxal oxidase" @@ -48866,12 +48866,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.3.5" - - bigg.reaction: "PYDXO" - - kegg.pathway: "sce00750" - - metanetx.reaction: "MNXR103365" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.4.3.5" + - bigg.reaction: "PYDXO" + - kegg.pathway: "sce00750" + - metanetx.reaction: "MNXR103365" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0954" - name: "pyridoxamine 5'-phosphate oxidase" @@ -48890,13 +48890,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.3.5" - - bigg.reaction: "PYAM5PO" - - kegg.pathway: "sce00750" - - kegg.reaction: "R00277" - - metanetx.reaction: "MNXR103355" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.4.3.5" + - bigg.reaction: "PYAM5PO" + - kegg.pathway: "sce00750" + - kegg.reaction: "R00277" + - metanetx.reaction: "MNXR103355" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0955" - name: "pyridoxine 5'-phosphate oxidase" @@ -48913,13 +48913,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.3.5" - - bigg.reaction: "PDX5POi" - - kegg.pathway: "sce00750" - - kegg.reaction: "R00278" - - metanetx.reaction: "MNXR102438" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.4.3.5" + - bigg.reaction: "PDX5POi" + - kegg.pathway: "sce00750" + - kegg.reaction: "R00278" + - metanetx.reaction: "MNXR102438" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0956" - name: "pyridoxine oxidase" @@ -48936,13 +48936,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.3.5" - - bigg.reaction: "PYDXNO" - - kegg.pathway: "sce00750" - - kegg.reaction: "R01711" - - metanetx.reaction: "MNXR103363" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.4.3.5" + - bigg.reaction: "PYDXNO" + - kegg.pathway: "sce00750" + - kegg.reaction: "R01711" + - metanetx.reaction: "MNXR103363" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0957" - name: "pyrroline-5-carboxylate reductase" @@ -48960,17 +48960,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.2" - - bigg.reaction: "P5CR" - - kegg.pathway: - - "sce00330" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R01251" - - metanetx.reaction: "MNXR102302" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.5.1.2" + - bigg.reaction: "P5CR" + - kegg.pathway: + - "sce00330" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R01251" + - metanetx.reaction: "MNXR102302" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0958" - name: "pyruvate carboxylase" @@ -48990,17 +48990,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.4.1.1" - - bigg.reaction: "PC" - - kegg.pathway: - - "sce00020" - - "sce00620" - - "sce01200" - - "sce01230" - - kegg.reaction: "R00344" - - metanetx.reaction: "MNXR102391" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.4.1.1" + - bigg.reaction: "PC" + - kegg.pathway: + - "sce00020" + - "sce00620" + - "sce01200" + - "sce01230" + - kegg.reaction: "R00344" + - metanetx.reaction: "MNXR102391" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0959" - name: "pyruvate decarboxylase" @@ -49017,16 +49017,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - - bigg.reaction: "PYRDC" - - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00224" - - metanetx.reaction: "MNXR103379" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" + - bigg.reaction: "PYRDC" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00224" + - metanetx.reaction: "MNXR103379" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0960" - name: "pyruvate decarboxylase (acetoin-forming)" @@ -49044,16 +49044,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - - bigg.reaction: "PYRDC2" - - kegg.pathway: - - "sce00010" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR103380" - - pmid: "12902239" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" + - bigg.reaction: "PYRDC2" + - kegg.pathway: + - "sce00010" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR103380" + - pmid: "12902239" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0961" - name: "pyruvate dehydrogenase" @@ -49072,24 +49072,24 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.4.1; 1.8.1.4; 2.3.1.12" - - bigg.reaction: "PDHm" - - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00209" - - metanetx.reaction: "MNXR102425" - - pmid: "8433986" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.4.1; 1.8.1.4; 2.3.1.12" + - bigg.reaction: "PDHm" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00209" + - metanetx.reaction: "MNXR102425" + - pmid: "8433986" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0962" - name: "pyruvate kinase" @@ -49107,21 +49107,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.40" - - bigg.reaction: "PYK" - - kegg.pathway: - - "sce00010" - - "sce00230" - - "sce00620" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R00200" - - metanetx.reaction: "MNXR103371" - - pmid: "6185493" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.40" + - bigg.reaction: "PYK" + - kegg.pathway: + - "sce00010" + - "sce00230" + - "sce00620" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R00200" + - metanetx.reaction: "MNXR103371" + - pmid: "6185493" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0963" - name: "quinone oxidoreductase" @@ -49141,12 +49141,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - - kegg.pathway: - - "sce00130" - - "sce01110" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" + - kegg.pathway: + - "sce00130" + - "sce01110" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0965" - name: "riboflavin kinase" @@ -49164,15 +49164,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.26" - - bigg.reaction: "RBFK" - - kegg.pathway: - - "sce00740" - - "sce01110" - - kegg.reaction: "R00549" - - metanetx.reaction: "MNXR103429" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.26" + - bigg.reaction: "RBFK" + - kegg.pathway: + - "sce00740" + - "sce01110" + - kegg.reaction: "R00549" + - metanetx.reaction: "MNXR103429" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0966" - name: "riboflavin kinase" @@ -49190,15 +49190,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.26" - - bigg.reaction: "RBFKm" - - kegg.pathway: - - "sce00740" - - "sce01110" - - kegg.reaction: "R00549" - - metanetx.reaction: "MNXR103429" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.26" + - bigg.reaction: "RBFKm" + - kegg.pathway: + - "sce00740" + - "sce01110" + - kegg.reaction: "R00549" + - metanetx.reaction: "MNXR103429" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0967" - name: "riboflavin synthase" @@ -49217,15 +49217,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.78" - - bigg.reaction: "RBFSa" - - kegg.pathway: - - "sce00740" - - "sce01110" - - kegg.reaction: "R04457" - - metanetx.reaction: "MNXR97501" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.78" + - bigg.reaction: "RBFSa" + - kegg.pathway: + - "sce00740" + - "sce01110" + - kegg.reaction: "R04457" + - metanetx.reaction: "MNXR97501" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0968" - name: "riboflavin synthase" @@ -49242,15 +49242,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.9" - - bigg.reaction: "RBFSb" - - kegg.pathway: - - "sce00740" - - "sce01110" - - kegg.reaction: "R00066" - - metanetx.reaction: "MNXR103430" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.9" + - bigg.reaction: "RBFSb" + - kegg.pathway: + - "sce00740" + - "sce01110" + - kegg.reaction: "R00066" + - metanetx.reaction: "MNXR103430" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0969" - name: "ribokinase" @@ -49268,14 +49268,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.15" - - bigg.reaction: "RBK" - - kegg.pathway: "sce00030" - - kegg.reaction: "R01051" - - metanetx.reaction: "MNXR103431" - - pmid: "1964349" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.15" + - bigg.reaction: "RBK" + - kegg.pathway: "sce00030" + - kegg.reaction: "R01051" + - metanetx.reaction: "MNXR103431" + - pmid: "1964349" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0970" - name: "ribonucleoside-triphosphate reductase (ATP)" @@ -49294,12 +49294,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "RNTR1" - - kegg.reaction: "R02014" - - metanetx.reaction: "MNXR104070" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "RNTR1" + - kegg.reaction: "R02014" + - metanetx.reaction: "MNXR104070" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0971" - name: "ribonucleoside-triphosphate reductase (CTP)" @@ -49318,12 +49318,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "RNTR3" - - kegg.reaction: "R02022" - - metanetx.reaction: "MNXR104076" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "RNTR3" + - kegg.reaction: "R02022" + - metanetx.reaction: "MNXR104076" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0972" - name: "ribonucleoside-triphosphate reductase (GTP)" @@ -49342,12 +49342,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "RNTR2" - - kegg.reaction: "R02020" - - metanetx.reaction: "MNXR104073" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "RNTR2" + - kegg.reaction: "R02020" + - metanetx.reaction: "MNXR104073" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0973" - name: "ribonucleoside-triphosphate reductase (UTP)" @@ -49366,12 +49366,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "RNTR4" - - kegg.reaction: "R02023" - - metanetx.reaction: "MNXR104079" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "RNTR4" + - kegg.reaction: "R02023" + - metanetx.reaction: "MNXR104079" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0974" - name: "ribonucleotide reductase" @@ -49390,16 +49390,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.17.4.1" - - bigg.reaction: "RNDR1" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00480" - - kegg.reaction: "R02017" - - metanetx.reaction: "MNXR104060" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.17.4.1" + - bigg.reaction: "RNDR1" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00480" + - kegg.reaction: "R02017" + - metanetx.reaction: "MNXR104060" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0975" - name: "ribonucleotide reductase" @@ -49418,16 +49418,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.17.4.1" - - bigg.reaction: "RNDR1n" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00480" - - kegg.reaction: "R02017" - - metanetx.reaction: "MNXR104060" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.17.4.1" + - bigg.reaction: "RNDR1n" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00480" + - kegg.reaction: "R02017" + - metanetx.reaction: "MNXR104060" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0976" - name: "ribonucleotide reductase" @@ -49446,16 +49446,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.17.4.1" - - bigg.reaction: "RNDR3" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00480" - - kegg.reaction: "R02024" - - metanetx.reaction: "MNXR104064" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.17.4.1" + - bigg.reaction: "RNDR3" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00480" + - kegg.reaction: "R02024" + - metanetx.reaction: "MNXR104064" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0977" - name: "ribonucleotide reductase" @@ -49474,16 +49474,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.17.4.1" - - bigg.reaction: "RNDR3n" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00480" - - kegg.reaction: "R02024" - - metanetx.reaction: "MNXR104064" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.17.4.1" + - bigg.reaction: "RNDR3n" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00480" + - kegg.reaction: "R02024" + - metanetx.reaction: "MNXR104064" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0978" - name: "ribonucleotide reductase" @@ -49502,16 +49502,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.17.4.1" - - bigg.reaction: "RNDR2" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00480" - - kegg.reaction: "R02019" - - metanetx.reaction: "MNXR104062" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.17.4.1" + - bigg.reaction: "RNDR2" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00480" + - kegg.reaction: "R02019" + - metanetx.reaction: "MNXR104062" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0979" - name: "ribonucleotide reductase" @@ -49530,16 +49530,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.17.4.1" - - bigg.reaction: "RNDR2n" - - kegg.pathway: - - "sce00230" - - "sce00240" - - "sce00480" - - kegg.reaction: "R02019" - - metanetx.reaction: "MNXR104062" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.17.4.1" + - bigg.reaction: "RNDR2n" + - kegg.pathway: + - "sce00230" + - "sce00240" + - "sce00480" + - kegg.reaction: "R02019" + - metanetx.reaction: "MNXR104062" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0982" - name: "ribose-5-phosphate isomerase" @@ -49554,18 +49554,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.1.6" - - bigg.reaction: "RPI" - - kegg.pathway: - - "sce00030" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - metanetx.reaction: "MNXR104084" - - pmid: "9763699" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.3.1.6" + - bigg.reaction: "RPI" + - kegg.pathway: + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - metanetx.reaction: "MNXR104084" + - pmid: "9763699" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0983" - name: "ribosylnicotinamide kinase" @@ -49583,14 +49583,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.173; 2.7.1.22" - - bigg.reaction: "RNMK" - - kegg.pathway: "sce00760" - - kegg.reaction: "R02324" - - metanetx.reaction: "MNXR104069" - - pmid: "15137942" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.173; 2.7.1.22" + - bigg.reaction: "RNMK" + - kegg.pathway: "sce00760" + - kegg.reaction: "R02324" + - metanetx.reaction: "MNXR104069" + - pmid: "15137942" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0984" - name: "ribulose 5-phosphate 3-epimerase" @@ -49605,20 +49605,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.1.3.1" - - bigg.reaction: "RPE" - - kegg.pathway: - - "sce00030" - - "sce00040" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R01529" - - metanetx.reaction: "MNXR104083" - - pmid: "9032985" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.1.3.1" + - bigg.reaction: "RPE" + - kegg.pathway: + - "sce00030" + - "sce00040" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R01529" + - metanetx.reaction: "MNXR104083" + - pmid: "9032985" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0985" - name: "S-adenosyl-L-methionine:3-hexaprenyl-4,5-dihydroxylate O-methyltransferase" @@ -49636,16 +49636,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - - bigg.reaction: "3DH5HPBMTm" - - kegg.pathway: - - "sce00130" - - "sce01110" - - kegg.reaction: "R04711" - - metanetx.reaction: "MNXR94862" - - pmid: "15792955" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" + - bigg.reaction: "3DH5HPBMTm" + - kegg.pathway: + - "sce00130" + - "sce01110" + - kegg.reaction: "R04711" + - metanetx.reaction: "MNXR94862" + - pmid: "15792955" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0986" - name: "S-adenosyl-methionine delta-24-sterol-c-methyltransferase" @@ -49663,16 +49663,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.41" - - bigg.reaction: "SAM24MT" - - kegg.pathway: - - "sce00100" - - "sce01110" - - "sce01130" - - kegg.reaction: "R04427" - - metanetx.reaction: "MNXR104270" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.1.41" + - bigg.reaction: "SAM24MT" + - kegg.pathway: + - "sce00100" + - "sce01110" + - "sce01130" + - kegg.reaction: "R04427" + - metanetx.reaction: "MNXR104270" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0987" - name: "S-formylglutathione hydralase" @@ -49690,13 +49690,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.12" - - bigg.reaction: "SFGTHi" - - kegg.pathway: "sce01200" - - kegg.reaction: "R00527" - - metanetx.reaction: "MNXR104357" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.2.12" + - bigg.reaction: "SFGTHi" + - kegg.pathway: "sce01200" + - kegg.reaction: "R00527" + - metanetx.reaction: "MNXR104357" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0988" - name: "saccharopine dehydrogenase (NAD, L-lysine forming)" @@ -49716,19 +49716,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.7" - - bigg.reaction: "SACCD2" - - kegg.pathway: - - "sce00300" - - "sce00310" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R00715" - - metanetx.reaction: "MNXR104237" - - pmid: "3928261" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.5.1.7" + - bigg.reaction: "SACCD2" + - kegg.pathway: + - "sce00300" + - "sce00310" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R00715" + - metanetx.reaction: "MNXR104237" + - pmid: "3928261" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0989" - name: "saccharopine dehydrogenase (NADP, L-glutamate forming)" @@ -49748,19 +49748,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.5.1.10" - - bigg.reaction: "SACCD1" - - kegg.pathway: - - "sce00300" - - "sce00310" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R02315" - - metanetx.reaction: "MNXR104236" - - pmid: "3123231" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.5.1.10" + - bigg.reaction: "SACCD1" + - kegg.pathway: + - "sce00300" + - "sce00310" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R02315" + - metanetx.reaction: "MNXR104236" + - pmid: "3123231" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0990" - name: "sedoheptulose 1,7-bisphosphate D-glyceraldehyde-3-phosphate-lyase" @@ -49776,20 +49776,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.2.13" - - bigg.reaction: "FBA3" - - kegg.pathway: - - "sce00010" - - "sce00030" - - "sce00051" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R01829" - - metanetx.reaction: "MNXR99461" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.2.13" + - bigg.reaction: "FBA3" + - kegg.pathway: + - "sce00010" + - "sce00030" + - "sce00051" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R01829" + - metanetx.reaction: "MNXR99461" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_0992" - name: "serine O-acetyltransferase" @@ -49806,13 +49806,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SERAT" - - kegg.reaction: "R00586" - - metanetx.reaction: "MNXR104275" - - pmid: "8335636" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "SERAT" + - kegg.reaction: "R00586" + - metanetx.reaction: "MNXR104275" + - pmid: "8335636" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0993" - name: "serine palmitotransferase" @@ -49831,19 +49831,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.50" - - kegg.pathway: - - "sce00600" - - "sce04138" - - kegg.reaction: "R01281" - - metanetx.reaction: "MNXR104347" - - pmid: - - "10713067" - - "18296751" - - "2066332" - - "8058731" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.50" + - kegg.pathway: + - "sce00600" + - "sce04138" + - kegg.reaction: "R01281" + - metanetx.reaction: "MNXR104347" + - pmid: + - "10713067" + - "18296751" + - "2066332" + - "8058731" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0995" - name: "seryl-tRNA synthetase" @@ -49862,14 +49862,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.11" - - bigg.reaction: "SERTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03662" - - metanetx.reaction: "MNXR104350" - - pmid: "3031581" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.11" + - bigg.reaction: "SERTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03662" + - metanetx.reaction: "MNXR104350" + - pmid: "3031581" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0996" - name: "shikimate dehydrogenase" @@ -49887,18 +49887,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - - bigg.reaction: "SHK3Dr" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R02413" - - metanetx.reaction: "MNXR104378" - - pmid: "6355828" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" + - bigg.reaction: "SHK3Dr" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R02413" + - metanetx.reaction: "MNXR104378" + - pmid: "6355828" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0997" - name: "shikimate kinase" @@ -49916,18 +49916,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - - bigg.reaction: "SHKK" - - kegg.pathway: - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R02412" - - metanetx.reaction: "MNXR104379" - - pmid: "6355828" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" + - bigg.reaction: "SHKK" + - kegg.pathway: + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R02412" + - metanetx.reaction: "MNXR104379" + - pmid: "6355828" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0998" - name: "sirohydrochlorin dehydrogenase" @@ -49945,16 +49945,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.76; 4.99.1.4" - - bigg.reaction: "SHCHD2" - - kegg.pathway: - - "sce00860" - - "sce01110" - - kegg.reaction: "R03947" - - metanetx.reaction: "MNXR104373" - - pmid: "11980703" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.76; 4.99.1.4" + - bigg.reaction: "SHCHD2" + - kegg.pathway: + - "sce00860" + - "sce01110" + - kegg.reaction: "R03947" + - metanetx.reaction: "MNXR104373" + - pmid: "11980703" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0999" - name: "sirohydrochlorin ferrochetalase" @@ -49971,16 +49971,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.76; 4.99.1.4" - - bigg.reaction: "SHCHF" - - kegg.pathway: - - "sce00860" - - "sce01110" - - kegg.reaction: "R02864" - - metanetx.reaction: "MNXR104375" - - pmid: "11980703" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.76; 4.99.1.4" + - bigg.reaction: "SHCHF" + - kegg.pathway: + - "sce00860" + - "sce01110" + - kegg.reaction: "R02864" + - metanetx.reaction: "MNXR104375" + - pmid: "11980703" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1000" - name: "fumarate reductase (FMN)" @@ -49998,14 +49998,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.6" - - kegg.reaction: "R00408" - - metanetx.reaction: "MNXR129857" - - pmid: - - "22672422" - - "12393208" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.6" + - kegg.reaction: "R00408" + - metanetx.reaction: "MNXR129857" + - pmid: + - "22672422" + - "12393208" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1001" - name: "spermidine synthase" @@ -50023,17 +50023,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.16" - - bigg.reaction: "SPMS" - - kegg.pathway: - - "sce00270" - - "sce00330" - - "sce00410" - - "sce00480" - - kegg.reaction: "R01920" - - metanetx.reaction: "MNXR95860" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.16" + - bigg.reaction: "SPMS" + - kegg.pathway: + - "sce00270" + - "sce00330" + - "sce00410" + - "sce00480" + - kegg.reaction: "R01920" + - metanetx.reaction: "MNXR95860" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1002" - name: "spermine synthase" @@ -50051,17 +50051,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.22" - - bigg.reaction: "SPRMS" - - kegg.pathway: - - "sce00270" - - "sce00330" - - "sce00410" - - "sce00480" - - kegg.reaction: "R02869" - - metanetx.reaction: "MNXR96042" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.22" + - bigg.reaction: "SPRMS" + - kegg.pathway: + - "sce00270" + - "sce00330" + - "sce00410" + - "sce00480" + - kegg.reaction: "R02869" + - metanetx.reaction: "MNXR96042" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1003" - name: "sphinganine phosphate lyase" @@ -50077,16 +50077,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.2.27" - - bigg.reaction: "SGPL11r" - - kegg.pathway: "sce00600" - - kegg.reaction: "R02464" - - metanetx.reaction: "MNXR104365" - - pmid: - - "18296751" - - "9334171" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.2.27" + - bigg.reaction: "SGPL11r" + - kegg.pathway: "sce00600" + - kegg.reaction: "R02464" + - metanetx.reaction: "MNXR104365" + - pmid: + - "18296751" + - "9334171" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1004" - name: "sphingoid base-phosphate phosphatase (phytosphingosine 1-phosphate)" @@ -50103,16 +50103,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - bigg.reaction: "SBPP2er" - - kegg.pathway: "sce00600" - - metanetx.reaction: "MNXR104281" - - pmid: - - "18296751" - - "9353337" - - "9419344" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - bigg.reaction: "SBPP2er" + - kegg.pathway: "sce00600" + - metanetx.reaction: "MNXR104281" + - pmid: + - "18296751" + - "9353337" + - "9419344" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1005" - name: "sphingoid base-phosphate phosphatase (sphinganine 1-phosphatase)" @@ -50129,17 +50129,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - bigg.reaction: "SBPP1er" - - kegg.pathway: "sce00600" - - kegg.reaction: "R06520" - - metanetx.reaction: "MNXR104280" - - pmid: - - "18296751" - - "9353337" - - "9419344" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - bigg.reaction: "SBPP1er" + - kegg.pathway: "sce00600" + - kegg.reaction: "R06520" + - metanetx.reaction: "MNXR104280" + - pmid: + - "18296751" + - "9353337" + - "9419344" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1006" - name: "sphingolipid long chain base kinase (phytosphingosine)" @@ -50157,14 +50157,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.91" - - kegg.pathway: "sce00600" - - metanetx.reaction: "MNXR104440" - - pmid: - - "18296751" - - "9677363" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.91" + - kegg.pathway: "sce00600" + - metanetx.reaction: "MNXR104440" + - pmid: + - "18296751" + - "9677363" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1007" - name: "sphingolipid long chain base kinase (sphinganine)" @@ -50182,15 +50182,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.91" - - kegg.pathway: "sce00600" - - kegg.reaction: "R02976" - - metanetx.reaction: "MNXR104439" - - pmid: - - "18296751" - - "9677363" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.91" + - kegg.pathway: "sce00600" + - kegg.reaction: "R02976" + - metanetx.reaction: "MNXR104439" + - pmid: + - "18296751" + - "9677363" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1008" - name: "spontaneous cis-aconitate(3-) to trans-aconitate" @@ -50205,12 +50205,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R02244" - - metanetx.reaction: "MNXR95382" - - pmid: "11329290" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - kegg.reaction: "R02244" + - metanetx.reaction: "MNXR95382" + - pmid: "11329290" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1009" - name: "spontaneous cis-aconitate(3-) to trans-aconitate" @@ -50225,13 +50225,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ACONIs" - - kegg.reaction: "R02244" - - metanetx.reaction: "MNXR95382" - - pmid: "11329290" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ACONIs" + - kegg.reaction: "R02244" + - metanetx.reaction: "MNXR95382" + - pmid: "11329290" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1010" - name: "squalene epoxidase (NAD)" @@ -50251,17 +50251,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.14.17" - - bigg.reaction: "SQLErx" - - kegg.pathway: - - "sce00100" - - "sce00909" - - "sce01110" - - "sce01130" - - metanetx.reaction: "MNXR104528" - - pmid: "10622712" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.14.14.17" + - bigg.reaction: "SQLErx" + - kegg.pathway: + - "sce00100" + - "sce00909" + - "sce01110" + - "sce01130" + - metanetx.reaction: "MNXR104528" + - pmid: "10622712" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1011" - name: "squalene epoxidase (NADP)" @@ -50281,18 +50281,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.14.17" - - bigg.reaction: "SQLEr" - - kegg.pathway: - - "sce00100" - - "sce00909" - - "sce01110" - - "sce01130" - - kegg.reaction: "R02874" - - metanetx.reaction: "MNXR104447" - - pmid: "10622712" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.14.14.17" + - bigg.reaction: "SQLEr" + - kegg.pathway: + - "sce00100" + - "sce00909" + - "sce01110" + - "sce01130" + - kegg.reaction: "R02874" + - metanetx.reaction: "MNXR104447" + - pmid: "10622712" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1012" - name: "squalene synthase" @@ -50311,17 +50311,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.21" - - bigg.reaction: "SQLS" - - kegg.pathway: - - "sce00100" - - "sce00909" - - "sce01110" - - "sce01130" - - kegg.reaction: "R06223" - - metanetx.reaction: "MNXR104529" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.21" + - bigg.reaction: "SQLS" + - kegg.pathway: + - "sce00100" + - "sce00909" + - "sce01110" + - "sce01130" + - kegg.reaction: "R06223" + - metanetx.reaction: "MNXR104529" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1021" - name: "succinate dehydrogenase (ubiquinone-6)" @@ -50338,18 +50338,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.5.1" - - bigg.reaction: "SUCD2_u6m" - - kegg.pathway: - - "sce00020" - - "sce00190" - - "sce01110" - - "sce01130" - - "sce01200" - - metanetx.reaction: "MNXR104627" - - pmid: "9929002" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.5.1" + - bigg.reaction: "SUCD2_u6m" + - kegg.pathway: + - "sce00020" + - "sce00190" + - "sce01110" + - "sce01130" + - "sce01200" + - metanetx.reaction: "MNXR104627" + - pmid: "9929002" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1022" - name: "succinate-CoA ligase (ADP-forming)" @@ -50368,19 +50368,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.5" - - bigg.reaction: "SUCOASm" - - kegg.pathway: - - "sce00020" - - "sce00640" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R00405" - - metanetx.reaction: "MNXR104635" - - pmid: "9874242" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.5" + - bigg.reaction: "SUCOASm" + - kegg.pathway: + - "sce00020" + - "sce00640" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R00405" + - metanetx.reaction: "MNXR104635" + - pmid: "9874242" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1023" - name: "succinate-semialdehyde dehydrogenase (NADP)" @@ -50399,19 +50399,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.16" - - bigg.reaction: "SSALy" - - kegg.pathway: - - "sce00250" - - "sce00310" - - "sce00350" - - "sce00650" - - "sce00760" - - kegg.reaction: "R00714" - - metanetx.reaction: "MNXR104541" - - pmid: "11031268" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.2.1.16" + - bigg.reaction: "SSALy" + - kegg.pathway: + - "sce00250" + - "sce00310" + - "sce00350" + - "sce00650" + - "sce00760" + - kegg.reaction: "R00714" + - metanetx.reaction: "MNXR104541" + - pmid: "11031268" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1024" - name: "sucrose hydrolyzing enxyme" @@ -50428,15 +50428,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.26" - - bigg.reaction: "SUCRe" - - kegg.pathway: - - "sce00052" - - "sce00500" - - kegg.reaction: "R00801" - - metanetx.reaction: "MNXR104638" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.26" + - bigg.reaction: "SUCRe" + - kegg.pathway: + - "sce00052" + - "sce00500" + - kegg.reaction: "R00801" + - metanetx.reaction: "MNXR104638" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1025" - name: "sulfate adenylyltransferase" @@ -50454,19 +50454,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.4" - - bigg.reaction: "SADT" - - kegg.pathway: - - "sce00230" - - "sce00261" - - "sce00450" - - "sce00920" - - "sce01130" - - kegg.reaction: "R00529" - - metanetx.reaction: "MNXR104240" - - pmid: "197388" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.4" + - bigg.reaction: "SADT" + - kegg.pathway: + - "sce00230" + - "sce00261" + - "sce00450" + - "sce00920" + - "sce01130" + - kegg.reaction: "R00529" + - metanetx.reaction: "MNXR104240" + - pmid: "197388" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1026" - name: "sulfate adenylyltransferase (ADP)" @@ -50484,16 +50484,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.5; 2.7.7.53" - - bigg.reaction: "SLFAT" - - kegg.pathway: - - "sce00230" - - "sce00920" - - kegg.reaction: "R00530" - - metanetx.reaction: "MNXR104444" - - pmid: "2556364" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.5; 2.7.7.53" + - bigg.reaction: "SLFAT" + - kegg.pathway: + - "sce00230" + - "sce00920" + - kegg.reaction: "R00530" + - metanetx.reaction: "MNXR104444" + - pmid: "2556364" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1027" - name: "sulfite reductase (NADPH2)" @@ -50512,13 +50512,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.8.1.2" - - bigg.reaction: "SULR" - - kegg.pathway: "sce00920" - - kegg.reaction: "R00858" - - metanetx.reaction: "MNXR104650" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.8.1.2" + - bigg.reaction: "SULR" + - kegg.pathway: "sce00920" + - kegg.reaction: "R00858" + - metanetx.reaction: "MNXR104650" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1029" - name: "taurine dioxygenase" @@ -50539,13 +50539,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.11.-" - - bigg.reaction: "TAUDO" - - kegg.reaction: "R05320" - - metanetx.reaction: "MNXR104730" - - pmid: "10482536" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.14.11.-" + - bigg.reaction: "TAUDO" + - kegg.reaction: "R05320" + - metanetx.reaction: "MNXR104730" + - pmid: "10482536" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1030" - name: "tetrahydrofolate aminomethyltransferase" @@ -50562,24 +50562,24 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - bigg.reaction: "THFATm" - - kegg.pathway: - - "sce00010" - - "sce00020" - - "sce00260" - - "sce00280" - - "sce00620" - - "sce00630" - - "sce00640" - - "sce00670" - - "sce01110" - - "sce01130" - - "sce01200" - - kegg.reaction: "R02300" - - metanetx.reaction: "MNXR99614" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" + - bigg.reaction: "THFATm" + - kegg.pathway: + - "sce00010" + - "sce00020" + - "sce00260" + - "sce00280" + - "sce00620" + - "sce00630" + - "sce00640" + - "sce00670" + - "sce01110" + - "sce01130" + - "sce01200" + - kegg.reaction: "R02300" + - metanetx.reaction: "MNXR99614" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1031" - name: "tetrahydrofolate:L-glutamate gamma-ligase (ADP-forming)" @@ -50599,16 +50599,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.2.17" - - bigg.reaction: "THFGLUS" - - kegg.pathway: "sce00790" - - kegg.reaction: "R00942" - - metanetx.reaction: "MNXR143412" - - pmid: - - "10799479" - - "21190580" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.3.2.17" + - bigg.reaction: "THFGLUS" + - kegg.pathway: "sce00790" + - kegg.reaction: "R00942" + - metanetx.reaction: "MNXR143412" + - pmid: + - "10799479" + - "21190580" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1032" - name: "thiamin diphosphatase" @@ -50626,14 +50626,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.2" - - bigg.reaction: "THMDPe" - - kegg.pathway: - - "sce00730" - - "sce00740" - - metanetx.reaction: "MNXR138860" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.3.2" + - bigg.reaction: "THMDPe" + - kegg.pathway: + - "sce00730" + - "sce00740" + - metanetx.reaction: "MNXR138860" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1033" - name: "thiamin phosphatase" @@ -50650,15 +50650,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.2" - - bigg.reaction: "THMPe" - - kegg.pathway: - - "sce00730" - - "sce00740" - - kegg.reaction: "R02135" - - metanetx.reaction: "MNXR104823" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.3.2" + - bigg.reaction: "THMPe" + - kegg.pathway: + - "sce00730" + - "sce00740" + - kegg.reaction: "R02135" + - metanetx.reaction: "MNXR104823" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1034" - name: "thiamine diphosphokinase" @@ -50676,13 +50676,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.6.2" - - bigg.reaction: "TMDPK" - - kegg.pathway: "sce00730" - - kegg.reaction: "R00619" - - metanetx.reaction: "MNXR104886" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.6.2" + - bigg.reaction: "TMDPK" + - kegg.pathway: "sce00730" + - kegg.reaction: "R00619" + - metanetx.reaction: "MNXR104886" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1035" - name: "thiamine-diphosphate kinase" @@ -50699,13 +50699,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.6.2" - - bigg.reaction: "TMDPPK" - - kegg.pathway: "sce00730" - - kegg.reaction: "R00616" - - metanetx.reaction: "MNXR104888" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.6.2" + - bigg.reaction: "TMDPPK" + - kegg.pathway: "sce00730" + - kegg.reaction: "R00616" + - metanetx.reaction: "MNXR104888" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1036" - name: "thiamine-phosphate diphosphorylase" @@ -50723,13 +50723,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.3; 2.7.1.50" - - bigg.reaction: "TMPPP" - - kegg.pathway: "sce00730" - - kegg.reaction: "R03223" - - metanetx.reaction: "MNXR104908" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.3; 2.7.1.50" + - bigg.reaction: "TMPPP" + - kegg.pathway: "sce00730" + - kegg.reaction: "R03223" + - metanetx.reaction: "MNXR104908" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1037" - name: "thioredoxin" @@ -50747,12 +50747,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.11.1.15" - - bigg.reaction: "THIORDXni" - - metanetx.reaction: "MNXR104815" - - pmid: "12730197" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.11.1.15" + - bigg.reaction: "THIORDXni" + - metanetx.reaction: "MNXR104815" + - pmid: "12730197" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1038" - name: "thioredoxin reductase (NADPH)" @@ -50769,13 +50769,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.8.1.9" - - bigg.reaction: "TRDR" - - kegg.pathway: "sce00450" - - kegg.reaction: "R02016" - - metanetx.reaction: "MNXR104766" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.8.1.9" + - bigg.reaction: "TRDR" + - kegg.pathway: "sce00450" + - kegg.reaction: "R02016" + - metanetx.reaction: "MNXR104766" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1039" - name: "thioredoxin reductase (NADPH)" @@ -50792,16 +50792,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.8.1.7; 1.8.1.9" - - bigg.reaction: "TRDRm" - - kegg.pathway: - - "sce00450" - - "sce00480" - - kegg.reaction: "R02016" - - metanetx.reaction: "MNXR104766" - - pmid: "15701801" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.8.1.7; 1.8.1.9" + - bigg.reaction: "TRDRm" + - kegg.pathway: + - "sce00450" + - "sce00480" + - kegg.reaction: "R02016" + - metanetx.reaction: "MNXR104766" + - pmid: "15701801" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1040" - name: "threonine aldolase" @@ -50817,18 +50817,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.2.48" - - bigg.reaction: "THRA" - - kegg.pathway: - - "sce00260" - - "sce01110" - - "sce01130" - - "sce01230" - - kegg.reaction: "R00751" - - metanetx.reaction: "MNXR104833" - - pmid: "9151955" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.2.48" + - bigg.reaction: "THRA" + - kegg.pathway: + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01230" + - kegg.reaction: "R00751" + - metanetx.reaction: "MNXR104833" + - pmid: "9151955" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1041" - name: "threonine synthase" @@ -50845,18 +50845,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.3.1" - - bigg.reaction: "THRS" - - kegg.pathway: - - "sce00260" - - "sce00750" - - "sce01110" - - "sce01230" - - kegg.reaction: "R01466" - - metanetx.reaction: "MNXR104846" - - pmid: "8082795" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.3.1" + - bigg.reaction: "THRS" + - kegg.pathway: + - "sce00260" + - "sce00750" + - "sce01110" + - "sce01230" + - kegg.reaction: "R01466" + - metanetx.reaction: "MNXR104846" + - pmid: "8082795" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1042" - name: "threonyl-tRNA synthetase" @@ -50875,14 +50875,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.3" - - bigg.reaction: "THRTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03663" - - metanetx.reaction: "MNXR104848" - - pmid: "2995918" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.3" + - bigg.reaction: "THRTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03663" + - metanetx.reaction: "MNXR104848" + - pmid: "2995918" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1043" - name: "threonyl-tRNA synthetase" @@ -50901,14 +50901,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.3" - - bigg.reaction: "THRTRSm" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03663" - - metanetx.reaction: "MNXR104848" - - pmid: "2999113" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.3" + - bigg.reaction: "THRTRSm" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03663" + - metanetx.reaction: "MNXR104848" + - pmid: "2999113" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1045" - name: "thymidylate synthase" @@ -50925,15 +50925,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.45" - - bigg.reaction: "TMDS" - - kegg.pathway: - - "sce00240" - - "sce00670" - - kegg.reaction: "R02101" - - metanetx.reaction: "MNXR104889" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.1.45" + - bigg.reaction: "TMDS" + - kegg.pathway: + - "sce00240" + - "sce00670" + - kegg.reaction: "R02101" + - metanetx.reaction: "MNXR104889" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1046" - name: "trans-aconitate 3-methyltransferase" @@ -50950,13 +50950,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.145" - - bigg.reaction: "ACONMT" - - kegg.reaction: "R05763" - - metanetx.reaction: "MNXR95383" - - pmid: "15147181" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.145" + - bigg.reaction: "ACONMT" + - kegg.reaction: "R05763" + - metanetx.reaction: "MNXR95383" + - pmid: "15147181" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1047" - name: "trans-pentaprenyltranstransferase" @@ -50973,16 +50973,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.-" - - bigg.reaction: "PPTTm" - - kegg.pathway: - - "sce00900" - - "sce01110" - - kegg.reaction: "R05613" - - metanetx.reaction: "MNXR103150" - - pmid: "2198286" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.5.1.-" + - bigg.reaction: "PPTTm" + - kegg.pathway: + - "sce00900" + - "sce01110" + - kegg.reaction: "R05613" + - metanetx.reaction: "MNXR103150" + - pmid: "2198286" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1048" - name: "transaldolase" @@ -50999,18 +50999,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.2.1.2" - - bigg.reaction: "TALA" - - kegg.pathway: - - "sce00030" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - metanetx.reaction: "MNXR124173" - - pmid: "8300619" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.2.1.2" + - bigg.reaction: "TALA" + - kegg.pathway: + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - metanetx.reaction: "MNXR124173" + - pmid: "8300619" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1049" - name: "transketolase 1" @@ -51027,18 +51027,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.2.1.1" - - bigg.reaction: "TKT1" - - kegg.pathway: - - "sce00030" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - metanetx.reaction: "MNXR104868" - - pmid: "8268320" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.2.1.1" + - bigg.reaction: "TKT1" + - kegg.pathway: + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - metanetx.reaction: "MNXR104868" + - pmid: "8268320" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1050" - name: "transketolase 2" @@ -51055,17 +51055,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.2.1.1" - - bigg.reaction: "TKT2" - - kegg.pathway: - - "sce00030" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - metanetx.reaction: "MNXR124172" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.2.1.1" + - bigg.reaction: "TKT2" + - kegg.pathway: + - "sce00030" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - metanetx.reaction: "MNXR124172" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1051" - name: "trehalose-phosphatase" @@ -51082,14 +51082,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.15; 3.1.3.12" - - bigg.reaction: "TRE6PP" - - kegg.pathway: "sce00500" - - kegg.reaction: "R02778" - - metanetx.reaction: "MNXR104926" - - pmid: "21623372" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.1.15; 3.1.3.12" + - bigg.reaction: "TRE6PP" + - kegg.pathway: "sce00500" + - kegg.reaction: "R02778" + - metanetx.reaction: "MNXR104926" + - pmid: "21623372" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1054" - name: "triose-phosphate isomerase" @@ -51104,21 +51104,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.1.1" - - bigg.reaction: "TPI" - - kegg.pathway: - - "sce00010" - - "sce00051" - - "sce00562" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R01015" - - metanetx.reaction: "MNXR104918" - - pmid: "6759603" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.3.1.1" + - bigg.reaction: "TPI" + - kegg.pathway: + - "sce00010" + - "sce00051" + - "sce00562" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R01015" + - metanetx.reaction: "MNXR104918" + - pmid: "6759603" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1055" - name: "tryptophan synthase (indoleglycerol phosphate)" @@ -51136,18 +51136,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.20" - - bigg.reaction: "TRPS1" - - kegg.pathway: - - "sce00260" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01230" - - metanetx.reaction: "MNXR132685" - - pmid: "6342605" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.20" + - bigg.reaction: "TRPS1" + - kegg.pathway: + - "sce00260" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01230" + - metanetx.reaction: "MNXR132685" + - pmid: "6342605" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1056" - name: "tryptophan transaminase" @@ -51164,27 +51164,27 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.39; 2.6.1.57" - - bigg.reaction: "TRPTA" - - kegg.pathway: - - "sce00130" - - "sce00270" - - "sce00300" - - "sce00350" - - "sce00360" - - "sce00380" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00684" - - metanetx.reaction: "MNXR104947" - - pmid: - - "9491082" - - "9491083" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.39; 2.6.1.57" + - bigg.reaction: "TRPTA" + - kegg.pathway: + - "sce00130" + - "sce00270" + - "sce00300" + - "sce00350" + - "sce00360" + - "sce00380" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00684" + - metanetx.reaction: "MNXR104947" + - pmid: + - "9491082" + - "9491083" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1057" - name: "tryptophanyl-tRNA synthetase" @@ -51203,14 +51203,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.2" - - bigg.reaction: "TRPTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03664" - - metanetx.reaction: "MNXR104948" - - pmid: "9046085" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.2" + - bigg.reaction: "TRPTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03664" + - metanetx.reaction: "MNXR104948" + - pmid: "9046085" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1058" - name: "tryptophanyl-tRNA synthetase" @@ -51229,14 +51229,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.2" - - bigg.reaction: "TRPTRSm" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03664" - - metanetx.reaction: "MNXR104948" - - pmid: "2999114" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.2" + - bigg.reaction: "TRPTRSm" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03664" + - metanetx.reaction: "MNXR104948" + - pmid: "2999114" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1063" - name: "tyrosine transaminase" @@ -51253,27 +51253,27 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.39; 2.6.1.57" - - bigg.reaction: "TYRTA" - - kegg.pathway: - - "sce00130" - - "sce00270" - - "sce00300" - - "sce00350" - - "sce00360" - - "sce00380" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00734" - - metanetx.reaction: "MNXR105000" - - pmid: - - "9491082" - - "9491083" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.39; 2.6.1.57" + - bigg.reaction: "TYRTA" + - kegg.pathway: + - "sce00130" + - "sce00270" + - "sce00300" + - "sce00350" + - "sce00360" + - "sce00380" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00734" + - metanetx.reaction: "MNXR105000" + - pmid: + - "9491082" + - "9491083" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1065" - name: "tyrosine transaminase" @@ -51290,25 +51290,25 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.1" - - bigg.reaction: "TYRTAip" - - kegg.pathway: - - "sce00220" - - "sce00250" - - "sce00270" - - "sce00330" - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00734" - - metanetx.reaction: "MNXR105000" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.1" + - bigg.reaction: "TYRTAip" + - kegg.pathway: + - "sce00220" + - "sce00250" + - "sce00270" + - "sce00330" + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00734" + - metanetx.reaction: "MNXR105000" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1066" - name: "tyrosyl-tRNA synthetase" @@ -51327,14 +51327,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.1" - - bigg.reaction: "TYRTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R02918" - - metanetx.reaction: "MNXR105001" - - pmid: "8509419" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.1" + - bigg.reaction: "TYRTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R02918" + - metanetx.reaction: "MNXR105001" + - pmid: "8509419" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1067" - name: "tyrosyl-tRNA synthetase" @@ -51353,14 +51353,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.1" - - bigg.reaction: "TYRTRSm" - - kegg.pathway: "sce00970" - - kegg.reaction: "R02918" - - metanetx.reaction: "MNXR105001" - - pmid: "3315228" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.1" + - bigg.reaction: "TYRTRSm" + - kegg.pathway: "sce00970" + - kegg.reaction: "R02918" + - metanetx.reaction: "MNXR105001" + - pmid: "3315228" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1068" - name: "UDP-glucose:ergosterol glucosyltransferase" @@ -51378,11 +51378,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.173" - - bigg.reaction: "ERGSTGLCT" - - pmid: "10224056" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.4.1.173" + - bigg.reaction: "ERGSTGLCT" + - pmid: "10224056" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1069" - name: "UDP-N-acetylglucosamine diphosphorylase" @@ -51400,15 +51400,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.23" - - kegg.pathway: - - "sce00520" - - "sce01130" - - kegg.reaction: "R00416" - - metanetx.reaction: "MNXR106519" - - pmid: "16408321" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.23" + - kegg.pathway: + - "sce00520" + - "sce01130" + - kegg.reaction: "R00416" + - metanetx.reaction: "MNXR106519" + - pmid: "16408321" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1070" - name: "UDPglucose 4-epimerase" @@ -51423,18 +51423,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.1.3.2; 5.1.3.3" - - bigg.reaction: "UDPG4E" - - kegg.pathway: - - "sce00010" - - "sce00052" - - "sce00520" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00291" - - metanetx.reaction: "MNXR143428" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "5.1.3.2; 5.1.3.3" + - bigg.reaction: "UDPG4E" + - kegg.pathway: + - "sce00010" + - "sce00052" + - "sce00520" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00291" + - metanetx.reaction: "MNXR143428" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1071" - name: "UDPglucose--hexose-1-phosphate uridylyltransferase" @@ -51451,15 +51451,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.12" - - bigg.reaction: "UGLT" - - kegg.pathway: - - "sce00052" - - "sce00520" - - kegg.reaction: "R00955" - - metanetx.reaction: "MNXR143436" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.7.12" + - bigg.reaction: "UGLT" + - kegg.pathway: + - "sce00052" + - "sce00520" + - kegg.reaction: "R00955" + - metanetx.reaction: "MNXR143436" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1072" - name: "UMP kinase" @@ -51476,13 +51476,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.14" - - bigg.reaction: "UMPK" - - kegg.pathway: "sce00240" - - kegg.reaction: "R00158" - - metanetx.reaction: "MNXR105118" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.14" + - bigg.reaction: "UMPK" + - kegg.pathway: "sce00240" + - kegg.reaction: "R00158" + - metanetx.reaction: "MNXR105118" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1073" - name: "UMP kinase" @@ -51499,13 +51499,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.14" - - bigg.reaction: "UMPKn" - - kegg.pathway: "sce00240" - - kegg.reaction: "R00158" - - metanetx.reaction: "MNXR105118" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.14" + - bigg.reaction: "UMPKn" + - kegg.pathway: "sce00240" + - kegg.reaction: "R00158" + - metanetx.reaction: "MNXR105118" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1074" - name: "uracil phosphoribosyltransferase" @@ -51522,13 +51522,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.9" - - bigg.reaction: "UPPRT" - - kegg.pathway: "sce00240" - - kegg.reaction: "R00966" - - metanetx.reaction: "MNXR105142" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.2.9" + - bigg.reaction: "UPPRT" + - kegg.pathway: "sce00240" + - kegg.reaction: "R00966" + - metanetx.reaction: "MNXR105142" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1075" - name: "urea carboxylase" @@ -51548,15 +51548,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.54; 6.3.4.6" - - bigg.reaction: "UREASE" - - kegg.pathway: - - "sce00220" - - "sce00791" - - kegg.reaction: "R00774" - - metanetx.reaction: "MNXR105149" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.1.54; 6.3.4.6" + - bigg.reaction: "UREASE" + - kegg.pathway: + - "sce00220" + - "sce00791" + - kegg.reaction: "R00774" + - metanetx.reaction: "MNXR105149" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1076" - name: "ureidoglycolate hydrolase" @@ -51575,14 +51575,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.3.2.3" - - bigg.reaction: "UGLYCH" - - kegg.pathway: "sce00230" - - kegg.reaction: "R00469" - - metanetx.reaction: "MNXR105091" - - pmid: "1776360" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.3.2.3" + - bigg.reaction: "UGLYCH" + - kegg.pathway: "sce00230" + - kegg.reaction: "R00469" + - metanetx.reaction: "MNXR105091" + - pmid: "1776360" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1077" - name: "uridine kinase (ATP:uridine)" @@ -51600,13 +51600,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.48" - - bigg.reaction: "URIK1" - - kegg.pathway: "sce00240" - - kegg.reaction: "R00964" - - metanetx.reaction: "MNXR105162" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.48" + - bigg.reaction: "URIK1" + - kegg.pathway: "sce00240" + - kegg.reaction: "R00964" + - metanetx.reaction: "MNXR105162" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1078" - name: "uridine kinase (GTP:uridine)" @@ -51624,13 +51624,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.48" - - bigg.reaction: "URIK2" - - kegg.pathway: "sce00240" - - kegg.reaction: "R00968" - - metanetx.reaction: "MNXR105163" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.48" + - bigg.reaction: "URIK2" + - kegg.pathway: "sce00240" + - kegg.reaction: "R00968" + - metanetx.reaction: "MNXR105163" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1079" - name: "uridylate kinase (dUMP)" @@ -51647,13 +51647,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.14" - - bigg.reaction: "URIDK2r" - - kegg.pathway: "sce00240" - - kegg.reaction: "R02098" - - metanetx.reaction: "MNXR105160" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.14" + - bigg.reaction: "URIDK2r" + - kegg.pathway: "sce00240" + - kegg.reaction: "R02098" + - metanetx.reaction: "MNXR105160" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1080" - name: "uridylate kinase (dUMP)" @@ -51670,13 +51670,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.14" - - bigg.reaction: "URIDK2rn" - - kegg.pathway: "sce00240" - - kegg.reaction: "R02098" - - metanetx.reaction: "MNXR105160" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.4.14" + - bigg.reaction: "URIDK2rn" + - kegg.pathway: "sce00240" + - kegg.reaction: "R02098" + - metanetx.reaction: "MNXR105160" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1081" - name: "uroporphyrinogen decarboxylase (uroporphyrinogen III)" @@ -51693,15 +51693,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.37" - - bigg.reaction: "UPPDC1" - - kegg.pathway: - - "sce00860" - - "sce01110" - - kegg.reaction: "R03197" - - metanetx.reaction: "MNXR105140" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.1.37" + - bigg.reaction: "UPPDC1" + - kegg.pathway: + - "sce00860" + - "sce01110" + - kegg.reaction: "R03197" + - metanetx.reaction: "MNXR105140" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1082" - name: "uroporphyrinogen methyltransferase" @@ -51719,15 +51719,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.107" - - bigg.reaction: "UPP3MT" - - kegg.pathway: - - "sce00860" - - "sce01110" - - kegg.reaction: "R03194" - - metanetx.reaction: "MNXR105137" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.1.107" + - bigg.reaction: "UPP3MT" + - kegg.pathway: + - "sce00860" + - "sce01110" + - kegg.reaction: "R03194" + - metanetx.reaction: "MNXR105137" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1083" - name: "uroporphyrinogen-III synthase" @@ -51743,15 +51743,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.75" - - bigg.reaction: "UPP3S" - - kegg.pathway: - - "sce00860" - - "sce01110" - - kegg.reaction: "R03165" - - metanetx.reaction: "MNXR105139" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.2.1.75" + - bigg.reaction: "UPP3S" + - kegg.pathway: + - "sce00860" + - "sce01110" + - kegg.reaction: "R03165" + - metanetx.reaction: "MNXR105139" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1084" - name: "UTP-glucose-1-phosphate uridylyltransferase" @@ -51769,19 +51769,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.9" - - bigg.reaction: "GALUi" - - kegg.pathway: - - "sce00040" - - "sce00052" - - "sce00500" - - "sce00520" - - "sce01130" - - kegg.reaction: "R00289" - - metanetx.reaction: "MNXR143121" - - pmid: "7588797" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.9" + - bigg.reaction: "GALUi" + - kegg.pathway: + - "sce00040" + - "sce00052" + - "sce00500" + - "sce00520" + - "sce01130" + - kegg.reaction: "R00289" + - metanetx.reaction: "MNXR143121" + - pmid: "7588797" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1087" - name: "valine transaminase" @@ -51798,22 +51798,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.42" - - bigg.reaction: "VALTA" - - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01214" - - metanetx.reaction: "MNXR96230" - - pmid: "9748245" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.42" + - bigg.reaction: "VALTA" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01214" + - metanetx.reaction: "MNXR96230" + - pmid: "9748245" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1088" - name: "valine transaminase, mitochondiral" @@ -51830,22 +51830,22 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.42" - - bigg.reaction: "VALTAim" - - kegg.pathway: - - "sce00270" - - "sce00280" - - "sce00290" - - "sce00770" - - "sce01110" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01214" - - metanetx.reaction: "MNXR96230" - - pmid: "9748245" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.42" + - bigg.reaction: "VALTAim" + - kegg.pathway: + - "sce00270" + - "sce00280" + - "sce00290" + - "sce00770" + - "sce01110" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01214" + - metanetx.reaction: "MNXR96230" + - pmid: "9748245" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1089" - name: "valyl-tRNA synthetase" @@ -51864,14 +51864,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.9" - - bigg.reaction: "VALTRS" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03665" - - metanetx.reaction: "MNXR105186" - - pmid: "3294828" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.9" + - bigg.reaction: "VALTRS" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03665" + - metanetx.reaction: "MNXR105186" + - pmid: "3294828" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1090" - name: "valyl-tRNA synthetase" @@ -51890,14 +51890,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.9" - - bigg.reaction: "VALTRSm" - - kegg.pathway: "sce00970" - - kegg.reaction: "R03665" - - metanetx.reaction: "MNXR105186" - - pmid: "3294828" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.1.1.9" + - bigg.reaction: "VALTRSm" + - kegg.pathway: "sce00970" + - kegg.reaction: "R03665" + - metanetx.reaction: "MNXR105186" + - pmid: "3294828" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1091" - name: "xanthine phosphoribosyltransferase" @@ -51914,12 +51914,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.2.-" - - bigg.reaction: "XPPT" - - kegg.reaction: "R02142" - - metanetx.reaction: "MNXR105243" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.2.-" + - bigg.reaction: "XPPT" + - kegg.reaction: "R02142" + - metanetx.reaction: "MNXR105243" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1092" - name: "xylitol dehydrogenase (D-xyulose-forming)" @@ -51937,13 +51937,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.9" - - bigg.reaction: "XYLTD_D" - - kegg.pathway: "sce00040" - - kegg.reaction: "R01896" - - metanetx.reaction: "MNXR105262" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.9" + - bigg.reaction: "XYLTD_D" + - kegg.pathway: "sce00040" + - kegg.reaction: "R01896" + - metanetx.reaction: "MNXR105262" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1093" - name: "xylose reductase" @@ -51961,13 +51961,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.21" - - bigg.reaction: "XYLR" - - kegg.pathway: "sce00040" - - kegg.reaction: "R01431" - - metanetx.reaction: "MNXR105261" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-; 1.1.1.21" + - bigg.reaction: "XYLR" + - kegg.pathway: "sce00040" + - kegg.reaction: "R01431" + - metanetx.reaction: "MNXR105261" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1094" - name: "xylulokinase" @@ -51985,13 +51985,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.17" - - bigg.reaction: "XYLK" - - kegg.pathway: "sce00040" - - kegg.reaction: "R01639" - - metanetx.reaction: "MNXR105255" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.17" + - bigg.reaction: "XYLK" + - kegg.pathway: "sce00040" + - kegg.reaction: "R01639" + - metanetx.reaction: "MNXR105255" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1095" - name: "yUMP synthetase" @@ -52008,9 +52008,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.4.99.-; 5.4.99.25; 5.4.99.44; 5.4.99.45" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "5.4.99.-; 5.4.99.25; 5.4.99.44; 5.4.99.45" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1619" - name: "5'-nucleotidase (GMP)" @@ -52027,13 +52027,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NTD9" - - kegg.reaction: "R01227" - - metanetx.reaction: "MNXR100381" - - pmid: "23670538" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "NTD9" + - kegg.reaction: "R01227" + - metanetx.reaction: "MNXR100381" + - pmid: "23670538" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1838" - name: "homocitrate synthase" @@ -52052,17 +52052,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.3.14" - - kegg.pathway: - - "sce00300" - - "sce00620" - - "sce01130" - - "sce01210" - - "sce01230" - - kegg.reaction: "R00271" - - metanetx.reaction: "MNXR141692" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.3.14" + - kegg.pathway: + - "sce00300" + - "sce00620" + - "sce01130" + - "sce01210" + - "sce01230" + - kegg.reaction: "R00271" + - metanetx.reaction: "MNXR141692" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_2029" - name: "pyridoxine kinase" @@ -52080,13 +52080,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.35" - - bigg.reaction: "PYDXNK" - - kegg.pathway: "sce00750" - - kegg.reaction: "R01909" - - metanetx.reaction: "MNXR103362" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.35" + - bigg.reaction: "PYDXNK" + - kegg.pathway: "sce00750" + - kegg.reaction: "R01909" + - metanetx.reaction: "MNXR103362" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_2112" - name: "kynurenine aminotransferase" @@ -52104,13 +52104,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.7" - - kegg.pathway: "sce00380" - - kegg.reaction: "R01959" - - metanetx.reaction: "MNXR132503" - - pmid: "18205391" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.7" + - kegg.pathway: "sce00380" + - kegg.reaction: "R01959" + - metanetx.reaction: "MNXR132503" + - pmid: "18205391" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2113" - name: "spontaneous kynurenic acid to quinaldic acid" @@ -52129,12 +52129,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R03687" - - metanetx.reaction: "MNXR108341" - - pmid: "18205391" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - kegg.reaction: "R03687" + - metanetx.reaction: "MNXR108341" + - pmid: "18205391" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2114" - name: "spontaneous 2-amino-3-carboxymuconate-6-semialdehyde to quinolinate" @@ -52151,12 +52151,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R04293" - - metanetx.reaction: "MNXR103396" - - pmid: "18205391" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - kegg.reaction: "R04293" + - metanetx.reaction: "MNXR103396" + - pmid: "18205391" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2115" - name: "alcohol dehydrogenase, (acetaldehyde to ethanol)" @@ -52174,19 +52174,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.1" - - bigg.reaction: "ALCD2ir" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00754" - - metanetx.reaction: "MNXR95725" - - pmid: "12499363" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.1" + - bigg.reaction: "ALCD2ir" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00754" + - metanetx.reaction: "MNXR95725" + - pmid: "12499363" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2116" - name: "acetaldehyde dehydrogenase" @@ -52205,18 +52205,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - kegg.pathway: - - "sce00010" - - "sce00340" - - "sce00350" - - "sce00360" - - "sce00410" - - "sce01110" - - kegg.reaction: "R00710" - - metanetx.reaction: "MNXR95749" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - kegg.pathway: + - "sce00010" + - "sce00340" + - "sce00350" + - "sce00360" + - "sce00410" + - "sce01110" + - kegg.reaction: "R00710" + - metanetx.reaction: "MNXR95749" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_2117" - name: "phenylalanine transaminase" @@ -52233,20 +52233,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.58; 2.6.1.7" - - kegg.pathway: - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00692" - - metanetx.reaction: "MNXR125716" - - pmid: - - "9491082" - - "9491083" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.58; 2.6.1.7" + - kegg.pathway: + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00692" + - metanetx.reaction: "MNXR125716" + - pmid: + - "9491082" + - "9491083" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2118" - name: "tryptophan transaminase" @@ -52263,21 +52263,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.57; 2.6.1.7" - - bigg.reaction: "araphe3" - - kegg.pathway: - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00684" - - metanetx.reaction: "MNXR104947" - - pmid: - - "9491082" - - "9491083" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.57; 2.6.1.7" + - bigg.reaction: "araphe3" + - kegg.pathway: + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00684" + - metanetx.reaction: "MNXR104947" + - pmid: + - "9491082" + - "9491083" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2119" - name: "tyrosine transaminase" @@ -52294,20 +52294,20 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.57; 2.6.1.7" - - kegg.pathway: - - "sce00350" - - "sce00360" - - "sce00400" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00734" - - metanetx.reaction: "MNXR105000" - - pmid: - - "9491082" - - "9491083" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.6.1.57; 2.6.1.7" + - kegg.pathway: + - "sce00350" + - "sce00360" + - "sce00400" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00734" + - metanetx.reaction: "MNXR105000" + - pmid: + - "9491082" + - "9491083" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2126" - name: "sedoheptulose bisphosphatase" @@ -52324,21 +52324,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.37" - - kegg.pathway: - - "sce00010" - - "sce00260" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01230" - - kegg.reaction: "R01845" - - metanetx.reaction: "MNXR104279" - - pmid: - - "21663798" - - "22672422" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.37" + - kegg.pathway: + - "sce00010" + - "sce00260" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01230" + - kegg.reaction: "R01845" + - metanetx.reaction: "MNXR104279" + - pmid: + - "21663798" + - "22672422" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2131" - name: "isocitrate dehydrogenase" @@ -52356,24 +52356,24 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.42" - - bigg.reaction: "ICDHym" - - kegg.pathway: - - "sce00020" - - "sce00480" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - "sce04146" - - kegg.reaction: "R00267" - - metanetx.reaction: "MNXR100781" - - pmid: - - "1989987" - - "8099357" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.42" + - bigg.reaction: "ICDHym" + - kegg.pathway: + - "sce00020" + - "sce00480" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - "sce04146" + - kegg.reaction: "R00267" + - metanetx.reaction: "MNXR100781" + - pmid: + - "1989987" + - "8099357" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2140" - name: "fatty-acyl-CoA synthase (n-C16:0CoA)" @@ -52395,13 +52395,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.86" - - kegg.pathway: - - "sce00061" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.86" + - kegg.pathway: + - "sce00061" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2141" - name: "fatty-acyl-CoA synthase (n-C18:0CoA)" @@ -52423,13 +52423,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.86" - - kegg.pathway: - - "sce00061" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.86" + - kegg.pathway: + - "sce00061" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2142" - name: "B-ketoacyl-ACP synthase (acetoacetyl-ACP)" @@ -52448,16 +52448,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.41" - - bigg.reaction: "3OAS40_m" - - kegg.pathway: - - "sce00061" - - "sce00190" - - "sce00780" - - "sce01212" - - pmid: "8412701" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.41" + - bigg.reaction: "3OAS40_m" + - kegg.pathway: + - "sce00061" + - "sce00190" + - "sce00780" + - "sce01212" + - pmid: "8412701" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2143" - name: "B-ketoacyl-ACP synthase (3-oxo-hexanoyl-ACP)" @@ -52476,15 +52476,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.41" - - kegg.pathway: - - "sce00061" - - "sce00190" - - "sce00780" - - "sce01212" - - pmid: "8412701" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.41" + - kegg.pathway: + - "sce00061" + - "sce00190" + - "sce00780" + - "sce01212" + - pmid: "8412701" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2144" - name: "B-ketoacyl-ACP synthase (3-oxo-octanoyl-ACP)" @@ -52503,15 +52503,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.41" - - kegg.pathway: - - "sce00061" - - "sce00190" - - "sce00780" - - "sce01212" - - pmid: "8412701" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.41" + - kegg.pathway: + - "sce00061" + - "sce00190" + - "sce00780" + - "sce01212" + - pmid: "8412701" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2145" - name: "3-oxoacyl-ACP reductase (3-hydroxybutanoyl-ACP)" @@ -52529,17 +52529,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.100" - - bigg.reaction: "3OAR40_m" - - kegg.pathway: - - "sce00061" - - "sce00780" - - "sce01040" - - "sce01130" - - "sce01212" - - pmid: "9388293" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.100" + - bigg.reaction: "3OAR40_m" + - kegg.pathway: + - "sce00061" + - "sce00780" + - "sce01040" + - "sce01130" + - "sce01212" + - pmid: "9388293" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2146" - name: "3-oxoacyl-ACP reductase (3-hydroxyhexanoyl-ACP)" @@ -52557,17 +52557,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.100" - - bigg.reaction: "3OAR60_m" - - kegg.pathway: - - "sce00061" - - "sce00780" - - "sce01040" - - "sce01130" - - "sce01212" - - pmid: "9388293" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.100" + - bigg.reaction: "3OAR60_m" + - kegg.pathway: + - "sce00061" + - "sce00780" + - "sce01040" + - "sce01130" + - "sce01212" + - pmid: "9388293" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2147" - name: "3-oxoacyl-ACP reductase (3-hydroxyoctanoyl-ACP)" @@ -52585,17 +52585,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.100" - - kegg.pathway: - - "sce00061" - - "sce00780" - - "sce01040" - - "sce01130" - - "sce01212" - - metanetx.reaction: "MNXR137225" - - pmid: "9388293" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.100" + - kegg.pathway: + - "sce00061" + - "sce00780" + - "sce01040" + - "sce01130" + - "sce01212" + - metanetx.reaction: "MNXR137225" + - pmid: "9388293" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2148" - name: "3-hydroxyacyl-thioester dehydratase (trans-but-2-enoyl-ACP)" @@ -52611,10 +52611,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.-" - - pmid: "15387819" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.-" + - pmid: "15387819" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2149" - name: "3-hydroxyacyl-thioester dehydratase (trans-hex-2-enoyl-ACP)" @@ -52630,11 +52630,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.-" - - bigg.reaction: "3HAD61_m" - - pmid: "15387819" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.-" + - bigg.reaction: "3HAD61_m" + - pmid: "15387819" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2150" - name: "3-hydroxyacyl-thioester dehydratase (trans-oct-2-enoyl-ACP)" @@ -52650,11 +52650,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.-" - - metanetx.reaction: "MNXR137214" - - pmid: "15387819" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.-" + - metanetx.reaction: "MNXR137214" + - pmid: "15387819" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2151" - name: "enoyl-ACP reductase (butanoyl-ACP)" @@ -52672,13 +52672,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.104" - - kegg.pathway: - - "sce00062" - - "sce01212" - - pmid: "11509667" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.104" + - kegg.pathway: + - "sce00062" + - "sce01212" + - pmid: "11509667" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2152" - name: "enoyl-ACP reductase (hexanoyl-ACP)" @@ -52696,13 +52696,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.104" - - kegg.pathway: - - "sce00062" - - "sce01212" - - pmid: "11509667" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.104" + - kegg.pathway: + - "sce00062" + - "sce01212" + - pmid: "11509667" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2153" - name: "enoyl-ACP reductase (octanoyl-ACP)" @@ -52720,13 +52720,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.104" - - kegg.pathway: - - "sce00062" - - "sce01212" - - pmid: "11509667" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.104" + - kegg.pathway: + - "sce00062" + - "sce01212" + - pmid: "11509667" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2154" - name: "elongase I (3-oxotetradecanoyl-CoA)" @@ -52745,16 +52745,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.199" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - metanetx.reaction: "MNXR122920" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - metanetx.reaction: "MNXR122920" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2155" - name: "elongase I (3-oxopalmitoyl-CoA)" @@ -52773,16 +52773,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.199" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - metanetx.reaction: "MNXR122921" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - metanetx.reaction: "MNXR122921" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2156" - name: "elongase II (3-oxooctadecanoyl-CoA)" @@ -52801,17 +52801,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.199" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - kegg.reaction: "R07758" - - metanetx.reaction: "MNXR94939" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - kegg.reaction: "R07758" + - metanetx.reaction: "MNXR94939" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2157" - name: "elongase II or III (3-oxoicosanoyl-CoA)" @@ -52830,16 +52830,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.199" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - metanetx.reaction: "MNXR103450" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - metanetx.reaction: "MNXR103450" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2158" - name: "elongase II or III (3-oxodocosanoyl-CoA)" @@ -52858,15 +52858,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.199" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2159" - name: "elongase II or III (3-oxotetracosanoyl-CoA)" @@ -52885,15 +52885,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.199" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2160" - name: "elongase III (3-oxohexacosanoyl-CoA)" @@ -52912,16 +52912,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.199" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - metanetx.reaction: "MNXR118002" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.199" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - metanetx.reaction: "MNXR118002" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2161" - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxytetradecanoyl-CoA)" @@ -52939,15 +52939,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.330" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2162" - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxypalmitoyl-CoA)" @@ -52965,15 +52965,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.330" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2163" - name: "B-ketoacyl-CoA reductase (3-hydroxyoctadecanoyl-CoA)" @@ -52991,17 +52991,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.330" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - kegg.reaction: "R07759" - - metanetx.reaction: "MNXR103465" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - kegg.reaction: "R07759" + - metanetx.reaction: "MNXR103465" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2164" - name: "B-ketoacyl-CoA reductase (3-hydroxyicosanoyl-CoA)" @@ -53019,16 +53019,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.330" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - metanetx.reaction: "MNXR103451" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - metanetx.reaction: "MNXR103451" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2165" - name: "B-ketoacyl-CoA reductase (3-hydroxydocosanoyl-CoA)" @@ -53046,16 +53046,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.330" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - metanetx.reaction: "MNXR103455" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - metanetx.reaction: "MNXR103455" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2166" - name: "B-ketoacyl-CoA reductase (3-hydroxytetracosanoyl-CoA)" @@ -53073,16 +53073,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.330" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - metanetx.reaction: "MNXR118005" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - metanetx.reaction: "MNXR118005" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2167" - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxyhexacosanoyl-CoA)" @@ -53100,15 +53100,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.330" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.330" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2168" - name: "B-hydroxyacyl-CoA dehydratase (trans-tetradec-2-enoyl-CoA)" @@ -53124,17 +53124,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.134" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - kegg.reaction: "R04740" - - metanetx.reaction: "MNXR97891" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - kegg.reaction: "R04740" + - metanetx.reaction: "MNXR97891" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2169" - name: "B-hydroxyacyl-CoA dehydratase (trans-hexadec-2-enoyl-CoA)" @@ -53150,15 +53150,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.134" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2170" - name: "B-hydroxyacyl-CoA dehydratase (trans-octadec-2-enoyl-CoA)" @@ -53174,17 +53174,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.134" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - kegg.reaction: "R07760" - - metanetx.reaction: "MNXR103466" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - kegg.reaction: "R07760" + - metanetx.reaction: "MNXR103466" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2171" - name: "B-hydroxyacyl-CoA dehydratase (trans-icos-2-enoyl-CoA)" @@ -53200,15 +53200,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.134" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2172" - name: "B-hydroxyacyl-CoA dehydratase (trans-docos-2-enoyl-CoA)" @@ -53224,15 +53224,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.134" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2173" - name: "B-hydroxyacyl-CoA dehydratase (trans-tetracos-2-enoyl-CoA)" @@ -53248,16 +53248,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.134" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - metanetx.reaction: "MNXR118009" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - metanetx.reaction: "MNXR118009" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2174" - name: "B-hydroxyacyl-CoA dehydratase (trans-hexacos-2-enoyl-CoA)" @@ -53273,15 +53273,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.134" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.134" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2175" - name: "trans-2-enoyl-CoA reductase (n-C14:0CoA)" @@ -53299,17 +53299,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.93" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - kegg.reaction: "R03989" - - metanetx.reaction: "MNXR95374" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - kegg.reaction: "R03989" + - metanetx.reaction: "MNXR95374" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2176" - name: "trans-2-enoyl-CoA reductase (n-C16:0CoA)" @@ -53327,15 +53327,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.93" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2177" - name: "trans-2-enoyl-CoA reductase (n-C18:0CoA)" @@ -53353,17 +53353,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.93" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - kegg.reaction: "R07761" - - metanetx.reaction: "MNXR97895" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - kegg.reaction: "R07761" + - metanetx.reaction: "MNXR97895" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2178" - name: "trans-2-enoyl-CoA reductase (n-C20:0CoA)" @@ -53381,15 +53381,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.93" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2179" - name: "trans-2-enoyl-CoA reductase (n-C22:0CoA)" @@ -53407,15 +53407,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.93" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2180" - name: "trans-2-enoyl-CoA reductase (n-C24:0CoA)" @@ -53433,15 +53433,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.93" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2181" - name: "trans-2-enoyl-CoA reductase (n-C26:0CoA)" @@ -53459,16 +53459,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.93" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - "sce01212" - - metanetx.reaction: "MNXR118013" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.93" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - "sce01212" + - metanetx.reaction: "MNXR118013" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2182" - name: "palmitoyl-CoA desaturase (n-C16:0CoA -> n-C16:1CoA), ER membrane" @@ -53488,13 +53488,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.19.1" - - kegg.pathway: - - "sce01040" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.14.19.1" + - kegg.pathway: + - "sce01040" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2183" - name: "stearoyl-CoA desaturase (n-C18:0CoA -> n-C18:1CoA), ER membrane" @@ -53514,13 +53514,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.19.1" - - kegg.pathway: - - "sce01040" - - "sce01212" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.14.19.1" + - kegg.pathway: + - "sce01040" + - "sce01212" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2194" - name: "fatty-acid--CoA ligase (dodecanoate), ER membrane" @@ -53539,16 +53539,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR120051" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR120051" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2195" - name: "fatty-acid--CoA ligase (tetradecanoate), ER membrane" @@ -53567,16 +53567,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR126663" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR126663" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2196" - name: "fatty-acid--CoA ligase (hexadecanoate), ER membrane" @@ -53595,17 +53595,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - kegg.reaction: "R01280" - - metanetx.reaction: "MNXR99153" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - kegg.reaction: "R01280" + - metanetx.reaction: "MNXR99153" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2197" - name: "fatty-acid--CoA ligase (hexadecenoate), ER membrane" @@ -53624,16 +53624,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR126667" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR126667" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2198" - name: "fatty-acid--CoA ligase (octadecanoate), ER membrane" @@ -53652,16 +53652,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR99164" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR99164" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2199" - name: "fatty-acid--CoA ligase (octadecenoate), ER membrane" @@ -53680,16 +53680,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR122919" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR122919" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2200" - name: "fatty-acid--CoA ligase (dodecanoate), lipid particle" @@ -53708,16 +53708,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR120051" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR120051" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2201" - name: "fatty-acid--CoA ligase (tetradecanoate), lipid particle" @@ -53736,16 +53736,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR126663" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR126663" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2202" - name: "fatty-acid--CoA ligase (hexadecanoate), lipid particle" @@ -53764,17 +53764,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - kegg.reaction: "R01280" - - metanetx.reaction: "MNXR99153" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - kegg.reaction: "R01280" + - metanetx.reaction: "MNXR99153" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2203" - name: "fatty-acid--CoA ligase (hexadecenoate), lipid particle" @@ -53793,16 +53793,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR126667" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR126667" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2204" - name: "fatty-acid--CoA ligase (octadecanoate), lipid particle" @@ -53821,16 +53821,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR99164" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR99164" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2205" - name: "fatty-acid--CoA ligase (octadecenoate), lipid particle" @@ -53849,16 +53849,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR122919" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR122919" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2206" - name: "fatty-acid--CoA ligase (hexadecenoate), peroxisome" @@ -53877,17 +53877,17 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - bigg.reaction: "FACOAL161p" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR126667" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - bigg.reaction: "FACOAL161p" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR126667" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2207" - name: "fatty-acid--CoA ligase (octadecanoate), peroxisome" @@ -53906,16 +53906,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR99164" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR99164" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2208" - name: "fatty-acid--CoA ligase (octadecenoate), peroxisome" @@ -53934,16 +53934,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR122919" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR122919" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2209" - name: "fatty-acid--CoA ligase (arachidate), cell envelope" @@ -53962,15 +53962,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2210" - name: "fatty-acid--CoA ligase (behenate), cell envelope" @@ -53989,15 +53989,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2211" - name: "fatty-acid--CoA ligase (lignoceric acid), cell envelope" @@ -54016,16 +54016,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR126665" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR126665" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2212" - name: "fatty-acid--CoA ligase (cerotic acid), cell envelope" @@ -54044,16 +54044,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR128076" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR128076" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2213" - name: "fatty-acid--CoA ligase (behenate), ER membrane" @@ -54072,10 +54072,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2214" - name: "fatty-acid--CoA ligase (lignoceric acid), ER membrane" @@ -54094,11 +54094,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR126665" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR126665" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2215" - name: "fatty-acid--CoA ligase (cerotic acid), ER membrane" @@ -54117,11 +54117,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR128076" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR128076" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2216" - name: "fatty-acid--CoA ligase (behenate), lipid particle" @@ -54140,10 +54140,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2217" - name: "fatty-acid--CoA ligase (lignoceric acid), lipid particle" @@ -54162,11 +54162,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR126665" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR126665" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2218" - name: "fatty-acid--CoA ligase (cerotic acid), lipid particle" @@ -54185,11 +54185,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR128076" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR128076" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2232" - name: "peroxisomal acyl-CoA thioesterase (4:0)" @@ -54207,14 +54207,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.2" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - pmid: "16490786" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.2.2" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - pmid: "16490786" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2233" - name: "peroxisomal acyl-CoA thioesterase (6:0)" @@ -54232,16 +54232,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.2" - - bigg.reaction: "HXCOAx" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - metanetx.reaction: "MNXR127520" - - pmid: "16490786" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.2.2" + - bigg.reaction: "HXCOAx" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - metanetx.reaction: "MNXR127520" + - pmid: "16490786" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2234" - name: "peroxisomal acyl-CoA thioesterase (16:1)" @@ -54259,15 +54259,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.2" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - metanetx.reaction: "MNXR116444" - - pmid: "16490786" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.2.2" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - metanetx.reaction: "MNXR116444" + - pmid: "16490786" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2235" - name: "peroxisomal acyl-CoA thioesterase (18:1)" @@ -54285,16 +54285,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.2" - - kegg.pathway: - - "sce00062" - - "sce01040" - - "sce01110" - - kegg.reaction: "R08176" - - metanetx.reaction: "MNXR111750" - - pmid: "16490786" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.2.2" + - kegg.pathway: + - "sce00062" + - "sce01040" + - "sce01110" + - kegg.reaction: "R08176" + - metanetx.reaction: "MNXR111750" + - pmid: "16490786" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2236" - name: "acyl-CoA oxidase (butanoyl-CoA)" @@ -54311,18 +54311,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - bigg.reaction: "HMR_3102" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR127857" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.3.6" + - bigg.reaction: "HMR_3102" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR127857" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2237" - name: "acyl-CoA oxidase (hexanoyl-CoA)" @@ -54339,18 +54339,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - bigg.reaction: "HMR_3098" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR127546" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.3.6" + - bigg.reaction: "HMR_3098" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR127546" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2238" - name: "acyl-CoA oxidase (octanoyl-CoA)" @@ -54367,16 +54367,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2239" - name: "acyl-CoA oxidase (icosanoyl-CoA)" @@ -54393,16 +54393,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2240" - name: "acyl-CoA oxidase (docosanoyl-CoA)" @@ -54419,16 +54419,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2241" - name: "acyl-CoA oxidase (tetracosanoyl-CoA)" @@ -54445,18 +54445,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - bigg.reaction: "HMR_3062" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - metanetx.reaction: "MNXR127548" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.3.6" + - bigg.reaction: "HMR_3062" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - metanetx.reaction: "MNXR127548" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2242" - name: "acyl-CoA oxidase (palmitoleoyl-CoA)" @@ -54474,16 +54474,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2243" - name: "acyl-CoA oxidase (cis-tetradec-7-enoyl-CoA)" @@ -54500,16 +54500,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2244" - name: "acyl-CoA oxidase (cis-dodec-5-enoyl-CoA)" @@ -54526,16 +54526,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2245" - name: "acyl-CoA oxidase (oleoyl-CoA)" @@ -54552,16 +54552,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2246" - name: "acyl-CoA oxidase (cis-hexadec-7-enoyl-CoA)" @@ -54578,16 +54578,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2247" - name: "acyl-CoA oxidase (cis-tetradec-5-enoyl-CoA)" @@ -54604,16 +54604,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.3.6" - - kegg.pathway: - - "sce00071" - - "sce01040" - - "sce01110" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.3.6" + - kegg.pathway: + - "sce00071" + - "sce01040" + - "sce01110" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2248" - name: "2-enoyl-CoA hydratase (3-hydroxydecanoyl-CoA)" @@ -54629,13 +54629,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - bigg.reaction: "ECOAH4p" - - kegg.reaction: "R04744" - - metanetx.reaction: "MNXR97889" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - bigg.reaction: "ECOAH4p" + - kegg.reaction: "R04744" + - metanetx.reaction: "MNXR97889" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2249" - name: "2-enoyl-CoA hydratase (3-hydroxydodecanoyl-CoA)" @@ -54651,13 +54651,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - bigg.reaction: "ECOAH5p" - - kegg.reaction: "R04170" - - metanetx.reaction: "MNXR97890" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - bigg.reaction: "ECOAH5p" + - kegg.reaction: "R04170" + - metanetx.reaction: "MNXR97890" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2250" - name: "2-enoyl-CoA hydratase (3-hydroxytetradecanoyl-CoA)" @@ -54673,13 +54673,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - bigg.reaction: "ECOAH6p" - - kegg.reaction: "R04740" - - metanetx.reaction: "MNXR97891" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - bigg.reaction: "ECOAH6p" + - kegg.reaction: "R04740" + - metanetx.reaction: "MNXR97891" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2251" - name: "2-enoyl-CoA hydratase (3-hydroxyhexadecanoyl-CoA)" @@ -54695,13 +54695,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - bigg.reaction: "ECOAH7p" - - kegg.reaction: "R04738" - - metanetx.reaction: "MNXR97892" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - bigg.reaction: "ECOAH7p" + - kegg.reaction: "R04738" + - metanetx.reaction: "MNXR97892" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2252" - name: "2-enoyl-CoA hydratase (3-hydroxyoctadecanoyl-CoA)" @@ -54717,13 +54717,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - bigg.reaction: "HMR_3075" - - kegg.reaction: "R07760" - - metanetx.reaction: "MNXR103466" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - bigg.reaction: "HMR_3075" + - kegg.reaction: "R07760" + - metanetx.reaction: "MNXR103466" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2253" - name: "2-enoyl-CoA hydratase (3-hydroxyhexacosanoyl-CoA)" @@ -54739,10 +54739,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2254" - name: "2-enoyl-CoA hydratase (3-hydroxybutanoyl-CoA)" @@ -54759,10 +54759,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2255" - name: "2-enoyl-CoA hydratase (3-hydroxyhexanoyl-CoA)" @@ -54778,10 +54778,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2256" - name: "2-enoyl-CoA hydratase (3-hydroxyoctanoyl-CoA)" @@ -54798,11 +54798,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - metanetx.reaction: "MNXR118594" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - metanetx.reaction: "MNXR118594" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2257" - name: "2-enoyl-CoA hydratase (3-hydroxyicosanoyl-CoA)" @@ -54818,10 +54818,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2258" - name: "2-enoyl-CoA hydratase (3-hydroxydocosanoyl-CoA)" @@ -54837,10 +54837,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2259" - name: "2-enoyl-CoA hydratase (3-hydroxytetracosanoyl-CoA)" @@ -54856,11 +54856,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - metanetx.reaction: "MNXR118009" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - metanetx.reaction: "MNXR118009" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2260" - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-hexadec-9-enoyl-CoA)" @@ -54876,10 +54876,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2261" - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-tetradec-7-enoyl-CoA)" @@ -54895,10 +54895,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2262" - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-dodec-5-enoyl-CoA)" @@ -54914,10 +54914,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2263" - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-octadec-9-enoyl-CoA)" @@ -54934,10 +54934,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2264" - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-hexadec-7-enoyl-CoA)" @@ -54953,10 +54953,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2265" - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-tetradec-5-enoyl-CoA)" @@ -54972,10 +54972,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2266" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxodecanoyl-CoA)" @@ -54993,13 +54993,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - bigg.reaction: "HACD4p" - - kegg.reaction: "R04743" - - metanetx.reaction: "MNXR100545" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - bigg.reaction: "HACD4p" + - kegg.reaction: "R04743" + - metanetx.reaction: "MNXR100545" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2267" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxododecanoyl-CoA)" @@ -55017,13 +55017,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - bigg.reaction: "HACD5p" - - kegg.reaction: "R04741" - - metanetx.reaction: "MNXR100546" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - bigg.reaction: "HACD5p" + - kegg.reaction: "R04741" + - metanetx.reaction: "MNXR100546" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2268" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexadecanoyl-CoA)" @@ -55041,13 +55041,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - bigg.reaction: "HACD7p" - - kegg.reaction: "R04737" - - metanetx.reaction: "MNXR100548" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - bigg.reaction: "HACD7p" + - kegg.reaction: "R04737" + - metanetx.reaction: "MNXR100548" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2269" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxooctadecanoyl-CoA)" @@ -55065,12 +55065,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - bigg.reaction: "HMR_3076" - - metanetx.reaction: "MNXR126787" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - bigg.reaction: "HMR_3076" + - metanetx.reaction: "MNXR126787" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2270" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexacosanoyl-CoA)" @@ -55088,10 +55088,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2271" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxobutanoyl-CoA)" @@ -55109,10 +55109,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2272" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexanoyl-CoA)" @@ -55130,10 +55130,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2273" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxooctanoyl-CoA)" @@ -55151,10 +55151,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2274" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxoicosanoyl-CoA)" @@ -55172,10 +55172,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2275" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxodocosanoyl-CoA)" @@ -55193,10 +55193,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2276" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxotetracosanoyl-CoA)" @@ -55214,10 +55214,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2277" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-hexadec-9-enoyl-CoA)" @@ -55235,10 +55235,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2278" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-tetradec-7-enoyl-CoA)" @@ -55256,10 +55256,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2279" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-dodec-5-enoyl-CoA)" @@ -55277,10 +55277,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2280" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-octadec-9-enoyl-CoA)" @@ -55298,10 +55298,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2281" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-hexadec-7-enoyl-CoA)" @@ -55319,10 +55319,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2282" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-tetradec-5-enoyl-CoA)" @@ -55340,10 +55340,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.n12; 4.2.1.119" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2283" - name: "acetyl-CoA C-acyltransferase (acetyl-CoA)" @@ -55359,21 +55359,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - bigg.reaction: "ACACT1x" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - kegg.reaction: "R00238" - - metanetx.reaction: "MNXR95194" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT1x" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - kegg.reaction: "R00238" + - metanetx.reaction: "MNXR95194" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2284" - name: "acetyl-CoA C-acyltransferase (butanoyl-CoA)" @@ -55390,19 +55390,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - bigg.reaction: "ACACT2" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT2" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2285" - name: "acetyl-CoA C-acyltransferase (hexanoyl-CoA)" @@ -55419,19 +55419,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - bigg.reaction: "ACACT3" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.16" + - bigg.reaction: "ACACT3" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2286" - name: "acetyl-CoA C-acyltransferase (stearoyl-CoA)" @@ -55448,19 +55448,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - bigg.reaction: "HMR_3073" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.16" + - bigg.reaction: "HMR_3073" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2287" - name: "acetyl-CoA C-acyltransferase (icosanoyl-CoA)" @@ -55477,19 +55477,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - bigg.reaction: "HMR_3069" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.16" + - bigg.reaction: "HMR_3069" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2288" - name: "acetyl-CoA C-acyltransferase (docosanoyl-CoA)" @@ -55506,19 +55506,19 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - bigg.reaction: "HMR_3065" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.16" + - bigg.reaction: "HMR_3065" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2289" - name: "acetyl-CoA C-acyltransferase (cis-tetradec-7-enoyl-CoA)" @@ -55535,18 +55535,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2290" - name: "acetyl-CoA C-acyltransferase (cis-dodec-5-enoyl-CoA)" @@ -55563,18 +55563,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2291" - name: "acetyl-CoA C-acyltransferase (cis-dec-3-enoyl-CoA)" @@ -55591,18 +55591,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2292" - name: "acetyl-CoA C-acyltransferase (cis-hexadec-7-enoyl-CoA)" @@ -55619,18 +55619,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2293" - name: "acetyl-CoA C-acyltransferase (cis-tetradec-5-enoyl-CoA)" @@ -55647,18 +55647,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2294" - name: "acetyl-CoA C-acyltransferase (cis-dodec-3-enoyl-CoA)" @@ -55675,18 +55675,18 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.16" - - kegg.pathway: - - "sce00071" - - "sce00280" - - "sce01040" - - "sce01110" - - "sce01130" - - "sce01212" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.16" + - kegg.pathway: + - "sce00071" + - "sce00280" + - "sce01040" + - "sce01110" + - "sce01130" + - "sce01212" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2295" - name: "delta3,delta2-enoyl-CoA isomerase (cis-dec-3-enoyl-CoA)" @@ -55702,13 +55702,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.3.8" - - kegg.pathway: - - "sce00071" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.3.3.8" + - kegg.pathway: + - "sce00071" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2296" - name: "delta3,delta2-enoyl-CoA isomerase (trans-2,cis-5-dodecadienoyl-CoA)" @@ -55723,13 +55723,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.3.8" - - kegg.pathway: - - "sce00071" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.3.3.8" + - kegg.pathway: + - "sce00071" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2297" - name: "delta3,delta2-enoyl-CoA isomerase (trans-dodec-3-enoyl-CoA)" @@ -55745,14 +55745,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.3.8" - - bigg.reaction: "FAOXC121x" - - kegg.pathway: - - "sce00071" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.3.3.8" + - bigg.reaction: "FAOXC121x" + - kegg.pathway: + - "sce00071" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2298" - name: "delta3,delta2-enoyl-CoA isomerase (cis-dodec-3-enoyl-CoA)" @@ -55768,13 +55768,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.3.8" - - kegg.pathway: - - "sce00071" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.3.3.8" + - kegg.pathway: + - "sce00071" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2299" - name: "delta3,delta2-enoyl-CoA isomerase (trans-2,cis-5-tetradecadienoyl-CoA)" @@ -55789,13 +55789,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.3.8" - - kegg.pathway: - - "sce00071" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.3.3.8" + - kegg.pathway: + - "sce00071" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2300" - name: "delta3,delta2-enoyl-CoA isomerase (trans-tetradec-3-enoyl-CoA)" @@ -55811,13 +55811,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.3.8" - - kegg.pathway: - - "sce00071" - - "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.3.3.8" + - kegg.pathway: + - "sce00071" + - "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2301" - name: "delta(3,5)-delta(2,4)-dienoyl-CoA isomerase (trans-3,cis-5-dodecadienoyl-CoA)" @@ -55832,10 +55832,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.3.-" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.3.3.-" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2302" - name: "delta(3,5)-delta(2,4)-dienoyl-CoA isomerase (trans-3,cis-5-tetradecadienoyl-CoA)" @@ -55850,10 +55850,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.3.3.-" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "5.3.3.-" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2303" - name: "2,4-dienoyl-CoA reductase (trans-2,trans-4-dodecadienoyl-CoA)" @@ -55871,11 +55871,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.34" - - kegg.pathway: "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.34" + - kegg.pathway: "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2304" - name: "2,4-dienoyl-CoA reductase (trans-2,trans-4-tetradecadienoyl-CoA)" @@ -55893,11 +55893,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.34" - - kegg.pathway: "sce04146" - - pmid: "12697341" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.3.1.34" + - kegg.pathway: "sce04146" + - pmid: "12697341" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2305" - name: "cis-aconitate(3-) to isocitrate" @@ -55913,21 +55913,21 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.3" - - bigg.reaction: "ACONTb" - - kegg.pathway: - - "sce00020" - - "sce00630" - - "sce01110" - - "sce01130" - - "sce01200" - - "sce01210" - - "sce01230" - - kegg.reaction: "R01900" - - metanetx.reaction: "MNXR95387" - - pmid: "15975908" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.2.1.3" + - bigg.reaction: "ACONTb" + - kegg.pathway: + - "sce00020" + - "sce00630" + - "sce01110" + - "sce01130" + - "sce01200" + - "sce01210" + - "sce01230" + - kegg.reaction: "R01900" + - metanetx.reaction: "MNXR95387" + - pmid: "15975908" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2308" - name: "glycerol-3-phosphate acyltransferase (16:0), ER membrane" @@ -55945,14 +55945,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2309" - name: "glycerol-3-phosphate acyltransferase (16:1), ER membrane" @@ -55970,14 +55970,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2310" - name: "glycerol-3-phosphate acyltransferase (18:0), ER membrane" @@ -55995,14 +55995,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2311" - name: "glycerol-3-phosphate acyltransferase (18:1), ER membrane" @@ -56020,14 +56020,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2312" - name: "dihydroxyacetone phosphate acyltransferase (16:0), ER membrane" @@ -56045,14 +56045,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2313" - name: "dihydroxyacetone phosphate acyltransferase (16:1), ER membrane" @@ -56070,14 +56070,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2314" - name: "dihydroxyacetone phosphate acyltransferase (18:0), ER membrane" @@ -56095,14 +56095,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2315" - name: "dihydroxyacetone phosphate acyltransferase (18:1), ER membrane" @@ -56120,14 +56120,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2316" - name: "glycerol-3-phosphate acyltransferase (16:0), lipid particle" @@ -56145,14 +56145,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2317" - name: "glycerol-3-phosphate acyltransferase (16:1), lipid particle" @@ -56170,14 +56170,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2318" - name: "glycerol-3-phosphate acyltransferase (18:0), lipid particle" @@ -56195,14 +56195,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2319" - name: "glycerol-3-phosphate acyltransferase (18:1), lipid particle" @@ -56220,14 +56220,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2320" - name: "dihydroxyacetone phosphate acyltransferase (16:0), lipid particle" @@ -56245,14 +56245,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2321" - name: "dihydroxyacetone phosphate acyltransferase (16:1), lipid particle" @@ -56270,14 +56270,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2322" - name: "dihydroxyacetone phosphate acyltransferase (18:0), lipid particle" @@ -56295,14 +56295,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2323" - name: "dihydroxyacetone phosphate acyltransferase (18:1), lipid particle" @@ -56320,14 +56320,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.15; 2.3.1.42" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2324" - name: "acyl dhap reductase (16:0), ER membrane" @@ -56345,11 +56345,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.101" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2325" - name: "acyl dhap reductase (16:1), ER membrane" @@ -56367,11 +56367,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.101" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2326" - name: "acyl dhap reductase (18:0), ER membrane" @@ -56389,11 +56389,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.101" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2327" - name: "acyl dhap reductase (18:1), ER membrane" @@ -56411,11 +56411,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.101" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2328" - name: "acyl dhap reductase (16:0), lipid particle" @@ -56433,11 +56433,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.101" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2329" - name: "acyl dhap reductase (16:1), lipid particle" @@ -56455,11 +56455,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.101" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2330" - name: "acyl dhap reductase (18:0), lipid particle" @@ -56477,11 +56477,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.101" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2331" - name: "acyl dhap reductase (18:1), lipid particle" @@ -56499,11 +56499,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.101" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "1.1.1.101" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2332" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-16:1), ER membrane" @@ -56520,14 +56520,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2333" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-18:1), ER membrane" @@ -56544,14 +56544,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2334" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-16:1), ER membrane" @@ -56568,14 +56568,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2335" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-18:1), ER membrane" @@ -56592,14 +56592,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2336" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-16:1), ER membrane" @@ -56616,14 +56616,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2337" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-18:1), ER membrane" @@ -56640,14 +56640,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2338" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-16:1), ER membrane" @@ -56664,14 +56664,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2339" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-18:1), ER membrane" @@ -56688,14 +56688,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23; 2.3.1.51" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2340" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-18:1), lipid particle" @@ -56712,15 +56712,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.51; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.51; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2341" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-18:1), lipid particle" @@ -56737,15 +56737,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.51; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.51; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2342" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-18:1), lipid particle" @@ -56762,15 +56762,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.51; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.51; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2343" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-18:1), lipid particle" @@ -56787,15 +56787,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.51; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.51; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2344" - name: "PA phosphatase (1-16:0, 2-16:1), ER membrane" @@ -56813,14 +56813,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2345" - name: "PA phosphatase (1-16:0, 2-18:1), ER membrane" @@ -56838,14 +56838,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2346" - name: "PA phosphatase (1-16:1, 2-16:1), ER membrane" @@ -56863,14 +56863,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2347" - name: "PA phosphatase (1-16:1, 2-18:1), ER membrane" @@ -56888,14 +56888,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2348" - name: "PA phosphatase (1-18:0, 2-16:1), ER membrane" @@ -56913,14 +56913,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2349" - name: "PA phosphatase (1-18:0, 2-18:1), ER membrane" @@ -56938,14 +56938,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2350" - name: "PA phosphatase (1-18:1, 2-16:1), ER membrane" @@ -56963,14 +56963,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2351" - name: "PA phosphatase (1-18:1, 2-18:1), ER membrane" @@ -56988,14 +56988,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2352" - name: "PA phosphatase (1-16:0, 2-16:1), vacuolar membrane" @@ -57013,14 +57013,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2353" - name: "PA phosphatase (1-16:0, 2-18:1), vacuolar membrane" @@ -57038,14 +57038,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2354" - name: "PA phosphatase (1-16:1, 2-16:1), vacuolar membrane" @@ -57063,14 +57063,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2355" - name: "PA phosphatase (1-16:1, 2-18:1), vacuolar membrane" @@ -57088,14 +57088,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2356" - name: "PA phosphatase (1-18:0, 2-16:1), vacuolar membrane" @@ -57113,14 +57113,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2357" - name: "PA phosphatase (1-18:0, 2-18:1), vacuolar membrane" @@ -57138,14 +57138,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2358" - name: "PA phosphatase (1-18:1, 2-16:1), vacuolar membrane" @@ -57163,14 +57163,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2359" - name: "PA phosphatase (1-18:1, 2-18:1), vacuolar membrane" @@ -57188,14 +57188,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2360" - name: "PA phosphatase (1-16:0, 2-16:1), Golgi membrane" @@ -57213,10 +57213,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2361" - name: "PA phosphatase (1-16:0, 2-18:1), Golgi membrane" @@ -57234,10 +57234,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2362" - name: "PA phosphatase (1-16:1, 2-16:1), Golgi membrane" @@ -57255,10 +57255,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2363" - name: "PA phosphatase (1-16:1, 2-18:1), Golgi membrane" @@ -57276,10 +57276,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2364" - name: "PA phosphatase (1-18:0, 2-16:1), Golgi membrane" @@ -57297,10 +57297,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2365" - name: "PA phosphatase (1-18:0, 2-18:1), Golgi membrane" @@ -57318,10 +57318,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2366" - name: "PA phosphatase (1-18:1, 2-16:1), Golgi membrane" @@ -57339,10 +57339,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2367" - name: "PA phosphatase (1-18:1, 2-18:1), Golgi membrane" @@ -57360,10 +57360,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2368" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:0), ER membrane" @@ -57380,13 +57380,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2369" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:0), ER membrane" @@ -57403,13 +57403,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2370" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:0), ER membrane" @@ -57426,13 +57426,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2371" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:0), ER membrane" @@ -57449,13 +57449,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2372" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:0), ER membrane" @@ -57472,13 +57472,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2373" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:0), ER membrane" @@ -57495,13 +57495,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2374" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:0), ER membrane" @@ -57518,13 +57518,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2375" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:0), ER membrane" @@ -57541,13 +57541,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2376" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:1), ER membrane" @@ -57564,13 +57564,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2377" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:1), ER membrane" @@ -57587,13 +57587,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2378" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:1), ER membrane" @@ -57610,13 +57610,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2379" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:1), ER membrane" @@ -57633,13 +57633,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2380" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:1), ER membrane" @@ -57656,13 +57656,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2381" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:1), ER membrane" @@ -57679,13 +57679,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2382" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:1), ER membrane" @@ -57702,13 +57702,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2383" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:1), ER membrane" @@ -57725,13 +57725,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2384" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:0), ER membrane" @@ -57748,13 +57748,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2385" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:0), ER membrane" @@ -57771,13 +57771,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2386" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:0), ER membrane" @@ -57794,13 +57794,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2387" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:0), ER membrane" @@ -57817,13 +57817,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2388" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:0), ER membrane" @@ -57840,13 +57840,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2389" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:0), ER membrane" @@ -57863,13 +57863,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2390" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:0), ER membrane" @@ -57886,13 +57886,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2391" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:0), ER membrane" @@ -57909,13 +57909,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2392" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:1), ER membrane" @@ -57932,13 +57932,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2393" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:1), ER membrane" @@ -57955,13 +57955,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2394" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:1), ER membrane" @@ -57978,13 +57978,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2395" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:1), ER membrane" @@ -58001,13 +58001,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2396" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:1), ER membrane" @@ -58024,13 +58024,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2397" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:1), ER membrane" @@ -58047,13 +58047,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2398" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:1), ER membrane" @@ -58070,13 +58070,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2399" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:1), ER membrane" @@ -58093,13 +58093,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - kegg.pathway: - - "sce00100" - - "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" + - kegg.pathway: + - "sce00100" + - "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2400" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:0), lipid particle" @@ -58116,11 +58116,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2401" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:0), lipid particle" @@ -58137,11 +58137,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2402" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:0), lipid particle" @@ -58158,11 +58158,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2403" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:0), lipid particle" @@ -58179,11 +58179,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2404" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:0), lipid particle" @@ -58200,11 +58200,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2405" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:0), lipid particle" @@ -58221,11 +58221,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2406" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:0), lipid particle" @@ -58242,11 +58242,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2407" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:0), lipid particle" @@ -58263,11 +58263,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2408" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:1), lipid particle" @@ -58284,11 +58284,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2409" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:1), lipid particle" @@ -58305,11 +58305,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2410" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:1), lipid particle" @@ -58326,11 +58326,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2411" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:1), lipid particle" @@ -58347,11 +58347,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2412" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:1), lipid particle" @@ -58368,11 +58368,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2413" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:1), lipid particle" @@ -58389,11 +58389,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2414" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:1), lipid particle" @@ -58410,11 +58410,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2415" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:1), lipid particle" @@ -58431,11 +58431,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2416" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:0), lipid particle" @@ -58452,11 +58452,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2417" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:0), lipid particle" @@ -58473,11 +58473,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2418" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:0), lipid particle" @@ -58494,11 +58494,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2419" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:0), lipid particle" @@ -58515,11 +58515,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2420" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:0), lipid particle" @@ -58536,11 +58536,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2421" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:0), lipid particle" @@ -58557,11 +58557,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2422" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:0), lipid particle" @@ -58578,11 +58578,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2423" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:0), lipid particle" @@ -58599,11 +58599,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2424" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:1), lipid particle" @@ -58620,11 +58620,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2425" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:1), lipid particle" @@ -58641,11 +58641,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2426" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:1), lipid particle" @@ -58662,11 +58662,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2427" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:1), lipid particle" @@ -58683,11 +58683,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2428" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:1), lipid particle" @@ -58704,11 +58704,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2429" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:1), lipid particle" @@ -58725,11 +58725,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2430" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:1), lipid particle" @@ -58746,11 +58746,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2431" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:1), lipid particle" @@ -58767,11 +58767,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.20; 2.3.1.22" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2432" - name: "CDP-diacylglycerol synthase (1-16:0, 2-16:1), ER membrane" @@ -58789,14 +58789,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2433" - name: "CDP-diacylglycerol synthase (1-16:1, 2-16:1), ER membrane" @@ -58814,14 +58814,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2434" - name: "CDP-diacylglycerol synthase (1-18:0, 2-16:1), ER membrane" @@ -58839,14 +58839,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2435" - name: "CDP-diacylglycerol synthase (1-18:1, 2-16:1), ER membrane" @@ -58864,14 +58864,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2436" - name: "CDP-diacylglycerol synthase (1-16:0, 2-18:1), ER membrane" @@ -58889,14 +58889,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2437" - name: "CDP-diacylglycerol synthase (1-16:1, 2-18:1), ER membrane" @@ -58914,14 +58914,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2438" - name: "CDP-diacylglycerol synthase (1-18:0, 2-18:1), ER membrane" @@ -58939,14 +58939,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2439" - name: "CDP-diacylglycerol synthase (1-18:1, 2-18:1), ER membrane" @@ -58964,14 +58964,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2440" - name: "CDP-diacylglycerol synthase (1-16:0, 2-16:1), mitochondrial membrane" @@ -58989,14 +58989,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2441" - name: "CDP-diacylglycerol synthase (1-16:1, 2-16:1), mitochondrial membrane" @@ -59014,14 +59014,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2442" - name: "CDP-diacylglycerol synthase (1-18:0, 2-16:1), mitochondrial membrane" @@ -59039,14 +59039,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2443" - name: "CDP-diacylglycerol synthase (1-18:1, 2-16:1), mitochondrial membrane" @@ -59064,14 +59064,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2444" - name: "CDP-diacylglycerol synthase (1-16:0, 2-18:1), mitochondrial membrane" @@ -59089,14 +59089,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2445" - name: "CDP-diacylglycerol synthase (1-16:1, 2-18:1), mitochondrial membrane" @@ -59114,14 +59114,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.7.41" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2446" - name: "PS synthase (1-16:0, 2-16:1), ER membrane" @@ -59139,14 +59139,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.8" - - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2447" - name: "PS synthase (1-16:1, 2-16:1), ER membrane" @@ -59164,14 +59164,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.8" - - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2448" - name: "PS synthase (1-18:0, 2-16:1), ER membrane" @@ -59189,14 +59189,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.8" - - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2449" - name: "PS synthase (1-18:1, 2-16:1), ER membrane" @@ -59214,14 +59214,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.8" - - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2450" - name: "PS synthase (1-16:0, 2-18:1), ER membrane" @@ -59239,14 +59239,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.8" - - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2451" - name: "PS synthase (1-16:1, 2-18:1), ER membrane" @@ -59264,14 +59264,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.8" - - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2452" - name: "PS synthase (1-18:0, 2-18:1), ER membrane" @@ -59289,14 +59289,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.8" - - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2453" - name: "PS synthase (1-18:1, 2-18:1), ER membrane" @@ -59314,14 +59314,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.8" - - kegg.pathway: - - "sce00260" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.8" + - kegg.pathway: + - "sce00260" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2454" - name: "PI synthase (1-16:0, 2-16:1), ER membrane" @@ -59339,14 +59339,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.11" - - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2455" - name: "PI synthase (1-16:1, 2-16:1), ER membrane" @@ -59364,14 +59364,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.11" - - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2456" - name: "PI synthase (1-18:0, 2-16:1), ER membrane" @@ -59389,14 +59389,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.11" - - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2457" - name: "PI synthase (1-18:1, 2-16:1), ER membrane" @@ -59414,14 +59414,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.11" - - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2458" - name: "PI synthase (1-16:0, 2-18:1), ER membrane" @@ -59439,14 +59439,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.11" - - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2459" - name: "PI synthase (1-16:1, 2-18:1), ER membrane" @@ -59464,14 +59464,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.11" - - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2460" - name: "PI synthase (1-18:0, 2-18:1), ER membrane" @@ -59489,14 +59489,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.11" - - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2461" - name: "PI synthase (1-18:1, 2-18:1), ER membrane" @@ -59514,14 +59514,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.11" - - kegg.pathway: - - "sce00562" - - "sce00564" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.11" + - kegg.pathway: + - "sce00562" + - "sce00564" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2462" - name: "lysoPI acyltransferase (1-18:0, 2-16:1), ER membrane" @@ -59538,10 +59538,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.-.-" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.-.-" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2463" - name: "lysoPI acyltransferase (1-18:0, 2-18:1), ER membrane" @@ -59558,10 +59558,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.-.-" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.-.-" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2464" - name: "PS decarboxylase (1-16:0, 2-16:1), mitochondrial membrane" @@ -59577,13 +59577,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2465" - name: "PS decarboxylase (1-16:1, 2-16:1), mitochondrial membrane" @@ -59599,13 +59599,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2466" - name: "PS decarboxylase (1-18:0, 2-16:1), mitochondrial membrane" @@ -59621,13 +59621,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2467" - name: "PS decarboxylase (1-18:1, 2-16:1), mitochondrial membrane" @@ -59643,13 +59643,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2468" - name: "PS decarboxylase (1-16:0, 2-18:1), mitochondrial membrane" @@ -59665,13 +59665,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2469" - name: "PS decarboxylase (1-16:1, 2-18:1), mitochondrial membrane" @@ -59687,13 +59687,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2470" - name: "PS decarboxylase (1-18:0, 2-18:1), mitochondrial membrane" @@ -59709,13 +59709,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2471" - name: "PS decarboxylase (1-18:1, 2-18:1), mitochondrial membrane" @@ -59731,13 +59731,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2472" - name: "PS decarboxylase (1-16:0, 2-16:1), Golgi membrane" @@ -59753,13 +59753,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2473" - name: "PS decarboxylase (1-16:1, 2-16:1), Golgi membrane" @@ -59775,13 +59775,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2474" - name: "PS decarboxylase (1-18:0, 2-16:1), Golgi membrane" @@ -59797,13 +59797,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2475" - name: "PS decarboxylase (1-18:1, 2-16:1), Golgi membrane" @@ -59819,13 +59819,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2476" - name: "PS decarboxylase (1-16:0, 2-18:1), Golgi membrane" @@ -59841,13 +59841,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2477" - name: "PS decarboxylase (1-16:1, 2-18:1), Golgi membrane" @@ -59863,13 +59863,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2478" - name: "PS decarboxylase (1-18:0, 2-18:1), Golgi membrane" @@ -59885,13 +59885,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2479" - name: "PS decarboxylase (1-18:1, 2-18:1), Golgi membrane" @@ -59907,13 +59907,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2480" - name: "PS decarboxylase (1-16:0, 2-16:1), vacuolar membrane" @@ -59929,13 +59929,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2481" - name: "PS decarboxylase (1-16:1, 2-16:1), vacuolar membrane" @@ -59951,13 +59951,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2482" - name: "PS decarboxylase (1-18:0, 2-16:1), vacuolar membrane" @@ -59973,13 +59973,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2483" - name: "PS decarboxylase (1-18:1, 2-16:1), vacuolar membrane" @@ -59995,13 +59995,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2484" - name: "PS decarboxylase (1-16:0, 2-18:1), vacuolar membrane" @@ -60017,13 +60017,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2485" - name: "PS decarboxylase (1-16:1, 2-18:1), vacuolar membrane" @@ -60039,13 +60039,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2486" - name: "PS decarboxylase (1-18:0, 2-18:1), vacuolar membrane" @@ -60061,13 +60061,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2487" - name: "PS decarboxylase (1-18:1, 2-18:1), vacuolar membrane" @@ -60083,13 +60083,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.65" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "4.1.1.65" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2488" - name: "PE methyltransferase (1-16:0, 2-16:1), ER membrane" @@ -60107,13 +60107,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2489" - name: "PE methyltransferase (1-16:1, 2-16:1), ER membrane" @@ -60131,13 +60131,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2490" - name: "PE methyltransferase (1-18:0, 2-16:1), ER membrane" @@ -60155,13 +60155,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2491" - name: "PE methyltransferase (1-18:1, 2-16:1), ER membrane" @@ -60179,13 +60179,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2492" - name: "PE methyltransferase (1-16:0, 2-18:1), ER membrane" @@ -60203,13 +60203,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2493" - name: "PE methyltransferase (1-16:1, 2-18:1), ER membrane" @@ -60227,13 +60227,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2494" - name: "PE methyltransferase (1-18:0, 2-18:1), ER membrane" @@ -60251,13 +60251,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2495" - name: "PE methyltransferase (1-18:1, 2-18:1), ER membrane" @@ -60275,13 +60275,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2496" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:0, 2-16:1), ER membrane" @@ -60299,13 +60299,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2497" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:1, 2-16:1), ER membrane" @@ -60323,13 +60323,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2498" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:0, 2-16:1), ER membrane" @@ -60347,13 +60347,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2499" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:1, 2-16:1), ER membrane" @@ -60371,13 +60371,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2500" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:0, 2-18:1), ER membrane" @@ -60395,13 +60395,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2501" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:1, 2-18:1), ER membrane" @@ -60419,13 +60419,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2502" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:0, 2-18:1), ER membrane" @@ -60443,13 +60443,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2503" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:1, 2-18:1), ER membrane" @@ -60467,13 +60467,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2504" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:0, 2-16:1), ER membrane" @@ -60491,13 +60491,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2505" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:1, 2-16:1), ER membrane" @@ -60515,13 +60515,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2506" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:0, 2-16:1), ER membrane" @@ -60539,13 +60539,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2507" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:1, 2-16:1), ER membrane" @@ -60563,13 +60563,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2508" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:0, 2-18:1), ER membrane" @@ -60587,13 +60587,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2509" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:1, 2-18:1), ER membrane" @@ -60611,13 +60611,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2510" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:0, 2-18:1), ER membrane" @@ -60635,13 +60635,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2511" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:1, 2-18:1), ER membrane" @@ -60659,13 +60659,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.1.1.17; 2.1.1.71" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2512" - name: "DAG kinase (1-16:0, 2-16:1), ER membrane" @@ -60683,13 +60683,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.174" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2513" - name: "DAG kinase (1-16:1, 2-16:1), ER membrane" @@ -60707,13 +60707,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.174" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2514" - name: "DAG kinase (1-18:0, 2-16:1), ER membrane" @@ -60731,13 +60731,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.174" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2515" - name: "DAG kinase (1-18:1, 2-16:1), ER membrane" @@ -60755,13 +60755,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.174" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2516" - name: "DAG kinase (1-16:0, 2-18:1), ER membrane" @@ -60779,13 +60779,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.174" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2517" - name: "DAG kinase (1-16:1, 2-18:1), ER membrane" @@ -60803,13 +60803,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.174" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2518" - name: "DAG kinase (1-18:0, 2-18:1), ER membrane" @@ -60827,13 +60827,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.174" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2519" - name: "DAG kinase (1-18:1, 2-18:1), ER membrane" @@ -60851,13 +60851,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.174" - - kegg.pathway: - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.174" + - kegg.pathway: + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2520" - name: "ethanolaminephosphotransferase (1-16:0, 2-16:1), ER membrane" @@ -60875,14 +60875,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2521" - name: "ethanolaminephosphotransferase (1-16:1, 2-16:1), ER membrane" @@ -60900,14 +60900,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2522" - name: "ethanolaminephosphotransferase (1-18:0, 2-16:1), ER membrane" @@ -60925,14 +60925,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2523" - name: "ethanolaminephosphotransferase (1-18:1, 2-16:1), ER membrane" @@ -60950,14 +60950,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2524" - name: "ethanolaminephosphotransferase (1-16:0, 2-18:1), ER membrane" @@ -60975,14 +60975,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2525" - name: "ethanolaminephosphotransferase (1-16:1, 2-18:1), ER membrane" @@ -61000,14 +61000,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2526" - name: "ethanolaminephosphotransferase (1-18:0, 2-18:1), ER membrane" @@ -61025,14 +61025,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2527" - name: "ethanolaminephosphotransferase (1-18:1, 2-18:1), ER membrane" @@ -61050,14 +61050,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2528" - name: "cholinephosphotransferase (1-16:0, 2-16:1), ER membrane" @@ -61075,14 +61075,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2529" - name: "cholinephosphotransferase (1-16:1, 2-16:1), ER membrane" @@ -61100,14 +61100,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2530" - name: "cholinephosphotransferase (1-18:0, 2-16:1), ER membrane" @@ -61125,14 +61125,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2531" - name: "cholinephosphotransferase (1-18:1, 2-16:1), ER membrane" @@ -61150,14 +61150,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2532" - name: "cholinephosphotransferase (1-16:0, 2-18:1), ER membrane" @@ -61175,14 +61175,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2533" - name: "cholinephosphotransferase (1-16:1, 2-18:1), ER membrane" @@ -61200,14 +61200,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2534" - name: "cholinephosphotransferase (1-18:0, 2-18:1), ER membrane" @@ -61225,14 +61225,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2535" - name: "cholinephosphotransferase (1-18:1, 2-18:1), ER membrane" @@ -61250,14 +61250,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - - kegg.pathway: - - "sce00440" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.1; 2.7.8.2" + - kegg.pathway: + - "sce00440" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2536" - name: "phosphatidylglycerolphosphate synthase (1-16:0, 2-16:1), mitochondrial membrane" @@ -61274,11 +61274,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2537" - name: "phosphatidylglycerolphosphate synthase (1-16:1, 2-16:1), mitochondrial membrane" @@ -61295,11 +61295,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2538" - name: "phosphatidylglycerolphosphate synthase (1-18:0, 2-16:1), mitochondrial membrane" @@ -61316,11 +61316,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2539" - name: "phosphatidylglycerolphosphate synthase (1-18:1, 2-16:1), mitochondrial membrane" @@ -61337,11 +61337,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2540" - name: "phosphatidylglycerolphosphate synthase (1-16:0, 2-18:1), mitochondrial membrane" @@ -61358,11 +61358,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2541" - name: "phosphatidylglycerolphosphate synthase (1-16:1, 2-18:1), mitochondrial membrane" @@ -61379,11 +61379,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2542" - name: "PGP phosphatase (1-16:0, 2-16:1), mitochondrial membrane" @@ -61401,11 +61401,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.27" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.27" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2543" - name: "PGP phosphatase (1-16:1, 2-16:1), mitochondrial membrane" @@ -61423,11 +61423,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.27" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.27" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2544" - name: "PGP phosphatase (1-18:0, 2-16:1), mitochondrial membrane" @@ -61445,11 +61445,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.27" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.27" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2545" - name: "PGP phosphatase (1-18:1, 2-16:1), mitochondrial membrane" @@ -61467,11 +61467,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.27" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.27" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2546" - name: "PGP phosphatase (1-16:0, 2-18:1), mitochondrial membrane" @@ -61489,11 +61489,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.27" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.27" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2547" - name: "PGP phosphatase (1-16:1, 2-18:1), mitochondrial membrane" @@ -61511,11 +61511,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.27" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.27" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2548" - name: "CL synthase (1-16:0, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" @@ -61533,11 +61533,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2549" - name: "CL synthase (1-16:0, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" @@ -61555,11 +61555,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2550" - name: "CL synthase (1-16:0, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" @@ -61577,11 +61577,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2551" - name: "CL synthase (1-16:0, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" @@ -61599,11 +61599,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2552" - name: "CL synthase (1-16:0, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" @@ -61621,11 +61621,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2553" - name: "CL synthase (1-16:0, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" @@ -61643,11 +61643,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2554" - name: "CL synthase (1-16:1, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" @@ -61665,11 +61665,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2555" - name: "CL synthase (1-16:1, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" @@ -61687,11 +61687,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2556" - name: "CL synthase (1-16:1, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" @@ -61709,11 +61709,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2557" - name: "CL synthase (1-16:1, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" @@ -61731,11 +61731,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2558" - name: "CL synthase (1-16:1, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" @@ -61753,11 +61753,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2559" - name: "CL synthase (1-16:1, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" @@ -61775,11 +61775,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2560" - name: "CL synthase (1-18:0, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" @@ -61797,11 +61797,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2561" - name: "CL synthase (1-18:0, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" @@ -61819,11 +61819,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2562" - name: "CL synthase (1-18:0, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" @@ -61841,11 +61841,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2563" - name: "CL synthase (1-18:0, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" @@ -61863,11 +61863,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2564" - name: "CL synthase (1-18:0, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" @@ -61885,11 +61885,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2565" - name: "CL synthase (1-18:0, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" @@ -61907,11 +61907,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2566" - name: "CL synthase (1-18:1, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" @@ -61929,11 +61929,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2567" - name: "CL synthase (1-18:1, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" @@ -61951,11 +61951,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2568" - name: "CL synthase (1-18:1, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" @@ -61973,11 +61973,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2569" - name: "CL synthase (1-18:1, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" @@ -61995,11 +61995,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2570" - name: "CL synthase (1-18:1, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" @@ -62017,11 +62017,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2571" - name: "CL synthase (1-18:1, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" @@ -62039,11 +62039,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2572" - name: "CL synthase (1-16:0, 2-18:1, 3-16:0, 4-16:1), mitochondrial membrane" @@ -62061,11 +62061,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2573" - name: "CL synthase (1-16:0, 2-18:1, 3-16:1, 4-16:1), mitochondrial membrane" @@ -62083,11 +62083,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2574" - name: "CL synthase (1-16:0, 2-18:1, 3-18:0, 4-16:1), mitochondrial membrane" @@ -62105,11 +62105,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2575" - name: "CL synthase (1-16:0, 2-18:1, 3-18:1, 4-16:1), mitochondrial membrane" @@ -62127,11 +62127,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2576" - name: "CL synthase (1-16:0, 2-18:1, 3-16:0, 4-18:1), mitochondrial membrane" @@ -62149,11 +62149,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2577" - name: "CL synthase (1-16:0, 2-18:1, 3-16:1, 4-18:1), mitochondrial membrane" @@ -62171,11 +62171,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2578" - name: "CL synthase (1-16:1, 2-18:1, 3-16:0, 4-16:1), mitochondrial membrane" @@ -62193,11 +62193,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2579" - name: "CL synthase (1-16:1, 2-18:1, 3-16:1, 4-16:1), mitochondrial membrane" @@ -62215,11 +62215,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2580" - name: "CL synthase (1-16:1, 2-18:1, 3-18:0, 4-16:1), mitochondrial membrane" @@ -62237,11 +62237,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2581" - name: "CL synthase (1-16:1, 2-18:1, 3-18:1, 4-16:1), mitochondrial membrane" @@ -62259,11 +62259,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2582" - name: "CL synthase (1-16:1, 2-18:1, 3-16:0, 4-18:1), mitochondrial membrane" @@ -62281,11 +62281,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2583" - name: "CL synthase (1-16:1, 2-18:1, 3-16:1, 4-18:1), mitochondrial membrane" @@ -62303,11 +62303,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.41" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.8.41" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2584" - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62325,11 +62325,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2585" - name: "CL (1-16:0, 2-16:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62347,11 +62347,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2586" - name: "CL (1-16:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62369,11 +62369,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2587" - name: "CL (1-16:0, 2-16:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62391,11 +62391,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2588" - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" @@ -62413,11 +62413,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2589" - name: "CL (1-16:0, 2-16:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" @@ -62435,11 +62435,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2590" - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62457,11 +62457,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2591" - name: "CL (1-18:0, 2-16:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62479,11 +62479,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2592" - name: "CL (1-18:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62501,11 +62501,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2593" - name: "CL (1-18:0, 2-16:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62523,11 +62523,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2594" - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" @@ -62545,11 +62545,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2595" - name: "CL (1-18:0, 2-16:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" @@ -62567,11 +62567,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2596" - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62589,11 +62589,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2597" - name: "CL (1-16:0, 2-18:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62611,11 +62611,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2598" - name: "CL (1-16:0, 2-18:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62633,11 +62633,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2599" - name: "CL (1-16:0, 2-18:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62655,11 +62655,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2600" - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" @@ -62677,11 +62677,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2601" - name: "CL (1-16:0, 2-18:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" @@ -62699,11 +62699,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2602" - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62721,11 +62721,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2603" - name: "CL (1-16:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62743,11 +62743,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2604" - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" @@ -62765,11 +62765,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2605" - name: "CL (1-16:1, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62787,11 +62787,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2606" - name: "CL (1-16:1, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62809,11 +62809,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2607" - name: "CL (1-16:1, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" @@ -62831,11 +62831,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2608" - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62853,11 +62853,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2609" - name: "CL (1-18:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62875,11 +62875,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2610" - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" @@ -62897,11 +62897,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2611" - name: "CL (1-18:1, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62919,11 +62919,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2612" - name: "CL (1-18:1, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62941,11 +62941,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2613" - name: "CL (1-18:1, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" @@ -62963,11 +62963,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2614" - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62985,11 +62985,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2615" - name: "CL (1-16:0, 2-18:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -63007,11 +63007,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2616" - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" @@ -63029,11 +63029,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2617" - name: "CL (1-16:1, 2-18:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -63051,11 +63051,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2618" - name: "CL (1-16:1, 2-18:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -63073,11 +63073,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2619" - name: "CL (1-16:1, 2-18:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" @@ -63095,11 +63095,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.5.1.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2620" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63116,11 +63116,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2621" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63137,11 +63137,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2622" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63158,11 +63158,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2623" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63179,11 +63179,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2624" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63200,11 +63200,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2625" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63221,11 +63221,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2626" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63242,11 +63242,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2627" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63263,11 +63263,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2628" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63284,11 +63284,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2629" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63305,11 +63305,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2630" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63326,11 +63326,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2631" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63347,11 +63347,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2632" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63368,11 +63368,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2633" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63389,11 +63389,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2634" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63410,11 +63410,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2635" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63431,11 +63431,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2636" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63452,11 +63452,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2637" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63473,11 +63473,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2638" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63494,11 +63494,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2639" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63515,11 +63515,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2640" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63536,11 +63536,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2641" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63557,11 +63557,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2642" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63578,11 +63578,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2643" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63599,11 +63599,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2644" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63620,11 +63620,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2645" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63641,11 +63641,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2646" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63662,11 +63662,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2647" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63683,11 +63683,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2648" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63704,11 +63704,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2649" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63725,11 +63725,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2650" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63746,11 +63746,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2651" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63767,11 +63767,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2652" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63788,11 +63788,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2653" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63809,11 +63809,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2654" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63830,11 +63830,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2655" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63851,11 +63851,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2656" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63872,11 +63872,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2657" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63893,11 +63893,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2658" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63914,11 +63914,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2659" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63935,11 +63935,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2660" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63956,11 +63956,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2661" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63977,11 +63977,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2662" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63998,11 +63998,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2663" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64019,11 +64019,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2664" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64040,11 +64040,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2665" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64061,11 +64061,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2666" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64082,11 +64082,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2667" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64103,11 +64103,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2668" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64124,11 +64124,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2669" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64145,11 +64145,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2670" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64166,11 +64166,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2671" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64187,11 +64187,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2672" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64208,11 +64208,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2673" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64229,11 +64229,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2674" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64250,11 +64250,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2675" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64271,11 +64271,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2676" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64292,11 +64292,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2677" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64313,11 +64313,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2678" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64334,11 +64334,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2679" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64355,11 +64355,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2680" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64376,11 +64376,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2681" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64397,11 +64397,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2682" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64418,11 +64418,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2683" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64439,11 +64439,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2684" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64460,11 +64460,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2685" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64481,11 +64481,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2686" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64502,11 +64502,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2687" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64523,11 +64523,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2688" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64544,11 +64544,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2689" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64565,11 +64565,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2690" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64586,11 +64586,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2691" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64607,11 +64607,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2692" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64628,11 +64628,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2693" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64649,11 +64649,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2694" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64670,11 +64670,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2695" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64691,11 +64691,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2696" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64712,11 +64712,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2697" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64733,11 +64733,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2698" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64754,11 +64754,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2699" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64775,11 +64775,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2700" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64796,11 +64796,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2701" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64817,11 +64817,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2702" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64838,11 +64838,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2703" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64859,11 +64859,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2704" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64880,11 +64880,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2705" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64901,11 +64901,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2706" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64922,11 +64922,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2707" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64943,11 +64943,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2708" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64964,11 +64964,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2709" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64985,11 +64985,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2710" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65006,11 +65006,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2711" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65027,11 +65027,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2712" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65048,11 +65048,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2713" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65069,11 +65069,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2714" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65090,11 +65090,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2715" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65111,11 +65111,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2716" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65132,11 +65132,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2717" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65153,11 +65153,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2718" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65174,11 +65174,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2719" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65195,11 +65195,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2720" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65216,11 +65216,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2721" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65237,11 +65237,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2722" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65258,11 +65258,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2723" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65279,11 +65279,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2724" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65300,11 +65300,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2725" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65321,11 +65321,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2726" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65342,11 +65342,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2727" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65363,11 +65363,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2728" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65384,11 +65384,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2729" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65405,11 +65405,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2730" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65426,11 +65426,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2731" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65447,11 +65447,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2732" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65468,11 +65468,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2733" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65489,11 +65489,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2734" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65510,11 +65510,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2735" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65531,11 +65531,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2736" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65552,11 +65552,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2737" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65573,11 +65573,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2738" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65594,11 +65594,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2739" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65615,11 +65615,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2740" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65636,11 +65636,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2741" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65657,11 +65657,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2742" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65678,11 +65678,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2743" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65699,11 +65699,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2744" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65720,11 +65720,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2745" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65741,11 +65741,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2746" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65762,11 +65762,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2747" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65783,11 +65783,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2748" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65804,11 +65804,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2749" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65825,11 +65825,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2750" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65846,11 +65846,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2751" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65867,11 +65867,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2752" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65888,11 +65888,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2753" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65909,11 +65909,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2754" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65930,11 +65930,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2755" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65951,11 +65951,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2756" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65972,11 +65972,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2757" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65993,11 +65993,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2758" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66014,11 +66014,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2759" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66035,11 +66035,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2760" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66056,11 +66056,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2761" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66077,11 +66077,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2762" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66098,11 +66098,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2763" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66119,11 +66119,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2764" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66140,11 +66140,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2765" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66161,11 +66161,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2766" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66182,11 +66182,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2767" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66203,11 +66203,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2768" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66224,11 +66224,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2769" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66245,11 +66245,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2770" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66266,11 +66266,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2771" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66287,11 +66287,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2772" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66308,11 +66308,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2773" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66329,11 +66329,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2774" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66350,11 +66350,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2775" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66371,11 +66371,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2776" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66392,11 +66392,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2777" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66413,11 +66413,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2778" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66434,11 +66434,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2779" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66455,11 +66455,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2780" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66476,11 +66476,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2781" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66497,11 +66497,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2782" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66518,11 +66518,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2783" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66539,11 +66539,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2784" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66560,11 +66560,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2785" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66581,11 +66581,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2786" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66602,11 +66602,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2787" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66623,11 +66623,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2788" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66644,11 +66644,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2789" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66665,11 +66665,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2790" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66686,11 +66686,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2791" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66707,11 +66707,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2792" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66728,11 +66728,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2793" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66749,11 +66749,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2794" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66770,11 +66770,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2795" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66791,11 +66791,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2796" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66812,11 +66812,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2797" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66833,11 +66833,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2798" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66854,11 +66854,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2799" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66875,11 +66875,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2800" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66896,11 +66896,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2801" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66917,11 +66917,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2802" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66938,11 +66938,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2803" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66959,11 +66959,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2804" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66980,11 +66980,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2805" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -67001,11 +67001,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2806" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -67022,11 +67022,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2807" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -67043,11 +67043,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2808" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -67064,11 +67064,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2809" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -67085,11 +67085,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2810" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -67106,11 +67106,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2811" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -67127,11 +67127,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.23" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.23" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2820" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), cell envelope" @@ -67149,14 +67149,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2821" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), cell envelope" @@ -67174,14 +67174,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2822" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), cell envelope" @@ -67199,14 +67199,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2823" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), cell envelope" @@ -67224,14 +67224,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2824" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), cell envelope" @@ -67249,14 +67249,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2825" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), cell envelope" @@ -67274,14 +67274,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2826" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), cell envelope" @@ -67299,14 +67299,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2827" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), cell envelope" @@ -67324,14 +67324,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2828" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), vacuolar membrane" @@ -67349,13 +67349,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2829" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), vacuolar membrane" @@ -67373,13 +67373,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2830" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), vacuolar membrane" @@ -67397,13 +67397,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2831" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), vacuolar membrane" @@ -67421,13 +67421,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2832" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), vacuolar membrane" @@ -67445,13 +67445,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2833" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), vacuolar membrane" @@ -67469,13 +67469,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2834" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), vacuolar membrane" @@ -67493,13 +67493,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2835" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), vacuolar membrane" @@ -67517,13 +67517,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2836" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), Golgi membrane" @@ -67541,13 +67541,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2837" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), Golgi membrane" @@ -67565,13 +67565,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2838" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), Golgi membrane" @@ -67589,13 +67589,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2839" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), Golgi membrane" @@ -67613,13 +67613,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2840" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), Golgi membrane" @@ -67637,13 +67637,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2841" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), Golgi membrane" @@ -67661,13 +67661,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2842" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), Golgi membrane" @@ -67685,13 +67685,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2843" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), Golgi membrane" @@ -67709,13 +67709,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2844" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), nucleus" @@ -67733,13 +67733,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2845" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), nucleus" @@ -67757,13 +67757,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2846" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), nucleus" @@ -67781,13 +67781,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2847" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), nucleus" @@ -67805,13 +67805,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2848" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), nucleus" @@ -67829,13 +67829,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2849" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), nucleus" @@ -67853,13 +67853,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2850" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), nucleus" @@ -67877,13 +67877,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2851" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), nucleus" @@ -67901,13 +67901,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.67" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.67" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2852" - name: "phosphatidylinositol 3-kinase (1-16:0, 2-16:1), vacuolar membrane" @@ -67925,16 +67925,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2853" - name: "phosphatidylinositol 3-kinase (1-16:1, 2-16:1), vacuolar membrane" @@ -67952,16 +67952,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2854" - name: "phosphatidylinositol 3-kinase (1-18:0, 2-16:1), vacuolar membrane" @@ -67979,16 +67979,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2855" - name: "phosphatidylinositol 3-kinase (1-18:1, 2-16:1), vacuolar membrane" @@ -68006,16 +68006,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2856" - name: "phosphatidylinositol 3-kinase (1-16:0, 2-18:1), vacuolar membrane" @@ -68033,16 +68033,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2857" - name: "phosphatidylinositol 3-kinase (1-16:1, 2-18:1), vacuolar membrane" @@ -68060,16 +68060,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2858" - name: "phosphatidylinositol 3-kinase (1-18:0, 2-18:1), vacuolar membrane" @@ -68087,16 +68087,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2859" - name: "phosphatidylinositol 3-kinase (1-18:1, 2-18:1), vacuolar membrane" @@ -68114,16 +68114,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04136" - - "sce04138" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.137; 2.7.11.1" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04136" + - "sce04138" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2860" - name: "PI 4-P 5-kinase (1-16:0, 2-16:1), nucleus" @@ -68141,16 +68141,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2861" - name: "PI 4-P 5-kinase (1-16:1, 2-16:1), nucleus" @@ -68168,16 +68168,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2862" - name: "PI 4-P 5-kinase (1-18:0, 2-16:1), nucleus" @@ -68195,16 +68195,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2863" - name: "PI 4-P 5-kinase (1-18:1, 2-16:1), nucleus" @@ -68222,16 +68222,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2864" - name: "PI 4-P 5-kinase (1-16:0, 2-18:1), nucleus" @@ -68249,16 +68249,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2865" - name: "PI 4-P 5-kinase (1-16:1, 2-18:1), nucleus" @@ -68276,16 +68276,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2866" - name: "PI 4-P 5-kinase (1-18:0, 2-18:1), nucleus" @@ -68303,16 +68303,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2867" - name: "PI 4-P 5-kinase (1-18:1, 2-18:1), nucleus" @@ -68330,16 +68330,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2868" - name: "PI 4-P 5-kinase (1-16:0, 2-16:1), cell envelope" @@ -68357,16 +68357,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2869" - name: "PI 4-P 5-kinase (1-16:1, 2-16:1), cell envelope" @@ -68384,16 +68384,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2870" - name: "PI 4-P 5-kinase (1-18:0, 2-16:1), cell envelope" @@ -68411,16 +68411,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2871" - name: "PI 4-P 5-kinase (1-18:1, 2-16:1), cell envelope" @@ -68438,16 +68438,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2872" - name: "PI 4-P 5-kinase (1-16:0, 2-18:1), cell envelope" @@ -68465,16 +68465,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2873" - name: "PI 4-P 5-kinase (1-16:1, 2-18:1), cell envelope" @@ -68492,16 +68492,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2874" - name: "PI 4-P 5-kinase (1-18:0, 2-18:1), cell envelope" @@ -68519,16 +68519,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2875" - name: "PI 4-P 5-kinase (1-18:1, 2-18:1), cell envelope" @@ -68546,16 +68546,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.68" - - kegg.pathway: - - "sce00562" - - "sce04011" - - "sce04070" - - "sce04139" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.68" + - kegg.pathway: + - "sce00562" + - "sce04011" + - "sce04070" + - "sce04139" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2876" - name: "PI 3-P 5-kinase (1-16:0, 2-16:1), vacuolar membrane" @@ -68573,14 +68573,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.150" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2877" - name: "PI 3-P 5-kinase (1-16:1, 2-16:1), vacuolar membrane" @@ -68598,14 +68598,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.150" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2878" - name: "PI 3-P 5-kinase (1-18:0, 2-16:1), vacuolar membrane" @@ -68623,14 +68623,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.150" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2879" - name: "PI 3-P 5-kinase (1-18:1, 2-16:1), vacuolar membrane" @@ -68648,14 +68648,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.150" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2880" - name: "PI 3-P 5-kinase (1-16:0, 2-18:1), vacuolar membrane" @@ -68673,14 +68673,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.150" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2881" - name: "PI 3-P 5-kinase (1-16:1, 2-18:1), vacuolar membrane" @@ -68698,14 +68698,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.150" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2882" - name: "PI 3-P 5-kinase (1-18:0, 2-18:1), vacuolar membrane" @@ -68723,14 +68723,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.150" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2883" - name: "PI 3-P 5-kinase (1-18:1, 2-18:1), vacuolar membrane" @@ -68748,14 +68748,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.150" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04145" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.7.1.150" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04145" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2884" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68772,11 +68772,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2885" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68793,11 +68793,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2886" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68814,11 +68814,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2887" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68835,11 +68835,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2888" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68856,11 +68856,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2889" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68877,11 +68877,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2890" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68898,11 +68898,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2891" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68919,11 +68919,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2892" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -68940,11 +68940,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2893" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -68961,11 +68961,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2894" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -68982,11 +68982,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2895" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -69003,11 +69003,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2896" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -69024,11 +69024,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2897" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -69045,11 +69045,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2898" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -69066,11 +69066,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2899" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -69087,11 +69087,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2900" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69108,11 +69108,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2901" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69129,11 +69129,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2902" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69150,11 +69150,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2903" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69171,11 +69171,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2904" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69192,11 +69192,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2905" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69213,11 +69213,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2906" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69234,11 +69234,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2907" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69255,11 +69255,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2908" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69276,11 +69276,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2909" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69297,11 +69297,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2910" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69318,11 +69318,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2911" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69339,11 +69339,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2912" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69360,11 +69360,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2913" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69381,11 +69381,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2914" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69402,11 +69402,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2915" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69423,11 +69423,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2916" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69444,11 +69444,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2917" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69465,11 +69465,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2918" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69486,11 +69486,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2919" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69507,11 +69507,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2920" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69528,11 +69528,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2921" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69549,11 +69549,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2922" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69570,11 +69570,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2923" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69591,11 +69591,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2924" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69612,11 +69612,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2925" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69633,11 +69633,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2926" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69654,11 +69654,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2927" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69675,11 +69675,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2928" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69696,11 +69696,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2929" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69717,11 +69717,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2930" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69738,11 +69738,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2931" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69759,11 +69759,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2932" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69780,11 +69780,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2933" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69801,11 +69801,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2934" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69822,11 +69822,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2935" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69843,11 +69843,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2936" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69864,11 +69864,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2937" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69885,11 +69885,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2938" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69906,11 +69906,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2939" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69927,11 +69927,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2940" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -69948,11 +69948,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2941" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -69969,11 +69969,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2942" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -69990,11 +69990,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2943" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -70011,11 +70011,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2944" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -70032,11 +70032,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2945" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -70053,11 +70053,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2946" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -70074,11 +70074,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2947" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -70095,11 +70095,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2948" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70116,11 +70116,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2949" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70137,11 +70137,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2950" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70158,11 +70158,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2951" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70179,11 +70179,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2952" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70200,11 +70200,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2953" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70221,11 +70221,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2954" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70242,11 +70242,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2955" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70263,11 +70263,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2956" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70284,11 +70284,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2957" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70305,11 +70305,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2958" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70326,11 +70326,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2959" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70347,11 +70347,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2960" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70368,11 +70368,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2961" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70389,11 +70389,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2962" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70410,11 +70410,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2963" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70431,11 +70431,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2964" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70452,11 +70452,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2965" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70473,11 +70473,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2966" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70494,11 +70494,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2967" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70515,11 +70515,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2968" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70536,11 +70536,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2969" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70557,11 +70557,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2970" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70578,11 +70578,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2971" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70599,11 +70599,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2972" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70620,11 +70620,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2973" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70641,11 +70641,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2974" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70662,11 +70662,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2975" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70683,11 +70683,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2976" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70704,11 +70704,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2977" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70725,11 +70725,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2978" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70746,11 +70746,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2979" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70767,11 +70767,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2980" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70788,11 +70788,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2981" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70809,11 +70809,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2982" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70830,11 +70830,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2983" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70851,11 +70851,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2984" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70872,11 +70872,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2985" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70893,11 +70893,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2986" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70914,11 +70914,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2987" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70935,11 +70935,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2988" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -70956,11 +70956,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2989" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -70977,11 +70977,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2990" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -70998,11 +70998,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2991" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -71019,11 +71019,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2992" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -71040,11 +71040,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2993" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -71061,11 +71061,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2994" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -71082,11 +71082,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2995" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -71103,11 +71103,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2996" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71124,11 +71124,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2997" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71145,11 +71145,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2998" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71166,11 +71166,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_2999" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71187,11 +71187,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3000" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71208,11 +71208,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3001" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71229,11 +71229,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3002" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71250,11 +71250,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3003" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71271,11 +71271,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3004" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71292,11 +71292,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3005" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71313,11 +71313,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3006" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71334,11 +71334,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3007" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71355,11 +71355,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3008" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71376,11 +71376,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3009" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71397,11 +71397,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3010" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71418,11 +71418,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3011" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71439,11 +71439,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.158" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.3.1.158" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3022" - name: "PC phospholipase B (1-16:0, 2-16:1), ER membrane" @@ -71461,11 +71461,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3023" - name: "PC phospholipase B (1-16:1, 2-16:1), ER membrane" @@ -71483,11 +71483,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3024" - name: "PC phospholipase B (1-18:0, 2-16:1), ER membrane" @@ -71505,11 +71505,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3025" - name: "PC phospholipase B (1-18:1, 2-16:1), ER membrane" @@ -71527,11 +71527,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3026" - name: "PC phospholipase B (1-16:0, 2-18:1), ER membrane" @@ -71549,11 +71549,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3027" - name: "PC phospholipase B (1-16:1, 2-18:1), ER membrane" @@ -71571,11 +71571,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3028" - name: "PC phospholipase B (1-18:0, 2-18:1), ER membrane" @@ -71593,11 +71593,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3029" - name: "PC phospholipase B (1-18:1, 2-18:1), ER membrane" @@ -71615,11 +71615,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3030" - name: "LPC phospholipase B (16:0), ER membrane" @@ -71637,11 +71637,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3031" - name: "LPC phospholipase B (16:1), ER membrane" @@ -71659,11 +71659,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3032" - name: "LPC phospholipase B (18:0), ER membrane" @@ -71681,11 +71681,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3033" - name: "LPC phospholipase B (18:1), ER membrane" @@ -71703,11 +71703,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3034" - name: "PC phospholipase B (1-16:0, 2-16:1), cell envelope" @@ -71725,11 +71725,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3035" - name: "PC phospholipase B (1-16:1, 2-16:1), cell envelope" @@ -71747,11 +71747,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3036" - name: "PC phospholipase B (1-18:0, 2-16:1), cell envelope" @@ -71769,11 +71769,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3037" - name: "PC phospholipase B (1-18:1, 2-16:1), cell envelope" @@ -71791,11 +71791,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3038" - name: "PC phospholipase B (1-16:0, 2-18:1), cell envelope" @@ -71813,11 +71813,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3039" - name: "PC phospholipase B (1-16:1, 2-18:1), cell envelope" @@ -71835,11 +71835,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3040" - name: "PC phospholipase B (1-18:0, 2-18:1), cell envelope" @@ -71857,11 +71857,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3041" - name: "PC phospholipase B (1-18:1, 2-18:1), cell envelope" @@ -71879,11 +71879,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3042" - name: "LPC phospholipase B (16:0), cell envelope" @@ -71901,11 +71901,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3043" - name: "LPC phospholipase B (16:1), cell envelope" @@ -71923,11 +71923,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3044" - name: "LPC phospholipase B (18:0), cell envelope" @@ -71945,11 +71945,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3045" - name: "LPC phospholipase B (18:1), cell envelope" @@ -71967,11 +71967,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3046" - name: "PE phospholipase B (1-16:0, 2-16:1), cell envelope" @@ -71989,11 +71989,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3047" - name: "PE phospholipase B (1-16:1, 2-16:1), cell envelope" @@ -72011,11 +72011,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3048" - name: "PE phospholipase B (1-18:0, 2-16:1), cell envelope" @@ -72033,11 +72033,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3049" - name: "PE phospholipase B (1-18:1, 2-16:1), cell envelope" @@ -72055,11 +72055,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3050" - name: "PE phospholipase B (1-16:0, 2-18:1), cell envelope" @@ -72077,11 +72077,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3051" - name: "PE phospholipase B (1-16:1, 2-18:1), cell envelope" @@ -72099,11 +72099,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3052" - name: "PE phospholipase B (1-18:0, 2-18:1), cell envelope" @@ -72121,11 +72121,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3053" - name: "PE phospholipase B (1-18:1, 2-18:1), cell envelope" @@ -72143,11 +72143,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3054" - name: "LPE phospholipase B (16:0), cell envelope" @@ -72165,11 +72165,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3055" - name: "LPE phospholipase B (16:1), cell envelope" @@ -72187,11 +72187,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3056" - name: "LPE phospholipase B (18:0), cell envelope" @@ -72209,11 +72209,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3057" - name: "LPE phospholipase B (18:1), cell envelope" @@ -72231,11 +72231,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3058" - name: "PS phospholipase B (1-16:0, 2-16:1), cell envelope" @@ -72253,11 +72253,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3059" - name: "PS phospholipase B (1-16:1, 2-16:1), cell envelope" @@ -72275,11 +72275,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3060" - name: "PS phospholipase B (1-18:0, 2-16:1), cell envelope" @@ -72297,11 +72297,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3061" - name: "PS phospholipase B (1-18:1, 2-16:1), cell envelope" @@ -72319,11 +72319,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3062" - name: "PS phospholipase B (1-16:0, 2-18:1), cell envelope" @@ -72341,11 +72341,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3063" - name: "PS phospholipase B (1-16:1, 2-18:1), cell envelope" @@ -72363,11 +72363,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3064" - name: "PS phospholipase B (1-18:0, 2-18:1), cell envelope" @@ -72385,11 +72385,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3065" - name: "PS phospholipase B (1-18:1, 2-18:1), cell envelope" @@ -72407,11 +72407,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3066" - name: "LPS phospholipase B (16:0), cell envelope" @@ -72429,11 +72429,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3067" - name: "LPS phospholipase B (16:1), cell envelope" @@ -72451,11 +72451,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3068" - name: "LPS phospholipase B (18:0), cell envelope" @@ -72473,11 +72473,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3069" - name: "LPS phospholipase B (18:1), cell envelope" @@ -72495,11 +72495,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3070" - name: "PI phospholipase B (1-16:0, 2-16:1), cell envelope" @@ -72517,11 +72517,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3071" - name: "PI phospholipase B (1-16:1, 2-16:1), cell envelope" @@ -72539,11 +72539,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3072" - name: "PI phospholipase B (1-18:0, 2-16:1), cell envelope" @@ -72561,11 +72561,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3073" - name: "PI phospholipase B (1-18:1, 2-16:1), cell envelope" @@ -72583,11 +72583,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3074" - name: "PI phospholipase B (1-16:0, 2-18:1), cell envelope" @@ -72605,11 +72605,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3075" - name: "PI phospholipase B (1-16:1, 2-18:1), cell envelope" @@ -72627,11 +72627,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3076" - name: "PI phospholipase B (1-18:0, 2-18:1), cell envelope" @@ -72649,11 +72649,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3077" - name: "PI phospholipase B (1-18:1, 2-18:1), cell envelope" @@ -72671,11 +72671,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3078" - name: "LPI phospholipase B (16:0), cell envelope" @@ -72693,11 +72693,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3079" - name: "LPI phospholipase B (16:1), cell envelope" @@ -72715,11 +72715,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3080" - name: "LPI phospholipase B (18:0), cell envelope" @@ -72737,11 +72737,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3081" - name: "LPI phospholipase B (18:1), cell envelope" @@ -72759,11 +72759,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.5" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.5" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3082" - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-16:1), cytoplasm" @@ -72781,14 +72781,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3083" - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-16:1), cytoplasm" @@ -72806,14 +72806,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3084" - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-16:1), cytoplasm" @@ -72831,14 +72831,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3085" - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-16:1), cytoplasm" @@ -72856,14 +72856,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3086" - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-18:1), cytoplasm" @@ -72881,14 +72881,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3087" - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-18:1), cytoplasm" @@ -72906,14 +72906,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3088" - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-18:1), cytoplasm" @@ -72931,14 +72931,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3089" - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-18:1), cytoplasm" @@ -72956,14 +72956,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3090" - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-16:1), nucleus" @@ -72981,14 +72981,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3091" - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-16:1), nucleus" @@ -73006,14 +73006,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3092" - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-16:1), nucleus" @@ -73031,14 +73031,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3093" - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-16:1), nucleus" @@ -73056,14 +73056,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3094" - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-18:1), nucleus" @@ -73081,14 +73081,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3095" - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-18:1), nucleus" @@ -73106,14 +73106,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3096" - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-18:1), nucleus" @@ -73131,14 +73131,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3097" - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-18:1), nucleus" @@ -73156,14 +73156,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.11" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04933" - - pmid: "17382260" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.11" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04933" + - pmid: "17382260" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3098" - name: "PG phospholipase C (1-16:0, 2-16:1), mitochondrial membrane" @@ -73181,11 +73181,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3099" - name: "PG phospholipase C (1-16:1, 2-16:1), mitochondrial membrane" @@ -73203,11 +73203,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3100" - name: "PG phospholipase C (1-18:0, 2-16:1), mitochondrial membrane" @@ -73225,11 +73225,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3101" - name: "PG phospholipase C (1-18:1, 2-16:1), mitochondrial membrane" @@ -73247,11 +73247,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3102" - name: "PG phospholipase C (1-16:0, 2-18:1), mitochondrial membrane" @@ -73269,11 +73269,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3103" - name: "PG phospholipase C (1-16:1, 2-18:1), mitochondrial membrane" @@ -73291,11 +73291,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.-" - - kegg.pathway: "sce00564" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.-" + - kegg.pathway: "sce00564" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3104" - name: "PC phospholipase D (1-16:0, 2-16:1), cell envelope" @@ -73313,14 +73313,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.4" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3105" - name: "PC phospholipase D (1-16:1, 2-16:1), cell envelope" @@ -73338,14 +73338,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.4" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3106" - name: "PC phospholipase D (1-18:0, 2-16:1), cell envelope" @@ -73363,14 +73363,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.4" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3107" - name: "PC phospholipase D (1-18:1, 2-16:1), cell envelope" @@ -73388,14 +73388,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.4" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3108" - name: "PC phospholipase D (1-16:0, 2-18:1), cell envelope" @@ -73413,14 +73413,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.4" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3109" - name: "PC phospholipase D (1-16:1, 2-18:1), cell envelope" @@ -73438,14 +73438,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.4" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3110" - name: "PC phospholipase D (1-18:0, 2-18:1), cell envelope" @@ -73463,14 +73463,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.4" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3111" - name: "PC phospholipase D (1-18:1, 2-18:1), cell envelope" @@ -73488,14 +73488,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.4" - - kegg.pathway: - - "sce00564" - - "sce01110" - - "sce04144" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.4.4" + - kegg.pathway: + - "sce00564" + - "sce01110" + - "sce04144" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3112" - name: "PI 3-P phosphatase (1-16:0, 2-16:1), cell envelope" @@ -73513,13 +73513,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3113" - name: "PI 3-P phosphatase (1-16:1, 2-16:1), cell envelope" @@ -73537,13 +73537,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3114" - name: "PI 3-P phosphatase (1-18:0, 2-16:1), cell envelope" @@ -73561,13 +73561,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3115" - name: "PI 3-P phosphatase (1-18:1, 2-16:1), cell envelope" @@ -73585,13 +73585,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3116" - name: "PI 3-P phosphatase (1-16:0, 2-18:1), cell envelope" @@ -73609,13 +73609,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3117" - name: "PI 3-P phosphatase (1-16:1, 2-18:1), cell envelope" @@ -73633,13 +73633,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3118" - name: "PI 3-P phosphatase (1-18:0, 2-18:1), cell envelope" @@ -73657,13 +73657,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3119" - name: "PI 3-P phosphatase (1-18:1, 2-18:1), cell envelope" @@ -73681,13 +73681,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3120" - name: "PI 3-P phosphatase (1-16:0, 2-16:1), cytoplasm" @@ -73705,14 +73705,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3121" - name: "PI 3-P phosphatase (1-16:1, 2-16:1), cytoplasm" @@ -73730,15 +73730,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - bigg.reaction: "PIP3P_HDE_HDE_c" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - bigg.reaction: "PIP3P_HDE_HDE_c" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3122" - name: "PI 3-P phosphatase (1-18:0, 2-16:1), cytoplasm" @@ -73756,14 +73756,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3123" - name: "PI 3-P phosphatase (1-18:1, 2-16:1), cytoplasm" @@ -73781,14 +73781,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3124" - name: "PI 3-P phosphatase (1-16:0, 2-18:1), cytoplasm" @@ -73806,14 +73806,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3125" - name: "PI 3-P phosphatase (1-16:1, 2-18:1), cytoplasm" @@ -73831,14 +73831,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3126" - name: "PI 3-P phosphatase (1-18:0, 2-18:1), cytoplasm" @@ -73856,14 +73856,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3127" - name: "PI 3-P phosphatase (1-18:1, 2-18:1), cytoplasm" @@ -73881,14 +73881,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - kegg.pathway: - - "sce00562" - - "sce04070" - - "sce04138" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" + - kegg.pathway: + - "sce00562" + - "sce04070" + - "sce04138" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3128" - name: "PI 3-P phosphatase (1-16:0, 2-16:1), ER membrane" @@ -73906,13 +73906,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3129" - name: "PI 3-P phosphatase (1-16:1, 2-16:1), ER membrane" @@ -73930,13 +73930,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3130" - name: "PI 3-P phosphatase (1-18:0, 2-16:1), ER membrane" @@ -73954,13 +73954,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3131" - name: "PI 3-P phosphatase (1-18:1, 2-16:1), ER membrane" @@ -73978,13 +73978,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3132" - name: "PI 3-P phosphatase (1-16:0, 2-18:1), ER membrane" @@ -74002,13 +74002,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3133" - name: "PI 3-P phosphatase (1-16:1, 2-18:1), ER membrane" @@ -74026,13 +74026,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3134" - name: "PI 3-P phosphatase (1-18:0, 2-18:1), ER membrane" @@ -74050,13 +74050,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3135" - name: "PI 3-P phosphatase (1-18:1, 2-18:1), ER membrane" @@ -74074,13 +74074,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3136" - name: "PI 3-P phosphatase (1-16:0, 2-16:1), Golgi membrane" @@ -74098,13 +74098,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3137" - name: "PI 3-P phosphatase (1-16:1, 2-16:1), Golgi membrane" @@ -74122,13 +74122,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3138" - name: "PI 3-P phosphatase (1-18:0, 2-16:1), Golgi membrane" @@ -74146,13 +74146,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3139" - name: "PI 3-P phosphatase (1-18:1, 2-16:1), Golgi membrane" @@ -74170,13 +74170,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3140" - name: "PI 3-P phosphatase (1-16:0, 2-18:1), Golgi membrane" @@ -74194,13 +74194,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3141" - name: "PI 3-P phosphatase (1-16:1, 2-18:1), Golgi membrane" @@ -74218,13 +74218,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3142" - name: "PI 3-P phosphatase (1-18:0, 2-18:1), Golgi membrane" @@ -74242,13 +74242,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3143" - name: "PI 3-P phosphatase (1-18:1, 2-18:1), Golgi membrane" @@ -74266,13 +74266,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3144" - name: "PI 4-P phosphatase (1-16:0, 2-16:1), cell envelope" @@ -74290,13 +74290,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3145" - name: "PI 4-P phosphatase (1-16:1, 2-16:1), cell envelope" @@ -74314,13 +74314,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3146" - name: "PI 4-P phosphatase (1-18:0, 2-16:1), cell envelope" @@ -74338,13 +74338,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3147" - name: "PI 4-P phosphatase (1-18:1, 2-16:1), cell envelope" @@ -74362,13 +74362,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3148" - name: "PI 4-P phosphatase (1-16:0, 2-18:1), cell envelope" @@ -74386,13 +74386,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3149" - name: "PI 4-P phosphatase (1-16:1, 2-18:1), cell envelope" @@ -74410,13 +74410,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3150" - name: "PI 4-P phosphatase (1-18:0, 2-18:1), cell envelope" @@ -74434,13 +74434,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3151" - name: "PI 4-P phosphatase (1-18:1, 2-18:1), cell envelope" @@ -74458,13 +74458,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3152" - name: "PI 4-P phosphatase (1-16:0, 2-16:1), cytoplasm" @@ -74482,13 +74482,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3153" - name: "PI 4-P phosphatase (1-16:1, 2-16:1), cytoplasm" @@ -74506,13 +74506,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3154" - name: "PI 4-P phosphatase (1-18:0, 2-16:1), cytoplasm" @@ -74530,13 +74530,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3155" - name: "PI 4-P phosphatase (1-18:1, 2-16:1), cytoplasm" @@ -74554,13 +74554,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3156" - name: "PI 4-P phosphatase (1-16:0, 2-18:1), cytoplasm" @@ -74578,13 +74578,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3157" - name: "PI 4-P phosphatase (1-16:1, 2-18:1), cytoplasm" @@ -74602,13 +74602,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3158" - name: "PI 4-P phosphatase (1-18:0, 2-18:1), cytoplasm" @@ -74626,13 +74626,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3159" - name: "PI 4-P phosphatase (1-18:1, 2-18:1), cytoplasm" @@ -74650,13 +74650,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3160" - name: "PI 4-P phosphatase (1-16:0, 2-16:1), ER membrane" @@ -74674,13 +74674,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3161" - name: "PI 4-P phosphatase (1-16:1, 2-16:1), ER membrane" @@ -74698,13 +74698,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3162" - name: "PI 4-P phosphatase (1-18:0, 2-16:1), ER membrane" @@ -74722,13 +74722,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3163" - name: "PI 4-P phosphatase (1-18:1, 2-16:1), ER membrane" @@ -74746,13 +74746,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3164" - name: "PI 4-P phosphatase (1-16:0, 2-18:1), ER membrane" @@ -74770,13 +74770,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3165" - name: "PI 4-P phosphatase (1-16:1, 2-18:1), ER membrane" @@ -74794,13 +74794,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3166" - name: "PI 4-P phosphatase (1-18:0, 2-18:1), ER membrane" @@ -74818,13 +74818,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3167" - name: "PI 4-P phosphatase (1-18:1, 2-18:1), ER membrane" @@ -74842,13 +74842,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3168" - name: "PI 4-P phosphatase (1-16:0, 2-16:1), Golgi membrane" @@ -74866,13 +74866,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3169" - name: "PI 4-P phosphatase (1-16:1, 2-16:1), Golgi membrane" @@ -74890,13 +74890,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3170" - name: "PI 4-P phosphatase (1-18:0, 2-16:1), Golgi membrane" @@ -74914,13 +74914,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3171" - name: "PI 4-P phosphatase (1-18:1, 2-16:1), Golgi membrane" @@ -74938,13 +74938,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3172" - name: "PI 4-P phosphatase (1-16:0, 2-18:1), Golgi membrane" @@ -74962,13 +74962,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3173" - name: "PI 4-P phosphatase (1-16:1, 2-18:1), Golgi membrane" @@ -74986,13 +74986,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3174" - name: "PI 4-P phosphatase (1-18:0, 2-18:1), Golgi membrane" @@ -75010,13 +75010,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3175" - name: "PI 4-P phosphatase (1-18:1, 2-18:1), Golgi membrane" @@ -75034,13 +75034,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3176" - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), cell envelope" @@ -75058,13 +75058,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3177" - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), cell envelope" @@ -75082,13 +75082,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3178" - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), cell envelope" @@ -75106,13 +75106,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3179" - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), cell envelope" @@ -75130,13 +75130,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3180" - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), cell envelope" @@ -75154,13 +75154,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3181" - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), cell envelope" @@ -75178,13 +75178,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3182" - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), cell envelope" @@ -75202,13 +75202,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3183" - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), cell envelope" @@ -75226,13 +75226,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3184" - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), cytoplasm" @@ -75250,13 +75250,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3185" - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), cytoplasm" @@ -75274,13 +75274,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3186" - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), cytoplasm" @@ -75298,13 +75298,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3187" - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), cytoplasm" @@ -75322,13 +75322,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3188" - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), cytoplasm" @@ -75346,13 +75346,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3189" - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), cytoplasm" @@ -75370,13 +75370,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3190" - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), cytoplasm" @@ -75394,13 +75394,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3191" - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), cytoplasm" @@ -75418,13 +75418,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3192" - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), cell envelope" @@ -75442,13 +75442,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3193" - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), cell envelope" @@ -75466,13 +75466,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3194" - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), cell envelope" @@ -75490,13 +75490,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3195" - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), cell envelope" @@ -75514,13 +75514,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3196" - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), cell envelope" @@ -75538,13 +75538,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3197" - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), cell envelope" @@ -75562,13 +75562,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3198" - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), cell envelope" @@ -75586,13 +75586,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3199" - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), cell envelope" @@ -75610,13 +75610,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3200" - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), cytoplasm" @@ -75634,13 +75634,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3201" - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), cytoplasm" @@ -75658,13 +75658,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3202" - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), cytoplasm" @@ -75682,13 +75682,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3203" - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), cytoplasm" @@ -75706,13 +75706,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3204" - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), cytoplasm" @@ -75730,13 +75730,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3205" - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), cytoplasm" @@ -75754,13 +75754,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3206" - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), cytoplasm" @@ -75778,13 +75778,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3207" - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), cytoplasm" @@ -75802,13 +75802,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3208" - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), ER membrane" @@ -75826,13 +75826,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3209" - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), ER membrane" @@ -75850,13 +75850,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3210" - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), ER membrane" @@ -75874,13 +75874,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3211" - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), ER membrane" @@ -75898,13 +75898,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3212" - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), ER membrane" @@ -75922,13 +75922,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3213" - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), ER membrane" @@ -75946,13 +75946,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3214" - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), ER membrane" @@ -75970,13 +75970,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3215" - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), ER membrane" @@ -75994,13 +75994,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.36" - - kegg.pathway: - - "sce00562" - - "sce04070" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.36" + - kegg.pathway: + - "sce00562" + - "sce04070" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3216" - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), vacuolar membrane" @@ -76018,10 +76018,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3217" - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), vacuolar membrane" @@ -76039,10 +76039,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3218" - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), vacuolar membrane" @@ -76060,10 +76060,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3219" - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), vacuolar membrane" @@ -76081,10 +76081,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3220" - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), vacuolar membrane" @@ -76102,10 +76102,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3221" - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), vacuolar membrane" @@ -76123,10 +76123,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3222" - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), vacuolar membrane" @@ -76144,10 +76144,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3223" - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), vacuolar membrane" @@ -76165,10 +76165,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3224" - name: "DGPP phosphatase (1-16:0, 2-16:1), vacuolar membrane" @@ -76186,14 +76186,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3225" - name: "DGPP phosphatase (1-16:1, 2-16:1), vacuolar membrane" @@ -76211,14 +76211,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3226" - name: "DGPP phosphatase (1-18:0, 2-16:1), vacuolar membrane" @@ -76236,14 +76236,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3227" - name: "DGPP phosphatase (1-18:1, 2-16:1), vacuolar membrane" @@ -76261,14 +76261,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3228" - name: "DGPP phosphatase (1-16:0, 2-18:1), vacuolar membrane" @@ -76286,14 +76286,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3229" - name: "DGPP phosphatase (1-16:1, 2-18:1), vacuolar membrane" @@ -76311,14 +76311,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3230" - name: "DGPP phosphatase (1-18:0, 2-18:1), vacuolar membrane" @@ -76336,14 +76336,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3231" - name: "DGPP phosphatase (1-18:1, 2-18:1), vacuolar membrane" @@ -76361,14 +76361,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3232" - name: "DGPP phosphatase (1-16:0, 2-16:1), Golgi membrane" @@ -76386,10 +76386,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3233" - name: "DGPP phosphatase (1-16:1, 2-16:1), Golgi membrane" @@ -76407,10 +76407,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3234" - name: "DGPP phosphatase (1-18:0, 2-16:1), Golgi membrane" @@ -76428,10 +76428,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3235" - name: "DGPP phosphatase (1-18:1, 2-16:1), Golgi membrane" @@ -76449,10 +76449,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3236" - name: "DGPP phosphatase (1-16:0, 2-18:1), Golgi membrane" @@ -76470,10 +76470,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3237" - name: "DGPP phosphatase (1-16:1, 2-18:1), Golgi membrane" @@ -76491,10 +76491,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3238" - name: "DGPP phosphatase (1-18:0, 2-18:1), Golgi membrane" @@ -76512,10 +76512,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3239" - name: "DGPP phosphatase (1-18:1, 2-18:1), Golgi membrane" @@ -76533,10 +76533,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3240" - name: "lysoPA phosphatase (16:0), cytoplasm" @@ -76554,10 +76554,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3241" - name: "lysoPA phosphatase (16:1), cytoplasm" @@ -76575,10 +76575,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3242" - name: "lysoPA phosphatase (18:0), cytoplasm" @@ -76596,10 +76596,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3243" - name: "lysoPA phosphatase (18:1), cytoplasm" @@ -76617,10 +76617,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3244" - name: "lysoPA phosphatase (16:0), vacuolar membrane" @@ -76638,14 +76638,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3245" - name: "lysoPA phosphatase (16:1), vacuolar membrane" @@ -76663,14 +76663,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3246" - name: "lysoPA phosphatase (18:0), vacuolar membrane" @@ -76688,14 +76688,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3247" - name: "lysoPA phosphatase (18:1), vacuolar membrane" @@ -76713,14 +76713,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - - kegg.pathway: - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.4; 3.1.3.81" + - kegg.pathway: + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3248" - name: "lysoPA phosphatase (16:0), Golgi membrane" @@ -76738,10 +76738,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3249" - name: "lysoPA phosphatase (16:1), Golgi membrane" @@ -76759,10 +76759,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3250" - name: "lysoPA phosphatase (18:0), Golgi membrane" @@ -76780,10 +76780,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3251" - name: "lysoPA phosphatase (18:1), Golgi membrane" @@ -76801,10 +76801,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.3.-; 3.1.3.4" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3252" - name: "ergosteryl ester hydrolase (16:1), lipid particle" @@ -76822,13 +76822,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - kegg.pathway: "sce00100" - - pmid: - - "16835446" - - "14640980" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.13" + - kegg.pathway: "sce00100" + - pmid: + - "16835446" + - "14640980" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3253" - name: "ergosteryl ester hydrolase (18:1), lipid particle" @@ -76846,14 +76846,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - kegg.pathway: "sce00100" - - metanetx.reaction: "MNXR119162" - - pmid: - - "16835446" - - "14640980" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.13" + - kegg.pathway: "sce00100" + - metanetx.reaction: "MNXR119162" + - pmid: + - "16835446" + - "14640980" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3254" - name: "episteryl ester hydrolase (16:1), lipid particle" @@ -76871,10 +76871,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3255" - name: "episteryl ester hydrolase (18:1), lipid particle" @@ -76892,10 +76892,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3256" - name: "fecosteryl ester hydrolase (16:1), lipid particle" @@ -76913,10 +76913,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3257" - name: "fecosteryl ester hydrolase (18:1), lipid particle" @@ -76934,10 +76934,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3258" - name: "lanosteryl ester hydrolase (16:1), lipid particle" @@ -76955,10 +76955,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3259" - name: "lanosteryl ester hydrolase (18:1), lipid particle" @@ -76976,11 +76976,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - metanetx.reaction: "MNXR119160" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.13" + - metanetx.reaction: "MNXR119160" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3260" - name: "zymosteryl ester hydrolase (16:1), lipid particle" @@ -76998,10 +76998,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3261" - name: "zymosteryl ester hydrolase (18:1), lipid particle" @@ -77019,10 +77019,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.13" + - pmid: "16835446" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3262" - name: "zymosteryl ester hydrolase (16:1), cell envelope" @@ -77040,10 +77040,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "15632184" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.13" + - pmid: "15632184" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3263" - name: "zymosteryl ester hydrolase (18:1), cell envelope" @@ -77061,10 +77061,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "15632184" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.13" + - pmid: "15632184" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3264" - name: "TAG lipase (1-16:0, 2-16:1, 3-16:0), lipid particle" @@ -77082,15 +77082,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3265" - name: "TAG lipase (1-16:0, 2-16:1, 3-16:1), lipid particle" @@ -77108,15 +77108,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3266" - name: "TAG lipase (1-16:0, 2-16:1, 3-18:0), lipid particle" @@ -77134,15 +77134,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3267" - name: "TAG lipase (1-16:0, 2-16:1, 3-18:1), lipid particle" @@ -77160,15 +77160,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3268" - name: "TAG lipase (1-16:1, 2-16:1, 3-16:0), lipid particle" @@ -77186,15 +77186,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3269" - name: "TAG lipase (1-16:1, 2-16:1, 3-16:1), lipid particle" @@ -77212,15 +77212,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3270" - name: "TAG lipase (1-16:1, 2-16:1, 3-18:0), lipid particle" @@ -77238,15 +77238,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3271" - name: "TAG lipase (1-16:1, 2-16:1, 3-18:1), lipid particle" @@ -77264,15 +77264,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3272" - name: "TAG lipase (1-18:0, 2-16:1, 3-16:0), lipid particle" @@ -77290,15 +77290,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3273" - name: "TAG lipase (1-18:0, 2-16:1, 3-16:1), lipid particle" @@ -77316,15 +77316,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3274" - name: "TAG lipase (1-18:0, 2-16:1, 3-18:0), lipid particle" @@ -77342,15 +77342,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3275" - name: "TAG lipase (1-18:0, 2-16:1, 3-18:1), lipid particle" @@ -77368,15 +77368,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3276" - name: "TAG lipase (1-18:1, 2-16:1, 3-16:0), lipid particle" @@ -77394,15 +77394,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3277" - name: "TAG lipase (1-18:1, 2-16:1, 3-16:1), lipid particle" @@ -77420,15 +77420,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3278" - name: "TAG lipase (1-18:1, 2-16:1, 3-18:0), lipid particle" @@ -77446,15 +77446,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3279" - name: "TAG lipase (1-18:1, 2-16:1, 3-18:1), lipid particle" @@ -77472,15 +77472,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3280" - name: "TAG lipase (1-16:0, 2-18:1, 3-16:0), lipid particle" @@ -77498,15 +77498,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3281" - name: "TAG lipase (1-16:0, 2-18:1, 3-16:1), lipid particle" @@ -77524,15 +77524,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3282" - name: "TAG lipase (1-16:0, 2-18:1, 3-18:0), lipid particle" @@ -77550,15 +77550,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3283" - name: "TAG lipase (1-16:0, 2-18:1, 3-18:1), lipid particle" @@ -77576,15 +77576,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3284" - name: "TAG lipase (1-16:1, 2-18:1, 3-16:0), lipid particle" @@ -77602,15 +77602,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3285" - name: "TAG lipase (1-16:1, 2-18:1, 3-16:1), lipid particle" @@ -77628,15 +77628,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3286" - name: "TAG lipase (1-16:1, 2-18:1, 3-18:0), lipid particle" @@ -77654,15 +77654,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3287" - name: "TAG lipase (1-16:1, 2-18:1, 3-18:1), lipid particle" @@ -77680,15 +77680,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3288" - name: "TAG lipase (1-18:0, 2-18:1, 3-16:0), lipid particle" @@ -77706,15 +77706,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3289" - name: "TAG lipase (1-18:0, 2-18:1, 3-16:1), lipid particle" @@ -77732,15 +77732,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3290" - name: "TAG lipase (1-18:0, 2-18:1, 3-18:0), lipid particle" @@ -77758,15 +77758,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3291" - name: "TAG lipase (1-18:0, 2-18:1, 3-18:1), lipid particle" @@ -77784,15 +77784,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3292" - name: "TAG lipase (1-18:1, 2-18:1, 3-16:0), lipid particle" @@ -77810,15 +77810,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3293" - name: "TAG lipase (1-18:1, 2-18:1, 3-16:1), lipid particle" @@ -77836,15 +77836,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3294" - name: "TAG lipase (1-18:1, 2-18:1, 3-18:0), lipid particle" @@ -77862,15 +77862,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3295" - name: "TAG lipase (1-18:1, 2-18:1, 3-18:1), lipid particle" @@ -77888,15 +77888,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.-; 3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3296" - name: "DAG lipase (1-16:0, 2-16:1), lipid particle" @@ -77914,11 +77914,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3297" - name: "DAG lipase (1-16:1, 2-16:1), lipid particle" @@ -77936,11 +77936,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3298" - name: "DAG lipase (1-18:0, 2-16:1), lipid particle" @@ -77958,11 +77958,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3299" - name: "DAG lipase (1-18:1, 2-16:1), lipid particle" @@ -77980,11 +77980,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3300" - name: "DAG lipase (1-16:0, 2-18:1), lipid particle" @@ -78002,11 +78002,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3301" - name: "DAG lipase (1-16:1, 2-18:1), lipid particle" @@ -78024,11 +78024,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3302" - name: "DAG lipase (1-18:0, 2-18:1), lipid particle" @@ -78046,11 +78046,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3303" - name: "DAG lipase (1-18:1, 2-18:1), lipid particle" @@ -78068,11 +78068,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3304" - name: "DAG lipase (1-16:0, 2-18:1), mitochondrion" @@ -78090,11 +78090,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3305" - name: "DAG lipase (1-16:1, 2-18:1), mitochondrion" @@ -78112,11 +78112,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3306" - name: "DAG lipase (1-18:0, 2-18:1), mitochondrion" @@ -78134,11 +78134,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3307" - name: "DAG lipase (1-18:1, 2-18:1), mitochondrion" @@ -78156,11 +78156,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3308" - name: "MAG lipase (1-16:0), lipid particle" @@ -78178,11 +78178,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.23" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.23" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3309" - name: "MAG lipase (1-16:1), lipid particle" @@ -78200,11 +78200,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.23" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.23" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3310" - name: "MAG lipase (1-18:0), lipid particle" @@ -78222,11 +78222,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.23" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.23" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3311" - name: "MAG lipase (1-18:1), lipid particle" @@ -78244,11 +78244,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.23" - - kegg.pathway: "sce00561" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.23" + - kegg.pathway: "sce00561" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3312" - name: "lysoPE (1-16:0) oleoyl-CoA acyltransferase, lipid particle" @@ -78265,11 +78265,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "20016004" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "20016004" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3313" - name: "lysoPE (1-16:1) oleoyl-CoA acyltransferase, lipid particle" @@ -78286,11 +78286,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "20016004" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "20016004" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3314" - name: "lysoPE (1-18:0) oleoyl-CoA acyltransferase, lipid particle" @@ -78307,11 +78307,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "20016004" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "20016004" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3315" - name: "lysoPE (1-18:1) oleoyl-CoA acyltransferase, lipid particle" @@ -78328,11 +78328,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: "sce00561" - - pmid: "20016004" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: "sce00561" + - pmid: "20016004" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3316" - name: "PC phospholipase A2 (1-16:0, 2-16:1), lipid particle" @@ -78350,15 +78350,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3317" - name: "PC phospholipase A2 (1-16:1, 2-16:1), lipid particle" @@ -78376,15 +78376,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3318" - name: "PC phospholipase A2 (1-18:0, 2-16:1), lipid particle" @@ -78402,15 +78402,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3319" - name: "PC phospholipase A2 (1-18:1, 2-16:1), lipid particle" @@ -78428,15 +78428,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3320" - name: "PC phospholipase A2 (1-16:0, 2-18:1), lipid particle" @@ -78454,15 +78454,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3321" - name: "PC phospholipase A2 (1-16:1, 2-18:1), lipid particle" @@ -78480,15 +78480,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3322" - name: "PC phospholipase A2 (1-18:0, 2-18:1), lipid particle" @@ -78506,15 +78506,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3323" - name: "PC phospholipase A2 (1-18:1, 2-18:1), lipid particle" @@ -78532,15 +78532,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3324" - name: "PE phospholipase A2 (1-16:0, 2-16:1), lipid particle" @@ -78558,15 +78558,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3325" - name: "PE phospholipase A2 (1-16:1, 2-16:1), lipid particle" @@ -78584,15 +78584,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3326" - name: "PE phospholipase A2 (1-18:0, 2-16:1), lipid particle" @@ -78610,15 +78610,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3327" - name: "PE phospholipase A2 (1-18:1, 2-16:1), lipid particle" @@ -78636,15 +78636,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3328" - name: "PE phospholipase A2 (1-16:0, 2-18:1), lipid particle" @@ -78662,15 +78662,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3329" - name: "PE phospholipase A2 (1-16:1, 2-18:1), lipid particle" @@ -78688,15 +78688,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3330" - name: "PE phospholipase A2 (1-18:0, 2-18:1), lipid particle" @@ -78714,15 +78714,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3331" - name: "PE phospholipase A2 (1-18:1, 2-18:1), lipid particle" @@ -78740,15 +78740,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.3" - - kegg.pathway: - - "sce00100" - - "sce00561" - - "sce00564" - - "sce01110" - - pmid: "22345606" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.1.3" + - kegg.pathway: + - "sce00100" + - "sce00561" + - "sce00564" + - "sce01110" + - pmid: "22345606" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_4039" - name: "succinyl-CoA:acetate CoA transferase" @@ -78765,13 +78765,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.1" - - kegg.pathway: "sce00620" - - kegg.reaction: "R10343" - - metanetx.reaction: "MNXR104636" - - pmid: "19298859" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.1.2.1" + - kegg.pathway: "sce00620" + - kegg.reaction: "R10343" + - metanetx.reaction: "MNXR104636" + - pmid: "19298859" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_4042" - name: "raffinose invertase" @@ -78788,12 +78788,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R02410" - - metanetx.reaction: "MNXR103420" - - pmid: "4967422" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "" + - kegg.reaction: "R02410" + - metanetx.reaction: "MNXR103420" + - pmid: "4967422" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_4045" - name: "uridine hydrolase" @@ -78810,16 +78810,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.2.3" - - bigg.reaction: "URIH" - - kegg.pathway: - - "sce00240" - - "sce00760" - - kegg.reaction: "R01080" - - metanetx.reaction: "MNXR105161" - - pmid: "23670538" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "3.2.2.3" + - bigg.reaction: "URIH" + - kegg.pathway: + - "sce00240" + - "sce00760" + - kegg.reaction: "R01080" + - metanetx.reaction: "MNXR105161" + - pmid: "23670538" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_0964" - name: "reduced glutathione via ABC system" @@ -78839,11 +78839,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100447" - - pmid: "9729482" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR100447" + - pmid: "9729482" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1028" - name: "taurcholate via ABC system" @@ -78863,11 +78863,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104744" - - pmid: "9182565" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR104744" + - pmid: "9182565" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1085" - name: "V-ATPase, Golgi" @@ -78886,16 +78886,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.-.-; 3.6.3.14" - - kegg.pathway: - - "sce00190" - - "sce04145" - - metanetx.reaction: "MNXR96133" - - pmid: - - "11278748" - - "11836511" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "3.1.-.-; 3.6.3.14" + - kegg.pathway: + - "sce00190" + - "sce04145" + - metanetx.reaction: "MNXR96133" + - pmid: + - "11278748" + - "11836511" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1086" - name: "V-ATPase, vacuole" @@ -78914,16 +78914,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.-.-; 3.6.3.14" - - kegg.pathway: - - "sce00190" - - "sce04145" - - metanetx.reaction: "MNXR96133" - - pmid: - - "11278748" - - "11836511" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "3.1.-.-; 3.6.3.14" + - kegg.pathway: + - "sce00190" + - "sce04145" + - metanetx.reaction: "MNXR96133" + - pmid: + - "11278748" + - "11836511" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1096" - name: "(R)-mevalonate transport" @@ -78938,12 +78938,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MEV_Rt" - - metanetx.reaction: "MNXR105406" - - pmid: "15215118" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "MEV_Rt" + - metanetx.reaction: "MNXR105406" + - pmid: "15215118" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1097" - name: "(R,R)-butanediol transport" @@ -78958,12 +78958,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "BTDt_RR" - - metanetx.reaction: "MNXR136615" - - pmid: "10938079" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "BTDt_RR" + - metanetx.reaction: "MNXR136615" + - pmid: "10938079" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1098" - name: "2-methylbutyl transport" @@ -78978,12 +78978,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2MBACt" - - metanetx.reaction: "MNXR94808" - - pmid: "10653746" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "2MBACt" + - metanetx.reaction: "MNXR94808" + - pmid: "10653746" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1099" - name: "2-oxoadipate and 2-oxoglutarate transport" @@ -79000,14 +79000,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2OXOADPTm" - - metanetx.reaction: "MNXR94819" - - pmid: - - "16844075" - - "11013234" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "2OXOADPTm" + - metanetx.reaction: "MNXR94819" + - pmid: + - "16844075" + - "11013234" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1100" - name: "3-hexaprenyl-4,5-dihydroxybenzoate transport" @@ -79022,12 +79022,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3DH5HPBtm" - - metanetx.reaction: "MNXR94863" - - pmid: "11583838" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "3DH5HPBtm" + - metanetx.reaction: "MNXR94863" + - pmid: "11583838" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1101" - name: "4-aminobutyrate transport" @@ -79044,11 +79044,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ABUTt2r" - - metanetx.reaction: "MNXR94994" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ABUTt2r" + - metanetx.reaction: "MNXR94994" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1102" - name: "5-aminolevulinate transport" @@ -79065,11 +79065,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "5AOPt2" - - metanetx.reaction: "MNXR95061" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "5AOPt2" + - metanetx.reaction: "MNXR95061" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1103" - name: "5-formyltetrahydrofolic acid transport" @@ -79084,11 +79084,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95074" - - pmid: "8573145" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95074" + - pmid: "8573145" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1104" - name: "8-Amino-7-oxononanoate transport" @@ -79105,12 +79105,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "8AONNt2" - - metanetx.reaction: "MNXR95113" - - pmid: "10333520" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "8AONNt2" + - metanetx.reaction: "MNXR95113" + - pmid: "10333520" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1106" - name: "acetate transport" @@ -79125,12 +79125,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ACtr" - - metanetx.reaction: "MNXR95431" - - pmid: "14968426" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ACtr" + - metanetx.reaction: "MNXR95431" + - pmid: "14968426" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1107" - name: "acetic ester transport" @@ -79145,10 +79145,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "10653746" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - pmid: "10653746" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1108" - name: "adenine transport" @@ -79165,11 +79165,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ADEt2" - - metanetx.reaction: "MNXR95446" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ADEt2" + - metanetx.reaction: "MNXR95446" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1109" - name: "adenosine transport" @@ -79186,12 +79186,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ADNt2" - - metanetx.reaction: "MNXR95461" - - pmid: "10827169" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ADNt2" + - metanetx.reaction: "MNXR95461" + - pmid: "10827169" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1110" - name: "ADP/ATP transporter" @@ -79208,16 +79208,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ATPtm" - - kegg.reaction: "R00124" - - metanetx.reaction: "MNXR96123" - - pmid: - - "22672422" - - "7003152" - - "14998997" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ATPtm" + - kegg.reaction: "R00124" + - metanetx.reaction: "MNXR96123" + - pmid: + - "22672422" + - "7003152" + - "14998997" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1111" - name: "ADP/ATP transporter" @@ -79236,11 +79236,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ATPtp_H" - - metanetx.reaction: "MNXR96139" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ATPtp_H" + - metanetx.reaction: "MNXR96139" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1112" - name: "AKG transporter, mitochonrial" @@ -79257,12 +79257,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AKGCITtm" - - metanetx.reaction: "MNXR95654" - - pmid: "20371607" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "AKGCITtm" + - metanetx.reaction: "MNXR95654" + - pmid: "20371607" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1113" - name: "allantoate uniport" @@ -79277,11 +79277,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ALLTTti" - - metanetx.reaction: "MNXR95773" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ALLTTti" + - metanetx.reaction: "MNXR95773" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1114" - name: "allantoin uniport" @@ -79296,11 +79296,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ALLTNti" - - metanetx.reaction: "MNXR95771" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ALLTNti" + - metanetx.reaction: "MNXR95771" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1115" - name: "ammonia transport" @@ -79315,12 +79315,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NH4t" - - metanetx.reaction: "MNXR101950" - - pmid: "12966084" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "NH4t" + - metanetx.reaction: "MNXR101950" + - pmid: "12966084" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1116" - name: "AMP/ATP transporter" @@ -79339,11 +79339,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ATP2tp_H" - - metanetx.reaction: "MNXR96125" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ATP2tp_H" + - metanetx.reaction: "MNXR96125" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1118" - name: "aspartate-glutamate transporter" @@ -79360,12 +79360,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ASPGLU2m" - - metanetx.reaction: "MNXR96083" - - pmid: "14622413" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ASPGLU2m" + - metanetx.reaction: "MNXR96083" + - pmid: "14622413" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1119" - name: "biotin uptake" @@ -79382,11 +79382,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "BTNt2i" - - metanetx.reaction: "MNXR96334" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "BTNt2i" + - metanetx.reaction: "MNXR96334" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1120" - name: "carnithine-acetylcarnithine carrier" @@ -79403,11 +79403,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CRNCARtm" - - metanetx.reaction: "MNXR96898" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "CRNCARtm" + - metanetx.reaction: "MNXR96898" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1121" - name: "ceramide-2' (sphinganine:n-C24:0OH) transport" @@ -79422,10 +79422,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "12484746" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - pmid: "12484746" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1122" - name: "ceramide-2' (sphinganine:n-C26:0OH) transport" @@ -79440,10 +79440,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "12484746" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - pmid: "12484746" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1123" - name: "ceramide-3 (Phytosphingosine:n-C24:0OH) transport" @@ -79458,10 +79458,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "12484746" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - pmid: "12484746" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1124" - name: "ceramide-3 (Phytosphingosine:n-C26:0OH) transport" @@ -79476,10 +79476,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "12484746" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - pmid: "12484746" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1125" - name: "choline transport" @@ -79496,11 +79496,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CHLt2" - - metanetx.reaction: "MNXR96692" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "CHLt2" + - metanetx.reaction: "MNXR96692" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1126" - name: "citrate transport" @@ -79517,11 +79517,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CITtam" - - metanetx.reaction: "MNXR96753" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "CITtam" + - metanetx.reaction: "MNXR96753" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1127" - name: "citrate transport" @@ -79538,11 +79538,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CITtbm" - - metanetx.reaction: "MNXR96754" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "CITtbm" + - metanetx.reaction: "MNXR96754" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1128" - name: "citrate transport" @@ -79559,11 +79559,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CITtcm" - - metanetx.reaction: "MNXR96755" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "CITtcm" + - metanetx.reaction: "MNXR96755" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1129" - name: "coenzyme A transport" @@ -79578,12 +79578,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "COAtim" - - metanetx.reaction: "MNXR96815" - - pmid: "11158296" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "COAtim" + - metanetx.reaction: "MNXR96815" + - pmid: "11158296" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1130" - name: "CTP transport" @@ -79602,10 +79602,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "16844075" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - pmid: "16844075" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1131" - name: "CTP/CMP antiport" @@ -79624,12 +79624,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CTPtm" - - metanetx.reaction: "MNXR96947" - - pmid: "16194150" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "CTPtm" + - metanetx.reaction: "MNXR96947" + - pmid: "16194150" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1132" - name: "cytidine transport" @@ -79646,12 +79646,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CYTDt2" - - metanetx.reaction: "MNXR97044" - - pmid: "10827170" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "CYTDt2" + - metanetx.reaction: "MNXR97044" + - pmid: "10827170" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1133" - name: "cytosine transport" @@ -79668,11 +79668,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CSNt2" - - metanetx.reaction: "MNXR96929" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "CSNt2" + - metanetx.reaction: "MNXR96929" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1134" - name: "D-fructose transport" @@ -79689,12 +79689,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FRUt2" - - kegg.pathway: "sce04113" - - metanetx.reaction: "MNXR99664" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "FRUt2" + - kegg.pathway: "sce04113" + - metanetx.reaction: "MNXR99664" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1135" - name: "D-galactose transport" @@ -79711,12 +79711,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GALt2" - - kegg.pathway: "sce04113" - - metanetx.reaction: "MNXR100026" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "GALt2" + - kegg.pathway: "sce04113" + - metanetx.reaction: "MNXR100026" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1136" - name: "D-lactate transport" @@ -79733,11 +79733,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "D_LACt2" - - metanetx.reaction: "MNXR97838" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "D_LACt2" + - metanetx.reaction: "MNXR97838" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1137" - name: "D-lactate transport" @@ -79754,12 +79754,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "D_LACtm" - - metanetx.reaction: "MNXR97838" - - pmid: "14871487" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "D_LACtm" + - metanetx.reaction: "MNXR97838" + - pmid: "14871487" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1138" - name: "D-lactate/pyruvate antiport" @@ -79776,12 +79776,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "D_LACt2m" - - metanetx.reaction: "MNXR97839" - - pmid: "14871487" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "D_LACt2m" + - metanetx.reaction: "MNXR97839" + - pmid: "14871487" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1139" - name: "D-mannose transport" @@ -79798,12 +79798,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MANt2" - - kegg.pathway: "sce04113" - - metanetx.reaction: "MNXR101403" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "MANt2" + - kegg.pathway: "sce04113" + - metanetx.reaction: "MNXR101403" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1146" - name: "episterol transport" @@ -79818,12 +79818,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EPISTt" - - metanetx.reaction: "MNXR97944" - - pmid: "12077145" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "EPISTt" + - metanetx.reaction: "MNXR97944" + - pmid: "12077145" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1147" - name: "ergosterol transport" @@ -79838,12 +79838,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ERGSTt" - - metanetx.reaction: "MNXR97950" - - pmid: "12077145" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ERGSTt" + - metanetx.reaction: "MNXR97950" + - pmid: "12077145" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1148" - name: "ergosterol transport" @@ -79858,11 +79858,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR97950" - - pmid: "17434796" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR97950" + - pmid: "17434796" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1149" - name: "ethanolamine transport" @@ -79877,12 +79877,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ETHAt" - - metanetx.reaction: "MNXR97974" - - pmid: "15201274" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ETHAt" + - metanetx.reaction: "MNXR97974" + - pmid: "15201274" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1151" - name: "fadH2 transport" @@ -79897,12 +79897,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FADH2tm" - - metanetx.reaction: "MNXR99212" - - pmid: "8631763" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "FADH2tm" + - metanetx.reaction: "MNXR99212" + - pmid: "8631763" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1161" - name: "fecosterol transport" @@ -79917,12 +79917,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FECOSTt" - - metanetx.reaction: "MNXR99529" - - pmid: "12077145" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "FECOSTt" + - metanetx.reaction: "MNXR99529" + - pmid: "12077145" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1162" - name: "fecosterol transport" @@ -79937,11 +79937,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99529" - - pmid: "17434796" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR99529" + - pmid: "17434796" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1164" - name: "folic acid transport" @@ -79956,12 +79956,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "r0963" - - metanetx.reaction: "MNXR105408" - - pmid: "15215118" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "r0963" + - metanetx.reaction: "MNXR105408" + - pmid: "15215118" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1165" - name: "GDP-mannose antiport" @@ -79978,12 +79978,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GDPMANNtg" - - metanetx.reaction: "MNXR100090" - - pmid: "9395539" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "GDPMANNtg" + - metanetx.reaction: "MNXR100090" + - pmid: "9395539" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1166" - name: "glucose transport" @@ -79998,13 +79998,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLCt1" - - kegg.pathway: "sce04113" - - metanetx.reaction: "MNXR100188" - - pmid: "10618490" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "GLCt1" + - kegg.pathway: "sce04113" + - metanetx.reaction: "MNXR100188" + - pmid: "10618490" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1167" - name: "glutathione transport" @@ -80019,12 +80019,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GTHRDt2" - - metanetx.reaction: "MNXR100449" - - pmid: "10788431" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "GTHRDt2" + - metanetx.reaction: "MNXR100449" + - pmid: "10788431" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1168" - name: "glutathione transport" @@ -80039,11 +80039,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100449" - - pmid: "10790694" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR100449" + - pmid: "10790694" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1169" - name: "glycero-3-phospho-1-inositol transport" @@ -80058,12 +80058,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "G3PIt" - - metanetx.reaction: "MNXR99888" - - pmid: "15145930" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "G3PIt" + - metanetx.reaction: "MNXR99888" + - pmid: "15145930" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1170" - name: "glycero-3-phosphocholine transport" @@ -80078,12 +80078,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "G3PCt" - - metanetx.reaction: "MNXR99874" - - pmid: "15145930" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "G3PCt" + - metanetx.reaction: "MNXR99874" + - pmid: "15145930" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1171" - name: "glycerol transport" @@ -80100,14 +80100,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLYCt2" - - metanetx.reaction: "MNXR100344" - - pmid: - - "15703210" - - "21623372" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "GLYCt2" + - metanetx.reaction: "MNXR100344" + - pmid: + - "15703210" + - "21623372" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1172" - name: "glycerol transport via channel" @@ -80122,11 +80122,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLYCt" - - metanetx.reaction: "MNXR100343" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "GLYCt" + - metanetx.reaction: "MNXR100343" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1173" - name: "glycine transport" @@ -80143,12 +80143,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLYt2r" - - metanetx.reaction: "MNXR100368" - - pmid: "9573211" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "GLYt2r" + - metanetx.reaction: "MNXR100368" + - pmid: "9573211" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1174" - name: "glycogen vacuolar 'transport' via autophagy" @@ -80163,12 +80163,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLCNtv" - - metanetx.reaction: "MNXR100211" - - pmid: "11486014" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GLCNtv" + - metanetx.reaction: "MNXR100211" + - pmid: "11486014" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1175" - name: "GTP/GDP translocase" @@ -80187,12 +80187,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GTPt2m" - - metanetx.reaction: "MNXR100461" - - pmid: "14998997" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "GTPt2m" + - metanetx.reaction: "MNXR100461" + - pmid: "14998997" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1176" - name: "guanine transport" @@ -80209,11 +80209,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GUAt2r" - - metanetx.reaction: "MNXR100466" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "GUAt2r" + - metanetx.reaction: "MNXR100466" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1177" - name: "inositol transport" @@ -80230,11 +80230,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "INSTt2" - - metanetx.reaction: "MNXR100841" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "INSTt2" + - metanetx.reaction: "MNXR100841" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1178" - name: "iron (II) transport" @@ -80249,12 +80249,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FE2t" - - metanetx.reaction: "MNXR99505" - - pmid: "9115232" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "FE2t" + - metanetx.reaction: "MNXR99505" + - pmid: "9115232" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1179" - name: "iron (II) transport" @@ -80269,12 +80269,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FE2utm" - - metanetx.reaction: "MNXR99505" - - pmid: "9660806" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "FE2utm" + - metanetx.reaction: "MNXR99505" + - pmid: "9660806" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1180" - name: "isoamyl acetate transport" @@ -80289,12 +80289,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "IAMACt" - - metanetx.reaction: "MNXR100774" - - pmid: "10653746" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "IAMACt" + - metanetx.reaction: "MNXR100774" + - pmid: "10653746" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1181" - name: "isobutyl acetate transport" @@ -80309,12 +80309,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "IBUTACt" - - metanetx.reaction: "MNXR100779" - - pmid: "10653746" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "IBUTACt" + - metanetx.reaction: "MNXR100779" + - pmid: "10653746" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1182" - name: "isopentenyl diphosphate transport" @@ -80329,12 +80329,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "IPDPtm" - - metanetx.reaction: "MNXR100876" - - pmid: "11583838" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "IPDPtm" + - metanetx.reaction: "MNXR100876" + - pmid: "11583838" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1183" - name: "L-alanine transport" @@ -80351,14 +80351,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ALAt2r" - - metanetx.reaction: "MNXR95704" - - pmid: - - "7495881" - - "9489675" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ALAt2r" + - metanetx.reaction: "MNXR95704" + - pmid: + - "7495881" + - "9489675" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1184" - name: "L-arganine transport" @@ -80375,11 +80375,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ARGt2r" - - metanetx.reaction: "MNXR95953" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ARGt2r" + - metanetx.reaction: "MNXR95953" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1185" - name: "L-arganine transport" @@ -80396,12 +80396,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ARGt6" - - metanetx.reaction: "MNXR95954" - - pmid: "15572352" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ARGt6" + - metanetx.reaction: "MNXR95954" + - pmid: "15572352" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1186" - name: "L-asparagine transport" @@ -80418,12 +80418,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ASNt2r" - - metanetx.reaction: "MNXR96066" - - pmid: "8660458" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ASNt2r" + - metanetx.reaction: "MNXR96066" + - pmid: "8660458" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1187" - name: "L-asparagine transport" @@ -80440,12 +80440,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ASNt6" - - metanetx.reaction: "MNXR96067" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ASNt6" + - metanetx.reaction: "MNXR96067" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1188" - name: "L-aspartate transport" @@ -80462,13 +80462,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ASNt7" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR96066" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ASNt7" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR96066" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1189" - name: "L-aspartate transport" @@ -80485,12 +80485,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ASPt7" - - metanetx.reaction: "MNXR96106" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ASPt7" + - metanetx.reaction: "MNXR96106" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1190" - name: "L-aspartate transport" @@ -80507,11 +80507,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ASPt2r" - - metanetx.reaction: "MNXR96106" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ASPt2r" + - metanetx.reaction: "MNXR96106" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1191" - name: "L-carnitine transport" @@ -80526,11 +80526,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CRNt" - - metanetx.reaction: "MNXR96906" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "CRNt" + - metanetx.reaction: "MNXR96906" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1192" - name: "L-cystine transport" @@ -80547,12 +80547,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CYSt2r" - - metanetx.reaction: "MNXR97027" - - pmid: "9573211" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "CYSt2r" + - metanetx.reaction: "MNXR97027" + - pmid: "9573211" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1193" - name: "L-cystine transport" @@ -80569,12 +80569,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "LCYSTintv" - - metanetx.reaction: "MNXR101034" - - pmid: "11689434" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "LCYSTintv" + - metanetx.reaction: "MNXR101034" + - pmid: "11689434" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1194" - name: "L-glutamate transport" @@ -80589,12 +80589,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLUt7m" - - metanetx.reaction: "MNXR100301" - - pmid: "14622413" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "GLUt7m" + - metanetx.reaction: "MNXR100301" + - pmid: "14622413" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1195" - name: "L-glutamate transport" @@ -80611,12 +80611,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLUt7" - - metanetx.reaction: "MNXR100300" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "GLUt7" + - metanetx.reaction: "MNXR100300" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1196" - name: "L-glutamate transport" @@ -80633,11 +80633,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLUt2r" - - metanetx.reaction: "MNXR100300" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "GLUt2r" + - metanetx.reaction: "MNXR100300" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1197" - name: "L-glutamine transport" @@ -80654,12 +80654,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLNt6" - - metanetx.reaction: "MNXR100262" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "GLNt6" + - metanetx.reaction: "MNXR100262" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1198" - name: "L-glutamine transport" @@ -80676,13 +80676,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLNt7" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR100260" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "GLNt7" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR100260" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1199" - name: "L-glutamine transport" @@ -80699,11 +80699,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLNt2r" - - metanetx.reaction: "MNXR100260" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "GLNt2r" + - metanetx.reaction: "MNXR100260" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1200" - name: "L-histidine transport, vacuolar" @@ -80720,12 +80720,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HISt6" - - metanetx.reaction: "MNXR100647" - - pmid: "15572352" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "HISt6" + - metanetx.reaction: "MNXR100647" + - pmid: "15572352" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1201" - name: "L-histidine transport" @@ -80742,11 +80742,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HISt2r" - - metanetx.reaction: "MNXR100645" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "HISt2r" + - metanetx.reaction: "MNXR100645" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1202" - name: "L-isoleucine transport" @@ -80761,12 +80761,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR100824" - - pmid: "17021250" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR100824" + - pmid: "17021250" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1203" - name: "L-isoleucine transport" @@ -80783,12 +80783,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ILEt6" - - metanetx.reaction: "MNXR100825" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ILEt6" + - metanetx.reaction: "MNXR100825" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1204" - name: "L-isoleucine transport" @@ -80805,13 +80805,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ILEt7" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR100822" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ILEt7" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR100822" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1205" - name: "L-isoleucine transport" @@ -80828,11 +80828,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ILEt2r" - - metanetx.reaction: "MNXR100822" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ILEt2r" + - metanetx.reaction: "MNXR100822" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1206" - name: "L-lactate transport" @@ -80847,12 +80847,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "L_LACtcm" - - metanetx.reaction: "MNXR100999" - - pmid: "17761666" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "L_LACtcm" + - metanetx.reaction: "MNXR100999" + - pmid: "17761666" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1207" - name: "L-lactate transport" @@ -80869,12 +80869,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "L_LACt2r" - - metanetx.reaction: "MNXR101277" - - pmid: "10198029" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "L_LACt2r" + - metanetx.reaction: "MNXR101277" + - pmid: "10198029" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1208" - name: "L-leucine transport, vacuoluar" @@ -80889,12 +80889,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR101057" - - pmid: "17021250" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR101057" + - pmid: "17021250" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1209" - name: "L-leucine transport, vacuoluar" @@ -80911,12 +80911,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "LEUt6" - - metanetx.reaction: "MNXR101058" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "LEUt6" + - metanetx.reaction: "MNXR101058" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1210" - name: "L-leucine transport, vacuoluar" @@ -80933,13 +80933,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "LEUt7" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR101055" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "LEUt7" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR101055" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1211" - name: "L-leucine transport" @@ -80956,11 +80956,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "LEUt2r" - - metanetx.reaction: "MNXR101055" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "LEUt2r" + - metanetx.reaction: "MNXR101055" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1212" - name: "L-lysine transport" @@ -80977,12 +80977,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "LYSt6" - - metanetx.reaction: "MNXR101267" - - pmid: "15572352" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "LYSt6" + - metanetx.reaction: "MNXR101267" + - pmid: "15572352" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1213" - name: "L-lysine transport" @@ -80999,11 +80999,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "LYSt2r" - - metanetx.reaction: "MNXR101266" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "LYSt2r" + - metanetx.reaction: "MNXR101266" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1214" - name: "L-methionine transport" @@ -81020,11 +81020,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "METt2r" - - metanetx.reaction: "MNXR101490" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "METt2r" + - metanetx.reaction: "MNXR101490" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1215" - name: "L-phenylalanine transport" @@ -81041,11 +81041,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PHEt2r" - - metanetx.reaction: "MNXR102635" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "PHEt2r" + - metanetx.reaction: "MNXR102635" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1216" - name: "L-proline transport" @@ -81062,11 +81062,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PROt2r" - - metanetx.reaction: "MNXR103211" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "PROt2r" + - metanetx.reaction: "MNXR103211" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1217" - name: "L-serine transport" @@ -81083,11 +81083,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SERt2r" - - metanetx.reaction: "MNXR104352" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "SERt2r" + - metanetx.reaction: "MNXR104352" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1218" - name: "L-threonine transport" @@ -81104,12 +81104,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "THRt2r" - - metanetx.reaction: "MNXR104850" - - pmid: "9489675" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "THRt2r" + - metanetx.reaction: "MNXR104850" + - pmid: "9489675" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1219" - name: "L-tryptophan transport" @@ -81126,12 +81126,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TRPt2r" - - metanetx.reaction: "MNXR104950" - - pmid: "9573211" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "TRPt2r" + - metanetx.reaction: "MNXR104950" + - pmid: "9573211" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1220" - name: "L-tyrosine transport" @@ -81146,12 +81146,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR105002" - - pmid: "17021250" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR105002" + - pmid: "17021250" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1221" - name: "L-tyrosine transport" @@ -81168,12 +81168,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TYRt6" - - metanetx.reaction: "MNXR105005" - - pmid: "15572352" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "TYRt6" + - metanetx.reaction: "MNXR105005" + - pmid: "15572352" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1222" - name: "L-tyrosine transport" @@ -81190,13 +81190,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TYRt7" - - kegg.pathway: "sce04138" - - metanetx.reaction: "MNXR105003" - - pmid: "11274162" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "TYRt7" + - kegg.pathway: "sce04138" + - metanetx.reaction: "MNXR105003" + - pmid: "11274162" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1223" - name: "L-tyrosine transport" @@ -81213,11 +81213,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TYRt2r" - - metanetx.reaction: "MNXR105003" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "TYRt2r" + - metanetx.reaction: "MNXR105003" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1224" - name: "L-valine transport" @@ -81234,11 +81234,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "VALt2r" - - metanetx.reaction: "MNXR105188" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "VALt2r" + - metanetx.reaction: "MNXR105188" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1225" - name: "lanosterol transport" @@ -81253,12 +81253,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "LANOSTt" - - metanetx.reaction: "MNXR101014" - - pmid: "12077145" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "LANOSTt" + - metanetx.reaction: "MNXR101014" + - pmid: "12077145" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1226" - name: "malate transport" @@ -81275,11 +81275,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MALtm" - - metanetx.reaction: "MNXR101374" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "MALtm" + - metanetx.reaction: "MNXR101374" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1227" - name: "maltose transport" @@ -81296,12 +81296,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MALTt2" - - metanetx.reaction: "MNXR101365" - - pmid: "7483839" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "MALTt2" + - metanetx.reaction: "MNXR101365" + - pmid: "7483839" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1228" - name: "N,N'-diformyldityrosine transport" @@ -81316,10 +81316,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "12455697" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - pmid: "12455697" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1229" - name: "NAD transport" @@ -81334,14 +81334,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NADtm" - - metanetx.reaction: "MNXR101900" - - pmid: - - "16291748" - - "9169870" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "NADtm" + - metanetx.reaction: "MNXR101900" + - pmid: + - "16291748" + - "9169870" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1230" - name: "NAD transport" @@ -81358,10 +81358,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "16291748" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - pmid: "16291748" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1231" - name: "NAD transport" @@ -81378,10 +81378,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "16291748" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - pmid: "16291748" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1232" - name: "NAD transport" @@ -81398,10 +81398,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "16291748" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - pmid: "16291748" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1235" - name: "nicotinate transport" @@ -81416,12 +81416,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NACt" - - metanetx.reaction: "MNXR101808" - - pmid: "10869563" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "NACt" + - metanetx.reaction: "MNXR101808" + - pmid: "10869563" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1236" - name: "octadecanoate (n-C18:0) transport" @@ -81436,11 +81436,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99109" - - pmid: "8993619" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR99109" + - pmid: "8993619" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1237" - name: "ornithine transport" @@ -81457,12 +81457,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ORNt3m" - - metanetx.reaction: "MNXR102225" - - pmid: "10428783" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ORNt3m" + - metanetx.reaction: "MNXR102225" + - pmid: "10428783" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1238" - name: "orntithine transport" @@ -81479,11 +81479,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ORNt2r" - - metanetx.reaction: "MNXR102224" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ORNt2r" + - metanetx.reaction: "MNXR102224" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1239" - name: "oxaloacetate transport" @@ -81500,11 +81500,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "OAAt2m" - - metanetx.reaction: "MNXR102102" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "OAAt2m" + - metanetx.reaction: "MNXR102102" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1241" - name: "pantothenate transport" @@ -81521,11 +81521,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PNTOt2" - - metanetx.reaction: "MNXR103053" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "PNTOt2" + - metanetx.reaction: "MNXR103053" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1242" - name: "pentaprenyl diphosphate transport" @@ -81540,12 +81540,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PENDPtm" - - metanetx.reaction: "MNXR102483" - - pmid: "11583838" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PENDPtm" + - metanetx.reaction: "MNXR102483" + - pmid: "11583838" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1243" - name: "phenethyl acetate transport" @@ -81560,12 +81560,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PHEACt" - - metanetx.reaction: "MNXR102622" - - pmid: "10653746" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PHEACt" + - metanetx.reaction: "MNXR102622" + - pmid: "10653746" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1244" - name: "phosphate transport" @@ -81582,11 +81582,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PIt2r" - - metanetx.reaction: "MNXR102872" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "PIt2r" + - metanetx.reaction: "MNXR102872" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1245" - name: "phosphate transport" @@ -81603,11 +81603,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PIt2m" - - metanetx.reaction: "MNXR102872" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "PIt2m" + - metanetx.reaction: "MNXR102872" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1249" - name: "potassium transport" @@ -81624,11 +81624,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "Kt2r" - - pmid: "3043197" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "Kt2r" + - pmid: "3043197" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1250" - name: "putrescine excretion" @@ -81643,12 +81643,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PTRCtex2" - - metanetx.reaction: "MNXR103339" - - pmid: "15668236" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "PTRCtex2" + - metanetx.reaction: "MNXR103339" + - pmid: "15668236" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1251" - name: "putrescine transport" @@ -81665,12 +81665,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PTRCt3i" - - metanetx.reaction: "MNXR103341" - - pmid: "9920864" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "PTRCt3i" + - metanetx.reaction: "MNXR103341" + - pmid: "9920864" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1252" - name: "putrescine transport" @@ -81687,11 +81687,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR103341" - - pmid: "11171066" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR103341" + - pmid: "11171066" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1253" - name: "pyridoxine symport" @@ -81708,10 +81708,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "12649274" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - pmid: "12649274" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1254" - name: "pyruvate transport" @@ -81728,11 +81728,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PYRt2" - - metanetx.reaction: "MNXR103385" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "PYRt2" + - metanetx.reaction: "MNXR103385" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1255" - name: "S-adenosyl-L-methionine transport" @@ -81749,11 +81749,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AMETt2" - - metanetx.reaction: "MNXR95810" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "AMETt2" + - metanetx.reaction: "MNXR95810" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1256" - name: "S-adenosyl-L-methionine transport" @@ -81768,12 +81768,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AMETtm" - - metanetx.reaction: "MNXR95809" - - pmid: "14609944" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "AMETtm" + - metanetx.reaction: "MNXR95809" + - pmid: "14609944" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1257" - name: "S-methylmethionine permease" @@ -81790,11 +81790,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MMETt2" - - metanetx.reaction: "MNXR101658" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "MMETt2" + - metanetx.reaction: "MNXR101658" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1258" - name: "sodium proton antiporter" @@ -81811,10 +81811,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NAt3_1" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "NAt3_1" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1259" - name: "spermidine excretion" @@ -81829,12 +81829,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SPMDtex2" - - metanetx.reaction: "MNXR104495" - - pmid: "15668236" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "SPMDtex2" + - metanetx.reaction: "MNXR104495" + - pmid: "15668236" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1260" - name: "spermidine transport" @@ -81851,14 +81851,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SPMDt3i" - - metanetx.reaction: "MNXR104497" - - pmid: - - "17218313" - - "9920864" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "SPMDt3i" + - metanetx.reaction: "MNXR104497" + - pmid: + - "17218313" + - "9920864" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1261" - name: "spermidine transport" @@ -81875,11 +81875,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104497" - - pmid: "11171066" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR104497" + - pmid: "11171066" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1262" - name: "spermine transport" @@ -81896,12 +81896,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SPRMt2i" - - metanetx.reaction: "MNXR104501" - - pmid: "9920864" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "SPRMt2i" + - metanetx.reaction: "MNXR104501" + - pmid: "9920864" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1263" - name: "spermine transport" @@ -81918,11 +81918,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104501" - - pmid: "11171066" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR104501" + - pmid: "11171066" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1264" - name: "succinate transport" @@ -81939,11 +81939,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SUCCtm" - - metanetx.reaction: "MNXR104626" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "SUCCtm" + - metanetx.reaction: "MNXR104626" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1265" - name: "succinate-fumarate transport" @@ -81960,12 +81960,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SUCFUMtm" - - metanetx.reaction: "MNXR104633" - - pmid: "9395087" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "SUCFUMtm" + - metanetx.reaction: "MNXR104633" + - pmid: "9395087" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1266" - name: "sulfate uniport" @@ -81980,11 +81980,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SO4ti" - - metanetx.reaction: "MNXR104469" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "SO4ti" + - metanetx.reaction: "MNXR104469" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1267" - name: "sulfite transport" @@ -81999,12 +81999,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SO3ti" - - metanetx.reaction: "MNXR104460" - - pmid: "10870099" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "SO3ti" + - metanetx.reaction: "MNXR104460" + - pmid: "10870099" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1268" - name: "taurine transport" @@ -82019,12 +82019,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TAURt" - - metanetx.reaction: "MNXR104733" - - pmid: "8293962" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "TAURt" + - metanetx.reaction: "MNXR104733" + - pmid: "8293962" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1269" - name: "thiamine diphosphate transport" @@ -82039,12 +82039,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "THMPPt2m" - - metanetx.reaction: "MNXR104824" - - pmid: "12411483" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "THMPPt2m" + - metanetx.reaction: "MNXR104824" + - pmid: "12411483" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1270" - name: "thiamine transport" @@ -82061,11 +82061,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "THMt2" - - metanetx.reaction: "MNXR138863" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "THMt2" + - metanetx.reaction: "MNXR138863" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1271" - name: "UDPgalactose transport" @@ -82080,12 +82080,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "UDPGALt2g" - - metanetx.reaction: "MNXR105061" - - pmid: "11284009" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "UDPGALt2g" + - metanetx.reaction: "MNXR105061" + - pmid: "11284009" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1272" - name: "uracil transport" @@ -82102,11 +82102,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "URAt2" - - metanetx.reaction: "MNXR105148" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "URAt2" + - metanetx.reaction: "MNXR105148" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1273" - name: "urea transport" @@ -82123,11 +82123,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "UREA2t2" - - metanetx.reaction: "MNXR105154" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "UREA2t2" + - metanetx.reaction: "MNXR105154" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1274" - name: "uridine transport" @@ -82144,12 +82144,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "URIt2" - - metanetx.reaction: "MNXR105166" - - pmid: "10827169" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "URIt2" + - metanetx.reaction: "MNXR105166" + - pmid: "10827169" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1275" - name: "UTP transport" @@ -82170,10 +82170,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "16844075" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - pmid: "16844075" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1276" - name: "UTP/UMP antiport" @@ -82192,12 +82192,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "UTPtm" - - metanetx.reaction: "MNXR105175" - - pmid: "16194150" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "UTPtm" + - metanetx.reaction: "MNXR105175" + - pmid: "16194150" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1277" - name: "water diffusion" @@ -82212,12 +82212,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "H2Ot" - - metanetx.reaction: "MNXR98641" - - pmid: "9765289" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "H2Ot" + - metanetx.reaction: "MNXR98641" + - pmid: "9765289" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1278" - name: "zymosterol transport" @@ -82232,11 +82232,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR105285" - - pmid: "12077145" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - metanetx.reaction: "MNXR105285" + - pmid: "12077145" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_1657" - name: "arginine transport" @@ -82253,12 +82253,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ARGt2m" - - metanetx.reaction: "MNXR95953" - - pmid: "9874237" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "ARGt2m" + - metanetx.reaction: "MNXR95953" + - pmid: "9874237" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2034" - name: "pyruvate transport" @@ -82275,12 +82275,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PYRt2m" - - metanetx.reaction: "MNXR103385" - - pmid: "22628558" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "PYRt2m" + - metanetx.reaction: "MNXR103385" + - pmid: "22628558" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2079" - name: "trehalose transporter" @@ -82297,12 +82297,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TREt2" - - metanetx.reaction: "MNXR104932" - - pmid: "10957961" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "TREt2" + - metanetx.reaction: "MNXR104932" + - pmid: "10957961" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2132" - name: "oxoglutarate/malate exchange" @@ -82319,12 +82319,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AKGMALtm" - - metanetx.reaction: "MNXR95659" - - pmid: "16844075" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "AKGMALtm" + - metanetx.reaction: "MNXR95659" + - pmid: "16844075" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2219" - name: "fatty acyl-CoA transport via ABC system (C12:0)" @@ -82344,13 +82344,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2220" - name: "fatty acyl-CoA transport via ABC system (C14:0)" @@ -82370,13 +82370,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2221" - name: "fatty acyl-CoA transport via ABC system (C16:0)" @@ -82396,15 +82396,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FA160COAabcp_1" - - kegg.pathway: - - "sce02010" - - "sce04146" - - metanetx.reaction: "MNXR99100" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "FA160COAabcp_1" + - kegg.pathway: + - "sce02010" + - "sce04146" + - metanetx.reaction: "MNXR99100" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2222" - name: "fatty acyl-CoA transport via ABC system (C16:1)" @@ -82424,13 +82424,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2223" - name: "fatty acyl-CoA transport via ABC system (C18:0)" @@ -82450,15 +82450,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "STCOATxc" - - kegg.pathway: - - "sce02010" - - "sce04146" - - metanetx.reaction: "MNXR104597" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "STCOATxc" + - kegg.pathway: + - "sce02010" + - "sce04146" + - metanetx.reaction: "MNXR104597" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2224" - name: "fatty acyl-CoA transport via ABC system (C18:1)" @@ -82478,13 +82478,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2225" - name: "fatty acyl-CoA transport via ABC system (C20:0)" @@ -82504,13 +82504,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2226" - name: "fatty acyl-CoA transport via ABC system (C22:0)" @@ -82530,14 +82530,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DOCOSCOAtxc" - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "DOCOSCOAtxc" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2227" - name: "fatty acyl-CoA transport via ABC system (C24:0)" @@ -82557,14 +82557,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "LGNCCOAtcx_1" - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - bigg.reaction: "LGNCCOAtcx_1" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_2228" - name: "fatty acyl-CoA transport via ABC system (C26:0)" @@ -82584,13 +82584,13 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.pathway: - - "sce02010" - - "sce04146" - - pmid: "17010456" - - sbo: "SBO:0000655" - - confidence_score: 3 + - ec-code: "" + - kegg.pathway: + - "sce02010" + - "sce04146" + - pmid: "17010456" + - sbo: "SBO:0000655" + - confidence_score: 3 - !!omap - id: "r_3348" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-A (C24))" @@ -82607,12 +82607,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3349" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-A (C24))" @@ -82629,12 +82629,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3350" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-A (C24))" @@ -82651,12 +82651,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3351" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-A (C24))" @@ -82673,12 +82673,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3352" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-A (C24))" @@ -82695,12 +82695,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3353" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-A (C24))" @@ -82717,12 +82717,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3354" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-A (C24))" @@ -82739,12 +82739,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3355" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-A (C24))" @@ -82761,12 +82761,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3356" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-A (C26))" @@ -82783,12 +82783,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3357" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-A (C26))" @@ -82805,12 +82805,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3358" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-A (C26))" @@ -82827,12 +82827,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3359" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-A (C26))" @@ -82849,12 +82849,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3360" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-A (C26))" @@ -82871,12 +82871,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3361" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-A (C26))" @@ -82893,12 +82893,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3362" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-A (C26))" @@ -82915,12 +82915,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3363" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-A (C26))" @@ -82937,12 +82937,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3364" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B' (C24))" @@ -82959,12 +82959,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3365" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B' (C24))" @@ -82981,12 +82981,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3366" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B' (C24))" @@ -83003,12 +83003,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3367" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B' (C24))" @@ -83025,12 +83025,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3368" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B' (C24))" @@ -83047,12 +83047,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3369" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B' (C24))" @@ -83069,12 +83069,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3370" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B' (C24))" @@ -83091,12 +83091,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3371" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B' (C24))" @@ -83113,12 +83113,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3372" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B' (C26))" @@ -83135,12 +83135,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3373" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B' (C26))" @@ -83157,12 +83157,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3374" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B' (C26))" @@ -83179,12 +83179,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3375" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B' (C26))" @@ -83201,12 +83201,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3376" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B' (C26))" @@ -83223,12 +83223,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3377" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B' (C26))" @@ -83245,12 +83245,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3378" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B' (C26))" @@ -83267,12 +83267,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3379" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B' (C26))" @@ -83289,12 +83289,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3380" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B (C24))" @@ -83311,12 +83311,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3381" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B (C24))" @@ -83333,12 +83333,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3382" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B (C24))" @@ -83355,12 +83355,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3383" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B (C24))" @@ -83377,12 +83377,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3384" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B (C24))" @@ -83399,12 +83399,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3385" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B (C24))" @@ -83421,12 +83421,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3386" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B (C24))" @@ -83443,12 +83443,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3387" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B (C24))" @@ -83465,12 +83465,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3388" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B (C26))" @@ -83487,12 +83487,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3389" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B (C26))" @@ -83509,12 +83509,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3390" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B (C26))" @@ -83531,12 +83531,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3391" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B (C26))" @@ -83553,12 +83553,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3392" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B (C26))" @@ -83575,12 +83575,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3393" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B (C26))" @@ -83597,12 +83597,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3394" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B (C26))" @@ -83619,12 +83619,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3395" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B (C26))" @@ -83641,12 +83641,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3396" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-C (C24))" @@ -83663,12 +83663,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3397" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-C (C24))" @@ -83685,12 +83685,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3398" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-C (C24))" @@ -83707,12 +83707,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3399" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-C (C24))" @@ -83729,12 +83729,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3400" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-C (C24))" @@ -83751,12 +83751,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3401" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-C (C24))" @@ -83773,12 +83773,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3402" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-C (C24))" @@ -83795,12 +83795,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3403" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-C (C24))" @@ -83817,12 +83817,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3404" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-C (C26))" @@ -83839,12 +83839,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3405" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-C (C26))" @@ -83861,12 +83861,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3406" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-C (C26))" @@ -83883,12 +83883,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3407" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-C (C26))" @@ -83905,12 +83905,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3408" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-C (C26))" @@ -83927,12 +83927,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3409" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-C (C26))" @@ -83949,12 +83949,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3410" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-C (C26))" @@ -83971,12 +83971,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3411" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-C (C26))" @@ -83993,12 +83993,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3412" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-D (C24))" @@ -84015,12 +84015,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3413" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-D (C24))" @@ -84037,12 +84037,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3414" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-D (C24))" @@ -84059,12 +84059,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3415" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-D (C24))" @@ -84081,12 +84081,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3416" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-D (C24))" @@ -84103,12 +84103,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3417" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-D (C24))" @@ -84125,12 +84125,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3418" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-D (C24))" @@ -84147,12 +84147,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3419" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-D (C24))" @@ -84169,12 +84169,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3420" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-D (C26))" @@ -84191,12 +84191,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3421" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-D (C26))" @@ -84213,12 +84213,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3422" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-D (C26))" @@ -84235,12 +84235,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3423" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-D (C26))" @@ -84257,12 +84257,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3424" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-D (C26))" @@ -84279,12 +84279,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3425" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-D (C26))" @@ -84301,12 +84301,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3426" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-D (C26))" @@ -84323,12 +84323,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3427" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-D (C26))" @@ -84345,12 +84345,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9368028" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9368028" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3428" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-1 (C24))" @@ -84367,12 +84367,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3429" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-1 (C24))" @@ -84389,12 +84389,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3430" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-1 (C24))" @@ -84411,12 +84411,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3431" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-1 (C24))" @@ -84433,12 +84433,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3432" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-1 (C24))" @@ -84455,12 +84455,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3433" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-1 (C24))" @@ -84477,12 +84477,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3434" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-1 (C24))" @@ -84499,12 +84499,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3435" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-1 (C24))" @@ -84521,12 +84521,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3436" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-1 (C26))" @@ -84543,12 +84543,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3437" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-1 (C26))" @@ -84565,12 +84565,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3438" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-1 (C26))" @@ -84587,12 +84587,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3439" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-1 (C26))" @@ -84609,12 +84609,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3440" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-1 (C26))" @@ -84631,12 +84631,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3441" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-1 (C26))" @@ -84653,12 +84653,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3442" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-1 (C26))" @@ -84675,12 +84675,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3443" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-1 (C26))" @@ -84697,12 +84697,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3444" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2' (C24))" @@ -84719,12 +84719,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3445" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2' (C24))" @@ -84741,12 +84741,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3446" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2' (C24))" @@ -84763,12 +84763,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3447" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2' (C24))" @@ -84785,12 +84785,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3448" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2' (C24))" @@ -84807,12 +84807,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3449" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2' (C24))" @@ -84829,12 +84829,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3450" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2' (C24))" @@ -84851,12 +84851,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3451" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2' (C24))" @@ -84873,12 +84873,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3452" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2' (C26))" @@ -84895,12 +84895,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3453" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2' (C26))" @@ -84917,12 +84917,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3454" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2' (C26))" @@ -84939,12 +84939,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3455" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2' (C26))" @@ -84961,12 +84961,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3456" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2' (C26))" @@ -84983,12 +84983,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3457" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2' (C26))" @@ -85005,12 +85005,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3458" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2' (C26))" @@ -85027,12 +85027,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3459" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2' (C26))" @@ -85049,12 +85049,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3460" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2 (C24))" @@ -85071,12 +85071,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3461" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2 (C24))" @@ -85093,12 +85093,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3462" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2 (C24))" @@ -85115,12 +85115,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3463" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2 (C24))" @@ -85137,12 +85137,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3464" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2 (C24))" @@ -85159,12 +85159,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3465" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2 (C24))" @@ -85181,12 +85181,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3466" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2 (C24))" @@ -85203,12 +85203,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3467" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2 (C24))" @@ -85225,12 +85225,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3468" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2 (C26))" @@ -85247,12 +85247,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3469" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2 (C26))" @@ -85269,12 +85269,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3470" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2 (C26))" @@ -85291,12 +85291,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3471" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2 (C26))" @@ -85313,12 +85313,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3472" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2 (C26))" @@ -85335,12 +85335,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3473" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2 (C26))" @@ -85357,12 +85357,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3474" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2 (C26))" @@ -85379,12 +85379,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3475" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2 (C26))" @@ -85401,12 +85401,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3476" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-3 (C24))" @@ -85423,12 +85423,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3477" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-3 (C24))" @@ -85445,12 +85445,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3478" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-3 (C24))" @@ -85467,12 +85467,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3479" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-3 (C24))" @@ -85489,12 +85489,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3480" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-3 (C24))" @@ -85511,12 +85511,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3481" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-3 (C24))" @@ -85533,12 +85533,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3482" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-3 (C24))" @@ -85555,12 +85555,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3483" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-3 (C24))" @@ -85577,12 +85577,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3484" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-3 (C26))" @@ -85599,12 +85599,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3485" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-3 (C26))" @@ -85621,12 +85621,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3486" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-3 (C26))" @@ -85643,12 +85643,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3487" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-3 (C26))" @@ -85665,12 +85665,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3488" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-3 (C26))" @@ -85687,12 +85687,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3489" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-3 (C26))" @@ -85709,12 +85709,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3490" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-3 (C26))" @@ -85731,12 +85731,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3491" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-3 (C26))" @@ -85753,12 +85753,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3492" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-4 (C24))" @@ -85775,12 +85775,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3493" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-4 (C24))" @@ -85797,12 +85797,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3494" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-4 (C24))" @@ -85819,12 +85819,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3495" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-4 (C24))" @@ -85841,12 +85841,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3496" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-4 (C24))" @@ -85863,12 +85863,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3497" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-4 (C24))" @@ -85885,12 +85885,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3498" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-4 (C24))" @@ -85907,12 +85907,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3499" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-4 (C24))" @@ -85929,12 +85929,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3500" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-4 (C26))" @@ -85951,12 +85951,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3501" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-4 (C26))" @@ -85973,12 +85973,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3502" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-4 (C26))" @@ -85995,12 +85995,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3503" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-4 (C26))" @@ -86017,12 +86017,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3504" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-4 (C26))" @@ -86039,12 +86039,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3505" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-4 (C26))" @@ -86061,12 +86061,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3506" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-4 (C26))" @@ -86083,12 +86083,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_3507" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-4 (C26))" @@ -86105,12 +86105,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: - - "18296751" - - "9092515" - - sbo: "SBO:0000176" - - confidence_score: 3 + - ec-code: "2.-.-.-" + - pmid: + - "18296751" + - "9092515" + - sbo: "SBO:0000176" + - confidence_score: 3 - !!omap - id: "r_1449" - name: "inositol-P-ceramide B' (C24) [Golgi] SLIME rxn" @@ -86127,9 +86127,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1450" - name: "inositol-P-ceramide B' (C26) [Golgi] SLIME rxn" @@ -86146,9 +86146,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1451" - name: "inositol-P-ceramide C (C24) [Golgi] SLIME rxn" @@ -86165,9 +86165,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1452" - name: "inositol-P-ceramide C (C26) [Golgi] SLIME rxn" @@ -86184,9 +86184,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1453" - name: "inositol-P-ceramide A (C24) [Golgi] SLIME rxn" @@ -86203,9 +86203,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1454" - name: "inositol-P-ceramide A (C26) [Golgi] SLIME rxn" @@ -86222,9 +86222,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1455" - name: "inositol-P-ceramide B (C24) [Golgi] SLIME rxn" @@ -86241,9 +86241,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1456" - name: "inositol-P-ceramide B (C26) [Golgi] SLIME rxn" @@ -86260,9 +86260,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1457" - name: "inositol-P-ceramide D (C24) [Golgi] SLIME rxn" @@ -86279,9 +86279,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1458" - name: "inositol-P-ceramide D (C26) [Golgi] SLIME rxn" @@ -86298,9 +86298,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1479" - name: "inositol phosphomannosylinositol phosphoceramide A (C24) [Golgi] SLIME rxn" @@ -86317,9 +86317,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1480" - name: "inositol phosphomannosylinositol phosphoceramide A (C26) [Golgi] SLIME rxn" @@ -86336,9 +86336,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1481" - name: "inositol phosphomannosylinositol phosphoceramide B' (C24) [Golgi] SLIME rxn" @@ -86355,9 +86355,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1482" - name: "inositol phosphomannosylinositol phosphoceramide B' (C26) [Golgi] SLIME rxn" @@ -86374,9 +86374,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1483" - name: "inositol phosphomannosylinositol phosphoceramide B (C24) [Golgi] SLIME rxn" @@ -86393,9 +86393,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1484" - name: "inositol phosphomannosylinositol phosphoceramide B (C26) [Golgi] SLIME rxn" @@ -86412,9 +86412,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1485" - name: "inositol phosphomannosylinositol phosphoceramide C (C24) [Golgi] SLIME rxn" @@ -86431,9 +86431,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1486" - name: "inositol phosphomannosylinositol phosphoceramide C (C26) [Golgi] SLIME rxn" @@ -86450,9 +86450,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1487" - name: "inositol phosphomannosylinositol phosphoceramide D (C24) [Golgi] SLIME rxn" @@ -86469,9 +86469,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1488" - name: "inositol phosphomannosylinositol phosphoceramide D (C26) [Golgi] SLIME rxn" @@ -86488,9 +86488,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1509" - name: "mannosylinositol phosphorylceramide B' (C24) [Golgi] SLIME rxn" @@ -86507,9 +86507,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1510" - name: "mannosylinositol phosphorylceramide B' (C26) [Golgi] SLIME rxn" @@ -86526,9 +86526,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1511" - name: "mannosylinositol phosphorylceramide C (C24) [Golgi] SLIME rxn" @@ -86545,9 +86545,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1512" - name: "mannosylinositol phosphorylceramide C (C26) [Golgi] SLIME rxn" @@ -86564,9 +86564,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1513" - name: "mannosylinositol phosphorylceramide A (C24) [Golgi] SLIME rxn" @@ -86583,9 +86583,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1514" - name: "mannosylinositol phosphorylceramide A (C26) [Golgi] SLIME rxn" @@ -86602,9 +86602,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1515" - name: "mannosylinositol phosphorylceramide B (C24) [Golgi] SLIME rxn" @@ -86621,9 +86621,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1516" - name: "mannosylinositol phosphorylceramide B (C26) [Golgi] SLIME rxn" @@ -86640,9 +86640,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1517" - name: "mannosylinositol phosphorylceramide D (C24) [Golgi] SLIME rxn" @@ -86659,9 +86659,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1518" - name: "mannosylinositol phosphorylceramide D (C26) [Golgi] SLIME rxn" @@ -86678,9 +86678,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3963" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) [cytoplasm] SLIME rxn" @@ -86697,9 +86697,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3964" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) [cytoplasm] SLIME rxn" @@ -86715,9 +86715,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3965" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) [cytoplasm] SLIME rxn" @@ -86734,9 +86734,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3966" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) [cytoplasm] SLIME rxn" @@ -86753,9 +86753,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3967" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) [cytoplasm] SLIME rxn" @@ -86772,9 +86772,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3968" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) [cytoplasm] SLIME rxn" @@ -86791,9 +86791,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3969" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) [cytoplasm] SLIME rxn" @@ -86810,9 +86810,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3970" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) [cytoplasm] SLIME rxn" @@ -86828,9 +86828,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3971" - name: "ergosteryl palmitoleate [endoplasmic reticulum membrane] SLIME rxn" @@ -86846,9 +86846,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3972" - name: "ergosteryl oleate [endoplasmic reticulum membrane] SLIME rxn" @@ -86864,9 +86864,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3975" - name: "palmitate [cytoplasm] SLIME rxn" @@ -86882,9 +86882,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3976" - name: "palmitoleate [cytoplasm] SLIME rxn" @@ -86900,9 +86900,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3977" - name: "stearate [cytoplasm] SLIME rxn" @@ -86918,9 +86918,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3978" - name: "oleate [cytoplasm] SLIME rxn" @@ -86936,9 +86936,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3979" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -86955,9 +86955,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3980" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -86973,9 +86973,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3981" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -86992,9 +86992,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3982" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87011,9 +87011,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3983" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87030,9 +87030,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3984" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87049,9 +87049,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3985" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87068,9 +87068,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3986" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87086,9 +87086,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3988" - name: "phosphatidylcholine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87105,9 +87105,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3989" - name: "phosphatidylcholine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87123,9 +87123,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3990" - name: "phosphatidylcholine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87142,9 +87142,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3991" - name: "phosphatidylcholine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87161,9 +87161,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3992" - name: "phosphatidylcholine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87180,9 +87180,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3993" - name: "phosphatidylcholine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87199,9 +87199,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3994" - name: "phosphatidylcholine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87218,9 +87218,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3995" - name: "phosphatidylcholine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87236,9 +87236,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3997" - name: "phosphatidylethanolamine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87255,9 +87255,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3998" - name: "phosphatidylethanolamine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87273,9 +87273,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_3999" - name: "phosphatidylethanolamine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87292,9 +87292,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4000" - name: "phosphatidylethanolamine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87311,9 +87311,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4001" - name: "phosphatidylethanolamine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87330,9 +87330,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4002" - name: "phosphatidylethanolamine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87349,9 +87349,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4003" - name: "phosphatidylethanolamine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87368,9 +87368,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4004" - name: "phosphatidylethanolamine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87386,9 +87386,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4006" - name: "triglyceride (1-16:0, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87405,9 +87405,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4007" - name: "triglyceride (1-16:0, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87424,9 +87424,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4008" - name: "triglyceride (1-16:1, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87443,9 +87443,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4009" - name: "triglyceride (1-16:1, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87463,9 +87463,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4010" - name: "triglyceride (1-18:0, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87483,9 +87483,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4011" - name: "triglyceride (1-18:0, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87503,9 +87503,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4012" - name: "triglyceride (1-18:1, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87523,9 +87523,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4013" - name: "triglyceride (1-18:1, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87542,9 +87542,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4014" - name: "triglyceride (1-16:0, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87561,9 +87561,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4015" - name: "triglyceride (1-16:0, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87581,9 +87581,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4016" - name: "triglyceride (1-16:1, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87599,9 +87599,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4017" - name: "triglyceride (1-16:1, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87618,9 +87618,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4018" - name: "triglyceride (1-18:0, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87637,9 +87637,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4019" - name: "triglyceride (1-18:0, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87657,9 +87657,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4020" - name: "triglyceride (1-18:1, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87676,9 +87676,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4021" - name: "triglyceride (1-18:1, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87695,9 +87695,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4022" - name: "triglyceride (1-16:0, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87715,9 +87715,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4023" - name: "triglyceride (1-16:0, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87735,9 +87735,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4024" - name: "triglyceride (1-16:1, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87754,9 +87754,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4025" - name: "triglyceride (1-16:1, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87774,9 +87774,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4026" - name: "triglyceride (1-18:0, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87793,9 +87793,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4027" - name: "triglyceride (1-18:0, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87812,9 +87812,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4028" - name: "triglyceride (1-18:1, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87832,9 +87832,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4029" - name: "triglyceride (1-18:1, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87851,9 +87851,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4030" - name: "triglyceride (1-16:0, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87871,9 +87871,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4031" - name: "triglyceride (1-16:0, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87890,9 +87890,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4032" - name: "triglyceride (1-16:1, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87909,9 +87909,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4033" - name: "triglyceride (1-16:1, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87928,9 +87928,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4034" - name: "triglyceride (1-18:0, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87948,9 +87948,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4035" - name: "triglyceride (1-18:0, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87967,9 +87967,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4036" - name: "triglyceride (1-18:1, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87986,9 +87986,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4037" - name: "triglyceride (1-18:1, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -88004,9 +88004,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_1542" - name: "(1->3)-beta-D-glucan exchange" @@ -88020,9 +88020,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_13BDglcn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_13BDglcn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1543" - name: "(1->3)-beta-D-glucan transport" @@ -88037,9 +88037,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1545" - name: "(R)-carnitine exchange" @@ -88053,9 +88053,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_crn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_crn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1546" - name: "(R)-lactate exchange" @@ -88069,9 +88069,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_lac__D_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_lac__D_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1547" - name: "(R)-mevalonate exchange" @@ -88085,9 +88085,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_mev__R_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_mev__R_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1548" - name: "(R)-pantothenate exchange" @@ -88101,9 +88101,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pnto__R_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pnto__R_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1549" - name: "(R,R)-2,3-butanediol exchange" @@ -88117,9 +88117,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_btd_RR_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_btd_RR_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1550" - name: "(S)-3-methyl-2-oxopentanoate exchange" @@ -88133,9 +88133,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_3mop_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_3mop_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1551" - name: "(S)-lactate exchange" @@ -88149,9 +88149,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_lac__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_lac__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1552" - name: "(S)-malate exchange" @@ -88165,9 +88165,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_mal__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_mal__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1553" - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol exchange" @@ -88181,9 +88181,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_g3pi_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_g3pi_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1554" - name: "1-acylglycerophosphocholine exchange" @@ -88197,9 +88197,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pchol_cho_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pchol_cho_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1560" - name: "1D-myo-inositol 1,3,4,5,6-pentakisphosphate diffusion" @@ -88214,10 +88214,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR125284" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR125284" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1562" - name: "1D-myo-inositol 1-phosphate transport" @@ -88232,10 +88232,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101573" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101573" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1563" - name: "2'-deoxyadenosine exchange" @@ -88249,9 +88249,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_dad_2_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_dad_2_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1564" - name: "2'-deoxyguanosine exchange" @@ -88265,9 +88265,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_dgsn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_dgsn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1565" - name: "2'-deoxyinosine exchange" @@ -88281,9 +88281,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_din_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_din_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1566" - name: "2'-deoxyuridine exchange" @@ -88297,9 +88297,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_duri_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_duri_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1567" - name: "2-dehydro-3-deoxy-D-arabino-heptonate7-phohsphate transport" @@ -88314,11 +88314,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2DDA7Ptm" - - metanetx.reaction: "MNXR94782" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "2DDA7Ptm" + - metanetx.reaction: "MNXR94782" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1568" - name: "2-dehydropantoate transport" @@ -88333,11 +88333,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2DHPtm" - - metanetx.reaction: "MNXR94793" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "2DHPtm" + - metanetx.reaction: "MNXR94793" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1572" - name: "2-isopropylmalate exchange" @@ -88351,9 +88351,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_3c3hmp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_3c3hmp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1573" - name: "2-isopropylmalate transport" @@ -88368,10 +88368,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3C3HMPt" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "3C3HMPt" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1574" - name: "2-isopropylmalate transport" @@ -88386,10 +88386,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3C3HMPtm" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "3C3HMPtm" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1575" - name: "2-methyl-1-butanol transport" @@ -88404,11 +88404,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2MBTOHt" - - metanetx.reaction: "MNXR94810" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "2MBTOHt" + - metanetx.reaction: "MNXR94810" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1576" - name: "2-methyl-1-butanol transport" @@ -88423,11 +88423,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2MBTOHtm" - - metanetx.reaction: "MNXR94810" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "2MBTOHtm" + - metanetx.reaction: "MNXR94810" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1577" - name: "2-methylbutanal exchange" @@ -88441,9 +88441,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_2mbald_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_2mbald_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1578" - name: "2-methylbutanal transport" @@ -88458,11 +88458,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2MBALDt" - - metanetx.reaction: "MNXR94809" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "2MBALDt" + - metanetx.reaction: "MNXR94809" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1579" - name: "2-methylbutanal transport" @@ -88477,11 +88477,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2MBALDtm" - - metanetx.reaction: "MNXR94809" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "2MBALDtm" + - metanetx.reaction: "MNXR94809" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1580" - name: "2-methylbutanol exchange" @@ -88495,9 +88495,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_2mbtoh_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_2mbtoh_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1581" - name: "2-methylbutyl acetate exchange" @@ -88511,9 +88511,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_2mbac_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_2mbac_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1582" - name: "2-methylpropanal transport" @@ -88528,11 +88528,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2MPPALt" - - metanetx.reaction: "MNXR94812" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "2MPPALt" + - metanetx.reaction: "MNXR94812" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1583" - name: "2-methylpropanal transport" @@ -88547,11 +88547,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2MPPALtm" - - metanetx.reaction: "MNXR94812" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "2MPPALtm" + - metanetx.reaction: "MNXR94812" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1585" - name: "2-oxobutanoate transporter" @@ -88566,11 +88566,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2OBUTtm" - - metanetx.reaction: "MNXR94814" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "2OBUTtm" + - metanetx.reaction: "MNXR94814" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1586" - name: "2-oxoglutarate exchange" @@ -88584,9 +88584,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_akg_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_akg_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1587" - name: "2-oxoglutarate transport" @@ -88601,10 +88601,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95663" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95663" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1588" - name: "2-oxoglutarate transport" @@ -88619,10 +88619,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95663" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95663" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1589" - name: "2-phenylethanol exchange" @@ -88636,9 +88636,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_2phetoh_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_2phetoh_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1590" - name: "2-phenylethanol transport" @@ -88653,11 +88653,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2PHETOHt" - - metanetx.reaction: "MNXR94828" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "2PHETOHt" + - metanetx.reaction: "MNXR94828" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1591" - name: "2-phenylethanol transport" @@ -88672,11 +88672,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2PHETOHtm" - - metanetx.reaction: "MNXR94828" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "2PHETOHtm" + - metanetx.reaction: "MNXR94828" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1595" - name: "3-carboxy-4-methyl-2-oxopentanoate transport" @@ -88691,11 +88691,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3C4MOPtm" - - metanetx.reaction: "MNXR94859" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "3C4MOPtm" + - metanetx.reaction: "MNXR94859" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1596" - name: "3-methyl-2-oxopentanoate transport" @@ -88710,11 +88710,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3MOPtm" - - metanetx.reaction: "MNXR94926" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "3MOPtm" + - metanetx.reaction: "MNXR94926" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1597" - name: "3-methyl-oxopentanoate trasport" @@ -88729,11 +88729,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3MOPt" - - metanetx.reaction: "MNXR94926" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "3MOPt" + - metanetx.reaction: "MNXR94926" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1598" - name: "3-methylbutanal exchange" @@ -88747,9 +88747,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_3mbald_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_3mbald_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1599" - name: "3-methylbutanal transport" @@ -88764,11 +88764,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3MBALDt" - - metanetx.reaction: "MNXR137944" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "3MBALDt" + - metanetx.reaction: "MNXR137944" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1600" - name: "3-methylbutanal transport" @@ -88783,11 +88783,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3MBALDtm" - - metanetx.reaction: "MNXR137944" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "3MBALDtm" + - metanetx.reaction: "MNXR137944" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1601" - name: "3-octaprenyl-4-hydroxybenzoate transport" @@ -88802,11 +88802,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3OPHB_5tm" - - metanetx.reaction: "MNXR94966" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "3OPHB_5tm" + - metanetx.reaction: "MNXR94966" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1603" - name: "4-amino-5-hydroxymethyl-2-methylpyrimidine synthetase" @@ -88824,11 +88824,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AHMMPS" - - metanetx.reaction: "MNXR95632" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "AHMMPS" + - metanetx.reaction: "MNXR95632" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1604" - name: "4-aminobenzoate exchange" @@ -88842,9 +88842,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_4abz_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_4abz_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1605" - name: "4-aminobenzoate transport" @@ -88859,11 +88859,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "4ABZt" - - metanetx.reaction: "MNXR94995" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "4ABZt" + - metanetx.reaction: "MNXR94995" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1606" - name: "4-aminobenzoate transport" @@ -88878,11 +88878,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "4ABZtm" - - metanetx.reaction: "MNXR94995" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "4ABZtm" + - metanetx.reaction: "MNXR94995" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1607" - name: "4-aminobutanal transport" @@ -88897,11 +88897,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "4ABUTNtm" - - metanetx.reaction: "MNXR94992" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "4ABUTNtm" + - metanetx.reaction: "MNXR94992" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1608" - name: "4-aminobutyrate transport" @@ -88916,11 +88916,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "4ABUTtm" - - metanetx.reaction: "MNXR94993" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "4ABUTtm" + - metanetx.reaction: "MNXR94993" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1609" - name: "4-hydroxy-2-oxoglutarate transport" @@ -88935,11 +88935,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "4H2OGLTtm" - - metanetx.reaction: "MNXR95001" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "4H2OGLTtm" + - metanetx.reaction: "MNXR95001" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1610" - name: "4-hydroxy-2-oxoglutarate transport" @@ -88954,11 +88954,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "4H2OGLTtp" - - metanetx.reaction: "MNXR95001" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "4H2OGLTtp" + - metanetx.reaction: "MNXR95001" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1611" - name: "4-hydroxybenzoate transport" @@ -88973,11 +88973,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "4HBZtm" - - metanetx.reaction: "MNXR95013" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "4HBZtm" + - metanetx.reaction: "MNXR95013" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1613" - name: "5'-nucleotidase (AMP)" @@ -88994,12 +88994,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NTD7" - - kegg.reaction: "R00183" - - metanetx.reaction: "MNXR102037" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NTD7" + - kegg.reaction: "R00183" + - metanetx.reaction: "MNXR102037" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1614" - name: "5'-nucleotidase (dAMP)" @@ -89016,12 +89016,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NTD6" - - kegg.reaction: "R02088" - - metanetx.reaction: "MNXR102036" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NTD6" + - kegg.reaction: "R02088" + - metanetx.reaction: "MNXR102036" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1615" - name: "5'-nucleotidase (dCMP)" @@ -89038,12 +89038,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NTD3" - - kegg.reaction: "R01664" - - metanetx.reaction: "MNXR102033" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NTD3" + - kegg.reaction: "R01664" + - metanetx.reaction: "MNXR102033" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1616" - name: "5'-nucleotidase (dGMP)" @@ -89060,12 +89060,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NTD8" - - kegg.reaction: "R01968" - - metanetx.reaction: "MNXR102038" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NTD8" + - kegg.reaction: "R01968" + - metanetx.reaction: "MNXR102038" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1617" - name: "5'-nucleotidase (dTMP)" @@ -89082,12 +89082,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NTD5" - - kegg.reaction: "R01569" - - metanetx.reaction: "MNXR102035" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NTD5" + - kegg.reaction: "R01569" + - metanetx.reaction: "MNXR102035" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1618" - name: "5'-nucleotidase (dUMP)" @@ -89104,12 +89104,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NTD1" - - kegg.reaction: "R02102" - - metanetx.reaction: "MNXR102028" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NTD1" + - kegg.reaction: "R02102" + - metanetx.reaction: "MNXR102028" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1620" - name: "5'-nucleotidase (XMP)" @@ -89126,12 +89126,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NTD10" - - kegg.reaction: "R02719" - - metanetx.reaction: "MNXR102029" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NTD10" + - kegg.reaction: "R02719" + - metanetx.reaction: "MNXR102029" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1621" - name: "5-aminolevulinate exchange" @@ -89145,9 +89145,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_5aop_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_5aop_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1622" - name: "5-aminolevulinate transport" @@ -89162,11 +89162,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "5AOPtm" - - metanetx.reaction: "MNXR95062" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "5AOPtm" + - metanetx.reaction: "MNXR95062" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1623" - name: "5-formethyltetrahydrofolate cyclo-ligase" @@ -89184,12 +89184,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FTHFCLm" - - kegg.reaction: "R02301" - - metanetx.reaction: "MNXR99668" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "FTHFCLm" + - kegg.reaction: "R02301" + - metanetx.reaction: "MNXR99668" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1624" - name: "5-formyltetrahydrofolate:10-formyltetrahydrofolate isomerase" @@ -89209,11 +89209,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FTHFI" - - metanetx.reaction: "MNXR99671" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "FTHFI" + - metanetx.reaction: "MNXR99671" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1625" - name: "5-formyltetrahydrofolic acid exchange" @@ -89227,9 +89227,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_5fthf_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_5fthf_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1627" - name: "7,8-diaminononanoate exchange" @@ -89243,9 +89243,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_dann_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_dann_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1628" - name: "7,8-diaminononanoate transport" @@ -89260,9 +89260,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1629" - name: "8-amino-7-oxononanoate exchange" @@ -89276,9 +89276,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_8aonn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_8aonn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1630" - name: "9H-xanthine exchange" @@ -89292,9 +89292,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_xan_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_xan_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1631" - name: "acetaldehyde exchange" @@ -89308,9 +89308,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_acald_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_acald_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1632" - name: "acetaldehyde transport" @@ -89325,11 +89325,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ACALDtm" - - metanetx.reaction: "MNXR95212" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ACALDtm" + - metanetx.reaction: "MNXR95212" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1633" - name: "acetaldehyde transport" @@ -89344,11 +89344,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ACALDt" - - metanetx.reaction: "MNXR95212" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ACALDt" + - metanetx.reaction: "MNXR95212" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1634" - name: "acetate exchange" @@ -89362,9 +89362,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ac_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ac_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1635" - name: "acetate transport" @@ -89379,10 +89379,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95431" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95431" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1637" - name: "acetyl-CoA transport" @@ -89397,11 +89397,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ACCOAtn" - - metanetx.reaction: "MNXR95223" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ACCOAtn" + - metanetx.reaction: "MNXR95223" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1638" - name: "acetylcarnitine transport" @@ -89416,11 +89416,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ACRNtp" - - metanetx.reaction: "MNXR95412" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ACRNtp" + - metanetx.reaction: "MNXR95412" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1639" - name: "adenine exchange" @@ -89434,9 +89434,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ade_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ade_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1640" - name: "adenine transport" @@ -89451,11 +89451,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ADEtm" - - metanetx.reaction: "MNXR95445" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ADEtm" + - metanetx.reaction: "MNXR95445" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1641" - name: "adenosine 3',5'-bismonophosphate exchange" @@ -89469,9 +89469,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pap_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pap_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1642" - name: "adenosine 3',5'-bisphosphate transport" @@ -89486,11 +89486,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PAPtm" - - metanetx.reaction: "MNXR102382" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "PAPtm" + - metanetx.reaction: "MNXR102382" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1643" - name: "adenosine exchange" @@ -89504,9 +89504,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_adn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_adn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1644" - name: "ADP transport" @@ -89521,10 +89521,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95484" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95484" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1645" - name: "ADP transport" @@ -89539,10 +89539,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95484" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95484" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1647" - name: "AKG transporter, peroxisome" @@ -89557,11 +89557,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AKGtp" - - metanetx.reaction: "MNXR95663" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "AKGtp" + - metanetx.reaction: "MNXR95663" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1648" - name: "allantoate exchange" @@ -89575,9 +89575,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_alltt_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_alltt_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1649" - name: "allantoin exchange" @@ -89591,9 +89591,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_alltn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_alltn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1650" - name: "trehalose exchange" @@ -89607,9 +89607,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_tre_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_tre_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1651" - name: "alpha-D-glucosamine 6-phosphate exchange" @@ -89623,9 +89623,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gam6p_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gam6p_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1652" - name: "alpha-ketoglutarate/malate transporter" @@ -89642,11 +89642,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AKGMAL" - - metanetx.reaction: "MNXR95659" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "AKGMAL" + - metanetx.reaction: "MNXR95659" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1654" - name: "ammonium exchange" @@ -89660,10 +89660,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_nh4_e" - - metanetx.reaction: "MNXR101948" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_nh4_e" + - metanetx.reaction: "MNXR101948" + - sbo: "SBO:0000627" - !!omap - id: "r_1656" - name: "AMP transport" @@ -89678,11 +89678,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AMPtn" - - metanetx.reaction: "MNXR95830" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "AMPtn" + - metanetx.reaction: "MNXR95830" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1658" - name: "asparagine transport" @@ -89697,11 +89697,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ASNtm" - - metanetx.reaction: "MNXR96069" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ASNtm" + - metanetx.reaction: "MNXR96069" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1659" - name: "aspartate-glutamate transporter" @@ -89718,11 +89718,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ASPGLUtp" - - metanetx.reaction: "MNXR96083" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ASPGLUtp" + - metanetx.reaction: "MNXR96083" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1660" - name: "ATP diffusion" @@ -89737,11 +89737,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ATPtn" - - metanetx.reaction: "MNXR96140" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ATPtn" + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1661" - name: "ATP transport" @@ -89756,10 +89756,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96140" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1663" - name: "bicarbonate exchange" @@ -89773,10 +89773,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_hco3_e" - - metanetx.reaction: "MNXR100483" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_hco3_e" + - metanetx.reaction: "MNXR100483" + - sbo: "SBO:0000627" - !!omap - id: "r_1664" - name: "bicarbonate formation" @@ -89793,12 +89793,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HCO3Em" - - kegg.reaction: "R00132" - - metanetx.reaction: "MNXR100482" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "HCO3Em" + - kegg.reaction: "R00132" + - metanetx.reaction: "MNXR100482" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1665" - name: "bicarbonate formation" @@ -89815,12 +89815,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HCO3En" - - kegg.reaction: "R00132" - - metanetx.reaction: "MNXR100482" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "HCO3En" + - kegg.reaction: "R00132" + - metanetx.reaction: "MNXR100482" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1667" - name: "bicarbonate formation" @@ -89837,12 +89837,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HCO3E" - - kegg.reaction: "R00132" - - metanetx.reaction: "MNXR100482" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "HCO3E" + - kegg.reaction: "R00132" + - metanetx.reaction: "MNXR100482" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1668" - name: "bicarbonate formation" @@ -89859,12 +89859,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HCO3Ee" - - kegg.reaction: "R00132" - - metanetx.reaction: "MNXR100482" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "HCO3Ee" + - kegg.reaction: "R00132" + - metanetx.reaction: "MNXR100482" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1669" - name: "bicarbonate transport" @@ -89879,11 +89879,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HCO3tn" - - metanetx.reaction: "MNXR100484" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "HCO3tn" + - metanetx.reaction: "MNXR100484" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1671" - name: "biotin exchange" @@ -89897,9 +89897,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_btn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_btn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1672" - name: "carbon dioxide exchange" @@ -89913,9 +89913,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_co2_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_co2_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1673" - name: "carnitine transport" @@ -89930,11 +89930,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CRNtp" - - metanetx.reaction: "MNXR96906" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CRNtp" + - metanetx.reaction: "MNXR96906" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1674" - name: "carnitine-acetylcarnitine carrier" @@ -89951,11 +89951,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CRNCARtp" - - metanetx.reaction: "MNXR96898" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CRNCARtp" + - metanetx.reaction: "MNXR96898" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1675" - name: "CDP transport" @@ -89970,11 +89970,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CDPtn" - - metanetx.reaction: "MNXR96562" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CDPtn" + - metanetx.reaction: "MNXR96562" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1676" - name: "ceramide transport" @@ -89989,10 +89989,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137412" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR137412" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1677" - name: "ceramide transport" @@ -90007,10 +90007,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137414" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR137414" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1678" - name: "ceramide transport" @@ -90025,9 +90025,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1679" - name: "ceramide transport" @@ -90042,10 +90042,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137413" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR137413" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1680" - name: "ceramide transport" @@ -90060,10 +90060,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137415" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR137415" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1681" - name: "ceramide transport" @@ -90078,9 +90078,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1682" - name: "cholestenol delta-isomerase, lumped reaction" @@ -90100,11 +90100,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CHLSTI" - - metanetx.reaction: "MNXR96688" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CHLSTI" + - metanetx.reaction: "MNXR96688" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1683" - name: "choline exchange" @@ -90118,9 +90118,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_chol_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_chol_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1684" - name: "choline transport" @@ -90135,10 +90135,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96693" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR96693" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1685" - name: "chorismate pyruvate lyase" @@ -90154,12 +90154,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CHRPL" - - kegg.reaction: "R01302" - - metanetx.reaction: "MNXR96711" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CHRPL" + - kegg.reaction: "R01302" + - metanetx.reaction: "MNXR96711" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1686" - name: "citrate transport" @@ -90174,10 +90174,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96756" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96756" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1687" - name: "citrate exchange" @@ -90191,9 +90191,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_cit_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_cit_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1688" - name: "citrate/isocitrate antiport" @@ -90210,11 +90210,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CITtcp" - - metanetx.reaction: "MNXR96755" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CITtcp" + - metanetx.reaction: "MNXR96755" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1689" - name: "citrate/malate antiport" @@ -90231,11 +90231,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CITtap" - - metanetx.reaction: "MNXR96753" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CITtap" + - metanetx.reaction: "MNXR96753" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1690" - name: "CMP nucleosidase" @@ -90252,11 +90252,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CMPN" - - metanetx.reaction: "MNXR96804" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CMPN" + - metanetx.reaction: "MNXR96804" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1691" - name: "CO2 transport" @@ -90271,11 +90271,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CO2ter" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CO2ter" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1694" - name: "CO2 transport" @@ -90290,11 +90290,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CO2tn" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CO2tn" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1695" - name: "CO2 transport" @@ -90309,11 +90309,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CO2tp" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CO2tp" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1696" - name: "CO2 transport" @@ -90328,11 +90328,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CO2tm" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CO2tm" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1697" - name: "CO2 transport" @@ -90347,11 +90347,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CO2t" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CO2t" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1698" - name: "coenzyme A transport" @@ -90366,11 +90366,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "COAtr" - - metanetx.reaction: "MNXR96815" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "COAtr" + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1699" - name: "coenzyme A transport" @@ -90385,11 +90385,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "COAtn" - - metanetx.reaction: "MNXR96815" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "COAtn" + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1700" - name: "coenzyme A transport" @@ -90404,11 +90404,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "COAtp" - - metanetx.reaction: "MNXR96815" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "COAtp" + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1702" - name: "cytidine exchange" @@ -90422,9 +90422,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_cytd_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_cytd_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1703" - name: "cytidylate kinase (CMP)" @@ -90441,12 +90441,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CYTK1" - - kegg.reaction: "R00512" - - metanetx.reaction: "MNXR97047" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CYTK1" + - kegg.reaction: "R00512" + - metanetx.reaction: "MNXR97047" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1704" - name: "cytidylate kinase (dCMP)" @@ -90463,12 +90463,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CYTK2" - - kegg.reaction: "R01665" - - metanetx.reaction: "MNXR97053" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "CYTK2" + - kegg.reaction: "R01665" + - metanetx.reaction: "MNXR97053" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1705" - name: "cytosine exchange" @@ -90482,9 +90482,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_csn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_csn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1706" - name: "D-arabinose exchange" @@ -90498,9 +90498,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_arab__D_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_arab__D_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1707" - name: "D-arabinose transport" @@ -90515,10 +90515,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ARAB_Dt" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ARAB_Dt" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1708" - name: "D-erythrose 4-phosphate transport" @@ -90533,11 +90533,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "E4Ptm" - - metanetx.reaction: "MNXR97843" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "E4Ptm" + - metanetx.reaction: "MNXR97843" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1709" - name: "D-fructose exchange" @@ -90551,9 +90551,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_fru_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_fru_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1710" - name: "D-galactose exchange" @@ -90567,11 +90567,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gal_e" - - kegg.reaction: "R10619" - - metanetx.reaction: "MNXR113944" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gal_e" + - kegg.reaction: "R10619" + - metanetx.reaction: "MNXR113944" + - sbo: "SBO:0000627" - !!omap - id: "r_1711" - name: "D-galacturonate exchange" @@ -90585,9 +90585,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_galur_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_galur_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1712" - name: "D-glucitol exchange" @@ -90601,9 +90601,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_sbt__D_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_sbt__D_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1713" - name: "D-glucosamine 6-phosphate uniport" @@ -90618,10 +90618,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GAM6Pt" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GAM6Pt" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1714" - name: "D-glucose exchange" @@ -90635,10 +90635,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_glc__D_e" - - metanetx.reaction: "MNXR138465" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_glc__D_e" + - metanetx.reaction: "MNXR138465" + - sbo: "SBO:0000627" - !!omap - id: "r_1715" - name: "D-mannose exchange" @@ -90652,9 +90652,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_man_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_man_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1716" - name: "D-ribose exchange" @@ -90668,9 +90668,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_rib__D_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_rib__D_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1717" - name: "D-sorbitol transport" @@ -90685,11 +90685,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SBT_Dt" - - metanetx.reaction: "MNXR104288" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "SBT_Dt" + - metanetx.reaction: "MNXR104288" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1718" - name: "D-xylose exchange" @@ -90703,9 +90703,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_xyl__D_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_xyl__D_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1719" - name: "D-xylose transport" @@ -90720,10 +90720,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "XYLt" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "XYLt" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1720" - name: "dADP transport" @@ -90738,11 +90738,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DADPtn" - - metanetx.reaction: "MNXR97082" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DADPtn" + - metanetx.reaction: "MNXR97082" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1721" - name: "dCDP transport" @@ -90757,11 +90757,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DCDPtn" - - metanetx.reaction: "MNXR97182" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DCDPtn" + - metanetx.reaction: "MNXR97182" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1722" - name: "ATP deamination" @@ -90779,12 +90779,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ATPHs" - - kegg.reaction: "R00088" - - metanetx.reaction: "MNXR96130" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ATPHs" + - kegg.reaction: "R00088" + - metanetx.reaction: "MNXR96130" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1723" - name: "dATP deamination" @@ -90802,11 +90802,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DATPHs" - - metanetx.reaction: "MNXR97174" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DATPHs" + - metanetx.reaction: "MNXR97174" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1724" - name: "ADP deamination" @@ -90824,11 +90824,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R00123" - - metanetx.reaction: "MNXR106399" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - kegg.reaction: "R00123" + - metanetx.reaction: "MNXR106399" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1725" - name: "dADP deamination" @@ -90846,9 +90846,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1726" - name: "deamino-NAD+ diffusion" @@ -90863,11 +90863,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DNADtn" - - metanetx.reaction: "MNXR97625" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DNADtn" + - metanetx.reaction: "MNXR97625" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1727" - name: "decanoate exchange" @@ -90881,9 +90881,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_dca_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_dca_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1728" - name: "deoxyadenosine transport" @@ -90898,11 +90898,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DADNt4" - - metanetx.reaction: "MNXR97081" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DADNt4" + - metanetx.reaction: "MNXR97081" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1729" - name: "deoxyadenylate kinase" @@ -90919,12 +90919,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DADK" - - kegg.reaction: "R01547" - - metanetx.reaction: "MNXR96117" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "DADK" + - kegg.reaction: "R01547" + - metanetx.reaction: "MNXR96117" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1730" - name: "deoxycytidine exchange" @@ -90938,9 +90938,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_dcyt_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_dcyt_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1731" - name: "deoxycytidine transport" @@ -90955,11 +90955,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DCYTt" - - metanetx.reaction: "MNXR97208" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DCYTt" + - metanetx.reaction: "MNXR97208" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1732" - name: "deoxyguanosine transport" @@ -90974,11 +90974,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DGSNt" - - metanetx.reaction: "MNXR97324" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DGSNt" + - metanetx.reaction: "MNXR97324" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1733" - name: "deoxyinosine transport" @@ -90993,11 +90993,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DINt" - - metanetx.reaction: "MNXR97466" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DINt" + - metanetx.reaction: "MNXR97466" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1734" - name: "deoxyuridine kinase (ATP:deoxyuridine)" @@ -91015,12 +91015,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DURIK1" - - kegg.reaction: "R02099" - - metanetx.reaction: "MNXR97817" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DURIK1" + - kegg.reaction: "R02099" + - metanetx.reaction: "MNXR97817" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1735" - name: "deoxyuridine transport" @@ -91035,11 +91035,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DURIt" - - metanetx.reaction: "MNXR97819" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "DURIt" + - metanetx.reaction: "MNXR97819" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1736" - name: "dephospho-CoA kinase" @@ -91057,12 +91057,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DPCOAK" - - kegg.reaction: "R00130" - - metanetx.reaction: "MNXR97762" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DPCOAK" + - kegg.reaction: "R00130" + - metanetx.reaction: "MNXR97762" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1737" - name: "dGDP transport" @@ -91077,11 +91077,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DGDPtn" - - metanetx.reaction: "MNXR97314" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DGDPtn" + - metanetx.reaction: "MNXR97314" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1738" - name: "dhnpt transport" @@ -91096,10 +91096,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DHNPTtm" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DHNPTtm" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1739" - name: "diamine transaminase" @@ -91117,11 +91117,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DIAT" - - metanetx.reaction: "MNXR97455" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "DIAT" + - metanetx.reaction: "MNXR97455" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1743" - name: "dihydrofolate transport" @@ -91136,11 +91136,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DHFtm" - - metanetx.reaction: "MNXR97404" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DHFtm" + - metanetx.reaction: "MNXR97404" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1744" - name: "dihydroneopterin triphosphate pyrophosphatase" @@ -91158,12 +91158,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DNTPPA" - - kegg.reaction: "R04638" - - metanetx.reaction: "MNXR97680" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DNTPPA" + - kegg.reaction: "R04638" + - metanetx.reaction: "MNXR97680" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1745" - name: "dihydropteroate transport" @@ -91178,11 +91178,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DHPTtm" - - metanetx.reaction: "MNXR142733" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DHPTtm" + - metanetx.reaction: "MNXR142733" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1746" - name: "dihydroxyacetone phosphate transport" @@ -91197,12 +91197,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DHAPtm" - - metanetx.reaction: "MNXR97366" - - pmid: "22672422" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DHAPtm" + - metanetx.reaction: "MNXR97366" + - pmid: "22672422" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1747" - name: "diphosphate transport" @@ -91217,11 +91217,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PPItx" - - metanetx.reaction: "MNXR103112" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PPItx" + - metanetx.reaction: "MNXR103112" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1748" - name: "dolichol phosphate transport" @@ -91236,10 +91236,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DOLP_ter" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DOLP_ter" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1749" - name: "dTTP exchange" @@ -91253,9 +91253,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_dttp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_dttp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1750" - name: "dTTP uniport" @@ -91270,11 +91270,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DTTPt" - - metanetx.reaction: "MNXR97810" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DTTPt" + - metanetx.reaction: "MNXR97810" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1751" - name: "dUDP diffusion" @@ -91289,11 +91289,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DUDPtn" - - metanetx.reaction: "MNXR97812" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DUDPtn" + - metanetx.reaction: "MNXR97812" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1752" - name: "dUMP transport" @@ -91308,11 +91308,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DUMPtn" - - metanetx.reaction: "MNXR97813" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DUMPtn" + - metanetx.reaction: "MNXR97813" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1753" - name: "episterol exchange" @@ -91326,9 +91326,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_epist_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_epist_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1754" - name: "ergosta-5,6,22,24,(28)-tetraen-3beta-ol transport" @@ -91343,11 +91343,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ERGTETROLter" - - metanetx.reaction: "MNXR97951" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ERGTETROLter" + - metanetx.reaction: "MNXR97951" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1757" - name: "ergosterol exchange" @@ -91361,9 +91361,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ergst_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ergst_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1758" - name: "ergosterol transport" @@ -91378,11 +91378,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ERGSTter" - - metanetx.reaction: "MNXR97950" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ERGSTter" + - metanetx.reaction: "MNXR97950" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1759" - name: "ergosterol transport" @@ -91397,10 +91397,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR97950" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR97950" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1761" - name: "ethanol exchange" @@ -91414,9 +91414,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_etoh_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_etoh_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1762" - name: "ethanol transport" @@ -91431,11 +91431,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ETOHt" - - metanetx.reaction: "MNXR97980" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ETOHt" + - metanetx.reaction: "MNXR97980" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1763" - name: "ethanol transport, mitochondrial" @@ -91450,11 +91450,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ETOHtm" - - metanetx.reaction: "MNXR97980" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ETOHtm" + - metanetx.reaction: "MNXR97980" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1764" - name: "ethanolamine exchange" @@ -91468,9 +91468,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_etha_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_etha_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1765" - name: "ethyl acetate exchange" @@ -91484,8 +91484,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_1766" - name: "farnesyl diphosphate transport" @@ -91500,11 +91500,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FRDPtm" - - metanetx.reaction: "MNXR99646" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "FRDPtm" + - metanetx.reaction: "MNXR99646" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1770" - name: "fatty acid transport" @@ -91519,11 +91519,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FA100tp" - - metanetx.reaction: "MNXR135772" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "FA100tp" + - metanetx.reaction: "MNXR135772" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1771" - name: "fatty acid transport" @@ -91538,11 +91538,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FA120tp" - - metanetx.reaction: "MNXR135773" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "FA120tp" + - metanetx.reaction: "MNXR135773" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1772" - name: "fatty acid transport" @@ -91557,11 +91557,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FA140tp" - - metanetx.reaction: "MNXR128297" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "FA140tp" + - metanetx.reaction: "MNXR128297" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1774" - name: "fatty acid transport" @@ -91576,11 +91576,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FA160tp" - - metanetx.reaction: "MNXR99101" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "FA160tp" + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1775" - name: "fatty acid transport" @@ -91595,10 +91595,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FA161tp" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "FA161tp" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1776" - name: "fatty acid transport" @@ -91613,11 +91613,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FA80tp" - - metanetx.reaction: "MNXR99126" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "FA80tp" + - metanetx.reaction: "MNXR99126" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1777" - name: "myristate (n-C14:0) transport" @@ -91632,11 +91632,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TTDCAtr" - - metanetx.reaction: "MNXR128297" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "TTDCAtr" + - metanetx.reaction: "MNXR128297" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1788" - name: "fecosterol exchange" @@ -91650,9 +91650,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_fecost_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_fecost_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1790" - name: "FMN adenylyltransferase" @@ -91670,12 +91670,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FMNATm" - - kegg.reaction: "R00161" - - metanetx.reaction: "MNXR95501" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "FMNATm" + - kegg.reaction: "R00161" + - metanetx.reaction: "MNXR95501" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_1791" - name: "FMN exchange" @@ -91689,9 +91689,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_fmn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_fmn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1792" - name: "folic acid exchange" @@ -91705,9 +91705,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_fol_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_fol_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1793" - name: "formate exchange" @@ -91721,9 +91721,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_for_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_for_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1794" - name: "formate transport" @@ -91738,11 +91738,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FORtm" - - metanetx.reaction: "MNXR99620" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "FORtm" + - metanetx.reaction: "MNXR99620" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1795" - name: "formate transport" @@ -91757,11 +91757,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FORt" - - metanetx.reaction: "MNXR99620" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "FORt" + - metanetx.reaction: "MNXR99620" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1796" - name: "formate transport" @@ -91776,11 +91776,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FUMtr" - - metanetx.reaction: "MNXR99715" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "FUMtr" + - metanetx.reaction: "MNXR99715" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1797" - name: "fructose-1-phosphate kinase" @@ -91798,10 +91798,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "FRUK" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "FRUK" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1798" - name: "fumarate exchange" @@ -91815,9 +91815,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_fum_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_fum_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1800" - name: "gamma-aminobutyrate exchange" @@ -91831,9 +91831,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_4abut_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_4abut_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1801" - name: "GDP transport" @@ -91848,11 +91848,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GDPtg" - - metanetx.reaction: "MNXR100096" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GDPtg" + - metanetx.reaction: "MNXR100096" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1802" - name: "GDP transport" @@ -91867,11 +91867,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GDPtn" - - metanetx.reaction: "MNXR100096" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GDPtn" + - metanetx.reaction: "MNXR100096" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1803" - name: "GDP-alpha-D-mannose transport" @@ -91886,10 +91886,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR131177" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR131177" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1805" - name: "glucose transport, vacuolar" @@ -91904,11 +91904,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLCtv" - - metanetx.reaction: "MNXR100188" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "GLCtv" + - metanetx.reaction: "MNXR100188" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1806" - name: "glutathione disulfide exchange" @@ -91922,9 +91922,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gthox_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gthox_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1807" - name: "glutathione exchange" @@ -91938,9 +91938,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gthrd_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gthrd_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1808" - name: "glycerol exchange" @@ -91954,9 +91954,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_glyc_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_glyc_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1809" - name: "glycerol-3-phosphate shuttle" @@ -91971,12 +91971,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLYC3Ptm" - - metanetx.reaction: "MNXR100308" - - pmid: "22672422" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GLYC3Ptm" + - metanetx.reaction: "MNXR100308" + - pmid: "22672422" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1810" - name: "L-glycine exchange" @@ -91990,9 +91990,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gly_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gly_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1811" - name: "glycine transport" @@ -92007,11 +92007,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLYtm" - - metanetx.reaction: "MNXR100371" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "GLYtm" + - metanetx.reaction: "MNXR100371" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1812" - name: "glycoaldehyde transport" @@ -92026,11 +92026,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GCALDtm" - - metanetx.reaction: "MNXR100061" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GCALDtm" + - metanetx.reaction: "MNXR100061" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1813" - name: "glycoaldehyde transport" @@ -92045,11 +92045,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GCALDt" - - metanetx.reaction: "MNXR100061" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GCALDt" + - metanetx.reaction: "MNXR100061" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1814" - name: "glycolaldehyde exchange" @@ -92063,9 +92063,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gcald_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gcald_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1815" - name: "glyoxylate exchange" @@ -92079,9 +92079,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_glx_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_glx_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1816" - name: "glyoxylate transport" @@ -92096,11 +92096,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLXt" - - metanetx.reaction: "MNXR100306" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "GLXt" + - metanetx.reaction: "MNXR100306" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1817" - name: "glyoxylate transport" @@ -92115,11 +92115,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLXtp" - - metanetx.reaction: "MNXR100306" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GLXtp" + - metanetx.reaction: "MNXR100306" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1818" - name: "guanine exchange" @@ -92133,9 +92133,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gua_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gua_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1819" - name: "guanine transport" @@ -92150,11 +92150,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GUAtm" - - metanetx.reaction: "MNXR100465" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GUAtm" + - metanetx.reaction: "MNXR100465" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1820" - name: "guanosine exchange" @@ -92168,9 +92168,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gsn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gsn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1821" - name: "guanosine kinase" @@ -92188,12 +92188,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GSNK" - - kegg.reaction: "R01228" - - metanetx.reaction: "MNXR100432" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GSNK" + - kegg.reaction: "R01228" + - metanetx.reaction: "MNXR100432" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1822" - name: "guanosine transport" @@ -92208,11 +92208,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GSNtm" - - metanetx.reaction: "MNXR100433" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GSNtm" + - metanetx.reaction: "MNXR100433" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1823" - name: "guanosine transport" @@ -92227,11 +92227,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GSNt" - - metanetx.reaction: "MNXR100433" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GSNt" + - metanetx.reaction: "MNXR100433" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1824" - name: "H+ diffusion" @@ -92246,11 +92246,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "Ht" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "Ht" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1825" - name: "H+ diffusion" @@ -92265,11 +92265,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "Htr" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "Htr" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1826" - name: "H+ diffusion" @@ -92284,11 +92284,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "Htg" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "Htg" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1827" - name: "H+ diffusion" @@ -92303,10 +92303,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1829" - name: "H+ diffusion" @@ -92321,11 +92321,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HMR_1095" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "HMR_1095" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1830" - name: "H+ diffusion" @@ -92340,11 +92340,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "Htx" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "Htx" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1831" - name: "H+ diffusion" @@ -92359,10 +92359,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1832" - name: "H+ exchange" @@ -92376,9 +92376,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_h_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_h_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1833" - name: "hexacosanoyl-CoA transport" @@ -92393,10 +92393,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR124347" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR124347" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1834" - name: "hexadecanal exchange" @@ -92410,8 +92410,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_1835" - name: "hexadecanoate (n-C16:0) transport" @@ -92426,11 +92426,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HDCAt" - - metanetx.reaction: "MNXR99101" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "HDCAt" + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1836" - name: "hexadecenoate (n-C16:1) transport" @@ -92445,10 +92445,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HDCEAt" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "HDCEAt" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1837" - name: "L-histidine transport, mitochondrial" @@ -92463,10 +92463,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100649" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR100649" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1839" - name: "hydrogen peroxide transport" @@ -92481,11 +92481,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "H2O2tn" - - metanetx.reaction: "MNXR98640" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "H2O2tn" + - metanetx.reaction: "MNXR98640" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1840" - name: "hydroxymethylglutaryl-CoA transport" @@ -92500,11 +92500,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HMGCOAtm" - - metanetx.reaction: "MNXR100661" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "HMGCOAtm" + - metanetx.reaction: "MNXR100661" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1841" - name: "hypoxanthine exchange" @@ -92518,9 +92518,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_hxan_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_hxan_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1842" - name: "hypoxanthine transport" @@ -92535,11 +92535,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HYXNt" - - metanetx.reaction: "MNXR100749" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "HYXNt" + - metanetx.reaction: "MNXR100749" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1843" - name: "indol-3-ylacetaldehyde exchange" @@ -92553,9 +92553,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_id3acald_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_id3acald_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1844" - name: "indole-3-acetaldehyde transport" @@ -92570,11 +92570,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ID3ACALDtm" - - metanetx.reaction: "MNXR100791" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ID3ACALDtm" + - metanetx.reaction: "MNXR100791" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1845" - name: "indole-3-acetaldehyde transport" @@ -92589,11 +92589,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ID3ACALDt" - - metanetx.reaction: "MNXR100791" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ID3ACALDt" + - metanetx.reaction: "MNXR100791" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1846" - name: "indole-3-acetate transport" @@ -92608,11 +92608,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "IND3ACtm" - - metanetx.reaction: "MNXR100833" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "IND3ACtm" + - metanetx.reaction: "MNXR100833" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1847" - name: "inosine exchange" @@ -92626,9 +92626,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ins_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ins_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1848" - name: "inosine transport" @@ -92643,11 +92643,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "INSt" - - metanetx.reaction: "MNXR100849" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "INSt" + - metanetx.reaction: "MNXR100849" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1849" - name: "inositol hexakisphosphate transport" @@ -92662,11 +92662,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MINOHPtn" - - metanetx.reaction: "MNXR101585" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "MINOHPtn" + - metanetx.reaction: "MNXR101585" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1850" - name: "insosine kinase" @@ -92684,12 +92684,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "INSK" - - kegg.reaction: "R01131" - - metanetx.reaction: "MNXR100845" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "INSK" + - kegg.reaction: "R01131" + - metanetx.reaction: "MNXR100845" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1851" - name: "IPC transport" @@ -92704,9 +92704,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1852" - name: "IPC transport" @@ -92721,9 +92721,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1853" - name: "IPC transport" @@ -92738,9 +92738,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1854" - name: "IPC transport" @@ -92755,9 +92755,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1855" - name: "IPC transport" @@ -92772,9 +92772,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1856" - name: "IPC transport" @@ -92789,9 +92789,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1857" - name: "IPC transport" @@ -92806,9 +92806,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1858" - name: "IPC transport" @@ -92823,9 +92823,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1859" - name: "IPC transport" @@ -92840,9 +92840,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1860" - name: "IPC transport" @@ -92857,9 +92857,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1861" - name: "iron(2+) exchange" @@ -92873,9 +92873,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_fe2_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_fe2_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1862" - name: "isoamyl acetate exchange" @@ -92889,9 +92889,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_iamac_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_iamac_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1863" - name: "isoamyl alcohol transport" @@ -92906,11 +92906,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "IAMOHt" - - metanetx.reaction: "MNXR100775" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "IAMOHt" + - metanetx.reaction: "MNXR100775" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1864" - name: "isoamyl alcohol transport" @@ -92925,11 +92925,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "IAMOHtm" - - metanetx.reaction: "MNXR100775" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "IAMOHtm" + - metanetx.reaction: "MNXR100775" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1865" - name: "isoamylol exchange" @@ -92943,9 +92943,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_iamoh_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_iamoh_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1866" - name: "isobutanol exchange" @@ -92959,9 +92959,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ibutoh_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ibutoh_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1867" - name: "isobutyl acetate exchange" @@ -92975,9 +92975,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ibutac_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ibutac_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1868" - name: "isobutyl alcohol transport" @@ -92992,11 +92992,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "IBUTOHt" - - metanetx.reaction: "MNXR100780" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "IBUTOHt" + - metanetx.reaction: "MNXR100780" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1869" - name: "isobutyl alcohol transport" @@ -93011,11 +93011,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "IBUTOHtm" - - metanetx.reaction: "MNXR100780" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "IBUTOHtm" + - metanetx.reaction: "MNXR100780" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1870" - name: "isobutyraldehyde exchange" @@ -93029,9 +93029,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_2mppal_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_2mppal_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1871" - name: "L-1-pyrroline-3-hydroxy-5-carboxylate spontaneous conversion to L-4-hydroxyglutamate semialdehyde" @@ -93048,10 +93048,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PHCHGSm" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PHCHGSm" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1872" - name: "L-2-amino-3-oxobutanoate decarboxylation (spontaneous)" @@ -93068,12 +93068,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AOBUTDs" - - kegg.reaction: "R03758" - - metanetx.reaction: "MNXR95851" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "AOBUTDs" + - kegg.reaction: "R03758" + - metanetx.reaction: "MNXR95851" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1873" - name: "L-alanine exchange" @@ -93087,9 +93087,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ala__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ala__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1874" - name: "L-alanine transport" @@ -93104,11 +93104,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ALAtmi" - - metanetx.reaction: "MNXR95706" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ALAtmi" + - metanetx.reaction: "MNXR95706" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1875" - name: "L-arabinitol exchange" @@ -93122,9 +93122,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_abt_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_abt_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1876" - name: "L-arabinitol transport" @@ -93139,11 +93139,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ABTt" - - metanetx.reaction: "MNXR95190" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ABTt" + - metanetx.reaction: "MNXR95190" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1877" - name: "L-arabinoase transport" @@ -93158,11 +93158,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ARAB_Lt" - - metanetx.reaction: "MNXR135734" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ARAB_Lt" + - metanetx.reaction: "MNXR135734" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1878" - name: "L-arabinose exchange" @@ -93176,9 +93176,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_arab__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_arab__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1879" - name: "L-arginine exchange" @@ -93192,9 +93192,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_arg__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_arg__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1880" - name: "L-asparagine exchange" @@ -93208,9 +93208,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_asn__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_asn__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1881" - name: "L-aspartate exchange" @@ -93224,9 +93224,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_asp__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_asp__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1882" - name: "L-carnitine transport" @@ -93241,11 +93241,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CRNtim" - - metanetx.reaction: "MNXR96906" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "CRNtim" + - metanetx.reaction: "MNXR96906" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1883" - name: "L-cysteine exchange" @@ -93259,9 +93259,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_cys__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_cys__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1884" - name: "L-erythro-4-hydroxyglutamate transport" @@ -93276,11 +93276,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "E4HGLUtm" - - metanetx.reaction: "MNXR97841" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "E4HGLUtm" + - metanetx.reaction: "MNXR97841" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1885" - name: "L-erythro-4-hydroxyglutamate transport" @@ -93295,11 +93295,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "E4HGLUtp" - - metanetx.reaction: "MNXR97841" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "E4HGLUtp" + - metanetx.reaction: "MNXR97841" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1886" - name: "L-glucitol exchange" @@ -93313,9 +93313,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_sbt__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_sbt__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1887" - name: "L-glutamate 5-semialdehyde dehydratase" @@ -93332,12 +93332,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "G5SADs" - - kegg.reaction: "R03314" - - metanetx.reaction: "MNXR99897" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "G5SADs" + - kegg.reaction: "R03314" + - metanetx.reaction: "MNXR99897" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1889" - name: "L-glutamate exchange" @@ -93351,9 +93351,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_glu__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_glu__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1890" - name: "L-glutamate transport" @@ -93368,10 +93368,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100301" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100301" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1891" - name: "L-glutamine exchange" @@ -93385,9 +93385,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gln__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gln__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1892" - name: "L-glutamine transport" @@ -93402,10 +93402,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100259" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100259" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1893" - name: "L-histidine exchange" @@ -93419,9 +93419,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_his__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_his__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1895" - name: "L-homoserine transport" @@ -93436,11 +93436,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "r2535" - - metanetx.reaction: "MNXR100678" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "r2535" + - metanetx.reaction: "MNXR100678" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1896" - name: "L-homoserine exchange" @@ -93454,9 +93454,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_hom__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_hom__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1897" - name: "L-isoleucine exchange" @@ -93470,9 +93470,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ile__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ile__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1898" - name: "L-isoleucine transport" @@ -93487,11 +93487,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ILEtmi" - - metanetx.reaction: "MNXR100824" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ILEtmi" + - metanetx.reaction: "MNXR100824" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1899" - name: "L-leucine exchange" @@ -93505,9 +93505,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_leu__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_leu__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1900" - name: "L-lysine exchange" @@ -93521,9 +93521,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_lys__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_lys__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1901" - name: "L-malate transport" @@ -93538,11 +93538,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MALt" - - metanetx.reaction: "MNXR101367" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "MALt" + - metanetx.reaction: "MNXR101367" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1902" - name: "L-methionine exchange" @@ -93556,9 +93556,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_met__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_met__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1903" - name: "L-phenylalanine exchange" @@ -93572,9 +93572,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_phe__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_phe__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1904" - name: "L-proline exchange" @@ -93588,9 +93588,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pro__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pro__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1905" - name: "L-proline transport" @@ -93605,11 +93605,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PROtm" - - metanetx.reaction: "MNXR103213" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PROtm" + - metanetx.reaction: "MNXR103213" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1906" - name: "L-serine exchange" @@ -93623,9 +93623,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ser__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ser__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1907" - name: "L-serine transport" @@ -93640,10 +93640,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104354" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR104354" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1908" - name: "L-sorbitol transport" @@ -93658,11 +93658,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SBT_Lt" - - metanetx.reaction: "MNXR104289" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "SBT_Lt" + - metanetx.reaction: "MNXR104289" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1909" - name: "L-sorbose exchange" @@ -93676,9 +93676,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_srb__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_srb__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1910" - name: "L-sorbose transport" @@ -93693,11 +93693,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SRB_Lt" - - metanetx.reaction: "MNXR104533" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "SRB_Lt" + - metanetx.reaction: "MNXR104533" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1911" - name: "L-threonine exchange" @@ -93711,9 +93711,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_thr__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_thr__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1912" - name: "L-tryptophan exchange" @@ -93727,9 +93727,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_trp__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_trp__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1913" - name: "L-tyrosine exchange" @@ -93743,9 +93743,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_tyr__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_tyr__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1914" - name: "L-valine exchange" @@ -93759,9 +93759,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_val__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_val__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1915" - name: "lanosterol exchange" @@ -93775,9 +93775,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_lanost_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_lanost_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1916" - name: "laurate exchange" @@ -93791,9 +93791,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ddca_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ddca_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1919" - name: "lysine transport" @@ -93808,10 +93808,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101269" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR101269" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1920" - name: "M(IP)2C transport" @@ -93826,9 +93826,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1921" - name: "M(IP)2C transport" @@ -93843,9 +93843,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1922" - name: "M(IP)2C transport" @@ -93860,9 +93860,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1923" - name: "M(IP)2C transport" @@ -93877,9 +93877,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1924" - name: "M(IP)2C transport" @@ -93894,9 +93894,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1925" - name: "M(IP)2C transport" @@ -93911,9 +93911,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1926" - name: "M(IP)2C transport" @@ -93928,9 +93928,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1927" - name: "M(IP)2C transport" @@ -93945,9 +93945,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1928" - name: "M(IP)2C transport" @@ -93962,9 +93962,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1929" - name: "M(IP)2C transport" @@ -93979,9 +93979,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1930" - name: "malate/oxaloacetate shuttle" @@ -93998,11 +93998,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MALOAAtp" - - metanetx.reaction: "MNXR101346" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "MALOAAtp" + - metanetx.reaction: "MNXR101346" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1931" - name: "maltose exchange" @@ -94016,10 +94016,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_malt_e" - - metanetx.reaction: "MNXR123950" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_malt_e" + - metanetx.reaction: "MNXR123950" + - sbo: "SBO:0000627" - !!omap - id: "r_1932" - name: "mannan transport" @@ -94034,11 +94034,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MANNANter" - - metanetx.reaction: "MNXR101396" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "MANNANter" + - metanetx.reaction: "MNXR101396" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1935" - name: "methionine transport" @@ -94053,11 +94053,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "METtm" - - metanetx.reaction: "MNXR101493" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "METtm" + - metanetx.reaction: "MNXR101493" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1936" - name: "methylglyoxal synthase" @@ -94073,12 +94073,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MGSA" - - kegg.reaction: "R01016" - - metanetx.reaction: "MNXR101551" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "MGSA" + - kegg.reaction: "R01016" + - metanetx.reaction: "MNXR101551" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1937" - name: "MIPC transport" @@ -94093,9 +94093,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1938" - name: "MIPC transport" @@ -94110,9 +94110,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1939" - name: "MIPC transport" @@ -94127,9 +94127,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1940" - name: "MIPC transport" @@ -94144,9 +94144,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1941" - name: "MIPC transport" @@ -94161,9 +94161,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1942" - name: "MIPC transport" @@ -94178,9 +94178,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1943" - name: "MIPC transport" @@ -94195,9 +94195,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1944" - name: "MIPC transport" @@ -94212,9 +94212,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1945" - name: "MIPC transport" @@ -94229,9 +94229,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1946" - name: "MIPC transport" @@ -94246,9 +94246,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1947" - name: "myo-inositol exchange" @@ -94262,9 +94262,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_inost_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_inost_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1952" - name: "N,N'-diformyldityrosine exchange" @@ -94278,8 +94278,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_1963" - name: "NADP(+) transport" @@ -94294,11 +94294,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NADPtru" - - metanetx.reaction: "MNXR101896" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NADPtru" + - metanetx.reaction: "MNXR101896" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1964" - name: "NADPH transport" @@ -94313,11 +94313,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NADPHtru" - - metanetx.reaction: "MNXR101894" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NADPHtru" + - metanetx.reaction: "MNXR101894" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1965" - name: "NH3 transport" @@ -94332,11 +94332,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NH4tm" - - metanetx.reaction: "MNXR101950" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NH4tm" + - metanetx.reaction: "MNXR101950" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1966" - name: "nicotinamide diffusion" @@ -94351,10 +94351,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101918" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101918" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1967" - name: "nicotinate exchange" @@ -94368,9 +94368,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_nac_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_nac_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1968" - name: "NMN exchange" @@ -94384,9 +94384,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_nmn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_nmn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1970" - name: "NMN transport" @@ -94401,11 +94401,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NMNtn" - - metanetx.reaction: "MNXR101972" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NMNtn" + - metanetx.reaction: "MNXR101972" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1971" - name: "NMN transport" @@ -94420,10 +94420,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101972" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101972" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1972" - name: "NMN transport" @@ -94438,11 +94438,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NMNP" - - metanetx.reaction: "MNXR101972" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NMNP" + - metanetx.reaction: "MNXR101972" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1974" - name: "nucleoside-diphosphatase (dGDP)" @@ -94460,11 +94460,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NDP4" - - metanetx.reaction: "MNXR101929" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NDP4" + - metanetx.reaction: "MNXR101929" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1975" - name: "nucleoside-triphosphatase (dGTP)" @@ -94482,11 +94482,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "NTP4" - - metanetx.reaction: "MNXR102044" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "NTP4" + - metanetx.reaction: "MNXR102044" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1976" - name: "O-acetylcarnintine transport into mitochondria" @@ -94501,11 +94501,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ACRNtm" - - metanetx.reaction: "MNXR95412" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "ACRNtm" + - metanetx.reaction: "MNXR95412" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1977" - name: "O2 transport" @@ -94520,11 +94520,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "O2ter" - - metanetx.reaction: "MNXR102090" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "O2ter" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1978" - name: "O2 transport" @@ -94539,11 +94539,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "O2tm" - - metanetx.reaction: "MNXR102090" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "O2tm" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1979" - name: "O2 transport" @@ -94558,11 +94558,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "O2t" - - metanetx.reaction: "MNXR102090" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "O2t" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1980" - name: "O2 transport" @@ -94577,11 +94577,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "O2tp" - - metanetx.reaction: "MNXR102090" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "O2tp" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1981" - name: "octadecanoate (n-C18:0) transport" @@ -94596,11 +94596,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "OCDCAt" - - metanetx.reaction: "MNXR99109" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "OCDCAt" + - metanetx.reaction: "MNXR99109" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1984" - name: "octanoate exchange" @@ -94614,9 +94614,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_octa_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_octa_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1987" - name: "ornithine exchange" @@ -94630,9 +94630,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_orn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_orn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1988" - name: "oxaloacetate transport" @@ -94647,11 +94647,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "OAAt" - - metanetx.reaction: "MNXR102100" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "OAAt" + - metanetx.reaction: "MNXR102100" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1989" - name: "oxaloacetate(2-) exchange" @@ -94665,11 +94665,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_oaa_e" - - kegg.reaction: "R00363" - - metanetx.reaction: "MNXR125856" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_oaa_e" + - kegg.reaction: "R00363" + - metanetx.reaction: "MNXR125856" + - sbo: "SBO:0000627" - !!omap - id: "r_1990" - name: "oxidized glutathione uniport" @@ -94684,11 +94684,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GTHOXti" - - metanetx.reaction: "MNXR100443" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "GTHOXti" + - metanetx.reaction: "MNXR100443" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_1991" - name: "oxidized thioredoxin transport" @@ -94703,11 +94703,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TRDOXtp" - - metanetx.reaction: "MNXR104921" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "TRDOXtp" + - metanetx.reaction: "MNXR104921" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1992" - name: "oxygen exchange" @@ -94721,9 +94721,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_o2_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_o2_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1993" - name: "palmitate exchange" @@ -94737,9 +94737,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_hdca_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_hdca_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1994" - name: "palmitoleate exchange" @@ -94753,9 +94753,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_hdcea_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_hdcea_e" + - sbo: "SBO:0000627" - !!omap - id: "r_1995" - name: "palmitoyl-CoA transport" @@ -94770,11 +94770,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PMTCOAFABP1tc" - - metanetx.reaction: "MNXR103046" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PMTCOAFABP1tc" + - metanetx.reaction: "MNXR103046" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1996" - name: "panthetheine 4'-phosphate transport" @@ -94789,11 +94789,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PAN4Ptm" - - metanetx.reaction: "MNXR102344" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PAN4Ptm" + - metanetx.reaction: "MNXR102344" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1997" - name: "panthetheine-phosphate adenylyltransferase" @@ -94811,12 +94811,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PTPATim" - - kegg.reaction: "R03035" - - metanetx.reaction: "MNXR95892" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PTPATim" + - kegg.reaction: "R03035" + - metanetx.reaction: "MNXR95892" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_1998" - name: "PAP uniport" @@ -94831,11 +94831,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PAPt" - - metanetx.reaction: "MNXR102382" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PAPt" + - metanetx.reaction: "MNXR102382" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_1999" - name: "pectin exchange" @@ -94849,9 +94849,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pectin_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pectin_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2000" - name: "phenethyl acetate exchange" @@ -94865,9 +94865,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pheac_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pheac_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2001" - name: "phenylacetaldehyde exchange" @@ -94881,9 +94881,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pacald_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pacald_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2002" - name: "phenylacetaldehyde transport" @@ -94898,11 +94898,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PACALDt" - - metanetx.reaction: "MNXR102312" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PACALDt" + - metanetx.reaction: "MNXR102312" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2003" - name: "phenylacetaldehyde transport" @@ -94917,11 +94917,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PACALDtm" - - metanetx.reaction: "MNXR102312" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PACALDtm" + - metanetx.reaction: "MNXR102312" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2004" - name: "phenylalanine transport" @@ -94936,10 +94936,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR102637" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR102637" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2005" - name: "phosphate exchange" @@ -94953,9 +94953,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pi_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pi_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2008" - name: "phosphate transport" @@ -94970,10 +94970,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR102871" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_2020" - name: "potassium exchange" @@ -94987,9 +94987,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_k_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_k_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2022" - name: "protoporphyrinogen IX transport" @@ -95004,11 +95004,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PPPG9tm" - - metanetx.reaction: "MNXR103127" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PPPG9tm" + - metanetx.reaction: "MNXR103127" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2023" - name: "PRPP transport" @@ -95023,11 +95023,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PRPPtm" - - metanetx.reaction: "MNXR103216" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PRPPtm" + - metanetx.reaction: "MNXR103216" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2024" - name: "putrescine exchange" @@ -95041,9 +95041,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ptrc_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ptrc_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2025" - name: "pyridoxal kinase" @@ -95061,12 +95061,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PYDXK" - - kegg.reaction: "R00174" - - metanetx.reaction: "MNXR103361" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "PYDXK" + - kegg.reaction: "R00174" + - metanetx.reaction: "MNXR103361" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_2026" - name: "pyridoxamine kinase" @@ -95084,12 +95084,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PYDAMK" - - kegg.reaction: "R02493" - - metanetx.reaction: "MNXR103357" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PYDAMK" + - kegg.reaction: "R02493" + - metanetx.reaction: "MNXR103357" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2027" - name: "pyridoxamine phosphatase" @@ -95106,12 +95106,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HYPOE" - - kegg.reaction: "R02494" - - metanetx.reaction: "MNXR100763" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "HYPOE" + - kegg.reaction: "R02494" + - metanetx.reaction: "MNXR100763" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2028" - name: "pyridoxine exchange" @@ -95125,9 +95125,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pydxn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pydxn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2030" - name: "pyrimidine phosphatase" @@ -95144,12 +95144,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PMDPHT" - - kegg.reaction: "R07280" - - metanetx.reaction: "MNXR96145" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PMDPHT" + - kegg.reaction: "R07280" + - metanetx.reaction: "MNXR96145" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2031" - name: "pyrimidine-nucleoside phosphorylase (uracil)" @@ -95166,12 +95166,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PYNP2r" - - kegg.reaction: "R01876" - - metanetx.reaction: "MNXR103377" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PYNP2r" + - kegg.reaction: "R01876" + - metanetx.reaction: "MNXR103377" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2032" - name: "pyrophosphate transport" @@ -95186,11 +95186,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PPItm" - - metanetx.reaction: "MNXR103112" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PPItm" + - metanetx.reaction: "MNXR103112" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2033" - name: "pyruvate exchange" @@ -95204,9 +95204,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pyr_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pyr_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2036" - name: "quinolinate transport" @@ -95221,11 +95221,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "QULNtm" - - metanetx.reaction: "MNXR103401" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "QULNtm" + - metanetx.reaction: "MNXR103401" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2037" - name: "reduced thioredoxin transport" @@ -95240,10 +95240,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TRDRDtp" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "TRDRDtp" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2038" - name: "riboflavin exchange" @@ -95257,9 +95257,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ribflv_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ribflv_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2039" - name: "riboflavin transport" @@ -95274,11 +95274,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "RIBFLVtm" - - metanetx.reaction: "MNXR104033" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "RIBFLVtm" + - metanetx.reaction: "MNXR104033" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2040" - name: "riboflavin transport" @@ -95293,11 +95293,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "r1106" - - metanetx.reaction: "MNXR104033" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "r1106" + - metanetx.reaction: "MNXR104033" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_2041" - name: "ribose transporter" @@ -95312,11 +95312,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "RIBt" - - metanetx.reaction: "MNXR104036" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "RIBt" + - metanetx.reaction: "MNXR104036" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_2042" - name: "S-adenosyl-L-homocysteine transport" @@ -95331,11 +95331,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AHCYStm" - - metanetx.reaction: "MNXR95626" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "AHCYStm" + - metanetx.reaction: "MNXR95626" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2043" - name: "S-adenosyl-L-methionine exchange" @@ -95349,9 +95349,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_amet_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_amet_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2044" - name: "S-methyl-L-methionine exchange" @@ -95365,9 +95365,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_mmet_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_mmet_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2045" - name: "serine transport" @@ -95382,11 +95382,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "r1435" - - metanetx.reaction: "MNXR104354" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "r1435" + - metanetx.reaction: "MNXR104354" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_2046" - name: "sn-glycero-3-phosphocholine exchange" @@ -95400,9 +95400,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_g3pc_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_g3pc_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2049" - name: "sodium exchange" @@ -95416,9 +95416,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_na1_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_na1_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2050" - name: "spermidine acetyltransferase" @@ -95436,11 +95436,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SPMDAT1" - - metanetx.reaction: "MNXR104491" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "SPMDAT1" + - metanetx.reaction: "MNXR104491" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2051" - name: "spermidine exchange" @@ -95454,9 +95454,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_spmd_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_spmd_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2052" - name: "spermine exchange" @@ -95470,9 +95470,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_sprm_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_sprm_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2053" - name: "squalene transport" @@ -95487,11 +95487,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SQLter" - - metanetx.reaction: "MNXR104530" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "SQLter" + - metanetx.reaction: "MNXR104530" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2054" - name: "squalene-2,3-epoxide transport" @@ -95506,11 +95506,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SQ23EPXter" - - metanetx.reaction: "MNXR104505" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "SQ23EPXter" + - metanetx.reaction: "MNXR104505" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2055" - name: "stearate exchange" @@ -95524,9 +95524,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ocdca_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ocdca_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2056" - name: "succinate exchange" @@ -95540,9 +95540,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_succ_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_succ_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2057" - name: "succinate transport" @@ -95557,11 +95557,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "SUCCt" - - metanetx.reaction: "MNXR104619" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "SUCCt" + - metanetx.reaction: "MNXR104619" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2058" - name: "sucrose exchange" @@ -95575,9 +95575,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_sucr_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_sucr_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2060" - name: "sulphate exchange" @@ -95591,9 +95591,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_so4_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_so4_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2061" - name: "sulphite exchange" @@ -95607,10 +95607,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_so3_e" - - metanetx.reaction: "MNXR122251" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_so3_e" + - metanetx.reaction: "MNXR122251" + - sbo: "SBO:0000627" - !!omap - id: "r_2062" - name: "taurine exchange" @@ -95624,9 +95624,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_taur_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_taur_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2063" - name: "tetracosanoyl-CoA transport" @@ -95641,10 +95641,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137463" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR137463" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2064" - name: "thiamin phosphatase" @@ -95661,12 +95661,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "THMP" - - kegg.reaction: "R02135" - - metanetx.reaction: "MNXR104823" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "THMP" + - kegg.reaction: "R02135" + - metanetx.reaction: "MNXR104823" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_2065" - name: "thiaminase" @@ -95684,12 +95684,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TMN" - - kegg.reaction: "R02133" - - metanetx.reaction: "MNXR104901" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "TMN" + - kegg.reaction: "R02133" + - metanetx.reaction: "MNXR104901" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2066" - name: "thiamine(1+) diphosphate(1-) exchange" @@ -95703,9 +95703,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_thmpp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_thmpp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2067" - name: "thiamine(1+) exchange" @@ -95719,9 +95719,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_thm_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_thm_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2068" - name: "thiamine(1+) monophosphate exchange" @@ -95735,9 +95735,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_thmmp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_thmmp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2069" - name: "thiamine-phosphate kinase" @@ -95754,12 +95754,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TMPK" - - kegg.reaction: "R00617" - - metanetx.reaction: "MNXR104907" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "TMPK" + - kegg.reaction: "R00617" + - metanetx.reaction: "MNXR104907" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2070" - name: "thiazole phosphate synthesis (ribose 5-phosphate)" @@ -95784,11 +95784,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "THZPSN2_SC" - - metanetx.reaction: "MNXR104860" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "THZPSN2_SC" + - metanetx.reaction: "MNXR104860" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2071" - name: "thiazole phosphate synthesis (xylulose 5-phosphate)" @@ -95813,11 +95813,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "THZPSN1_SC" - - metanetx.reaction: "MNXR104859" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "THZPSN1_SC" + - metanetx.reaction: "MNXR104859" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2072" - name: "threonine transport" @@ -95832,11 +95832,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "thr_mt" - - metanetx.reaction: "MNXR104852" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "thr_mt" + - metanetx.reaction: "MNXR104852" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_2073" - name: "thymidine exchange" @@ -95850,9 +95850,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_thymd_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_thymd_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2074" - name: "thymidine kinase (ATP:thymidine)" @@ -95870,12 +95870,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TMDK1" - - kegg.reaction: "R01567" - - metanetx.reaction: "MNXR104885" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "TMDK1" + - kegg.reaction: "R01567" + - metanetx.reaction: "MNXR104885" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2075" - name: "thymidine transport" @@ -95890,11 +95890,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "THYMDt1" - - metanetx.reaction: "MNXR104821" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "THYMDt1" + - metanetx.reaction: "MNXR104821" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2080" - name: "trehalose vacuolar transport" @@ -95909,10 +95909,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104933" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR104933" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2082" - name: "tryptophan transport" @@ -95927,10 +95927,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104949" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR104949" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2083" - name: "tryptophol exchange" @@ -95944,9 +95944,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ind3eth_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ind3eth_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2084" - name: "tryptophol transport" @@ -95961,11 +95961,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "IND3ETHt" - - metanetx.reaction: "MNXR100834" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "IND3ETHt" + - metanetx.reaction: "MNXR100834" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2085" - name: "tryptophol transport" @@ -95980,11 +95980,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "IND3ETHtm" - - metanetx.reaction: "MNXR100834" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "IND3ETHtm" + - metanetx.reaction: "MNXR100834" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2086" - name: "tyrosine transport" @@ -95999,11 +95999,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "r1078" - - metanetx.reaction: "MNXR105002" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "r1078" + - metanetx.reaction: "MNXR105002" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2087" - name: "tyrosine transport" @@ -96018,10 +96018,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR105002" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR105002" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2089" - name: "UMP transport" @@ -96036,11 +96036,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "UMPtn" - - metanetx.reaction: "MNXR105127" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "UMPtn" + - metanetx.reaction: "MNXR105127" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2090" - name: "uracil exchange" @@ -96054,9 +96054,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ura_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ura_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2091" - name: "urea exchange" @@ -96070,9 +96070,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_urea_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_urea_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2092" - name: "uridine exchange" @@ -96086,9 +96086,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_uri_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_uri_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2093" - name: "valine transport" @@ -96103,11 +96103,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "VALt5m" - - metanetx.reaction: "MNXR105190" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "VALt5m" + - metanetx.reaction: "MNXR105190" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2094" - name: "water diffusion" @@ -96122,11 +96122,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "H2Oter" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "H2Oter" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_2095" - name: "water diffusion" @@ -96141,11 +96141,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "H2Otg" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "H2Otg" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2096" - name: "water diffusion" @@ -96160,11 +96160,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "H2Otm" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "H2Otm" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2097" - name: "water diffusion" @@ -96179,11 +96179,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "H2Otn" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "H2Otn" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2098" - name: "water diffusion" @@ -96198,11 +96198,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "H2Otp" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "H2Otp" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2099" - name: "water diffusion" @@ -96217,11 +96217,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "H2Otv" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "H2Otv" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2100" - name: "water exchange" @@ -96235,9 +96235,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_h2o_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_h2o_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2101" - name: "xanthine transport" @@ -96252,11 +96252,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "XANt" - - metanetx.reaction: "MNXR105226" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "XANt" + - metanetx.reaction: "MNXR105226" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2102" - name: "xanthosine exchange" @@ -96270,9 +96270,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_xtsn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_xtsn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2103" - name: "xanthosine transport" @@ -96287,11 +96287,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "XTSNtr" - - metanetx.reaction: "MNXR105247" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "XTSNtr" + - metanetx.reaction: "MNXR105247" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2104" - name: "xylitol exchange" @@ -96305,9 +96305,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_xylt_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_xylt_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2105" - name: "xylitol transport" @@ -96322,11 +96322,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "XYLTt" - - metanetx.reaction: "MNXR105264" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "XYLTt" + - metanetx.reaction: "MNXR105264" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_2106" - name: "zymosterol exchange" @@ -96340,9 +96340,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_zymst_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_zymst_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2107" - name: "zymosterol transport" @@ -96357,10 +96357,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR105285" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR105285" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_2108" - name: "lipid pseudoreaction - merge" @@ -96376,10 +96376,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - pmid: "18687109" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - pmid: "18687109" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_2111" - name: "growth" @@ -96394,10 +96394,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137261" - - sbo: "SBO:0000632" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR137261" + - sbo: "SBO:0000632" + - confidence_score: 0 - !!omap - id: "r_2125" - name: "coenzyme A: cytoplasm to LP" @@ -96412,12 +96412,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R00197" - - metanetx.reaction: "MNXR138960" - - pmid: "22672422" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - kegg.reaction: "R00197" + - metanetx.reaction: "MNXR138960" + - pmid: "22672422" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2129" - name: "proton leak" @@ -96432,12 +96432,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "Htm" - - metanetx.reaction: "MNXR100765" - - pmid: "22672422" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "Htm" + - metanetx.reaction: "MNXR100765" + - pmid: "22672422" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2134" - name: "14-demethyllanosterol exchange" @@ -96451,8 +96451,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_2136" - name: "14-demethyllanosterol transport" @@ -96467,10 +96467,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137169" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR137169" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2137" - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol exchange" @@ -96484,8 +96484,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_2139" - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol transport" @@ -96500,10 +96500,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR97951" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR97951" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2184" - name: "octanoate (n-C8:0) transport" @@ -96518,11 +96518,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "OCTAt" - - metanetx.reaction: "MNXR99126" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "OCTAt" + - metanetx.reaction: "MNXR99126" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2185" - name: "decanoate (n-C10:0) transport" @@ -96537,11 +96537,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DCATDc" - - metanetx.reaction: "MNXR135772" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "DCATDc" + - metanetx.reaction: "MNXR135772" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2186" - name: "laurate (n-C12:0) transport" @@ -96556,11 +96556,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "r2444" - - metanetx.reaction: "MNXR135773" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "r2444" + - metanetx.reaction: "MNXR135773" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2187" - name: "butyrate exchange" @@ -96574,9 +96574,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_but_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_but_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2188" - name: "hexanoate exchange" @@ -96590,9 +96590,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_hxa_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_hxa_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2189" - name: "oleate exchange" @@ -96606,9 +96606,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ocdcea_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ocdcea_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2190" - name: "butyrate (n-C4:0) transport" @@ -96623,10 +96623,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "BUTt" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "BUTt" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_2191" - name: "hexanoate (n-C6:0) transport" @@ -96641,11 +96641,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HXAt3" - - metanetx.reaction: "MNXR100750" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "HXAt3" + - metanetx.reaction: "MNXR100750" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_2192" - name: "octadecenoate (n-C18:1) transport" @@ -96660,11 +96660,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "OCDCEAt" - - metanetx.reaction: "MNXR99110" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "OCDCEAt" + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2193" - name: "myristate exchange" @@ -96678,9 +96678,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ttdca_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ttdca_e" + - sbo: "SBO:0000627" - !!omap - id: "r_2229" - name: "butyrate (n-C4:0) transport, cytoplasm-peroxisome" @@ -96695,9 +96695,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2230" - name: "hexanoate (n-C6:0) transport, cytoplasm-peroxisome" @@ -96712,11 +96712,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HXAt2" - - metanetx.reaction: "MNXR100750" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "HXAt2" + - metanetx.reaction: "MNXR100750" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_2231" - name: "octadecenoate (n-C18:1) transport, cytoplasm-peroxisome" @@ -96731,10 +96731,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99110" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_2812" - name: "lysoPC acyltransferase (1-16:0, 2-16:1), mitochondrial membrane" @@ -96751,9 +96751,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2813" - name: "lysoPC acyltransferase (1-16:0, 2-18:1), mitochondrial membrane" @@ -96770,9 +96770,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2814" - name: "lysoPC acyltransferase (1-16:1, 2-16:1), mitochondrial membrane" @@ -96789,9 +96789,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2815" - name: "lysoPC acyltransferase (1-16:1, 2-18:1), mitochondrial membrane" @@ -96808,9 +96808,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2816" - name: "lysoPC acyltransferase (1-18:0, 2-16:1), mitochondrial membrane" @@ -96827,9 +96827,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2817" - name: "lysoPC acyltransferase (1-18:0, 2-18:1), mitochondrial membrane" @@ -96846,9 +96846,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2818" - name: "lysoPC acyltransferase (1-18:1, 2-16:1), mitochondrial membrane" @@ -96865,9 +96865,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_2819" - name: "lysoPC acyltransferase (1-18:1, 2-18:1), mitochondrial membrane" @@ -96884,9 +96884,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3332" - name: "PA kinase (1-16:0, 2-16:1), Golgi membrane" @@ -96904,9 +96904,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3333" - name: "PA kinase (1-16:1, 2-16:1), Golgi membrane" @@ -96924,9 +96924,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3334" - name: "PA kinase (1-18:0, 2-16:1), Golgi membrane" @@ -96944,9 +96944,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3335" - name: "PA kinase (1-18:1, 2-16:1), Golgi membrane" @@ -96964,9 +96964,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3336" - name: "PA kinase (1-16:0, 2-18:1), Golgi membrane" @@ -96984,9 +96984,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3337" - name: "PA kinase (1-16:1, 2-18:1), Golgi membrane" @@ -97004,9 +97004,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3338" - name: "PA kinase (1-18:0, 2-18:1), Golgi membrane" @@ -97024,9 +97024,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3339" - name: "PA kinase (1-18:1, 2-18:1), Golgi membrane" @@ -97044,9 +97044,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3340" - name: "PA kinase (1-16:0, 2-16:1), vacuolar membrane" @@ -97064,9 +97064,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3341" - name: "PA kinase (1-16:1, 2-16:1), vacuolar membrane" @@ -97084,9 +97084,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3342" - name: "PA kinase (1-18:0, 2-16:1), vacuolar membrane" @@ -97104,9 +97104,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3343" - name: "PA kinase (1-18:1, 2-16:1), vacuolar membrane" @@ -97124,9 +97124,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3344" - name: "PA kinase (1-16:0, 2-18:1), vacuolar membrane" @@ -97144,9 +97144,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3345" - name: "PA kinase (1-16:1, 2-18:1), vacuolar membrane" @@ -97164,9 +97164,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3346" - name: "PA kinase (1-18:0, 2-18:1), vacuolar membrane" @@ -97184,9 +97184,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3347" - name: "PA kinase (1-18:1, 2-18:1), vacuolar membrane" @@ -97204,9 +97204,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_3508" - name: "laurate transport, cytoplasm-ER membrane" @@ -97221,10 +97221,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR135773" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR135773" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3509" - name: "myristate transport, cytoplasm-ER membrane" @@ -97239,10 +97239,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR128297" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR128297" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3510" - name: "palmitate transport, cytoplasm-ER membrane" @@ -97257,10 +97257,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99101" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3511" - name: "palmitoleate transport, cytoplasm-ER membrane" @@ -97275,9 +97275,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3512" - name: "stearate transport, cytoplasm-ER membrane" @@ -97292,10 +97292,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99109" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99109" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3513" - name: "oleate transport, cytoplasm-ER membrane" @@ -97310,10 +97310,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99110" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3514" - name: "malonyl-CoA transport, cytoplasm-ER membrane" @@ -97328,9 +97328,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3515" - name: "lauroyl-CoA transport, cytoplasm-ER membrane" @@ -97345,9 +97345,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3516" - name: "myristoyl-CoA transport, cytoplasm-ER membrane" @@ -97362,9 +97362,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3517" - name: "palmitoyl-CoA transport, cytoplasm-ER membrane" @@ -97379,10 +97379,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR103046" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR103046" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3518" - name: "palmitoleoyl-CoA transport, cytoplasm-ER membrane" @@ -97397,9 +97397,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3519" - name: "stearoyl-CoA transport, cytoplasm-ER membrane" @@ -97414,10 +97414,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104598" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR104598" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3520" - name: "oleoyl-CoA transport, cytoplasm-ER membrane" @@ -97432,10 +97432,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR128426" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR128426" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3521" - name: "icosanoyl-CoA transport, cytoplasm-ER membrane" @@ -97450,9 +97450,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3522" - name: "docosanoyl-CoA transport, cytoplasm-ER membrane" @@ -97467,9 +97467,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3523" - name: "tetracosanoyl-CoA transport, cytoplasm-ER membrane" @@ -97484,10 +97484,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137463" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR137463" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3524" - name: "hexacosanoyl-CoA transport, cytoplasm-ER membrane" @@ -97502,10 +97502,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR124347" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR124347" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3525" - name: "H+ transport, cytoplasm-ER membrane" @@ -97520,10 +97520,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3526" - name: "H2O transport, cytoplasm-ER membrane" @@ -97538,10 +97538,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3527" - name: "CO2 transport, cytoplasm-ER membrane" @@ -97556,10 +97556,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3528" - name: "coenzyme A transport, cytoplasm-ER membrane" @@ -97574,10 +97574,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96815" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3529" - name: "NADPH transport, cytoplasm-ER membrane" @@ -97592,10 +97592,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101894" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101894" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3530" - name: "NADP(+) transport, cytoplasm-ER membrane" @@ -97610,10 +97610,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101896" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101896" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3531" - name: "O2 transport, cytoplasm-ER membrane" @@ -97628,10 +97628,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR102090" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR102090" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3532" - name: "NADH transport, cytoplasm-ER membrane" @@ -97646,10 +97646,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101881" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101881" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3533" - name: "NAD transport, cytoplasm-ER membrane" @@ -97664,10 +97664,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101900" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101900" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3534" - name: "glycerol 3-phosphate transport, cytoplasm-ER membrane" @@ -97682,10 +97682,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100308" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100308" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3535" - name: "dihydroxyacetone phosphate transport, cytoplasm-ER membrane" @@ -97700,10 +97700,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR97366" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR97366" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3536" - name: "diphosphate transport, cytoplasm-ER membrane" @@ -97718,10 +97718,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR103112" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR103112" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3537" - name: "phosphate transport, cytoplasm-ER membrane" @@ -97736,10 +97736,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR102871" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3538" - name: "CTP transport, cytoplasm-ER membrane" @@ -97754,10 +97754,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96946" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96946" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3539" - name: "CDP transport, cytoplasm-ER membrane" @@ -97772,10 +97772,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96562" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96562" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3540" - name: "CMP transport, cytoplasm-ER membrane" @@ -97790,10 +97790,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96806" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96806" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3541" - name: "CDP-ethanolamine transport, cytoplasm-ER membrane" @@ -97808,9 +97808,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3542" - name: "CDP-choline transport, cytoplasm-ER membrane" @@ -97825,10 +97825,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR105436" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR105436" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3543" - name: "ATP transport, cytoplasm-ER membrane" @@ -97843,10 +97843,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96140" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3544" - name: "AMP transport, cytoplasm-ER membrane" @@ -97861,10 +97861,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95830" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95830" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3545" - name: "L-serine transport, cytoplasm-ER membrane" @@ -97879,10 +97879,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104354" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR104354" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3546" - name: "myo-inositol transport, cytoplasm-ER membrane" @@ -97897,10 +97897,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100848" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100848" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3547" - name: "S-adenosyl-L-methionine transport, cytoplasm-ER membrane" @@ -97915,10 +97915,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95809" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95809" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3548" - name: "S-adenosyl-L-homocysteine transport, cytoplasm-ER membrane" @@ -97933,10 +97933,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95626" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95626" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3549" - name: "episterol transport, cytoplasm-ER membrane" @@ -97951,10 +97951,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR97944" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR97944" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3550" - name: "fecosterol transport, cytoplasm-ER membrane" @@ -97969,10 +97969,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99529" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99529" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3551" - name: "lanosterol transport, cytoplasm-ER membrane" @@ -97987,10 +97987,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101014" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101014" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3552" - name: "ergosterol transport, cytoplasm-ER membrane" @@ -98005,10 +98005,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR97950" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR97950" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3553" - name: "zymosterol transport, cytoplasm-ER membrane" @@ -98023,10 +98023,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR105285" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR105285" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3554" - name: "diglyceride (1-16:0, 2-16:1) transport, cytoplasm-ER membrane" @@ -98041,9 +98041,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3555" - name: "diglyceride (1-16:1, 2-16:1) transport, cytoplasm-ER membrane" @@ -98058,9 +98058,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3556" - name: "diglyceride (1-18:0, 2-16:1) transport, cytoplasm-ER membrane" @@ -98075,9 +98075,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3557" - name: "diglyceride (1-18:1, 2-16:1) transport, cytoplasm-ER membrane" @@ -98092,9 +98092,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3558" - name: "diglyceride (1-16:0, 2-18:1) transport, cytoplasm-ER membrane" @@ -98109,9 +98109,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3559" - name: "diglyceride (1-16:1, 2-18:1) transport, cytoplasm-ER membrane" @@ -98126,9 +98126,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3560" - name: "diglyceride (1-18:0, 2-18:1) transport, cytoplasm-ER membrane" @@ -98143,9 +98143,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3561" - name: "diglyceride (1-18:1, 2-18:1) transport, cytoplasm-ER membrane" @@ -98160,9 +98160,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3562" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, cytoplasm-ER membrane" @@ -98177,9 +98177,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3563" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, cytoplasm-ER membrane" @@ -98194,9 +98194,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3564" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, cytoplasm-ER membrane" @@ -98211,9 +98211,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3565" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, cytoplasm-ER membrane" @@ -98228,9 +98228,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3566" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, cytoplasm-ER membrane" @@ -98245,9 +98245,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3567" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, cytoplasm-ER membrane" @@ -98262,9 +98262,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3568" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, cytoplasm-ER membrane" @@ -98279,9 +98279,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3569" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, cytoplasm-ER membrane" @@ -98296,9 +98296,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3570" - name: "sn-glycero-3-phosphocholine transport, ER membrane-cytoplasm" @@ -98313,10 +98313,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99874" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99874" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3571" - name: "hexadecanoate (n-C16:0) transport, cytoplasm-lipid particle" @@ -98331,10 +98331,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99101" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3572" - name: "hexadecenoate (n-C16:1) transport, cytoplasm-lipid particle" @@ -98349,9 +98349,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3573" - name: "octadecanoate (n-C18:0) transport, cytoplasm-lipid particle" @@ -98366,10 +98366,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99109" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99109" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3574" - name: "octadecenoate (n-C18:1) transport, cytoplasm-lipid particle" @@ -98384,10 +98384,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99110" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3575" - name: "lauroyl-CoA transport, cytoplasm-lipid particle" @@ -98402,9 +98402,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3576" - name: "myristoyl-CoA transport, cytoplasm-lipid particle" @@ -98419,9 +98419,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3577" - name: "palmitoyl-CoA transport, cytoplasm-lipid particle" @@ -98436,10 +98436,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR103046" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR103046" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3578" - name: "palmitoleoyl-CoA transport, cytoplasm-lipid particle" @@ -98454,9 +98454,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3579" - name: "stearoyl-CoA transport, cytoplasm-lipid particle" @@ -98471,10 +98471,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104598" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR104598" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3580" - name: "oleoyl-CoA transport, cytoplasm-lipid particle" @@ -98489,10 +98489,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR128426" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR128426" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3581" - name: "glycerol 3-phosphate transport, cytoplasm-lipid particle" @@ -98507,10 +98507,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100308" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100308" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3582" - name: "dihydroxyacetone phosphate transport, cytoplasm-lipid particle" @@ -98525,10 +98525,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR97366" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR97366" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3583" - name: "NADPH transport, cytoplasm-lipid particle" @@ -98543,10 +98543,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101894" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101894" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3584" - name: "NADP(+) transport, cytoplasm-lipid particle" @@ -98561,10 +98561,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101896" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101896" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3585" - name: "ATP transport, cytoplasm-lipid particle" @@ -98579,10 +98579,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96140" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3586" - name: "AMP transport, cytoplasm-lipid particle" @@ -98597,10 +98597,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95830" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95830" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3587" - name: "diphosphate transport, cytoplasm-lipid particle" @@ -98615,10 +98615,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR103112" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR103112" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3588" - name: "diglyceride (1-16:0, 2-16:1) transport, cytoplasm-lipid particle" @@ -98633,9 +98633,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3589" - name: "diglyceride (1-16:1, 2-16:1) transport, cytoplasm-lipid particle" @@ -98650,9 +98650,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3590" - name: "diglyceride (1-18:0, 2-16:1) transport, cytoplasm-lipid particle" @@ -98667,9 +98667,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3591" - name: "diglyceride (1-18:1, 2-16:1) transport, cytoplasm-lipid particle" @@ -98684,9 +98684,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3592" - name: "diglyceride (1-16:0, 2-18:1) transport, cytoplasm-lipid particle" @@ -98701,9 +98701,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3593" - name: "diglyceride (1-16:1, 2-18:1) transport, cytoplasm-lipid particle" @@ -98718,9 +98718,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3594" - name: "diglyceride (1-18:0, 2-18:1) transport, cytoplasm-lipid particle" @@ -98735,9 +98735,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3595" - name: "diglyceride (1-18:1, 2-18:1) transport, cytoplasm-lipid particle" @@ -98752,9 +98752,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3596" - name: "H2O transport, cytoplasm-lipid particle" @@ -98769,10 +98769,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3597" - name: "glycerol transport, lipid particle-cytoplasm" @@ -98787,10 +98787,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100343" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100343" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3598" - name: "docosanoyl-CoA transport, lipid particle-cytoplasm" @@ -98805,9 +98805,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3599" - name: "tetracosanoyl-CoA transport, lipid particle-cytoplasm" @@ -98822,10 +98822,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137463" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR137463" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3600" - name: "hexacosanoyl-CoA transport, lipid particle-cytoplasm" @@ -98840,10 +98840,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR124347" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR124347" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3601" - name: "ATP transport, cytoplasm-cell envelope" @@ -98858,10 +98858,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96140" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3602" - name: "ADP transport, cytoplasm-cell envelope" @@ -98876,10 +98876,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95484" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95484" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3603" - name: "H+ transport, cytoplasm-cell envelope" @@ -98894,10 +98894,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3604" - name: "H2O transport, cytoplasm-cell envelope" @@ -98912,10 +98912,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3605" - name: "phosphate transport, cytoplasm-cell envelope" @@ -98930,10 +98930,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR102871" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3606" - name: "sn-glycero-3-phosphocholine transport, cell envelope-cytoplasm" @@ -98948,10 +98948,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99874" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR99874" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3607" - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol transport, cell envelope-cytoplasm" @@ -98966,10 +98966,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99888" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR99888" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3608" - name: "palmitate transport, cell envelope-cytoplasm" @@ -98984,10 +98984,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99101" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3609" - name: "palmitoleate transport, cell envelope-cytoplasm" @@ -99002,9 +99002,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3610" - name: "stearate transport, cell envelope-cytoplasm" @@ -99019,10 +99019,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99109" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99109" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3611" - name: "oleate transport, cell envelope-cytoplasm" @@ -99037,10 +99037,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99110" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3612" - name: "icosanoyl-CoA transport, cell envelope-cytoplasm" @@ -99055,9 +99055,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3613" - name: "docosanoyl-CoA transport, cell envelope-cytoplasm" @@ -99072,9 +99072,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3614" - name: "tetracosanoyl-CoA transport, cell envelope-cytoplasm" @@ -99089,10 +99089,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137463" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR137463" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3615" - name: "hexacosanoyl-CoA transport, cell envelope-cytoplasm" @@ -99107,10 +99107,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR124347" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR124347" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3616" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, cell envelope-cytoplasm" @@ -99125,9 +99125,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3617" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, cell envelope-cytoplasm" @@ -99142,9 +99142,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3618" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, cell envelope-cytoplasm" @@ -99159,9 +99159,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3619" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, cell envelope-cytoplasm" @@ -99176,9 +99176,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3620" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, cell envelope-cytoplasm" @@ -99193,9 +99193,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3621" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, cell envelope-cytoplasm" @@ -99210,9 +99210,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3622" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, cell envelope-cytoplasm" @@ -99227,9 +99227,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3623" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, cell envelope-cytoplasm" @@ -99244,9 +99244,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3624" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) transport, cell envelope-cytoplasm" @@ -99261,9 +99261,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3625" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) transport, cell envelope-cytoplasm" @@ -99278,9 +99278,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3626" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) transport, cell envelope-cytoplasm" @@ -99295,9 +99295,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3627" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) transport, cell envelope-cytoplasm" @@ -99312,9 +99312,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3628" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) transport, cell envelope-cytoplasm" @@ -99329,9 +99329,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3629" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) transport, cell envelope-cytoplasm" @@ -99346,9 +99346,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3630" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) transport, cell envelope-cytoplasm" @@ -99363,9 +99363,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3631" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) transport, cell envelope-cytoplasm" @@ -99380,9 +99380,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3632" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, nucleus-cytoplasm" @@ -99397,9 +99397,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3633" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, nucleus-cytoplasm" @@ -99414,9 +99414,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3634" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, nucleus-cytoplasm" @@ -99431,9 +99431,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3635" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, nucleus-cytoplasm" @@ -99448,9 +99448,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3636" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, nucleus-cytoplasm" @@ -99465,9 +99465,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3637" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, nucleus-cytoplasm" @@ -99482,9 +99482,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3638" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, nucleus-cytoplasm" @@ -99499,9 +99499,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3639" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, nucleus-cytoplasm" @@ -99516,9 +99516,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3640" - name: "diglyceride (1-16:0, 2-16:1) transport, nucleus-cytoplasm" @@ -99533,9 +99533,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3641" - name: "diglyceride (1-16:1, 2-16:1) transport, nucleus-cytoplasm" @@ -99550,9 +99550,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3642" - name: "diglyceride (1-18:0, 2-16:1) transport, nucleus-cytoplasm" @@ -99567,9 +99567,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3643" - name: "diglyceride (1-18:1, 2-16:1) transport, nucleus-cytoplasm" @@ -99584,9 +99584,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3644" - name: "diglyceride (1-16:0, 2-18:1) transport, nucleus-cytoplasm" @@ -99601,9 +99601,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3645" - name: "diglyceride (1-16:1, 2-18:1) transport, nucleus-cytoplasm" @@ -99618,9 +99618,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3646" - name: "diglyceride (1-18:0, 2-18:1) transport, nucleus-cytoplasm" @@ -99635,9 +99635,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3647" - name: "diglyceride (1-18:1, 2-18:1) transport, nucleus-cytoplasm" @@ -99652,9 +99652,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3648" - name: "H2O transport, cytoplasm-vacuolar membrane" @@ -99669,10 +99669,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3649" - name: "phosphate transport, cytoplasm-vacuolar membrane" @@ -99687,10 +99687,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR102871" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3650" - name: "H+ transport, cytoplasm-vacuolar membrane" @@ -99705,10 +99705,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3651" - name: "ATP transport, cytoplasm-vacuolar membrane" @@ -99723,10 +99723,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96140" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3652" - name: "ADP transport, cytoplasm-vacuolar membrane" @@ -99741,10 +99741,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95484" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95484" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3653" - name: "carbon dioxide transport, cytoplasm-vacuolar membrane" @@ -99759,10 +99759,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3654" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) transport, vacuolar membrane-cytoplasm" @@ -99777,9 +99777,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3655" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) transport, vacuolar membrane-cytoplasm" @@ -99794,9 +99794,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3656" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) transport, vacuolar membrane-cytoplasm" @@ -99811,9 +99811,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3657" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) transport, vacuolar membrane-cytoplasm" @@ -99828,9 +99828,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3658" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) transport, vacuolar membrane-cytoplasm" @@ -99845,9 +99845,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3659" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) transport, vacuolar membrane-cytoplasm" @@ -99862,9 +99862,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3660" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) transport, vacuolar membrane-cytoplasm" @@ -99879,9 +99879,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3661" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) transport, vacuolar membrane-cytoplasm" @@ -99896,9 +99896,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3662" - name: "H2O transport, cytoplasm-Golgi membrane" @@ -99913,10 +99913,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3663" - name: "phosphate transport, cytoplasm-Golgi membrane" @@ -99931,10 +99931,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR102871" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3664" - name: "H+ transport, cytoplasm-Golgi membrane" @@ -99949,10 +99949,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3665" - name: "carbon dioxide transport, cytoplasm-Golgi membrane" @@ -99967,10 +99967,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3666" - name: "ATP transport, cytoplasm-Golgi membrane" @@ -99985,10 +99985,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96140" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96140" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3667" - name: "ADP transport, cytoplasm-Golgi membrane" @@ -100003,10 +100003,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95484" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95484" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3668" - name: "H2O transport, cytoplasm-mitochondrial membrane" @@ -100021,10 +100021,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR98641" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR98641" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3669" - name: "carbon dioxide transport, cytoplasm-mitochondrial membrane" @@ -100039,10 +100039,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96810" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR96810" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3670" - name: "palmitoleoyl-CoA transport, cytoplasm-mitochondrial membrane" @@ -100057,9 +100057,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3671" - name: "oleoyl-CoA transport, cytoplasm-mitochondrial membrane" @@ -100074,10 +100074,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR128426" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR128426" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3672" - name: "diglyceride (1-16:0, 2-16:1) transport, mitochondrial membrane-cytoplasm" @@ -100092,9 +100092,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3673" - name: "diglyceride (1-16:1, 2-16:1) transport, mitochondrial membrane-cytoplasm" @@ -100109,9 +100109,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3674" - name: "diglyceride (1-18:0, 2-16:1) transport, mitochondrial membrane-cytoplasm" @@ -100126,9 +100126,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3675" - name: "diglyceride (1-18:1, 2-16:1) transport, mitochondrial membrane-cytoplasm" @@ -100143,9 +100143,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3676" - name: "diglyceride (1-16:0, 2-18:1) transport, mitochondrial membrane-cytoplasm" @@ -100160,9 +100160,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3677" - name: "diglyceride (1-16:1, 2-18:1) transport, mitochondrial membrane-cytoplasm" @@ -100177,9 +100177,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3678" - name: "palmitate transport, mitochondrial membrane-cytoplasm" @@ -100194,10 +100194,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99101" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99101" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3679" - name: "stearate transport, mitochondrial membrane-cytoplasm" @@ -100212,10 +100212,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99109" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99109" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3680" - name: "coenzyme A transport, mitochondrial membrane-cytoplasm" @@ -100230,10 +100230,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96815" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR96815" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3681" - name: "laurate transport, ER membrane-lipid particle" @@ -100248,10 +100248,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR135773" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR135773" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3682" - name: "myristate transport, ER membrane-lipid particle" @@ -100266,10 +100266,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR128297" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR128297" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3683" - name: "lignoceric acid transport, ER membrane-lipid particle" @@ -100284,10 +100284,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR128298" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR128298" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3684" - name: "cerotic acid transport, ER membrane-lipid particle" @@ -100302,10 +100302,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR136128" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR136128" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3685" - name: "TAG (1-16:0, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100320,9 +100320,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3686" - name: "TAG (1-16:0, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100337,9 +100337,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3687" - name: "TAG (1-16:0, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100354,9 +100354,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3688" - name: "TAG (1-16:0, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100371,9 +100371,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3689" - name: "TAG (1-16:1, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100388,9 +100388,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3690" - name: "TAG (1-16:1, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100405,9 +100405,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3691" - name: "TAG (1-16:1, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100422,9 +100422,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3692" - name: "TAG (1-16:1, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100439,9 +100439,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3693" - name: "TAG (1-18:0, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100456,9 +100456,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3694" - name: "TAG (1-18:0, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100473,9 +100473,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3695" - name: "TAG (1-18:0, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100490,9 +100490,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3696" - name: "TAG (1-18:0, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100507,9 +100507,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3697" - name: "TAG (1-18:1, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100524,9 +100524,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3698" - name: "TAG (1-18:1, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100541,9 +100541,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3699" - name: "TAG (1-18:1, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100558,9 +100558,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3700" - name: "TAG (1-18:1, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100575,9 +100575,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3701" - name: "TAG (1-16:0, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100592,9 +100592,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3702" - name: "TAG (1-16:0, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100609,9 +100609,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3703" - name: "TAG (1-16:0, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100626,9 +100626,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3704" - name: "TAG (1-16:0, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100643,9 +100643,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3705" - name: "TAG (1-16:1, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100660,9 +100660,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3706" - name: "TAG (1-16:1, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100677,9 +100677,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3707" - name: "TAG (1-16:1, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100694,9 +100694,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3708" - name: "TAG (1-16:1, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100711,9 +100711,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3709" - name: "TAG (1-18:0, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100728,9 +100728,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3710" - name: "TAG (1-18:0, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100745,9 +100745,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3711" - name: "TAG (1-18:0, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100762,9 +100762,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3712" - name: "TAG (1-18:0, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100779,9 +100779,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3713" - name: "TAG (1-18:1, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100796,9 +100796,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3714" - name: "TAG (1-18:1, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100813,9 +100813,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3715" - name: "TAG (1-18:1, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100830,9 +100830,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3716" - name: "TAG (1-18:1, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100847,9 +100847,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3717" - name: "episterol transport, ER membrane-lipid particle" @@ -100864,10 +100864,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR97944" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR97944" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3718" - name: "fecosterol transport, ER membrane-lipid particle" @@ -100882,10 +100882,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99529" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99529" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3719" - name: "lanosterol transport, ER membrane-lipid particle" @@ -100900,10 +100900,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101014" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101014" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3720" - name: "zymosterol transport, ER membrane-lipid particle" @@ -100918,10 +100918,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR105285" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR105285" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3721" - name: "ergosteryl palmitoleate transport, ER membrane-lipid particle" @@ -100936,9 +100936,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3722" - name: "ergosteryl oleate transport, ER membrane-lipid particle" @@ -100953,9 +100953,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3723" - name: "episteryl palmitoleate transport, ER membrane-lipid particle" @@ -100970,9 +100970,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3724" - name: "episteryl oleate transport, ER membrane-lipid particle" @@ -100987,9 +100987,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3725" - name: "fecosteryl palmitoleate transport, ER membrane-lipid particle" @@ -101004,9 +101004,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3726" - name: "fecosteryl oleate transport, ER membrane-lipid particle" @@ -101021,9 +101021,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3727" - name: "lanosteryl palmitoleate transport, ER membrane-lipid particle" @@ -101038,9 +101038,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3728" - name: "lanosteryl oleate transport, ER membrane-lipid particle" @@ -101055,9 +101055,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3729" - name: "zymosteryl palmitoleate transport, ER membrane-lipid particle" @@ -101072,9 +101072,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3730" - name: "zymosteryl oleate transport, ER membrane-lipid particle" @@ -101089,9 +101089,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3731" - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-lipid particle" @@ -101106,9 +101106,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3732" - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-lipid particle" @@ -101123,9 +101123,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3733" - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-lipid particle" @@ -101140,9 +101140,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3734" - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-lipid particle" @@ -101157,9 +101157,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3735" - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-lipid particle" @@ -101174,9 +101174,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3736" - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-lipid particle" @@ -101191,9 +101191,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3737" - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-lipid particle" @@ -101208,9 +101208,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3738" - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-lipid particle" @@ -101225,9 +101225,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3739" - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, ER membrane-lipid particle" @@ -101242,9 +101242,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3740" - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, ER membrane-lipid particle" @@ -101259,9 +101259,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3741" - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, ER membrane-lipid particle" @@ -101276,9 +101276,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3742" - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, ER membrane-lipid particle" @@ -101293,9 +101293,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3743" - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, ER membrane-lipid particle" @@ -101310,9 +101310,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3744" - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, ER membrane-lipid particle" @@ -101327,9 +101327,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3745" - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, ER membrane-lipid particle" @@ -101344,9 +101344,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3746" - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, ER membrane-lipid particle" @@ -101361,9 +101361,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3747" - name: "1-acylglycerophosphocholine (16:0) transport, ER membrane-lipid particle" @@ -101378,9 +101378,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3748" - name: "1-acylglycerophosphocholine (16:1) transport, ER membrane-lipid particle" @@ -101395,9 +101395,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3749" - name: "1-acylglycerophosphocholine (18:0) transport, ER membrane-lipid particle" @@ -101412,9 +101412,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3750" - name: "1-acylglycerophosphocholine (18:1) transport, ER membrane-lipid particle" @@ -101429,9 +101429,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3751" - name: "1-acylglycerophosphoethanolamine (16:0) transport, ER membrane-lipid particle" @@ -101446,9 +101446,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3752" - name: "1-acylglycerophosphoethanolamine (16:1) transport, ER membrane-lipid particle" @@ -101463,9 +101463,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3753" - name: "1-acylglycerophosphoethanolamine (18:0) transport, ER membrane-lipid particle" @@ -101480,9 +101480,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3754" - name: "1-acylglycerophosphoethanolamine (18:1) transport, ER membrane-lipid particle" @@ -101497,9 +101497,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3755" - name: "phosphatidate (1-16:0, 2-18:1) transport, lipid particle-ER membrane" @@ -101514,9 +101514,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3756" - name: "phosphatidate (1-16:1, 2-18:1) transport, lipid particle-ER membrane" @@ -101531,9 +101531,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3757" - name: "phosphatidate (1-18:0, 2-18:1) transport, lipid particle-ER membrane" @@ -101548,9 +101548,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3758" - name: "phosphatidate (1-18:1, 2-18:1) transport, lipid particle-ER membrane" @@ -101565,9 +101565,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3759" - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101582,9 +101582,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3760" - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101599,9 +101599,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3761" - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101616,9 +101616,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3762" - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101633,9 +101633,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3763" - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -101650,9 +101650,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3764" - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -101667,9 +101667,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3765" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101684,9 +101684,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3766" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101701,9 +101701,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3767" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101718,9 +101718,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3768" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101735,9 +101735,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3769" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -101752,9 +101752,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3770" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -101769,9 +101769,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3771" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -101786,9 +101786,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3772" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -101803,9 +101803,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3773" - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, mitochondrial membrane-ER membrane" @@ -101820,9 +101820,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3774" - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, mitochondrial membrane-ER membrane" @@ -101837,9 +101837,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3775" - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, mitochondrial membrane-ER membrane" @@ -101854,9 +101854,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3776" - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, mitochondrial membrane-ER membrane" @@ -101871,9 +101871,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3777" - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, mitochondrial membrane-ER membrane" @@ -101888,9 +101888,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3778" - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, mitochondrial membrane-ER membrane" @@ -101905,9 +101905,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3779" - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, mitochondrial membrane-ER membrane" @@ -101922,9 +101922,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3780" - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, mitochondrial membrane-ER membrane" @@ -101939,9 +101939,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3781" - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101956,9 +101956,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3782" - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101973,9 +101973,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3783" - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101990,9 +101990,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3784" - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -102007,9 +102007,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3785" - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -102024,9 +102024,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3786" - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -102041,9 +102041,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3787" - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -102058,9 +102058,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3788" - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -102075,9 +102075,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3789" - name: "diglyceride (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102092,9 +102092,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3790" - name: "diglyceride (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102109,9 +102109,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3791" - name: "diglyceride (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102126,9 +102126,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3792" - name: "diglyceride (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102143,9 +102143,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3793" - name: "diglyceride (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102160,9 +102160,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3794" - name: "diglyceride (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102177,9 +102177,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3795" - name: "diglyceride (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102194,9 +102194,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3796" - name: "diglyceride (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102211,9 +102211,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3797" - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102228,9 +102228,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3798" - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102245,9 +102245,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3799" - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102262,9 +102262,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3800" - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102279,9 +102279,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3801" - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102296,9 +102296,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3802" - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102313,9 +102313,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3803" - name: "phosphatidate (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102330,9 +102330,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3804" - name: "phosphatidate (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102347,9 +102347,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3805" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102364,9 +102364,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3806" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102381,9 +102381,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3807" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102398,9 +102398,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3808" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102415,9 +102415,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3809" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102432,9 +102432,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3810" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102449,9 +102449,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3811" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102466,9 +102466,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3812" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102483,9 +102483,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3813" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102500,9 +102500,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3814" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102517,9 +102517,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3815" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102534,9 +102534,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3816" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102551,9 +102551,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3817" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102568,9 +102568,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3818" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102585,9 +102585,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3819" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102602,9 +102602,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3820" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102619,9 +102619,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3821" - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, Golgi membrane-ER membrane" @@ -102636,9 +102636,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3822" - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, Golgi membrane-ER membrane" @@ -102653,9 +102653,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3823" - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, Golgi membrane-ER membrane" @@ -102670,9 +102670,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3824" - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, Golgi membrane-ER membrane" @@ -102687,9 +102687,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3825" - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, Golgi membrane-ER membrane" @@ -102704,9 +102704,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3826" - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, Golgi membrane-ER membrane" @@ -102721,9 +102721,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3827" - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, Golgi membrane-ER membrane" @@ -102738,9 +102738,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3828" - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, Golgi membrane-ER membrane" @@ -102755,9 +102755,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3829" - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102772,9 +102772,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3830" - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102789,9 +102789,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3831" - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102806,9 +102806,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3832" - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102823,9 +102823,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3833" - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -102840,9 +102840,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3834" - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -102857,9 +102857,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3835" - name: "phosphatidate (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -102874,9 +102874,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3836" - name: "phosphatidate (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -102891,9 +102891,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3837" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102908,9 +102908,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3838" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102925,9 +102925,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3839" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102942,9 +102942,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3840" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102959,9 +102959,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3841" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -102976,9 +102976,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3842" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -102993,9 +102993,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3843" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -103010,9 +103010,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3844" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -103027,9 +103027,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3845" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -103044,9 +103044,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3846" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -103061,9 +103061,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3847" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -103078,9 +103078,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3848" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -103095,9 +103095,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3849" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -103112,9 +103112,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3850" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -103129,9 +103129,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3851" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -103146,9 +103146,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3852" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -103163,9 +103163,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3853" - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103180,9 +103180,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3854" - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103197,9 +103197,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3855" - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103214,9 +103214,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3856" - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103231,9 +103231,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3857" - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103248,9 +103248,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3858" - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103265,9 +103265,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3859" - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103282,9 +103282,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3860" - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103299,9 +103299,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3861" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103316,9 +103316,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3862" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103333,9 +103333,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3863" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103350,9 +103350,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3864" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103367,9 +103367,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3865" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103384,9 +103384,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3866" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103401,9 +103401,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3867" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103418,9 +103418,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3868" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103435,9 +103435,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3869" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103452,9 +103452,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3870" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103469,9 +103469,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3871" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103486,9 +103486,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3872" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103503,9 +103503,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3873" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103520,9 +103520,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3874" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103537,9 +103537,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3875" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103554,9 +103554,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3876" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103571,9 +103571,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3877" - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103588,9 +103588,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3878" - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103605,9 +103605,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3879" - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103622,9 +103622,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3880" - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103639,9 +103639,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3881" - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103656,9 +103656,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3882" - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103673,9 +103673,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3883" - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103690,9 +103690,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3884" - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103707,9 +103707,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3885" - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103724,9 +103724,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3886" - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103741,9 +103741,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3887" - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103758,9 +103758,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3888" - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103775,9 +103775,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3889" - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103792,9 +103792,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3890" - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103809,9 +103809,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3891" - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103826,9 +103826,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3892" - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103843,9 +103843,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3893" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103860,9 +103860,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3894" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103877,9 +103877,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3895" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103894,9 +103894,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3896" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103911,9 +103911,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3897" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103928,9 +103928,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3898" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103945,9 +103945,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3899" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103962,9 +103962,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3900" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103979,9 +103979,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3901" - name: "lignoceric acid transport, cell envelope-ER membrane" @@ -103996,10 +103996,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR128298" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR128298" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3902" - name: "cerotic acid transport, cell envelope-ER membrane" @@ -104014,10 +104014,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR136128" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR136128" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3903" - name: "phosphatidate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" @@ -104032,9 +104032,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3904" - name: "phosphatidate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" @@ -104049,9 +104049,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3905" - name: "phosphatidate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" @@ -104066,9 +104066,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3906" - name: "phosphatidate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" @@ -104083,9 +104083,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3907" - name: "phosphatidate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" @@ -104100,9 +104100,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3908" - name: "phosphatidate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" @@ -104117,9 +104117,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3909" - name: "phosphatidate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" @@ -104134,9 +104134,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3910" - name: "phosphatidate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" @@ -104151,9 +104151,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3911" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" @@ -104168,9 +104168,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3912" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" @@ -104185,9 +104185,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3913" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" @@ -104202,9 +104202,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3914" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" @@ -104219,9 +104219,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3915" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" @@ -104236,9 +104236,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3916" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" @@ -104253,9 +104253,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3917" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" @@ -104270,9 +104270,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3918" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" @@ -104287,9 +104287,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3919" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" @@ -104304,9 +104304,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3920" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" @@ -104321,9 +104321,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3921" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" @@ -104338,9 +104338,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3922" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" @@ -104355,9 +104355,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3923" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" @@ -104372,9 +104372,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3924" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" @@ -104389,9 +104389,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3925" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" @@ -104406,9 +104406,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3926" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" @@ -104423,9 +104423,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3927" - name: "zymosteryl palmitoleate transport, ER membrane-cell envelope" @@ -104440,9 +104440,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3928" - name: "zymosteryl oleate transport, ER membrane-cell envelope" @@ -104457,9 +104457,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3929" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-nucleus" @@ -104474,9 +104474,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3930" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-nucleus" @@ -104491,9 +104491,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3931" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-nucleus" @@ -104508,9 +104508,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3932" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-nucleus" @@ -104525,9 +104525,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3933" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-nucleus" @@ -104542,9 +104542,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3934" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-nucleus" @@ -104559,9 +104559,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3935" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-nucleus" @@ -104576,9 +104576,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3936" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-nucleus" @@ -104593,9 +104593,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3937" - name: "lignoceric acid transport, ER membrane-ER" @@ -104610,10 +104610,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR128298" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR128298" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3938" - name: "cerotic acid transport, ER membrane-ER" @@ -104628,10 +104628,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR136128" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR136128" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3939" - name: "ergosterol transport, ER-ER membrane" @@ -104646,10 +104646,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR97950" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR97950" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3940" - name: "phosphate transport, ER-ER membrane" @@ -104664,10 +104664,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR102871" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3941" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) transport, vacuolar membrane-Golgi membrane" @@ -104682,9 +104682,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3942" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) transport, vacuolar membrane-Golgi membrane" @@ -104699,9 +104699,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3943" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) transport, vacuolar membrane-Golgi membrane" @@ -104716,9 +104716,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3944" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) transport, vacuolar membrane-Golgi membrane" @@ -104733,9 +104733,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3945" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) transport, vacuolar membrane-Golgi membrane" @@ -104750,9 +104750,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3946" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) transport, vacuolar membrane-Golgi membrane" @@ -104767,9 +104767,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3947" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) transport, vacuolar membrane-Golgi membrane" @@ -104784,9 +104784,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3948" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) transport, vacuolar membrane-Golgi membrane" @@ -104801,9 +104801,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3949" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) transport, vacuolar membrane-cell envelope" @@ -104818,9 +104818,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3950" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) transport, vacuolar membrane-cell envelope" @@ -104835,9 +104835,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3951" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) transport, vacuolar membrane-cell envelope" @@ -104852,9 +104852,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3952" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) transport, vacuolar membrane-cell envelope" @@ -104869,9 +104869,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3953" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) transport, vacuolar membrane-cell envelope" @@ -104886,9 +104886,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3954" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) transport, vacuolar membrane-cell envelope" @@ -104903,9 +104903,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3955" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) transport, vacuolar membrane-cell envelope" @@ -104920,9 +104920,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3956" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) transport, vacuolar membrane-cell envelope" @@ -104937,9 +104937,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3957" - name: "H+ transport, mitochondrion-mitochondrial membrane" @@ -104954,10 +104954,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100765" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100765" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3958" - name: "glycerol 3-phosphate transport, mitochondrion-mitochondrial membrane" @@ -104972,10 +104972,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100308" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100308" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3959" - name: "CMP transport, mitochondrion-mitochondrial membrane" @@ -104990,10 +104990,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96806" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR96806" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3960" - name: "CTP transport, mitochondrion-mitochondrial membrane" @@ -105008,10 +105008,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96946" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR96946" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3961" - name: "phosphate transport, mitochondrion-mitochondrial membrane" @@ -105026,10 +105026,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR102871" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_3962" - name: "diphosphate transport, mitochondrion-mitochondrial membrane" @@ -105044,10 +105044,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR103112" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR103112" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_3973" - name: "ergosterol ester transport, ER membrane-cytoplasm" @@ -105062,9 +105062,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_3987" - name: "phosphatidyl-L-serine transport, ER membrane-cytoplasm" @@ -105079,10 +105079,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR103315" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR103315" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_3996" - name: "phosphatidylcholine transport, ER membrane-cytoplasm" @@ -105097,10 +105097,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR102406" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR102406" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4005" - name: "phosphatidylethanolamine transport, ER membrane-cytoplasm" @@ -105115,10 +105115,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR102505" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR102505" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4038" - name: "triglyceride transport, ER membrane-cytoplasm" @@ -105133,10 +105133,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104713" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR104713" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4040" - name: "heme a transport" @@ -105151,9 +105151,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4043" - name: "raffinose exchange" @@ -105167,9 +105167,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_raffin_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_raffin_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4044" - name: "melibiose exchange" @@ -105183,9 +105183,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_melib_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_melib_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4041" - name: "biomass pseudoreaction" @@ -105211,9 +105211,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000629" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000629" + - confidence_score: 1 - !!omap - id: "r_4046" - name: "non-growth associated maintenance reaction" @@ -105231,10 +105231,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ATPM" - - sbo: "SBO:0000630" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ATPM" + - sbo: "SBO:0000630" + - confidence_score: 0 - !!omap - id: "r_4047" - name: "protein pseudoreaction" @@ -105288,9 +105288,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4048" - name: "carbohydrate pseudoreaction" @@ -105309,9 +105309,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4049" - name: "RNA pseudoreaction" @@ -105329,9 +105329,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4050" - name: "DNA pseudoreaction" @@ -105349,9 +105349,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4051" - name: "ceramide transport" @@ -105366,9 +105366,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4052" - name: "inositol phosphomannosylinositol phosphoceramide transport" @@ -105383,9 +105383,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4053" - name: "inositol-P-ceramide transport" @@ -105400,9 +105400,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4054" - name: "mannosylinositol phosphorylceramide transport" @@ -105417,9 +105417,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4055" - name: "long-chain base transport" @@ -105434,9 +105434,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4056" - name: "long-chain base phosphate transport" @@ -105451,9 +105451,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4057" - name: "phosphatidate transport" @@ -105468,9 +105468,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4058" - name: "diglyceride transport" @@ -105485,9 +105485,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4059" - name: "sn-2-acyl-1-lysophosphatidylinositol transport" @@ -105502,9 +105502,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4060" - name: "phosphatidylglycerol transport" @@ -105519,9 +105519,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4061" - name: "cardiolipin transport" @@ -105536,9 +105536,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4062" - name: "lipid backbone exchange" @@ -105552,8 +105552,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000632" + - ec-code: "" + - sbo: "SBO:0000632" - !!omap - id: "r_4063" - name: "lipid backbone pseudoreaction" @@ -105575,9 +105575,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4064" - name: "lipid chain exchange" @@ -105591,8 +105591,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000632" + - ec-code: "" + - sbo: "SBO:0000632" - !!omap - id: "r_4065" - name: "lipid chain pseudoreaction" @@ -105610,9 +105610,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4066" - name: "ceramide-1 (C24) [Golgi] SLIME rxn" @@ -105629,9 +105629,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4067" - name: "ceramide-1 (C26) [Golgi] SLIME rxn" @@ -105648,9 +105648,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4068" - name: "ceramide-2 (C24) [Golgi] SLIME rxn" @@ -105667,9 +105667,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4069" - name: "ceramide-2 (C26) [Golgi] SLIME rxn" @@ -105686,9 +105686,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4070" - name: "ceramide-2' (C24) [Golgi] SLIME rxn" @@ -105705,9 +105705,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4071" - name: "ceramide-2' (C26) [Golgi] SLIME rxn" @@ -105724,9 +105724,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4072" - name: "ceramide-3 (C24) [Golgi] SLIME rxn" @@ -105743,9 +105743,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4073" - name: "ceramide-3 (C26) [Golgi] SLIME rxn" @@ -105762,9 +105762,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4074" - name: "ceramide-4 (C24) [Golgi] SLIME rxn" @@ -105781,9 +105781,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4075" - name: "ceramide-4 (C26) [Golgi] SLIME rxn" @@ -105800,9 +105800,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4076" - name: "phytosphingosine [endoplasmic reticulum] SLIME rxn" @@ -105818,9 +105818,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4077" - name: "phytosphingosine 1-phosphate [endoplasmic reticulum] SLIME rxn" @@ -105836,9 +105836,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4078" - name: "sphinganine [endoplasmic reticulum] SLIME rxn" @@ -105854,9 +105854,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4079" - name: "sphinganine 1-phosphate [endoplasmic reticulum] SLIME rxn" @@ -105872,9 +105872,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4080" - name: "phosphatidate (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105891,9 +105891,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4081" - name: "phosphatidate (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105910,9 +105910,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4082" - name: "phosphatidate (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105928,9 +105928,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4083" - name: "phosphatidate (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105947,9 +105947,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4084" - name: "phosphatidate (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105966,9 +105966,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4085" - name: "phosphatidate (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105985,9 +105985,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4086" - name: "phosphatidate (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106004,9 +106004,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4087" - name: "phosphatidate (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106022,9 +106022,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4088" - name: "diglyceride (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106041,9 +106041,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4089" - name: "diglyceride (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106060,9 +106060,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4090" - name: "diglyceride (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106078,9 +106078,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4091" - name: "diglyceride (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106097,9 +106097,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4092" - name: "diglyceride (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106116,9 +106116,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4093" - name: "diglyceride (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106135,9 +106135,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4094" - name: "diglyceride (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106154,9 +106154,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4095" - name: "diglyceride (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106172,9 +106172,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4096" - name: "sn-2-acyl-1-lysophosphatidylinositol (16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106190,9 +106190,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4097" - name: "sn-2-acyl-1-lysophosphatidylinositol (18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106208,9 +106208,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4098" - name: "phosphatidylglycerol (1-16:0, 2-16:1) [mitochondrial membrane] SLIME rxn" @@ -106227,9 +106227,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4099" - name: "phosphatidylglycerol (1-16:1, 2-16:1) [mitochondrial membrane] SLIME rxn" @@ -106245,9 +106245,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4100" - name: "phosphatidylglycerol (1-18:0, 2-16:1) [mitochondrial membrane] SLIME rxn" @@ -106264,9 +106264,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4101" - name: "phosphatidylglycerol (1-18:1, 2-16:1) [mitochondrial membrane] SLIME rxn" @@ -106283,9 +106283,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4102" - name: "phosphatidylglycerol (1-16:0, 2-18:1) [mitochondrial membrane] SLIME rxn" @@ -106302,9 +106302,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4103" - name: "phosphatidylglycerol (1-16:1, 2-18:1) [mitochondrial membrane] SLIME rxn" @@ -106321,9 +106321,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4104" - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106340,9 +106340,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4105" - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106359,9 +106359,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4106" - name: "cardiolipin (1-16:0, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106379,9 +106379,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4107" - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106399,9 +106399,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4108" - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106419,9 +106419,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4109" - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106439,9 +106439,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4110" - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106458,9 +106458,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4111" - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106476,9 +106476,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4112" - name: "cardiolipin (1-16:1, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106495,9 +106495,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4113" - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106514,9 +106514,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4114" - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106534,9 +106534,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4115" - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106553,9 +106553,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4116" - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106573,9 +106573,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4117" - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106592,9 +106592,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4118" - name: "cardiolipin (1-18:0, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106611,9 +106611,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4119" - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106631,9 +106631,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4120" - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106652,9 +106652,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4121" - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106672,9 +106672,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4122" - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106692,9 +106692,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4123" - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106711,9 +106711,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4124" - name: "cardiolipin (1-18:1, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106731,9 +106731,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4125" - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106750,9 +106750,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4126" - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106770,9 +106770,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4127" - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106789,9 +106789,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4128" - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106809,9 +106809,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4129" - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106829,9 +106829,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4130" - name: "cardiolipin (1-16:0, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106850,9 +106850,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4131" - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106870,9 +106870,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4132" - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106889,9 +106889,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4133" - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106909,9 +106909,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4134" - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106929,9 +106929,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4135" - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106948,9 +106948,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4136" - name: "cardiolipin (1-16:1, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106968,9 +106968,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4137" - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106987,9 +106987,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4138" - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107007,9 +107007,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4139" - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107026,9 +107026,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4140" - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -107046,9 +107046,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4141" - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -107065,9 +107065,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4142" - name: "cardiolipin (1-18:1, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -107085,9 +107085,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4143" - name: "cardiolipin (1-18:1, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -107104,9 +107104,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4144" - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107123,9 +107123,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4145" - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107142,9 +107142,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4146" - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107162,9 +107162,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4147" - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107181,9 +107181,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4148" - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107201,9 +107201,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4149" - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107220,9 +107220,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4150" - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107239,9 +107239,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4151" - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107258,9 +107258,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4152" - name: "Cytochrome c apocytochrome-c-lyase" @@ -107276,12 +107276,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.4.1.17; 4.4.1.-" - - bigg.reaction: "HEMELm" - - kegg.reaction: "R02480" - - metanetx.reaction: "MNXR138510" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.4.1.17; 4.4.1.-" + - bigg.reaction: "HEMELm" + - kegg.reaction: "R02480" + - metanetx.reaction: "MNXR138510" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4153" - name: "(R)-Acetoin:NAD+ oxidoreductase" @@ -107299,12 +107299,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.303" - - bigg.reaction: "ACTD" - - kegg.reaction: "R02855" - - metanetx.reaction: "MNXR95419" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.303" + - bigg.reaction: "ACTD" + - kegg.reaction: "R02855" + - metanetx.reaction: "MNXR95419" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4154" - name: "Probable diacetyl reductase [(R)-acetoin forming] 2 (EC 1.1.1.303)" @@ -107322,11 +107322,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.303" - - kegg.reaction: "R02855" - - metanetx.reaction: "MNXR95419" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.303" + - kegg.reaction: "R02855" + - metanetx.reaction: "MNXR95419" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4155" - name: "Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial (Glu-AdT subunit B) (EC 6.3.5.-) (Cytochrome c oxidase assembly factor PET112)" @@ -107348,9 +107348,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.5.-" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.5.-" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4156" - name: "Methionine aminopeptidase 2 (MAP 2) (MetAP 2) (EC 3.4.11.18) (Peptidase M)" @@ -107367,9 +107367,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.11.18" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.4.11.18" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4157" - name: "ADP-ribose 1''-phosphate phosphatase (EC 3.1.3.84) (EC 3.2.2.-) ([Protein ADP-ribosylglutamate] hydrolase)" @@ -107386,9 +107386,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.84; 3.2.2.-" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.3.84; 3.2.2.-" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4158" - name: "NADPH2:quinone oxidoreductase" @@ -107406,11 +107406,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.6.5.5" - - kegg.reaction: "R02364" - - metanetx.reaction: "MNXR107466" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.6.5.5" + - kegg.reaction: "R02364" + - metanetx.reaction: "MNXR107466" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4159" - name: "UDP-N-acetylglucosamine transferase subunit ALG14 (Asparagine-linked glycosylation protein 14)" @@ -107428,11 +107428,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.141" - - kegg.reaction: "R05970" - - metanetx.reaction: "MNXR100208" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.141" + - kegg.reaction: "R05970" + - metanetx.reaction: "MNXR100208" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4160" - name: "ADP-ribose pyrophosphatase (EC 3.6.1.13) (ADP-ribose diphosphatase) (ADP-ribose phosphohydrolase) (Adenosine diphosphoribose pyrophosphatase) (ADPR-PPase)" @@ -107450,9 +107450,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.13" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.13" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4161" - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" @@ -107467,9 +107467,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4162" - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" @@ -107484,9 +107484,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4163" - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" @@ -107501,9 +107501,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4164" - name: "oxalate:CoA ligase (AMP-forming)" @@ -107522,11 +107522,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.-.-.-" - - kegg.reaction: "R01558" - - metanetx.reaction: "MNXR102232" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.-.-.-" + - kegg.reaction: "R01558" + - metanetx.reaction: "MNXR102232" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4165" - name: "Glucosidase 2 subunit alpha (EC 3.2.1.84) (Alpha-glucosidase II subunit alpha) (Glucosidase II subunit alpha) (Reversal of TOR2 lethality protein 2)" @@ -107543,11 +107543,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.84" - - kegg.reaction: "R05980" - - metanetx.reaction: "MNXR109971" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.84" + - kegg.reaction: "R05980" + - metanetx.reaction: "MNXR109971" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4166" - name: "Glucosidase 2 subunit alpha (EC 3.2.1.84) (Alpha-glucosidase II subunit alpha) (Glucosidase II subunit alpha) (Reversal of TOR2 lethality protein 2)" @@ -107564,11 +107564,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.84" - - kegg.reaction: "R05981" - - metanetx.reaction: "MNXR109972" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.84" + - kegg.reaction: "R05981" + - metanetx.reaction: "MNXR109972" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4167" - name: "Vacuolar cation-chloride cotransporter 1 (Vacuolar homolog of CCC family protein 1)" @@ -107587,9 +107587,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.3.7" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "3.6.3.7" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4168" - name: "Probable metabolite transport protein YBR241C" @@ -107604,9 +107604,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4169" - name: "Probable metabolite transport protein YBR241C" @@ -107621,9 +107621,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4170" - name: "UDP-N-acetyl-D-glucosamine:dolichyl-phosphate N-acetyl-D-glucosamine phosphotransferase" @@ -107640,11 +107640,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.8.15" - - kegg.reaction: "R01007" - - metanetx.reaction: "MNXR106786" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.8.15" + - kegg.reaction: "R01007" + - metanetx.reaction: "MNXR106786" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4171" - name: "(5-glutamyl)-peptide:amino-acid 5-glutamyltransferase" @@ -107661,12 +107661,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.-.-" - - bigg.reaction: "GTHRDH_syn" - - kegg.reaction: "R03916" - - metanetx.reaction: "MNXR108524" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.4.-.-" + - bigg.reaction: "GTHRDH_syn" + - kegg.reaction: "R03916" + - metanetx.reaction: "MNXR108524" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4172" - name: "P-type cation-transporting ATPase (EC 3.6.3.3) (Cadmium resistance protein 2) (Cadmium-translocating P-type ATPase) (Cd(2+)-exporting ATPase)" @@ -107686,10 +107686,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.3.3" - - bigg.reaction: "CD2abc1" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "3.6.3.3" + - bigg.reaction: "CD2abc1" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4173" - name: "L-cysteine:sulfur-acceptor sulfurtransferase" @@ -107706,11 +107706,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.8.1.7" - - kegg.reaction: "R11528" - - metanetx.reaction: "MNXR114822" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.8.1.7" + - kegg.reaction: "R11528" + - metanetx.reaction: "MNXR114822" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4174" - name: "Probable ATP-dependent permease" @@ -107725,9 +107725,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4175" - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" @@ -107745,9 +107745,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4176" - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" @@ -107765,9 +107765,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4177" - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" @@ -107785,12 +107785,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-" - - bigg.reaction: "3MBZALDH" - - kegg.reaction: "R05347" - - metanetx.reaction: "MNXR94914" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-" + - bigg.reaction: "3MBZALDH" + - kegg.reaction: "R05347" + - metanetx.reaction: "MNXR94914" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4178" - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" @@ -107808,9 +107808,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4179" - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" @@ -107828,10 +107828,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-" - - bigg.reaction: "4MBZALDH" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-" + - bigg.reaction: "4MBZALDH" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4180" - name: "Benzyl alcohol:NAD+ oxidoreductase" @@ -107849,12 +107849,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-" - - bigg.reaction: "BZALDH" - - kegg.reaction: "R01763" - - metanetx.reaction: "MNXR96362" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-" + - bigg.reaction: "BZALDH" + - kegg.reaction: "R01763" + - metanetx.reaction: "MNXR96362" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4181" - name: "Manganese-transporting ATPase 1 (EC 3.6.3.-)" @@ -107874,9 +107874,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.3.-" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "3.6.3.-" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4183" - name: "D-Mannitol:NAD+ 2-oxidoreductase" @@ -107894,12 +107894,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-" - - bigg.reaction: "MNLDH2" - - kegg.reaction: "R00868" - - metanetx.reaction: "MNXR101675" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-" + - bigg.reaction: "MNLDH2" + - kegg.reaction: "R00868" + - metanetx.reaction: "MNXR101675" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4184" - name: "4-hydroxy-4-methyl-2-oxoglutarate pyruvate-lyase (pyruvate-forming)" @@ -107914,11 +107914,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.3.17; 4.1.1.3" - - kegg.reaction: "R00008" - - metanetx.reaction: "MNXR106336" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.3.17; 4.1.1.3" + - kegg.reaction: "R00008" + - metanetx.reaction: "MNXR106336" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4185" - name: "oxaloacetate carboxy-lyase (pyruvate-forming)" @@ -107935,12 +107935,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.3.17; 4.1.1.3" - - bigg.reaction: "OAADC" - - kegg.reaction: "R00217" - - metanetx.reaction: "MNXR102097" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.3.17; 4.1.1.3" + - bigg.reaction: "OAADC" + - kegg.reaction: "R00217" + - metanetx.reaction: "MNXR102097" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4186" - name: "L-methionine:thioredoxin-disulfide S-oxidoreductase" @@ -107959,11 +107959,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.8.4.11" - - kegg.reaction: "R07606" - - metanetx.reaction: "MNXR101484" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.8.4.11" + - kegg.reaction: "R07606" + - metanetx.reaction: "MNXR101484" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4187" - name: "L-proline:tRNA(Pro) ligase (AMP-forming)" @@ -107982,11 +107982,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.1.1.15" - - kegg.reaction: "R03661" - - metanetx.reaction: "MNXR103208" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.1.1.15" + - kegg.reaction: "R03661" + - metanetx.reaction: "MNXR103208" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4188" - name: "Glutathione-specific gamma-glutamylcyclotransferase (Gamma-GCG) (EC 4.3.2.-)" @@ -108002,11 +108002,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.3.2.-" - - bigg.reaction: "GGCLUT2" - - kegg.reaction: "R11861" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.3.2.-" + - bigg.reaction: "GGCLUT2" + - kegg.reaction: "R11861" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4189" - name: "4a-hydroxytetrahydrobiopterin hydro-lyase" @@ -108022,11 +108022,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.96" - - kegg.reaction: "R04734" - - metanetx.reaction: "MNXR143540" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.2.1.96" + - kegg.reaction: "R04734" + - metanetx.reaction: "MNXR143540" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4190" - name: "superoxide:superoxide oxidoreductase" @@ -108043,12 +108043,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.15.1.1" - - bigg.reaction: "SPODMm" - - kegg.reaction: "R00275" - - metanetx.reaction: "MNXR104498" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.15.1.1" + - bigg.reaction: "SPODMm" + - kegg.reaction: "R00275" + - metanetx.reaction: "MNXR104498" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4191" - name: "2-Deoxy-D-glucose 6-phosphate phosphohydrolase" @@ -108065,12 +108065,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.68" - - bigg.reaction: "2DOXG6PP" - - kegg.reaction: "R02587" - - metanetx.reaction: "MNXR94794" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.3.68" + - bigg.reaction: "2DOXG6PP" + - kegg.reaction: "R02587" + - metanetx.reaction: "MNXR94794" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4192" - name: "Cytochrome c lysine N-methyltransferase 1 (EC 2.1.1.59)" @@ -108088,11 +108088,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.59" - - kegg.reaction: "R03875" - - metanetx.reaction: "MNXR108494" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.1.59" + - kegg.reaction: "R03875" + - metanetx.reaction: "MNXR108494" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4193" - name: "S-Adenosyl-L-methionine:histone-L-lysine N6-methyltransferase" @@ -108110,11 +108110,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.43" - - kegg.reaction: "R03938" - - metanetx.reaction: "MNXR108541" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.1.43" + - kegg.reaction: "R03938" + - metanetx.reaction: "MNXR108541" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4194" - name: "Zinc transporter YKE4" @@ -108129,9 +108129,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4195" - name: "Zinc transporter YKE4" @@ -108146,9 +108146,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4196" - name: "NADH:ferricytochrome-b5 oxidoreductase" @@ -108165,11 +108165,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.6.2.2" - - kegg.reaction: "R00100" - - metanetx.reaction: "MNXR106388" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.6.2.2" + - kegg.reaction: "R00100" + - metanetx.reaction: "MNXR106388" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4197" - name: "NADH-cytochrome b5 reductase 1 (EC 1.6.2.2) (Microsomal cytochrome b reductase) (P35)" @@ -108187,12 +108187,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.6.2.2" - - bigg.reaction: "FCYTOB5OXR_m" - - kegg.reaction: "R00100" - - metanetx.reaction: "MNXR106388" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.6.2.2" + - bigg.reaction: "FCYTOB5OXR_m" + - kegg.reaction: "R00100" + - metanetx.reaction: "MNXR106388" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4198" - name: "Benzil reductase ((S)-benzoin forming) IRC24 (EC 1.1.1.320) (Increased recombination centers protein 24)" @@ -108210,9 +108210,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.320" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.320" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4199" - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" @@ -108229,11 +108229,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.18" - - kegg.reaction: "R03522" - - metanetx.reaction: "MNXR125877" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.18" + - kegg.reaction: "R03522" + - metanetx.reaction: "MNXR125877" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4200" - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" @@ -108250,11 +108250,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.18" - - kegg.reaction: "R03522" - - metanetx.reaction: "MNXR125877" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.18" + - kegg.reaction: "R03522" + - metanetx.reaction: "MNXR125877" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4201" - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" @@ -108271,11 +108271,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.18" - - kegg.reaction: "R03522" - - metanetx.reaction: "MNXR125877" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.18" + - kegg.reaction: "R03522" + - metanetx.reaction: "MNXR125877" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4202" - name: "L-methionine:oxidized-thioredoxin S-oxidoreductase" @@ -108294,12 +108294,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.8.4.14" - - bigg.reaction: "METSOXR1" - - kegg.reaction: "R02025" - - metanetx.reaction: "MNXR101484" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.8.4.14" + - bigg.reaction: "METSOXR1" + - kegg.reaction: "R02025" + - metanetx.reaction: "MNXR101484" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4203" - name: "Vacuolar aminopeptidase 1 (EC 3.4.11.22) (Aminopeptidase yscI) (Leucine aminopeptidase IV) (LAPIV) (Lysosomal aminopeptidase III) (Polypeptidase) (Vacuolar aminopeptidase I)" @@ -108316,9 +108316,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.11.22" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.4.11.22" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4204" - name: "Vacuolar aminopeptidase 1 (EC 3.4.11.22) (Aminopeptidase yscI) (Leucine aminopeptidase IV) (LAPIV) (Lysosomal aminopeptidase III) (Polypeptidase) (Vacuolar aminopeptidase I)" @@ -108335,9 +108335,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.11.22" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.4.11.22" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4205" - name: "5-oxo-L-proline amidohydrolase (ATP-hydrolysing)" @@ -108357,12 +108357,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.2.9" - - bigg.reaction: "OPAH" - - kegg.reaction: "R00251" - - metanetx.reaction: "MNXR138674" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.2.9" + - bigg.reaction: "OPAH" + - kegg.reaction: "R00251" + - metanetx.reaction: "MNXR138674" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4206" - name: "threo-3-hydroxy-L-aspartate ammonia-lyase" @@ -108378,11 +108378,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.3.1.16" - - kegg.reaction: "R05758" - - metanetx.reaction: "MNXR109814" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.3.1.16" + - kegg.reaction: "R05758" + - metanetx.reaction: "MNXR109814" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4207" - name: "Glutathione S-transferase omega-like 2 (EC 2.5.1.18) (Extracellular mutant protein 4) (Glutathione-dependent dehydroascorbate reductase) (EC 1.8.5.1)" @@ -108399,11 +108399,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.18" - - kegg.reaction: "R03522" - - metanetx.reaction: "MNXR125877" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.18" + - kegg.reaction: "R03522" + - metanetx.reaction: "MNXR125877" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4208" - name: "glutathione:dehydroascorbate oxidoreductase" @@ -108420,12 +108420,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.18; 1.8.5.1" - - bigg.reaction: "GTHDH" - - kegg.reaction: "R01108" - - metanetx.reaction: "MNXR138490" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.18; 1.8.5.1" + - bigg.reaction: "GTHDH" + - kegg.reaction: "R01108" + - metanetx.reaction: "MNXR138490" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4209" - name: "Glutathione S-transferase omega-like 2 (EC 2.5.1.18) (Extracellular mutant protein 4) (Glutathione-dependent dehydroascorbate reductase) (EC 1.8.5.1)" @@ -108442,11 +108442,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.18; 1.8.5.1" - - kegg.reaction: "R01108" - - metanetx.reaction: "MNXR138490" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.18; 1.8.5.1" + - kegg.reaction: "R01108" + - metanetx.reaction: "MNXR138490" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4210" - name: "urea hydro-lyase (cyanamide-forming)" @@ -108462,11 +108462,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.69" - - kegg.reaction: "R00778" - - metanetx.reaction: "MNXR106683" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.2.1.69" + - kegg.reaction: "R00778" + - metanetx.reaction: "MNXR106683" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4211" - name: "D-ribose 5-phosphate,D-glyceraldehyde 3-phosphate pyridoxal 5-phosphate-lyase (glutamine-hydrolyzing)" @@ -108487,11 +108487,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.3.3.6; 3.5.1.2" - - kegg.reaction: "R10089" - - metanetx.reaction: "MNXR140225" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.3.3.6; 3.5.1.2" + - kegg.reaction: "R10089" + - metanetx.reaction: "MNXR140225" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4212" - name: "D-ribulose 5-phosphate,D-glyceraldehyde 3-phosphate pyridoxal 5-phosphate-lyase" @@ -108512,12 +108512,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.3.3.6; 3.5.1.2" - - bigg.reaction: "PYDXS" - - kegg.reaction: "R07456" - - metanetx.reaction: "MNXR103369" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.3.3.6; 3.5.1.2" + - bigg.reaction: "PYDXS" + - kegg.reaction: "R07456" + - metanetx.reaction: "MNXR103369" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4214" - name: "L-cysteinylglycine dipeptidase" @@ -108534,12 +108534,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.13.-" - - bigg.reaction: "AMPTASECG" - - kegg.reaction: "R00899" - - metanetx.reaction: "MNXR95828" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.4.13.-" + - bigg.reaction: "AMPTASECG" + - kegg.reaction: "R00899" + - metanetx.reaction: "MNXR95828" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4215" - name: "Cys-Gly metallodipeptidase DUG1 (EC 3.4.13.-) (Deficient in utilization of glutathione protein 1) (GSH degradosomal complex subunit DUG1)" @@ -108556,11 +108556,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.13.-" - - kegg.reaction: "R04951" - - metanetx.reaction: "MNXR109244" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.4.13.-" + - kegg.reaction: "R04951" + - metanetx.reaction: "MNXR109244" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4216" - name: "riboflavin-5-phosphate phosphohydrolase" @@ -108577,12 +108577,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.2" - - bigg.reaction: "ACP1_FMN" - - kegg.reaction: "R00548" - - metanetx.reaction: "MNXR95393" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.3.2" + - bigg.reaction: "ACP1_FMN" + - kegg.reaction: "R00548" + - metanetx.reaction: "MNXR95393" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4217" - name: "Fe(II):oxygen oxidoreductase; Fe2+:oxygen oxidoreductase" @@ -108600,11 +108600,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.16.3.1" - - kegg.reaction: "R00078" - - metanetx.reaction: "MNXR99561" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.16.3.1" + - kegg.reaction: "R00078" + - metanetx.reaction: "MNXR99561" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4218" - name: "D-aminoacyl-tRNA deacylase (DTD) (EC 3.1.1.96) (D-tyrosyl-tRNA(Tyr) deacylase) (Gly-tRNA(Ala) deacylase) (EC 3.1.1.-)" @@ -108622,9 +108622,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.96; 3.1.1.-" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.1.96; 3.1.1.-" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4219" - name: "D-aminoacyl-tRNA deacylase (DTD) (EC 3.1.1.96) (D-tyrosyl-tRNA(Tyr) deacylase) (Gly-tRNA(Ala) deacylase) (EC 3.1.1.-)" @@ -108642,9 +108642,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.96; 3.1.1.-" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.1.96; 3.1.1.-" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4220" - name: "4-nitrophenyl phosphate phosphohydrolase" @@ -108662,11 +108662,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.41" - - kegg.reaction: "R03024" - - metanetx.reaction: "MNXR107896" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.3.41" + - kegg.reaction: "R03024" + - metanetx.reaction: "MNXR107896" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4221" - name: "D-Iditol:NAD+ 2-oxidoreductase" @@ -108684,12 +108684,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.14" - - bigg.reaction: "RE1317C" - - kegg.reaction: "R02896" - - metanetx.reaction: "MNXR107809" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.14" + - bigg.reaction: "RE1317C" + - kegg.reaction: "R02896" + - metanetx.reaction: "MNXR107809" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4222" - name: "ATP:alpha-D-galactose 1-phosphotransferase" @@ -108707,12 +108707,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GALK2" - - kegg.reaction: "R01092" - - metanetx.reaction: "MNXR99985" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "GALK2" + - kegg.reaction: "R01092" + - metanetx.reaction: "MNXR99985" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4223" - name: "3-Hydroxy-2-methylpropanoyl-CoA hydrolase" @@ -108730,11 +108730,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.4" - - kegg.reaction: "R03352" - - metanetx.reaction: "MNXR108112" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.2.4" + - kegg.reaction: "R03352" + - metanetx.reaction: "MNXR108112" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4224" - name: "Sodium transport ATPase 5 (EC 3.6.3.7)" @@ -108754,10 +108754,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.3.7" - - bigg.reaction: "NAabcO" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "3.6.3.7" + - bigg.reaction: "NAabcO" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4225" - name: "Broad-range acid phosphatase DET1 (EC 3.1.3.-) (Decreased ergosterol transport protein 1)" @@ -108777,9 +108777,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "3.1.3.-" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4226" - name: "L-Alanine:2-oxoglutarate aminotransferase" @@ -108796,12 +108796,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.2" - - bigg.reaction: "ALATA_L" - - kegg.reaction: "R00258" - - metanetx.reaction: "MNXR95698" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.6.1.2" + - bigg.reaction: "ALATA_L" + - kegg.reaction: "R00258" + - metanetx.reaction: "MNXR95698" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4227" - name: "2-phenylacetamide amidohydrolase" @@ -108818,12 +108818,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.4" - - bigg.reaction: "AMID2" - - kegg.reaction: "R02540" - - metanetx.reaction: "MNXR95813" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.1.4" + - bigg.reaction: "AMID2" + - kegg.reaction: "R02540" + - metanetx.reaction: "MNXR95813" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4228" - name: "Indole-3-acetamide amidohydrolase" @@ -108840,12 +108840,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.4" - - bigg.reaction: "AMID3" - - kegg.reaction: "R03096" - - metanetx.reaction: "MNXR95814" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.1.4" + - bigg.reaction: "AMID3" + - kegg.reaction: "R03096" + - metanetx.reaction: "MNXR95814" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4230" - name: "Probable amidase (EC 3.5.1.4)" @@ -108862,12 +108862,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.4" - - bigg.reaction: "AMID5" - - kegg.reaction: "R05551" - - metanetx.reaction: "MNXR95816" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.1.4" + - bigg.reaction: "AMID5" + - kegg.reaction: "R05551" + - metanetx.reaction: "MNXR95816" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4231" - name: "Acylamide aminohydrolase" @@ -108884,9 +108884,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.4" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.1.4" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4232" - name: "ATP:D-Gluconate 6-phosphotransferase" @@ -108904,12 +108904,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.12" - - bigg.reaction: "GNK" - - kegg.reaction: "R01737" - - metanetx.reaction: "MNXR100390" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.12" + - bigg.reaction: "GNK" + - kegg.reaction: "R01737" + - metanetx.reaction: "MNXR100390" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4233" - name: "S-Adenosyl-L-methionine:protein-C-terminal-S-farnesyl-L-cysteine O-methyltransferase" @@ -108926,11 +108926,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.100" - - kegg.reaction: "R04496" - - metanetx.reaction: "MNXR108926" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.1.100" + - kegg.reaction: "R04496" + - metanetx.reaction: "MNXR108926" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4234" - name: "Phosphatidylinositol N-acetylglucosaminyltransferase subunit GPI19 (GPI-GlcNAc transferase complex subunit GPI19) (GPI-GnT subunit GPI19) (EC 2.4.1.198)" @@ -108948,11 +108948,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.198" - - kegg.reaction: "R05916" - - metanetx.reaction: "MNXR109940" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.198" + - kegg.reaction: "R05916" + - metanetx.reaction: "MNXR109940" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4236" - name: "(R)-lactate hydro-lyase" @@ -108969,12 +108969,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.130" - - bigg.reaction: "GLYOX3" - - kegg.reaction: "R09796" - - metanetx.reaction: "MNXR100354" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.2.1.130" + - bigg.reaction: "GLYOX3" + - kegg.reaction: "R09796" + - metanetx.reaction: "MNXR100354" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4237" - name: "Calcium-transporting ATPase 2 (EC 3.6.3.8) (Vacuolar Ca(2+)-ATPase)" @@ -108994,9 +108994,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.3.8" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "3.6.3.8" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4238" - name: "Calcium-transporting ATPase 2 (EC 3.6.3.8) (Golgi Ca(2+)-ATPase)" @@ -109016,9 +109016,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.3.8" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "3.6.3.8" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4239" - name: "L-arginyl-tRNA(Arg):protein arginyltransferase" @@ -109036,11 +109036,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.2.8" - - kegg.reaction: "R03862" - - metanetx.reaction: "MNXR108483" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.2.8" + - kegg.reaction: "R03862" + - metanetx.reaction: "MNXR108483" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4240" - name: "Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3 (Oligosaccharyl transferase subunit STT3) (EC 2.4.99.18)" @@ -109058,11 +109058,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.99.18" - - kegg.reaction: "R05976" - - metanetx.reaction: "MNXR109968" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.99.18" + - kegg.reaction: "R05976" + - metanetx.reaction: "MNXR109968" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4241" - name: "Mannosyl-oligosaccharide glucosidase (EC 3.2.1.106) (Processing A-glucosidase I) (Glucosidase I)" @@ -109079,11 +109079,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.106" - - kegg.reaction: "R05979" - - metanetx.reaction: "MNXR109970" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.106" + - kegg.reaction: "R05979" + - metanetx.reaction: "MNXR109970" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4242" - name: "Initiation-specific alpha-1,6-mannosyltransferase (EC 2.4.1.232) (Outer chain elongation protein 1)" @@ -109101,11 +109101,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.232" - - kegg.reaction: "R08599" - - metanetx.reaction: "MNXR112120" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.232" + - kegg.reaction: "R08599" + - metanetx.reaction: "MNXR112120" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4243" - name: "Alpha-1,3/1,6-mannosyltransferase ALG2 (EC 2.4.1.132) (EC 2.4.1.257) (Asparagine-linked glycosylation protein 2) (GDP-Man:Man(1)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase) (GDP-Man:Man(1)GlcNAc(2)-PP-dolichol mannosyltransferase) (GDP-Man:Man(2)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase)" @@ -109123,11 +109123,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.132; 2.4.1.257" - - kegg.reaction: "R05973" - - metanetx.reaction: "MNXR109280" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.132; 2.4.1.257" + - kegg.reaction: "R05973" + - metanetx.reaction: "MNXR109280" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4244" - name: "GDP-D-mannose:D-Man-alpha-(1->3)-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-6-mannosyltransferase" @@ -109145,11 +109145,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.132; 2.4.1.257" - - kegg.reaction: "R06238" - - metanetx.reaction: "MNXR110084" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.132; 2.4.1.257" + - kegg.reaction: "R06238" + - metanetx.reaction: "MNXR110084" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4245" - name: "2-O-(6-phospho-alpha-D-mannosyl)-D-glycerate 6-phosphomannohydrolase" @@ -109166,11 +109166,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.24" - - kegg.reaction: "R09645" - - metanetx.reaction: "MNXR101397" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.24" + - kegg.reaction: "R09645" + - metanetx.reaction: "MNXR101397" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4246" - name: "Alpha-mannosidase (EC 3.2.1.24) (Alpha-D-mannoside mannohydrolase)" @@ -109187,9 +109187,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.24" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.24" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4247" - name: "ATP:L-threonyl,bicarbonate adenylyltransferase" @@ -109208,11 +109208,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.87" - - kegg.reaction: "R10463" - - metanetx.reaction: "MNXR113802" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.7.87" + - kegg.reaction: "R10463" + - metanetx.reaction: "MNXR113802" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4248" - name: "D-serine ammonia-lyase" @@ -109228,12 +109228,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.3.1.18" - - bigg.reaction: "SERD_D" - - kegg.reaction: "R00221" - - metanetx.reaction: "MNXR104338" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.3.1.18" + - bigg.reaction: "SERD_D" + - kegg.reaction: "R00221" + - metanetx.reaction: "MNXR104338" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4249" - name: "O3-acetyl-L-serine:hydrogen-sulfide 2-amino-2-carboxyethyltransferase; O3-acetyl-L-serine acetate-lyase (adding hydrogen sulfide)" @@ -109250,12 +109250,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.47" - - bigg.reaction: "CYSS_m" - - kegg.reaction: "R00897" - - metanetx.reaction: "MNXR97007" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.47" + - bigg.reaction: "CYSS_m" + - kegg.reaction: "R00897" + - metanetx.reaction: "MNXR97007" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4250" - name: "Dolichyl-diphosphate phosphohydrolase" @@ -109273,11 +109273,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.43" - - kegg.reaction: "R01004" - - metanetx.reaction: "MNXR106783" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.43" + - kegg.reaction: "R01004" + - metanetx.reaction: "MNXR106783" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4251" - name: "CTP:phosphatidate cytidyltransferase" @@ -109295,11 +109295,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.7.41" - - kegg.reaction: "R01799" - - metanetx.reaction: "MNXR107177" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.7.41" + - kegg.reaction: "R01799" + - metanetx.reaction: "MNXR107177" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4252" - name: "Thiamine thiazole synthase (Thiazole biosynthetic enzyme)" @@ -109318,11 +109318,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R10685" - - metanetx.reaction: "MNXR139808" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - kegg.reaction: "R10685" + - metanetx.reaction: "MNXR139808" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4253" - name: "dolichyl beta-D-glucosyl phosphate:D-Glc-alpha-(1->3)-D-Glc-alpha-(1->3)-D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,2-glucosyltransferase" @@ -109340,11 +109340,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.256" - - kegg.reaction: "R06264" - - metanetx.reaction: "MNXR110098" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.256" + - kegg.reaction: "R06264" + - metanetx.reaction: "MNXR110098" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4254" - name: "nitric oxide, NADH2:oxygen oxidoreductase" @@ -109363,12 +109363,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.12.17" - - bigg.reaction: "NODOx" - - kegg.reaction: "R05724" - - metanetx.reaction: "MNXR101996" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.14.12.17" + - bigg.reaction: "NODOx" + - kegg.reaction: "R05724" + - metanetx.reaction: "MNXR101996" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4255" - name: "nitric oxide, NADPH2:oxygen oxidoreductase" @@ -109387,12 +109387,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.12.17" - - bigg.reaction: "NODOy" - - kegg.reaction: "R05725" - - metanetx.reaction: "MNXR101997" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.14.12.17" + - bigg.reaction: "NODOy" + - kegg.reaction: "R05725" + - metanetx.reaction: "MNXR101997" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4256" - name: "Putative lipoate-protein ligase A (EC 6.3.1.20) (Altered inheritance rate of mitochondria protein 22)" @@ -109410,11 +109410,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.1.20" - - kegg.reaction: "R07770" - - metanetx.reaction: "MNXR101081" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.1.20" + - kegg.reaction: "R07770" + - metanetx.reaction: "MNXR101081" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4258" - name: "[lipoyl-carrier protein]-L-lysine:lipoate ligase (AMP-forming)" @@ -109433,11 +109433,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.1.20" - - kegg.reaction: "R11143" - - metanetx.reaction: "MNXR114442" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.1.20" + - kegg.reaction: "R11143" + - metanetx.reaction: "MNXR114442" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4260" - name: "Deaminated glutathione amidase (dGSH amidase) (EC 3.5.1.-) (Nitrilase homolog 1)" @@ -109454,10 +109454,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.reaction: "R12024" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.1.-" + - kegg.reaction: "R12024" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4261" - name: "Deaminated glutathione amidase (dGSH amidase) (EC 3.5.1.-) (Nitrilase homolog 1)" @@ -109474,10 +109474,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.-" - - kegg.reaction: "R12024" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.1.-" + - kegg.reaction: "R12024" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4262" - name: "citrate hydroxymutase" @@ -109492,12 +109492,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.2.1.-" - - bigg.reaction: "ACONTm" - - kegg.reaction: "R01324" - - metanetx.reaction: "MNXR95384" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.2.1.-" + - bigg.reaction: "ACONTm" + - kegg.reaction: "R01324" + - metanetx.reaction: "MNXR95384" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4263" - name: "Anion/proton exchange transporter GEF1 (CLC protein GEF1) (ClC-A) (ClC-Y1) (Voltage-gated chloride channel) [Cleaved into: GEF1 N-terminal; GEF1 C-terminal]" @@ -109512,9 +109512,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4264" - name: "succinate:NAD+ oxidoreductase" @@ -109532,11 +109532,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.3.1.6" - - kegg.reaction: "R00402" - - metanetx.reaction: "MNXR106516" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.3.1.6" + - kegg.reaction: "R00402" + - metanetx.reaction: "MNXR106516" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4265" - name: "nucleoside-triphosphate diphosphohydrolase" @@ -109554,11 +109554,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.9" - - kegg.reaction: "R01532" - - metanetx.reaction: "MNXR107043" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.9" + - kegg.reaction: "R01532" + - metanetx.reaction: "MNXR107043" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4266" - name: "Inosine triphosphate pyrophosphatase (ITPase) (Inosine triphosphatase) (EC 3.6.1.9) (Hydroxylaminopurine sensitivity protein 1) (Non-canonical purine NTP pyrophosphatase) (Non-standard purine NTP pyrophosphatase) (Nucleoside-triphosphate diphosphatase) (Nucleoside-triphosphate pyrophosphatase) (NTPase)" @@ -109576,10 +109576,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.9" - - bigg.reaction: "NTPP5" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.9" + - bigg.reaction: "NTPP5" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4267" - name: "2'-Deoxyguanosine 5'-triphosphate diphosphohydrolase" @@ -109597,12 +109597,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.9" - - bigg.reaction: "NTPP1" - - kegg.reaction: "R01855" - - metanetx.reaction: "MNXR102049" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.9" + - bigg.reaction: "NTPP1" + - kegg.reaction: "R01855" + - metanetx.reaction: "MNXR102049" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4268" - name: "dTTP diphosphohydrolase" @@ -109620,12 +109620,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.9" - - bigg.reaction: "NTPP7" - - kegg.reaction: "R11323" - - metanetx.reaction: "MNXR97809" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.9" + - bigg.reaction: "NTPP7" + - kegg.reaction: "R11323" + - metanetx.reaction: "MNXR97809" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4269" - name: "Inosine triphosphate pyrophosphatase (ITPase) (Inosine triphosphatase) (EC 3.6.1.9) (Hydroxylaminopurine sensitivity protein 1) (Non-canonical purine NTP pyrophosphatase) (Non-standard purine NTP pyrophosphatase) (Nucleoside-triphosphate diphosphatase) (Nucleoside-triphosphate pyrophosphatase) (NTPase)" @@ -109643,9 +109643,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.9" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.9" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4270" - name: "superoxide:superoxide oxidoreductase" @@ -109662,12 +109662,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.15.1.1" - - bigg.reaction: "SPODM" - - kegg.reaction: "R00275" - - metanetx.reaction: "MNXR104498" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.15.1.1" + - bigg.reaction: "SPODM" + - kegg.reaction: "R00275" + - metanetx.reaction: "MNXR104498" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4271" - name: "Endoplasmic reticulum mannosyl-oligosaccharide 1,2-alpha-mannosidase (EC 3.2.1.113) (ER alpha-1,2-mannosidase) (Man(9)-alpha-mannosidase)" @@ -109684,11 +109684,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.113; 3.2.1.-" - - kegg.reaction: "R05982" - - metanetx.reaction: "MNXR109973" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.113; 3.2.1.-" + - kegg.reaction: "R05982" + - metanetx.reaction: "MNXR109973" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4272" - name: "alpha 1,2-mannosyloligosaccharide alpha-D-mannohydrolase" @@ -109705,11 +109705,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.113; 3.2.1.-" - - kegg.reaction: "R06722" - - metanetx.reaction: "MNXR110483" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.113; 3.2.1.-" + - kegg.reaction: "R06722" + - metanetx.reaction: "MNXR110483" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4273" - name: "ethylnitronate:oxygen 2-oxidoreductase (nitrite-forming)" @@ -109730,11 +109730,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.13.12.16" - - kegg.reaction: "R00025" - - metanetx.reaction: "MNXR106342" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.13.12.16" + - kegg.reaction: "R00025" + - metanetx.reaction: "MNXR106342" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4274" - name: "O-Succinyl-L-homoserine succinate-lyase (deaminating; 2-oxobutanoate-forming)" @@ -109753,12 +109753,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.48" - - bigg.reaction: "SHSL4r" - - kegg.reaction: "R00999" - - metanetx.reaction: "MNXR104384" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.48" + - bigg.reaction: "SHSL4r" + - kegg.reaction: "R00999" + - metanetx.reaction: "MNXR104384" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4275" - name: "Fe(II):NADP+ oxidoreductase" @@ -109776,11 +109776,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.16.1.7" - - kegg.reaction: "R09541" - - metanetx.reaction: "MNXR112960" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.16.1.7" + - kegg.reaction: "R09541" + - metanetx.reaction: "MNXR112960" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4276" - name: "Fe(II):NADP+ oxidoreductase" @@ -109798,11 +109798,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.16.1.7" - - kegg.reaction: "R09541" - - metanetx.reaction: "MNXR112960" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.16.1.7" + - kegg.reaction: "R09541" + - metanetx.reaction: "MNXR112960" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4277" - name: "acyl-CoA:sn-glycerol-3-phosphate 1-O-acyltransferase" @@ -109819,11 +109819,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.51" - - kegg.reaction: "R00851" - - metanetx.reaction: "MNXR106715" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.51" + - kegg.reaction: "R00851" + - metanetx.reaction: "MNXR106715" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4278" - name: "diphthine:ammonia ligase (AMP-forming)" @@ -109843,11 +109843,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.3.1.14" - - kegg.reaction: "R03613" - - metanetx.reaction: "MNXR108295" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.3.1.14" + - kegg.reaction: "R03613" + - metanetx.reaction: "MNXR108295" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4279" - name: "8-oxo-dGTP diphosphohydrolase" @@ -109865,11 +109865,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.55" - - kegg.reaction: "R09832" - - metanetx.reaction: "MNXR113234" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.55" + - kegg.reaction: "R09832" + - metanetx.reaction: "MNXR113234" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4280" - name: "octanoyl-[acp]:protein N6-octanoyltransferase" @@ -109886,11 +109886,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.181" - - kegg.reaction: "R07766" - - metanetx.reaction: "MNXR111354" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.181" + - kegg.reaction: "R07766" + - metanetx.reaction: "MNXR111354" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4281" - name: "lipoyl-[acp]:protein N6-lipoyltransferase" @@ -109907,11 +109907,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.181" - - kegg.reaction: "R07769" - - metanetx.reaction: "MNXR111357" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.181" + - kegg.reaction: "R07769" + - metanetx.reaction: "MNXR111357" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4282" - name: "ATP:D-fructose-6-phosphate 2-phosphotransferase" @@ -109929,12 +109929,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.105; 3.1.3.46" - - bigg.reaction: "PFK26_1" - - kegg.reaction: "R02732" - - metanetx.reaction: "MNXR102508" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.105; 3.1.3.46" + - bigg.reaction: "PFK26_1" + - kegg.reaction: "R02732" + - metanetx.reaction: "MNXR102508" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4283" - name: "ATP:D-fructose 6-phosphotransferase" @@ -109952,11 +109952,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.1" - - kegg.reaction: "R00867" - - metanetx.reaction: "MNXR100614" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.1" + - kegg.reaction: "R00867" + - metanetx.reaction: "MNXR100614" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4284" - name: "ATP:beta-D-glucose 6-phosphotransferase" @@ -109974,12 +109974,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.1" - - bigg.reaction: "GLUK_syn" - - kegg.reaction: "R01600" - - metanetx.reaction: "MNXR107081" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.1" + - bigg.reaction: "GLUK_syn" + - kegg.reaction: "R01600" + - metanetx.reaction: "MNXR107081" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4285" - name: "ATP:alpha-D-glucose 6-phosphotransferase" @@ -109997,12 +109997,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.1" - - bigg.reaction: "GLUKA" - - kegg.reaction: "R01786" - - metanetx.reaction: "MNXR100284" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.1" + - bigg.reaction: "GLUKA" + - kegg.reaction: "R01786" + - metanetx.reaction: "MNXR100284" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4286" - name: "ATP:D-glucosamine 6-phosphotransferase" @@ -110020,12 +110020,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.1" - - bigg.reaction: "HEX10" - - kegg.reaction: "R01961" - - metanetx.reaction: "MNXR100613" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.1" + - bigg.reaction: "HEX10" + - kegg.reaction: "R01961" + - metanetx.reaction: "MNXR100613" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4287" - name: "ATP:D-fructose 6-phosphotransferase" @@ -110043,12 +110043,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.1" - - bigg.reaction: "ABFPT" - - kegg.reaction: "R03920" - - metanetx.reaction: "MNXR95167" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.7.1.1" + - bigg.reaction: "ABFPT" + - kegg.reaction: "R03920" + - metanetx.reaction: "MNXR95167" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4288" - name: "alpha-D-Glucose 6-phosphate ketol-isomerase" @@ -110063,12 +110063,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.1.3.15" - - bigg.reaction: "G6PI_1" - - kegg.reaction: "R02739" - - metanetx.reaction: "MNXR99911" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "5.1.3.15" + - bigg.reaction: "G6PI_1" + - kegg.reaction: "R02739" + - metanetx.reaction: "MNXR99911" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4291" - name: "D-Glyceraldehyde:NAD+ oxidoreductase" @@ -110087,12 +110087,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - bigg.reaction: "GLYALDDr" - - kegg.reaction: "R01752" - - metanetx.reaction: "MNXR100310" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - bigg.reaction: "GLYALDDr" + - kegg.reaction: "R01752" + - metanetx.reaction: "MNXR100310" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4292" - name: "4-Aminobutyraldehyde:NAD+ oxidoreductase" @@ -110111,12 +110111,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - bigg.reaction: "4ABUTD" - - kegg.reaction: "R01986" - - metanetx.reaction: "MNXR94991" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - bigg.reaction: "4ABUTD" + - kegg.reaction: "R01986" + - metanetx.reaction: "MNXR94991" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4293" - name: "4-aminobutanal:NAD+ 1-oxidoreductase; 4-aminobutyraldehyde:NAD+ oxidoreductase" @@ -110135,12 +110135,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - bigg.reaction: "ABUTD" - - kegg.reaction: "R02549" - - metanetx.reaction: "MNXR95191" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - bigg.reaction: "ABUTD" + - kegg.reaction: "R02549" + - metanetx.reaction: "MNXR95191" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4294" - name: "Indole-3-acetaldehyde:NAD+ oxidoreductase" @@ -110159,12 +110159,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - bigg.reaction: "ALDD20x" - - kegg.reaction: "R02678" - - metanetx.reaction: "MNXR95744" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - bigg.reaction: "ALDD20x" + - kegg.reaction: "R02678" + - metanetx.reaction: "MNXR95744" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4295" - name: "2-Propyn-1-al:NAD+ oxidoreductase" @@ -110183,11 +110183,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - kegg.reaction: "R02940" - - metanetx.reaction: "MNXR107839" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - kegg.reaction: "R02940" + - metanetx.reaction: "MNXR107839" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4296" - name: "D-Glucuronolactone:NAD+ oxidoreductase" @@ -110206,12 +110206,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - bigg.reaction: "ALDD32" - - kegg.reaction: "R02957" - - metanetx.reaction: "MNXR95753" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - bigg.reaction: "ALDD32" + - kegg.reaction: "R02957" + - metanetx.reaction: "MNXR95753" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4297" - name: "4-Trimethylammoniobutanal:NAD+ 1-oxidoreductase; 4-Trimethylammoniobutanal:NAD+ oxidoreductase" @@ -110230,11 +110230,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - kegg.reaction: "R03283" - - metanetx.reaction: "MNXR108074" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - kegg.reaction: "R03283" + - metanetx.reaction: "MNXR108074" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4298" - name: "(S)-Methylmalonate semialdehyde:NAD+ oxidoreductase" @@ -110253,11 +110253,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - kegg.reaction: "R03869" - - metanetx.reaction: "MNXR95762" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - kegg.reaction: "R03869" + - metanetx.reaction: "MNXR95762" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4299" - name: "Imidazole acetaldehyde:NAD+ oxidoreductase" @@ -110276,11 +110276,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - kegg.reaction: "R04065" - - metanetx.reaction: "MNXR95745" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - kegg.reaction: "R04065" + - metanetx.reaction: "MNXR95745" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4300" - name: "3alpha,7alpha-Dihydroxy-5beta-cholestan-26-al:NAD+ oxidoreductase" @@ -110299,12 +110299,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - bigg.reaction: "r0688" - - kegg.reaction: "R04506" - - metanetx.reaction: "MNXR108934" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - bigg.reaction: "r0688" + - kegg.reaction: "R04506" + - metanetx.reaction: "MNXR108934" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4301" - name: "5-Hydroxyindoleacetaldehyde:NAD+ oxidoreductase" @@ -110323,11 +110323,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - kegg.reaction: "R04903" - - metanetx.reaction: "MNXR109205" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - kegg.reaction: "R04903" + - metanetx.reaction: "MNXR109205" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4302" - name: "N4-Acetylaminobutanal:NAD+ oxidoreductase" @@ -110346,12 +110346,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - bigg.reaction: "NABTNO" - - kegg.reaction: "R05050" - - metanetx.reaction: "MNXR101805" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - bigg.reaction: "NABTNO" + - kegg.reaction: "R05050" + - metanetx.reaction: "MNXR101805" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4303" - name: "Fatty aldehyde dehydrogenase HFD1 (EC 1.2.1.3)" @@ -110370,11 +110370,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - kegg.reaction: "R05237" - - metanetx.reaction: "MNXR109413" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - kegg.reaction: "R05237" + - metanetx.reaction: "MNXR109413" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4304" - name: "Fatty aldehyde dehydrogenase HFD1 (EC 1.2.1.3)" @@ -110393,11 +110393,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - kegg.reaction: "R05238" - - metanetx.reaction: "MNXR109414" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - kegg.reaction: "R05238" + - metanetx.reaction: "MNXR109414" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4305" - name: "Chloroacetaldehyde:NAD+ oxidoreductase" @@ -110416,11 +110416,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - kegg.reaction: "R05286" - - metanetx.reaction: "MNXR109457" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - kegg.reaction: "R05286" + - metanetx.reaction: "MNXR109457" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4306" - name: "Aldehyde:NAD+ oxidoreductase" @@ -110439,11 +110439,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - kegg.reaction: "R06366" - - metanetx.reaction: "MNXR110183" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - kegg.reaction: "R06366" + - metanetx.reaction: "MNXR110183" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4307" - name: "farnesal:NAD+ oxidoreductase" @@ -110462,11 +110462,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.3" - - kegg.reaction: "R08146" - - metanetx.reaction: "MNXR111724" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.3" + - kegg.reaction: "R08146" + - metanetx.reaction: "MNXR111724" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4308" - name: "Probable phospholipid-transporting ATPase DNF3 (EC 3.6.3.1) (Aminophospholipid translocase) (APT) (Phospholipid translocase) (PLT)" @@ -110486,9 +110486,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.3.1" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "3.6.3.1" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4309" - name: "Putative esterase YMR210W (EC 3.1.1.-)" @@ -110506,9 +110506,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.1.1.-" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4310" - name: "GDP-mannose:glycolipid 1,2-alpha-D-mannosyltransferase" @@ -110526,11 +110526,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.131" - - kegg.reaction: "R06127" - - metanetx.reaction: "MNXR110030" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.131" + - kegg.reaction: "R06127" + - metanetx.reaction: "MNXR110030" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4311" - name: "GDP-mannose:glycolipid 1,2-alpha-D-mannosyltransferase" @@ -110548,11 +110548,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.131" - - kegg.reaction: "R06128" - - metanetx.reaction: "MNXR110031" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.131" + - kegg.reaction: "R06128" + - metanetx.reaction: "MNXR110031" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4312" - name: "S-adenosyl-L-methionine:carnosine N-methyltransferase" @@ -110570,11 +110570,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.1.1.22" - - kegg.reaction: "R02144" - - metanetx.reaction: "MNXR107333" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.1.1.22" + - kegg.reaction: "R02144" + - metanetx.reaction: "MNXR107333" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4313" - name: "Alpha-1,2-mannosyltransferase ALG9 (EC 2.4.1.259) (EC 2.4.1.261) (Asparagine-linked glycosylation protein 9) (Dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) (Dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase)" @@ -110591,11 +110591,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.259; 2.4.1.261" - - kegg.reaction: "R06259" - - metanetx.reaction: "MNXR110093" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.259; 2.4.1.261" + - kegg.reaction: "R06259" + - metanetx.reaction: "MNXR110093" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4314" - name: "Alpha-1,2-mannosyltransferase ALG9 (EC 2.4.1.259) (EC 2.4.1.261) (Asparagine-linked glycosylation protein 9) (Dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) (Dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase)" @@ -110612,11 +110612,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.259; 2.4.1.261" - - kegg.reaction: "R06261" - - metanetx.reaction: "MNXR110095" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.259; 2.4.1.261" + - kegg.reaction: "R06261" + - metanetx.reaction: "MNXR110095" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4315" - name: "Glycolate:NAD+ oxidoreductase" @@ -110634,12 +110634,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.26" - - bigg.reaction: "GLYCLTDx" - - kegg.reaction: "R00717" - - metanetx.reaction: "MNXR100331" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.26" + - bigg.reaction: "GLYCLTDx" + - kegg.reaction: "R00717" + - metanetx.reaction: "MNXR100331" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4316" - name: "Dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase (EC 2.4.1.260) (Asparagine-linked glycosylation protein 12) (Dolichyl-P-Man:Man(7)GlcNAc(2)-PP-dolichyl-alpha-1,6-mannosyltransferase) (Extracellular mutant protein 39) (Mannosyltransferase ALG12)" @@ -110656,11 +110656,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.260" - - kegg.reaction: "R06260" - - metanetx.reaction: "MNXR110094" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.260" + - kegg.reaction: "R06260" + - metanetx.reaction: "MNXR110094" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4317" - name: "sucrose glucohydrolase" @@ -110677,12 +110677,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.10" - - bigg.reaction: "SUCR" - - kegg.reaction: "R00801" - - metanetx.reaction: "MNXR104638" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.10" + - bigg.reaction: "SUCR" + - kegg.reaction: "R00801" + - metanetx.reaction: "MNXR104638" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4318" - name: "Isomaltose 6-alpha-D-glucanohydrolase" @@ -110699,11 +110699,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.10" - - kegg.reaction: "R01718" - - metanetx.reaction: "MNXR107140" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.10" + - kegg.reaction: "R01718" + - metanetx.reaction: "MNXR107140" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4319" - name: "Dextrin 6-alpha-D-glucanohydrolase" @@ -110719,11 +110719,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.10" - - kegg.reaction: "R01791" - - metanetx.reaction: "MNXR107171" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.10" + - kegg.reaction: "R01791" + - metanetx.reaction: "MNXR107171" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4320" - name: "dolichyl beta-D-glucosyl phosphate:D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,3-glucosyltransferase" @@ -110741,11 +110741,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.267" - - kegg.reaction: "R06262" - - metanetx.reaction: "MNXR110096" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.267" + - kegg.reaction: "R06262" + - metanetx.reaction: "MNXR110096" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4321" - name: "dolichyl beta-D-glucosyl phosphate:D-Glc-alpha-(1->3)-D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,3-glucosyltransferase" @@ -110763,11 +110763,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.265" - - kegg.reaction: "R06263" - - metanetx.reaction: "MNXR110097" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.265" + - kegg.reaction: "R06263" + - metanetx.reaction: "MNXR110097" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4322" - name: "GPI mannosyltransferase 4 (EC 2.4.1.-) (GPI mannosyltransferase IV) (GPI-MT-IV)" @@ -110785,11 +110785,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.-" - - kegg.reaction: "R07129" - - metanetx.reaction: "MNXR110833" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.-" + - kegg.reaction: "R07129" + - metanetx.reaction: "MNXR110833" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4323" - name: "protein N6-(octanoyl)lysine:sulfur sulfurtransferase" @@ -110808,11 +110808,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.8.1.8" - - kegg.reaction: "R07767" - - metanetx.reaction: "MNXR111355" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.8.1.8" + - kegg.reaction: "R07767" + - metanetx.reaction: "MNXR111355" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4324" - name: "octanoyl-[acp]:sulfur sulfurtransferase" @@ -110831,11 +110831,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.8.1.8" - - kegg.reaction: "R07768" - - metanetx.reaction: "MNXR111356" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.8.1.8" + - kegg.reaction: "R07768" + - metanetx.reaction: "MNXR111356" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4325" - name: "Iron sulfur cluster assembly protein 2, mitochondrial (Iron sulfur cluster scaffold protein 2)" @@ -110851,9 +110851,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4326" - name: "thiosulfate:cyanide sulfurtranserase" @@ -110871,12 +110871,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.8.1.1; 2.8.1.-" - - bigg.reaction: "CYANSTm" - - kegg.reaction: "R01931" - - metanetx.reaction: "MNXR138187" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.8.1.1; 2.8.1.-" + - bigg.reaction: "CYANSTm" + - kegg.reaction: "R01931" + - metanetx.reaction: "MNXR138187" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4327" - name: "Magnesium transporter MRS2, mitochondrial (RNA-splicing protein MRS2)" @@ -110891,9 +110891,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4328" - name: "UDPglucose:dolichyl-phosphate beta-D-glucosyltransferase" @@ -110911,11 +110911,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.117" - - kegg.reaction: "R01005" - - metanetx.reaction: "MNXR143462" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.4.1.117" + - kegg.reaction: "R01005" + - metanetx.reaction: "MNXR143462" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4329" - name: "Putative sulfate transporter YPR003C" @@ -110930,10 +110930,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "HMR_9626" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "HMR_9626" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4330" - name: "Pyridoxine:NADP+ 4-oxidoreductase" @@ -110951,12 +110951,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.65" - - bigg.reaction: "PYDXOR" - - kegg.reaction: "R01708" - - metanetx.reaction: "MNXR103366" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.65" + - bigg.reaction: "PYDXOR" + - kegg.reaction: "R01708" + - metanetx.reaction: "MNXR103366" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4331" - name: "[1,4-(N-Acetyl-beta-D-glucosaminyl)]n glycanohydrolase" @@ -110972,11 +110972,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.14" - - kegg.reaction: "R01206" - - metanetx.reaction: "MNXR106866" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.14" + - kegg.reaction: "R01206" + - metanetx.reaction: "MNXR106866" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4332" - name: "Protein PNS1 (pH nine-sensitive protein 1)" @@ -110991,10 +110991,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CHOLtu" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "CHOLtu" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4333" - name: "Polyphosphate phosphohydrolase" @@ -111011,11 +111011,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.10; 3.6.1.-; 3.6.1.11" - - kegg.reaction: "R03042" - - metanetx.reaction: "MNXR107906" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.10; 3.6.1.-; 3.6.1.11" + - kegg.reaction: "R03042" + - metanetx.reaction: "MNXR107906" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4334" - name: "Copper-transporting ATPase (EC 3.6.3.54) (Cu(2+)-ATPase)" @@ -111035,9 +111035,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.3.54" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "3.6.3.54" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4335" - name: "Endopolyphosphatase (EC 3.6.1.10) (Deoxyadenosine triphosphate phosphohydrolase) (dATP phosphohydrolase) (EC 3.6.1.-) (Exopolyphosphatase) (EC 3.6.1.11) (Phosphate metabolism protein 5)" @@ -111055,10 +111055,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.10; 3.6.1.-; 3.6.1.11" - - bigg.reaction: "NTP2" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.10; 3.6.1.-; 3.6.1.11" + - bigg.reaction: "NTP2" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4336" - name: "Monoamide of a dicarboxylic acid amidohydrolase" @@ -111075,12 +111075,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.3" - - bigg.reaction: "r0085" - - kegg.reaction: "R03804" - - metanetx.reaction: "MNXR108439" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.5.1.3" + - bigg.reaction: "r0085" + - kegg.reaction: "R03804" + - metanetx.reaction: "MNXR108439" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4337" - name: "Iron-sulfur clusters transporter ATM1, mitochondrial" @@ -111100,9 +111100,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4338" - name: "Oligo-1,6-glucosidase IMA2 (EC 3.2.1.10) (Alpha-glucosidase) (Isomaltase 2)" @@ -111118,11 +111118,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.10" - - kegg.reaction: "R06199" - - metanetx.reaction: "MNXR110064" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.2.1.10" + - kegg.reaction: "R06199" + - metanetx.reaction: "MNXR110064" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4339" - name: "UDP-N-acetylglucosamine transporter YEA4" @@ -111137,9 +111137,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4340" - name: "D-amino-acid N-acetyltransferase HPA3 (DNT) (EC 2.3.1.36) (EC 2.3.1.48) (Histone and other protein acetyltransferase 3)" @@ -111157,9 +111157,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.36; 2.3.1.48" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.36; 2.3.1.48" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4341" - name: "glycerol 2-phosphate(2-) transport" @@ -111174,10 +111174,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100319" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR100319" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4342" - name: "Glycerol-2-phosphate phosphohydrolase" @@ -111194,12 +111194,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.19" - - bigg.reaction: "G2PP" - - kegg.reaction: "R01043" - - metanetx.reaction: "MNXR99852" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.19" + - bigg.reaction: "G2PP" + - kegg.reaction: "R01043" + - metanetx.reaction: "MNXR99852" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4343" - name: "L-Threonine phosphate transport in via proton symport" @@ -111216,10 +111216,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR136678" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR136678" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4344" - name: "acid phosphatase / phosphotransferase" @@ -111236,10 +111236,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - metanetx.reaction: "MNXR103332" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.-" + - metanetx.reaction: "MNXR103332" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4345" - name: "alkaline phosphatase" @@ -111256,10 +111256,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - metanetx.reaction: "MNXR118732" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.-" + - metanetx.reaction: "MNXR118732" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4346" - name: "Guanosine transport via proton symport" @@ -111276,9 +111276,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4347" - name: "Guanosine 3'-phosphate phosphohydrolase" @@ -111295,12 +111295,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.6" - - bigg.reaction: "3NUCLE4" - - kegg.reaction: "R02148" - - metanetx.reaction: "MNXR94936" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.6" + - bigg.reaction: "3NUCLE4" + - kegg.reaction: "R02148" + - metanetx.reaction: "MNXR94936" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4348" - name: "Guanosine transport via proton symport(for 3'-GMP)" @@ -111317,10 +111317,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3GMPt6" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "3GMPt6" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4349" - name: "2-Phosphoglycolate transport in/out via proton symport" @@ -111337,11 +111337,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2PGLYCt6" - - metanetx.reaction: "MNXR94822" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "2PGLYCt6" + - metanetx.reaction: "MNXR94822" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4350" - name: "2-phosphoglycolate phosphohydrolase" @@ -111358,12 +111358,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.18" - - bigg.reaction: "PGLYCP" - - kegg.reaction: "R01334" - - metanetx.reaction: "MNXR102543" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.18" + - bigg.reaction: "PGLYCP" + - kegg.reaction: "R01334" + - metanetx.reaction: "MNXR102543" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4351" - name: "alkaline phosphatase" @@ -111380,10 +111380,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - metanetx.reaction: "MNXR118734" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.-" + - metanetx.reaction: "MNXR118734" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4352" - name: "cysteamine S-phosphate transport via proton symport" @@ -111398,9 +111398,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4353" - name: "Cysteamine:oxygen oxidoreductase" @@ -111417,11 +111417,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.13.11.19" - - kegg.reaction: "R02467" - - metanetx.reaction: "MNXR107528" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "1.13.11.19" + - kegg.reaction: "R02467" + - metanetx.reaction: "MNXR107528" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4354" - name: "hypotaurine:NAD+ oxidoreductase" @@ -111440,11 +111440,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.8.1.3" - - kegg.reaction: "R01681" - - metanetx.reaction: "MNXR107116" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "1.8.1.3" + - kegg.reaction: "R01681" + - metanetx.reaction: "MNXR107116" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4355" - name: "2-aminobutanoate:2-oxoglutarate aminotransferase" @@ -111461,12 +111461,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.42" - - bigg.reaction: "RE2034C" - - kegg.reaction: "R10991" - - metanetx.reaction: "MNXR103594" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "2.6.1.42" + - bigg.reaction: "RE2034C" + - kegg.reaction: "R10991" + - metanetx.reaction: "MNXR103594" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4356" - name: "2-aminobutyrate transport" @@ -111483,9 +111483,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4357" - name: "alkaline phosphatase" @@ -111502,10 +111502,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - metanetx.reaction: "MNXR118730" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.-" + - metanetx.reaction: "MNXR118730" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4358" - name: "Uridine 2'-phosphate transport in via proton symport" @@ -111522,10 +111522,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR136675" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR136675" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4359" - name: "Uridine 3'-monophosphate phosphohydrolase" @@ -111542,12 +111542,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.6" - - bigg.reaction: "3NUCLE2" - - kegg.reaction: "R01877" - - metanetx.reaction: "MNXR94932" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.6" + - bigg.reaction: "3NUCLE2" + - kegg.reaction: "R01877" + - metanetx.reaction: "MNXR94932" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4360" - name: "3'-UMP transport in via proton symport" @@ -111564,11 +111564,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3UMPt6" - - metanetx.reaction: "MNXR94982" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "3UMPt6" + - metanetx.reaction: "MNXR94982" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4361" - name: "Gly-Met transport via proton symport" @@ -111585,10 +111585,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137072" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR137072" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4362" - name: "dipeptidase" @@ -111605,10 +111605,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.13.18" - - metanetx.reaction: "MNXR123343" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123343" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4363" - name: "R07420" @@ -111624,11 +111624,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R07420" - - metanetx.reaction: "MNXR111061" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "" + - kegg.reaction: "R07420" + - metanetx.reaction: "MNXR111061" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4364" - name: "N-phosphocreatine transport" @@ -111645,9 +111645,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4365" - name: "creatinine transport" @@ -111664,9 +111664,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4366" - name: "ATP:L-arginine Nomega-phosphotransferase" @@ -111684,12 +111684,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.3.3" - - bigg.reaction: "ARGKr" - - kegg.reaction: "R00554" - - metanetx.reaction: "MNXR95943" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "2.7.3.3" + - bigg.reaction: "ARGKr" + - kegg.reaction: "R00554" + - metanetx.reaction: "MNXR95943" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4367" - name: "L-arginine phosphate transport in/out via proton symport" @@ -111706,11 +111706,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ARGPt6" - - metanetx.reaction: "MNXR95947" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "ARGPt6" + - metanetx.reaction: "MNXR95947" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4368" - name: "acid phosphatase / phosphotransferase" @@ -111727,10 +111727,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104998" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR104998" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4369" - name: "Tripolyphosphate transport in via proton symport" @@ -111747,10 +111747,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR135003" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR135003" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4370" - name: "alkaline phosphatase" @@ -111767,10 +111767,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - metanetx.reaction: "MNXR118731" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.-" + - metanetx.reaction: "MNXR118731" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4371" - name: "Cytidine- 2'- Monophosphate transport in via proton symport" @@ -111787,10 +111787,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR135010" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR135010" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4372" - name: "cyclic phosphodiesterase" @@ -111807,10 +111807,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.37" - - metanetx.reaction: "MNXR117327" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.4.37" + - metanetx.reaction: "MNXR117327" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4373" - name: "2',3'-Cyclic UMP transport in via proton symport" @@ -111827,10 +111827,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR136674" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR136674" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4374" - name: "3-Sulfino-L-alanine 4-carboxy-lyase" @@ -111848,11 +111848,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.13.1.-" - - kegg.reaction: "R00863" - - metanetx.reaction: "MNXR123155" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.13.1.-" + - kegg.reaction: "R00863" + - metanetx.reaction: "MNXR123155" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4375" - name: "3-Sulfino-L-alanine transport via proton antiport" @@ -111869,10 +111869,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137086" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137086" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4376" - name: "adenosine 3'-phosphate phosphohydrolase" @@ -111889,12 +111889,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.6" - - bigg.reaction: "3NUCLE1" - - kegg.reaction: "R01562" - - metanetx.reaction: "MNXR94935" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.6" + - bigg.reaction: "3NUCLE1" + - kegg.reaction: "R01562" + - metanetx.reaction: "MNXR94935" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4377" - name: "3AMP transport via diffusion (extracellular to periplasm)" @@ -111909,10 +111909,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR94857" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR94857" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4378" - name: "alpha-glucosidase" @@ -111929,10 +111929,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.20" - - metanetx.reaction: "MNXR130717" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.2.1.20" + - metanetx.reaction: "MNXR130717" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4379" - name: "Palatinose transport in via proton symport" @@ -111949,11 +111949,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PALAt2" - - metanetx.reaction: "MNXR102339" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "PALAt2" + - metanetx.reaction: "MNXR102339" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4380" - name: "Amino-Acid N-Acetyltransferase" @@ -111971,10 +111971,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR103637" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR103637" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4381" - name: "Acetylcysteine transport via proton symport" @@ -111991,10 +111991,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137052" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137052" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4382" - name: "thiosulfate:ferricytochrome-c oxidoreductase" @@ -112011,11 +112011,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.8.2.2" - - kegg.reaction: "R00029" - - metanetx.reaction: "MNXR138952" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "1.8.2.2" + - kegg.reaction: "R00029" + - metanetx.reaction: "MNXR138952" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4383" - name: "etrathionate transport via diffusion" @@ -112030,10 +112030,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104796" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR104796" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4384" - name: "D-Gluconate:NADP+ 5-oxidoreductase" @@ -112051,12 +112051,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.69" - - bigg.reaction: "5DGLCNR" - - kegg.reaction: "R01740" - - metanetx.reaction: "MNXR95065" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "1.1.1.-; 1.1.1.69" + - bigg.reaction: "5DGLCNR" + - kegg.reaction: "R01740" + - metanetx.reaction: "MNXR95065" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4385" - name: "5-Dehydro-D-gluconate transport via proton symport" @@ -112073,10 +112073,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95066" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR95066" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4386" - name: "dipeptidase" @@ -112093,10 +112093,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.13.18" - - metanetx.reaction: "MNXR123344" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123344" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4387" - name: "ala-L-asp-L transport via proton symport" @@ -112113,10 +112113,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137135" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR137135" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4388" - name: "cyclic phosphodiesterase" @@ -112133,10 +112133,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.37" - - metanetx.reaction: "MNXR117326" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.4.37" + - metanetx.reaction: "MNXR117326" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4389" - name: "2',3'-Cyclic CMP transport in via proton symport" @@ -112153,10 +112153,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR136673" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR136673" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4390" - name: "beta-glucosidase (methyl-alpha-D-glucoside)" @@ -112173,10 +112173,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.21" - - metanetx.reaction: "MNXR142673" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.2.1.21" + - metanetx.reaction: "MNXR142673" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4391" - name: "Methanol diffusion" @@ -112191,11 +112191,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MEOHt2" - - metanetx.reaction: "MNXR101464" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "MEOHt2" + - metanetx.reaction: "MNXR101464" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4392" - name: "alpha-Methyl-D-glucoside transport via proton symport" @@ -112212,10 +112212,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR144815" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR144815" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4393" - name: "ATP:D-tagatose 6-phosphotransferase" @@ -112233,11 +112233,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.101" - - kegg.reaction: "R02927" - - metanetx.reaction: "MNXR107830" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "2.7.1.101" + - kegg.reaction: "R02927" + - metanetx.reaction: "MNXR107830" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4394" - name: "D-tagatose 6-phosphate 4-epimerase" @@ -112252,9 +112252,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4395" - name: "D-tagatose uptake via diffusion" @@ -112269,11 +112269,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TAGAT_Dt" - - metanetx.reaction: "MNXR104707" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "TAGAT_Dt" + - metanetx.reaction: "MNXR104707" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4396" - name: "Acetoacetate:CoA ligase (AMP-forming)" @@ -112292,12 +112292,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.16" - - bigg.reaction: "AACOAT" - - kegg.reaction: "R01357" - - metanetx.reaction: "MNXR95136" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "6.2.1.16" + - bigg.reaction: "AACOAT" + - kegg.reaction: "R01357" + - metanetx.reaction: "MNXR95136" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4397" - name: "N-Acyl-Aliphatic-L-Amino Acid Amidohydrolase" @@ -112314,11 +112314,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.5.1.14" - - bigg.reaction: "RE2640C" - - metanetx.reaction: "MNXR103709" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.5.1.14" + - bigg.reaction: "RE2640C" + - metanetx.reaction: "MNXR103709" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4398" - name: "Ala-Gln transport via proton symport" @@ -112335,10 +112335,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137087" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR137087" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4399" - name: "L-alanyl-L-glutamate transport in via proton symport" @@ -112355,10 +112355,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101006" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR101006" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4400" - name: "Maltodextrin glucosidase (maltotriose)" @@ -112375,12 +112375,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.20" - - bigg.reaction: "MLTG1e" - - kegg.reaction: "R05196" - - metanetx.reaction: "MNXR101619" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.2.1.20" + - bigg.reaction: "MLTG1e" + - kegg.reaction: "R05196" + - metanetx.reaction: "MNXR101619" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4401" - name: "Ala-Thr transport via proton symport" @@ -112397,9 +112397,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4402" - name: "Ala-Thr transport via proton symport (extracellular to cytosol)" @@ -112416,9 +112416,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4403" - name: "Triphosphate phosphohydrolase" @@ -112435,11 +112435,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.6.1.25" - - kegg.reaction: "R00138" - - metanetx.reaction: "MNXR103069" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "3.6.1.25" + - kegg.reaction: "R00138" + - metanetx.reaction: "MNXR103069" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4404" - name: "Gly-Asn transport via proton symport (extracellular to cytosol)" @@ -112456,9 +112456,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4405" - name: "glycerol 1-phosphate transport" @@ -112473,9 +112473,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4406" - name: "D-O-Phosphoserine transport in/out via proton symport" @@ -112492,11 +112492,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PSER_Dt6" - - metanetx.reaction: "MNXR103244" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "PSER_Dt6" + - metanetx.reaction: "MNXR103244" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4407" - name: "D-O-Phosphoserine phosphohydrolase" @@ -112513,12 +112513,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.3" - - bigg.reaction: "PSP_D" - - kegg.reaction: "R02853" - - metanetx.reaction: "MNXR103265" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.3" + - bigg.reaction: "PSP_D" + - kegg.reaction: "R02853" + - metanetx.reaction: "MNXR103265" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4408" - name: "L-alanyl-L-glutamate transport in via proton symport" @@ -112535,10 +112535,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101006" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR101006" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4409" - name: "L-alanyl-gamma-L-glutamate peptidase" @@ -112555,10 +112555,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.13.18" - - metanetx.reaction: "MNXR101011" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR101011" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4410" - name: "3-oxalomalate glyoxylate-lyase (oxaloacetate-forming)" @@ -112574,11 +112574,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.3.13" - - kegg.reaction: "R00477" - - metanetx.reaction: "MNXR106549" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "4.1.3.13" + - kegg.reaction: "R00477" + - metanetx.reaction: "MNXR106549" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4411" - name: "L-cysteate bisulfite-lyase (deaminating)" @@ -112597,11 +112597,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.4.1.25" - - kegg.reaction: "R07634" - - metanetx.reaction: "MNXR111236" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "4.4.1.25" + - kegg.reaction: "R07634" + - metanetx.reaction: "MNXR111236" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4412" - name: "cyclic phosphodiesterase" @@ -112618,10 +112618,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.4.37" - - metanetx.reaction: "MNXR117325" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.4.37" + - metanetx.reaction: "MNXR117325" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4413" - name: "deoxynucleotide 3'-phosphatase" @@ -112638,10 +112638,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.34" - - metanetx.reaction: "MNXR118741" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.34" + - metanetx.reaction: "MNXR118741" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4414" - name: "cytosol nonspecific dipeptidase" @@ -112658,10 +112658,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.13.18" - - metanetx.reaction: "MNXR123345" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123345" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4415" - name: "Cytosol non-specific dipeptidase" @@ -112678,10 +112678,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.13.18" - - metanetx.reaction: "MNXR123347" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123347" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4416" - name: "Cytosol non-specific dipeptidase" @@ -112698,10 +112698,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.13.18" - - metanetx.reaction: "MNXR123349" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123349" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4417" - name: "Cytosol non-specific dipeptidase" @@ -112718,10 +112718,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.13.18" - - metanetx.reaction: "MNXR123350" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123350" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4418" - name: "Cytosol non-specific dipeptidase" @@ -112738,10 +112738,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.13.18" - - metanetx.reaction: "MNXR123351" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123351" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4419" - name: "L-Cysteate transport via proton symport" @@ -112758,10 +112758,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR124424" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR124424" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4420" - name: "alpha-glucosidase" @@ -112778,10 +112778,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.20" - - metanetx.reaction: "MNXR130716" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.2.1.20" + - metanetx.reaction: "MNXR130716" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4421" - name: "2-Hydroxyethanesulfonate transport via proton symport" @@ -112798,10 +112798,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137058" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137058" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4422" - name: "3-Oxalomalate transport via proton symport" @@ -112818,10 +112818,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137067" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137067" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4423" - name: "Gly-Met transport via proton symport" @@ -112838,10 +112838,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137072" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137072" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4424" - name: "Gly-Gln transport via proton symport" @@ -112858,10 +112858,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137074" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR137074" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4425" - name: "Gly-Gln transport via proton symport" @@ -112878,10 +112878,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137074" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137074" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4426" - name: "Ala-Gln transport via proton symport" @@ -112898,10 +112898,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137087" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137087" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4427" - name: "N-Acetylmethionine transport via proton symport" @@ -112918,10 +112918,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137089" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137089" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4428" - name: "Phosphotyrosine transport via proton symport" @@ -112938,10 +112938,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137095" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137095" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4429" - name: "Ala-His transport via proton symport" @@ -112958,10 +112958,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137107" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR137107" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4430" - name: "Ala-His transport via proton symport" @@ -112978,10 +112978,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137107" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137107" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4431" - name: "ala-L-asp-L transport via proton symport" @@ -112998,10 +112998,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137135" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137135" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4432" - name: "FMNH2-dependent alkanesulfonate monooxygenase" @@ -113022,11 +113022,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.14.14.5" - - bigg.reaction: "FDMO" - - metanetx.reaction: "MNXR99485" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "1.14.14.5" + - bigg.reaction: "FDMO" + - metanetx.reaction: "MNXR99485" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4433" - name: "thymidine 3-monophosphate transport" @@ -113041,9 +113041,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4434" - name: "thymidine 5-monophosphate transport" @@ -113058,9 +113058,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4435" - name: "glycerol-1-phosphate phosphohydrolase" @@ -113077,11 +113077,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R08658" - - metanetx.reaction: "MNXR112173" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "" + - kegg.reaction: "R08658" + - metanetx.reaction: "MNXR112173" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4436" - name: "nucleotide-specific phosphatase (thymidine 5'-monophosphate)" @@ -113098,9 +113098,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4437" - name: "Gly-Glu transport via proton symport (extracellular to cytosol)" @@ -113117,9 +113117,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4438" - name: "Gly-Glu transport via proton symport (cytosol to vacuole)" @@ -113136,9 +113136,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4439" - name: "cytosol nonspecific dipeptidase" @@ -113155,10 +113155,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.4.13.18" - - metanetx.reaction: "MNXR123352" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.4.13.18" + - metanetx.reaction: "MNXR123352" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4440" - name: "L-methionine transport, vacuoluar" @@ -113173,9 +113173,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4441" - name: "L-threonine transport, vacuoluar" @@ -113190,9 +113190,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4442" - name: "cysteamine exchange" @@ -113206,9 +113206,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_cysam_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_cysam_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4443" - name: "23cGMP transport via diffusion (extracellular to periplasm)" @@ -113223,10 +113223,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR94721" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR94721" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4444" - name: "D-Glycerate 2-phosphate transport in/out via proton symport" @@ -113243,11 +113243,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "2PGt6" - - metanetx.reaction: "MNXR94824" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "2PGt6" + - metanetx.reaction: "MNXR94824" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4445" - name: "3-Phospho-D-glycerate transport in/out via proton symport" @@ -113264,11 +113264,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "3PGt6" - - metanetx.reaction: "MNXR94973" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "3PGt6" + - metanetx.reaction: "MNXR94973" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4446" - name: "D-glucose 1-phosphate transport via diffusion" @@ -113283,10 +113283,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99849" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR99849" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4447" - name: "carbamoyl phosphate nuclear transport via diffusion" @@ -113301,10 +113301,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96488" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR96488" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4448" - name: "Met-Ala transport via proton symport (extracellular to cytosol)" @@ -113321,9 +113321,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4449" - name: "Met-Ala transport via proton symport (cytosol to vacuole)" @@ -113340,9 +113340,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4450" - name: "O-Phospho-L-serine transport in via proton symport" @@ -113359,11 +113359,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PSER_Lt6" - - metanetx.reaction: "MNXR103245" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "PSER_Lt6" + - metanetx.reaction: "MNXR103245" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4451" - name: "GMP transport via proton symport" @@ -113380,11 +113380,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GMPt6" - - metanetx.reaction: "MNXR100385" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "GMPt6" + - metanetx.reaction: "MNXR100385" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4452" - name: "myo-inositol phosphate transport via diffusion (extracellular to periplasm)" @@ -113399,10 +113399,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101585" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR101585" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4453" - name: "D-glucose 6-phosphate transport" @@ -113417,10 +113417,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99915" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR99915" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4454" - name: "UMP transport" @@ -113435,10 +113435,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR105127" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR105127" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4455" - name: "Phosphoenolpyruvate transport in via proton symport" @@ -113455,11 +113455,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PEPt6" - - metanetx.reaction: "MNXR102493" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "PEPt6" + - metanetx.reaction: "MNXR102493" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4456" - name: "Mannose 6-phosphate transport via diffusion (extracellular to periplasm)" @@ -113474,10 +113474,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101385" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR101385" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4457" - name: "O-Phosphoryl-Ethanolamine transport in via proton symport" @@ -113494,10 +113494,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR135002" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR135002" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4458" - name: "6-Phospho-D-gluconate transport in/out via proton symport" @@ -113514,11 +113514,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "6PGCt6" - - metanetx.reaction: "MNXR95102" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "6PGCt6" + - metanetx.reaction: "MNXR95102" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4459" - name: "MAN1P transport in/out via proton symport" @@ -113535,11 +113535,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MAN1Pt6" - - metanetx.reaction: "MNXR101377" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "MAN1Pt6" + - metanetx.reaction: "MNXR101377" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4460" - name: "Pyrophosphate transport in via proton symport" @@ -113556,10 +113556,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR136667" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR136667" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4461" - name: "Choline phosphate intracellular transport" @@ -113574,11 +113574,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CHOLPtr" - - metanetx.reaction: "MNXR96703" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "CHOLPtr" + - metanetx.reaction: "MNXR96703" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4462" - name: "thiosulfate transport" @@ -113593,11 +113593,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "TSULt" - - metanetx.reaction: "MNXR104966" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "TSULt" + - metanetx.reaction: "MNXR104966" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4463" - name: "AMP transport in/out via proton symport" @@ -113614,11 +113614,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AMPt6" - - metanetx.reaction: "MNXR95831" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "AMPt6" + - metanetx.reaction: "MNXR95831" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4464" - name: "23cAMP transport via diffusion (extracellular to periplasm)" @@ -113633,10 +113633,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR94718" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR94718" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4465" - name: "Adenosine- 2'-Monophosphate transport in via proton symport" @@ -113653,10 +113653,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR135007" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR135007" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4466" - name: "CMP transport in/out via proton symport" @@ -113673,11 +113673,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CMPt6" - - metanetx.reaction: "MNXR96805" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "CMPt6" + - metanetx.reaction: "MNXR96805" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4467" - name: "D-glucosamine transport via diffusion (extracellular to periplasm)" @@ -113692,11 +113692,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GAMt1r" - - metanetx.reaction: "MNXR100035" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "GAMt1r" + - metanetx.reaction: "MNXR100035" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4468" - name: "2-deoxy-D-ribose transport" @@ -113711,10 +113711,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DRIBt" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "DRIBt" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4469" - name: "L-Citrulline transport in via proton symport" @@ -113731,11 +113731,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "CITRt2r" - - metanetx.reaction: "MNXR96737" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "CITRt2r" + - metanetx.reaction: "MNXR96737" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4470" - name: "Dihydroxyacetone transport via facilitated diffusion" @@ -113750,11 +113750,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "DHAt" - - metanetx.reaction: "MNXR97367" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "DHAt" + - metanetx.reaction: "MNXR97367" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4471" - name: "Ala-Leu transport via proton symport (extracellular to cytosol)" @@ -113771,9 +113771,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4472" - name: "Ala-Leu transport via proton symport (cytosol to vacuole)" @@ -113790,9 +113790,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4473" - name: "L-alanylglycine transport via proton antiport" @@ -113809,10 +113809,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137133" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR137133" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4474" - name: "L-alanylglycine transport via proton antiport" @@ -113829,10 +113829,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137133" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137133" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4475" - name: "N-acetyl-L-glutamate transport" @@ -113847,10 +113847,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ACGLUtd" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "ACGLUtd" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4476" - name: "N-acetyl-L-glutamate transport" @@ -113865,10 +113865,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ACGLUtm" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "ACGLUtm" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4477" - name: "Lipoamide transport via proton symport" @@ -113885,11 +113885,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "LPAMt" - - metanetx.reaction: "MNXR137094" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - bigg.reaction: "LPAMt" + - metanetx.reaction: "MNXR137094" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4478" - name: "L-methionine S-oxide transport via diffusion (extracellular)" @@ -113904,10 +113904,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101483" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR101483" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4479" - name: "Gly-Asn transport via proton symport" @@ -113924,9 +113924,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4480" - name: "Cysteamine transport via proton antiport" @@ -113943,10 +113943,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137130" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR137130" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4481" - name: "Hydrogen sulfide oxidation" @@ -113963,9 +113963,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4482" - name: "L-alanine transport in via proton symport" @@ -113982,10 +113982,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95704" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR95704" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4483" - name: "Glycine transport (vacuole)" @@ -114002,10 +114002,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100368" - - sbo: "SBO:0000655" - - confidence_score: 1 + - ec-code: "" + - metanetx.reaction: "MNXR100368" + - sbo: "SBO:0000655" + - confidence_score: 1 - !!omap - id: "r_4484" - name: "O4-succinyl-L-homoserine:hydrogen sulfide S-(3-amino-3-carboxypropyl)transferase; O-succinyl-L-homoserine succinate-lyase (adding hydrogen sulfide)" @@ -114022,12 +114022,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.5.1.-; 2.5.1.48" - - bigg.reaction: "SHSL2" - - kegg.reaction: "R01288" - - metanetx.reaction: "MNXR104382" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.5.1.-; 2.5.1.48" + - bigg.reaction: "SHSL2" + - kegg.reaction: "R01288" + - metanetx.reaction: "MNXR104382" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4485" - name: "4-Hydroxyphenylpyruvate:oxygen oxidoreductase (hydroxylating,decarboxylating)" @@ -114044,12 +114044,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.13.11.27" - - bigg.reaction: "34HPPOR" - - kegg.reaction: "R02521" - - metanetx.reaction: "MNXR94843" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "1.13.11.27" + - bigg.reaction: "34HPPOR" + - kegg.reaction: "R02521" + - metanetx.reaction: "MNXR94843" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4486" - name: "Homogentisate:oxygen 1,2-oxidoreductase (decyclizing)" @@ -114066,12 +114066,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.13.11.5" - - bigg.reaction: "HGNTOR" - - kegg.reaction: "R02519" - - metanetx.reaction: "MNXR100628" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "1.13.11.5" + - bigg.reaction: "HGNTOR" + - kegg.reaction: "R02519" + - metanetx.reaction: "MNXR100628" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4487" - name: "4-Maleylacetoacetate cis-trans-isomerase" @@ -114086,12 +114086,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "5.2.1.2" - - bigg.reaction: "MACACI" - - kegg.reaction: "R03181" - - metanetx.reaction: "MNXR101325" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "5.2.1.2" + - bigg.reaction: "MACACI" + - kegg.reaction: "R03181" + - metanetx.reaction: "MNXR101325" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4488" - name: "4-fumarylacetoacetate fumarylhydrolase" @@ -114109,12 +114109,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.7.1.2" - - bigg.reaction: "FUMAC" - - kegg.reaction: "R01364" - - metanetx.reaction: "MNXR99706" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.7.1.2" + - bigg.reaction: "FUMAC" + - kegg.reaction: "R01364" + - metanetx.reaction: "MNXR99706" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4489" - name: "L-arabinitol:NAD+ 4-oxidoreductase (L-xylulose-forming)" @@ -114132,12 +114132,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.12" - - bigg.reaction: "ABTD" - - kegg.reaction: "R01903" - - metanetx.reaction: "MNXR137988" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "1.1.1.12" + - bigg.reaction: "ABTD" + - kegg.reaction: "R01903" + - metanetx.reaction: "MNXR137988" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4490" - name: "Xylitol:NADP+ 4-oxidoreductase (L-xylulose-forming)" @@ -114155,12 +114155,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.10" - - bigg.reaction: "XYLUR" - - kegg.reaction: "R01904" - - metanetx.reaction: "MNXR105265" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "1.1.1.10" + - bigg.reaction: "XYLUR" + - kegg.reaction: "R01904" + - metanetx.reaction: "MNXR105265" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4491" - name: "arabinose reductase (D-arabinose)" @@ -114178,9 +114178,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4492" - name: "D-arabinitol:NAT 4-oxidoreductase" @@ -114198,12 +114198,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.11" - - bigg.reaction: "ABTDG" - - kegg.reaction: "R05604" - - metanetx.reaction: "MNXR95188" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "1.1.1.11" + - bigg.reaction: "ABTDG" + - kegg.reaction: "R05604" + - metanetx.reaction: "MNXR95188" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4493" - name: "Acetoacetate transport via diffusion" @@ -114218,10 +114218,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95208" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR95208" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4494" - name: "methanol exchange" @@ -114235,10 +114235,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_meoh_e" - - metanetx.reaction: "MNXR101464" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_meoh_e" + - metanetx.reaction: "MNXR101464" + - sbo: "SBO:0000627" - !!omap - id: "r_4495" - name: "alkaline phosphatase" @@ -114255,10 +114255,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - metanetx.reaction: "MNXR118733" - - sbo: "SBO:0000176" - - confidence_score: 1 + - ec-code: "3.1.3.-" + - metanetx.reaction: "MNXR118733" + - sbo: "SBO:0000176" + - confidence_score: 1 - !!omap - id: "r_4496" - name: "Ala-Gly exchange" @@ -114272,9 +114272,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_L_alagly_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_L_alagly_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4497" - name: "3-oxalomalate(3-) exchange" @@ -114288,8 +114288,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4498" - name: "6-O-alpha-D-glucopyranosyl-D-fructofuranose exchange" @@ -114303,9 +114303,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pala_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pala_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4499" - name: "5-dehydro-D-gluconate exchange" @@ -114319,9 +114319,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_5dglcn_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_5dglcn_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4500" - name: "D-tagatose exchange" @@ -114335,9 +114335,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_tag__D_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_tag__D_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4501" - name: "turanose exchange" @@ -114351,8 +114351,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4502" - name: "D-glucose 6-phosphate exchange" @@ -114366,9 +114366,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_g6p_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_g6p_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4503" - name: "alpha-maltotriose exchange" @@ -114382,9 +114382,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_malttr_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_malttr_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4504" - name: "D-glucose 1-phosphate exchange" @@ -114398,9 +114398,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_g1p_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_g1p_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4505" - name: "methyl alpha-D-glucopyranoside exchange" @@ -114414,9 +114414,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_madg_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_madg_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4506" - name: "D-Glucosamine exchange" @@ -114430,9 +114430,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gam_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gam_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4507" - name: "glycerone exchange" @@ -114446,9 +114446,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_dha_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_dha_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4508" - name: "Ala-Gln exchange" @@ -114462,9 +114462,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ala_L_gln__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ala_L_gln__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4509" - name: "Ala-Leu exchange" @@ -114478,8 +114478,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4510" - name: "Gly-Gln exchange" @@ -114493,9 +114493,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gly_gln__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gly_gln__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4511" - name: "Ala-His exchange" @@ -114509,9 +114509,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ala_L_his__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ala_L_his__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4512" - name: "Gly-Asn exchange" @@ -114525,9 +114525,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gly_asn__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gly_asn__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4513" - name: "Ala-Glu exchange" @@ -114541,9 +114541,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_LalaLglu_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_LalaLglu_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4514" - name: "Gly-Met exchange" @@ -114557,9 +114557,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gly_met__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gly_met__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4515" - name: "Ala-Asp exchange" @@ -114573,9 +114573,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ala_L_asp__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ala_L_asp__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4516" - name: "Gly-Glu exchange" @@ -114589,9 +114589,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gly_glu__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gly_glu__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4517" - name: "Ala-Thr exchange" @@ -114605,9 +114605,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ala_L_Thr__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ala_L_Thr__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4518" - name: "Met-Ala exchange" @@ -114621,9 +114621,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_met_L_ala__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_met_L_ala__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4519" - name: "L-citrulline exchange" @@ -114637,9 +114637,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_citr__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_citr__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4520" - name: "2-aminobutanoate exchange" @@ -114653,9 +114653,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_C02356_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_C02356_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4521" - name: "choline phosphate exchange" @@ -114669,9 +114669,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_cholp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_cholp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4522" - name: "glycerol 1-phosphate exchange" @@ -114685,8 +114685,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4523" - name: "2-phospho-D-glyceric acid exchange" @@ -114700,9 +114700,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_2pg_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_2pg_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4524" - name: "GMP exchange" @@ -114716,9 +114716,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_gmp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_gmp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4525" - name: "3-phospho-serine exchange" @@ -114732,9 +114732,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pser__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pser__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4526" - name: "O-phosphonatooxy-D-serine(2-) exchange" @@ -114748,9 +114748,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pser__D_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pser__D_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4527" - name: "diphosphate exchange" @@ -114764,9 +114764,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ppi_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ppi_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4528" - name: "triphosphate exchange" @@ -114780,8 +114780,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4529" - name: "phosphoenolpyruvate exchange" @@ -114795,9 +114795,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_pep_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_pep_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4530" - name: "N(omega)-phospho-L-arginine exchange" @@ -114811,9 +114811,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_argp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_argp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4531" - name: "carbamoyl phosphate exchange" @@ -114827,8 +114827,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4532" - name: "O-phosphoethanolamine exchange" @@ -114842,9 +114842,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ethamp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ethamp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4533" - name: "cysteamine S-phosphate exchange" @@ -114858,8 +114858,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4534" - name: "guanosine 2'-monophosphate exchange" @@ -114873,8 +114873,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4535" - name: "glycerol 2-phosphate(2-) exchange" @@ -114888,9 +114888,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_glyc2p_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_glyc2p_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4536" - name: "3'-GMP exchange" @@ -114904,9 +114904,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_3gmp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_3gmp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4537" - name: "2-phosphoglycolate exchange" @@ -114920,9 +114920,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_2pglyc_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_2pglyc_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4538" - name: "6-phospho-D-gluconate exchange" @@ -114936,9 +114936,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_6pgc_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_6pgc_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4539" - name: "D-mannose 6-phosphate exchange" @@ -114952,9 +114952,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_man6p_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_man6p_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4540" - name: "2',3'-cyclic GMP exchange" @@ -114968,9 +114968,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_23cgmp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_23cgmp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4541" - name: "O(4)-phospho-L-tyrosine exchange" @@ -114984,9 +114984,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_tyrp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_tyrp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4542" - name: "O-phospho-L-threonine exchange" @@ -115000,9 +115000,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_thrp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_thrp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4543" - name: "3-phosphonato-D-glycerate(3-) exchange" @@ -115016,9 +115016,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_3pg_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_3pg_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4544" - name: "adenosine 2'-phosphate exchange" @@ -115032,8 +115032,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4545" - name: "3'-AMP exchange" @@ -115047,9 +115047,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_3amp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_3amp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4546" - name: "2',3'-cyclic AMP exchange" @@ -115063,9 +115063,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_23camp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_23camp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4547" - name: "D-mannose 1-phosphate exchange" @@ -115079,9 +115079,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_man1p_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_man1p_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4548" - name: "AMP exchange" @@ -115095,9 +115095,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_amp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_amp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4549" - name: "N(alpha)-acetyl-L-methionine exchange" @@ -115111,9 +115111,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_C02712_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_C02712_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4550" - name: "L-Methionine S-oxide exchange" @@ -115127,9 +115127,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_metsox_S__L_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_metsox_S__L_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4551" - name: "3-sulfino-L-alanine exchange" @@ -115143,8 +115143,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4552" - name: "N-acetyl-L-cysteine exchange" @@ -115158,9 +115158,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_CE1310_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_CE1310_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4553" - name: "L-cysteate exchange" @@ -115174,9 +115174,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_Lcyst_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_Lcyst_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4554" - name: "2-hydroxyethane-1-sulfonate exchange" @@ -115190,9 +115190,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_isetac_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_isetac_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4555" - name: "acetoacetate exchange" @@ -115206,9 +115206,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_acac_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_acac_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4556" - name: "N-acetyl-L-glutamate exchange" @@ -115222,9 +115222,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_acglu_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_acglu_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4557" - name: "UMP exchange" @@ -115238,9 +115238,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ump_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ump_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4558" - name: "CMP exchange" @@ -115254,9 +115254,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_cmp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_cmp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4559" - name: "thymidine 5'-monophosphate exchange" @@ -115270,8 +115270,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4560" - name: "thymidine 3'-monophosphate exchange" @@ -115285,8 +115285,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4561" - name: "cytidine 2'-phosphate exchange" @@ -115300,8 +115300,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4562" - name: "uridine 2'-phosphate exchange" @@ -115315,8 +115315,8 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" + - ec-code: "" + - sbo: "SBO:0000627" - !!omap - id: "r_4563" - name: "3'-UMP exchange" @@ -115330,9 +115330,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_3ump_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_3ump_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4564" - name: "2',3'-cyclic CMP exchange" @@ -115346,9 +115346,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_23ccmp_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_23ccmp_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4565" - name: "2',3'-cyclic UMP exchange" @@ -115362,9 +115362,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_23cump_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_23cump_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4566" - name: "ATP:D-Gluconate 6-phosphotransferase" @@ -115382,11 +115382,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.1.12" - - kegg.reaction: "R01737" - - metanetx.reaction: "MNXR100390" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "2.7.1.12" + - kegg.reaction: "R01737" + - metanetx.reaction: "MNXR100390" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4567" - name: "6-phosphogluconate phosphatase" @@ -115403,10 +115403,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.2; 3.1.3.29" - - metanetx.reaction: "MNXR123213" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "3.1.3.-; 3.1.3.2; 3.1.3.29" + - metanetx.reaction: "MNXR123213" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4568" - name: "R06790" @@ -115422,11 +115422,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R06790" - - metanetx.reaction: "MNXR139469" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - kegg.reaction: "R06790" + - metanetx.reaction: "MNXR139469" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4569" - name: "Carboxylic ester hydrolases" @@ -115444,11 +115444,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.2" - - kegg.reaction: "R06893" - - metanetx.reaction: "MNXR110621" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "3.1.1.-; 3.1.1.2" + - kegg.reaction: "R06893" + - metanetx.reaction: "MNXR110621" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4570" - name: "phosphoglycerate dehydrogenase" @@ -115466,11 +115466,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.95" - - kegg.reaction: "R08198" - - metanetx.reaction: "MNXR111769" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "1.1.1.95" + - kegg.reaction: "R08198" + - metanetx.reaction: "MNXR111769" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4571" - name: "seed:rxn00681" @@ -115489,10 +115489,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR134240" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR134240" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4572" - name: "beta-alanine:2-oxoglutarate aminotransferase" @@ -115509,11 +115509,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.6.1.19; 2.6.1.55" - - kegg.reaction: "R00908" - - metanetx.reaction: "MNXR95862" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "2.6.1.19; 2.6.1.55" + - kegg.reaction: "R00908" + - metanetx.reaction: "MNXR95862" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4573" - name: "3-Oxopropanoate:NAD+ oxidoreductase (decarboxylating, CoA-acetylating)" @@ -115532,12 +115532,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.-; 1.2.1.18; 1.2.1.27" - - bigg.reaction: "MMSAD3" - - kegg.reaction: "R00705" - - metanetx.reaction: "MNXR101665" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "1.2.1.-; 1.2.1.18; 1.2.1.27" + - bigg.reaction: "MMSAD3" + - kegg.reaction: "R00705" + - metanetx.reaction: "MNXR101665" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4574" - name: "3-Oxopropanoate:NADP+ oxidoreductase (decarboxylating, CoA-acetylating)" @@ -115556,11 +115556,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.-; 1.2.1.18" - - kegg.reaction: "R00706" - - metanetx.reaction: "MNXR106650" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "1.2.1.-; 1.2.1.18" + - kegg.reaction: "R00706" + - metanetx.reaction: "MNXR106650" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4575" - name: "3-oxopropanoate carboxy-lyase" @@ -115577,11 +115577,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.-; 4.2.1.155" - - kegg.reaction: "R06973" - - metanetx.reaction: "MNXR110693" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "4.1.1.-; 4.2.1.155" + - kegg.reaction: "R06973" + - metanetx.reaction: "MNXR110693" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4576" - name: "(R)-2,3-Dihydroxy-3-methylbutanoate:NADP+ oxidoreductase (isomerizing)" @@ -115599,11 +115599,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.86" - - kegg.reaction: "R04440" - - metanetx.reaction: "MNXR100904" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "1.1.1.86" + - kegg.reaction: "R04440" + - metanetx.reaction: "MNXR100904" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4577" - name: "Dihydroxy-acid dehydratase, mitochondrial" @@ -115619,11 +115619,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - kegg.reaction: "R01209" - - metanetx.reaction: "MNXR106867" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - kegg.reaction: "R01209" + - metanetx.reaction: "MNXR106867" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4578" - name: "Ketol-acid reductoisomerase, mitochondrial" @@ -115641,10 +115641,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR137279" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR137279" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4579" - name: "pyruvate:pyruvate acetaldehydetransferase (decarboxylating); (S)-2-acetolactate pyruvate-lyase (carboxylating)" @@ -115661,12 +115661,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.2.1.6" - - bigg.reaction: "ACLS" - - kegg.reaction: "R00226" - - metanetx.reaction: "MNXR95271" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "2.2.1.6" + - bigg.reaction: "ACLS" + - kegg.reaction: "R00226" + - metanetx.reaction: "MNXR95271" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4580" - name: "(R)-2,3-dihydroxy-3-methylbutanoate:NADP+ oxidoreductase (isomerizing)" @@ -115684,12 +115684,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.383; 1.1.1.86" - - bigg.reaction: "KARA1" - - kegg.reaction: "R04439" - - metanetx.reaction: "MNXR97523" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "1.1.1.383; 1.1.1.86" + - bigg.reaction: "KARA1" + - kegg.reaction: "R04439" + - metanetx.reaction: "MNXR97523" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4581" - name: "(2R,3S)-3-methylmalate:NAD+ oxidoreductase" @@ -115707,12 +115707,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.85" - - bigg.reaction: "ERTHMMOR" - - kegg.reaction: "R00994" - - metanetx.reaction: "MNXR106779" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "1.1.1.-; 1.1.1.85" + - bigg.reaction: "ERTHMMOR" + - kegg.reaction: "R00994" + - metanetx.reaction: "MNXR106779" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4582" - name: "malate/beta-methylmalate synthase" @@ -115731,10 +115731,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.3.-" - - metanetx.reaction: "MNXR121603" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "2.3.3.-" + - metanetx.reaction: "MNXR121603" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4583" - name: "palmitoyl-CoA hydrolase" @@ -115752,12 +115752,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.1.2.-; 3.1.2.2" - - bigg.reaction: "FACOAE1829Z12Z" - - kegg.reaction: "R08177" - - metanetx.reaction: "MNXR99136" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "3.1.2.-; 3.1.2.2" + - bigg.reaction: "FACOAE1829Z12Z" + - kegg.reaction: "R08177" + - metanetx.reaction: "MNXR99136" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4584" - name: "long-chain-fatty-acid---CoA ligase" @@ -115776,11 +115776,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - bigg.reaction: "FACOAL1821" - - metanetx.reaction: "MNXR99175" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "6.2.1.3" + - bigg.reaction: "FACOAL1821" + - metanetx.reaction: "MNXR99175" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4585" - name: "a-galactosidase (stachyose)" @@ -115797,12 +115797,12 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "3.2.1.22" - - bigg.reaction: "STACHGALACT" - - kegg.reaction: "R03634" - - metanetx.reaction: "MNXR100010" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "3.2.1.22" + - bigg.reaction: "STACHGALACT" + - kegg.reaction: "R03634" + - metanetx.reaction: "MNXR100010" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4586" - name: "stachyose synthase" @@ -115818,10 +115818,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.4.1.-" - - metanetx.reaction: "MNXR122225" - - sbo: "SBO:0000176" - - confidence_score: 0 + - ec-code: "2.4.1.-" + - metanetx.reaction: "MNXR122225" + - sbo: "SBO:0000176" + - confidence_score: 0 - !!omap - id: "r_4587" - name: "Ca(2+) transport" @@ -115838,10 +115838,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR96437" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR96437" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4588" - name: "chloride transport" @@ -115856,11 +115856,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "Clt" - - metanetx.reaction: "MNXR96797" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "Clt" + - metanetx.reaction: "MNXR96797" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4589" - name: "Cu2(+) transport" @@ -115877,10 +115877,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR126350" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR126350" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4590" - name: "Mn(2+) transport" @@ -115897,11 +115897,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "MNt2" - - metanetx.reaction: "MNXR101669" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "MNt2" + - metanetx.reaction: "MNXR101669" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4591" - name: "Zn(2+) transport" @@ -115918,11 +115918,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "r2073_1" - - metanetx.reaction: "MNXR105278" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - bigg.reaction: "r2073_1" + - metanetx.reaction: "MNXR105278" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4592" - name: "Mg(2+) transport" @@ -115939,10 +115939,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101553" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - metanetx.reaction: "MNXR101553" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4593" - name: "chloride exchange" @@ -115956,9 +115956,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_cl_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_cl_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4594" - name: "Cu2(+) exchange" @@ -115972,9 +115972,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_cu2_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_cu2_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4595" - name: "Mn(2+) exchange" @@ -115988,9 +115988,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_mn2_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_mn2_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4596" - name: "Zn(2+) exchange" @@ -116004,9 +116004,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_zn2_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_zn2_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4597" - name: "Mg(2+) exchange" @@ -116020,9 +116020,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_mg2_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_mg2_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4598" - name: "cofactor pseudoreaction" @@ -116046,9 +116046,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4599" - name: "ion pseudoreaction" @@ -116072,9 +116072,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000395" - - confidence_score: 1 + - ec-code: "" + - sbo: "SBO:0000395" + - confidence_score: 1 - !!omap - id: "r_4600" - name: "Ca(2+) exchange" @@ -116088,9 +116088,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "EX_ca2_e" - - sbo: "SBO:0000627" + - ec-code: "" + - bigg.reaction: "EX_ca2_e" + - sbo: "SBO:0000627" - !!omap - id: "r_4601" - name: "3-(4-hydroxyphenyl)pyruvate transport" @@ -116107,10 +116107,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR94845" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR94845" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4602" - name: "acetate transport" @@ -116125,10 +116125,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR95431" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR95431" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4603" - name: "ADP-ribose transport" @@ -116143,11 +116143,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ADPRIBt" - - metanetx.reaction: "MNXR95481" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ADPRIBt" + - metanetx.reaction: "MNXR95481" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4604" - name: "farnesyl diphosphate transport" @@ -116162,10 +116162,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99646" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99646" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4605" - name: "nicotinate transport" @@ -116182,10 +116182,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101858" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101858" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4606" - name: "O-phosphoethanolamine transport" @@ -116202,10 +116202,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR135002" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR135002" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4607" - name: "phosphate transport" @@ -116220,11 +116220,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "PItg" - - metanetx.reaction: "MNXR102871" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "PItg" + - metanetx.reaction: "MNXR102871" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4608" - name: "propionyl-CoA transport" @@ -116244,11 +116244,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "r2499" - - metanetx.reaction: "MNXR106312" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "r2499" + - metanetx.reaction: "MNXR106312" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4609" - name: "UDP transport" @@ -116263,11 +116263,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "UDPtg" - - metanetx.reaction: "MNXR105076" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "UDPtg" + - metanetx.reaction: "MNXR105076" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4610" - name: "UDP transport" @@ -116282,11 +116282,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "UDPtg" - - metanetx.reaction: "MNXR105076" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "UDPtg" + - metanetx.reaction: "MNXR105076" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4611" - name: "UMP transport" @@ -116301,10 +116301,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR105127" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR105127" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4612" - name: "TRX1 disulphide transport" @@ -116319,10 +116319,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104921" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR104921" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4613" - name: "oleate transport" @@ -116337,10 +116337,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR99110" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR99110" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4614" - name: "(R)-acetoin transport" @@ -116357,11 +116357,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ACTNt2r" - - metanetx.reaction: "MNXR95426" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ACTNt2r" + - metanetx.reaction: "MNXR95426" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4615" - name: "L-glutamine transport" @@ -116376,11 +116376,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "GLNtm" - - metanetx.reaction: "MNXR100259" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "GLNtm" + - metanetx.reaction: "MNXR100259" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4616" - name: "UMP transport" @@ -116395,10 +116395,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR105127" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR105127" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4617" - name: "S-adenosyl-L-methionine transport" @@ -116413,11 +116413,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "AMETtn" - - metanetx.reaction: "MNXR95809" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "AMETtn" + - metanetx.reaction: "MNXR95809" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4618" - name: "glutathione transport" @@ -116432,10 +116432,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100449" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100449" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4619" - name: "ATP transport" @@ -116452,10 +116452,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.6" - - metanetx.reaction: "MNXR96123" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "2.7.4.6" + - metanetx.reaction: "MNXR96123" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4620" - name: "D-mannose 6-phosphate transport" @@ -116470,10 +116470,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR101385" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR101385" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4621" - name: "O-acetyl-L-serine transport" @@ -116488,11 +116488,11 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - bigg.reaction: "ACSERtmi" - - metanetx.reaction: "MNXR95416" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - bigg.reaction: "ACSERtmi" + - metanetx.reaction: "MNXR95416" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4622" - name: "hydrogen sulfide transport" @@ -116507,10 +116507,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR100494" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR100494" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4623" - name: "L-cysteinylglycine transport" @@ -116527,10 +116527,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR97002" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR97002" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4624" - name: "ATP transport" @@ -116547,10 +116547,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.7.4.6" - - metanetx.reaction: "MNXR96123" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "2.7.4.6" + - metanetx.reaction: "MNXR96123" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4625" - name: "thiosulfate transport" @@ -116565,10 +116565,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104966" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR104966" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4626" - name: "sulphite transport" @@ -116583,10 +116583,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR104460" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR104460" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4627" - name: "UDP-D-glucose transport" @@ -116601,10 +116601,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR105071" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR105071" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4628" - name: "UDP-N-acetyl-alpha-D-glucosamine transport" @@ -116619,10 +116619,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - metanetx.reaction: "MNXR105021" - - sbo: "SBO:0000655" - - confidence_score: 0 + - ec-code: "" + - metanetx.reaction: "MNXR105021" + - sbo: "SBO:0000655" + - confidence_score: 0 - !!omap - id: "r_4629" - name: "alcohol acyltransferase (hexanoyl-CoA)" @@ -116639,10 +116639,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - kegg.reaction: "R00627" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.84" + - kegg.reaction: "R00627" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4630" - name: "alcohol acyltransferase (octanoyl-CoA)" @@ -116659,10 +116659,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - kegg.reaction: "R00627" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.84" + - kegg.reaction: "R00627" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4631" - name: "alcohol acyltransferase (butyryl-CoA)" @@ -116679,10 +116679,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - kegg.reaction: "R00627" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.84" + - kegg.reaction: "R00627" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4632" - name: "alcohol acetyltransferase (hexanol)" @@ -116699,10 +116699,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - kegg.reaction: "R00627" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.84" + - kegg.reaction: "R00627" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4633" - name: "alcohol acyltransferase (decanoyl-CoA)" @@ -116719,10 +116719,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - kegg.reaction: "R00627" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.84" + - kegg.reaction: "R00627" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4634" - name: "ethyl hexanoate transport, mitochondrial" @@ -116737,9 +116737,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4635" - name: "ethyl octanoate transport, mitochondrial" @@ -116754,9 +116754,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4636" - name: "ethyl butanoate transport, mitochondrial" @@ -116771,9 +116771,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4637" - name: "hexyl acetate transport, mitochondrial" @@ -116788,9 +116788,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4638" - name: "ethyl decanoate transport, mitochondrial" @@ -116805,9 +116805,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4639" - name: "ethyl hexanoate transport" @@ -116822,9 +116822,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4640" - name: "ethyl octanoate transport" @@ -116839,9 +116839,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4641" - name: "ethyl butanoate transport" @@ -116856,9 +116856,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4642" - name: "hexyl acetate transport" @@ -116873,9 +116873,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4643" - name: "ethyl decanoate transport" @@ -116890,9 +116890,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4644" - name: "ethyl hexanoate exchange" @@ -116906,9 +116906,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4645" - name: "ethyl octanoate exchange" @@ -116922,9 +116922,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4646" - name: "ethyl butanoate exchange" @@ -116938,9 +116938,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4647" - name: "hexyl acetate exchange" @@ -116954,9 +116954,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4648" - name: "ethyl decanoate exchange" @@ -116970,9 +116970,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4649" - name: "mitochondrial ethanol O-acetyltransferase" @@ -116989,10 +116989,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.268" - - kegg.reaction: "R11957" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.268" + - kegg.reaction: "R11957" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4650" - name: "ethyl acetate transport, mitochondrial" @@ -117007,9 +117007,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4651" - name: "pyruvate decarboxylase (aldedyde-forming)" @@ -117026,10 +117026,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.1" - - kegg.reaction: "R00636" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.1.1" + - kegg.reaction: "R00636" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4652" - name: "aldehyde dehydrogenase (1-propanol, NAD)" @@ -117047,16 +117047,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00754" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00754" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4653" - name: "aldehyde dehydrogenase (1-propanol, NAD)" @@ -117074,15 +117074,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.1" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.1" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4654" - name: "aldehyde dehydrogenase (1-propanol, NADP)" @@ -117100,15 +117100,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.2" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-; 1.1.1.2" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4655" - name: "1-propyl alcohol transport, mitochondrial" @@ -117123,9 +117123,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4656" - name: "propanal transport, cytosol" @@ -117140,9 +117140,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4657" - name: "1-propyl alcohol transport, cytosol" @@ -117157,9 +117157,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4658" - name: "propanal exchange" @@ -117173,9 +117173,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4659" - name: "propanol exchange" @@ -117189,9 +117189,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4660" - name: "2-oxo acid decarboxylase" @@ -117208,10 +117208,10 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.1" - - kegg.reaction: "R00636" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.1.1" + - kegg.reaction: "R00636" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4661" - name: "aldehyde dehydrogenase (methionol, NAD)" @@ -117229,16 +117229,16 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - kegg.reaction: "R00754" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - kegg.reaction: "R00754" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4662" - name: "aldehyde dehydrogenase (methionol, NAD)" @@ -117256,15 +117256,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.1" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.1" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4663" - name: "aldehyde dehydrogenase (methionol, NADP)" @@ -117282,15 +117282,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.2" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-; 1.1.1.2" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4664" - name: "methionol transport, mitochondrial" @@ -117305,9 +117305,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4665" - name: "methional transport, cytosol" @@ -117322,9 +117322,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4666" - name: "methionol transport, cytosol" @@ -117339,9 +117339,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4667" - name: "methional exchange" @@ -117355,9 +117355,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4668" - name: "methionol exchange" @@ -117371,9 +117371,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4669" - name: "pyruvate decarboxylase (hydroxy-phenyl)" @@ -117390,9 +117390,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "4.1.1.1" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "4.1.1.1" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4670" - name: "aldehyde dehydrogenase (tyrosol, NAD)" @@ -117410,15 +117410,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4671" - name: "aldehyde dehydrogenase (tyrosol, NAD)" @@ -117436,15 +117436,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.1" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.1" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4672" - name: "aldehyde dehydrogenase (tyrosol, NADP)" @@ -117462,15 +117462,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.2" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.1.1.-; 1.1.1.2" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4673" - name: "tyrosol transport, mitochondrial" @@ -117485,9 +117485,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4674" - name: "(4-hydroxyphenyl)acetaldehyde transport, cytosol" @@ -117502,9 +117502,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4675" - name: "tyrosol transport, cytosol" @@ -117519,9 +117519,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4676" - name: "(4-hydroxyphenyl)acetaldehyde exchange" @@ -117535,9 +117535,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4677" - name: "tyrosol exchange" @@ -117551,9 +117551,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4678" - name: "aldehyde dehydrogenase" @@ -117572,15 +117572,15 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "1.2.1.5" - - kegg.pathway: - - "sce00010" - - "sce00071" - - "sce00350" - - "sce01110" - - "sce01130" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "1.2.1.5" + - kegg.pathway: + - "sce00010" + - "sce00071" + - "sce00350" + - "sce01110" + - "sce01130" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4679" - name: "short-chain-fatty-acid-CoA ligase (propionate)" @@ -117599,14 +117599,14 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "6.2.1.3" - - kegg.pathway: - - "sce00061" - - "sce00071" - - "sce01212" - - "sce04146" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "6.2.1.3" + - kegg.pathway: + - "sce00061" + - "sce00071" + - "sce01212" + - "sce04146" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4680" - name: "alcohol acyltransferase (propionyl-CoA)" @@ -117623,9 +117623,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.84" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4681" - name: "propionyl-CoA transport, mitochondrial" @@ -117640,9 +117640,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4682" - name: "butyryl-CoA transport, mitochondrial" @@ -117657,9 +117657,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4683" - name: "hexanoyl-CoA transport, mitochondrial" @@ -117674,9 +117674,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4684" - name: "octanoyl-CoA transport, mitochondrial" @@ -117691,9 +117691,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4685" - name: "decanoyl-CoA transport, mitochondrial" @@ -117708,9 +117708,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4686" - name: "propionate transport, cytosol" @@ -117725,9 +117725,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4687" - name: "alcohol acetyltransferase (tyrosol)" @@ -117744,9 +117744,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.84" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4688" - name: "tyrosyl acetate transport" @@ -117761,9 +117761,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4689" - name: "tyrosyl acetate exchange" @@ -117777,9 +117777,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4690" - name: "alcohol acetyltransferase (methionol)" @@ -117796,9 +117796,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.84" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4691" - name: "methionyl acetate transport" @@ -117813,9 +117813,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4692" - name: "methionyl acetate exchange" @@ -117829,9 +117829,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4693" - name: "alcohol acetyltransferase (propanol)" @@ -117848,9 +117848,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "2.3.1.84" - - sbo: "SBO:0000176" - - confidence_score: 2 + - ec-code: "2.3.1.84" + - sbo: "SBO:0000176" + - confidence_score: 2 - !!omap - id: "r_4694" - name: "propyl acetate transport" @@ -117865,9 +117865,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4695" - name: "propyl acetate exchange" @@ -117881,9 +117881,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - !!omap - id: "r_4697" - name: "ethyl propionate transport, mitochondrial" @@ -117898,9 +117898,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4698" - name: "ethyl propionate transport" @@ -117915,9 +117915,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000655" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000655" + - confidence_score: 2 - !!omap - id: "r_4699" - name: "ethyl propionate exchange" @@ -117931,9 +117931,9 @@ - subsystem: - "" - annotation: !!omap - - ec-code: "" - - sbo: "SBO:0000627" - - confidence_score: 2 + - ec-code: "" + - sbo: "SBO:0000627" + - confidence_score: 2 - genes: - !!omap - id: "Q0045" From 4591834be976ed3ec8d7fc6c96db7ba2e1cb8b47 Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Tue, 13 Apr 2021 23:19:36 +0200 Subject: [PATCH 39/56] fix: yml fields correction - eccodes and rxnConfidenceScores are not under 'annotation' - empty references and subsystems should not be written - generated with RAVEN after commit 99a4536b94b07968a7bbebfb39922c76be7f4e1a --- ModelFiles/yml/yeastGEM.yml | 31582 ++++++++-------------------------- 1 file changed, 7405 insertions(+), 24177 deletions(-) diff --git a/ModelFiles/yml/yeastGEM.yml b/ModelFiles/yml/yeastGEM.yml index 6200c204..a6b65b88 100644 --- a/ModelFiles/yml/yeastGEM.yml +++ b/ModelFiles/yml/yeastGEM.yml @@ -3,7 +3,7 @@ - metaData: id: "yeastGEM_devel" name: "The Consensus Genome-Scale Metabolic Model of Yeast" - date: "2021-04-09" + date: "2021-04-13" - metabolites: - !!omap - id: "s_0001" @@ -29847,12 +29847,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YDL174C and YEL039C) or (YDL174C and YJR048W) or (YEL039C and YEL071W) or (YEL071W and YJR048W)" - - eccodes: "1.1.2.4; 1.1.99.-" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.2.4" + - "1.1.99.-" - annotation: !!omap - - ec-code: "1.1.2.4; 1.1.99.-" - bigg.reaction: "D_LACDcm" - kegg.pathway: - "sce00620" @@ -29860,7 +29858,7 @@ - kegg.reaction: "R00197" - metanetx.reaction: "MNXR138960" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0002" - name: "(R)-lactate:ferricytochrome-c 2-oxidoreductase" @@ -29872,12 +29870,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YDL178W and YEL039C) or (YDL178W and YJR048W)" - - eccodes: "1.1.2.4; 1.1.99.-" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.2.4" + - "1.1.99.-" - annotation: !!omap - - ec-code: "1.1.2.4; 1.1.99.-" - bigg.reaction: "D_LACDm" - kegg.pathway: - "sce00620" @@ -29885,7 +29881,7 @@ - kegg.reaction: "R00197" - metanetx.reaction: "MNXR138960" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0003" - name: "(R,R)-butanediol dehydrogenase" @@ -29899,17 +29895,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YAL060W" - eccodes: "1.1.1.4" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.4" - bigg.reaction: "BTDD_RR" - kegg.pathway: "sce00650" - kegg.reaction: "R02946" - metanetx.reaction: "MNXR107844" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0004" - name: "(S)-lactate:ferricytochrome-c 2-oxidoreductase" @@ -29922,11 +29914,7 @@ - upper_bound: 1000 - gene_reaction_rule: "(YEL039C and YML054C) or (YJR048W and YML054C)" - eccodes: "1.1.2.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.2.3" - bigg.reaction: "L_LACD2cm" - kegg.pathway: - "sce00620" @@ -29934,7 +29922,7 @@ - kegg.reaction: "R00196" - metanetx.reaction: "MNXR138959" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0005" - name: "1,3-beta-glucan synthase" @@ -29947,19 +29935,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR032W or YMR306W or (YLR342W and YCR034W)" - eccodes: "2.4.1.34" - - references: "7649185" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.34" - kegg.pathway: - "sce00500" - "sce04011" - kegg.reaction: "R03118" - metanetx.reaction: "MNXR143499" - - pmid: "7649185" + - pubmed: "7649185" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0006" - name: "1,6-beta-glucan synthase" @@ -29971,15 +29955,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR143W or YPR159W" - - eccodes: "" - - references: "8321211" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "8321211" + - pubmed: "8321211" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0007" - name: "1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino)imidazole-4-carboxamide isomerase" @@ -29990,11 +29969,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL020C" - eccodes: "5.3.1.16" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.1.16" - bigg.reaction: "PRMICI" - kegg.pathway: - "sce00340" @@ -30003,7 +29978,7 @@ - kegg.reaction: "R04640" - metanetx.reaction: "MNXR103169" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0012" - name: "1-pyrroline-5-carboxylate dehydrogenase" @@ -30018,20 +29993,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR037W" - eccodes: "1.2.1.88" - - references: "387737" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.88" - bigg.reaction: "P5CDm" - kegg.pathway: - "sce00250" - "sce00330" - kegg.reaction: "R00707" - metanetx.reaction: "MNXR102301" - - pmid: "387737" + - pubmed: "387737" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0013" - name: "2,3-diketo-5-methylthio-1-phosphopentane degradation reaction" @@ -30045,16 +30016,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL038W and YMR009W" - - eccodes: "1.13.11.54; 3.1.3.77" - - references: "14506228" - - subsystem: - - "" + - eccodes: + - "1.13.11.54" + - "3.1.3.77" - annotation: !!omap - - ec-code: "1.13.11.54; 3.1.3.77" - kegg.pathway: "sce00270" - - pmid: "14506228" + - pubmed: "14506228" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0014" - name: "2,5-diamino-6-ribitylamino-4(3H)-pyrimidinone 5'-phosphate deaminase" @@ -30067,19 +30036,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL066C" - - eccodes: "3.5.4.26; 5.4.99.28" - - references: "9068650" - - subsystem: - - "" + - eccodes: + - "3.5.4.26" + - "5.4.99.28" - annotation: !!omap - - ec-code: "3.5.4.26; 5.4.99.28" - bigg.reaction: "DRTPPD" - kegg.pathway: "sce00740" - kegg.reaction: "R09377" - metanetx.reaction: "MNXR112805" - - pmid: "9068650" + - pubmed: "9068650" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0015" - name: "2,5-diamino-6-ribosylamino-4(3H)-pyrimidinone 5'-phosphate reductase (NADPH)" @@ -30093,17 +30060,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR153W" - eccodes: "1.1.1.302" - - references: "9068650" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.302" - kegg.pathway: "sce00740" - kegg.reaction: "R09376" - metanetx.reaction: "MNXR112804" - - pmid: "9068650" + - pubmed: "9068650" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0016" - name: "2-aceto-2-hydroxybutanoate synthase" @@ -30117,11 +30080,7 @@ - upper_bound: 1000 - gene_reaction_rule: "(YCL009C and YMR108W) or YMR108W" - eccodes: "2.2.1.6" - - references: "8972574" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.2.1.6" - bigg.reaction: "ACHBSm" - kegg.pathway: - "sce00290" @@ -30134,9 +30093,9 @@ - "sce01230" - kegg.reaction: "R08648" - metanetx.reaction: "MNXR95260" - - pmid: "8972574" + - pubmed: "8972574" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0017" - name: "2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase" @@ -30149,17 +30108,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL256W" - - eccodes: "2.5.1.15; 2.7.6.3; 4.1.2.25" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.5.1.15" + - "2.7.6.3" + - "4.1.2.25" - annotation: !!omap - - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" - kegg.pathway: "sce00790" - kegg.reaction: "R03503" - metanetx.reaction: "MNXR100694" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0018" - name: "2-aminoadipate transaminase" @@ -30171,12 +30129,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER152C or YGL202W or YJL060W" - - eccodes: "2.6.1.39; 2.6.1.57; 2.6.1.7" - - references: "10714900; 19342587" - - subsystem: - - "" + - eccodes: + - "2.6.1.39" + - "2.6.1.57" + - "2.6.1.7" - annotation: !!omap - - ec-code: "2.6.1.39; 2.6.1.57; 2.6.1.7" - bigg.reaction: "AATA" - kegg.pathway: - "sce00130" @@ -30192,11 +30149,11 @@ - "sce01230" - kegg.reaction: "R01939" - metanetx.reaction: "MNXR95160" - - pmid: + - pubmed: - "10714900" - "19342587" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0019" - name: "2-dehydropantoate 2-reductase" @@ -30210,11 +30167,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR063C" - eccodes: "1.1.1.169" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.169" - bigg.reaction: "DPR" - kegg.pathway: - "sce00770" @@ -30222,7 +30175,7 @@ - kegg.reaction: "R02472" - metanetx.reaction: "MNXR97779" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0020" - name: "2-deoxy-D-arabino-heptulosonate 7-phosphate synthetase" @@ -30236,11 +30189,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR035W or YBR249C" - eccodes: "2.5.1.54" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.54" - bigg.reaction: "DDPAm" - kegg.pathway: - "sce00400" @@ -30250,7 +30199,7 @@ - kegg.reaction: "R01826" - metanetx.reaction: "MNXR97218" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0021" - name: "2-hexaprenyl-6-methoxy-1,4-benzoquinone methyltransferase" @@ -30263,21 +30212,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - eccodes: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - - references: "15792955" - - subsystem: - - "" + - eccodes: + - "1.14.13.-" + - "2.1.1.114" + - "2.1.1.201" + - "2.1.1.64" + - "2.7.-.-" - annotation: !!omap - - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - bigg.reaction: "2HPMBQMTm" - kegg.pathway: - "sce00130" - "sce01110" - kegg.reaction: "R04983" - metanetx.reaction: "MNXR109269" - - pmid: "15792955" + - pubmed: "15792955" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0022" - name: "2-hexaprenyl-6-methoxyphenol monooxygenase" @@ -30289,21 +30239,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - eccodes: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - - references: "15792955" - - subsystem: - - "" + - eccodes: + - "1.14.13.-" + - "2.1.1.114" + - "2.1.1.201" + - "2.1.1.64" + - "2.7.-.-" - annotation: !!omap - - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - bigg.reaction: "2HP6MPMOm" - kegg.pathway: - "sce00130" - "sce01110" - kegg.reaction: "R04982" - metanetx.reaction: "MNXR109268" - - pmid: "15792955" + - pubmed: "15792955" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0023" - name: "2-isopropylmalate hydratase" @@ -30315,11 +30266,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL009C" - eccodes: "4.2.1.33" - - references: "3071717" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.33" - bigg.reaction: "IPPMIb" - kegg.pathway: - "sce00290" @@ -30328,9 +30275,9 @@ - "sce01230" - kegg.reaction: "R03968" - metanetx.reaction: "MNXR100826" - - pmid: "3071717" + - pubmed: "3071717" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0024" - name: "2-isopropylmalate synthase" @@ -30345,11 +30292,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL104C or YOR108W" - eccodes: "2.3.3.13" - - references: "6090272" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.3.13" - bigg.reaction: "IPPS" - kegg.pathway: - "sce00290" @@ -30359,9 +30302,9 @@ - "sce01230" - kegg.reaction: "R01213" - metanetx.reaction: "MNXR100879" - - pmid: "6090272" + - pubmed: "6090272" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0025" - name: "2-isopropylmalate synthase" @@ -30376,11 +30319,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL104C" - eccodes: "2.3.3.13" - - references: "6090272" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.3.13" - bigg.reaction: "IPPSm" - kegg.pathway: - "sce00290" @@ -30390,9 +30329,9 @@ - "sce01230" - kegg.reaction: "R01213" - metanetx.reaction: "MNXR100879" - - pmid: "6090272" + - pubmed: "6090272" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0026" - name: "2-keto-4-methylthiobutyrate transamination" @@ -30404,17 +30343,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR208W or YJR148W or YGL202W or YHR137W" - - eccodes: "" - - references: "14506228" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R07396" - metanetx.reaction: "MNXR95923" - - pmid: "14506228" + - pubmed: "14506228" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0027" - name: "2-methylcitrate dehydratase" @@ -30426,11 +30360,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR234W" - eccodes: "4.2.1.36" - - references: "5908136" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.36" - kegg.pathway: - "sce00300" - "sce01130" @@ -30438,9 +30368,9 @@ - "sce01230" - kegg.reaction: "R03444" - metanetx.reaction: "MNXR141287" - - pmid: "5908136" + - pubmed: "5908136" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0028" - name: "2-methylcitrate synthase" @@ -30455,11 +30385,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR001W" - eccodes: "2.3.3.1" - - references: "16332871" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.3.1" - bigg.reaction: "MCITSm" - kegg.pathway: - "sce00020" @@ -30471,9 +30397,9 @@ - "sce01230" - kegg.reaction: "R00931" - metanetx.reaction: "MNXR101417" - - pmid: "16332871" + - pubmed: "16332871" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0029" - name: "2-oxo-4-methyl-3-carboxypentanoate decarboxylation" @@ -30486,11 +30412,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR148W" - eccodes: "2.6.1.42" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.42" - bigg.reaction: "OMCDC" - kegg.pathway: - "sce00270" @@ -30504,7 +30426,7 @@ - kegg.reaction: "R01652" - metanetx.reaction: "MNXR102180" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0030" - name: "2-oxo-4-methyl-3-carboxypentanoate decarboxylation" @@ -30517,11 +30439,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR208W" - eccodes: "2.6.1.42" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.42" - bigg.reaction: "OMCDCm" - kegg.pathway: - "sce00270" @@ -30535,7 +30453,7 @@ - kegg.reaction: "R01652" - metanetx.reaction: "MNXR102180" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0032" - name: "3',5'-bisphosphate nucleotidase" @@ -30548,20 +30466,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL064C" - eccodes: "3.1.3.7" - - references: "7809627" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.7" - bigg.reaction: "BPNT" - kegg.pathway: - "sce00920" - "sce01130" - kegg.reaction: "R00188" - metanetx.reaction: "MNXR96321" - - pmid: "7809627" + - pubmed: "7809627" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0033" - name: "3',5'-cyclic-nucleotide phosphodiesterase" @@ -30573,18 +30487,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL248W or YOR360C" - - eccodes: "3.1.4.17; 3.1.4.53" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.1.4.17" + - "3.1.4.53" - annotation: !!omap - - ec-code: "3.1.4.17; 3.1.4.53" - bigg.reaction: "PDE1" - kegg.pathway: "sce00230" - kegg.reaction: "R00191" - metanetx.reaction: "MNXR95886" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0034" - name: "3',5'-cyclic-nucleotide phosphodiesterase" @@ -30597,16 +30509,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR360C" - eccodes: "3.1.4.53" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.53" - bigg.reaction: "PDE2" - kegg.pathway: "sce00230" - metanetx.reaction: "MNXR136084" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0035" - name: "3',5'-cyclic-nucleotide phosphodiesterase" @@ -30619,16 +30527,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR360C" - eccodes: "3.1.4.53" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.53" - bigg.reaction: "PDE3" - kegg.pathway: "sce00230" - metanetx.reaction: "MNXR136083" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0036" - name: "3',5'-cyclic-nucleotide phosphodiesterase" @@ -30641,17 +30545,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR360C" - eccodes: "3.1.4.53" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.53" - bigg.reaction: "PDE4" - kegg.pathway: "sce00230" - kegg.reaction: "R01234" - metanetx.reaction: "MNXR100078" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0037" - name: "3',5'-cyclic-nucleotide phosphodiesterase" @@ -30664,16 +30564,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR360C" - eccodes: "3.1.4.53" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.53" - bigg.reaction: "PDE5" - kegg.pathway: "sce00230" - metanetx.reaction: "MNXR136082" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0038" - name: "3,4-dihydroxy-2-butanone-4-phosphate synthase" @@ -30686,20 +30582,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR487C" - eccodes: "4.1.99.12" - - references: "12595523" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.99.12" - bigg.reaction: "DB4PS" - kegg.pathway: - "sce00740" - "sce01110" - kegg.reaction: "R07281" - metanetx.reaction: "MNXR97178" - - pmid: "12595523" + - pubmed: "12595523" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0039" - name: "3-dehydroquinate dehydratase" @@ -30710,12 +30602,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR127W" - - eccodes: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.25" + - "2.5.1.19" + - "2.7.1.71" + - "4.2.1.10" + - "4.2.3.4" - annotation: !!omap - - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - bigg.reaction: "DHQTi" - kegg.pathway: - "sce00400" @@ -30725,7 +30618,7 @@ - kegg.reaction: "R03084" - metanetx.reaction: "MNXR97449" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0040" - name: "3-dehydroquinate synthase" @@ -30736,12 +30629,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR127W" - - eccodes: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - - references: "6355828" - - subsystem: - - "" + - eccodes: + - "1.1.1.25" + - "2.5.1.19" + - "2.7.1.71" + - "4.2.1.10" + - "4.2.3.4" - annotation: !!omap - - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - bigg.reaction: "DHQS" - kegg.pathway: - "sce00400" @@ -30750,9 +30644,9 @@ - "sce01230" - kegg.reaction: "R03083" - metanetx.reaction: "MNXR97447" - - pmid: "6355828" + - pubmed: "6355828" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0041" - name: "3-dehydrosphinganine reductase" @@ -30766,19 +30660,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR265W" - eccodes: "1.1.1.102" - - references: "18296751; 9804843" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.102" - kegg.pathway: "sce00600" - kegg.reaction: "R02978" - metanetx.reaction: "MNXR94866" - - pmid: + - pubmed: - "18296751" - "9804843" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0042" - name: "3-deoxy-D-arabino-heptulosonate 7-phosphate synthetase" @@ -30792,11 +30682,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR249C or YDR035W" - eccodes: "2.5.1.54" - - references: "2880280" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.54" - bigg.reaction: "DDPA" - kegg.pathway: - "sce00400" @@ -30805,9 +30691,9 @@ - "sce01230" - kegg.reaction: "R01826" - metanetx.reaction: "MNXR97218" - - pmid: "2880280" + - pubmed: "2880280" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0043" - name: "3-hexaprenyl-4,5-dihydroxybenzoate hydroxylase" @@ -30818,18 +30704,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL252C or YDR376W" - - eccodes: "" - - references: "15792955" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3OPHB5Hm" - kegg.reaction: "R06865" - metanetx.reaction: "MNXR110601" - - pmid: "15792955" + - pubmed: "15792955" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0044" - name: "3-hexaprenyl-4-hydroxy-5-methoxybenzoate decarboxylase" @@ -30841,17 +30722,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR538W and YDR539W" - - eccodes: "" - - references: "15792955" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R06866" - metanetx.reaction: "MNXR94901" - - pmid: "15792955" + - pubmed: "15792955" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0045" - name: "3-hydroxy-L-kynurenine hydrolase" @@ -30865,17 +30741,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR231C" - eccodes: "3.7.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.7.1.3" - bigg.reaction: "HKYNH" - kegg.pathway: "sce00380" - kegg.reaction: "R02668" - metanetx.reaction: "MNXR100656" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0057" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxotetradecanoyl-CoA)" @@ -30888,17 +30760,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "HACD6p" - kegg.reaction: "R04739" - metanetx.reaction: "MNXR100547" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0058" - name: "3-hydroxyanthranilate 3,4-dioxygenase" @@ -30910,18 +30780,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR025C" - eccodes: "1.13.11.6" - - references: "9539135" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.13.11.6" - bigg.reaction: "3HAO" - kegg.pathway: "sce00380" - kegg.reaction: "R02665" - metanetx.reaction: "MNXR94889" - - pmid: "9539135" + - pubmed: "9539135" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0059" - name: "3-isopropylmalate 3-methyltransferase" @@ -30934,14 +30800,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YER175C" - eccodes: "2.1.1.145" - - references: "15147181" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.145" - - pmid: "15147181" + - pubmed: "15147181" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0060" - name: "3-isopropylmalate dehydratase" @@ -30953,11 +30815,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL009C" - eccodes: "4.2.1.33" - - references: "3071717" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.33" - bigg.reaction: "IPPMIa" - kegg.pathway: - "sce00290" @@ -30966,9 +30824,9 @@ - "sce01230" - kegg.reaction: "R04001" - metanetx.reaction: "MNXR100827" - - pmid: "3071717" + - pubmed: "3071717" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0061" - name: "3-isopropylmalate dehydrogenase" @@ -30982,11 +30840,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YCL018W" - eccodes: "1.1.1.85" - - references: "6297759" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.85" - bigg.reaction: "IPMD" - kegg.pathway: - "sce00290" @@ -30996,9 +30850,9 @@ - "sce01230" - kegg.reaction: "R04426" - metanetx.reaction: "MNXR100878" - - pmid: "6297759" + - pubmed: "6297759" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0062" - name: "3-methyl-2-oxobutanoate decarboxylase" @@ -31010,21 +30864,21 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - eccodes: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - - references: "12902239" - - subsystem: - - "" + - eccodes: + - "4.1.1.-" + - "4.1.1.1" + - "4.1.1.43" + - "4.1.1.74" - annotation: !!omap - - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - bigg.reaction: "3MOBDC" - kegg.pathway: - "sce00010" - "sce01110" - "sce01130" - metanetx.reaction: "MNXR94922" - - pmid: "12902239" + - pubmed: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0063" - name: "3-methyl-2-oxobutanoate hydroxymethyltransferase" @@ -31038,11 +30892,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR176W" - eccodes: "2.1.2.11" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.2.11" - bigg.reaction: "MTMOHT" - kegg.pathway: - "sce00770" @@ -31050,7 +30900,7 @@ - kegg.reaction: "R01226" - metanetx.reaction: "MNXR101702" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0064" - name: "3-methyl-2-oxopentanoate decarboxylase" @@ -31062,12 +30912,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL080C or YGR087C or YLR044C or YLR134W" - - eccodes: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - - references: "12902239" - - subsystem: - - "" + - eccodes: + - "4.1.1.-" + - "4.1.1.1" + - "4.1.1.43" + - "4.1.1.74" - annotation: !!omap - - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - bigg.reaction: "3MOPDC" - kegg.pathway: - "sce00010" @@ -31075,9 +30925,9 @@ - "sce01130" - kegg.reaction: "R03894" - metanetx.reaction: "MNXR94925" - - pmid: "12902239" + - pubmed: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0065" - name: "3-phosphoshikimate 1-carboxyvinyltransferase" @@ -31089,12 +30939,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR127W" - - eccodes: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - - references: "6355828" - - subsystem: - - "" + - eccodes: + - "1.1.1.25" + - "2.5.1.19" + - "2.7.1.71" + - "4.2.1.10" + - "4.2.3.4" - annotation: !!omap - - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - bigg.reaction: "PSCVT" - kegg.pathway: - "sce00400" @@ -31103,9 +30954,9 @@ - "sce01230" - kegg.reaction: "R03460" - metanetx.reaction: "MNXR103226" - - pmid: "6355828" + - pubmed: "6355828" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0066" - name: "4-amino-4-deoxychorismate synthase" @@ -31118,17 +30969,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR033W" - eccodes: "2.6.1.85" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.85" - bigg.reaction: "ADCS" - kegg.pathway: "sce00790" - kegg.reaction: "R01716" - metanetx.reaction: "MNXR95440" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0067" - name: "4-aminobenzoate synthase" @@ -31141,16 +30988,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR289W" - eccodes: "4.1.3.38" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.3.38" - bigg.reaction: "ADCL" - kegg.reaction: "R05553" - metanetx.reaction: "MNXR95436" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0068" - name: "4-aminobutyrate transaminase" @@ -31163,11 +31006,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR019W" - eccodes: "2.6.1.19" - - references: "10590462" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.19" - bigg.reaction: "ABTA" - kegg.pathway: - "sce00250" @@ -31177,9 +31016,9 @@ - "sce00650" - kegg.reaction: "R01648" - metanetx.reaction: "MNXR95186" - - pmid: "10590462" + - pubmed: "10590462" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0069" - name: "4-hydroxy-L-threonine synthase" @@ -31192,11 +31031,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR053W" - eccodes: "4.2.3.1" - - references: "8082795" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.3.1" - bigg.reaction: "4HTHRS" - kegg.pathway: - "sce00260" @@ -31205,9 +31040,9 @@ - "sce01230" - kegg.reaction: "R05086" - metanetx.reaction: "MNXR95024" - - pmid: "8082795" + - pubmed: "8082795" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0070" - name: "4-hydroxybenzoate formation" @@ -31220,18 +31055,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "11583838" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "4HBZFm" - kegg.reaction: "R01301" - metanetx.reaction: "MNXR95011" - - pmid: "11583838" + - pubmed: "11583838" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_0072" - name: "4-methyl-2-oxopentanoate decarboxylase" @@ -31244,20 +31074,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL080C" - eccodes: "4.1.1.-" - - references: "12902239" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.-" - bigg.reaction: "4MOPDC" - kegg.pathway: - "sce00010" - "sce01110" - "sce01130" - metanetx.reaction: "MNXR137950" - - pmid: "12902239" + - pubmed: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0073" - name: "4PP-IP5 depyrophosphorylation to IP6" @@ -31270,17 +31096,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR410W or YOR163W" - - eccodes: "2.7.4.21; 2.7.4.24; 3.6.1.52; 3.6.1.60" - - references: "17412958" - - subsystem: - - "" + - eccodes: + - "2.7.4.21" + - "2.7.4.24" + - "3.6.1.52" + - "3.6.1.60" - annotation: !!omap - - ec-code: "2.7.4.21; 2.7.4.24; 3.6.1.52; 3.6.1.60" - kegg.reaction: "R05779" - metanetx.reaction: "MNXR103044" - - pmid: "17412958" + - pubmed: "17412958" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0074" - name: "4PP-IP5 pyrophosphorylation to 4,5-PP2-IP4" @@ -31294,17 +31120,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR017C" - eccodes: "2.7.4.21" - - references: "17412958" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.21" - kegg.pathway: - "sce04070" - "sce04138" - - pmid: "17412958" + - pubmed: "17412958" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0075" - name: "5'-methylthioadenosine phosphorylase" @@ -31317,18 +31139,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR017W" - eccodes: "2.4.2.28" - - references: "14506228" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.28" - bigg.reaction: "MTAP" - kegg.pathway: "sce00270" - kegg.reaction: "R01402" - metanetx.reaction: "MNXR101745" - - pmid: "14506228" + - pubmed: "14506228" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0076" - name: "5'-nucleotidase (CMP)" @@ -31341,20 +31159,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YER037W or YGL224C" - eccodes: "3.1.3.-" - - references: "11934891; 23670538" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - bigg.reaction: "NTD4" - kegg.pathway: "sce00760" - kegg.reaction: "R00511" - metanetx.reaction: "MNXR102034" - - pmid: + - pubmed: - "11934891" - "23670538" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0077" - name: "5'-nucleotidase (IMP)" @@ -31367,20 +31181,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR155C" - eccodes: "3.1.3.99" - - references: "12735798" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.99" - bigg.reaction: "NTD11" - kegg.pathway: - "sce00230" - "sce00760" - kegg.reaction: "R01126" - metanetx.reaction: "MNXR102030" - - pmid: "12735798" + - pubmed: "12735798" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0078" - name: "5'-nucleotidase (UMP)" @@ -31393,20 +31203,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YER037W or YGL224C" - eccodes: "3.1.3.-" - - references: "11934891; 23670538" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - bigg.reaction: "NTD2" - kegg.pathway: "sce00760" - kegg.reaction: "R00963" - metanetx.reaction: "MNXR102032" - - pmid: + - pubmed: - "11934891" - "23670538" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0079" - name: "5'-phosphoribosylformyl glycinamidine synthetase" @@ -31424,11 +31230,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR061C" - eccodes: "6.3.5.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.5.3" - bigg.reaction: "PRFGS" - kegg.pathway: - "sce00230" @@ -31437,7 +31239,7 @@ - kegg.reaction: "R04463" - metanetx.reaction: "MNXR108904" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0080" - name: "5,10-methylenetetrahydrofolate reductase (NADPH)" @@ -31451,20 +31253,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL125W or YPL023C" - eccodes: "1.5.1.20" - - references: "21623372" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.1.20" - bigg.reaction: "MTHFR3" - kegg.pathway: - "sce00670" - "sce01200" - kegg.reaction: "R01224" - metanetx.reaction: "MNXR101752" - - pmid: "21623372" + - pubmed: "21623372" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0081" - name: "5-aminolevulinate synthase" @@ -31479,11 +31277,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR232W" - eccodes: "2.3.1.37" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.37" - bigg.reaction: "ALASm" - kegg.pathway: - "sce00260" @@ -31492,7 +31286,7 @@ - kegg.reaction: "R00830" - metanetx.reaction: "MNXR95695" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0082" - name: "5-diphosphoinositol-1,2,3,4,6-pentakisphosphate diphosphohydrolase" @@ -31505,17 +31299,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR163W" - - eccodes: "3.6.1.52; 3.6.1.60" - - references: "10419486" - - subsystem: - - "" + - eccodes: + - "3.6.1.52" + - "3.6.1.60" - annotation: !!omap - - ec-code: "3.6.1.52; 3.6.1.60" - kegg.reaction: "R05779" - metanetx.reaction: "MNXR103044" - - pmid: "10419486" + - pubmed: "10419486" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0083" - name: "5-diphosphoinositol-1,2,3,4,6-pentakisphosphate synthase" @@ -31528,19 +31320,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR017C" - eccodes: "2.7.4.21" - - references: "11956213" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.21" - kegg.pathway: - "sce04070" - "sce04138" - kegg.reaction: "R09087" - metanetx.reaction: "MNXR101584" - - pmid: "11956213" + - pubmed: "11956213" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0084" - name: "5-formethyltetrahydrofolate cyclo-ligase" @@ -31554,17 +31342,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER183C" - eccodes: "6.3.3.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.3.2" - bigg.reaction: "FTHFCL" - kegg.pathway: "sce00670" - kegg.reaction: "R02301" - metanetx.reaction: "MNXR99668" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0085" - name: "5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase" @@ -31577,11 +31361,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER091C" - eccodes: "2.1.1.14" - - references: "3542720" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.14" - bigg.reaction: "MHPGLUT" - kegg.pathway: - "sce00270" @@ -31590,9 +31370,9 @@ - "sce01230" - kegg.reaction: "R04405" - metanetx.reaction: "MNXR101555" - - pmid: "3542720" + - pubmed: "3542720" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0086" - name: "5-methylthio-5-deoxy-D-ribulose 1-phosphate dehydratase" @@ -31603,18 +31383,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR024C" - - eccodes: "" - - references: "14506228" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MDRPD" - kegg.reaction: "R07392" - metanetx.reaction: "MNXR125830" - - pmid: "14506228" + - pubmed: "14506228" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0087" - name: "5-methylthioribose-1-phosphate isomerase" @@ -31624,18 +31399,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR118W" - - eccodes: "" - - references: "14506228" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MTRI" - kegg.reaction: "R04420" - metanetx.reaction: "MNXR101759" - - pmid: "14506228" + - pubmed: "14506228" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0088" - name: "5PP-IP5 pyrophosphorylation to 4,5-PP2-IP4" @@ -31648,15 +31418,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR410W" - - eccodes: "2.7.4.21; 2.7.4.24" - - references: "17412958" - - subsystem: - - "" + - eccodes: + - "2.7.4.21" + - "2.7.4.24" - annotation: !!omap - - ec-code: "2.7.4.21; 2.7.4.24" - - pmid: "17412958" + - pubmed: "17412958" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0089" - name: "5PP-IP5 pyrophosphorylation to 5,6-PP2-IP4" @@ -31669,15 +31437,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR410W" - - eccodes: "2.7.4.21; 2.7.4.24" - - references: "17412958" - - subsystem: - - "" + - eccodes: + - "2.7.4.21" + - "2.7.4.24" - annotation: !!omap - - ec-code: "2.7.4.21; 2.7.4.24" - - pmid: "17412958" + - pubmed: "17412958" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0090" - name: "6-phosphofructo-2-kinase" @@ -31691,16 +31457,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL107C or YOL136C" - eccodes: "2.7.1.105" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.105" - bigg.reaction: "PFK26" - kegg.pathway: "sce00051" - metanetx.reaction: "MNXR124534" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0091" - name: "6-phosphogluconolactonase" @@ -31713,11 +31475,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR248W or YHR163W" - eccodes: "3.1.1.31" - - references: "14454532" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.31" - bigg.reaction: "PGL" - kegg.pathway: - "sce00030" @@ -31726,9 +31484,9 @@ - "sce01200" - kegg.reaction: "R02035" - metanetx.reaction: "MNXR102539" - - pmid: "14454532" + - pubmed: "14454532" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0092" - name: "6PP-IP5 depyrophosphorylation to IP6" @@ -31741,17 +31499,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR410W or YOR163W" - - eccodes: "2.7.4.21; 2.7.4.24; 3.6.1.52; 3.6.1.60" - - references: "17412958" - - subsystem: - - "" + - eccodes: + - "2.7.4.21" + - "2.7.4.24" + - "3.6.1.52" + - "3.6.1.60" - annotation: !!omap - - ec-code: "2.7.4.21; 2.7.4.24; 3.6.1.52; 3.6.1.60" - kegg.reaction: "R05779" - metanetx.reaction: "MNXR103044" - - pmid: "17412958" + - pubmed: "17412958" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0093" - name: "6PP-IP5 pyrophosphorylation to 5,6-PP2-IP4" @@ -31765,17 +31523,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR017C" - eccodes: "2.7.4.21" - - references: "17412958" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.21" - kegg.pathway: - "sce04070" - "sce04138" - - pmid: "17412958" + - pubmed: "17412958" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0094" - name: "8-amino-7-oxononanoate synthase" @@ -31789,17 +31543,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "16269718" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R03210" - metanetx.reaction: "MNXR95854" - - pmid: "16269718" + - pubmed: "16269718" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0095" - name: "acetaldehyde condensation" @@ -31809,21 +31558,21 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - eccodes: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - - references: "12902239" - - subsystem: - - "" + - eccodes: + - "4.1.1.-" + - "4.1.1.1" + - "4.1.1.43" + - "4.1.1.74" - annotation: !!omap - - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - bigg.reaction: "ACALDCD" - kegg.pathway: - "sce00010" - "sce01110" - "sce01130" - metanetx.reaction: "MNXR95211" - - pmid: "12902239" + - pubmed: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0096" - name: "acetohydroxy acid isomeroreductase" @@ -31837,11 +31586,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR355C" - eccodes: "1.1.1.86" - - references: "8972574" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.86" - kegg.pathway: - "sce00290" - "sce00770" @@ -31849,9 +31594,9 @@ - "sce01130" - "sce01210" - "sce01230" - - pmid: "8972574" + - pubmed: "8972574" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0097" - name: "acetolactate synthase" @@ -31864,11 +31609,7 @@ - upper_bound: 1000 - gene_reaction_rule: "(YCL009C and YMR108W) or YMR108W" - eccodes: "2.2.1.6" - - references: "8972574" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.2.1.6" - kegg.pathway: - "sce00290" - "sce00650" @@ -31880,9 +31621,9 @@ - "sce01230" - kegg.reaction: "R00006" - metanetx.reaction: "MNXR106335" - - pmid: "8972574" + - pubmed: "8972574" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0099" - name: "acetyl-CoA ACP transacylase" @@ -31894,19 +31635,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL192C" - - eccodes: "" - - references: "15387819" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ACOATAm" - kegg.pathway: "sce00190" - kegg.reaction: "R01624" - metanetx.reaction: "MNXR95376" - - pmid: "15387819" + - pubmed: "15387819" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0100" - name: "acetyl-CoA C-acyltransferase (palmitoyl-CoA)" @@ -31919,11 +31655,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - bigg.reaction: "ACACT8p" - kegg.pathway: - "sce00071" @@ -31935,7 +31667,7 @@ - "sce04146" - metanetx.reaction: "MNXR95204" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0101" - name: "acetyl-CoA C-acyltransferase (tetracosanoyl-CoA)" @@ -31948,11 +31680,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - bigg.reaction: "ACACT9p" - kegg.pathway: - "sce00071" @@ -31964,7 +31692,7 @@ - "sce04146" - metanetx.reaction: "MNXR124343" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0102" - name: "acetyl-CoA C-acyltransferase (myristoyl-CoA)" @@ -31977,11 +31705,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - bigg.reaction: "ACACT7p" - kegg.pathway: - "sce00071" @@ -31994,7 +31718,7 @@ - kegg.reaction: "R03991" - metanetx.reaction: "MNXR95203" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0103" - name: "acetyl-CoA C-acetyltransferase" @@ -32006,11 +31730,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL028W" - eccodes: "2.3.1.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.9" - bigg.reaction: "ACACT1r" - kegg.pathway: - "sce00071" @@ -32030,7 +31750,7 @@ - kegg.reaction: "R00238" - metanetx.reaction: "MNXR95194" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0104" - name: "acetyl-CoA C-acetyltransferase" @@ -32042,11 +31762,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL028W" - eccodes: "2.3.1.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.9" - bigg.reaction: "ACACT1m" - kegg.pathway: - "sce00071" @@ -32066,7 +31782,7 @@ - kegg.reaction: "R00238" - metanetx.reaction: "MNXR95194" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0105" - name: "acetyl-CoA C-acyltransferase (lauroyl-CoA)" @@ -32079,11 +31795,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - bigg.reaction: "ACACT6p" - kegg.pathway: - "sce00071" @@ -32096,7 +31808,7 @@ - kegg.reaction: "R03858" - metanetx.reaction: "MNXR95201" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0106" - name: "acetyl-CoA C-acyltransferase (octanoyl-CoA)" @@ -32109,11 +31821,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - bigg.reaction: "ACACT4p" - kegg.pathway: - "sce00071" @@ -32126,7 +31834,7 @@ - kegg.reaction: "R03778" - metanetx.reaction: "MNXR95198" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0107" - name: "acetyl-CoA C-acyltransferase (decanoyl-CoA)" @@ -32139,11 +31847,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - kegg.pathway: - "sce00071" - "sce00280" @@ -32155,7 +31859,7 @@ - kegg.reaction: "R04742" - metanetx.reaction: "MNXR95200" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0108" - name: "acetyl-Coa carboxylase" @@ -32170,12 +31874,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR207C" - - eccodes: "6.3.4.14; 6.4.1.2" - - references: "14761959" - - subsystem: - - "" + - eccodes: + - "6.3.4.14" + - "6.4.1.2" - annotation: !!omap - - ec-code: "6.3.4.14; 6.4.1.2" - bigg.reaction: "ACCOACrm" - kegg.pathway: - "sce00061" @@ -32185,9 +31887,9 @@ - "sce01212" - kegg.reaction: "R00742" - metanetx.reaction: "MNXR95219" - - pmid: "14761959" + - pubmed: "14761959" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0109" - name: "acetyl-CoA carboxylase, reaction" @@ -32203,11 +31905,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL141W and YNR016C" - eccodes: "6.3.4.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.4.14" - bigg.reaction: "ACCOAC" - kegg.pathway: - "sce00061" @@ -32219,7 +31917,7 @@ - kegg.reaction: "R00742" - metanetx.reaction: "MNXR95219" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0111" - name: "acetyl-CoA hydrolase" @@ -32233,17 +31931,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBL015W" - eccodes: "3.1.2.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.1" - bigg.reaction: "ACOAHim" - kegg.pathway: "sce00620" - kegg.reaction: "R00227" - metanetx.reaction: "MNXR95363" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0112" - name: "acetyl-CoA synthetase" @@ -32258,11 +31952,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YAL054C or YLR153C" - eccodes: "6.2.1.1" - - references: "8910545" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.1" - bigg.reaction: "ACS" - kegg.pathway: - "sce00010" @@ -32273,9 +31963,9 @@ - "sce01200" - kegg.reaction: "R00235" - metanetx.reaction: "MNXR95413" - - pmid: "8910545" + - pubmed: "8910545" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0113" - name: "acetyl-CoA synthetase" @@ -32290,11 +31980,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YAL054C" - eccodes: "6.2.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.1" - bigg.reaction: "ACSm" - kegg.pathway: - "sce00010" @@ -32306,7 +31992,7 @@ - kegg.reaction: "R00235" - metanetx.reaction: "MNXR95413" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0114" - name: "acetyl-CoA synthetase nuclear" @@ -32321,11 +32007,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR153C" - eccodes: "6.2.1.1" - - references: "16857587" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.1" - kegg.pathway: - "sce00010" - "sce00620" @@ -32335,9 +32017,9 @@ - "sce01200" - kegg.reaction: "R00235" - metanetx.reaction: "MNXR95413" - - pmid: "16857587" + - pubmed: "16857587" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0115" - name: "acetylglutamate kinase" @@ -32349,12 +32031,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER069W" - - eccodes: "1.2.1.38; 2.7.2.8" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.2.1.38" + - "2.7.2.8" - annotation: !!omap - - ec-code: "1.2.1.38; 2.7.2.8" - bigg.reaction: "ACGKm" - kegg.pathway: - "sce00220" @@ -32365,7 +32045,7 @@ - kegg.reaction: "R02649" - metanetx.reaction: "MNXR95256" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0116" - name: "acid phosphatase (secreted)" @@ -32378,11 +32058,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR093C or YAR071W or YBR092C or YHR215W" - eccodes: "3.1.3.2" - - references: "13405892" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.2" - bigg.reaction: "ACP1e" - kegg.pathway: - "sce00730" @@ -32390,9 +32066,9 @@ - "sce04111" - kegg.reaction: "R00548" - metanetx.reaction: "MNXR95393" - - pmid: "13405892" + - pubmed: "13405892" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0117" - name: "aconitase" @@ -32403,17 +32079,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR002W" - eccodes: "4.2.1.79" - - references: "16332871" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.79" - bigg.reaction: "ACONT3m" - kegg.pathway: "sce00640" - metanetx.reaction: "MNXR95385" - - pmid: "16332871" + - pubmed: "16332871" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0118" - name: "acteylornithine transaminase" @@ -32426,11 +32098,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL140W" - eccodes: "2.6.1.11" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.11" - bigg.reaction: "ACOTAim" - kegg.pathway: - "sce00220" @@ -32441,7 +32109,7 @@ - kegg.reaction: "R02283" - metanetx.reaction: "MNXR95388" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0119" - name: "acyl carrier protein synthase" @@ -32455,16 +32123,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL148C" - eccodes: "2.7.8.7" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.7" - bigg.reaction: "ACPSm" - kegg.reaction: "R10747" - metanetx.reaction: "MNXR95402" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0120" - name: "acyl-CoA oxidase (decanoyl-CoA)" @@ -32477,11 +32141,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - kegg.pathway: - "sce00071" - "sce01040" @@ -32490,7 +32150,7 @@ - "sce04146" - metanetx.reaction: "MNXR127526" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0121" - name: "acyl-CoA oxidase (dodecanoyl-CoA)" @@ -32503,11 +32163,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO5p" - kegg.pathway: - "sce00071" @@ -32517,7 +32173,7 @@ - "sce04146" - metanetx.reaction: "MNXR95365" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0122" - name: "acyl-CoA oxidase (hexacosanoyl-CoA)" @@ -32530,11 +32186,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO9p" - kegg.pathway: - "sce00071" @@ -32544,7 +32196,7 @@ - "sce04146" - metanetx.reaction: "MNXR124346" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0123" - name: "acyl-CoA oxidase (hexadecanoyl-CoA)" @@ -32557,11 +32209,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO7p" - kegg.pathway: - "sce00071" @@ -32571,7 +32219,7 @@ - "sce04146" - metanetx.reaction: "MNXR95367" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0124" - name: "acyl-CoA oxidase (octadecanoyl-CoA)" @@ -32584,11 +32232,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO8p" - kegg.pathway: - "sce00071" @@ -32598,7 +32242,7 @@ - "sce04146" - metanetx.reaction: "MNXR95368" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0125" - name: "acyl-CoA oxidase (tetradecanoyl-CoA)" @@ -32611,11 +32255,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - bigg.reaction: "ACOAO6p" - kegg.pathway: - "sce00071" @@ -32625,7 +32265,7 @@ - "sce04146" - metanetx.reaction: "MNXR95366" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0126" - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:episterol), ER membrane" @@ -32638,15 +32278,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - eccodes: "2.3.1.26" - - references: "10672016" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - - pmid: "10672016" + - pubmed: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0127" - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:ergosterol), ER membrane" @@ -32659,16 +32295,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W" - eccodes: "2.3.1.26" - - references: "10672016" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - metanetx.reaction: "MNXR119161" - - pmid: "10672016" + - pubmed: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0128" - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:fecosterol), ER membrane" @@ -32681,15 +32313,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - eccodes: "2.3.1.26" - - references: "10672016" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - - pmid: "10672016" + - pubmed: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0129" - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:lanosterol), ER membrane" @@ -32702,16 +32330,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - eccodes: "2.3.1.26" - - references: "10672016" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - metanetx.reaction: "MNXR119159" - - pmid: "10672016" + - pubmed: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0130" - name: "acyl-CoA:sterol acyltransferase (oleoyl-CoA:zymosterol), ER membrane" @@ -32724,15 +32348,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - eccodes: "2.3.1.26" - - references: "10672016" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - - pmid: "10672016" + - pubmed: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0131" - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:episterol), ER membrane" @@ -32745,15 +32365,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - eccodes: "2.3.1.26" - - references: "10672016" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - - pmid: "10672016" + - pubmed: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0132" - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:ergosterol), ER membrane" @@ -32766,15 +32382,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W" - eccodes: "2.3.1.26" - - references: "10672016" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - - pmid: "10672016" + - pubmed: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0133" - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:fecosterol), ER membrane" @@ -32787,15 +32399,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - eccodes: "2.3.1.26" - - references: "10672016" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - - pmid: "10672016" + - pubmed: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0134" - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:lanosterol), ER membrane" @@ -32808,15 +32416,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - eccodes: "2.3.1.26" - - references: "10672016" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - - pmid: "10672016" + - pubmed: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0135" - name: "acyl-CoA:sterol acyltransferase (palmitoleoyl-CoA:zymosterol), ER membrane" @@ -32829,15 +32433,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR048W" - eccodes: "2.3.1.26" - - references: "10672016" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.26" - kegg.pathway: "sce00100" - - pmid: "10672016" + - pubmed: "10672016" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0137" - name: "acylation of GPI inositol at 2 position, GPI-anchor assembly, step 3" @@ -32850,15 +32450,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL091C" - eccodes: "2.3.-.-" - - references: "12714589" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.-.-" - kegg.pathway: "sce00563" - - pmid: "12714589" + - pubmed: "12714589" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0138" - name: "adenine deaminase" @@ -32872,17 +32468,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL141W" - eccodes: "3.5.4.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.4.2" - bigg.reaction: "ADD" - kegg.pathway: "sce00230" - kegg.reaction: "R01244" - metanetx.reaction: "MNXR95443" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0139" - name: "adenine phosphoribosyltransferase" @@ -32895,18 +32487,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR441C or YML022W" - eccodes: "2.4.2.7" - - references: "9864350" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.7" - bigg.reaction: "ADPT" - kegg.pathway: "sce00230" - kegg.reaction: "R00190" - metanetx.reaction: "MNXR95482" - - pmid: "9864350" + - pubmed: "9864350" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0140" - name: "adenosine deaminase" @@ -32920,17 +32508,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL141W" - eccodes: "3.5.4.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.4.2" - bigg.reaction: "ADA" - kegg.pathway: "sce00230" - kegg.reaction: "R01560" - metanetx.reaction: "MNXR95432" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0142" - name: "adenosine kinase" @@ -32944,17 +32528,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR105W" - eccodes: "2.7.1.20" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.20" - bigg.reaction: "ADNK1" - kegg.pathway: "sce00230" - kegg.reaction: "R00185" - metanetx.reaction: "MNXR95456" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0143" - name: "adenosine monophosphate deaminase" @@ -32968,11 +32548,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YML035C" - eccodes: "3.5.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.4.6" - bigg.reaction: "AMPDA" - kegg.pathway: - "sce00230" @@ -32981,7 +32557,7 @@ - kegg.reaction: "R00181" - metanetx.reaction: "MNXR95824" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0144" - name: "adenosylhomocysteinase" @@ -32994,18 +32570,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YER043C" - eccodes: "3.3.1.1" - - references: "15556636" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.3.1.1" - bigg.reaction: "AHCi" - kegg.pathway: "sce00270" - kegg.reaction: "R00192" - metanetx.reaction: "MNXR95492" - - pmid: "15556636" + - pubmed: "15556636" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0145" - name: "adenosylmethionine decarboxylase" @@ -33018,20 +32590,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL052C" - eccodes: "4.1.1.50" - - references: "3087344" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.50" - bigg.reaction: "ADMDC" - kegg.pathway: - "sce00270" - "sce00330" - kegg.reaction: "R00178" - metanetx.reaction: "MNXR95455" - - pmid: "3087344" + - pubmed: "3087344" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0146" - name: "adenosylmethionine-8-amino-7-oxononanoate transaminase" @@ -33044,17 +32612,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR058W" - eccodes: "2.6.1.62" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.62" - bigg.reaction: "AMAOTr" - kegg.pathway: "sce00780" - kegg.reaction: "R03231" - metanetx.reaction: "MNXR95806" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0147" - name: "adenylate cyclase" @@ -33066,11 +32630,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL005W" - eccodes: "4.6.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.6.1.1" - bigg.reaction: "ADNCYC" - kegg.pathway: - "sce00230" @@ -33079,7 +32639,7 @@ - kegg.reaction: "R00089" - metanetx.reaction: "MNXR95444" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0148" - name: "adenylate kinase" @@ -33091,11 +32651,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL166C or YDR226W" - eccodes: "2.7.4.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.3" - bigg.reaction: "ADK1" - kegg.pathway: - "sce00230" @@ -33105,7 +32661,7 @@ - kegg.reaction: "R00127" - metanetx.reaction: "MNXR95450" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0149" - name: "adenylate kinase" @@ -33117,11 +32673,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER170W" - eccodes: "2.7.4.10" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.10" - bigg.reaction: "ADK1m" - kegg.pathway: - "sce00230" @@ -33131,7 +32683,7 @@ - kegg.reaction: "R00127" - metanetx.reaction: "MNXR95450" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0150" - name: "adenylate kinase (GTP)" @@ -33144,11 +32696,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER170W" - eccodes: "2.7.4.10" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.10" - bigg.reaction: "ADK3m" - kegg.pathway: - "sce00230" @@ -33157,7 +32705,7 @@ - "sce01130" - metanetx.reaction: "MNXR95452" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0151" - name: "adenylosuccinate lyase (AICAR)" @@ -33169,11 +32717,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR359W" - eccodes: "4.3.2.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.3.2.2" - bigg.reaction: "ADSL2r" - kegg.pathway: - "sce00230" @@ -33183,7 +32727,7 @@ - kegg.reaction: "R04559" - metanetx.reaction: "MNXR108966" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0152" - name: "adenylosuccinate lyase" @@ -33195,11 +32739,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR359W" - eccodes: "4.3.2.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.3.2.2" - bigg.reaction: "ADSL1r" - kegg.pathway: - "sce00230" @@ -33209,7 +32749,7 @@ - kegg.reaction: "R01083" - metanetx.reaction: "MNXR95493" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0153" - name: "adenylosuccinate synthase" @@ -33225,11 +32765,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL220W" - eccodes: "6.3.4.4" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.4.4" - bigg.reaction: "ADSS" - kegg.pathway: - "sce00230" @@ -33237,7 +32773,7 @@ - kegg.reaction: "R01135" - metanetx.reaction: "MNXR95495" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0154" - name: "adenylyl-sulfate kinase" @@ -33251,20 +32787,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL001C" - eccodes: "2.7.1.25" - - references: "1654509" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.25" - bigg.reaction: "ADSK" - kegg.pathway: - "sce00230" - "sce00920" - kegg.reaction: "R00509" - metanetx.reaction: "MNXR95159" - - pmid: "1654509" + - pubmed: "1654509" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0155" - name: "ADP-ribose 2,3-cyclic phosphodiesterase" @@ -33277,16 +32809,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR247W" - eccodes: "3.1.4.37" - - references: "10734185" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.37" - bigg.reaction: "23CAPPD" - metanetx.reaction: "MNXR117324" - - pmid: "10734185" + - pubmed: "10734185" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0156" - name: "alanine glyoxylate aminotransferase" @@ -33299,11 +32827,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YFL030W" - eccodes: "2.6.1.44" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.44" - bigg.reaction: "AGTi" - kegg.pathway: - "sce00250" @@ -33316,7 +32840,7 @@ - kegg.reaction: "R00369" - metanetx.reaction: "MNXR95618" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0157" - name: "alanyl-tRNA synthetase" @@ -33331,18 +32855,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR335C" - eccodes: "6.1.1.7" - - references: "7761427" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.7" - bigg.reaction: "ALATRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03038" - metanetx.reaction: "MNXR107903" - - pmid: "7761427" + - pubmed: "7761427" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0158" - name: "alcohol acetyltransferase (2-methylbutanol)" @@ -33355,16 +32875,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR177C or YOR377W" - eccodes: "2.3.1.84" - - references: "12957907" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - bigg.reaction: "OHACT3" - metanetx.reaction: "MNXR102165" - - pmid: "12957907" + - pubmed: "12957907" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0159" - name: "alcohol acetyltransferase (ethanol)" @@ -33377,15 +32893,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR177C or YOR377W" - eccodes: "2.3.1.84" - - references: "12957907" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - metanetx.reaction: "MNXR117501" - - pmid: "12957907" + - pubmed: "12957907" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0160" - name: "alcohol acetyltransferase (isoamyl alcohol)" @@ -33398,16 +32910,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR177C or YOR377W" - eccodes: "2.3.1.84" - - references: "12957907" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - bigg.reaction: "OHACT2" - metanetx.reaction: "MNXR102164" - - pmid: "12957907" + - pubmed: "12957907" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0161" - name: "alcohol acetyltransferase (isobutyl alcohol)" @@ -33420,16 +32928,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR177C or YOR377W" - eccodes: "2.3.1.84" - - references: "12957907" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - bigg.reaction: "OHACT4" - metanetx.reaction: "MNXR102166" - - pmid: "12957907" + - pubmed: "12957907" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0162" - name: "alcohol acetyltransferase (phenylethanol alcohol)" @@ -33442,16 +32946,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR177C or YOR377W" - eccodes: "2.3.1.84" - - references: "12957907" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - bigg.reaction: "OHACT5" - metanetx.reaction: "MNXR102167" - - pmid: "12957907" + - pubmed: "12957907" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0163" - name: "alcohol dehydrogenase (ethanol to acetaldehyde)" @@ -33465,11 +32965,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR303C" - eccodes: "1.1.1.1" - - references: "12702265" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.1" - bigg.reaction: "ALCD2x" - kegg.pathway: - "sce00010" @@ -33479,9 +32975,9 @@ - "sce01130" - kegg.reaction: "R00754" - metanetx.reaction: "MNXR95725" - - pmid: "12702265" + - pubmed: "12702265" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0164" - name: "alcohol dehydrogenase (glycerol, NADP)" @@ -33494,19 +32990,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR368W or YHR104W" - - eccodes: "1.1.1.-; 1.1.1.21" - - references: "12210903" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.21" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.21" - bigg.reaction: "ALCD19y" - kegg.pathway: "sce00040" - kegg.reaction: "R01041" - metanetx.reaction: "MNXR95711" - - pmid: "12210903" + - pubmed: "12210903" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0165" - name: "mitochondrial alcohol dehydrogenase" @@ -33520,11 +33014,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - eccodes: "1.1.1.1" - - references: "12499363" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.1" - bigg.reaction: "ALCD2irm" - kegg.pathway: - "sce00010" @@ -33534,9 +33024,9 @@ - "sce01130" - kegg.reaction: "R00754" - metanetx.reaction: "MNXR95725" - - pmid: "12499363" + - pubmed: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0166" - name: "aldehyde dehydrogenase (2-methylbutanol, NAD)" @@ -33549,12 +33039,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - references: "12702265" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - bigg.reaction: "ALCD22xi" - kegg.pathway: - "sce00010" @@ -33564,9 +33053,9 @@ - "sce01130" - "sce01200" - metanetx.reaction: "MNXR95716" - - pmid: "12702265" + - pubmed: "12702265" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0167" - name: "aldehyde dehydrogenase (2-methylbutanol, NAD)" @@ -33580,11 +33069,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - eccodes: "1.1.1.1" - - references: "12499363" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.1" - bigg.reaction: "ALCD22xim" - kegg.pathway: - "sce00010" @@ -33593,9 +33078,9 @@ - "sce01110" - "sce01130" - metanetx.reaction: "MNXR95716" - - pmid: "12499363" + - pubmed: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0168" - name: "aldehyde dehydrogenase (2-methylbutanol, NADP)" @@ -33608,12 +33093,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - - eccodes: "1.1.1.-; 1.1.1.2" - - references: "12210903; 12423374" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.2" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.2" - bigg.reaction: "ALCD22yi" - kegg.pathway: - "sce00010" @@ -33622,11 +33105,11 @@ - "sce01110" - "sce01130" - metanetx.reaction: "MNXR95717" - - pmid: + - pubmed: - "12210903" - "12423374" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0169" - name: "aldehyde dehydrogenase (2-phenylethanol, NAD)" @@ -33639,12 +33122,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - references: "12702265" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - bigg.reaction: "ALCD25xi" - kegg.pathway: - "sce00010" @@ -33655,9 +33137,9 @@ - "sce01200" - kegg.reaction: "R02611" - metanetx.reaction: "MNXR95722" - - pmid: "12702265" + - pubmed: "12702265" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0170" - name: "aldehyde dehydrogenase (2-phenylethanol, NAD)" @@ -33671,11 +33153,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - eccodes: "1.1.1.1" - - references: "12499363" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.1" - bigg.reaction: "ALCD25xim" - kegg.pathway: - "sce00010" @@ -33685,9 +33163,9 @@ - "sce01130" - kegg.reaction: "R02611" - metanetx.reaction: "MNXR95722" - - pmid: "12499363" + - pubmed: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0171" - name: "aldehyde dehydrogenase (2-phenylethanol, NADP)" @@ -33701,11 +33179,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YMR318C" - eccodes: "1.1.1.2" - - references: "11742541; 12423374" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.2" - bigg.reaction: "ALCD25yi" - kegg.pathway: - "sce00010" @@ -33714,11 +33188,11 @@ - "sce01110" - "sce01130" - metanetx.reaction: "MNXR95723" - - pmid: + - pubmed: - "11742541" - "12423374" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0172" - name: "aldehyde dehydrogenase (3-aminopropanal, NAD)" @@ -33733,11 +33207,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C or YMR169C or YMR170C" - eccodes: "1.2.1.3" - - references: "12586697" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - bigg.reaction: "ALDD22x" - kegg.pathway: - "sce00010" @@ -33748,9 +33218,9 @@ - "sce01110" - kegg.reaction: "R00904" - metanetx.reaction: "MNXR95748" - - pmid: "12586697" + - pubmed: "12586697" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0173" - name: "aldehyde dehydrogenase (acetaldehyde, NADP)" @@ -33765,11 +33235,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL061W" - eccodes: "1.2.1.4" - - references: "15256563" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.4" - bigg.reaction: "ALDD2y" - kegg.pathway: - "sce00010" @@ -33786,9 +33252,9 @@ - "sce01130" - kegg.reaction: "R00711" - metanetx.reaction: "MNXR95750" - - pmid: "15256563" + - pubmed: "15256563" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0174" - name: "aldehyde dehydrogenase (acetylaldehyde, NAD)" @@ -33803,11 +33269,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR374W" - eccodes: "1.2.1.5" - - references: "15256563" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.5" - bigg.reaction: "ALDD2xm" - kegg.pathway: - "sce00010" @@ -33824,9 +33286,9 @@ - "sce01130" - kegg.reaction: "R00710" - metanetx.reaction: "MNXR95749" - - pmid: "15256563" + - pubmed: "15256563" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0175" - name: "aldehyde dehydrogenase (acetylaldehyde, NADP)" @@ -33841,11 +33303,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER073W or YOR374W" - eccodes: "1.2.1.5" - - references: "15256563" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.5" - bigg.reaction: "ALDD2ym" - kegg.pathway: - "sce00010" @@ -33862,9 +33320,9 @@ - "sce01130" - kegg.reaction: "R00711" - metanetx.reaction: "MNXR95750" - - pmid: "15256563" + - pubmed: "15256563" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0176" - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NAD)" @@ -33879,11 +33337,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR374W" - eccodes: "1.2.1.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.5" - bigg.reaction: "ALDD20xm" - kegg.pathway: - "sce00010" @@ -33901,7 +33355,7 @@ - kegg.reaction: "R02678" - metanetx.reaction: "MNXR95744" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0177" - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NADP)" @@ -33916,11 +33370,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL061W" - eccodes: "1.2.1.4" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.4" - bigg.reaction: "ALDD20y" - kegg.pathway: - "sce00010" @@ -33937,7 +33387,7 @@ - "sce01130" - metanetx.reaction: "MNXR95746" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0178" - name: "aldehyde dehydrogenase (indole-3-acetaldehyde, NADP)" @@ -33952,11 +33402,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER073W or YOR374W" - eccodes: "1.2.1.5" - - references: "9675847" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.5" - bigg.reaction: "ALDD20ym" - kegg.pathway: - "sce00010" @@ -33972,9 +33418,9 @@ - "sce01110" - "sce01130" - metanetx.reaction: "MNXR95746" - - pmid: "9675847" + - pubmed: "9675847" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0179" - name: "aldehyde dehydrogenase (isoamyl alcohol, NAD)" @@ -33987,12 +33433,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - references: "12702265" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - bigg.reaction: "ALCD24xi" - kegg.pathway: - "sce00010" @@ -34003,9 +33448,9 @@ - "sce01200" - kegg.reaction: "R05685" - metanetx.reaction: "MNXR138038" - - pmid: "12702265" + - pubmed: "12702265" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0180" - name: "aldehyde dehydrogenase (isoamyl alcohol, NAD)" @@ -34019,11 +33464,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - eccodes: "1.1.1.1" - - references: "12499363" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.1" - bigg.reaction: "ALCD24xim" - kegg.pathway: - "sce00010" @@ -34033,9 +33474,9 @@ - "sce01130" - kegg.reaction: "R05685" - metanetx.reaction: "MNXR138038" - - pmid: "12499363" + - pubmed: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0181" - name: "aldehyde dehydrogenase (isoamyl alcohol, NADP)" @@ -34049,11 +33490,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YMR318C" - eccodes: "1.1.1.2" - - references: "11742541; 12423374" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.2" - bigg.reaction: "ALCD24yi" - kegg.pathway: - "sce00010" @@ -34063,11 +33500,11 @@ - "sce01130" - kegg.reaction: "R05686" - metanetx.reaction: "MNXR138039" - - pmid: + - pubmed: - "11742541" - "12423374" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0182" - name: "aldehyde dehydrogenase (isobutyl alcohol, NAD)" @@ -34080,12 +33517,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - references: "12702265" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - bigg.reaction: "ALCD23xi" - kegg.pathway: - "sce00010" @@ -34095,9 +33531,9 @@ - "sce01130" - "sce01200" - metanetx.reaction: "MNXR95718" - - pmid: "12702265" + - pubmed: "12702265" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0183" - name: "aldehyde dehydrogenase (isobutyl alcohol, NAD)" @@ -34111,11 +33547,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - eccodes: "1.1.1.1" - - references: "12499363" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.1" - bigg.reaction: "ALCD23xim" - kegg.pathway: - "sce00010" @@ -34124,9 +33556,9 @@ - "sce01110" - "sce01130" - metanetx.reaction: "MNXR95718" - - pmid: "12499363" + - pubmed: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0184" - name: "aldehyde dehydrogenase (isobutyl alcohol, NADP)" @@ -34140,11 +33572,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YMR318C" - eccodes: "1.1.1.2" - - references: "11742541; 12423374" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.2" - bigg.reaction: "ALCD23yi" - kegg.pathway: - "sce00010" @@ -34153,11 +33581,11 @@ - "sce01110" - "sce01130" - metanetx.reaction: "MNXR95719" - - pmid: + - pubmed: - "11742541" - "12423374" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0185" - name: "aldehyde dehydrogenase (phenylacetaldehyde, NAD)" @@ -34172,11 +33600,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR169C or YMR170C" - eccodes: "1.2.1.3" - - references: "8801420" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - bigg.reaction: "ALDD19xr" - kegg.pathway: - "sce00010" @@ -34187,9 +33611,9 @@ - "sce01110" - kegg.reaction: "R02536" - metanetx.reaction: "MNXR95743" - - pmid: "8801420" + - pubmed: "8801420" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0186" - name: "aldehyde dehydrogenase (tryptophol, NAD)" @@ -34202,12 +33626,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - references: "12702265" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - bigg.reaction: "ALCD26xi" - kegg.pathway: - "sce00010" @@ -34218,9 +33641,9 @@ - "sce01200" - kegg.reaction: "R02679" - metanetx.reaction: "MNXR95724" - - pmid: "12702265" + - pubmed: "12702265" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0187" - name: "aldehyde dehydrogenase (tryptophol, NAD)" @@ -34234,11 +33657,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - eccodes: "1.1.1.1" - - references: "12499363" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.1" - bigg.reaction: "ALCD26xim" - kegg.pathway: - "sce00010" @@ -34248,9 +33667,9 @@ - "sce01130" - kegg.reaction: "R02679" - metanetx.reaction: "MNXR95724" - - pmid: "12499363" + - pubmed: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0188" - name: "alkaline phosphatase (dihydroneopterin)" @@ -34263,12 +33682,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR481C" - - eccodes: "3.1.3.1; 3.1.3.54; 3.1.7.6" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.1.3.1" + - "3.1.3.54" + - "3.1.7.6" - annotation: !!omap - - ec-code: "3.1.3.1; 3.1.3.54; 3.1.7.6" - bigg.reaction: "AKP1" - kegg.pathway: - "sce00730" @@ -34276,7 +33694,7 @@ - kegg.reaction: "R04620" - metanetx.reaction: "MNXR139295" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0189" - name: "allantoate amidinohydrolase" @@ -34289,18 +33707,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YIR029W" - eccodes: "3.5.3.4" - - references: "4604238" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.3.4" - bigg.reaction: "ALLTAHr" - kegg.pathway: "sce00230" - kegg.reaction: "R02422" - metanetx.reaction: "MNXR95767" - - pmid: "4604238" + - pubmed: "4604238" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0190" - name: "allantoinase, reaction" @@ -34313,18 +33727,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YIR027C" - eccodes: "3.5.2.5" - - references: "4604238" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.2.5" - bigg.reaction: "ALLTN" - kegg.pathway: "sce00230" - kegg.reaction: "R02424" - metanetx.reaction: "MNXR95769" - - pmid: "4604238" + - pubmed: "4604238" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0191" - name: "allophanate hydrolase" @@ -34337,12 +33747,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR208C" - - eccodes: "3.5.1.54; 6.3.4.6" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.5.1.54" + - "6.3.4.6" - annotation: !!omap - - ec-code: "3.5.1.54; 6.3.4.6" - bigg.reaction: "ALPHNH" - kegg.pathway: - "sce00220" @@ -34350,7 +33758,7 @@ - kegg.reaction: "R00005" - metanetx.reaction: "MNXR95786" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0192" - name: "alpha 1,2-mannosyltransferase" @@ -34364,23 +33772,19 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR199W or YBR205W or YDR483W or YJL139C or YKR061W or YNL029C or YOR099W or YPL053C" - eccodes: "2.4.1.-" - - references: "14752117; 21623372; 8631921; 9020857" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.-" - kegg.pathway: - "sce00513" - "sce00514" - kegg.reaction: "R05002" - metanetx.reaction: "MNXR109280" - - pmid: + - pubmed: - "14752117" - "21623372" - "8631921" - "9020857" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0193" - name: "alpha,alpha-trehalase" @@ -34392,17 +33796,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR026W or YBR001C" - eccodes: "3.2.1.28" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.28" - bigg.reaction: "TREHv" - kegg.pathway: "sce00500" - kegg.reaction: "R00010" - metanetx.reaction: "MNXR95163" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0194" - name: "alpha,alpha-trehalase" @@ -34414,18 +33814,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR001C" - eccodes: "3.2.1.28" - - references: "8764988" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.28" - bigg.reaction: "TREH" - kegg.pathway: "sce00500" - kegg.reaction: "R00010" - metanetx.reaction: "MNXR95163" - - pmid: "8764988" + - pubmed: "8764988" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0195" - name: "alpha,alpha-trehalose-phosphate synthase (UDP-forming)" @@ -34438,19 +33834,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR126C and YDR074W and YML100W) or (YBR126C and YDR074W and YMR261C)" - - eccodes: "2.4.1.15; 3.1.3.12" - - references: "21623372" - - subsystem: - - "" + - eccodes: + - "2.4.1.15" + - "3.1.3.12" - annotation: !!omap - - ec-code: "2.4.1.15; 3.1.3.12" - bigg.reaction: "TRE6PS" - kegg.pathway: "sce00500" - kegg.reaction: "R00836" - metanetx.reaction: "MNXR143415" - - pmid: "21623372" + - pubmed: "21623372" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0198" - name: "alpha-glucosidase" @@ -34461,12 +33855,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR299W or YGR287C or YGR292W or YIL172C or YJL216C or YJL221C" - - eccodes: "3.2.1.10; 3.2.1.20" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.2.1.10" + - "3.2.1.20" - annotation: !!omap - - ec-code: "3.2.1.10; 3.2.1.20" - bigg.reaction: "MALT" - kegg.pathway: - "sce00052" @@ -34474,7 +33866,7 @@ - kegg.reaction: "R00028" - metanetx.reaction: "MNXR101350" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0199" - name: "amidase" @@ -34487,17 +33879,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR242W or YMR293C" - eccodes: "6.3.5.7" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.5.7" - bigg.reaction: "AMID" - kegg.pathway: "sce00970" - kegg.reaction: "R03180" - metanetx.reaction: "MNXR95812" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0200" - name: "Aminoacetone:oxygen oxidoreductase(deaminating)(flavin-containing)" @@ -34511,18 +33899,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "3086094" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AACTOOR" - kegg.reaction: "R02529" - metanetx.reaction: "MNXR95149" - - pmid: "3086094" + - pubmed: "3086094" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_0201" - name: "Aminobutyraldehyde dehydrogenase" @@ -34537,11 +33920,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR374W" - eccodes: "1.2.1.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.5" - bigg.reaction: "ABUTDm" - kegg.pathway: - "sce00010" @@ -34559,7 +33938,7 @@ - kegg.reaction: "R02549" - metanetx.reaction: "MNXR95191" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0202" - name: "anthranilate phosphoribosyltransferase" @@ -34572,11 +33951,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR354W" - eccodes: "2.4.2.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.18" - bigg.reaction: "ANPRT" - kegg.pathway: - "sce00400" @@ -34586,7 +33961,7 @@ - kegg.reaction: "R01073" - metanetx.reaction: "MNXR95842" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0203" - name: "anthranilate synthase" @@ -34601,11 +33976,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER090W and YKL211C" - eccodes: "4.1.3.27" - - references: "8001582" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.3.27" - bigg.reaction: "ANS" - kegg.pathway: - "sce00400" @@ -34614,9 +33985,9 @@ - "sce01230" - kegg.reaction: "R00986" - metanetx.reaction: "MNXR95843" - - pmid: "8001582" + - pubmed: "8001582" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0204" - name: "Ap4A hydrolase" @@ -34629,17 +34000,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR305C" - eccodes: "3.6.1.29" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.29" - bigg.reaction: "AP4AH" - kegg.pathway: "sce00230" - kegg.reaction: "R00125" - metanetx.reaction: "MNXR95856" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0205" - name: "arabinose reductase" @@ -34652,18 +34019,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR104W" - - eccodes: "1.1.1.-; 1.1.1.21" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.21" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.21" - bigg.reaction: "ARABR" - kegg.pathway: "sce00040" - kegg.reaction: "R01759" - metanetx.reaction: "MNXR107158" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0206" - name: "arginase" @@ -34676,11 +34041,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL111W" - eccodes: "3.5.3.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.3.1" - bigg.reaction: "ARGN" - kegg.pathway: - "sce00220" @@ -34691,7 +34052,7 @@ - kegg.reaction: "R00551" - metanetx.reaction: "MNXR95945" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0207" - name: "argininosuccinate lyase" @@ -34703,11 +34064,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR018C" - eccodes: "4.3.2.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.3.2.1" - bigg.reaction: "ARGSL" - kegg.pathway: - "sce00220" @@ -34718,7 +34075,7 @@ - kegg.reaction: "R01086" - metanetx.reaction: "MNXR138059" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0208" - name: "argininosuccinate synthase" @@ -34734,11 +34091,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL058W" - eccodes: "6.3.4.5" - - references: "35347" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.4.5" - bigg.reaction: "ARGSS" - kegg.pathway: - "sce00220" @@ -34748,9 +34101,9 @@ - "sce01230" - kegg.reaction: "R01954" - metanetx.reaction: "MNXR138060" - - pmid: "35347" + - pubmed: "35347" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0209" - name: "arginyl-tRNA synthetase" @@ -34765,17 +34118,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR341C" - eccodes: "6.1.1.19" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.19" - bigg.reaction: "ARGTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03646" - metanetx.reaction: "MNXR95950" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0210" - name: "arginyl-tRNA synthetase" @@ -34790,17 +34139,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR091C" - eccodes: "6.1.1.19" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.19" - bigg.reaction: "ARGTRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R03646" - metanetx.reaction: "MNXR95950" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0211" - name: "asparagine synthase (glutamine-hydrolysing)" @@ -34818,20 +34163,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR124W or YPR145W" - eccodes: "6.3.5.4" - - references: "9881155" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.5.4" - bigg.reaction: "ASNS1" - kegg.pathway: - "sce00250" - "sce01110" - kegg.reaction: "R00578" - metanetx.reaction: "MNXR96059" - - pmid: "9881155" + - pubmed: "9881155" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0212" - name: "Asparaginyl-tRNA synthetase" @@ -34846,18 +34187,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR019C" - eccodes: "6.1.1.22" - - references: "9605503" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.22" - bigg.reaction: "ASNTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03648" - metanetx.reaction: "MNXR96064" - - pmid: "9605503" + - pubmed: "9605503" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0213" - name: "asparaginyl-tRNA synthetase, miotchondrial" @@ -34872,18 +34209,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR024C" - eccodes: "6.1.1.22" - - references: "9605503" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.22" - bigg.reaction: "ASNTRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R03648" - metanetx.reaction: "MNXR96064" - - pmid: "9605503" + - pubmed: "9605503" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0214" - name: "aspartate carbamoyltransferase" @@ -34896,12 +34229,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL130C" - - eccodes: "2.1.3.2; 6.3.5.5" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.1.3.2" + - "6.3.5.5" - annotation: !!omap - - ec-code: "2.1.3.2; 6.3.5.5" - bigg.reaction: "ASPCT" - kegg.pathway: - "sce00240" @@ -34909,7 +34240,7 @@ - kegg.reaction: "R01397" - metanetx.reaction: "MNXR96080" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0215" - name: "aspartate kinase" @@ -34922,11 +34253,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER052C" - eccodes: "2.7.2.4" - - references: "9315655" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.2.4" - bigg.reaction: "ASPK" - kegg.pathway: - "sce00260" @@ -34939,9 +34266,9 @@ - "sce01230" - kegg.reaction: "R00480" - metanetx.reaction: "MNXR96085" - - pmid: "9315655" + - pubmed: "9315655" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0216" - name: "aspartate transaminase" @@ -34954,11 +34281,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR027C" - eccodes: "2.6.1.1" - - references: "1859361" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.1" - bigg.reaction: "ASPTA" - kegg.pathway: - "sce00220" @@ -34975,9 +34298,9 @@ - "sce01230" - kegg.reaction: "R00355" - metanetx.reaction: "MNXR96079" - - pmid: "1859361" + - pubmed: "1859361" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0217" - name: "aspartate transaminase" @@ -34990,11 +34313,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL106W" - eccodes: "2.6.1.1" - - references: "1482685" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.1" - bigg.reaction: "ASPTAm" - kegg.pathway: - "sce00220" @@ -35011,9 +34330,9 @@ - "sce01230" - kegg.reaction: "R00355" - metanetx.reaction: "MNXR96079" - - pmid: "1482685" + - pubmed: "1482685" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0218" - name: "aspartate transaminase" @@ -35026,11 +34345,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR027C" - eccodes: "2.6.1.1" - - references: "9288922" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.1" - bigg.reaction: "ASPTAp" - kegg.pathway: - "sce00220" @@ -35047,9 +34362,9 @@ - "sce01230" - kegg.reaction: "R00355" - metanetx.reaction: "MNXR96079" - - pmid: "9288922" + - pubmed: "9288922" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0219" - name: "aspartate-semialdehyde dehydrogenase" @@ -35064,11 +34379,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR158W" - eccodes: "1.2.1.11" - - references: "2570346" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.11" - bigg.reaction: "ASAD" - kegg.pathway: - "sce00260" @@ -35081,9 +34392,9 @@ - "sce01230" - kegg.reaction: "R02291" - metanetx.reaction: "MNXR96039" - - pmid: "2570346" + - pubmed: "2570346" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0220" - name: "Aspartyl-tRNA synthetase" @@ -35098,18 +34409,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL018C" - eccodes: "6.1.1.12" - - references: "3902099" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.12" - bigg.reaction: "ASPTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R05577" - metanetx.reaction: "MNXR96101" - - pmid: "3902099" + - pubmed: "3902099" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0221" - name: "Aspartyl-tRNA synthetase" @@ -35124,18 +34431,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL104W" - eccodes: "6.1.1.12" - - references: "2668951" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.12" - bigg.reaction: "ASPTRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R05577" - metanetx.reaction: "MNXR96101" - - pmid: "2668951" + - pubmed: "2668951" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0222" - name: "ATP adenylyltransferase" @@ -35148,18 +34451,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR530C" - - eccodes: "2.7.7.5; 2.7.7.53" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.7.7.5" + - "2.7.7.53" - annotation: !!omap - - ec-code: "2.7.7.5; 2.7.7.53" - bigg.reaction: "ATPATF1" - kegg.pathway: "sce00230" - kegg.reaction: "R00126" - metanetx.reaction: "MNXR95435" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0223" - name: "ATP adenylyltransferase" @@ -35172,19 +34473,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL050C" - - eccodes: "2.7.7.5; 2.7.7.53" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.7.7.5" + - "2.7.7.53" - annotation: !!omap - - ec-code: "2.7.7.5; 2.7.7.53" - bigg.reaction: "ATPATF2" - kegg.pathway: - "sce00230" - "sce00920" - metanetx.reaction: "MNXR136085" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0224" - name: "ATP adenylyltransferase" @@ -35197,19 +34496,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL050C" - - eccodes: "2.7.7.5; 2.7.7.53" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.7.7.5" + - "2.7.7.53" - annotation: !!omap - - ec-code: "2.7.7.5; 2.7.7.53" - bigg.reaction: "ATPATF3" - kegg.pathway: - "sce00230" - "sce00920" - metanetx.reaction: "MNXR96127" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0225" - name: "ATP phosphoribosyltransferase" @@ -35222,11 +34519,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER055C" - eccodes: "2.4.2.17" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.17" - bigg.reaction: "ATPPRT" - kegg.pathway: - "sce00340" @@ -35235,7 +34528,7 @@ - kegg.reaction: "R01071" - metanetx.reaction: "MNXR96132" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0226" - name: "ATP synthase" @@ -35250,19 +34543,15 @@ - upper_bound: 1000 - gene_reaction_rule: "(Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR322C-A and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W) or (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W and YPR020W) or (Q0080 and Q0085 and Q0130 and YBL099W and YBR039W and YDL004W and YDR298C and YDR322C-A and YDR377W and YJR121W and YKL016C and YLR295C and YML081C-A and YPL078C and YPL271W and YJL180C and YLR393W and YNL315C and YOL077W-A and YCL005W-A)" - eccodes: "3.6.3.14" - - references: "6223276; 10576729" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.3.14" - bigg.reaction: "ATPS3m" - kegg.pathway: "sce00190" - metanetx.reaction: "MNXR96136" - - pmid: + - pubmed: - "6223276" - "10576729" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0227" - name: "ATPase, cytosolic" @@ -35275,12 +34564,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YCR024C-A and YEL017C-A and YGL008C) or (YCR024C-A and YEL017C-A and YPL036W) or YER005W" - - eccodes: "3.6.1.5; 3.6.3.6" - - references: "10409709" - - subsystem: - - "" + - eccodes: + - "3.6.1.5" + - "3.6.3.6" - annotation: !!omap - - ec-code: "3.6.1.5; 3.6.3.6" - bigg.reaction: "ATPS" - kegg.pathway: - "sce00190" @@ -35288,9 +34575,9 @@ - "sce00240" - kegg.reaction: "R00086" - metanetx.reaction: "MNXR96131" - - pmid: "10409709" + - pubmed: "10409709" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0228" - name: "beta-1,4 mannosyltransferase" @@ -35304,19 +34591,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR110W" - eccodes: "2.4.1.142" - - references: "6368538" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.142" - kegg.pathway: - "sce00510" - "sce00513" - kegg.reaction: "R04502" - metanetx.reaction: "MNXR108930" - - pmid: "6368538" + - pubmed: "6368538" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0229" - name: "biotin synthase" @@ -35329,14 +34612,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR286C" - eccodes: "2.8.1.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.8.1.6" - kegg.pathway: "sce00780" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0230" - name: "biotin-[acetyl-CoA-carboxylase] ligase" @@ -35349,19 +34628,20 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL141W" - - eccodes: "6.3.4.-; 6.3.4.10; 6.3.4.11; 6.3.4.15; 6.3.4.9" - - references: "9688262" - - subsystem: - - "" + - eccodes: + - "6.3.4.-" + - "6.3.4.10" + - "6.3.4.11" + - "6.3.4.15" + - "6.3.4.9" - annotation: !!omap - - ec-code: "6.3.4.-; 6.3.4.10; 6.3.4.11; 6.3.4.15; 6.3.4.9" - bigg.reaction: "BACCL" - kegg.pathway: "sce00780" - kegg.reaction: "R01074" - metanetx.reaction: "MNXR96208" - - pmid: "9688262" + - pubmed: "9688262" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0231" - name: "C-14 sterol reductase" @@ -35375,11 +34655,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL280C" - eccodes: "1.3.1.70" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.70" - bigg.reaction: "C14STR" - kegg.pathway: - "sce00100" @@ -35388,7 +34664,7 @@ - kegg.reaction: "R05639" - metanetx.reaction: "MNXR109728" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0233" - name: "C-22 sterol desaturase (NADP)" @@ -35404,11 +34680,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR015C" - eccodes: "1.14.19.41" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.19.41" - bigg.reaction: "C22STDS" - kegg.pathway: - "sce00100" @@ -35416,7 +34688,7 @@ - kegg.reaction: "R07506" - metanetx.reaction: "MNXR123636" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0234" - name: "C-3 sterol dehydrogenase" @@ -35430,17 +34702,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL001C" - eccodes: "1.1.1.170" - - references: "22194828" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.170" - kegg.pathway: - "sce00100" - "sce01130" - - pmid: "22194828" + - pubmed: "22194828" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0235" - name: "C-3 sterol dehydrogenase (4-methylzymosterol)" @@ -35454,17 +34722,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL001C" - eccodes: "1.1.1.170" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.170" - kegg.pathway: - "sce00100" - "sce01130" - metanetx.reaction: "MNXR128630" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0236" - name: "C-3 sterol keto reductase (4-methylzymosterol)" @@ -35478,18 +34742,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR100W" - eccodes: "1.1.1.270" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.270" - kegg.pathway: - "sce00100" - "sce01130" - kegg.reaction: "R07495" - metanetx.reaction: "MNXR111123" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0237" - name: "C-3 sterol keto reductase (zymosterol)" @@ -35503,18 +34763,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR100W" - eccodes: "1.1.1.270" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.270" - bigg.reaction: "HMR_1509" - kegg.pathway: - "sce00100" - "sce01130" - metanetx.reaction: "MNXR123719" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0238" - name: "C-4 methyl sterol oxidase" @@ -35530,17 +34786,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR060W" - eccodes: "1.14.13.72" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.13.72" - kegg.pathway: - "sce00100" - "sce01130" - metanetx.reaction: "MNXR128521" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0239" - name: "C-4 methyl sterol oxidase" @@ -35556,18 +34808,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR060W" - eccodes: "1.14.13.72" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.13.72" - bigg.reaction: "HMR_1503" - kegg.pathway: - "sce00100" - "sce01130" - metanetx.reaction: "MNXR128522" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0240" - name: "C-4 methyl sterol oxidase" @@ -35582,17 +34830,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR060W" - eccodes: "1.14.13.72" - - references: "22194828" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.13.72" - kegg.pathway: - "sce00100" - "sce01130" - - pmid: "22194828" + - pubmed: "22194828" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0241" - name: "C-4 sterol methyl oxidase (4,4-dimethylzymosterol)" @@ -35608,18 +34852,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR060W" - eccodes: "1.14.13.72" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.13.72" - kegg.pathway: - "sce00100" - "sce01130" - kegg.reaction: "R07509" - metanetx.reaction: "MNXR111130" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0242" - name: "C-5 sterol desaturase" @@ -35635,11 +34875,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR056W" - eccodes: "1.14.19.20" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.19.20" - bigg.reaction: "C5STDS" - kegg.pathway: - "sce00100" @@ -35647,7 +34883,7 @@ - "sce01130" - metanetx.reaction: "MNXR126641" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0243" - name: "C-8 sterol isomerase" @@ -35658,11 +34894,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR202W" - eccodes: "5.-.-.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.-.-.-" - bigg.reaction: "C8STI" - kegg.pathway: - "sce00100" @@ -35670,7 +34902,7 @@ - kegg.reaction: "R07497" - metanetx.reaction: "MNXR96432" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0244" - name: "C-s24 sterol reductase" @@ -35684,11 +34916,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL012W" - eccodes: "1.3.1.71" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.71" - bigg.reaction: "C24STRer" - kegg.pathway: - "sce00100" @@ -35696,7 +34924,7 @@ - kegg.reaction: "R05641" - metanetx.reaction: "MNXR96407" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0249" - name: "CAAX farnesyltransferase" @@ -35709,19 +34937,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL090C and YKL019W" - eccodes: "2.5.1.58" - - references: "1763050" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.58" - kegg.pathway: - "sce00900" - "sce01130" - kegg.reaction: "R07273" - metanetx.reaction: "MNXR110956" - - pmid: "1763050" + - pubmed: "1763050" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0250" - name: "carbamoyl-phosphate synthase (glutamine-hydrolysing)" @@ -35738,12 +34962,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL130C and YJR109C and YOR303W" - - eccodes: "2.1.3.2; 6.3.5.5" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.1.3.2" + - "6.3.5.5" - annotation: !!omap - - ec-code: "2.1.3.2; 6.3.5.5" - bigg.reaction: "CBPS" - kegg.pathway: - "sce00240" @@ -35751,7 +34973,7 @@ - kegg.reaction: "R00575" - metanetx.reaction: "MNXR96485" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0252" - name: "carnitine O-acetyltransferase" @@ -35764,18 +34986,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YAR035W or YER024W" - eccodes: "2.3.1.7" - - references: "11329169" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.7" - bigg.reaction: "CSNATr" - kegg.pathway: "sce04146" - kegg.reaction: "R02396" - metanetx.reaction: "MNXR96926" - - pmid: "11329169" + - pubmed: "11329169" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0253" - name: "carnitine O-acetyltransferase" @@ -35788,17 +35006,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YML042W" - eccodes: "2.3.1.7" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.7" - bigg.reaction: "CSNATp" - kegg.pathway: "sce04146" - kegg.reaction: "R02396" - metanetx.reaction: "MNXR96926" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0254" - name: "carnitine O-acetyltransferase" @@ -35811,17 +35025,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YML042W" - eccodes: "2.3.1.7" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.7" - bigg.reaction: "CSNATm" - kegg.pathway: "sce04146" - kegg.reaction: "R02396" - metanetx.reaction: "MNXR96926" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0255" - name: "catalase" @@ -35833,11 +35043,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR088W" - eccodes: "1.11.1.6" - - references: "3536508" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.11.1.6" - bigg.reaction: "CAT" - kegg.pathway: - "sce00380" @@ -35850,9 +35056,9 @@ - "sce04213" - kegg.reaction: "R00009" - metanetx.reaction: "MNXR96455" - - pmid: "3536508" + - pubmed: "3536508" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0256" - name: "catalase" @@ -35864,11 +35070,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR256C" - eccodes: "1.11.1.6" - - references: "9931255" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.11.1.6" - bigg.reaction: "CATp" - kegg.pathway: - "sce00380" @@ -35881,9 +35083,9 @@ - "sce04213" - kegg.reaction: "R00009" - metanetx.reaction: "MNXR96455" - - pmid: "9931255" + - pubmed: "9931255" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0259" - name: "ceramide-1 hydroxylase (24C)" @@ -35899,18 +35101,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR297W" - eccodes: "1.-.-.-" - - references: "18296751; 9368039" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.-.-.-" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126673" - - pmid: + - pubmed: - "18296751" - "9368039" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0260" - name: "ceramide-1 hydroxylase (24C)" @@ -35926,17 +35124,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR272C" - eccodes: "1.-.-.-" - - references: "18296751; 9368039" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.-.-.-" - metanetx.reaction: "MNXR126668" - - pmid: + - pubmed: - "18296751" - "9368039" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0261" - name: "ceramide-1 hydroxylase (26C)" @@ -35952,18 +35146,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR297W" - eccodes: "1.-.-.-" - - references: "18296751; 9368039" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.-.-.-" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126661" - - pmid: + - pubmed: - "18296751" - "9368039" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0262" - name: "ceramide-1 hydroxylase (26C)" @@ -35979,17 +35169,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR272C" - eccodes: "1.-.-.-" - - references: "18296751; 9368039" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.-.-.-" - metanetx.reaction: "MNXR126662" - - pmid: + - pubmed: - "18296751" - "9368039" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0263" - name: "ceramide-1 synthase (24C)" @@ -36003,20 +35189,16 @@ - upper_bound: 1000 - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" - eccodes: "2.3.1.24" - - references: "11387200; 15692566; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.24" - bigg.reaction: "CERS124er" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126659" - - pmid: + - pubmed: - "11387200" - "15692566" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0264" - name: "ceramide-1 synthase (26C)" @@ -36030,21 +35212,17 @@ - upper_bound: 1000 - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" - eccodes: "2.3.1.24" - - references: "11387200; 15692566; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.24" - bigg.reaction: "CERS126er" - kegg.pathway: "sce00600" - kegg.reaction: "R06517" - metanetx.reaction: "MNXR126619" - - pmid: + - pubmed: - "11387200" - "15692566" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0265" - name: "ceramide-2 synthase (24C)" @@ -36058,20 +35236,16 @@ - upper_bound: 1000 - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" - eccodes: "2.3.1.24" - - references: "11387200; 15692566; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.24" - bigg.reaction: "CERS224er" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126660" - - pmid: + - pubmed: - "11387200" - "15692566" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0266" - name: "ceramide-2 synthase (26C)" @@ -36085,21 +35259,17 @@ - upper_bound: 1000 - gene_reaction_rule: "(YHL003C and YMR298W) or (YKL008C and YMR298W)" - eccodes: "2.3.1.24" - - references: "11387200; 15692566; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.24" - bigg.reaction: "CERS226er" - kegg.pathway: "sce00600" - kegg.reaction: "R06527" - metanetx.reaction: "MNXR126618" - - pmid: + - pubmed: - "11387200" - "15692566" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0267" - name: "ceramide-3 synthase (24C)" @@ -36115,17 +35285,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR272C" - eccodes: "1.-.-.-" - - references: "18296751; 9368039" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.-.-.-" - metanetx.reaction: "MNXR126670" - - pmid: + - pubmed: - "18296751" - "9368039" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0268" - name: "ceramide-3 synthase (26C)" @@ -36141,17 +35307,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR272C" - eccodes: "1.-.-.-" - - references: "18296751; 9368039" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.-.-.-" - metanetx.reaction: "MNXR126669" - - pmid: + - pubmed: - "18296751" - "9368039" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0269" - name: "ceramide-4 synthase (24C)" @@ -36167,17 +35329,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR272C" - eccodes: "1.-.-.-" - - references: "18296751; 9368039" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.-.-.-" - metanetx.reaction: "MNXR126672" - - pmid: + - pubmed: - "18296751" - "9368039" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0270" - name: "ceramide-4 synthase (26C)" @@ -36193,17 +35351,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR272C" - eccodes: "1.-.-.-" - - references: "18296751; 9368039" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.-.-.-" - metanetx.reaction: "MNXR126671" - - pmid: + - pubmed: - "18296751" - "9368039" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0271" - name: "chitin deacetylase" @@ -36217,16 +35371,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR307W or YLR308W" - eccodes: "3.5.1.41" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.41" - kegg.pathway: "sce00520" - kegg.reaction: "R02333" - metanetx.reaction: "MNXR107444" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0272" - name: "chitin synthase" @@ -36239,17 +35389,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR023C or YBR038W or YNL192W" - eccodes: "2.4.1.16" - - references: "16408321" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.16" - kegg.pathway: "sce00520" - kegg.reaction: "R02335" - metanetx.reaction: "MNXR107446" - - pmid: "16408321" + - pubmed: "16408321" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0273" - name: "choline kinase" @@ -36263,18 +35409,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR133W" - eccodes: "2.7.1.32" - - references: "10329685" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.32" - bigg.reaction: "CHOLK" - kegg.pathway: "sce00564" - kegg.reaction: "R01021" - metanetx.reaction: "MNXR96702" - - pmid: "10329685" + - pubmed: "10329685" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0274" - name: "choline phosphate cytididyltransferase" @@ -36288,11 +35430,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR202C" - eccodes: "2.7.7.15" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.15" - bigg.reaction: "CHLPCTD" - kegg.pathway: - "sce00440" @@ -36300,7 +35438,7 @@ - kegg.reaction: "R01890" - metanetx.reaction: "MNXR96686" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0278" - name: "chorismate mutase" @@ -36311,11 +35449,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR060C" - eccodes: "5.4.99.5" - - references: "3027508" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.4.99.5" - bigg.reaction: "CHORM" - kegg.pathway: - "sce00400" @@ -36324,9 +35458,9 @@ - "sce01230" - kegg.reaction: "R01715" - metanetx.reaction: "MNXR96708" - - pmid: "3027508" + - pubmed: "3027508" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0279" - name: "chorismate synthase" @@ -36338,11 +35472,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL148W" - eccodes: "4.2.3.5" - - references: "8971708" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.3.5" - bigg.reaction: "CHORS" - kegg.pathway: - "sce00400" @@ -36351,9 +35481,9 @@ - "sce01230" - kegg.reaction: "R01714" - metanetx.reaction: "MNXR96709" - - pmid: "8971708" + - pubmed: "8971708" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0280" - name: "cis-aconitate(3-) to isocitrate" @@ -36365,11 +35495,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR304C" - eccodes: "4.2.1.3" - - references: "21623372" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.3" - bigg.reaction: "ACN_b_m" - kegg.pathway: - "sce00020" @@ -36381,9 +35507,9 @@ - "sce01230" - kegg.reaction: "R01900" - metanetx.reaction: "MNXR95387" - - pmid: "21623372" + - pubmed: "21623372" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0281" - name: "cis-prenyltransferase step 01" @@ -36396,19 +35522,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - kegg.reaction: "R02061" - metanetx.reaction: "MNXR99650" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0282" - name: "cis-prenyltransferase step 02" @@ -36421,19 +35543,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - kegg.reaction: "R07475" - metanetx.reaction: "MNXR100137" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0283" - name: "cis-prenyltransferase step 03" @@ -36446,19 +35564,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - kegg.reaction: "R05613" - metanetx.reaction: "MNXR103150" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0284" - name: "cis-prenyltransferase step 04" @@ -36471,19 +35585,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - kegg.reaction: "R05612" - metanetx.reaction: "MNXR100621" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0285" - name: "cis-prenyltransferase step 05" @@ -36496,19 +35606,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - kegg.reaction: "R05611" - metanetx.reaction: "MNXR109713" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0286" - name: "cis-prenyltransferase step 06" @@ -36521,19 +35627,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - kegg.reaction: "R07267" - metanetx.reaction: "MNXR110950" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0287" - name: "cis-prenyltransferase step 07" @@ -36546,19 +35648,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - kegg.reaction: "R08747" - metanetx.reaction: "MNXR112246" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0288" - name: "cis-prenyltransferase step 08" @@ -36571,18 +35669,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - metanetx.reaction: "MNXR105052" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0289" - name: "cis-prenyltransferase step 09" @@ -36595,17 +35689,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0290" - name: "cis-prenyltransferase step 10" @@ -36618,17 +35708,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0291" - name: "cis-prenyltransferase step 11" @@ -36641,17 +35727,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0292" - name: "cis-prenyltransferase step 12" @@ -36664,17 +35746,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0293" - name: "cis-prenyltransferase step 13" @@ -36687,17 +35765,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0294" - name: "cis-prenyltransferase step 14" @@ -36710,17 +35784,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0295" - name: "cis-prenyltransferase step 15" @@ -36733,17 +35803,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0296" - name: "cis-prenyltransferase step 16" @@ -36756,17 +35822,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0297" - name: "cis-prenyltransferase step 17" @@ -36779,17 +35841,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0298" - name: "cis-prenyltransferase step 18" @@ -36802,17 +35860,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0299" - name: "cis-prenyltransferase step 19" @@ -36825,17 +35879,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR002C or YMR101C" - eccodes: "2.5.1.87" - - references: "12702274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.87" - kegg.pathway: - "sce00900" - "sce01110" - - pmid: "12702274" + - pubmed: "12702274" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0300" - name: "citrate synthase" @@ -36850,11 +35900,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR001C or YPR001W" - eccodes: "2.3.3.1" - - references: "9140965" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.3.1" - bigg.reaction: "CSm" - kegg.pathway: - "sce00020" @@ -36866,9 +35912,9 @@ - "sce01230" - kegg.reaction: "R00351" - metanetx.reaction: "MNXR96920" - - pmid: "9140965" + - pubmed: "9140965" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0301" - name: "citrate synthase, peroxisomal" @@ -36883,11 +35929,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR005C" - eccodes: "2.3.3.16" - - references: "10587442" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.3.16" - bigg.reaction: "CSp" - kegg.pathway: - "sce00020" @@ -36899,9 +35941,9 @@ - "sce01230" - kegg.reaction: "R00351" - metanetx.reaction: "MNXR96920" - - pmid: "10587442" + - pubmed: "10587442" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0302" - name: "citrate to cis-aconitate(3-)" @@ -36913,11 +35955,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR304C" - eccodes: "4.2.1.3" - - references: "21623372" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.3" - bigg.reaction: "ACN_a_m" - kegg.pathway: - "sce00020" @@ -36929,9 +35967,9 @@ - "sce01230" - kegg.reaction: "R01325" - metanetx.reaction: "MNXR95386" - - pmid: "21623372" + - pubmed: "21623372" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0303" - name: "citrate to cis-aconitate(3-), cytoplasmic" @@ -36943,11 +35981,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR304C" - eccodes: "4.2.1.3" - - references: "15975908" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.3" - bigg.reaction: "ACONTa" - kegg.pathway: - "sce00020" @@ -36959,9 +35993,9 @@ - "sce01230" - kegg.reaction: "R01325" - metanetx.reaction: "MNXR95386" - - pmid: "15975908" + - pubmed: "15975908" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0304" - name: "coproporphyrinogen oxidase (O2 required)" @@ -36976,11 +36010,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR044W" - eccodes: "1.3.3.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.3" - bigg.reaction: "CPPPGO" - kegg.pathway: - "sce00860" @@ -36988,7 +36018,7 @@ - kegg.reaction: "R03220" - metanetx.reaction: "MNXR96880" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0306" - name: "CTP synthase (glutamine)" @@ -37006,17 +36036,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBL039C or YJR103W" - eccodes: "6.3.4.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.4.2" - bigg.reaction: "CTPS2" - kegg.pathway: "sce00240" - kegg.reaction: "R00573" - metanetx.reaction: "MNXR96945" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0307" - name: "CTP synthase (NH3)" @@ -37032,17 +36058,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBL039C or YJR103W" - eccodes: "6.3.4.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.4.2" - bigg.reaction: "CTPS1" - kegg.pathway: "sce00240" - kegg.reaction: "R00571" - metanetx.reaction: "MNXR96944" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0308" - name: "cystathionine b-lyase" @@ -37056,11 +36078,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR055W or YGL184C" - eccodes: "4.4.1.8" - - references: "10922376" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.4.1.8" - bigg.reaction: "CYSTL" - kegg.pathway: - "sce00270" @@ -37069,9 +36087,9 @@ - "sce01230" - kegg.reaction: "R01286" - metanetx.reaction: "MNXR96469" - - pmid: "10922376" + - pubmed: "10922376" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0309" - name: "cystathionine beta-synthase" @@ -37084,11 +36102,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR155W" - eccodes: "4.2.1.22" - - references: "10766767" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.22" - bigg.reaction: "CYSTS" - kegg.pathway: - "sce00260" @@ -37097,9 +36111,9 @@ - "sce01230" - kegg.reaction: "R01290" - metanetx.reaction: "MNXR97019" - - pmid: "10766767" + - pubmed: "10766767" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0310" - name: "cystathionine g-lyase" @@ -37113,11 +36127,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YAL012W" - eccodes: "4.4.1.1" - - references: "1577698" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.4.1.1" - bigg.reaction: "CYSTGL" - kegg.pathway: - "sce00260" @@ -37127,9 +36137,9 @@ - "sce01230" - kegg.reaction: "R01001" - metanetx.reaction: "MNXR97012" - - pmid: "1577698" + - pubmed: "1577698" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0311" - name: "cystathionine gamma-synthase" @@ -37143,11 +36153,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR130C" - eccodes: "2.5.1.48" - - references: "10821189" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.48" - bigg.reaction: "METB1" - kegg.pathway: - "sce00270" @@ -37158,9 +36164,9 @@ - "sce01230" - kegg.reaction: "R03217" - metanetx.reaction: "MNXR95637" - - pmid: "10821189" + - pubmed: "10821189" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0312" - name: "cysteine synthase" @@ -37172,12 +36178,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR303W" - - eccodes: "2.5.1.47; 2.5.1.49" - - references: "21623372; 7765825" - - subsystem: - - "" + - eccodes: + - "2.5.1.47" + - "2.5.1.49" - annotation: !!omap - - ec-code: "2.5.1.47; 2.5.1.49" - bigg.reaction: "CYSS" - kegg.pathway: - "sce00270" @@ -37188,11 +36192,11 @@ - "sce01230" - kegg.reaction: "R00897" - metanetx.reaction: "MNXR97007" - - pmid: + - pubmed: - "21623372" - "7765825" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0313" - name: "cysteinyl-tRNA synthetase" @@ -37207,18 +36211,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL247W" - eccodes: "6.1.1.16" - - references: "9523015" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.16" - bigg.reaction: "CYSTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03650" - metanetx.reaction: "MNXR97018" - - pmid: "9523015" + - pubmed: "9523015" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0314" - name: "cytidine deaminase" @@ -37232,17 +36232,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR245C" - eccodes: "3.5.4.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.4.5" - bigg.reaction: "CYTD" - kegg.pathway: "sce00240" - kegg.reaction: "R01878" - metanetx.reaction: "MNXR97039" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0315" - name: "cytidine kinase (GTP)" @@ -37256,17 +36252,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR012W" - eccodes: "2.7.1.48" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.48" - bigg.reaction: "CYTDK2" - kegg.pathway: "sce00240" - kegg.reaction: "R00517" - metanetx.reaction: "MNXR97042" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0317" - name: "cytochrome P450 lanosterol 14-alpha-demethylase (NADP)" @@ -37282,12 +36274,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR007C and YHR042W" - - eccodes: "1.14.13.70; 1.6.2.4" - - references: "10622712" - - subsystem: - - "" + - eccodes: + - "1.14.13.70" + - "1.6.2.4" - annotation: !!omap - - ec-code: "1.14.13.70; 1.6.2.4" - bigg.reaction: "LNS14DM" - kegg.pathway: - "sce00100" @@ -37295,9 +36285,9 @@ - "sce01130" - kegg.reaction: "R05640" - metanetx.reaction: "MNXR109729" - - pmid: "10622712" + - pubmed: "10622712" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0318" - name: "cytosine deaminase" @@ -37311,11 +36301,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR062W" - eccodes: "3.5.4.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.4.1" - bigg.reaction: "CSND" - kegg.pathway: - "sce00240" @@ -37323,7 +36309,7 @@ - kegg.reaction: "R00974" - metanetx.reaction: "MNXR96927" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0319" - name: "D-arabinono-1,4-lactone oxidase" @@ -37337,16 +36323,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YML086C" - eccodes: "1.1.3.37" - - references: "10508108" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.3.37" - kegg.reaction: "R02715" - metanetx.reaction: "MNXR107687" - - pmid: "10508108" + - pubmed: "10508108" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0320" - name: "D-arabinose 1-dehydrogenase (NAD)" @@ -37360,17 +36342,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR041C" - eccodes: "1.1.1.116" - - references: "17097644" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.116" - bigg.reaction: "ARAB1D1" - kegg.reaction: "R01574" - metanetx.reaction: "MNXR95907" - - pmid: "17097644" + - pubmed: "17097644" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0321" - name: "D-arabinose 1-dehydrogenase (NADP)" @@ -37384,16 +36362,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR149W" - eccodes: "1.1.1.117" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.117" - bigg.reaction: "ARAB1D2" - kegg.reaction: "R01575" - metanetx.reaction: "MNXR95908" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0322" - name: "D-fructose 1-phosphate D-glyceraldehyde-3-phosphate-lyase" @@ -37405,11 +36379,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL060C" - eccodes: "4.1.2.13" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.2.13" - bigg.reaction: "FBA2" - kegg.pathway: - "sce00010" @@ -37422,7 +36392,7 @@ - kegg.reaction: "R02568" - metanetx.reaction: "MNXR99460" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0323" - name: "D-sorbitol dehydrogenase (D-fructose producing)" @@ -37436,11 +36406,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL246C or YJR159W" - eccodes: "1.1.1.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.14" - bigg.reaction: "SBTD_D2" - kegg.pathway: - "sce00040" @@ -37448,7 +36414,7 @@ - kegg.reaction: "R00875" - metanetx.reaction: "MNXR104283" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0326" - name: "dCMP deaminase" @@ -37462,17 +36428,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR144C" - eccodes: "3.5.4.12" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.4.12" - bigg.reaction: "DCMPDA" - kegg.pathway: "sce00240" - kegg.reaction: "R01663" - metanetx.reaction: "MNXR97185" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0327" - name: "dCTP deaminase" @@ -37486,17 +36448,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR144C" - eccodes: "3.5.4.12" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.4.12" - bigg.reaction: "DCTPD" - kegg.pathway: "sce00240" - kegg.reaction: "R02325" - metanetx.reaction: "MNXR97201" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0328" - name: "deoxyadenosine deaminase" @@ -37510,17 +36468,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL141W" - eccodes: "3.5.4.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.4.2" - bigg.reaction: "DADA" - kegg.pathway: "sce00230" - kegg.reaction: "R02556" - metanetx.reaction: "MNXR97076" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0329" - name: "deoxycytidine deaminase" @@ -37534,17 +36488,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR245C" - eccodes: "3.5.4.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.4.5" - bigg.reaction: "DCYTD" - kegg.pathway: "sce00240" - kegg.reaction: "R02485" - metanetx.reaction: "MNXR97207" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0330" - name: "deoxyguanylate kinase (dGMP:ATP)" @@ -37557,17 +36507,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR454C" - eccodes: "2.7.4.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.8" - bigg.reaction: "DGK1" - kegg.pathway: "sce00230" - kegg.reaction: "R02090" - metanetx.reaction: "MNXR97320" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0331" - name: "deoxyhypusine synthase, cytosolic/mitochondrial" @@ -37582,14 +36528,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR068W" - eccodes: "2.5.1.46" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.46" - metanetx.reaction: "MNXR136013" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0332" - name: "deoxyribokinase" @@ -37603,17 +36545,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR036W" - eccodes: "2.7.1.15" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.15" - bigg.reaction: "DRBK" - kegg.pathway: "sce00030" - kegg.reaction: "R02750" - metanetx.reaction: "MNXR97781" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0334" - name: "dephospho-CoA kinase" @@ -37627,17 +36565,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR196C" - eccodes: "2.7.1.24" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.24" - bigg.reaction: "DPCOAKm" - kegg.pathway: "sce00770" - kegg.reaction: "R00130" - metanetx.reaction: "MNXR97762" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0335" - name: "dethiobiotin synthase" @@ -37653,17 +36587,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR057C" - eccodes: "6.3.3.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.3.3" - bigg.reaction: "DBTS" - kegg.pathway: "sce00780" - kegg.reaction: "R03182" - metanetx.reaction: "MNXR97180" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0340" - name: "dihydroceramidase" @@ -37676,18 +36606,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL087W" - eccodes: "3.5.1.-" - - references: "10900202; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126695" - - pmid: + - pubmed: - "10900202" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0341" - name: "dihydroceramidase" @@ -37700,17 +36626,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL087W" - eccodes: "3.5.1.-" - - references: "10900202; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "10900202" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0342" - name: "dihydroceramidase" @@ -37723,18 +36645,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL087W" - eccodes: "3.5.1.-" - - references: "10900202; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126696" - - pmid: + - pubmed: - "10900202" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0343" - name: "dihydroceramidase" @@ -37747,18 +36665,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL087W" - eccodes: "3.5.1.-" - - references: "10900202; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126694" - - pmid: + - pubmed: - "10900202" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0344" - name: "dihydrofolate reductase" @@ -37772,11 +36686,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR236W" - eccodes: "1.5.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.1.3" - bigg.reaction: "DHFR" - kegg.pathway: - "sce00670" @@ -37784,7 +36694,7 @@ - kegg.reaction: "R00939" - metanetx.reaction: "MNXR97401" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0345" - name: "dihydrofolate reductase" @@ -37798,11 +36708,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR236W" - eccodes: "1.5.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.1.3" - bigg.reaction: "DHFRim" - kegg.pathway: - "sce00670" @@ -37810,7 +36716,7 @@ - kegg.reaction: "R00939" - metanetx.reaction: "MNXR97401" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0346" - name: "dihydrofolate synthase" @@ -37826,18 +36732,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR113W" - eccodes: "6.3.2.12" - - references: "11731153" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.2.12" - bigg.reaction: "DHFS" - kegg.pathway: "sce00790" - kegg.reaction: "R02237" - metanetx.reaction: "MNXR140043" - - pmid: "11731153" + - pubmed: "11731153" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0347" - name: "dihydroneopterin aldolase" @@ -37848,17 +36750,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL256W" - - eccodes: "2.5.1.15; 2.7.6.3; 4.1.2.25" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.5.1.15" + - "2.7.6.3" + - "4.1.2.25" - annotation: !!omap - - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" - kegg.pathway: "sce00790" - kegg.reaction: "R03504" - metanetx.reaction: "MNXR97415" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0348" - name: "dihydroneopterin monophosphate dephosphorylase" @@ -37871,16 +36772,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL100C" - eccodes: "3.6.-.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.-.-" - bigg.reaction: "DNMPPA" - kegg.reaction: "R04621" - metanetx.reaction: "MNXR126238" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0349" - name: "dihydroorotase" @@ -37893,18 +36790,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR420W" - eccodes: "3.5.2.3" - - references: "2897615" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.2.3" - bigg.reaction: "DHORTS" - kegg.pathway: "sce00240" - kegg.reaction: "R01993" - metanetx.reaction: "MNXR97428" - - pmid: "2897615" + - pubmed: "2897615" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0350" - name: "dihydropteroate synthase" @@ -37916,17 +36809,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL256W" - - eccodes: "2.5.1.15; 2.7.6.3; 4.1.2.25" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.5.1.15" + - "2.7.6.3" + - "4.1.2.25" - annotation: !!omap - - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" - kegg.pathway: "sce00790" - kegg.reaction: "R03066" - metanetx.reaction: "MNXR140386" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0351" - name: "dihydropteroate synthase" @@ -37938,18 +36830,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL256W" - - eccodes: "2.5.1.15; 2.7.6.3; 4.1.2.25" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.5.1.15" + - "2.7.6.3" + - "4.1.2.25" - annotation: !!omap - - ec-code: "2.5.1.15; 2.7.6.3; 4.1.2.25" - bigg.reaction: "FOLD3m" - kegg.pathway: "sce00790" - kegg.reaction: "R03067" - metanetx.reaction: "MNXR140085" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0352" - name: "dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylbutanoate)" @@ -37961,11 +36852,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR016C" - eccodes: "4.2.1.9" - - references: "14576278" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.9" - bigg.reaction: "DHAD1m" - kegg.pathway: - "sce00290" @@ -37976,9 +36863,9 @@ - "sce01230" - kegg.reaction: "R04441" - metanetx.reaction: "MNXR97358" - - pmid: "14576278" + - pubmed: "14576278" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0353" - name: "dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylpentanoate)" @@ -37990,11 +36877,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR016C" - eccodes: "4.2.1.9" - - references: "14576278" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.9" - bigg.reaction: "DHAD2m" - kegg.pathway: - "sce00290" @@ -38005,9 +36888,9 @@ - "sce01230" - kegg.reaction: "R05070" - metanetx.reaction: "MNXR97359" - - pmid: "14576278" + - pubmed: "14576278" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0354" - name: "dihydroxyacetone kinase" @@ -38020,12 +36903,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFL053W or YML070W" - - eccodes: "2.7.1.28; 2.7.1.29" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.7.1.28" + - "2.7.1.29" - annotation: !!omap - - ec-code: "2.7.1.28; 2.7.1.29" - bigg.reaction: "DHAK" - kegg.pathway: - "sce00051" @@ -38034,7 +36915,7 @@ - kegg.reaction: "R01011" - metanetx.reaction: "MNXR97361" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0355" - name: "dimethylallyltranstransferase" @@ -38046,12 +36927,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL167W" - - eccodes: "2.5.1.1; 2.5.1.10" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.5.1.1" + - "2.5.1.10" - annotation: !!omap - - ec-code: "2.5.1.1; 2.5.1.10" - bigg.reaction: "DMATT" - kegg.pathway: - "sce00900" @@ -38060,7 +36939,7 @@ - kegg.reaction: "R01658" - metanetx.reaction: "MNXR97512" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0356" - name: "diphosphoglyceromutase" @@ -38072,11 +36951,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL152C" - eccodes: "5.4.2.11" - - references: "6313356" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.4.2.11" - bigg.reaction: "DPGM" - kegg.pathway: - "sce00010" @@ -38087,9 +36962,9 @@ - "sce01230" - kegg.reaction: "R01662" - metanetx.reaction: "MNXR107112" - - pmid: "6313356" + - pubmed: "6313356" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0357" - name: "diphosphoinositol-1,3,4,6-tetrakisphosphate diphosphohydrolase" @@ -38102,15 +36977,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR163W" - - eccodes: "3.6.1.52; 3.6.1.60" - - references: "10419486" - - subsystem: - - "" + - eccodes: + - "3.6.1.52" + - "3.6.1.60" - annotation: !!omap - - ec-code: "3.6.1.52; 3.6.1.60" - - pmid: "10419486" + - pubmed: "10419486" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0358" - name: "diphosphoinositol-1,3,4,6-tetrakisphosphate synthase" @@ -38126,17 +36999,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR017C" - eccodes: "2.7.4.21" - - references: "11956213" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.21" - kegg.pathway: - "sce04070" - "sce04138" - - pmid: "11956213" + - pubmed: "11956213" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0359" - name: "diphthine synthase" @@ -38150,17 +37019,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR172C" - eccodes: "2.1.1.314" - - references: "1508200" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.314" - bigg.reaction: "DIPS" - kegg.reaction: "R04481" - metanetx.reaction: "MNXR108915" - - pmid: "1508200" + - pubmed: "1508200" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0360" - name: "dolichol kinase" @@ -38174,17 +37039,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR013C" - eccodes: "2.7.1.108" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.108" - bigg.reaction: "DOLK" - kegg.pathway: "sce00510" - kegg.reaction: "R01018" - metanetx.reaction: "MNXR106791" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0361" - name: "dolichyl-phosphate D-mannosyltransferase" @@ -38198,17 +37059,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR183W" - eccodes: "2.4.1.83" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.83" - bigg.reaction: "DOLPMTcer" - kegg.pathway: "sce00510" - kegg.reaction: "R01009" - metanetx.reaction: "MNXR106788" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0362" - name: "dolichyl-phosphate-mannose--protein mannosyltransferase" @@ -38220,18 +37077,14 @@ - upper_bound: 1000 - gene_reaction_rule: "(YAL023C and YDL095W) or YDL093W or YJR143C or YOR321W" - eccodes: "2.4.1.109" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.109" - bigg.reaction: "DOLPMMer" - kegg.pathway: - "sce00514" - "sce00515" - metanetx.reaction: "MNXR136057" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0363" - name: "dTMP kinase" @@ -38244,17 +37097,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR057W" - eccodes: "2.7.4.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.9" - bigg.reaction: "DTMPK" - kegg.pathway: "sce00240" - kegg.reaction: "R02094" - metanetx.reaction: "MNXR97804" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0364" - name: "dUTP diphosphatase" @@ -38268,17 +37117,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR069C or YBR252W" - eccodes: "3.6.1.23" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.23" - bigg.reaction: "DUTPDP" - kegg.pathway: "sce00240" - kegg.reaction: "R02100" - metanetx.reaction: "MNXR97822" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0365" - name: "endopolygalacturonase" @@ -38290,16 +37135,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR153W" - eccodes: "3.2.1.15" - - references: "10028181" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.15" - bigg.reaction: "EPGALURSe" - kegg.pathway: "sce00040" - - pmid: "10028181" + - pubmed: "10028181" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0366" - name: "enolase" @@ -38311,11 +37152,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL281C or YGR254W or YHR174W or YMR323W or YOR393W" - eccodes: "4.2.1.11" - - references: "7520111" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.11" - bigg.reaction: "ENO" - kegg.pathway: - "sce00010" @@ -38326,9 +37163,9 @@ - "sce03018" - kegg.reaction: "R00658" - metanetx.reaction: "MNXR97932" - - pmid: "7520111" + - pubmed: "7520111" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0368" - name: "ethanolamine kinase" @@ -38341,19 +37178,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR147W or YLR133W" - - eccodes: "2.7.1.32; 2.7.1.82" - - references: "9506987" - - subsystem: - - "" + - eccodes: + - "2.7.1.32" + - "2.7.1.82" - annotation: !!omap - - ec-code: "2.7.1.32; 2.7.1.82" - bigg.reaction: "ETHAK" - kegg.pathway: "sce00564" - kegg.reaction: "R01468" - metanetx.reaction: "MNXR97969" - - pmid: "9506987" + - pubmed: "9506987" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0369" - name: "ethyl acetate-hydrolyzing esterase" @@ -38367,15 +37202,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR126C" - eccodes: "3.1.-.-" - - references: "10855721" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.-.-" - metanetx.reaction: "MNXR121010" - - pmid: "10855721" + - pubmed: "10855721" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0370" - name: "exo-1,3-beta-glucan glucohydrase" @@ -38386,19 +37217,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR261C or YGR282C or YLR300W or YNR067C or YOR190W" - - eccodes: "3.2.1.58; 3.2.1.6" - - references: "8458852" - - subsystem: - - "" + - eccodes: + - "3.2.1.58" + - "3.2.1.6" - annotation: !!omap - - ec-code: "3.2.1.58; 3.2.1.6" - bigg.reaction: "13BGHe" - kegg.pathway: "sce00500" - kegg.reaction: "R00308" - metanetx.reaction: "MNXR106465" - - pmid: "8458852" + - pubmed: "8458852" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0373" - name: "farnesyltranstransferase" @@ -38410,12 +37239,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL069C" - - eccodes: "2.5.1.-; 2.5.1.1; 2.5.1.10; 2.5.1.29" - - references: "7665600" - - subsystem: - - "" + - eccodes: + - "2.5.1.-" + - "2.5.1.1" + - "2.5.1.10" + - "2.5.1.29" - annotation: !!omap - - ec-code: "2.5.1.-; 2.5.1.1; 2.5.1.10; 2.5.1.29" - bigg.reaction: "FRTT" - kegg.pathway: - "sce00900" @@ -38423,9 +37252,9 @@ - "sce01130" - kegg.reaction: "R02061" - metanetx.reaction: "MNXR99650" - - pmid: "7665600" + - pubmed: "7665600" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0399" - name: "fatty-acid--CoA ligase (decanoate)" @@ -38440,11 +37269,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER015W" - eccodes: "6.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" @@ -38452,7 +37277,7 @@ - "sce04146" - metanetx.reaction: "MNXR118203" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0400" - name: "fatty-acid--CoA ligase (dodecanoate)" @@ -38467,11 +37292,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER015W" - eccodes: "6.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL120p" - kegg.pathway: - "sce00061" @@ -38480,7 +37301,7 @@ - "sce04146" - metanetx.reaction: "MNXR120051" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0402" - name: "fatty-acid--CoA ligase (hexadecanoate)" @@ -38495,11 +37316,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER015W" - eccodes: "6.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL160p" - kegg.pathway: - "sce00061" @@ -38509,7 +37326,7 @@ - kegg.reaction: "R01280" - metanetx.reaction: "MNXR99153" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0410" - name: "fatty-acid--CoA ligase (octanoate)" @@ -38524,11 +37341,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER015W" - eccodes: "6.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL80p" - kegg.pathway: - "sce00061" @@ -38537,7 +37350,7 @@ - "sce04146" - metanetx.reaction: "MNXR99205" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0412" - name: "fatty-acid--CoA ligase (tetradecanoate)" @@ -38552,11 +37365,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER015W" - eccodes: "6.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL140p" - kegg.pathway: - "sce00061" @@ -38565,7 +37374,7 @@ - "sce04146" - metanetx.reaction: "MNXR126663" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0436" - name: "ferrochelatase" @@ -38578,11 +37387,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR176W" - eccodes: "4.99.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.99.1.1" - bigg.reaction: "FCLTm" - kegg.pathway: - "sce00860" @@ -38590,7 +37395,7 @@ - kegg.reaction: "R00310" - metanetx.reaction: "MNXR99471" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0437" - name: "ferrocytochrome-c:hydrogen-peroxide oxidoreductase" @@ -38603,17 +37408,13 @@ - upper_bound: 1000 - gene_reaction_rule: "(YEL039C and YKR066C) or (YJR048W and YKR066C)" - eccodes: "1.11.1.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.11.1.5" - bigg.reaction: "CCP2m" - kegg.pathway: "sce00920" - kegg.reaction: "R00017" - metanetx.reaction: "MNXR138164" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0438" - name: "ferrocytochrome-c:oxygen oxidoreductase" @@ -38628,19 +37429,15 @@ - upper_bound: 1000 - gene_reaction_rule: "(Q0045 and Q0250 and Q0275 and YDL067C and YEL039C and YGL187C and YGL191W and YHR051W and YIL111W and YLR038C and YLR395C and YMR256C) or (Q0045 and Q0250 and Q0275 and YDL067C and YEL039C and YGL187C and YGL191W and YHR051W and YLR038C and YLR395C and YMR256C and YNL052W) or (Q0045 and Q0250 and Q0275 and YDL067C and YGL187C and YGL191W and YHR051W and YIL111W and YJR048W and YLR038C and YLR395C and YMR256C) or (Q0045 and Q0250 and Q0275 and YDL067C and YGL187C and YGL191W and YHR051W and YJR048W and YLR038C and YLR395C and YMR256C and YNL052W) or (Q0045 and Q0250 and Q0275 and YDL067C and YHR116W and YDR231C and YGR062C and YJL003W and YPL132W and YLL018C-A)" - eccodes: "1.9.3.1" - - references: "21964735" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.9.3.1" - kegg.pathway: - "sce00190" - "sce00920" - kegg.reaction: "R00081" - metanetx.reaction: "MNXR138955" - - pmid: "21964735" + - pubmed: "21964735" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0439" - name: "ubiquinol:ferricytochrome c reductase" @@ -38655,16 +37452,12 @@ - upper_bound: 1000 - gene_reaction_rule: "(Q0105 and YBL045C and YDR529C and YEL024W and YEL039C and YFR033C and YGR183C and YHR001W-A and YJL166W and YOR065W and YPR191W) or (Q0105 and YBL045C and YDR529C and YEL024W and YFR033C and YGR183C and YHR001W-A and YJL166W and YJR048W and YOR065W and YPR191W)" - eccodes: "1.10.2.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.10.2.2" - kegg.pathway: - "sce00190" - "sce00920" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0440" - name: "FMN adenylyltransferase" @@ -38678,11 +37471,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL045C" - eccodes: "2.7.7.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.2" - bigg.reaction: "FMNAT" - kegg.pathway: - "sce00740" @@ -38690,7 +37479,7 @@ - kegg.reaction: "R00161" - metanetx.reaction: "MNXR95501" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0441" - name: "FMN reductase" @@ -38704,17 +37493,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR011W" - eccodes: "1.5.1.39" - - references: "15184374" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.1.39" - bigg.reaction: "FMNRx" - kegg.reaction: "R05705" - metanetx.reaction: "MNXR99607" - - pmid: "15184374" + - pubmed: "15184374" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0442" - name: "FMN reductase" @@ -38728,17 +37513,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR011W" - eccodes: "1.5.1.39" - - references: "15184374" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.1.39" - bigg.reaction: "FMNRx2" - kegg.reaction: "R05706" - metanetx.reaction: "MNXR99597" - - pmid: "15184374" + - pubmed: "15184374" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0443" - name: "formaldehyde dehydrogenase" @@ -38752,12 +37533,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL168W" - - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - bigg.reaction: "FALDH" - kegg.pathway: - "sce00010" @@ -38768,7 +37548,7 @@ - "sce01200" - metanetx.reaction: "MNXR99236" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0445" - name: "formate dehydrogenase" @@ -38781,11 +37561,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR388C" - eccodes: "1.2.1.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.2" - bigg.reaction: "FDH" - kegg.pathway: - "sce00630" @@ -38793,7 +37569,7 @@ - kegg.reaction: "R00519" - metanetx.reaction: "MNXR99475" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0446" - name: "formate-tetrahydrofolate ligase" @@ -38807,22 +37583,21 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR204W" - - eccodes: "1.5.1.5; 3.5.4.9; 6.3.4.3" - - references: "10871621; 1916088; 8852837" - - subsystem: - - "" + - eccodes: + - "1.5.1.5" + - "3.5.4.9" + - "6.3.4.3" - annotation: !!omap - - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - bigg.reaction: "FTHFLi" - kegg.pathway: "sce00670" - kegg.reaction: "R00943" - metanetx.reaction: "MNXR99672" - - pmid: + - pubmed: - "10871621" - "1916088" - "8852837" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0447" - name: "formate-tetrahydrofolate ligase" @@ -38836,22 +37611,21 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR084W" - - eccodes: "1.5.1.5; 3.5.4.9; 6.3.4.3" - - references: "10871621; 1916088; 8852837" - - subsystem: - - "" + - eccodes: + - "1.5.1.5" + - "3.5.4.9" + - "6.3.4.3" - annotation: !!omap - - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - bigg.reaction: "FTHFLmi" - kegg.pathway: "sce00670" - kegg.reaction: "R00943" - metanetx.reaction: "MNXR99672" - - pmid: + - pubmed: - "10871621" - "1916088" - "8852837" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0448" - name: "fructose-2,6-bisphosphate 2-phosphatase" @@ -38864,17 +37638,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR345W or YJL155C" - eccodes: "3.1.3.46" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.46" - bigg.reaction: "FBP26" - kegg.pathway: "sce00051" - kegg.reaction: "R00763" - metanetx.reaction: "MNXR106671" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0449" - name: "fructose-bisphosphatase" @@ -38887,11 +37657,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR377C" - eccodes: "3.1.3.11" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.11" - bigg.reaction: "FBP" - kegg.pathway: - "sce00010" @@ -38903,7 +37669,7 @@ - kegg.reaction: "R00762" - metanetx.reaction: "MNXR106670" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0450" - name: "fructose-bisphosphate aldolase" @@ -38915,11 +37681,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL060C" - eccodes: "4.1.2.13" - - references: "8435847" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.2.13" - bigg.reaction: "FBA" - kegg.pathway: - "sce00010" @@ -38930,9 +37692,9 @@ - "sce01200" - "sce01230" - metanetx.reaction: "MNXR124532" - - pmid: "8435847" + - pubmed: "8435847" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0451" - name: "fumarase" @@ -38944,11 +37706,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL262W" - eccodes: "4.2.1.2" - - references: "9627400" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.2" - bigg.reaction: "FUMm" - kegg.pathway: - "sce00020" @@ -38958,9 +37716,9 @@ - "sce01200" - kegg.reaction: "R01082" - metanetx.reaction: "MNXR99705" - - pmid: "9627400" + - pubmed: "9627400" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0452" - name: "fumarase, cytoplasmic" @@ -38972,11 +37730,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL262W" - eccodes: "4.2.1.2" - - references: "11585823; 20231875" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.2" - bigg.reaction: "FUM" - kegg.pathway: - "sce00020" @@ -38986,11 +37740,11 @@ - "sce01200" - kegg.reaction: "R01082" - metanetx.reaction: "MNXR99705" - - pmid: + - pubmed: - "11585823" - "20231875" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0453" - name: "dihydoorotic acid dehydrogenase" @@ -39003,18 +37757,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL216W" - eccodes: "1.3.98.1" - - references: "1409592" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.98.1" - bigg.reaction: "DHORDfum" - kegg.pathway: "sce00240" - kegg.reaction: "R01867" - metanetx.reaction: "MNXR97425" - - pmid: "1409592" + - pubmed: "1409592" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0454" - name: "fumarate reductase" @@ -39028,20 +37778,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL047C" - eccodes: "1.3.1.6" - - references: "22672422; 8946166; 9587404" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.6" - bigg.reaction: "FRDm" - kegg.reaction: "R00408" - metanetx.reaction: "MNXR99636" - - pmid: + - pubmed: - "22672422" - "8946166" - "9587404" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0455" - name: "soluble fumarate reductase" @@ -39055,17 +37801,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL047C" - eccodes: "1.3.1.6" - - references: "22672422" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.6" - bigg.reaction: "FRD" - kegg.reaction: "R00408" - metanetx.reaction: "MNXR99636" - - pmid: "22672422" + - pubmed: "22672422" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0457" - name: "g-glutamyltransferase" @@ -39077,19 +37819,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR299W" - - eccodes: "2.3.2.2; 3.4.19.13" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.3.2.2" + - "3.4.19.13" - annotation: !!omap - - ec-code: "2.3.2.2; 3.4.19.13" - bigg.reaction: "GTMLT" - kegg.pathway: - "sce00430" - "sce00480" - metanetx.reaction: "MNXR100451" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0458" - name: "galactokinase" @@ -39103,11 +37843,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR020W" - eccodes: "2.7.1.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.6" - bigg.reaction: "GALKr" - kegg.pathway: - "sce00052" @@ -39115,7 +37851,7 @@ - kegg.reaction: "R01092" - metanetx.reaction: "MNXR99985" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0459" - name: "galactose-1-phosphate uridylyltransferase" @@ -39129,11 +37865,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR018C" - eccodes: "2.7.7.12" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.12" - bigg.reaction: "GALT" - kegg.pathway: - "sce00052" @@ -39141,7 +37873,7 @@ - kegg.reaction: "R00502" - metanetx.reaction: "MNXR100014" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0460" - name: "gamma-glutamylcysteine synthetase" @@ -39157,11 +37889,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL101C" - eccodes: "6.3.2.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.2.2" - bigg.reaction: "GLUCYS" - kegg.pathway: - "sce00270" @@ -39169,7 +37897,7 @@ - kegg.reaction: "R00894" - metanetx.reaction: "MNXR100074" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0461" - name: "geranylgeranyltranstransferase" @@ -39181,18 +37909,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "15792955" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GGTT" - kegg.reaction: "R07475" - metanetx.reaction: "MNXR100137" - - pmid: "15792955" + - pubmed: "15792955" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_0462" - name: "geranyltranstransferase" @@ -39204,12 +37927,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL167W" - - eccodes: "2.5.1.1; 2.5.1.10" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.5.1.1" + - "2.5.1.10" - annotation: !!omap - - ec-code: "2.5.1.1; 2.5.1.10" - bigg.reaction: "GRTT" - kegg.pathway: - "sce00900" @@ -39218,7 +37939,7 @@ - kegg.reaction: "R02003" - metanetx.reaction: "MNXR99634" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0463" - name: "glucan 1,4-alpha-glucosidase" @@ -39229,20 +37950,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR184W" - - eccodes: "2.4.1.25; 3.2.1.33" - - references: "11094287" - - subsystem: - - "" + - eccodes: + - "2.4.1.25" + - "3.2.1.33" - annotation: !!omap - - ec-code: "2.4.1.25; 3.2.1.33" - bigg.reaction: "GLCGSD" - kegg.pathway: - "sce00500" - "sce01110" - metanetx.reaction: "MNXR100180" - - pmid: "11094287" + - pubmed: "11094287" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0464" - name: "glucan 1,4-alpha-glucosidase, vacuole" @@ -39254,17 +37973,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL099W" - eccodes: "3.2.1.3" - - references: "11486014" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.3" - bigg.reaction: "GLCGSDv" - kegg.pathway: "sce00500" - metanetx.reaction: "MNXR100180" - - pmid: "11486014" + - pubmed: "11486014" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0465" - name: "glucosamine-6-phosphate deaminase" @@ -39276,17 +37991,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "369615" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "G6PDA" - metanetx.reaction: "MNXR125024" - - pmid: "369615" + - pubmed: "369615" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_0466" - name: "glucose 6-phosphate dehydrogenase" @@ -39300,11 +38010,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL241C" - eccodes: "1.1.1.49" - - references: "2269430" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.49" - bigg.reaction: "G6PDH2r" - kegg.pathway: - "sce00030" @@ -39314,9 +38020,9 @@ - "sce01200" - kegg.reaction: "R00835" - metanetx.reaction: "MNXR99907" - - pmid: "2269430" + - pubmed: "2269430" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0467" - name: "glucose-6-phosphate isomerase" @@ -39327,11 +38033,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR196C" - eccodes: "5.3.1.9" - - references: "8435847" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.1.9" - bigg.reaction: "PGI" - kegg.pathway: - "sce00010" @@ -39343,9 +38045,9 @@ - "sce01200" - kegg.reaction: "R00771" - metanetx.reaction: "MNXR106678" - - pmid: "8435847" + - pubmed: "8435847" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0468" - name: "glutamate 5-kinase" @@ -39358,11 +38060,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR300C" - eccodes: "2.7.2.11" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.2.11" - bigg.reaction: "GLU5K" - kegg.pathway: - "sce00330" @@ -39372,7 +38070,7 @@ - kegg.reaction: "R00239" - metanetx.reaction: "MNXR100277" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0469" - name: "glutamate decarboxylase" @@ -39385,11 +38083,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR250W" - eccodes: "4.1.1.15" - - references: "11031268" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.15" - bigg.reaction: "GLUDC" - kegg.pathway: - "sce00250" @@ -39399,9 +38093,9 @@ - "sce01110" - kegg.reaction: "R00261" - metanetx.reaction: "MNXR95942" - - pmid: "11031268" + - pubmed: "11031268" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0470" - name: "glutamate dehydrogenase (NAD)" @@ -39417,11 +38111,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL215C" - eccodes: "1.4.1.2" - - references: "14554197" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.4.1.2" - bigg.reaction: "GLUDxi" - kegg.pathway: - "sce00220" @@ -39430,9 +38120,9 @@ - "sce00910" - kegg.reaction: "R00243" - metanetx.reaction: "MNXR100085" - - pmid: "14554197" + - pubmed: "14554197" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0471" - name: "glutamate dehydrogenase (NADP)" @@ -39448,11 +38138,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YAL062W or YOR375C" - eccodes: "1.4.1.4" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.4.1.4" - bigg.reaction: "GLUDy" - kegg.pathway: - "sce00220" @@ -39461,7 +38147,7 @@ - kegg.reaction: "R00248" - metanetx.reaction: "MNXR100086" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0472" - name: "glutamate synthase (NADH2)" @@ -39476,11 +38162,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL171C" - eccodes: "1.4.1.14" - - references: "9657994" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.4.1.14" - bigg.reaction: "GLUSx" - kegg.pathway: - "sce00250" @@ -39490,9 +38172,9 @@ - "sce01230" - kegg.reaction: "R00093" - metanetx.reaction: "MNXR100289" - - pmid: "9657994" + - pubmed: "9657994" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0473" - name: "glutamate-5-semialdehyde dehydrogenase" @@ -39507,11 +38189,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR323C" - eccodes: "1.2.1.41" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.41" - bigg.reaction: "G5SD" - kegg.pathway: - "sce00330" @@ -39522,7 +38200,7 @@ - kegg.reaction: "R03313" - metanetx.reaction: "MNXR99896" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0475" - name: "glutaminase" @@ -39534,18 +38212,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFL060C or YNL334C" - - eccodes: "" - - references: "3309138" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLUN" - kegg.reaction: "R00256" - metanetx.reaction: "MNXR100030" - - pmid: "3309138" + - pubmed: "3309138" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0476" - name: "glutamine synthetase" @@ -39561,11 +38234,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR035W" - eccodes: "6.3.1.2" - - references: "9611819" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.1.2" - bigg.reaction: "GLNS" - kegg.pathway: - "sce00220" @@ -39575,9 +38244,9 @@ - "sce01230" - kegg.reaction: "R00253" - metanetx.reaction: "MNXR100024" - - pmid: "9611819" + - pubmed: "9611819" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0477" - name: "glutamine-fructose-6-phosphate transaminase" @@ -39590,11 +38259,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR084W or YKL104C" - eccodes: "2.6.1.16" - - references: "2656689" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.16" - bigg.reaction: "GF6PTA" - kegg.pathway: - "sce00250" @@ -39602,9 +38267,9 @@ - "sce01130" - kegg.reaction: "R00768" - metanetx.reaction: "MNXR106675" - - pmid: "2656689" + - pubmed: "2656689" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0478" - name: "glutaminyl-tRNA synthetase" @@ -39619,18 +38284,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR168W" - eccodes: "6.1.1.18" - - references: "2991203" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.18" - bigg.reaction: "GLNTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03652" - metanetx.reaction: "MNXR100257" - - pmid: "2991203" + - pubmed: "2991203" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0479" - name: "glutamyl-tRNA synthetase" @@ -39645,11 +38306,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL245W" - eccodes: "6.1.1.17" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.17" - bigg.reaction: "GLUTRS" - kegg.pathway: - "sce00860" @@ -39658,7 +38315,7 @@ - kegg.reaction: "R05578" - metanetx.reaction: "MNXR100295" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0480" - name: "glutamyl-tRNA synthetase" @@ -39673,11 +38330,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL033W" - eccodes: "6.1.1.17" - - references: "7607232" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.17" - bigg.reaction: "GLUTRSm" - kegg.pathway: - "sce00860" @@ -39685,9 +38338,9 @@ - "sce01110" - kegg.reaction: "R05578" - metanetx.reaction: "MNXR100295" - - pmid: "7607232" + - pubmed: "7607232" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0481" - name: "glutathione oxidoreductase" @@ -39701,17 +38354,13 @@ - upper_bound: 1000 - gene_reaction_rule: "(YCL035C and YPL091W) or (YDR098C and YPL091W) or (YDR513W and YPL091W) or (YER174C and YPL091W)" - eccodes: "1.8.1.7" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.8.1.7" - bigg.reaction: "GTHOr" - kegg.pathway: "sce00480" - kegg.reaction: "R00115" - metanetx.reaction: "MNXR100098" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0482" - name: "glutathione oxidoreductase" @@ -39725,18 +38374,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL059W and YPL091W" - eccodes: "1.8.1.7" - - references: "14672937" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.8.1.7" - bigg.reaction: "GTHOm" - kegg.pathway: "sce00480" - kegg.reaction: "R00115" - metanetx.reaction: "MNXR100098" - - pmid: "14672937" + - pubmed: "14672937" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0483" - name: "glutathione peridoxase" @@ -39748,18 +38393,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL229C or YBR244W or YCL035C or YDR513W or YIR037W or YKL026C" - - eccodes: "1.11.1.15; 1.11.1.9" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.11.1.15" + - "1.11.1.9" - annotation: !!omap - - ec-code: "1.11.1.15; 1.11.1.9" - bigg.reaction: "GTHPi" - kegg.pathway: "sce00480" - kegg.reaction: "R00274" - metanetx.reaction: "MNXR100446" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0484" - name: "glutathione peroxidase, mitochondria" @@ -39771,18 +38414,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL059W" - - eccodes: "" - - references: "12138088" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GTHPm" - kegg.reaction: "R00274" - metanetx.reaction: "MNXR100446" - - pmid: "12138088" + - pubmed: "12138088" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0485" - name: "glutathione synthetase" @@ -39798,11 +38436,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL049W" - eccodes: "6.3.2.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.2.3" - bigg.reaction: "GTHS" - kegg.pathway: - "sce00270" @@ -39810,7 +38444,7 @@ - kegg.reaction: "R00497" - metanetx.reaction: "MNXR100450" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0486" - name: "glyceraldehyde-3-phosphate dehydrogenase" @@ -39825,11 +38459,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR192C or YJL052W or YJR009C" - eccodes: "1.2.1.12" - - references: "3905788" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.12" - bigg.reaction: "GAPD" - kegg.pathway: - "sce00010" @@ -39839,9 +38469,9 @@ - "sce01230" - kegg.reaction: "R01061" - metanetx.reaction: "MNXR100040" - - pmid: "3905788" + - pubmed: "3905788" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0487" - name: "glycerol dehydrogenase (NADP-dependent)" @@ -39855,18 +38485,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR120W" - eccodes: "1.1.1.156" - - references: "11113971" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.156" - bigg.reaction: "GLYCDy" - kegg.pathway: "sce00561" - kegg.reaction: "R01039" - metanetx.reaction: "MNXR100327" - - pmid: "11113971" + - pubmed: "11113971" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0488" - name: "glycerol kinase" @@ -39880,17 +38506,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YHL032C" - eccodes: "2.7.1.30" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.30" - bigg.reaction: "GLYK" - kegg.pathway: "sce00561" - kegg.reaction: "R00847" - metanetx.reaction: "MNXR100348" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0489" - name: "glycerol-3-phosphatase" @@ -39903,17 +38525,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER062C or YIL053W" - eccodes: "3.1.3.21" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.21" - bigg.reaction: "G3PT" - kegg.pathway: "sce00561" - kegg.reaction: "R00841" - metanetx.reaction: "MNXR99894" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0490" - name: "glycerol-3-phosphate dehydrogenase (fad)" @@ -39927,11 +38545,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL155C" - eccodes: "1.1.5.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.5.3" - bigg.reaction: "G3PDm" - kegg.pathway: - "sce00564" @@ -39939,7 +38553,7 @@ - kegg.reaction: "R00848" - metanetx.reaction: "MNXR99875" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0491" - name: "glycerol-3-phosphate dehydrogenase (NAD)" @@ -39953,11 +38567,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL022W or YOL059W" - eccodes: "1.1.1.8" - - references: "8196651" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.8" - bigg.reaction: "G3PD1ir" - kegg.pathway: - "sce00564" @@ -39965,9 +38575,9 @@ - "sce04011" - kegg.reaction: "R00842" - metanetx.reaction: "MNXR99876" - - pmid: "8196651" + - pubmed: "8196651" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0492" - name: "glycerol-3-phosphate dehydrogenase (NAD)" @@ -39981,11 +38591,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL059W" - eccodes: "1.1.1.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.8" - bigg.reaction: "G3PD1irm" - kegg.pathway: - "sce00564" @@ -39994,7 +38600,7 @@ - kegg.reaction: "R00842" - metanetx.reaction: "MNXR99876" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0497" - name: "glycerophosphodiester phosphodiesterase (glycerophosphocholine)" @@ -40008,18 +38614,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL110C" - eccodes: "3.1.4.46" - - references: "16141200" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.46" - bigg.reaction: "GPDDA1" - kegg.pathway: "sce00564" - kegg.reaction: "R01030" - metanetx.reaction: "MNXR100410" - - pmid: "16141200" + - pubmed: "16141200" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0499" - name: "glycinamide ribotide transformylase" @@ -40033,11 +38635,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR408C" - eccodes: "2.1.2.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.2.2" - bigg.reaction: "GARFT" - kegg.pathway: - "sce00230" @@ -40047,7 +38645,7 @@ - kegg.reaction: "R04325" - metanetx.reaction: "MNXR99623" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0500" - name: "glycine C-acetyltransferase" @@ -40059,18 +38657,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "3086094" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLYAT" - kegg.reaction: "R00371" - metanetx.reaction: "MNXR100313" - - pmid: "3086094" + - pubmed: "3086094" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_0501" - name: "glycine cleavage system" @@ -40085,12 +38678,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "GLYCLm" - kegg.pathway: - "sce00010" @@ -40105,7 +38697,7 @@ - "sce01130" - "sce01200" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0502" - name: "glycine hydroxymethyltransferase" @@ -40119,11 +38711,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR058C" - eccodes: "2.1.2.1" - - references: "8852837" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.2.1" - bigg.reaction: "GHMT2r" - kegg.pathway: - "sce00260" @@ -40135,9 +38723,9 @@ - "sce01230" - kegg.reaction: "R00945" - metanetx.reaction: "MNXR100142" - - pmid: "8852837" + - pubmed: "8852837" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0503" - name: "glycine hydroxymethyltransferase" @@ -40151,11 +38739,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR263W" - eccodes: "2.1.2.1" - - references: "22672422; 8852837" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.2.1" - bigg.reaction: "GHMT2rm" - kegg.pathway: - "sce00260" @@ -40167,11 +38751,11 @@ - "sce01230" - kegg.reaction: "R00945" - metanetx.reaction: "MNXR100142" - - pmid: + - pubmed: - "22672422" - "8852837" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0504" - name: "glycine-cleavage complex (lipoamide)" @@ -40184,12 +38768,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "GCC2am" - kegg.pathway: - "sce00010" @@ -40205,7 +38788,7 @@ - "sce01200" - metanetx.reaction: "MNXR100065" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0505" - name: "glycine-cleavage complex (lipoamide)" @@ -40218,12 +38801,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YAL044C and YDR019C and YFL018C and YMR189W) or (YDR148C and YFL018C and YIL125W)" - - eccodes: "1.2.4.2; 1.4.4.2; 1.8.1.4; 2.1.2.10; 2.3.1.61" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.2.4.2" + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" + - "2.3.1.61" - annotation: !!omap - - ec-code: "1.2.4.2; 1.4.4.2; 1.8.1.4; 2.1.2.10; 2.3.1.61" - bigg.reaction: "GCC2cm" - kegg.pathway: - "sce00010" @@ -40242,7 +38826,7 @@ - kegg.reaction: "R01698" - metanetx.reaction: "MNXR100066" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0506" - name: "glycine-cleavage complex (lipoylprotein)" @@ -40254,12 +38838,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "GCCam" - kegg.pathway: - "sce00010" @@ -40276,7 +38859,7 @@ - kegg.reaction: "R03425" - metanetx.reaction: "MNXR100067" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0507" - name: "glycine-cleavage complex (lipoylprotein)" @@ -40290,12 +38873,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "GCCbim" - kegg.pathway: - "sce00010" @@ -40312,7 +38894,7 @@ - kegg.reaction: "R04125" - metanetx.reaction: "MNXR100068" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0508" - name: "glycine-cleavage complex (lipoylprotein)" @@ -40325,12 +38907,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "GCCcm" - kegg.pathway: - "sce00010" @@ -40347,7 +38928,7 @@ - kegg.reaction: "R03815" - metanetx.reaction: "MNXR100069" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0509" - name: "glycine-cleavage system (lipoamide)" @@ -40360,12 +38941,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "GCC2bim" - kegg.pathway: - "sce00010" @@ -40380,7 +38960,7 @@ - "sce01130" - "sce01200" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0510" - name: "glycogen (starch) synthase" @@ -40392,17 +38972,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YFR015C and YJL137C) or (YFR015C and YKR058W) or (YJL137C and YLR258W) or (YKR058W and YLR258W)" - - eccodes: "2.4.1.11; 2.4.1.186" - - references: "8900126" - - subsystem: - - "" + - eccodes: + - "2.4.1.11" + - "2.4.1.186" - annotation: !!omap - - ec-code: "2.4.1.11; 2.4.1.186" - kegg.pathway: "sce00500" - metanetx.reaction: "MNXR143136" - - pmid: "8900126" + - pubmed: "8900126" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0511" - name: "glycogen phosphorylase" @@ -40414,18 +38992,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR160W" - eccodes: "2.4.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.1" - bigg.reaction: "GLCP" - kegg.pathway: - "sce00500" - "sce01110" - metanetx.reaction: "MNXR100214" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0512" - name: "glycyl-tRNA synthetase" @@ -40440,18 +39014,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR121C or YPR081C" - eccodes: "6.1.1.14" - - references: "10874035" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.14" - bigg.reaction: "GLYTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03654" - metanetx.reaction: "MNXR100365" - - pmid: "10874035" + - pubmed: "10874035" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0514" - name: "GMP synthase" @@ -40469,17 +39039,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR217W" - eccodes: "6.3.5.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.5.2" - bigg.reaction: "GMPS2" - kegg.pathway: "sce00230" - kegg.reaction: "R01231" - metanetx.reaction: "MNXR100384" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0518" - name: "GPI-anchor assembly, step 2" @@ -40493,17 +39059,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR281W" - eccodes: "3.5.1.89" - - references: "10085243" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.89" - kegg.pathway: "sce00563" - kegg.reaction: "R05917" - metanetx.reaction: "MNXR95257" - - pmid: "10085243" + - pubmed: "10085243" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0519" - name: "GPI-anchor assembly, step 5" @@ -40516,15 +39078,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCL052C and YJR013W" - eccodes: "2.4.1.-" - - references: "11102867" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.-" - kegg.pathway: "sce00563" - - pmid: "11102867" + - pubmed: "11102867" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0520" - name: "GPI-anchor assembly, step 6" @@ -40536,15 +39094,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL165C" - eccodes: "2.-.-.-" - - references: "11102867" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - kegg.pathway: "sce00563" - - pmid: "11102867" + - pubmed: "11102867" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0521" - name: "GPI-anchor assembly, step 7" @@ -40557,15 +39111,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR004C" - eccodes: "2.4.1.-" - - references: "15623507" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.-" - kegg.pathway: "sce00563" - - pmid: "15623507" + - pubmed: "15623507" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0522" - name: "GPI-anchor assembly, step 8" @@ -40577,15 +39127,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL142C" - eccodes: "2.4.1.-" - - references: "11102867" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.-" - kegg.pathway: "sce00563" - - pmid: "11102867" + - pubmed: "11102867" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0523" - name: "GPI-anchor assembly, step 9" @@ -40598,15 +39144,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR302W or YLL031C" - eccodes: "2.-.-.-" - - references: "10793139" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - kegg.pathway: "sce00563" - - pmid: "10793139" + - pubmed: "10793139" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0524" - name: "GTP cyclohydrolase I" @@ -40620,17 +39162,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR267C" - eccodes: "3.5.4.16" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.4.16" - bigg.reaction: "GTPCI" - kegg.pathway: "sce00790" - kegg.reaction: "R00424" - metanetx.reaction: "MNXR100453" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0525" - name: "GTP cyclohydrolase II" @@ -40645,11 +39183,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBL033C" - eccodes: "3.5.4.25" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.4.25" - bigg.reaction: "GTPCII2" - kegg.pathway: - "sce00740" @@ -40658,7 +39192,7 @@ - kegg.reaction: "R00425" - metanetx.reaction: "MNXR100455" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0526" - name: "guanine deaminase" @@ -40672,18 +39206,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL238C" - eccodes: "3.5.4.3" - - references: "15565584" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.4.3" - bigg.reaction: "GUAD" - kegg.pathway: "sce00230" - kegg.reaction: "R01676" - metanetx.reaction: "MNXR100464" - - pmid: "15565584" + - pubmed: "15565584" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0527" - name: "guanine phosphoribosyltransferase" @@ -40696,11 +39226,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR399W" - eccodes: "2.4.2.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.8" - bigg.reaction: "GUAPRT" - kegg.pathway: - "sce00230" @@ -40708,7 +39234,7 @@ - kegg.reaction: "R01229" - metanetx.reaction: "MNXR100409" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0528" - name: "guanylate kinase" @@ -40721,17 +39247,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR454C" - eccodes: "2.7.4.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.8" - bigg.reaction: "GK1" - kegg.pathway: "sce00230" - kegg.reaction: "R00332" - metanetx.reaction: "MNXR100144" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0529" - name: "guanylate kinase (GMP:dATP)" @@ -40744,16 +39266,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR454C" - eccodes: "2.7.4.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.8" - bigg.reaction: "GK2" - kegg.pathway: "sce00230" - metanetx.reaction: "MNXR100145" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0530" - name: "heme O monooxygenase" @@ -40768,16 +39286,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YER141W or (YDR376W and YPL252C)" - eccodes: "1.18.1.6" - - references: "11788607" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.18.1.6" - bigg.reaction: "HEMEOMOm" - metanetx.reaction: "MNXR100595" - - pmid: "11788607" + - pubmed: "11788607" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0531" - name: "Heme O synthase" @@ -40791,11 +39305,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL172C" - eccodes: "2.5.1.-" - - references: "11788607" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.-" - bigg.reaction: "HEMEOSm" - kegg.pathway: - "sce00190" @@ -40803,9 +39313,9 @@ - "sce01110" - kegg.reaction: "R07411" - metanetx.reaction: "MNXR100596" - - pmid: "11788607" + - pubmed: "11788607" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0532" - name: "hexaprenyldihydroxybenzoate methyltransferase" @@ -40818,17 +39328,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - eccodes: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.14.13.-" + - "2.1.1.114" + - "2.1.1.201" + - "2.1.1.64" + - "2.7.-.-" - annotation: !!omap - - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - kegg.pathway: - "sce00130" - "sce01110" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0533" - name: "hexokinase (D-fructose:ATP)" @@ -40842,11 +39353,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR446W or YFR053C or YGL253W" - eccodes: "2.7.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.1" - bigg.reaction: "HEX7" - kegg.pathway: - "sce00010" @@ -40860,7 +39367,7 @@ - kegg.reaction: "R00760" - metanetx.reaction: "MNXR106668" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0534" - name: "hexokinase (D-glucose:ATP)" @@ -40873,12 +39380,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR446W or YCL040W or YFR053C or YGL253W or YDR516C" - - eccodes: "2.7.1.1; 2.7.1.2" - - references: "6394965" - - subsystem: - - "" + - eccodes: + - "2.7.1.1" + - "2.7.1.2" - annotation: !!omap - - ec-code: "2.7.1.1; 2.7.1.2" - bigg.reaction: "HEX1" - kegg.pathway: - "sce00010" @@ -40891,9 +39396,9 @@ - "sce01200" - kegg.reaction: "R00299" - metanetx.reaction: "MNXR100612" - - pmid: "6394965" + - pubmed: "6394965" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0535" - name: "hexokinase (D-mannose:ATP)" @@ -40907,11 +39412,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR446W or YFR053C or YGL253W" - eccodes: "2.7.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.1" - bigg.reaction: "HEX4" - kegg.pathway: - "sce00010" @@ -40925,7 +39426,7 @@ - kegg.reaction: "R01326" - metanetx.reaction: "MNXR95795" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0536" - name: "histidinol dehydrogenase" @@ -40939,12 +39440,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL030C" - - eccodes: "1.1.1.23; 3.5.4.19; 3.6.1.31" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.23" + - "3.5.4.19" + - "3.6.1.31" - annotation: !!omap - - ec-code: "1.1.1.23; 3.5.4.19; 3.6.1.31" - bigg.reaction: "HISTD" - kegg.pathway: - "sce00340" @@ -40953,7 +39453,7 @@ - kegg.reaction: "R01158" - metanetx.reaction: "MNXR100587" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0537" - name: "histidinol-phosphatase" @@ -40966,11 +39466,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR025C" - eccodes: "3.1.3.15" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.15" - bigg.reaction: "HISTP" - kegg.pathway: - "sce00340" @@ -40979,7 +39475,7 @@ - kegg.reaction: "R03013" - metanetx.reaction: "MNXR100642" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0538" - name: "histidinol-phosphate transaminase" @@ -40992,11 +39488,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL116W" - eccodes: "2.6.1.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.9" - bigg.reaction: "HSTPT" - kegg.pathway: - "sce00340" @@ -41009,7 +39501,7 @@ - kegg.reaction: "R03243" - metanetx.reaction: "MNXR95852" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0539" - name: "histidyl-tRNA synthetase" @@ -41024,18 +39516,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR033C" - eccodes: "6.1.1.21" - - references: "1459448" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.21" - bigg.reaction: "HISTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03655" - metanetx.reaction: "MNXR100643" - - pmid: "1459448" + - pubmed: "1459448" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0540" - name: "histidyl-tRNA synthetase" @@ -41050,18 +39538,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR033C" - eccodes: "6.1.1.21" - - references: "1459448" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.21" - bigg.reaction: "HISTRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R03655" - metanetx.reaction: "MNXR100643" - - pmid: "1459448" + - pubmed: "1459448" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0541" - name: "hnRNP arginine N-methyltransferase" @@ -41075,17 +39559,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR034C" - eccodes: "2.1.1.-" - - references: "8647869" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.-" - bigg.reaction: "ARMT" - kegg.reaction: "R01159" - metanetx.reaction: "MNXR141861" - - pmid: "8647869" + - pubmed: "8647869" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0542" - name: "homoacontinate hydratase" @@ -41097,11 +39577,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL200C or YDR234W" - eccodes: "4.2.1.36" - - references: "2507177" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.36" - bigg.reaction: "HACNHm" - kegg.pathway: - "sce00300" @@ -41110,9 +39586,9 @@ - "sce01230" - kegg.reaction: "R04371" - metanetx.reaction: "MNXR100552" - - pmid: "2507177" + - pubmed: "2507177" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0543" - name: "homocitrate synthase" @@ -41127,11 +39603,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL131W or YDL182W" - eccodes: "2.3.3.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.3.14" - kegg.pathway: - "sce00300" - "sce00620" @@ -41141,7 +39613,7 @@ - kegg.reaction: "R00271" - metanetx.reaction: "MNXR141692" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0544" - name: "homocysteine S-methyltransferase" @@ -41155,20 +39627,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL062C or YPL273W" - eccodes: "2.1.1.10" - - references: "11013242" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.10" - bigg.reaction: "HCYSMT" - kegg.pathway: - "sce00270" - "sce01110" - kegg.reaction: "R00650" - metanetx.reaction: "MNXR100577" - - pmid: "11013242" + - pubmed: "11013242" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0545" - name: "homoisocitrate dehydrogenase" @@ -41182,11 +39650,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL094C" - eccodes: "1.1.1.87" - - references: "10714900" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.87" - kegg.pathway: - "sce00300" - "sce01130" @@ -41194,9 +39658,9 @@ - "sce01230" - kegg.reaction: "R01934" - metanetx.reaction: "MNXR107239" - - pmid: "10714900" + - pubmed: "10714900" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0546" - name: "homoserine dehydrogenase (NADH)" @@ -41210,11 +39674,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR139C" - eccodes: "1.1.1.3" - - references: "8500624; 11341914" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.3" - bigg.reaction: "HSDxi" - kegg.pathway: - "sce00260" @@ -41225,11 +39685,11 @@ - "sce01230" - kegg.reaction: "R01775" - metanetx.reaction: "MNXR100734" - - pmid: + - pubmed: - "8500624" - "11341914" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0547" - name: "homoserine dehydrogenase (NADP)" @@ -41243,11 +39703,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR139C" - eccodes: "1.1.1.3" - - references: "8500624" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.3" - bigg.reaction: "HSDy" - kegg.pathway: - "sce00260" @@ -41258,9 +39714,9 @@ - "sce01230" - kegg.reaction: "R01775" - metanetx.reaction: "MNXR100734" - - pmid: "8500624" + - pubmed: "8500624" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0548" - name: "homoserine kinase" @@ -41274,11 +39730,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR025W" - eccodes: "2.7.1.39" - - references: "8973190" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.39" - bigg.reaction: "HSK" - kegg.pathway: - "sce00260" @@ -41286,9 +39738,9 @@ - "sce01230" - kegg.reaction: "R01771" - metanetx.reaction: "MNXR100737" - - pmid: "8973190" + - pubmed: "8973190" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0549" - name: "homoserine O-trans-acetylase" @@ -41301,20 +39753,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL277W" - eccodes: "2.3.1.31" - - references: "16232856" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.31" - bigg.reaction: "HSERTA" - kegg.pathway: - "sce00270" - "sce01130" - kegg.reaction: "R01776" - metanetx.reaction: "MNXR100736" - - pmid: "16232856" + - pubmed: "16232856" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0550" - name: "hydrogen peroxide reductase (thioredoxin)" @@ -41328,16 +39776,12 @@ - upper_bound: 1000 - gene_reaction_rule: "(YDR453C and YGR209C) or (YDR453C and YLR043C)" - eccodes: "1.11.1.15" - - references: "15210711" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.11.1.15" - bigg.reaction: "THIORDXi" - metanetx.reaction: "MNXR104815" - - pmid: "15210711" + - pubmed: "15210711" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0551" - name: "hydrogen peroxide reductase (thioredoxin)" @@ -41351,16 +39795,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YBL064C and YCR083W" - eccodes: "1.11.1.15" - - references: "10821871" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.11.1.15" - bigg.reaction: "THIORDXm" - metanetx.reaction: "MNXR104815" - - pmid: "10821871" + - pubmed: "10821871" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0552" - name: "hydrogen peroxide reductase (thioredoxin)" @@ -41374,17 +39814,13 @@ - upper_bound: 1000 - gene_reaction_rule: "(YGR209C and YLR109W) or (YLR043C and YLR109W)" - eccodes: "1.11.1.15" - - references: "14640681" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.11.1.15" - bigg.reaction: "THIORDXp" - kegg.pathway: "sce04122" - metanetx.reaction: "MNXR104815" - - pmid: "14640681" + - pubmed: "14640681" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0553" - name: "hydroxyacylglutathione hydrolase" @@ -41398,17 +39834,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR272W" - eccodes: "3.1.2.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.6" - bigg.reaction: "GLYOX" - kegg.pathway: "sce00620" - kegg.reaction: "R01736" - metanetx.reaction: "MNXR100353" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0554" - name: "hydroxyacylglutathione hydrolase" @@ -41422,17 +39854,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR040W" - eccodes: "3.1.2.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.6" - bigg.reaction: "GLYOXm" - kegg.pathway: "sce00620" - kegg.reaction: "R01736" - metanetx.reaction: "MNXR100353" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0555" - name: "hydroxybenzoate octaprenyltransferase" @@ -41445,11 +39873,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR041C" - eccodes: "2.5.1.39" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.39" - bigg.reaction: "HBZOPT6m" - kegg.pathway: - "sce00130" @@ -41457,7 +39881,7 @@ - kegg.reaction: "R05616" - metanetx.reaction: "MNXR100569" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0556" - name: "hydroxyethylthiazole kinase" @@ -41470,18 +39894,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL214C" - - eccodes: "2.5.1.3; 2.7.1.50" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.5.1.3" + - "2.7.1.50" - annotation: !!omap - - ec-code: "2.5.1.3; 2.7.1.50" - bigg.reaction: "HETZK" - kegg.pathway: "sce00730" - kegg.reaction: "R04448" - metanetx.reaction: "MNXR100611" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0557" - name: "hydroxymethylbilane synthase" @@ -41494,11 +39916,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL205C" - eccodes: "2.5.1.61" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.61" - bigg.reaction: "HMBS" - kegg.pathway: - "sce00860" @@ -41506,7 +39924,7 @@ - kegg.reaction: "R00084" - metanetx.reaction: "MNXR100658" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0558" - name: "hydroxymethylglutaryl CoA reductase" @@ -41521,11 +39939,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR450W or YML075C" - eccodes: "1.1.1.34" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.34" - bigg.reaction: "HMGCOAR" - kegg.pathway: - "sce00900" @@ -41534,7 +39948,7 @@ - kegg.reaction: "R02082" - metanetx.reaction: "MNXR107304" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0559" - name: "hydroxymethylglutaryl CoA synthase" @@ -41549,11 +39963,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YML126C" - eccodes: "2.3.3.10" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.3.10" - bigg.reaction: "HMGCOAS" - kegg.pathway: - "sce00072" @@ -41565,7 +39975,7 @@ - kegg.reaction: "R01978" - metanetx.reaction: "MNXR107257" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0560" - name: "hydroxymethylglutaryl CoA synthase" @@ -41580,11 +39990,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YML126C" - eccodes: "2.3.3.10" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.3.10" - bigg.reaction: "HMGCOASm" - kegg.pathway: - "sce00072" @@ -41596,7 +40002,7 @@ - kegg.reaction: "R01978" - metanetx.reaction: "MNXR107257" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0561" - name: "hydroxymethylpyrimidine kinase (ATP)" @@ -41609,18 +40015,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL055C or YPL258C or YPR121W" - - eccodes: "2.7.1.49; 2.7.4.7" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.7.1.49" + - "2.7.4.7" - annotation: !!omap - - ec-code: "2.7.1.49; 2.7.4.7" - bigg.reaction: "HMPK1" - kegg.pathway: "sce00730" - kegg.reaction: "R03471" - metanetx.reaction: "MNXR100664" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0562" - name: "hypoxanthine phosphoribosyltransferase (Hypoxanthine)" @@ -41633,11 +40037,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR399W" - eccodes: "2.4.2.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.8" - bigg.reaction: "HXPRT" - kegg.pathway: - "sce00230" @@ -41645,7 +40045,7 @@ - kegg.reaction: "R01132" - metanetx.reaction: "MNXR100752" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0563" - name: "Imidazole-glycerol-3-phosphate synthase" @@ -41659,12 +40059,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR248C" - - eccodes: "2.4.2.-; 4.1.3.-" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.4.2.-" + - "4.1.3.-" - annotation: !!omap - - ec-code: "2.4.2.-; 4.1.3.-" - bigg.reaction: "IG3PS" - kegg.pathway: - "sce00340" @@ -41673,7 +40071,7 @@ - kegg.reaction: "R04558" - metanetx.reaction: "MNXR100811" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0564" - name: "imidazoleglycerol-phosphate dehydratase" @@ -41685,11 +40083,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR202W" - eccodes: "4.2.1.19" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.19" - bigg.reaction: "IGPDH" - kegg.pathway: - "sce00340" @@ -41698,7 +40092,7 @@ - kegg.reaction: "R03457" - metanetx.reaction: "MNXR100813" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0565" - name: "IMP dehydrogenase" @@ -41713,20 +40107,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR216W or YLR432W or YML056C" - eccodes: "1.1.1.205" - - references: "11003640" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.205" - bigg.reaction: "IMPD" - kegg.pathway: - "sce00230" - "sce01110" - kegg.reaction: "R01130" - metanetx.reaction: "MNXR100830" - - pmid: "11003640" + - pubmed: "11003640" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0566" - name: "indole-3-glycerol-phosphate synthase" @@ -41739,12 +40129,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL211C" - - eccodes: "4.1.1.48; 4.1.3.27" - - references: "6323449" - - subsystem: - - "" + - eccodes: + - "4.1.1.48" + - "4.1.3.27" - annotation: !!omap - - ec-code: "4.1.1.48; 4.1.3.27" - bigg.reaction: "IGPS" - kegg.pathway: - "sce00400" @@ -41753,9 +40141,9 @@ - "sce01230" - kegg.reaction: "R03508" - metanetx.reaction: "MNXR100814" - - pmid: "6323449" + - pubmed: "6323449" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0567" - name: "indole-3-pyruvate decarboxylase" @@ -41767,12 +40155,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - eccodes: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - - references: "12902239" - - subsystem: - - "" + - eccodes: + - "4.1.1.-" + - "4.1.1.1" + - "4.1.1.43" + - "4.1.1.74" - annotation: !!omap - - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - bigg.reaction: "INDPYRD" - kegg.pathway: - "sce00010" @@ -41780,9 +40168,9 @@ - "sce01130" - kegg.reaction: "R01974" - metanetx.reaction: "MNXR100837" - - pmid: "12902239" + - pubmed: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0568" - name: "inorganic diphosphatase" @@ -41795,18 +40183,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR011C" - eccodes: "3.6.1.1" - - references: "8224193" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.1" - bigg.reaction: "PPA" - kegg.pathway: "sce00190" - kegg.reaction: "R00004" - metanetx.reaction: "MNXR100808" - - pmid: "8224193" + - pubmed: "8224193" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0569" - name: "inorganic diphosphatase" @@ -41819,18 +40203,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR267W" - eccodes: "3.6.1.1" - - references: "1648084" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.1" - bigg.reaction: "PPAm" - kegg.pathway: "sce00190" - kegg.reaction: "R00004" - metanetx.reaction: "MNXR100808" - - pmid: "1648084" + - pubmed: "1648084" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0570" - name: "inosine monophosphate cyclohydrolase" @@ -41841,12 +40221,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR028C or YMR120C" - - eccodes: "2.1.2.3; 3.5.4.10" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.1.2.3" + - "3.5.4.10" - annotation: !!omap - - ec-code: "2.1.2.3; 3.5.4.10" - bigg.reaction: "IMPC" - kegg.pathway: - "sce00230" @@ -41856,7 +40234,7 @@ - kegg.reaction: "R01127" - metanetx.reaction: "MNXR100783" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0571" - name: "inositol-1,3,4,5,6-pentakisphosphate 2-kinase" @@ -41870,19 +40248,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR315C" - eccodes: "2.7.1.158" - - references: "10960485" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.158" - kegg.pathway: - "sce00562" - "sce04070" - kegg.reaction: "R05202" - metanetx.reaction: "MNXR109392" - - pmid: "10960485" + - pubmed: "10960485" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0572" - name: "inositol-1,3,4,5-triphosphate 6-kinase, nucleus" @@ -41896,20 +40270,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR173C" - eccodes: "2.7.1.151" - - references: "11956213" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.151" - kegg.pathway: - "sce00562" - "sce04070" - "sce04138" - kegg.reaction: "R10953" - metanetx.reaction: "MNXR114260" - - pmid: "11956213" + - pubmed: "11956213" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0573" - name: "inositol-1,4,5,6- tetrakisphosphate 3-kinase, nucleus" @@ -41923,20 +40293,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR173C" - eccodes: "2.7.1.151" - - references: "11956213" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.151" - kegg.pathway: - "sce00562" - "sce04070" - "sce04138" - kegg.reaction: "R05801" - metanetx.reaction: "MNXR109848" - - pmid: "11956213" + - pubmed: "11956213" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0574" - name: "inositol-1,4,5-triphosphate 6-kinase, nucleus" @@ -41950,20 +40316,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR173C" - eccodes: "2.7.1.151" - - references: "11956213" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.151" - kegg.pathway: - "sce00562" - "sce04070" - "sce04138" - kegg.reaction: "R05800" - metanetx.reaction: "MNXR109847" - - pmid: "11956213" + - pubmed: "11956213" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0575" - name: "inositol-1,4,5-trisphosphate 3-kinase, nucleus" @@ -41977,20 +40339,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR173C" - eccodes: "2.7.1.151" - - references: "11956213" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.151" - kegg.pathway: - "sce00562" - "sce04070" - "sce04138" - kegg.reaction: "R03433" - metanetx.reaction: "MNXR108166" - - pmid: "11956213" + - pubmed: "11956213" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0596" - name: "IPS phospholipase C" @@ -42003,17 +40361,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0597" - name: "IPS phospholipase C" @@ -42026,17 +40380,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0598" - name: "IPS phospholipase C" @@ -42049,17 +40399,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0599" - name: "IPS phospholipase C" @@ -42072,17 +40418,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0600" - name: "IPS phospholipase C" @@ -42095,17 +40437,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0601" - name: "IPS phospholipase C" @@ -42118,17 +40456,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0602" - name: "IPS phospholipase C" @@ -42141,17 +40475,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0603" - name: "IPS phospholipase C" @@ -42164,17 +40494,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0604" - name: "IPS phospholipase C" @@ -42187,17 +40513,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0605" - name: "IPS phospholipase C" @@ -42210,17 +40532,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0606" - name: "IPS phospholipase C" @@ -42233,17 +40551,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0607" - name: "IPS phospholipase C" @@ -42256,17 +40570,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0608" - name: "IPS phospholipase C" @@ -42279,17 +40589,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0609" - name: "IPS phospholipase C" @@ -42302,17 +40608,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0610" - name: "IPS phospholipase C" @@ -42325,17 +40627,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0611" - name: "IPS phospholipase C" @@ -42348,17 +40646,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0612" - name: "IPS phospholipase C" @@ -42371,17 +40665,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0613" - name: "IPS phospholipase C" @@ -42394,17 +40684,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0614" - name: "IPS phospholipase C" @@ -42417,17 +40703,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0615" - name: "IPS phospholipase C" @@ -42440,17 +40722,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0616" - name: "IPS phospholipase C" @@ -42464,17 +40742,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0617" - name: "IPS phospholipase C" @@ -42488,17 +40762,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0618" - name: "IPS phospholipase C" @@ -42512,17 +40782,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0619" - name: "IPS phospholipase C" @@ -42536,17 +40802,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0620" - name: "IPS phospholipase C" @@ -42560,17 +40822,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0621" - name: "IPS phospholipase C" @@ -42584,17 +40842,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0622" - name: "IPS phospholipase C" @@ -42608,17 +40862,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0623" - name: "IPS phospholipase C" @@ -42632,17 +40882,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0624" - name: "IPS phospholipase C" @@ -42656,17 +40902,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0625" - name: "IPS phospholipase C" @@ -42680,17 +40922,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0626" - name: "IPS phospholipase C" @@ -42703,17 +40941,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0627" - name: "IPS phospholipase C" @@ -42726,17 +40960,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0628" - name: "IPS phospholipase C" @@ -42749,17 +40979,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0629" - name: "IPS phospholipase C" @@ -42772,17 +40998,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0630" - name: "IPS phospholipase C" @@ -42795,17 +41017,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0631" - name: "IPS phospholipase C" @@ -42818,17 +41036,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0632" - name: "IPS phospholipase C" @@ -42841,17 +41055,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0633" - name: "IPS phospholipase C" @@ -42864,17 +41074,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0634" - name: "IPS phospholipase C" @@ -42887,17 +41093,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0635" - name: "IPS phospholipase C" @@ -42910,17 +41112,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0636" - name: "IPS phospholipase C" @@ -42933,17 +41131,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0637" - name: "IPS phospholipase C" @@ -42956,17 +41150,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0638" - name: "IPS phospholipase C" @@ -42979,17 +41169,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0639" - name: "IPS phospholipase C" @@ -43002,17 +41188,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0640" - name: "IPS phospholipase C" @@ -43025,17 +41207,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0641" - name: "IPS phospholipase C" @@ -43048,17 +41226,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0642" - name: "IPS phospholipase C" @@ -43071,17 +41245,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0643" - name: "IPS phospholipase C" @@ -43094,17 +41264,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0644" - name: "IPS phospholipase C" @@ -43117,17 +41283,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0645" - name: "IPS phospholipase C" @@ -43140,17 +41302,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "17880915; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "17880915" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0646" - name: "IPS phospholipase C" @@ -43164,17 +41322,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0647" - name: "IPS phospholipase C" @@ -43188,17 +41342,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0648" - name: "IPS phospholipase C" @@ -43212,17 +41362,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0649" - name: "IPS phospholipase C" @@ -43236,17 +41382,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0650" - name: "IPS phospholipase C" @@ -43260,17 +41402,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0651" - name: "IPS phospholipase C" @@ -43284,17 +41422,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0652" - name: "IPS phospholipase C" @@ -43308,17 +41442,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0653" - name: "IPS phospholipase C" @@ -43332,17 +41462,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0654" - name: "IPS phospholipase C" @@ -43356,17 +41482,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0655" - name: "IPS phospholipase C" @@ -43380,17 +41502,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER019W" - eccodes: "3.1.4.-" - - references: "11006294; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00600" - - pmid: + - pubmed: - "11006294" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0656" - name: "isoamyl acetate-hydrolyzing esterase" @@ -43404,16 +41522,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR126C" - eccodes: "3.1.-.-" - - references: "10855721" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.-.-" - bigg.reaction: "ACHLE1" - metanetx.reaction: "MNXR95262" - - pmid: "10855721" + - pubmed: "10855721" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0657" - name: "isobutyl acetate-hydrolyzing esterase" @@ -43427,16 +41541,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR126C" - eccodes: "3.1.-.-" - - references: "10855721" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.-.-" - bigg.reaction: "ACHLE2" - metanetx.reaction: "MNXR95263" - - pmid: "10855721" + - pubmed: "10855721" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0658" - name: "isocitrate dehydrogenase (NAD+)" @@ -43450,11 +41560,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL037C and YOR136W" - eccodes: "1.1.1.41" - - references: "1644826" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.41" - bigg.reaction: "ICDHxm" - kegg.pathway: - "sce00020" @@ -43465,9 +41571,9 @@ - "sce01230" - kegg.reaction: "R00709" - metanetx.reaction: "MNXR100782" - - pmid: "1644826" + - pubmed: "1644826" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0659" - name: "isocitrate dehydrogenase (NADP)" @@ -43481,11 +41587,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR174W" - eccodes: "1.1.1.42" - - references: "9175438" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.42" - bigg.reaction: "ICDHyr" - kegg.pathway: - "sce00020" @@ -43498,9 +41600,9 @@ - "sce04146" - kegg.reaction: "R00267" - metanetx.reaction: "MNXR100781" - - pmid: "9175438" + - pubmed: "9175438" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0661" - name: "isocitrate dehydrogenase (NADP+), peroxisomal" @@ -43514,11 +41616,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL009W" - eccodes: "1.1.1.42" - - references: "9175438" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.42" - bigg.reaction: "ICDHyp" - kegg.pathway: - "sce00020" @@ -43531,9 +41629,9 @@ - "sce04146" - kegg.reaction: "R00267" - metanetx.reaction: "MNXR100781" - - pmid: "9175438" + - pubmed: "9175438" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0662" - name: "isocitrate lyase" @@ -43544,12 +41642,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER065C" - - eccodes: "4.1.3.1; 4.1.3.30" - - references: "" - - subsystem: - - "" + - eccodes: + - "4.1.3.1" + - "4.1.3.30" - annotation: !!omap - - ec-code: "4.1.3.1; 4.1.3.30" - bigg.reaction: "ICL" - kegg.pathway: - "sce00630" @@ -43558,7 +41654,7 @@ - kegg.reaction: "R00479" - metanetx.reaction: "MNXR100789" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0663" - name: "isoleucine transaminase" @@ -43571,11 +41667,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR148W" - eccodes: "2.6.1.42" - - references: "8798704" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.42" - bigg.reaction: "ILETA" - kegg.pathway: - "sce00270" @@ -43588,9 +41680,9 @@ - "sce01230" - kegg.reaction: "R02199" - metanetx.reaction: "MNXR96228" - - pmid: "8798704" + - pubmed: "8798704" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0664" - name: "isoleucine transaminase" @@ -43603,11 +41695,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR208W" - eccodes: "2.6.1.42" - - references: "8798704" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.42" - bigg.reaction: "ILETAm" - kegg.pathway: - "sce00270" @@ -43620,9 +41708,9 @@ - "sce01230" - kegg.reaction: "R02199" - metanetx.reaction: "MNXR96228" - - pmid: "8798704" + - pubmed: "8798704" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0665" - name: "isoleucyl-tRNA synthetase" @@ -43637,18 +41725,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBL076C" - eccodes: "6.1.1.5" - - references: "7619074" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.5" - bigg.reaction: "ILETRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03656" - metanetx.reaction: "MNXR100820" - - pmid: "7619074" + - pubmed: "7619074" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0666" - name: "isoleucyl-tRNA synthetase" @@ -43663,18 +41747,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL040C" - eccodes: "6.1.1.5" - - references: "7607232" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.5" - bigg.reaction: "ILETRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R03656" - metanetx.reaction: "MNXR100820" - - pmid: "7607232" + - pubmed: "7607232" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0667" - name: "isopentenyl-diphosphate D-isomerase" @@ -43685,11 +41765,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL117C" - eccodes: "5.3.3.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.3.2" - bigg.reaction: "IPDDI" - kegg.pathway: - "sce00900" @@ -43698,7 +41774,7 @@ - kegg.reaction: "R01123" - metanetx.reaction: "MNXR100796" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0668" - name: "itaconate-CoA ligase (ADP-forming)" @@ -43713,11 +41789,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR244C and YOR142W" - eccodes: "6.2.1.5" - - references: "9874242" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.5" - bigg.reaction: "ITCOALm" - kegg.pathway: - "sce00020" @@ -43727,9 +41799,9 @@ - "sce01200" - kegg.reaction: "R02404" - metanetx.reaction: "MNXR100884" - - pmid: "9874242" + - pubmed: "9874242" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0669" - name: "ketol-acid reductoisomerase (2-aceto-2-hydroxybutanoate)" @@ -43743,11 +41815,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR355C" - eccodes: "1.1.1.86" - - references: "3027658" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.86" - bigg.reaction: "KARA2im" - kegg.pathway: - "sce00290" @@ -43757,9 +41825,9 @@ - "sce01210" - "sce01230" - metanetx.reaction: "MNXR100902" - - pmid: "3027658" + - pubmed: "3027658" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0670" - name: "kynureninase" @@ -43773,18 +41841,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR231C" - eccodes: "3.7.1.3" - - references: "12062417" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.7.1.3" - bigg.reaction: "KYN" - kegg.pathway: "sce00380" - kegg.reaction: "R00987" - metanetx.reaction: "MNXR100946" - - pmid: "12062417" + - pubmed: "12062417" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0671" - name: "kynurenine 3-monooxygenase" @@ -43800,18 +41864,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBL098W" - eccodes: "1.14.13.9" - - references: "12062417" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.13.9" - bigg.reaction: "KYN3OX" - kegg.pathway: "sce00380" - kegg.reaction: "R01960" - metanetx.reaction: "MNXR100947" - - pmid: "12062417" + - pubmed: "12062417" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0672" - name: "L-1-pyrroline-3-hydroxy-5-carboxylate dehydrogenase" @@ -43826,11 +41886,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR037W" - eccodes: "1.2.1.88" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.88" - bigg.reaction: "PHCDm" - kegg.pathway: - "sce00250" @@ -43838,7 +41894,7 @@ - kegg.reaction: "R04444" - metanetx.reaction: "MNXR102616" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0673" - name: "L-4-hydroxyglutamate semialdehyde dehydrogenase" @@ -43853,11 +41909,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR037W" - eccodes: "1.2.1.88" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.88" - bigg.reaction: "4HGLSDm" - kegg.pathway: - "sce00250" @@ -43865,7 +41917,7 @@ - kegg.reaction: "R05051" - metanetx.reaction: "MNXR95015" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0674" - name: "L-alanine transaminase" @@ -43878,11 +41930,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR089C" - eccodes: "2.6.1.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.2" - bigg.reaction: "ALATA_Lm" - kegg.pathway: - "sce00220" @@ -43893,7 +41941,7 @@ - kegg.reaction: "R00258" - metanetx.reaction: "MNXR95698" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0675" - name: "L-allo-threonine aldolase" @@ -43905,11 +41953,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL046C" - eccodes: "4.1.2.48" - - references: "9151955" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.2.48" - bigg.reaction: "THRA2" - kegg.pathway: - "sce00260" @@ -43918,9 +41962,9 @@ - "sce01230" - kegg.reaction: "R06171" - metanetx.reaction: "MNXR104834" - - pmid: "9151955" + - pubmed: "9151955" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0676" - name: "L-allo-threonine dehydrogenase" @@ -43934,20 +41978,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR226C" - eccodes: "1.1.1.381" - - references: "12535615" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.381" - bigg.reaction: "ATHRDHr" - kegg.pathway: - "sce00240" - "sce00260" - kegg.reaction: "R10851" - metanetx.reaction: "MNXR96121" - - pmid: "12535615" + - pubmed: "12535615" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0678" - name: "L-aminoadipate-semialdehyde dehydrogenase (NADPH)" @@ -43963,12 +42003,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR115C and YGL154C" - - eccodes: "1.2.1.31; 1.2.1.95; 2.7.8.7" - - references: "3928261" - - subsystem: - - "" + - eccodes: + - "1.2.1.31" + - "1.2.1.95" + - "2.7.8.7" - annotation: !!omap - - ec-code: "1.2.1.31; 1.2.1.95; 2.7.8.7" - bigg.reaction: "AASAD1" - kegg.pathway: - "sce00300" @@ -43977,9 +42016,9 @@ - "sce01130" - "sce01230" - metanetx.reaction: "MNXR95156" - - pmid: "3928261" + - pubmed: "3928261" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0679" - name: "L-asparaginase" @@ -43992,20 +42031,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR321W" - eccodes: "3.5.1.1" - - references: "8026756" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.1" - bigg.reaction: "ASNN" - kegg.pathway: - "sce00250" - "sce01110" - kegg.reaction: "R00485" - metanetx.reaction: "MNXR96056" - - pmid: "8026756" + - pubmed: "8026756" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0680" - name: "L-asparaginase" @@ -44018,17 +42053,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR155C or YLR157C or YLR158C or YLR160C" - eccodes: "3.5.1.1" - - references: "3042786" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.1" - bigg.reaction: "ASNNe" - kegg.reaction: "R00485" - metanetx.reaction: "MNXR96056" - - pmid: "3042786" + - pubmed: "3042786" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0681" - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" @@ -44041,11 +42072,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR027C" - eccodes: "2.6.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.1" - bigg.reaction: "EHGLAT" - kegg.pathway: - "sce00220" @@ -44063,7 +42090,7 @@ - kegg.reaction: "R03266" - metanetx.reaction: "MNXR97908" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0682" - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" @@ -44076,11 +42103,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL106W" - eccodes: "2.6.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.1" - bigg.reaction: "EHGLATm" - kegg.pathway: - "sce00220" @@ -44098,7 +42121,7 @@ - kegg.reaction: "R03266" - metanetx.reaction: "MNXR97908" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0683" - name: "L-erythro-4-hydroxyglutamate:2-oxoglutarate aminotransferase" @@ -44111,11 +42134,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR027C" - eccodes: "2.6.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.1" - bigg.reaction: "EHGLATp" - kegg.pathway: - "sce00220" @@ -44133,7 +42152,7 @@ - kegg.reaction: "R03266" - metanetx.reaction: "MNXR97908" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0687" - name: "L-hydroxyproline reductase (NADP)" @@ -44147,15 +42166,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YER023W" - eccodes: "1.5.1.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.1.2" - kegg.reaction: "R03293" - metanetx.reaction: "MNXR100699" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0688" - name: "L-lactaldehyde:NADP+ 1-oxidoreductase" @@ -44168,12 +42183,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR104W or YOL151W" - - eccodes: "1.1.1.-; 1.1.1.21; 1.1.1.265; 1.1.1.283" - - references: "12722185" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.21" + - "1.1.1.265" + - "1.1.1.283" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.21; 1.1.1.265; 1.1.1.283" - bigg.reaction: "LALDO3" - kegg.pathway: - "sce00040" @@ -44182,9 +42197,9 @@ - "sce04011" - kegg.reaction: "R02260" - metanetx.reaction: "MNXR101010" - - pmid: "12722185" + - pubmed: "12722185" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0689" - name: "L-serine deaminase" @@ -44195,12 +42210,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL064C" - - eccodes: "4.3.1.17; 4.3.1.19" - - references: "2194168" - - subsystem: - - "" + - eccodes: + - "4.3.1.17" + - "4.3.1.19" - annotation: !!omap - - ec-code: "4.3.1.17; 4.3.1.19" - bigg.reaction: "SERD_L" - kegg.pathway: - "sce00260" @@ -44212,9 +42225,9 @@ - "sce01230" - kegg.reaction: "R00220" - metanetx.reaction: "MNXR104339" - - pmid: "2194168" + - pubmed: "2194168" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0690" - name: "L-serine dehydrogenase" @@ -44228,20 +42241,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR226C" - eccodes: "1.1.1.381" - - references: "12535615" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.381" - bigg.reaction: "LSERDHr" - kegg.pathway: - "sce00240" - "sce00260" - kegg.reaction: "R06126" - metanetx.reaction: "MNXR101242" - - pmid: "12535615" + - pubmed: "12535615" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0691" - name: "L-sorbitol dehydrogenase (L-sorbose-producing)" @@ -44255,18 +42264,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR159W" - eccodes: "1.1.1.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.14" - bigg.reaction: "SBTD_L" - kegg.pathway: - "sce00040" - "sce00051" - metanetx.reaction: "MNXR104284" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0692" - name: "L-threonine deaminase" @@ -44277,12 +42282,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL064C" - - eccodes: "4.3.1.17; 4.3.1.19" - - references: "1628804" - - subsystem: - - "" + - eccodes: + - "4.3.1.17" + - "4.3.1.19" - annotation: !!omap - - ec-code: "4.3.1.17; 4.3.1.19" - bigg.reaction: "THRD_L" - kegg.pathway: - "sce00260" @@ -44294,9 +42297,9 @@ - "sce01230" - kegg.reaction: "R00996" - metanetx.reaction: "MNXR104714" - - pmid: "1628804" + - pubmed: "1628804" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0693" - name: "L-threonine deaminase" @@ -44308,11 +42311,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER086W" - eccodes: "4.3.1.19" - - references: "3289762" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.3.1.19" - bigg.reaction: "THRD_Lm" - kegg.pathway: - "sce00260" @@ -44323,9 +42322,9 @@ - "sce01230" - kegg.reaction: "R00996" - metanetx.reaction: "MNXR104714" - - pmid: "3289762" + - pubmed: "3289762" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0694" - name: "L-tryptophan:oxygen 2,3-oxidoreductase (decyclizing)" @@ -44337,18 +42336,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR078W" - eccodes: "1.13.11.52" - - references: "12062417" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.13.11.52" - bigg.reaction: "TRPO2" - kegg.pathway: "sce00380" - kegg.reaction: "R00678" - metanetx.reaction: "MNXR104944" - - pmid: "12062417" + - pubmed: "12062417" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0695" - name: "L-tyrosine N-formyltransferase" @@ -44361,17 +42356,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR403W" - - eccodes: "" - - references: "8706696" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TYRNFT" - metanetx.reaction: "MNXR104994" - - pmid: "8706696" + - pubmed: "8706696" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0696" - name: "lactaldehyde dehydrogenase" @@ -44385,18 +42375,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL151W" - - eccodes: "" - - references: "3908097" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "LCADi" - kegg.reaction: "R01446" - metanetx.reaction: "MNXR101018" - - pmid: "3908097" + - pubmed: "3908097" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0697" - name: "lactoylglutathione lyase" @@ -44408,17 +42393,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YML004C" - eccodes: "4.4.1.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.4.1.5" - bigg.reaction: "LGTHL" - kegg.pathway: "sce00620" - kegg.reaction: "R02530" - metanetx.reaction: "MNXR100355" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0698" - name: "lanosterol synthase" @@ -44429,11 +42410,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR072W" - eccodes: "5.4.99.7" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.4.99.7" - bigg.reaction: "LNSTLS" - kegg.pathway: - "sce00100" @@ -44442,7 +42419,7 @@ - kegg.reaction: "R03199" - metanetx.reaction: "MNXR101117" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0699" - name: "leucine transaminase" @@ -44455,11 +42432,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR148W" - eccodes: "2.6.1.42" - - references: "9748245" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.42" - bigg.reaction: "LEUTA" - kegg.pathway: - "sce00270" @@ -44472,9 +42445,9 @@ - "sce01230" - kegg.reaction: "R01090" - metanetx.reaction: "MNXR96229" - - pmid: "9748245" + - pubmed: "9748245" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0700" - name: "leucine transaminase" @@ -44487,11 +42460,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR208W" - eccodes: "2.6.1.42" - - references: "8798704" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.42" - bigg.reaction: "LEUTAm" - kegg.pathway: - "sce00270" @@ -44504,9 +42473,9 @@ - "sce01230" - kegg.reaction: "R01090" - metanetx.reaction: "MNXR96229" - - pmid: "8798704" + - pubmed: "8798704" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0701" - name: "leucyl-tRNA synthetase" @@ -44521,18 +42490,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL160W" - eccodes: "6.1.1.4" - - references: "9742237" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.4" - bigg.reaction: "LEUTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03657" - metanetx.reaction: "MNXR101053" - - pmid: "9742237" + - pubmed: "9742237" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0702" - name: "leucyl-tRNA synthetase" @@ -44547,18 +42512,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR382C" - eccodes: "6.1.1.4" - - references: "1990003" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.4" - bigg.reaction: "LEUTRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R03657" - metanetx.reaction: "MNXR101053" - - pmid: "1990003" + - pubmed: "1990003" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0703" - name: "leukotriene A4 hydrolase" @@ -44570,14 +42531,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL045W" - eccodes: "3.3.2.6" - - references: "11601994" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.3.2.6" - - pmid: "11601994" + - pubmed: "11601994" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0704" - name: "leukotriene A4 hydrolase" @@ -44589,14 +42546,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL045W" - eccodes: "3.3.2.6" - - references: "11601994" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.3.2.6" - - pmid: "11601994" + - pubmed: "11601994" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0705" - name: "leukotriene A4 hydrolase" @@ -44608,14 +42561,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL045W" - eccodes: "3.3.2.6" - - references: "11601994" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.3.2.6" - - pmid: "11601994" + - pubmed: "11601994" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0706" - name: "leukotriene A4 hydrolase" @@ -44627,14 +42576,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL045W" - eccodes: "3.3.2.6" - - references: "11601994" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.3.2.6" - - pmid: "11601994" + - pubmed: "11601994" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0707" - name: "leukotriene A4 hydrolase" @@ -44646,17 +42591,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL045W" - eccodes: "3.3.2.6" - - references: "11601994" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.3.2.6" - bigg.reaction: "LTA4H" - kegg.reaction: "R03057" - metanetx.reaction: "MNXR107919" - - pmid: "11601994" + - pubmed: "11601994" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0708" - name: "leukotriene A4 hydrolase" @@ -44668,16 +42609,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL045W" - eccodes: "3.3.2.6" - - references: "11601994" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.3.2.6" - kegg.reaction: "R03057" - metanetx.reaction: "MNXR107919" - - pmid: "11601994" + - pubmed: "11601994" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0711" - name: "lysyl-tRNA synthetase" @@ -44692,18 +42629,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR037W" - eccodes: "6.1.1.6" - - references: "2903861" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.6" - bigg.reaction: "LYSTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03658" - metanetx.reaction: "MNXR101264" - - pmid: "2903861" + - pubmed: "2903861" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0712" - name: "lysyl-tRNA synthetase" @@ -44718,18 +42651,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL073W" - eccodes: "6.1.1.6" - - references: "2016746" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.6" - bigg.reaction: "LYSTRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R03658" - metanetx.reaction: "MNXR101264" - - pmid: "2016746" + - pubmed: "2016746" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0713" - name: "malate dehydrogenase" @@ -44743,11 +42672,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL085W" - eccodes: "1.1.1.37" - - references: "9175438" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.37" - bigg.reaction: "MDHm" - kegg.pathway: - "sce00020" @@ -44759,9 +42684,9 @@ - "sce01200" - kegg.reaction: "R00342" - metanetx.reaction: "MNXR101439" - - pmid: "9175438" + - pubmed: "9175438" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0714" - name: "malate dehydrogenase, cytoplasmic" @@ -44775,11 +42700,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL126C" - eccodes: "1.1.1.37" - - references: "11914276" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.37" - bigg.reaction: "MDH" - kegg.pathway: - "sce00020" @@ -44791,9 +42712,9 @@ - "sce01200" - kegg.reaction: "R00342" - metanetx.reaction: "MNXR101439" - - pmid: "11914276" + - pubmed: "11914276" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0715" - name: "malate dehydrogenase, peroxisomal" @@ -44807,11 +42728,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL078C" - eccodes: "1.1.1.37" - - references: "9175438" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.37" - bigg.reaction: "MDHp" - kegg.pathway: - "sce00020" @@ -44823,9 +42740,9 @@ - "sce01200" - kegg.reaction: "R00342" - metanetx.reaction: "MNXR101439" - - pmid: "9175438" + - pubmed: "9175438" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0716" - name: "malate synthase" @@ -44840,11 +42757,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIR031C or YNL117W" - eccodes: "2.3.3.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.3.9" - bigg.reaction: "MALS" - kegg.pathway: - "sce00620" @@ -44854,7 +42767,7 @@ - kegg.reaction: "R00472" - metanetx.reaction: "MNXR101347" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0717" - name: "malate synthase" @@ -44869,11 +42782,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL117W" - eccodes: "2.3.3.9" - - references: "11846793" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.3.9" - bigg.reaction: "MALSp" - kegg.pathway: - "sce00620" @@ -44882,9 +42791,9 @@ - "sce01200" - kegg.reaction: "R00472" - metanetx.reaction: "MNXR101347" - - pmid: "11846793" + - pubmed: "11846793" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0718" - name: "malic enzyme (NAD)" @@ -44898,23 +42807,19 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL029C" - eccodes: "1.1.1.38" - - references: "9603875; 15491864; 22851014" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.38" - bigg.reaction: "ME1m" - kegg.pathway: - "sce00620" - "sce01200" - kegg.reaction: "R00214" - metanetx.reaction: "MNXR101446" - - pmid: + - pubmed: - "9603875" - "15491864" - "22851014" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0719" - name: "malic enzyme (NADP)" @@ -44928,23 +42833,19 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL029C" - eccodes: "1.1.1.38" - - references: "9603875; 15491864; 22851014" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.38" - bigg.reaction: "ME2m" - kegg.pathway: - "sce00620" - "sce01200" - kegg.reaction: "R00214" - metanetx.reaction: "MNXR101446" - - pmid: + - pubmed: - "9603875" - "15491864" - "22851014" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0721" - name: "malonyl-CoA-ACP transacylase" @@ -44957,11 +42858,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL192C and YOR221C" - eccodes: "2.3.1.39" - - references: "15387819" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.39" - bigg.reaction: "MCOATAm" - kegg.pathway: - "sce00061" @@ -44970,9 +42867,9 @@ - "sce01212" - kegg.reaction: "R01626" - metanetx.reaction: "MNXR101421" - - pmid: "15387819" + - pubmed: "15387819" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0722" - name: "mannose-1-phosphate guanylyltransferase" @@ -44986,11 +42883,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL055C" - eccodes: "2.7.7.13" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.13" - bigg.reaction: "MAN1PT" - kegg.pathway: - "sce00051" @@ -44999,7 +42892,7 @@ - kegg.reaction: "R00885" - metanetx.reaction: "MNXR101375" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0723" - name: "mannose-6-phosphate isomerase" @@ -45010,11 +42903,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER003C" - eccodes: "5.3.1.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.1.8" - bigg.reaction: "MAN6PI" - kegg.pathway: - "sce00051" @@ -45024,7 +42913,7 @@ - kegg.reaction: "R00772" - metanetx.reaction: "MNXR106679" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0724" - name: "methenyltetrahydrifikate cyclohydrolase" @@ -45036,18 +42925,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR084W" - - eccodes: "1.5.1.5; 3.5.4.9; 6.3.4.3" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.5.1.5" + - "3.5.4.9" + - "6.3.4.3" - annotation: !!omap - - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - bigg.reaction: "MTHFCm" - kegg.pathway: "sce00670" - kegg.reaction: "R01655" - metanetx.reaction: "MNXR101748" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0725" - name: "methenyltetrahydrofolate cyclohydrolase" @@ -45059,18 +42947,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR204W" - - eccodes: "1.5.1.5; 3.5.4.9; 6.3.4.3" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.5.1.5" + - "3.5.4.9" + - "6.3.4.3" - annotation: !!omap - - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - bigg.reaction: "MTHFC" - kegg.pathway: "sce00670" - kegg.reaction: "R01655" - metanetx.reaction: "MNXR101748" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0726" - name: "methionine adenosyltransferase" @@ -45085,11 +42972,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR502C or YLR180W" - eccodes: "2.5.1.6" - - references: "194884" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.6" - bigg.reaction: "METAT" - kegg.pathway: - "sce00270" @@ -45097,9 +42980,9 @@ - "sce01230" - kegg.reaction: "R00177" - metanetx.reaction: "MNXR101407" - - pmid: "194884" + - pubmed: "194884" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0727" - name: "methionine synthase" @@ -45112,11 +42995,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER091C" - eccodes: "2.1.1.14" - - references: "16083849" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.14" - bigg.reaction: "METS" - kegg.pathway: - "sce00270" @@ -45125,9 +43004,9 @@ - "sce01230" - kegg.reaction: "R00946" - metanetx.reaction: "MNXR101481" - - pmid: "16083849" + - pubmed: "16083849" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0728" - name: "methionyl-tRNA formyltransferase" @@ -45141,11 +43020,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBL013W" - eccodes: "2.1.2.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.2.9" - bigg.reaction: "FMETTRSm" - kegg.pathway: - "sce00670" @@ -45153,7 +43028,7 @@ - kegg.reaction: "R03940" - metanetx.reaction: "MNXR99604" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0729" - name: "methionyl-tRNA synthetase" @@ -45168,20 +43043,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR264C" - eccodes: "6.1.1.10" - - references: "6304034" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.10" - bigg.reaction: "METTRS" - kegg.pathway: - "sce00450" - "sce00970" - kegg.reaction: "R03659" - metanetx.reaction: "MNXR101488" - - pmid: "6304034" + - pubmed: "6304034" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0730" - name: "methionyl-tRNA synthetase" @@ -45196,20 +43067,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR171C" - eccodes: "6.1.1.10" - - references: "2645139" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.10" - bigg.reaction: "METTRSm" - kegg.pathway: - "sce00450" - "sce00970" - kegg.reaction: "R03659" - metanetx.reaction: "MNXR101488" - - pmid: "2645139" + - pubmed: "2645139" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0731" - name: "methylenetetrahydrofolate dehydrogenase (NAD)" @@ -45222,17 +43089,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR080W" - eccodes: "1.5.1.15" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.1.15" - bigg.reaction: "MTHFD2i" - kegg.pathway: "sce00670" - kegg.reaction: "R01218" - metanetx.reaction: "MNXR101750" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0732" - name: "methylenetetrahydrofolate dehydrogenase (NADP)" @@ -45244,18 +43107,17 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR204W" - - eccodes: "1.5.1.5; 3.5.4.9; 6.3.4.3" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.5.1.5" + - "3.5.4.9" + - "6.3.4.3" - annotation: !!omap - - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - bigg.reaction: "MTHFD" - kegg.pathway: "sce00670" - kegg.reaction: "R01220" - metanetx.reaction: "MNXR101749" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0733" - name: "methylenetetrahydrofolate dehydrogenase (NADP)" @@ -45267,22 +43129,21 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR084W" - - eccodes: "1.5.1.5; 3.5.4.9; 6.3.4.3" - - references: "10871621; 1916088; 8852837" - - subsystem: - - "" + - eccodes: + - "1.5.1.5" + - "3.5.4.9" + - "6.3.4.3" - annotation: !!omap - - ec-code: "1.5.1.5; 3.5.4.9; 6.3.4.3" - bigg.reaction: "MTHFDm" - kegg.pathway: "sce00670" - kegg.reaction: "R01220" - metanetx.reaction: "MNXR101749" - - pmid: + - pubmed: - "10871621" - "1916088" - "8852837" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0734" - name: "methylisocitrate lyase" @@ -45294,11 +43155,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR006C" - eccodes: "4.1.3.30" - - references: "16332871" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.3.30" - bigg.reaction: "MCITL2m" - kegg.pathway: - "sce00630" @@ -45306,9 +43163,9 @@ - "sce01200" - kegg.reaction: "R00409" - metanetx.reaction: "MNXR101415" - - pmid: "16332871" + - pubmed: "16332871" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0735" - name: "mevalonate kinase (atp)" @@ -45322,11 +43179,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR208W" - eccodes: "2.7.1.36" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.36" - bigg.reaction: "MEVK1" - kegg.pathway: - "sce00900" @@ -45336,7 +43189,7 @@ - kegg.reaction: "R02245" - metanetx.reaction: "MNXR101495" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0736" - name: "mevalonate kinase (ctp)" @@ -45350,11 +43203,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR208W" - eccodes: "2.7.1.36" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.36" - bigg.reaction: "MEVK2" - kegg.pathway: - "sce00900" @@ -45363,7 +43212,7 @@ - "sce04146" - metanetx.reaction: "MNXR101496" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0737" - name: "mevalonate kinase (gtp)" @@ -45377,11 +43226,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR208W" - eccodes: "2.7.1.36" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.36" - bigg.reaction: "MEVK3" - kegg.pathway: - "sce00900" @@ -45390,7 +43235,7 @@ - "sce04146" - metanetx.reaction: "MNXR101497" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0738" - name: "mevalonate kinase (UTP)" @@ -45404,11 +43249,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR208W" - eccodes: "2.7.1.36" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.36" - bigg.reaction: "MEVK4" - kegg.pathway: - "sce00900" @@ -45417,7 +43258,7 @@ - "sce04146" - metanetx.reaction: "MNXR101498" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0739" - name: "mevalonate pyrophoshate decarboxylase" @@ -45432,11 +43273,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR043W" - eccodes: "4.1.1.33" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.33" - bigg.reaction: "DPMVD" - kegg.pathway: - "sce00900" @@ -45445,7 +43282,7 @@ - kegg.reaction: "R01121" - metanetx.reaction: "MNXR97776" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0747" - name: "MIPC synthase" @@ -45458,18 +43295,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - eccodes: "2.-.-.-; 2.4.-.-" - - references: "12954640; 18296751" - - subsystem: - - "" + - eccodes: + - "2.-.-.-" + - "2.4.-.-" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - metanetx.reaction: "MNXR126697" - - pmid: + - pubmed: - "12954640" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0748" - name: "MIPC synthase" @@ -45482,17 +43317,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - eccodes: "2.-.-.-; 2.4.-.-" - - references: "12954640; 18296751" - - subsystem: - - "" + - eccodes: + - "2.-.-.-" + - "2.4.-.-" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: + - pubmed: - "12954640" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0749" - name: "MIPC synthase" @@ -45505,17 +43338,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - eccodes: "2.-.-.-; 2.4.-.-" - - references: "12954640; 18296751" - - subsystem: - - "" + - eccodes: + - "2.-.-.-" + - "2.4.-.-" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: + - pubmed: - "12954640" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0750" - name: "MIPC synthase" @@ -45528,17 +43359,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - eccodes: "2.-.-.-; 2.4.-.-" - - references: "12954640; 18296751" - - subsystem: - - "" + - eccodes: + - "2.-.-.-" + - "2.4.-.-" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: + - pubmed: - "12954640" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0751" - name: "MIPC synthase" @@ -45551,17 +43380,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - eccodes: "2.-.-.-; 2.4.-.-" - - references: "12954640; 18296751" - - subsystem: - - "" + - eccodes: + - "2.-.-.-" + - "2.4.-.-" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: + - pubmed: - "12954640" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0752" - name: "MIPC synthase" @@ -45574,17 +43401,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - eccodes: "2.-.-.-; 2.4.-.-" - - references: "12954640; 18296751" - - subsystem: - - "" + - eccodes: + - "2.-.-.-" + - "2.4.-.-" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: + - pubmed: - "12954640" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0753" - name: "MIPC synthase" @@ -45597,17 +43422,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - eccodes: "2.-.-.-; 2.4.-.-" - - references: "12954640; 18296751" - - subsystem: - - "" + - eccodes: + - "2.-.-.-" + - "2.4.-.-" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: + - pubmed: - "12954640" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0754" - name: "MIPC synthase" @@ -45620,17 +43443,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - eccodes: "2.-.-.-; 2.4.-.-" - - references: "12954640; 18296751" - - subsystem: - - "" + - eccodes: + - "2.-.-.-" + - "2.4.-.-" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: + - pubmed: - "12954640" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0755" - name: "MIPC synthase" @@ -45643,17 +43464,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - eccodes: "2.-.-.-; 2.4.-.-" - - references: "12954640; 18296751" - - subsystem: - - "" + - eccodes: + - "2.-.-.-" + - "2.4.-.-" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: + - pubmed: - "12954640" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0756" - name: "MIPC synthase" @@ -45666,17 +43485,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR036C and YBR161W) or (YBR036C and YPL057C)" - - eccodes: "2.-.-.-; 2.4.-.-" - - references: "12954640; 18296751" - - subsystem: - - "" + - eccodes: + - "2.-.-.-" + - "2.4.-.-" - annotation: !!omap - - ec-code: "2.-.-.-; 2.4.-.-" - - pmid: + - pubmed: - "12954640" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0757" - name: "myo-inositol 1-phosphatase" @@ -45689,20 +43506,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR287W or YHR046C" - eccodes: "3.1.3.25" - - references: "10844654" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.25" - bigg.reaction: "MI1PP" - kegg.pathway: - "sce00562" - "sce04070" - kegg.reaction: "R01185" - metanetx.reaction: "MNXR101570" - - pmid: "10844654" + - pubmed: "10844654" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0758" - name: "myo-inositol-1-phosphate synthase" @@ -45713,18 +43526,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL153C" - eccodes: "5.5.1.4" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.5.1.4" - bigg.reaction: "MI1PS" - kegg.pathway: - "sce00562" - "sce01130" - metanetx.reaction: "MNXR101571" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0759" - name: "N-acetyl-g-glutamyl-phosphate reductase" @@ -45738,12 +43547,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER069W" - - eccodes: "1.2.1.38; 2.7.2.8" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.2.1.38" + - "2.7.2.8" - annotation: !!omap - - ec-code: "1.2.1.38; 2.7.2.8" - bigg.reaction: "AGPRim" - kegg.pathway: - "sce00220" @@ -45754,7 +43561,7 @@ - kegg.reaction: "R03443" - metanetx.reaction: "MNXR95530" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0760" - name: "N-acetylglucosamine-6-phosphate synthase" @@ -45768,18 +43575,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YFL017C" - eccodes: "2.3.1.4" - - references: "9867860" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.4" - bigg.reaction: "ACGAM6PS" - kegg.pathway: "sce00520" - kegg.reaction: "R02058" - metanetx.reaction: "MNXR95248" - - pmid: "9867860" + - pubmed: "9867860" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0761" - name: "N-acteylglutamate synthase" @@ -45792,12 +43595,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJL071W or YMR062C" - - eccodes: "2.3.1.1; 2.3.1.35" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.3.1.1" + - "2.3.1.35" - annotation: !!omap - - ec-code: "2.3.1.1; 2.3.1.35" - bigg.reaction: "ACGSm" - kegg.pathway: - "sce00220" @@ -45808,7 +43609,7 @@ - kegg.reaction: "R00259" - metanetx.reaction: "MNXR95259" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0762" - name: "N-formyl-L-kynurenine amidohydrolase" @@ -45822,20 +43623,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR428C" - eccodes: "3.5.1.9" - - references: "18205391" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.9" - bigg.reaction: "FKYNH" - kegg.pathway: - "sce00380" - "sce00630" - kegg.reaction: "R01959" - metanetx.reaction: "MNXR99596" - - pmid: "18205391" + - pubmed: "18205391" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0763" - name: "N-formyltyrosine oxidase" @@ -45849,18 +43646,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR402C and YDR403W" - eccodes: "1.14.14.-" - - references: "8706696" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.14.-" - kegg.pathway: - "sce00071" - "sce00380" - metanetx.reaction: "MNXR101947" - - pmid: "8706696" + - pubmed: "8706696" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0764" - name: "NAD diphosphatase" @@ -45874,11 +43667,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL067W" - eccodes: "3.6.1.22" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.22" - bigg.reaction: "NADDPp" - kegg.pathway: - "sce00760" @@ -45886,7 +43675,7 @@ - kegg.reaction: "R00103" - metanetx.reaction: "MNXR101861" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0765" - name: "NAD kinase" @@ -45899,19 +43688,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL041W or YJR049C" - - eccodes: "2.7.1.23; 2.7.1.86" - - references: "15978040" - - subsystem: - - "" + - eccodes: + - "2.7.1.23" + - "2.7.1.86" - annotation: !!omap - - ec-code: "2.7.1.23; 2.7.1.86" - bigg.reaction: "NADK" - kegg.pathway: "sce00760" - kegg.reaction: "R00104" - metanetx.reaction: "MNXR101882" - - pmid: "15978040" + - pubmed: "15978040" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0766" - name: "NAD kinase" @@ -45924,19 +43711,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL041W or YJR049C or YPL188W" - - eccodes: "2.7.1.23; 2.7.1.86" - - references: "15978040" - - subsystem: - - "" + - eccodes: + - "2.7.1.23" + - "2.7.1.86" - annotation: !!omap - - ec-code: "2.7.1.23; 2.7.1.86" - bigg.reaction: "NADKm" - kegg.pathway: "sce00760" - kegg.reaction: "R00104" - metanetx.reaction: "MNXR101882" - - pmid: "15978040" + - pubmed: "15978040" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0767" - name: "NAD nucleosidase nuclear" @@ -45950,19 +43735,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL042C or YDR191W or YOL068C or YOR025W or YPL015C" - eccodes: "3.5.1.-" - - references: "17482543" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: - "sce00760" - "sce04213" - kegg.reaction: "R00102" - metanetx.reaction: "MNXR101888" - - pmid: "17482543" + - pubmed: "17482543" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0768" - name: "NAD synthase" @@ -45980,18 +43761,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR074W" - eccodes: "6.3.5.1" - - references: "12771147" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.5.1" - bigg.reaction: "NADS2" - kegg.pathway: "sce00760" - kegg.reaction: "R00257" - metanetx.reaction: "MNXR97678" - - pmid: "12771147" + - pubmed: "12771147" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0769" - name: "NAD synthase" @@ -46009,17 +43786,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR074W" - eccodes: "6.3.5.1" - - references: "12771147" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.5.1" - kegg.pathway: "sce00760" - kegg.reaction: "R00257" - metanetx.reaction: "MNXR97678" - - pmid: "12771147" + - pubmed: "12771147" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0770" - name: "NADH dehydrogenase, cytosolic/mitochondrial" @@ -46033,16 +43806,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL085W or YMR145C" - eccodes: "1.6.5.9" - - references: "9733747" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.6.5.9" - bigg.reaction: "NADH2_u6cm" - metanetx.reaction: "MNXR101868" - - pmid: "9733747" + - pubmed: "9733747" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0771" - name: "NADH kinase" @@ -46055,18 +43824,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL041W or YJR049C" - - eccodes: "2.7.1.23; 2.7.1.86" - - references: "15978040" - - subsystem: - - "" + - eccodes: + - "2.7.1.23" + - "2.7.1.86" - annotation: !!omap - - ec-code: "2.7.1.23; 2.7.1.86" - kegg.pathway: "sce00760" - kegg.reaction: "R00105" - metanetx.reaction: "MNXR106390" - - pmid: "15978040" + - pubmed: "15978040" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0772" - name: "NADH kinase mitochondrial" @@ -46079,18 +43846,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL041W or YJR049C or YPL188W" - - eccodes: "2.7.1.23; 2.7.1.86" - - references: "15978040" - - subsystem: - - "" + - eccodes: + - "2.7.1.23" + - "2.7.1.86" - annotation: !!omap - - ec-code: "2.7.1.23; 2.7.1.86" - kegg.pathway: "sce00760" - kegg.reaction: "R00105" - metanetx.reaction: "MNXR106390" - - pmid: "15978040" + - pubmed: "15978040" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0773" - name: "NADH:ubiquinone oxidoreductase" @@ -46104,15 +43869,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML120C" - eccodes: "1.6.5.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.6.5.9" - bigg.reaction: "NADH2_u6m" - metanetx.reaction: "MNXR101869" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0774" - name: "NAPRtase" @@ -46129,17 +43890,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR209C" - eccodes: "6.3.4.21" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.4.21" - bigg.reaction: "NAPRT" - kegg.pathway: "sce00760" - kegg.reaction: "R01724" - metanetx.reaction: "MNXR101909" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0775" - name: "NAPRtase" @@ -46156,17 +43913,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR209C" - eccodes: "6.3.4.21" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.4.21" - bigg.reaction: "NAPRTm" - kegg.pathway: "sce00760" - kegg.reaction: "R01724" - metanetx.reaction: "MNXR101909" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0781" - name: "nicotinamidase" @@ -46179,11 +43932,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL037C" - eccodes: "3.5.1.19" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.19" - bigg.reaction: "NNAM" - kegg.pathway: - "sce00760" @@ -46191,7 +43940,7 @@ - kegg.reaction: "R01268" - metanetx.reaction: "MNXR101977" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0782" - name: "nicotinamide N-methyltransferase" @@ -46204,17 +43953,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR285W" - eccodes: "2.1.1.-" - - references: "12736687" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.-" - bigg.reaction: "NNMT" - kegg.reaction: "R01269" - metanetx.reaction: "MNXR101981" - - pmid: "12736687" + - pubmed: "12736687" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0783" - name: "nicotinamide-nucleotide adenylyltransferase" @@ -46227,19 +43972,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL047C or YLR328W" - - eccodes: "2.7.7.1; 2.7.7.18" - - references: "15078171" - - subsystem: - - "" + - eccodes: + - "2.7.7.1" + - "2.7.7.18" - annotation: !!omap - - ec-code: "2.7.7.1; 2.7.7.18" - bigg.reaction: "NMNAT" - kegg.pathway: "sce00760" - kegg.reaction: "R00137" - metanetx.reaction: "MNXR95841" - - pmid: "15078171" + - pubmed: "15078171" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0784" - name: "nicotinamide-nucleotide adenylyltransferase" @@ -46252,19 +43995,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR010W or YLR328W" - - eccodes: "2.7.7.1; 2.7.7.18" - - references: "15078171" - - subsystem: - - "" + - eccodes: + - "2.7.7.1" + - "2.7.7.18" - annotation: !!omap - - ec-code: "2.7.7.1; 2.7.7.18" - bigg.reaction: "NMNATn" - kegg.pathway: "sce00760" - kegg.reaction: "R00137" - metanetx.reaction: "MNXR95841" - - pmid: "15078171" + - pubmed: "15078171" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0785" - name: "nicotinate-nucleotide adenylyltransferase" @@ -46277,19 +44018,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR010W or YLR328W" - - eccodes: "2.7.7.1; 2.7.7.18" - - references: "15078171" - - subsystem: - - "" + - eccodes: + - "2.7.7.1" + - "2.7.7.18" - annotation: !!omap - - ec-code: "2.7.7.1; 2.7.7.18" - bigg.reaction: "NNATr" - kegg.pathway: "sce00760" - kegg.reaction: "R03005" - metanetx.reaction: "MNXR101978" - - pmid: "15078171" + - pubmed: "15078171" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0786" - name: "nicotinate-nucleotide diphosphorylase (carboxylating)" @@ -46304,17 +44043,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR047C" - eccodes: "2.4.2.19" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.19" - bigg.reaction: "NNDPR" - kegg.pathway: "sce00760" - kegg.reaction: "R03348" - metanetx.reaction: "MNXR101980" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0787" - name: "nicotinate-nucleotide diphosphorylase (carboxylating)" @@ -46329,17 +44064,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR047C" - eccodes: "2.4.2.19" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.19" - bigg.reaction: "NNDPRm" - kegg.pathway: "sce00760" - kegg.reaction: "R03348" - metanetx.reaction: "MNXR101980" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0788" - name: "nucleoside diphosphatase" @@ -46353,20 +44084,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YER005W" - eccodes: "3.6.1.5" - - references: "10409709" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.5" - bigg.reaction: "NDP1" - kegg.pathway: - "sce00230" - "sce00240" - kegg.reaction: "R00122" - metanetx.reaction: "MNXR96129" - - pmid: "10409709" + - pubmed: "10409709" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0789" - name: "nucleoside diphosphatase" @@ -46380,20 +44107,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YER005W" - eccodes: "3.6.1.5" - - references: "10409709" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.5" - bigg.reaction: "NDP3" - kegg.pathway: - "sce00230" - "sce00240" - kegg.reaction: "R00328" - metanetx.reaction: "MNXR101928" - - pmid: "10409709" + - pubmed: "10409709" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0790" - name: "nucleoside diphosphatase" @@ -46407,20 +44130,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YER005W" - eccodes: "3.6.1.5" - - references: "10409709" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.5" - bigg.reaction: "NDP7" - kegg.pathway: - "sce00230" - "sce00240" - kegg.reaction: "R00155" - metanetx.reaction: "MNXR101931" - - pmid: "10409709" + - pubmed: "10409709" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0791" - name: "nucleoside diphosphatase" @@ -46434,16 +44153,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL042W" - eccodes: "3.6.1.42" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.42" - bigg.reaction: "NDP7g" - kegg.reaction: "R00155" - metanetx.reaction: "MNXR101931" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0792" - name: "nucleoside diphosphatase" @@ -46457,11 +44172,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER005W" - eccodes: "3.6.1.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.5" - bigg.reaction: "CDPPH" - kegg.pathway: - "sce00230" @@ -46469,7 +44180,7 @@ - kegg.reaction: "R00514" - metanetx.reaction: "MNXR96559" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0793" - name: "nucleoside diphosphatase" @@ -46483,11 +44194,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER005W" - eccodes: "3.6.1.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.5" - bigg.reaction: "IDPA" - kegg.pathway: - "sce00230" @@ -46495,7 +44202,7 @@ - kegg.reaction: "R00961" - metanetx.reaction: "MNXR100807" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0795" - name: "nucleoside diphosphate kinase" @@ -46508,11 +44215,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - eccodes: "2.7.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.6" - bigg.reaction: "NDPK3" - kegg.pathway: - "sce00230" @@ -46522,7 +44225,7 @@ - kegg.reaction: "R00570" - metanetx.reaction: "MNXR101936" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0796" - name: "nucleoside diphosphate kinase" @@ -46535,11 +44238,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - eccodes: "2.7.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.6" - bigg.reaction: "NDPK8" - kegg.pathway: - "sce00230" @@ -46549,7 +44248,7 @@ - kegg.reaction: "R01137" - metanetx.reaction: "MNXR101940" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0797" - name: "nucleoside diphosphate kinase" @@ -46562,11 +44261,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - eccodes: "2.7.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.6" - bigg.reaction: "NDPK7" - kegg.pathway: - "sce00230" @@ -46576,7 +44271,7 @@ - kegg.reaction: "R02326" - metanetx.reaction: "MNXR101939" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0798" - name: "nucleoside diphosphate kinase" @@ -46589,11 +44284,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - eccodes: "2.7.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.6" - bigg.reaction: "NDPK5" - kegg.pathway: - "sce00230" @@ -46603,7 +44294,7 @@ - kegg.reaction: "R01857" - metanetx.reaction: "MNXR96118" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0799" - name: "nucleoside diphosphate kinase" @@ -46616,11 +44307,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - eccodes: "2.7.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.6" - bigg.reaction: "NDPK4" - kegg.pathway: - "sce00230" @@ -46630,7 +44317,7 @@ - kegg.reaction: "R02093" - metanetx.reaction: "MNXR101937" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0800" - name: "nucleoside diphosphate kinase" @@ -46643,11 +44330,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - eccodes: "2.7.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.6" - bigg.reaction: "NDPK1" - kegg.pathway: - "sce00230" @@ -46657,7 +44340,7 @@ - kegg.reaction: "R00330" - metanetx.reaction: "MNXR96119" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0801" - name: "nucleoside diphosphate kinase" @@ -46670,11 +44353,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - eccodes: "2.7.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.6" - bigg.reaction: "NDPK9" - kegg.pathway: - "sce00230" @@ -46684,7 +44363,7 @@ - kegg.reaction: "R00722" - metanetx.reaction: "MNXR101941" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0802" - name: "nucleoside diphosphate kinase" @@ -46697,11 +44376,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - eccodes: "2.7.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.6" - bigg.reaction: "NDPK10" - kegg.pathway: - "sce00230" @@ -46711,7 +44386,7 @@ - kegg.reaction: "R03530" - metanetx.reaction: "MNXR101934" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0803" - name: "nucleoside diphosphate kinase" @@ -46724,11 +44399,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - eccodes: "2.7.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.6" - bigg.reaction: "NDPK6" - kegg.pathway: - "sce00230" @@ -46738,7 +44409,7 @@ - kegg.reaction: "R02331" - metanetx.reaction: "MNXR101938" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0804" - name: "nucleoside triphosphatase" @@ -46752,20 +44423,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YAL035W or YLL001W or YER005W" - eccodes: "3.6.1.5" - - references: "10409709" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.5" - bigg.reaction: "NTP3" - kegg.pathway: - "sce00230" - "sce00240" - kegg.reaction: "R00335" - metanetx.reaction: "MNXR102043" - - pmid: "10409709" + - pubmed: "10409709" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0805" - name: "nucleoside triphosphatase" @@ -46779,20 +44446,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YER005W" - eccodes: "3.6.1.5" - - references: "10409709" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.5" - bigg.reaction: "NTP7" - kegg.pathway: - "sce00230" - "sce00240" - kegg.reaction: "R00159" - metanetx.reaction: "MNXR101933" - - pmid: "10409709" + - pubmed: "10409709" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0806" - name: "nucleoside triphosphatase" @@ -46806,11 +44469,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER005W" - eccodes: "3.6.1.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.5" - bigg.reaction: "NTP5" - kegg.pathway: - "sce00230" @@ -46818,7 +44477,7 @@ - kegg.reaction: "R00569" - metanetx.reaction: "MNXR102045" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0807" - name: "nucleoside triphosphatase" @@ -46832,11 +44491,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER005W" - eccodes: "3.6.1.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.5" - bigg.reaction: "NTP10" - kegg.pathway: - "sce00230" @@ -46844,7 +44499,7 @@ - kegg.reaction: "R00719" - metanetx.reaction: "MNXR100892" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0810" - name: "nucleoside-diphosphatase (GDP), Golgi" @@ -46858,16 +44513,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL042W" - eccodes: "3.6.1.42" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.42" - bigg.reaction: "NDP3g" - kegg.reaction: "R00328" - metanetx.reaction: "MNXR101928" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0811" - name: "nucleoside-diphosphate kinase (ATP:UDP)" @@ -46880,11 +44531,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL067W" - eccodes: "2.7.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.6" - bigg.reaction: "NDPK2" - kegg.pathway: - "sce00230" @@ -46894,7 +44541,7 @@ - kegg.reaction: "R00156" - metanetx.reaction: "MNXR101935" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0812" - name: "O-acetylhomoserine (thiol)-lyase" @@ -46907,12 +44554,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR303W" - - eccodes: "2.5.1.47; 2.5.1.49" - - references: "15042590" - - subsystem: - - "" + - eccodes: + - "2.5.1.47" + - "2.5.1.49" - annotation: !!omap - - ec-code: "2.5.1.47; 2.5.1.49" - bigg.reaction: "AHSERL" - kegg.pathway: - "sce00270" @@ -46923,9 +44568,9 @@ - "sce01230" - kegg.reaction: "R00651" - metanetx.reaction: "MNXR95634" - - pmid: "15042590" + - pubmed: "15042590" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0813" - name: "O-acetylhomoserine (thiol)-lyase" @@ -46937,12 +44582,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR303W" - - eccodes: "2.5.1.47; 2.5.1.49" - - references: "15042590" - - subsystem: - - "" + - eccodes: + - "2.5.1.47" + - "2.5.1.49" - annotation: !!omap - - ec-code: "2.5.1.47; 2.5.1.49" - bigg.reaction: "AHSERL2" - kegg.pathway: - "sce00270" @@ -46953,9 +44596,9 @@ - "sce01230" - kegg.reaction: "R01287" - metanetx.reaction: "MNXR95631" - - pmid: "15042590" + - pubmed: "15042590" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0815" - name: "O-succinylhomoserine lyase (L-cysteine)" @@ -46969,11 +44612,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL058W or YML082W or YAL012W" - eccodes: "4.4.1.1" - - references: "8511969" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.4.1.1" - bigg.reaction: "SHSL1" - kegg.pathway: - "sce00260" @@ -46983,9 +44622,9 @@ - "sce01230" - kegg.reaction: "R03260" - metanetx.reaction: "MNXR104380" - - pmid: "8511969" + - pubmed: "8511969" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0816" - name: "ornithine carbamoyltransferase" @@ -46999,11 +44638,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL088W" - eccodes: "2.1.3.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.3.3" - bigg.reaction: "OCBT" - kegg.pathway: - "sce00220" @@ -47013,7 +44648,7 @@ - kegg.reaction: "R01398" - metanetx.reaction: "MNXR102137" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0817" - name: "ornithine decarboxylase" @@ -47026,11 +44661,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL184W" - eccodes: "4.1.1.17" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.17" - bigg.reaction: "ORNDC" - kegg.pathway: - "sce00330" @@ -47040,7 +44671,7 @@ - kegg.reaction: "R00670" - metanetx.reaction: "MNXR102209" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0818" - name: "ornithine transacetylase" @@ -47052,12 +44683,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR062C" - - eccodes: "2.3.1.1; 2.3.1.35" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.3.1.1" + - "2.3.1.35" - annotation: !!omap - - ec-code: "2.3.1.1; 2.3.1.35" - bigg.reaction: "ORNTACim" - kegg.pathway: - "sce00220" @@ -47068,7 +44697,7 @@ - kegg.reaction: "R02282" - metanetx.reaction: "MNXR102221" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0819" - name: "ornithine transaminase" @@ -47081,11 +44710,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR438W" - eccodes: "2.6.1.13" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.13" - bigg.reaction: "ORNTA" - kegg.pathway: - "sce00330" @@ -47094,7 +44719,7 @@ - kegg.reaction: "R00667" - metanetx.reaction: "MNXR102220" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0820" - name: "orotate phosphoribosyltransferase" @@ -47107,17 +44732,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YML106W or YMR271C" - eccodes: "2.4.2.10" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.10" - bigg.reaction: "ORPT" - kegg.pathway: "sce00240" - kegg.reaction: "R01870" - metanetx.reaction: "MNXR102231" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0821" - name: "orotidine-5'-phosphate decarboxylase" @@ -47130,17 +44751,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL021W" - eccodes: "4.1.1.23" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.23" - bigg.reaction: "OMPDC" - kegg.pathway: "sce00240" - kegg.reaction: "R00965" - metanetx.reaction: "MNXR102190" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0831" - name: "oxoglutarate dehydrogenase (dihydrolipoamide S-succinyltransferase)" @@ -47152,12 +44769,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR148C and YFL018C and YIL125W" - - eccodes: "1.2.4.2; 1.8.1.4; 2.3.1.61" - - references: "2178788" - - subsystem: - - "" + - eccodes: + - "1.2.4.2" + - "1.8.1.4" + - "2.3.1.61" - annotation: !!omap - - ec-code: "1.2.4.2; 1.8.1.4; 2.3.1.61" - bigg.reaction: "AKGDbm" - kegg.pathway: - "sce00010" @@ -47174,9 +44790,9 @@ - "sce01200" - kegg.reaction: "R02570" - metanetx.reaction: "MNXR95656" - - pmid: "2178788" + - pubmed: "2178788" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0832" - name: "oxoglutarate dehydrogenase (lipoamide)" @@ -47189,12 +44805,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR148C and YFL018C and YIL125W" - - eccodes: "1.2.4.2; 1.8.1.4; 2.3.1.61" - - references: "10224250" - - subsystem: - - "" + - eccodes: + - "1.2.4.2" + - "1.8.1.4" + - "2.3.1.61" - annotation: !!omap - - ec-code: "1.2.4.2; 1.8.1.4; 2.3.1.61" - bigg.reaction: "AKGDam" - kegg.pathway: - "sce00010" @@ -47211,9 +44826,9 @@ - "sce01200" - kegg.reaction: "R01700" - metanetx.reaction: "MNXR95657" - - pmid: "10224250" + - pubmed: "10224250" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0841" - name: "pantetheine-phosphate adenylyltransferase" @@ -47227,18 +44842,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR277C" - eccodes: "2.7.7.3" - - references: "19266201" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.3" - bigg.reaction: "PTPATi" - kegg.pathway: "sce00770" - kegg.reaction: "R03035" - metanetx.reaction: "MNXR95892" - - pmid: "19266201" + - pubmed: "19266201" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0842" - name: "pantothenate kinase" @@ -47252,17 +44863,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR531W" - eccodes: "2.7.1.33" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.33" - bigg.reaction: "PNTK" - kegg.pathway: "sce00770" - kegg.reaction: "R03018" - metanetx.reaction: "MNXR103050" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0843" - name: "pantothenate synthase" @@ -47278,11 +44885,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL145C" - eccodes: "6.3.2.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.2.1" - bigg.reaction: "PANTS" - kegg.pathway: - "sce00410" @@ -47291,7 +44894,7 @@ - kegg.reaction: "R02473" - metanetx.reaction: "MNXR102345" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0844" - name: "peroxisomal acyl-CoA thioesterase" @@ -47305,19 +44908,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - eccodes: "3.1.2.2" - - references: "10092594" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.2" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - metanetx.reaction: "MNXR122908" - - pmid: "10092594" + - pubmed: "10092594" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0845" - name: "peroxisomal acyl-CoA thioesterase" @@ -47331,20 +44930,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - eccodes: "3.1.2.2" - - references: "10092594" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.2" - bigg.reaction: "PTE11x" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - metanetx.reaction: "MNXR122907" - - pmid: "10092594" + - pubmed: "10092594" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0847" - name: "peroxisomal acyl-CoA thioesterase" @@ -47358,11 +44953,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - eccodes: "3.1.2.2" - - references: "10092594" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.2" - bigg.reaction: "PTE2x" - kegg.pathway: - "sce00062" @@ -47370,9 +44961,9 @@ - "sce01110" - kegg.reaction: "R01274" - metanetx.reaction: "MNXR99131" - - pmid: "10092594" + - pubmed: "10092594" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0848" - name: "peroxisomal acyl-CoA thioesterase" @@ -47386,20 +44977,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - eccodes: "3.1.2.2" - - references: "10092594" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.2" - bigg.reaction: "PTE7x" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - metanetx.reaction: "MNXR122906" - - pmid: "10092594" + - pubmed: "10092594" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0849" - name: "peroxisomal acyl-CoA thioesterase" @@ -47413,11 +45000,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - eccodes: "3.1.2.2" - - references: "10092594" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.2" - bigg.reaction: "PTE8x" - kegg.pathway: - "sce00062" @@ -47425,9 +45008,9 @@ - "sce01110" - kegg.reaction: "R08174" - metanetx.reaction: "MNXR99133" - - pmid: "10092594" + - pubmed: "10092594" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0850" - name: "peroxisomal acyl-CoA thioesterase" @@ -47441,20 +45024,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - eccodes: "3.1.2.2" - - references: "10092594" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.2" - bigg.reaction: "PTE9x" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - metanetx.reaction: "MNXR99140" - - pmid: "10092594" + - pubmed: "10092594" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0851" - name: "phenylalanine transaminase" @@ -47466,12 +45045,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL202W" - - eccodes: "2.6.1.39; 2.6.1.57" - - references: "9491082; 9491083" - - subsystem: - - "" + - eccodes: + - "2.6.1.39" + - "2.6.1.57" - annotation: !!omap - - ec-code: "2.6.1.39; 2.6.1.57" - bigg.reaction: "PHETA1" - kegg.pathway: - "sce00130" @@ -47487,11 +45064,11 @@ - "sce01230" - kegg.reaction: "R00694" - metanetx.reaction: "MNXR126234" - - pmid: + - pubmed: - "9491082" - "9491083" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0852" - name: "phenylalanyl-tRNA synthetase" @@ -47506,18 +45083,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YFL022C and YLR060W" - eccodes: "6.1.1.20" - - references: "3049607" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.20" - bigg.reaction: "PHETRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03660" - metanetx.reaction: "MNXR102634" - - pmid: "3049607" + - pubmed: "3049607" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0853" - name: "phenylalanyl-tRNA synthetase" @@ -47532,18 +45105,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR047W" - eccodes: "6.1.1.20" - - references: "3029120" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.20" - bigg.reaction: "PHETRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R03660" - metanetx.reaction: "MNXR102634" - - pmid: "3029120" + - pubmed: "3029120" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0854" - name: "phenylpyruvate decarboxylase" @@ -47556,18 +45125,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR380W" - eccodes: "4.1.1.43" - - references: "12902239" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.43" - bigg.reaction: "PPYRDC" - kegg.pathway: "sce00360" - kegg.reaction: "R01377" - metanetx.reaction: "MNXR125761" - - pmid: "12902239" + - pubmed: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0855" - name: "phopshoribosylaminoimidazole synthetase" @@ -47581,12 +45146,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL234W" - - eccodes: "6.3.3.1; 6.3.4.13" - - references: "" - - subsystem: - - "" + - eccodes: + - "6.3.3.1" + - "6.3.4.13" - annotation: !!omap - - ec-code: "6.3.3.1; 6.3.4.13" - bigg.reaction: "PRAIS" - kegg.pathway: - "sce00230" @@ -47595,7 +45158,7 @@ - kegg.reaction: "R04208" - metanetx.reaction: "MNXR139261" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0882" - name: "phosphoacetylglucosamine mutase" @@ -47606,19 +45169,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL058W" - eccodes: "5.4.2.3" - - references: "8174553" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.4.2.3" - kegg.pathway: - "sce00520" - "sce01130" - kegg.reaction: "R08193" - metanetx.reaction: "MNXR111765" - - pmid: "8174553" + - pubmed: "8174553" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0883" - name: "phosphoadenylyl-sulfate reductase (thioredoxin)" @@ -47633,17 +45192,13 @@ - upper_bound: 1000 - gene_reaction_rule: "(YGR209C and YPR167C) or (YLR043C and YPR167C)" - eccodes: "1.8.4.8" - - references: "2203779" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.8.4.8" - bigg.reaction: "PAPSR" - kegg.pathway: "sce00920" - metanetx.reaction: "MNXR137297" - - pmid: "2203779" + - pubmed: "2203779" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0884" - name: "phosphoenolpyruvate carboxykinase" @@ -47657,11 +45212,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR097W" - eccodes: "4.1.1.49" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.49" - bigg.reaction: "PPCK" - kegg.pathway: - "sce00010" @@ -47673,7 +45224,7 @@ - kegg.reaction: "R00341" - metanetx.reaction: "MNXR103099" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0885" - name: "phosphoethanolamine cytidyltransferase" @@ -47687,11 +45238,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR007W" - eccodes: "2.7.7.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.14" - bigg.reaction: "PETHCT" - kegg.pathway: - "sce00440" @@ -47699,7 +45246,7 @@ - kegg.reaction: "R02038" - metanetx.reaction: "MNXR102498" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0886" - name: "phosphofructokinase" @@ -47713,11 +45260,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR205C or (YGR240C and YMR205C)" - eccodes: "2.7.1.11" - - references: "3007939" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.11" - bigg.reaction: "PFK" - kegg.pathway: - "sce00010" @@ -47731,9 +45274,9 @@ - "sce03018" - kegg.reaction: "R00756" - metanetx.reaction: "MNXR106666" - - pmid: "3007939" + - pubmed: "3007939" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0887" - name: "phosphofructokinase (s7p)" @@ -47747,11 +45290,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR205C or (YGR240C and YMR205C)" - eccodes: "2.7.1.11" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.11" - bigg.reaction: "PFK_3" - kegg.pathway: - "sce00010" @@ -47766,7 +45305,7 @@ - kegg.reaction: "R01843" - metanetx.reaction: "MNXR102510" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0888" - name: "phosphoglucomutase" @@ -47777,11 +45316,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR105C or YKL127W" - eccodes: "5.4.2.2" - - references: "18042468; 8119301" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.4.2.2" - bigg.reaction: "PGMT" - kegg.pathway: - "sce00010" @@ -47794,11 +45329,11 @@ - "sce01130" - kegg.reaction: "R08639" - metanetx.reaction: "MNXR102548" - - pmid: + - pubmed: - "18042468" - "8119301" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0889" - name: "phosphogluconate dehydrogenase" @@ -47812,11 +45347,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR256W or YHR183W" - eccodes: "1.1.1.44" - - references: "24626" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.44" - bigg.reaction: "GND" - kegg.pathway: - "sce00030" @@ -47826,9 +45357,9 @@ - "sce01200" - kegg.reaction: "R01528" - metanetx.reaction: "MNXR100389" - - pmid: "24626" + - pubmed: "24626" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0890" - name: "phosphoglucosamine mutase" @@ -47839,20 +45370,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL058W" - eccodes: "5.4.2.3" - - references: "8174553" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.4.2.3" - bigg.reaction: "PGAMT" - kegg.pathway: - "sce00520" - "sce01130" - kegg.reaction: "R02060" - metanetx.reaction: "MNXR102526" - - pmid: "8174553" + - pubmed: "8174553" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0891" - name: "phosphoglycerate dehydrogenase" @@ -47865,12 +45392,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER081W or YIL074C" - - eccodes: "1.1.1.399; 1.1.1.95" - - references: "12525494" - - subsystem: - - "" + - eccodes: + - "1.1.1.399" + - "1.1.1.95" - annotation: !!omap - - ec-code: "1.1.1.399; 1.1.1.95" - bigg.reaction: "PGCD" - kegg.pathway: - "sce00260" @@ -47879,9 +45404,9 @@ - "sce01230" - kegg.reaction: "R01513" - metanetx.reaction: "MNXR102527" - - pmid: "12525494" + - pubmed: "12525494" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0892" - name: "phosphoglycerate kinase" @@ -47894,11 +45419,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR012W" - eccodes: "2.7.2.3" - - references: "6347186" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.2.3" - bigg.reaction: "PGK" - kegg.pathway: - "sce00010" @@ -47908,9 +45429,9 @@ - "sce01230" - kegg.reaction: "R01512" - metanetx.reaction: "MNXR102538" - - pmid: "6347186" + - pubmed: "6347186" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0893" - name: "phosphoglycerate mutase" @@ -47921,11 +45442,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR283W or YKL152C" - eccodes: "5.4.2.11" - - references: "3033435" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.4.2.11" - bigg.reaction: "PGM" - kegg.pathway: - "sce00010" @@ -47936,9 +45453,9 @@ - "sce01230" - kegg.reaction: "R01518" - metanetx.reaction: "MNXR102547" - - pmid: "3033435" + - pubmed: "3033435" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0902" - name: "phosphomannomutase" @@ -47949,11 +45466,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YFL045C" - eccodes: "5.4.2.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.4.2.8" - bigg.reaction: "PMANM" - kegg.pathway: - "sce00051" @@ -47963,7 +45476,7 @@ - kegg.reaction: "R01818" - metanetx.reaction: "MNXR101729" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0903" - name: "phosphomethylpyrimidine kinase" @@ -47975,19 +45488,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL055C or YPL258C or YPR121W" - - eccodes: "2.7.1.49; 2.7.4.7" - - references: "10383756" - - subsystem: - - "" + - eccodes: + - "2.7.1.49" + - "2.7.4.7" - annotation: !!omap - - ec-code: "2.7.1.49; 2.7.4.7" - bigg.reaction: "PMPK" - kegg.pathway: "sce00730" - kegg.reaction: "R04509" - metanetx.reaction: "MNXR103045" - - pmid: "10383756" + - pubmed: "10383756" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0904" - name: "phosphomevalonate kinase" @@ -48000,11 +45511,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR220W" - eccodes: "2.7.4.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.2" - bigg.reaction: "PMEVK" - kegg.pathway: - "sce00900" @@ -48013,7 +45520,7 @@ - kegg.reaction: "R03245" - metanetx.reaction: "MNXR103043" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0905" - name: "phosphopantothenate-cysteine ligase" @@ -48029,17 +45536,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL083C" - eccodes: "6.3.2.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.2.5" - bigg.reaction: "PPNCL2" - kegg.pathway: "sce00770" - kegg.reaction: "R04231" - metanetx.reaction: "MNXR103119" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0906" - name: "phosphopantothenoylcysteine decarboxylase" @@ -48052,17 +45555,13 @@ - upper_bound: 1000 - gene_reaction_rule: "(YKL088W and YKR072C and YOR054C) or (YKL088W and YKR072C) or (YKL088W and YOR054C) or YKL088W" - eccodes: "4.1.1.36" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.36" - bigg.reaction: "PPCDC" - kegg.pathway: "sce00770" - kegg.reaction: "R03269" - metanetx.reaction: "MNXR103098" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0907" - name: "phosphopentomutase" @@ -48072,12 +45571,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL127W or YMR105C or YMR278W" - - eccodes: "5.4.2.2; 5.4.2.7" - - references: "" - - subsystem: - - "" + - eccodes: + - "5.4.2.2" + - "5.4.2.7" - annotation: !!omap - - ec-code: "5.4.2.2; 5.4.2.7" - bigg.reaction: "PPM" - kegg.pathway: - "sce00010" @@ -48090,7 +45587,7 @@ - "sce01130" - metanetx.reaction: "MNXR103115" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0908" - name: "phosphoribosyl amino imidazolesuccinocarbozamide synthetase" @@ -48106,11 +45603,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YAR015W" - eccodes: "6.3.2.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.2.6" - bigg.reaction: "PRASCSi" - kegg.pathway: - "sce00230" @@ -48119,7 +45612,7 @@ - kegg.reaction: "R04591" - metanetx.reaction: "MNXR108987" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0909" - name: "phosphoribosyl-AMP cyclohydrolase" @@ -48130,12 +45623,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL030C" - - eccodes: "1.1.1.23; 3.5.4.19; 3.6.1.31" - - references: "7049842" - - subsystem: - - "" + - eccodes: + - "1.1.1.23" + - "3.5.4.19" + - "3.6.1.31" - annotation: !!omap - - ec-code: "1.1.1.23; 3.5.4.19; 3.6.1.31" - bigg.reaction: "PRAMPC" - kegg.pathway: - "sce00340" @@ -48143,9 +45635,9 @@ - "sce01230" - kegg.reaction: "R04037" - metanetx.reaction: "MNXR103154" - - pmid: "7049842" + - pubmed: "7049842" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0910" - name: "phosphoribosyl-ATP pyrophosphatase" @@ -48158,12 +45650,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL030C" - - eccodes: "1.1.1.23; 3.5.4.19; 3.6.1.31" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.23" + - "3.5.4.19" + - "3.6.1.31" - annotation: !!omap - - ec-code: "1.1.1.23; 3.5.4.19; 3.6.1.31" - bigg.reaction: "PRATPP" - kegg.pathway: - "sce00340" @@ -48172,7 +45663,7 @@ - kegg.reaction: "R04035" - metanetx.reaction: "MNXR103155" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0911" - name: "phosphoribosylaminoimidazole-carboxylase" @@ -48185,18 +45676,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR128C" - eccodes: "4.1.1.21" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.21" - kegg.pathway: - "sce00230" - "sce01110" - kegg.reaction: "R04209" - metanetx.reaction: "MNXR108735" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0912" - name: "phosphoribosylaminoimidazolecarboxamide formyltransferase" @@ -48208,12 +45695,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLR028C or YMR120C" - - eccodes: "2.1.2.3; 3.5.4.10" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.1.2.3" + - "3.5.4.10" - annotation: !!omap - - ec-code: "2.1.2.3; 3.5.4.10" - bigg.reaction: "AICART" - kegg.pathway: - "sce00230" @@ -48223,7 +45708,7 @@ - kegg.reaction: "R04560" - metanetx.reaction: "MNXR95639" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0913" - name: "phosphoribosylanthranilate isomerase" @@ -48234,11 +45719,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR007W" - eccodes: "5.3.1.24" - - references: "348687" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.1.24" - bigg.reaction: "PRAIi" - kegg.pathway: - "sce00400" @@ -48247,9 +45728,9 @@ - "sce01230" - kegg.reaction: "R03509" - metanetx.reaction: "MNXR103156" - - pmid: "348687" + - pubmed: "348687" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0914" - name: "phosphoribosylglycinamidine synthetase" @@ -48264,12 +45745,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL234W" - - eccodes: "6.3.3.1; 6.3.4.13" - - references: "" - - subsystem: - - "" + - eccodes: + - "6.3.3.1" + - "6.3.4.13" - annotation: !!omap - - ec-code: "6.3.3.1; 6.3.4.13" - bigg.reaction: "PRAGSr" - kegg.pathway: - "sce00230" @@ -48278,7 +45757,7 @@ - kegg.reaction: "R04144" - metanetx.reaction: "MNXR103139" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0915" - name: "phosphoribosylpyrophosphate amidotransferase" @@ -48293,11 +45772,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR300C" - eccodes: "2.4.2.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.14" - bigg.reaction: "GLUPRT" - kegg.pathway: - "sce00230" @@ -48307,7 +45782,7 @@ - kegg.reaction: "R01072" - metanetx.reaction: "MNXR100287" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0916" - name: "phosphoribosylpyrophosphate synthetase" @@ -48321,11 +45796,7 @@ - upper_bound: 1000 - gene_reaction_rule: "(YKL181W and YER099C) or (YKL181W and YHL011C) or (YKL181W and YBL068W) or (YER099C and YOL061W) or (YBL068W and YOL061W)" - eccodes: "2.7.6.1" - - references: "10212224" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.6.1" - bigg.reaction: "PRPPS" - kegg.pathway: - "sce00030" @@ -48335,9 +45806,9 @@ - "sce01200" - "sce01230" - metanetx.reaction: "MNXR103215" - - pmid: "10212224" + - pubmed: "10212224" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0917" - name: "phosphoserine phosphatase (L-serine)" @@ -48350,11 +45821,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR208W" - eccodes: "3.1.3.3" - - references: "1326413" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.3" - bigg.reaction: "PSP_L" - kegg.pathway: - "sce00260" @@ -48363,9 +45830,9 @@ - "sce01230" - kegg.reaction: "R00582" - metanetx.reaction: "MNXR103260" - - pmid: "1326413" + - pubmed: "1326413" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0918" - name: "phosphoserine transaminase" @@ -48378,11 +45845,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR184W" - eccodes: "2.6.1.52" - - references: "8017107" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.52" - bigg.reaction: "PSERT" - kegg.pathway: - "sce00260" @@ -48392,9 +45855,9 @@ - "sce01230" - kegg.reaction: "R04173" - metanetx.reaction: "MNXR103225" - - pmid: "8017107" + - pubmed: "8017107" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0919" - name: "phytoceramidase" @@ -48407,18 +45870,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR183W" - eccodes: "3.5.1.-" - - references: "10702247; 18296751" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR126696" - - pmid: + - pubmed: - "10702247" - "18296751" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0920" - name: "phytoceramidase" @@ -48431,18 +45890,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR402C" - eccodes: "1.14.14.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.14.-" - kegg.pathway: - "sce00071" - "sce00380" - kegg.reaction: "R06527" - metanetx.reaction: "MNXR126694" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0921" - name: "Phytosphingosine phosphate lyase" @@ -48454,18 +45909,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR294C" - eccodes: "4.1.2.27" - - references: "18296751; 9334171" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.2.27" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR103262" - - pmid: + - pubmed: - "18296751" - "9334171" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0922" - name: "phytosphingosine synthesis" @@ -48481,19 +45932,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR297W" - eccodes: "1.-.-.-" - - references: "18296751; 9368039" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.-.-.-" - kegg.pathway: "sce00600" - kegg.reaction: "R06525" - metanetx.reaction: "MNXR103263" - - pmid: + - pubmed: - "18296751" - "9368039" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0929" - name: "polyamine oxidase" @@ -48508,19 +45955,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR020W" - eccodes: "1.5.3.17" - - references: "12670477" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.3.17" - bigg.reaction: "POLYAO" - kegg.pathway: - "sce00330" - "sce00410" - metanetx.reaction: "MNXR103057" - - pmid: "12670477" + - pubmed: "12670477" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0935" - name: "porphobilinogen synthase" @@ -48533,11 +45976,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL040C" - eccodes: "4.2.1.24" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.24" - bigg.reaction: "PPBNGS" - kegg.pathway: - "sce00860" @@ -48545,7 +45984,7 @@ - kegg.reaction: "R00036" - metanetx.reaction: "MNXR103095" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0936" - name: "poylamine oxidase" @@ -48560,20 +45999,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR020W" - eccodes: "1.5.3.17" - - references: "12670477" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.3.17" - bigg.reaction: "POLYAO2" - kegg.pathway: - "sce00330" - "sce00410" - kegg.reaction: "R03899" - metanetx.reaction: "MNXR103058" - - pmid: "12670477" + - pubmed: "12670477" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0937" - name: "poylamine oxidase" @@ -48588,20 +46023,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR020W" - eccodes: "1.5.3.17" - - references: "12670477" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.3.17" - bigg.reaction: "POLYAO3" - kegg.pathway: - "sce00330" - "sce00410" - kegg.reaction: "R09076" - metanetx.reaction: "MNXR103059" - - pmid: "12670477" + - pubmed: "12670477" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0938" - name: "prephenate dehydratase" @@ -48615,11 +46046,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL316C" - eccodes: "4.2.1.51" - - references: "7502583" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.51" - bigg.reaction: "PPNDH" - kegg.pathway: - "sce00400" @@ -48628,9 +46055,9 @@ - "sce01230" - kegg.reaction: "R01373" - metanetx.reaction: "MNXR126086" - - pmid: "7502583" + - pubmed: "7502583" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0939" - name: "prephenate dehydrogenase (NADP)" @@ -48644,11 +46071,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR166C" - eccodes: "1.3.1.13" - - references: "2697638" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.13" - bigg.reaction: "PPND2" - kegg.pathway: - "sce00400" @@ -48656,9 +46079,9 @@ - "sce01130" - kegg.reaction: "R01730" - metanetx.reaction: "MNXR103122" - - pmid: "2697638" + - pubmed: "2697638" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0940" - name: "proline oxidase (NAD)" @@ -48671,11 +46094,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR142W" - eccodes: "1.5.5.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.5.2" - kegg.pathway: - "sce00330" - "sce01110" @@ -48683,7 +46102,7 @@ - kegg.reaction: "R10507" - metanetx.reaction: "MNXR103187" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0941" - name: "prolyl-tRNA synthetase" @@ -48698,17 +46117,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR020W" - eccodes: "6.1.1.15" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.15" - bigg.reaction: "PROTRS_1" - kegg.pathway: "sce00970" - kegg.reaction: "R03661" - metanetx.reaction: "MNXR103208" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0942" - name: "protoporphyrinogen oxidase" @@ -48721,11 +46136,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER014W" - eccodes: "1.3.3.4" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.4" - bigg.reaction: "PPPGOm" - kegg.pathway: - "sce00860" @@ -48733,7 +46144,7 @@ - kegg.reaction: "R03222" - metanetx.reaction: "MNXR103132" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0943" - name: "purine-nucleoside phosphorylase" @@ -48746,12 +46157,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR400W and YLR017W and YLR209C" - - eccodes: "2.4.2.1; 2.4.2.28; 3.2.2.3" - - references: "17482543" - - subsystem: - - "" + - eccodes: + - "2.4.2.1" + - "2.4.2.28" + - "3.2.2.3" - annotation: !!omap - - ec-code: "2.4.2.1; 2.4.2.28; 3.2.2.3" - bigg.reaction: "PNP" - kegg.pathway: - "sce00230" @@ -48761,9 +46171,9 @@ - "sce01110" - kegg.reaction: "R02294" - metanetx.reaction: "MNXR103048" - - pmid: "17482543" + - pubmed: "17482543" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0949" - name: "guanosine phosphorylase" @@ -48776,11 +46186,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR209C" - eccodes: "2.4.2.1" - - references: "23670538" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.1" - bigg.reaction: "PUNP3" - kegg.pathway: - "sce00230" @@ -48789,9 +46195,9 @@ - "sce01110" - kegg.reaction: "R02147" - metanetx.reaction: "MNXR103345" - - pmid: "23670538" + - pubmed: "23670538" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0950" - name: "guanosine phosphorylase" @@ -48804,11 +46210,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR209C" - eccodes: "2.4.2.1" - - references: "23670538" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.1" - bigg.reaction: "PUNP3m" - kegg.pathway: - "sce00230" @@ -48817,9 +46219,9 @@ - "sce01110" - kegg.reaction: "R02147" - metanetx.reaction: "MNXR103345" - - pmid: "23670538" + - pubmed: "23670538" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0951" - name: "inosine phosphorylase" @@ -48832,11 +46234,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR209C" - eccodes: "2.4.2.1" - - references: "23670538" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.1" - bigg.reaction: "PUNP5" - kegg.pathway: - "sce00230" @@ -48845,9 +46243,9 @@ - "sce01110" - kegg.reaction: "R01863" - metanetx.reaction: "MNXR103347" - - pmid: "23670538" + - pubmed: "23670538" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0953" - name: "pyridoxal oxidase" @@ -48862,16 +46260,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR035C" - eccodes: "1.4.3.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.4.3.5" - bigg.reaction: "PYDXO" - kegg.pathway: "sce00750" - metanetx.reaction: "MNXR103365" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0954" - name: "pyridoxamine 5'-phosphate oxidase" @@ -48886,17 +46280,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR035C" - eccodes: "1.4.3.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.4.3.5" - bigg.reaction: "PYAM5PO" - kegg.pathway: "sce00750" - kegg.reaction: "R00277" - metanetx.reaction: "MNXR103355" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0955" - name: "pyridoxine 5'-phosphate oxidase" @@ -48909,17 +46299,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR035C" - eccodes: "1.4.3.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.4.3.5" - bigg.reaction: "PDX5POi" - kegg.pathway: "sce00750" - kegg.reaction: "R00278" - metanetx.reaction: "MNXR102438" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0956" - name: "pyridoxine oxidase" @@ -48932,17 +46318,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR035C" - eccodes: "1.4.3.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.4.3.5" - bigg.reaction: "PYDXNO" - kegg.pathway: "sce00750" - kegg.reaction: "R01711" - metanetx.reaction: "MNXR103363" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0957" - name: "pyrroline-5-carboxylate reductase" @@ -48956,11 +46338,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER023W" - eccodes: "1.5.1.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.1.2" - bigg.reaction: "P5CR" - kegg.pathway: - "sce00330" @@ -48970,7 +46348,7 @@ - kegg.reaction: "R01251" - metanetx.reaction: "MNXR102302" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0958" - name: "pyruvate carboxylase" @@ -48986,11 +46364,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR218C or YGL062W" - eccodes: "6.4.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.4.1.1" - bigg.reaction: "PC" - kegg.pathway: - "sce00020" @@ -49000,7 +46374,7 @@ - kegg.reaction: "R00344" - metanetx.reaction: "MNXR102391" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0959" - name: "pyruvate decarboxylase" @@ -49012,12 +46386,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - eccodes: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - - references: "" - - subsystem: - - "" + - eccodes: + - "4.1.1.-" + - "4.1.1.1" + - "4.1.1.43" + - "4.1.1.74" - annotation: !!omap - - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - bigg.reaction: "PYRDC" - kegg.pathway: - "sce00010" @@ -49026,7 +46400,7 @@ - kegg.reaction: "R00224" - metanetx.reaction: "MNXR103379" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0960" - name: "pyruvate decarboxylase (acetoin-forming)" @@ -49039,21 +46413,21 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - - eccodes: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - - references: "12902239" - - subsystem: - - "" + - eccodes: + - "4.1.1.-" + - "4.1.1.1" + - "4.1.1.43" + - "4.1.1.74" - annotation: !!omap - - ec-code: "4.1.1.-; 4.1.1.1; 4.1.1.43; 4.1.1.74" - bigg.reaction: "PYRDC2" - kegg.pathway: - "sce00010" - "sce01110" - "sce01130" - metanetx.reaction: "MNXR103380" - - pmid: "12902239" + - pubmed: "12902239" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0961" - name: "pyruvate dehydrogenase" @@ -49067,12 +46441,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR221C and YER178W and YFL018C and YGR193C and YNL071W" - - eccodes: "1.2.4.1; 1.8.1.4; 2.3.1.12" - - references: "8433986" - - subsystem: - - "" + - eccodes: + - "1.2.4.1" + - "1.8.1.4" + - "2.3.1.12" - annotation: !!omap - - ec-code: "1.2.4.1; 1.8.1.4; 2.3.1.12" - bigg.reaction: "PDHm" - kegg.pathway: - "sce00010" @@ -49087,9 +46460,9 @@ - "sce01200" - kegg.reaction: "R00209" - metanetx.reaction: "MNXR102425" - - pmid: "8433986" + - pubmed: "8433986" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0962" - name: "pyruvate kinase" @@ -49103,11 +46476,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YAL038W or YOR347C" - eccodes: "2.7.1.40" - - references: "6185493" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.40" - bigg.reaction: "PYK" - kegg.pathway: - "sce00010" @@ -49119,9 +46488,9 @@ - "sce01230" - kegg.reaction: "R00200" - metanetx.reaction: "MNXR103371" - - pmid: "6185493" + - pubmed: "6185493" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0963" - name: "quinone oxidoreductase" @@ -49136,17 +46505,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - eccodes: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.14.13.-" + - "2.1.1.114" + - "2.1.1.201" + - "2.1.1.64" + - "2.7.-.-" - annotation: !!omap - - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - kegg.pathway: - "sce00130" - "sce01110" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0965" - name: "riboflavin kinase" @@ -49160,11 +46530,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR236C" - eccodes: "2.7.1.26" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.26" - bigg.reaction: "RBFK" - kegg.pathway: - "sce00740" @@ -49172,7 +46538,7 @@ - kegg.reaction: "R00549" - metanetx.reaction: "MNXR103429" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0966" - name: "riboflavin kinase" @@ -49186,11 +46552,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR236C" - eccodes: "2.7.1.26" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.26" - bigg.reaction: "RBFKm" - kegg.pathway: - "sce00740" @@ -49198,7 +46560,7 @@ - kegg.reaction: "R00549" - metanetx.reaction: "MNXR103429" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0967" - name: "riboflavin synthase" @@ -49213,11 +46575,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL143C" - eccodes: "2.5.1.78" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.78" - bigg.reaction: "RBFSa" - kegg.pathway: - "sce00740" @@ -49225,7 +46583,7 @@ - kegg.reaction: "R04457" - metanetx.reaction: "MNXR97501" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0968" - name: "riboflavin synthase" @@ -49238,11 +46596,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR256C" - eccodes: "2.5.1.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.9" - bigg.reaction: "RBFSb" - kegg.pathway: - "sce00740" @@ -49250,7 +46604,7 @@ - kegg.reaction: "R00066" - metanetx.reaction: "MNXR103430" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0969" - name: "ribokinase" @@ -49264,18 +46618,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR036W" - eccodes: "2.7.1.15" - - references: "1964349" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.15" - bigg.reaction: "RBK" - kegg.pathway: "sce00030" - kegg.reaction: "R01051" - metanetx.reaction: "MNXR103431" - - pmid: "1964349" + - pubmed: "1964349" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0970" - name: "ribonucleoside-triphosphate reductase (ATP)" @@ -49289,17 +46639,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR209C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "RNTR1" - kegg.reaction: "R02014" - metanetx.reaction: "MNXR104070" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0971" - name: "ribonucleoside-triphosphate reductase (CTP)" @@ -49313,17 +46658,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR209C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "RNTR3" - kegg.reaction: "R02022" - metanetx.reaction: "MNXR104076" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0972" - name: "ribonucleoside-triphosphate reductase (GTP)" @@ -49337,17 +46677,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR209C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "RNTR2" - kegg.reaction: "R02020" - metanetx.reaction: "MNXR104073" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0973" - name: "ribonucleoside-triphosphate reductase (UTP)" @@ -49361,17 +46696,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR209C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "RNTR4" - kegg.reaction: "R02023" - metanetx.reaction: "MNXR104079" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0974" - name: "ribonucleotide reductase" @@ -49386,11 +46716,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - eccodes: "1.17.4.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.17.4.1" - bigg.reaction: "RNDR1" - kegg.pathway: - "sce00230" @@ -49399,7 +46725,7 @@ - kegg.reaction: "R02017" - metanetx.reaction: "MNXR104060" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0975" - name: "ribonucleotide reductase" @@ -49414,11 +46740,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - eccodes: "1.17.4.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.17.4.1" - bigg.reaction: "RNDR1n" - kegg.pathway: - "sce00230" @@ -49427,7 +46749,7 @@ - kegg.reaction: "R02017" - metanetx.reaction: "MNXR104060" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0976" - name: "ribonucleotide reductase" @@ -49442,11 +46764,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - eccodes: "1.17.4.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.17.4.1" - bigg.reaction: "RNDR3" - kegg.pathway: - "sce00230" @@ -49455,7 +46773,7 @@ - kegg.reaction: "R02024" - metanetx.reaction: "MNXR104064" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0977" - name: "ribonucleotide reductase" @@ -49470,11 +46788,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - eccodes: "1.17.4.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.17.4.1" - bigg.reaction: "RNDR3n" - kegg.pathway: - "sce00230" @@ -49483,7 +46797,7 @@ - kegg.reaction: "R02024" - metanetx.reaction: "MNXR104064" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0978" - name: "ribonucleotide reductase" @@ -49498,11 +46812,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - eccodes: "1.17.4.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.17.4.1" - bigg.reaction: "RNDR2" - kegg.pathway: - "sce00230" @@ -49511,7 +46821,7 @@ - kegg.reaction: "R02019" - metanetx.reaction: "MNXR104062" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0979" - name: "ribonucleotide reductase" @@ -49526,11 +46836,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER070W or YGR180C or YIL066C or YJL026W" - eccodes: "1.17.4.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.17.4.1" - bigg.reaction: "RNDR2n" - kegg.pathway: - "sce00230" @@ -49539,7 +46845,7 @@ - kegg.reaction: "R02019" - metanetx.reaction: "MNXR104062" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0982" - name: "ribose-5-phosphate isomerase" @@ -49550,11 +46856,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR095C" - eccodes: "5.3.1.6" - - references: "9763699" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.1.6" - bigg.reaction: "RPI" - kegg.pathway: - "sce00030" @@ -49563,9 +46865,9 @@ - "sce01200" - "sce01230" - metanetx.reaction: "MNXR104084" - - pmid: "9763699" + - pubmed: "9763699" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0983" - name: "ribosylnicotinamide kinase" @@ -49578,19 +46880,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL129W" - - eccodes: "2.7.1.173; 2.7.1.22" - - references: "15137942" - - subsystem: - - "" + - eccodes: + - "2.7.1.173" + - "2.7.1.22" - annotation: !!omap - - ec-code: "2.7.1.173; 2.7.1.22" - bigg.reaction: "RNMK" - kegg.pathway: "sce00760" - kegg.reaction: "R02324" - metanetx.reaction: "MNXR104069" - - pmid: "15137942" + - pubmed: "15137942" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0984" - name: "ribulose 5-phosphate 3-epimerase" @@ -49601,11 +46901,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL121C" - eccodes: "5.1.3.1" - - references: "9032985" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.1.3.1" - bigg.reaction: "RPE" - kegg.pathway: - "sce00030" @@ -49616,9 +46912,9 @@ - "sce01230" - kegg.reaction: "R01529" - metanetx.reaction: "MNXR104083" - - pmid: "9032985" + - pubmed: "9032985" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0985" - name: "S-adenosyl-L-methionine:3-hexaprenyl-4,5-dihydroxylate O-methyltransferase" @@ -49631,21 +46927,22 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR204W and YGL119W and YGR255C and YLR201C and YML110C and YOL096C and YOR125C" - - eccodes: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - - references: "15792955" - - subsystem: - - "" + - eccodes: + - "1.14.13.-" + - "2.1.1.114" + - "2.1.1.201" + - "2.1.1.64" + - "2.7.-.-" - annotation: !!omap - - ec-code: "1.14.13.-; 2.1.1.114; 2.1.1.201; 2.1.1.64; 2.7.-.-" - bigg.reaction: "3DH5HPBMTm" - kegg.pathway: - "sce00130" - "sce01110" - kegg.reaction: "R04711" - metanetx.reaction: "MNXR94862" - - pmid: "15792955" + - pubmed: "15792955" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0986" - name: "S-adenosyl-methionine delta-24-sterol-c-methyltransferase" @@ -49659,11 +46956,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YML008C" - eccodes: "2.1.1.41" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.41" - bigg.reaction: "SAM24MT" - kegg.pathway: - "sce00100" @@ -49672,7 +46965,7 @@ - kegg.reaction: "R04427" - metanetx.reaction: "MNXR104270" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0987" - name: "S-formylglutathione hydralase" @@ -49686,17 +46979,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL068C" - eccodes: "3.1.2.12" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.12" - bigg.reaction: "SFGTHi" - kegg.pathway: "sce01200" - kegg.reaction: "R00527" - metanetx.reaction: "MNXR104357" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0988" - name: "saccharopine dehydrogenase (NAD, L-lysine forming)" @@ -49712,11 +47001,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIR034C" - eccodes: "1.5.1.7" - - references: "3928261" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.1.7" - bigg.reaction: "SACCD2" - kegg.pathway: - "sce00300" @@ -49726,9 +47011,9 @@ - "sce01230" - kegg.reaction: "R00715" - metanetx.reaction: "MNXR104237" - - pmid: "3928261" + - pubmed: "3928261" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0989" - name: "saccharopine dehydrogenase (NADP, L-glutamate forming)" @@ -49744,11 +47029,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR050C" - eccodes: "1.5.1.10" - - references: "3123231" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.5.1.10" - bigg.reaction: "SACCD1" - kegg.pathway: - "sce00300" @@ -49758,9 +47039,9 @@ - "sce01230" - kegg.reaction: "R02315" - metanetx.reaction: "MNXR104236" - - pmid: "3123231" + - pubmed: "3123231" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0990" - name: "sedoheptulose 1,7-bisphosphate D-glyceraldehyde-3-phosphate-lyase" @@ -49772,11 +47053,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL060C" - eccodes: "4.1.2.13" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.2.13" - bigg.reaction: "FBA3" - kegg.pathway: - "sce00010" @@ -49789,7 +47066,7 @@ - kegg.reaction: "R01829" - metanetx.reaction: "MNXR99461" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_0992" - name: "serine O-acetyltransferase" @@ -49801,18 +47078,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YDL040C and YGR147C and YHR013C) or (YDL040C and YGR147C)" - - eccodes: "" - - references: "8335636" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SERAT" - kegg.reaction: "R00586" - metanetx.reaction: "MNXR104275" - - pmid: "8335636" + - pubmed: "8335636" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0993" - name: "serine palmitotransferase" @@ -49827,23 +47099,19 @@ - upper_bound: 1000 - gene_reaction_rule: "(YBR058C-A and YDR062W and YMR296C) or (YDR062W and YMR296C)" - eccodes: "2.3.1.50" - - references: "10713067; 18296751; 2066332; 8058731" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.50" - kegg.pathway: - "sce00600" - "sce04138" - kegg.reaction: "R01281" - metanetx.reaction: "MNXR104347" - - pmid: + - pubmed: - "10713067" - "18296751" - "2066332" - "8058731" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0995" - name: "seryl-tRNA synthetase" @@ -49858,18 +47126,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR023W or YHR011W" - eccodes: "6.1.1.11" - - references: "3031581" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.11" - bigg.reaction: "SERTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03662" - metanetx.reaction: "MNXR104350" - - pmid: "3031581" + - pubmed: "3031581" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0996" - name: "shikimate dehydrogenase" @@ -49882,12 +47146,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR127W" - - eccodes: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - - references: "6355828" - - subsystem: - - "" + - eccodes: + - "1.1.1.25" + - "2.5.1.19" + - "2.7.1.71" + - "4.2.1.10" + - "4.2.3.4" - annotation: !!omap - - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - bigg.reaction: "SHK3Dr" - kegg.pathway: - "sce00400" @@ -49896,9 +47161,9 @@ - "sce01230" - kegg.reaction: "R02413" - metanetx.reaction: "MNXR104378" - - pmid: "6355828" + - pubmed: "6355828" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0997" - name: "shikimate kinase" @@ -49911,12 +47176,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR127W" - - eccodes: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - - references: "6355828" - - subsystem: - - "" + - eccodes: + - "1.1.1.25" + - "2.5.1.19" + - "2.7.1.71" + - "4.2.1.10" + - "4.2.3.4" - annotation: !!omap - - ec-code: "1.1.1.25; 2.5.1.19; 2.7.1.71; 4.2.1.10; 4.2.3.4" - bigg.reaction: "SHKK" - kegg.pathway: - "sce00400" @@ -49925,9 +47191,9 @@ - "sce01230" - kegg.reaction: "R02412" - metanetx.reaction: "MNXR104379" - - pmid: "6355828" + - pubmed: "6355828" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0998" - name: "sirohydrochlorin dehydrogenase" @@ -49940,21 +47206,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR213W" - - eccodes: "1.3.1.76; 4.99.1.4" - - references: "11980703" - - subsystem: - - "" + - eccodes: + - "1.3.1.76" + - "4.99.1.4" - annotation: !!omap - - ec-code: "1.3.1.76; 4.99.1.4" - bigg.reaction: "SHCHD2" - kegg.pathway: - "sce00860" - "sce01110" - kegg.reaction: "R03947" - metanetx.reaction: "MNXR104373" - - pmid: "11980703" + - pubmed: "11980703" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0999" - name: "sirohydrochlorin ferrochetalase" @@ -49966,21 +47230,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR213W" - - eccodes: "1.3.1.76; 4.99.1.4" - - references: "11980703" - - subsystem: - - "" + - eccodes: + - "1.3.1.76" + - "4.99.1.4" - annotation: !!omap - - ec-code: "1.3.1.76; 4.99.1.4" - bigg.reaction: "SHCHF" - kegg.pathway: - "sce00860" - "sce01110" - kegg.reaction: "R02864" - metanetx.reaction: "MNXR104375" - - pmid: "11980703" + - pubmed: "11980703" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1000" - name: "fumarate reductase (FMN)" @@ -49994,18 +47256,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL047C" - eccodes: "1.3.1.6" - - references: "22672422; 12393208" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.6" - kegg.reaction: "R00408" - metanetx.reaction: "MNXR129857" - - pmid: + - pubmed: - "22672422" - "12393208" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1001" - name: "spermidine synthase" @@ -50019,11 +47277,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR069C" - eccodes: "2.5.1.16" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.16" - bigg.reaction: "SPMS" - kegg.pathway: - "sce00270" @@ -50033,7 +47287,7 @@ - kegg.reaction: "R01920" - metanetx.reaction: "MNXR95860" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1002" - name: "spermine synthase" @@ -50047,11 +47301,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR146C" - eccodes: "2.5.1.22" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.22" - bigg.reaction: "SPRMS" - kegg.pathway: - "sce00270" @@ -50061,7 +47311,7 @@ - kegg.reaction: "R02869" - metanetx.reaction: "MNXR96042" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1003" - name: "sphinganine phosphate lyase" @@ -50073,20 +47323,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR294C" - eccodes: "4.1.2.27" - - references: "18296751; 9334171" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.2.27" - bigg.reaction: "SGPL11r" - kegg.pathway: "sce00600" - kegg.reaction: "R02464" - metanetx.reaction: "MNXR104365" - - pmid: + - pubmed: - "18296751" - "9334171" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1004" - name: "sphingoid base-phosphate phosphatase (phytosphingosine 1-phosphate)" @@ -50099,20 +47345,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL134W or YKR053C" - eccodes: "3.1.3.-" - - references: "18296751; 9353337; 9419344" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - bigg.reaction: "SBPP2er" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR104281" - - pmid: + - pubmed: - "18296751" - "9353337" - "9419344" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1005" - name: "sphingoid base-phosphate phosphatase (sphinganine 1-phosphatase)" @@ -50125,21 +47367,17 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL134W or YKR053C" - eccodes: "3.1.3.-" - - references: "18296751; 9353337; 9419344" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - bigg.reaction: "SBPP1er" - kegg.pathway: "sce00600" - kegg.reaction: "R06520" - metanetx.reaction: "MNXR104280" - - pmid: + - pubmed: - "18296751" - "9353337" - "9419344" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1006" - name: "sphingolipid long chain base kinase (phytosphingosine)" @@ -50153,18 +47391,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR260W or YOR171C" - eccodes: "2.7.1.91" - - references: "18296751; 9677363" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.91" - kegg.pathway: "sce00600" - metanetx.reaction: "MNXR104440" - - pmid: + - pubmed: - "18296751" - "9677363" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1007" - name: "sphingolipid long chain base kinase (sphinganine)" @@ -50178,19 +47412,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR260W or YOR171C" - eccodes: "2.7.1.91" - - references: "18296751; 9677363" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.91" - kegg.pathway: "sce00600" - kegg.reaction: "R02976" - metanetx.reaction: "MNXR104439" - - pmid: + - pubmed: - "18296751" - "9677363" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1008" - name: "spontaneous cis-aconitate(3-) to trans-aconitate" @@ -50200,17 +47430,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "11329290" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R02244" - metanetx.reaction: "MNXR95382" - - pmid: "11329290" + - pubmed: "11329290" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1009" - name: "spontaneous cis-aconitate(3-) to trans-aconitate" @@ -50220,18 +47445,13 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "11329290" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ACONIs" - kegg.reaction: "R02244" - metanetx.reaction: "MNXR95382" - - pmid: "11329290" + - pubmed: "11329290" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1010" - name: "squalene epoxidase (NAD)" @@ -50247,11 +47467,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR175C" - eccodes: "1.14.14.17" - - references: "10622712" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.14.17" - bigg.reaction: "SQLErx" - kegg.pathway: - "sce00100" @@ -50259,9 +47475,9 @@ - "sce01110" - "sce01130" - metanetx.reaction: "MNXR104528" - - pmid: "10622712" + - pubmed: "10622712" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1011" - name: "squalene epoxidase (NADP)" @@ -50277,11 +47493,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR175C" - eccodes: "1.14.14.17" - - references: "10622712" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.14.17" - bigg.reaction: "SQLEr" - kegg.pathway: - "sce00100" @@ -50290,9 +47502,9 @@ - "sce01130" - kegg.reaction: "R02874" - metanetx.reaction: "MNXR104447" - - pmid: "10622712" + - pubmed: "10622712" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1012" - name: "squalene synthase" @@ -50307,11 +47519,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR190W" - eccodes: "2.5.1.21" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.21" - bigg.reaction: "SQLS" - kegg.pathway: - "sce00100" @@ -50321,7 +47529,7 @@ - kegg.reaction: "R06223" - metanetx.reaction: "MNXR104529" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1021" - name: "succinate dehydrogenase (ubiquinone-6)" @@ -50334,11 +47542,7 @@ - upper_bound: 1000 - gene_reaction_rule: "(YDR178W and YJL045W and YKL141W and YLL041C) or (YDR178W and YKL141W and YKL148C and YLL041C) or (YLR164W and YJL045W and YKL141W and YLL041C)" - eccodes: "1.3.5.1" - - references: "9929002" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.5.1" - bigg.reaction: "SUCD2_u6m" - kegg.pathway: - "sce00020" @@ -50347,9 +47551,9 @@ - "sce01130" - "sce01200" - metanetx.reaction: "MNXR104627" - - pmid: "9929002" + - pubmed: "9929002" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1022" - name: "succinate-CoA ligase (ADP-forming)" @@ -50364,11 +47568,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR244C and YOR142W" - eccodes: "6.2.1.5" - - references: "9874242" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.5" - bigg.reaction: "SUCOASm" - kegg.pathway: - "sce00020" @@ -50378,9 +47578,9 @@ - "sce01200" - kegg.reaction: "R00405" - metanetx.reaction: "MNXR104635" - - pmid: "9874242" + - pubmed: "9874242" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1023" - name: "succinate-semialdehyde dehydrogenase (NADP)" @@ -50395,11 +47595,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR006W" - eccodes: "1.2.1.16" - - references: "11031268" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.16" - bigg.reaction: "SSALy" - kegg.pathway: - "sce00250" @@ -50409,9 +47605,9 @@ - "sce00760" - kegg.reaction: "R00714" - metanetx.reaction: "MNXR104541" - - pmid: "11031268" + - pubmed: "11031268" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1024" - name: "sucrose hydrolyzing enxyme" @@ -50424,11 +47620,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL162W" - eccodes: "3.2.1.26" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.26" - bigg.reaction: "SUCRe" - kegg.pathway: - "sce00052" @@ -50436,7 +47628,7 @@ - kegg.reaction: "R00801" - metanetx.reaction: "MNXR104638" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1025" - name: "sulfate adenylyltransferase" @@ -50450,11 +47642,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR010W" - eccodes: "2.7.7.4" - - references: "197388" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.4" - bigg.reaction: "SADT" - kegg.pathway: - "sce00230" @@ -50464,9 +47652,9 @@ - "sce01130" - kegg.reaction: "R00529" - metanetx.reaction: "MNXR104240" - - pmid: "197388" + - pubmed: "197388" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1026" - name: "sulfate adenylyltransferase (ADP)" @@ -50479,21 +47667,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCL050C" - - eccodes: "2.7.7.5; 2.7.7.53" - - references: "2556364" - - subsystem: - - "" + - eccodes: + - "2.7.7.5" + - "2.7.7.53" - annotation: !!omap - - ec-code: "2.7.7.5; 2.7.7.53" - bigg.reaction: "SLFAT" - kegg.pathway: - "sce00230" - "sce00920" - kegg.reaction: "R00530" - metanetx.reaction: "MNXR104444" - - pmid: "2556364" + - pubmed: "2556364" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1027" - name: "sulfite reductase (NADPH2)" @@ -50508,17 +47694,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR030W and YJR137C" - eccodes: "1.8.1.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.8.1.2" - bigg.reaction: "SULR" - kegg.pathway: "sce00920" - kegg.reaction: "R00858" - metanetx.reaction: "MNXR104650" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1029" - name: "taurine dioxygenase" @@ -50535,17 +47717,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL057C" - eccodes: "1.14.11.-" - - references: "10482536" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.11.-" - bigg.reaction: "TAUDO" - kegg.reaction: "R05320" - metanetx.reaction: "MNXR104730" - - pmid: "10482536" + - pubmed: "10482536" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1030" - name: "tetrahydrofolate aminomethyltransferase" @@ -50557,12 +47735,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL044C and YDR019C and YFL018C and YMR189W" - - eccodes: "1.4.4.2; 1.8.1.4; 2.1.2.10" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.4.4.2" + - "1.8.1.4" + - "2.1.2.10" - annotation: !!omap - - ec-code: "1.4.4.2; 1.8.1.4; 2.1.2.10" - bigg.reaction: "THFATm" - kegg.pathway: - "sce00010" @@ -50579,7 +47756,7 @@ - kegg.reaction: "R02300" - metanetx.reaction: "MNXR99614" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1031" - name: "tetrahydrofolate:L-glutamate gamma-ligase (ADP-forming)" @@ -50595,20 +47772,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL132C or YOR241W" - eccodes: "6.3.2.17" - - references: "10799479; 21190580" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.2.17" - bigg.reaction: "THFGLUS" - kegg.pathway: "sce00790" - kegg.reaction: "R00942" - metanetx.reaction: "MNXR143412" - - pmid: + - pubmed: - "10799479" - "21190580" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1032" - name: "thiamin diphosphatase" @@ -50622,18 +47795,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR092C" - eccodes: "3.1.3.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.2" - bigg.reaction: "THMDPe" - kegg.pathway: - "sce00730" - "sce00740" - metanetx.reaction: "MNXR138860" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1033" - name: "thiamin phosphatase" @@ -50646,11 +47815,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR092C" - eccodes: "3.1.3.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.2" - bigg.reaction: "THMPe" - kegg.pathway: - "sce00730" @@ -50658,7 +47823,7 @@ - kegg.reaction: "R02135" - metanetx.reaction: "MNXR104823" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1034" - name: "thiamine diphosphokinase" @@ -50672,17 +47837,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR143C" - eccodes: "2.7.6.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.6.2" - bigg.reaction: "TMDPK" - kegg.pathway: "sce00730" - kegg.reaction: "R00619" - metanetx.reaction: "MNXR104886" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1035" - name: "thiamine-diphosphate kinase" @@ -50695,17 +47856,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR143C" - eccodes: "2.7.6.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.6.2" - bigg.reaction: "TMDPPK" - kegg.pathway: "sce00730" - kegg.reaction: "R00616" - metanetx.reaction: "MNXR104888" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1036" - name: "thiamine-phosphate diphosphorylase" @@ -50718,18 +47875,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL214C" - - eccodes: "2.5.1.3; 2.7.1.50" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.5.1.3" + - "2.7.1.50" - annotation: !!omap - - ec-code: "2.5.1.3; 2.7.1.50" - bigg.reaction: "TMPPP" - kegg.pathway: "sce00730" - kegg.reaction: "R03223" - metanetx.reaction: "MNXR104908" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1037" - name: "thioredoxin" @@ -50743,16 +47898,12 @@ - upper_bound: 1000 - gene_reaction_rule: "(YGR209C and YIL010W) or (YIL010W and YLR043C)" - eccodes: "1.11.1.15" - - references: "12730197" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.11.1.15" - bigg.reaction: "THIORDXni" - metanetx.reaction: "MNXR104815" - - pmid: "12730197" + - pubmed: "12730197" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1038" - name: "thioredoxin reductase (NADPH)" @@ -50765,17 +47916,13 @@ - upper_bound: 1000 - gene_reaction_rule: "(YDR353W and YGR209C) or (YDR353W and YLR043C) or YDR353W" - eccodes: "1.8.1.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.8.1.9" - bigg.reaction: "TRDR" - kegg.pathway: "sce00450" - kegg.reaction: "R02016" - metanetx.reaction: "MNXR104766" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1039" - name: "thioredoxin reductase (NADPH)" @@ -50787,21 +47934,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YCR083W and YHR106W) or (YCR083W and YPL091W)" - - eccodes: "1.8.1.7; 1.8.1.9" - - references: "15701801" - - subsystem: - - "" + - eccodes: + - "1.8.1.7" + - "1.8.1.9" - annotation: !!omap - - ec-code: "1.8.1.7; 1.8.1.9" - bigg.reaction: "TRDRm" - kegg.pathway: - "sce00450" - "sce00480" - kegg.reaction: "R02016" - metanetx.reaction: "MNXR104766" - - pmid: "15701801" + - pubmed: "15701801" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1040" - name: "threonine aldolase" @@ -50813,11 +47958,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL046C" - eccodes: "4.1.2.48" - - references: "9151955" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.2.48" - bigg.reaction: "THRA" - kegg.pathway: - "sce00260" @@ -50826,9 +47967,9 @@ - "sce01230" - kegg.reaction: "R00751" - metanetx.reaction: "MNXR104833" - - pmid: "9151955" + - pubmed: "9151955" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1041" - name: "threonine synthase" @@ -50841,11 +47982,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR053W" - eccodes: "4.2.3.1" - - references: "8082795" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.3.1" - bigg.reaction: "THRS" - kegg.pathway: - "sce00260" @@ -50854,9 +47991,9 @@ - "sce01230" - kegg.reaction: "R01466" - metanetx.reaction: "MNXR104846" - - pmid: "8082795" + - pubmed: "8082795" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1042" - name: "threonyl-tRNA synthetase" @@ -50871,18 +48008,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL078W" - eccodes: "6.1.1.3" - - references: "2995918" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.3" - bigg.reaction: "THRTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03663" - metanetx.reaction: "MNXR104848" - - pmid: "2995918" + - pubmed: "2995918" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1043" - name: "threonyl-tRNA synthetase" @@ -50897,18 +48030,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL194C" - eccodes: "6.1.1.3" - - references: "2999113" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.3" - bigg.reaction: "THRTRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R03663" - metanetx.reaction: "MNXR104848" - - pmid: "2999113" + - pubmed: "2999113" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1045" - name: "thymidylate synthase" @@ -50921,11 +48050,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR074C" - eccodes: "2.1.1.45" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.45" - bigg.reaction: "TMDS" - kegg.pathway: - "sce00240" @@ -50933,7 +48058,7 @@ - kegg.reaction: "R02101" - metanetx.reaction: "MNXR104889" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1046" - name: "trans-aconitate 3-methyltransferase" @@ -50946,17 +48071,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YER175C" - eccodes: "2.1.1.145" - - references: "15147181" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.145" - bigg.reaction: "ACONMT" - kegg.reaction: "R05763" - metanetx.reaction: "MNXR95383" - - pmid: "15147181" + - pubmed: "15147181" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1047" - name: "trans-pentaprenyltranstransferase" @@ -50969,20 +48090,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR003W" - eccodes: "2.5.1.-" - - references: "2198286" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.-" - bigg.reaction: "PPTTm" - kegg.pathway: - "sce00900" - "sce01110" - kegg.reaction: "R05613" - metanetx.reaction: "MNXR103150" - - pmid: "2198286" + - pubmed: "2198286" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1048" - name: "transaldolase" @@ -50995,11 +48112,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR043C or YLR354C" - eccodes: "2.2.1.2" - - references: "8300619" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.2.1.2" - bigg.reaction: "TALA" - kegg.pathway: - "sce00030" @@ -51008,9 +48121,9 @@ - "sce01200" - "sce01230" - metanetx.reaction: "MNXR124173" - - pmid: "8300619" + - pubmed: "8300619" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1049" - name: "transketolase 1" @@ -51023,11 +48136,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR117C or YPR074C" - eccodes: "2.2.1.1" - - references: "8268320" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.2.1.1" - bigg.reaction: "TKT1" - kegg.pathway: - "sce00030" @@ -51036,9 +48145,9 @@ - "sce01200" - "sce01230" - metanetx.reaction: "MNXR104868" - - pmid: "8268320" + - pubmed: "8268320" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1050" - name: "transketolase 2" @@ -51051,11 +48160,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR117C or YPR074C" - eccodes: "2.2.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.2.1.1" - bigg.reaction: "TKT2" - kegg.pathway: - "sce00030" @@ -51065,7 +48170,7 @@ - "sce01230" - metanetx.reaction: "MNXR124172" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1051" - name: "trehalose-phosphatase" @@ -51077,19 +48182,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YBR126C and YDR074W and YML100W) or (YBR126C and YDR074W and YMR261C)" - - eccodes: "2.4.1.15; 3.1.3.12" - - references: "21623372" - - subsystem: - - "" + - eccodes: + - "2.4.1.15" + - "3.1.3.12" - annotation: !!omap - - ec-code: "2.4.1.15; 3.1.3.12" - bigg.reaction: "TRE6PP" - kegg.pathway: "sce00500" - kegg.reaction: "R02778" - metanetx.reaction: "MNXR104926" - - pmid: "21623372" + - pubmed: "21623372" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1054" - name: "triose-phosphate isomerase" @@ -51100,11 +48203,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR050C" - eccodes: "5.3.1.1" - - references: "6759603" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.1.1" - bigg.reaction: "TPI" - kegg.pathway: - "sce00010" @@ -51116,9 +48215,9 @@ - "sce01230" - kegg.reaction: "R01015" - metanetx.reaction: "MNXR104918" - - pmid: "6759603" + - pubmed: "6759603" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1055" - name: "tryptophan synthase (indoleglycerol phosphate)" @@ -51132,11 +48231,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL026C" - eccodes: "4.2.1.20" - - references: "6342605" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.20" - bigg.reaction: "TRPS1" - kegg.pathway: - "sce00260" @@ -51145,9 +48240,9 @@ - "sce01130" - "sce01230" - metanetx.reaction: "MNXR132685" - - pmid: "6342605" + - pubmed: "6342605" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1056" - name: "tryptophan transaminase" @@ -51159,12 +48254,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL202W" - - eccodes: "2.6.1.39; 2.6.1.57" - - references: "9491082; 9491083" - - subsystem: - - "" + - eccodes: + - "2.6.1.39" + - "2.6.1.57" - annotation: !!omap - - ec-code: "2.6.1.39; 2.6.1.57" - bigg.reaction: "TRPTA" - kegg.pathway: - "sce00130" @@ -51180,11 +48273,11 @@ - "sce01230" - kegg.reaction: "R00684" - metanetx.reaction: "MNXR104947" - - pmid: + - pubmed: - "9491082" - "9491083" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1057" - name: "tryptophanyl-tRNA synthetase" @@ -51199,18 +48292,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL097C" - eccodes: "6.1.1.2" - - references: "9046085" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.2" - bigg.reaction: "TRPTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03664" - metanetx.reaction: "MNXR104948" - - pmid: "9046085" + - pubmed: "9046085" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1058" - name: "tryptophanyl-tRNA synthetase" @@ -51225,18 +48314,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR268W" - eccodes: "6.1.1.2" - - references: "2999114" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.2" - bigg.reaction: "TRPTRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R03664" - metanetx.reaction: "MNXR104948" - - pmid: "2999114" + - pubmed: "2999114" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1063" - name: "tyrosine transaminase" @@ -51248,12 +48333,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL202W" - - eccodes: "2.6.1.39; 2.6.1.57" - - references: "9491082; 9491083" - - subsystem: - - "" + - eccodes: + - "2.6.1.39" + - "2.6.1.57" - annotation: !!omap - - ec-code: "2.6.1.39; 2.6.1.57" - bigg.reaction: "TYRTA" - kegg.pathway: - "sce00130" @@ -51269,11 +48352,11 @@ - "sce01230" - kegg.reaction: "R00734" - metanetx.reaction: "MNXR105000" - - pmid: + - pubmed: - "9491082" - "9491083" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1065" - name: "tyrosine transaminase" @@ -51286,11 +48369,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR027C" - eccodes: "2.6.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.1" - bigg.reaction: "TYRTAip" - kegg.pathway: - "sce00220" @@ -51308,7 +48387,7 @@ - kegg.reaction: "R00734" - metanetx.reaction: "MNXR105000" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1066" - name: "tyrosyl-tRNA synthetase" @@ -51323,18 +48402,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR185C" - eccodes: "6.1.1.1" - - references: "8509419" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.1" - bigg.reaction: "TYRTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R02918" - metanetx.reaction: "MNXR105001" - - pmid: "8509419" + - pubmed: "8509419" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1067" - name: "tyrosyl-tRNA synthetase" @@ -51349,18 +48424,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL097W" - eccodes: "6.1.1.1" - - references: "3315228" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.1" - bigg.reaction: "TYRTRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R02918" - metanetx.reaction: "MNXR105001" - - pmid: "3315228" + - pubmed: "3315228" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1068" - name: "UDP-glucose:ergosterol glucosyltransferase" @@ -51374,15 +48445,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR189C" - eccodes: "2.4.1.173" - - references: "10224056" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.173" - bigg.reaction: "ERGSTGLCT" - - pmid: "10224056" + - pubmed: "10224056" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1069" - name: "UDP-N-acetylglucosamine diphosphorylase" @@ -51396,19 +48463,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL103C" - eccodes: "2.7.7.23" - - references: "16408321" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.23" - kegg.pathway: - "sce00520" - "sce01130" - kegg.reaction: "R00416" - metanetx.reaction: "MNXR106519" - - pmid: "16408321" + - pubmed: "16408321" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1070" - name: "UDPglucose 4-epimerase" @@ -51418,12 +48481,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR019C" - - eccodes: "5.1.3.2; 5.1.3.3" - - references: "" - - subsystem: - - "" + - eccodes: + - "5.1.3.2" + - "5.1.3.3" - annotation: !!omap - - ec-code: "5.1.3.2; 5.1.3.3" - bigg.reaction: "UDPG4E" - kegg.pathway: - "sce00010" @@ -51434,7 +48495,7 @@ - kegg.reaction: "R00291" - metanetx.reaction: "MNXR143428" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1071" - name: "UDPglucose--hexose-1-phosphate uridylyltransferase" @@ -51447,11 +48508,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR018C" - eccodes: "2.7.7.12" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.12" - bigg.reaction: "UGLT" - kegg.pathway: - "sce00052" @@ -51459,7 +48516,7 @@ - kegg.reaction: "R00955" - metanetx.reaction: "MNXR143436" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1072" - name: "UMP kinase" @@ -51472,17 +48529,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL024C" - eccodes: "2.7.4.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.14" - bigg.reaction: "UMPK" - kegg.pathway: "sce00240" - kegg.reaction: "R00158" - metanetx.reaction: "MNXR105118" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1073" - name: "UMP kinase" @@ -51495,17 +48548,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL024C" - eccodes: "2.7.4.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.14" - bigg.reaction: "UMPKn" - kegg.pathway: "sce00240" - kegg.reaction: "R00158" - metanetx.reaction: "MNXR105118" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1074" - name: "uracil phosphoribosyltransferase" @@ -51518,17 +48567,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR128W" - eccodes: "2.4.2.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.9" - bigg.reaction: "UPPRT" - kegg.pathway: "sce00240" - kegg.reaction: "R00966" - metanetx.reaction: "MNXR105142" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1075" - name: "urea carboxylase" @@ -51543,12 +48588,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR208C" - - eccodes: "3.5.1.54; 6.3.4.6" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.5.1.54" + - "6.3.4.6" - annotation: !!omap - - ec-code: "3.5.1.54; 6.3.4.6" - bigg.reaction: "UREASE" - kegg.pathway: - "sce00220" @@ -51556,7 +48599,7 @@ - kegg.reaction: "R00774" - metanetx.reaction: "MNXR105149" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1076" - name: "ureidoglycolate hydrolase" @@ -51571,18 +48614,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YIR032C" - eccodes: "4.3.2.3" - - references: "1776360" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.3.2.3" - bigg.reaction: "UGLYCH" - kegg.pathway: "sce00230" - kegg.reaction: "R00469" - metanetx.reaction: "MNXR105091" - - pmid: "1776360" + - pubmed: "1776360" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1077" - name: "uridine kinase (ATP:uridine)" @@ -51596,17 +48635,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR020C or YNR012W" - eccodes: "2.7.1.48" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.48" - bigg.reaction: "URIK1" - kegg.pathway: "sce00240" - kegg.reaction: "R00964" - metanetx.reaction: "MNXR105162" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1078" - name: "uridine kinase (GTP:uridine)" @@ -51620,17 +48655,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR020C or YNR012W" - eccodes: "2.7.1.48" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.48" - bigg.reaction: "URIK2" - kegg.pathway: "sce00240" - kegg.reaction: "R00968" - metanetx.reaction: "MNXR105163" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1079" - name: "uridylate kinase (dUMP)" @@ -51643,17 +48674,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL024C" - eccodes: "2.7.4.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.14" - bigg.reaction: "URIDK2r" - kegg.pathway: "sce00240" - kegg.reaction: "R02098" - metanetx.reaction: "MNXR105160" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1080" - name: "uridylate kinase (dUMP)" @@ -51666,17 +48693,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL024C" - eccodes: "2.7.4.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.14" - bigg.reaction: "URIDK2rn" - kegg.pathway: "sce00240" - kegg.reaction: "R02098" - metanetx.reaction: "MNXR105160" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1081" - name: "uroporphyrinogen decarboxylase (uroporphyrinogen III)" @@ -51689,11 +48712,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR047W" - eccodes: "4.1.1.37" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.37" - bigg.reaction: "UPPDC1" - kegg.pathway: - "sce00860" @@ -51701,7 +48720,7 @@ - kegg.reaction: "R03197" - metanetx.reaction: "MNXR105140" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1082" - name: "uroporphyrinogen methyltransferase" @@ -51715,11 +48734,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR069W" - eccodes: "2.1.1.107" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.107" - bigg.reaction: "UPP3MT" - kegg.pathway: - "sce00860" @@ -51727,7 +48742,7 @@ - kegg.reaction: "R03194" - metanetx.reaction: "MNXR105137" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1083" - name: "uroporphyrinogen-III synthase" @@ -51739,11 +48754,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR278W" - eccodes: "4.2.1.75" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.75" - bigg.reaction: "UPP3S" - kegg.pathway: - "sce00860" @@ -51751,7 +48762,7 @@ - kegg.reaction: "R03165" - metanetx.reaction: "MNXR105139" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1084" - name: "UTP-glucose-1-phosphate uridylyltransferase" @@ -51765,11 +48776,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YHL012W or YKL035W" - eccodes: "2.7.7.9" - - references: "7588797" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.9" - bigg.reaction: "GALUi" - kegg.pathway: - "sce00040" @@ -51779,9 +48786,9 @@ - "sce01130" - kegg.reaction: "R00289" - metanetx.reaction: "MNXR143121" - - pmid: "7588797" + - pubmed: "7588797" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1087" - name: "valine transaminase" @@ -51794,11 +48801,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR148W" - eccodes: "2.6.1.42" - - references: "9748245" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.42" - bigg.reaction: "VALTA" - kegg.pathway: - "sce00270" @@ -51811,9 +48814,9 @@ - "sce01230" - kegg.reaction: "R01214" - metanetx.reaction: "MNXR96230" - - pmid: "9748245" + - pubmed: "9748245" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1088" - name: "valine transaminase, mitochondiral" @@ -51826,11 +48829,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR208W" - eccodes: "2.6.1.42" - - references: "9748245" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.42" - bigg.reaction: "VALTAim" - kegg.pathway: - "sce00270" @@ -51843,9 +48842,9 @@ - "sce01230" - kegg.reaction: "R01214" - metanetx.reaction: "MNXR96230" - - pmid: "9748245" + - pubmed: "9748245" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1089" - name: "valyl-tRNA synthetase" @@ -51860,18 +48859,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR094W" - eccodes: "6.1.1.9" - - references: "3294828" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.9" - bigg.reaction: "VALTRS" - kegg.pathway: "sce00970" - kegg.reaction: "R03665" - metanetx.reaction: "MNXR105186" - - pmid: "3294828" + - pubmed: "3294828" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1090" - name: "valyl-tRNA synthetase" @@ -51886,18 +48881,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR094W" - eccodes: "6.1.1.9" - - references: "3294828" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.9" - bigg.reaction: "VALTRSm" - kegg.pathway: "sce00970" - kegg.reaction: "R03665" - metanetx.reaction: "MNXR105186" - - pmid: "3294828" + - pubmed: "3294828" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1091" - name: "xanthine phosphoribosyltransferase" @@ -51910,16 +48901,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR133W" - eccodes: "2.4.2.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.2.-" - bigg.reaction: "XPPT" - kegg.reaction: "R02142" - metanetx.reaction: "MNXR105243" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1092" - name: "xylitol dehydrogenase (D-xyulose-forming)" @@ -51933,17 +48920,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR070C" - eccodes: "1.1.1.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.9" - bigg.reaction: "XYLTD_D" - kegg.pathway: "sce00040" - kegg.reaction: "R01896" - metanetx.reaction: "MNXR105262" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1093" - name: "xylose reductase" @@ -51956,18 +48939,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR104W" - - eccodes: "1.1.1.-; 1.1.1.21" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.21" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.21" - bigg.reaction: "XYLR" - kegg.pathway: "sce00040" - kegg.reaction: "R01431" - metanetx.reaction: "MNXR105261" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1094" - name: "xylulokinase" @@ -51981,17 +48962,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR194C" - eccodes: "2.7.1.17" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.17" - bigg.reaction: "XYLK" - kegg.pathway: "sce00040" - kegg.reaction: "R01639" - metanetx.reaction: "MNXR105255" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1095" - name: "yUMP synthetase" @@ -52003,14 +48980,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YFL001W or YGL063W or YNL292W or YPL212C" - - eccodes: "5.4.99.-; 5.4.99.25; 5.4.99.44; 5.4.99.45" - - references: "" - - subsystem: - - "" + - eccodes: + - "5.4.99.-" + - "5.4.99.25" + - "5.4.99.44" + - "5.4.99.45" - annotation: !!omap - - ec-code: "5.4.99.-; 5.4.99.25; 5.4.99.44; 5.4.99.45" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1619" - name: "5'-nucleotidase (GMP)" @@ -52022,18 +48999,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER037W" - - eccodes: "" - - references: "23670538" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NTD9" - kegg.reaction: "R01227" - metanetx.reaction: "MNXR100381" - - pmid: "23670538" + - pubmed: "23670538" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1838" - name: "homocitrate synthase" @@ -52048,11 +49020,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL131W or YDL182W" - eccodes: "2.3.3.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.3.14" - kegg.pathway: - "sce00300" - "sce00620" @@ -52062,7 +49030,7 @@ - kegg.reaction: "R00271" - metanetx.reaction: "MNXR141692" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2029" - name: "pyridoxine kinase" @@ -52076,17 +49044,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL029C" - eccodes: "2.7.1.35" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.35" - bigg.reaction: "PYDXNK" - kegg.pathway: "sce00750" - kegg.reaction: "R01909" - metanetx.reaction: "MNXR103362" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2112" - name: "kynurenine aminotransferase" @@ -52100,17 +49064,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL060W" - eccodes: "2.6.1.7" - - references: "18205391" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.7" - kegg.pathway: "sce00380" - kegg.reaction: "R01959" - metanetx.reaction: "MNXR132503" - - pmid: "18205391" + - pubmed: "18205391" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2113" - name: "spontaneous kynurenic acid to quinaldic acid" @@ -52124,17 +49084,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "18205391" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R03687" - metanetx.reaction: "MNXR108341" - - pmid: "18205391" + - pubmed: "18205391" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2114" - name: "spontaneous 2-amino-3-carboxymuconate-6-semialdehyde to quinolinate" @@ -52146,17 +49101,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "18205391" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R04293" - metanetx.reaction: "MNXR103396" - - pmid: "18205391" + - pubmed: "18205391" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2115" - name: "alcohol dehydrogenase, (acetaldehyde to ethanol)" @@ -52170,11 +49120,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YOL086C" - eccodes: "1.1.1.1" - - references: "12499363" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.1" - bigg.reaction: "ALCD2ir" - kegg.pathway: - "sce00010" @@ -52184,9 +49130,9 @@ - "sce01130" - kegg.reaction: "R00754" - metanetx.reaction: "MNXR95725" - - pmid: "12499363" + - pubmed: "12499363" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2116" - name: "acetaldehyde dehydrogenase" @@ -52201,11 +49147,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C or YMR170C or YER073W or YOR374W" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - kegg.pathway: - "sce00010" - "sce00340" @@ -52216,7 +49158,7 @@ - kegg.reaction: "R00710" - metanetx.reaction: "MNXR95749" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2117" - name: "phenylalanine transaminase" @@ -52228,12 +49170,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR137W" - - eccodes: "2.6.1.58; 2.6.1.7" - - references: "9491082; 9491083" - - subsystem: - - "" + - eccodes: + - "2.6.1.58" + - "2.6.1.7" - annotation: !!omap - - ec-code: "2.6.1.58; 2.6.1.7" - kegg.pathway: - "sce00350" - "sce00360" @@ -52242,11 +49182,11 @@ - "sce01130" - kegg.reaction: "R00692" - metanetx.reaction: "MNXR125716" - - pmid: + - pubmed: - "9491082" - "9491083" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2118" - name: "tryptophan transaminase" @@ -52258,12 +49198,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR137W" - - eccodes: "2.6.1.57; 2.6.1.7" - - references: "9491082; 9491083" - - subsystem: - - "" + - eccodes: + - "2.6.1.57" + - "2.6.1.7" - annotation: !!omap - - ec-code: "2.6.1.57; 2.6.1.7" - bigg.reaction: "araphe3" - kegg.pathway: - "sce00350" @@ -52273,11 +49211,11 @@ - "sce01130" - kegg.reaction: "R00684" - metanetx.reaction: "MNXR104947" - - pmid: + - pubmed: - "9491082" - "9491083" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2119" - name: "tyrosine transaminase" @@ -52289,12 +49227,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR137W" - - eccodes: "2.6.1.57; 2.6.1.7" - - references: "9491082; 9491083" - - subsystem: - - "" + - eccodes: + - "2.6.1.57" + - "2.6.1.7" - annotation: !!omap - - ec-code: "2.6.1.57; 2.6.1.7" - kegg.pathway: - "sce00350" - "sce00360" @@ -52303,11 +49239,11 @@ - "sce01130" - kegg.reaction: "R00734" - metanetx.reaction: "MNXR105000" - - pmid: + - pubmed: - "9491082" - "9491083" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2126" - name: "sedoheptulose bisphosphatase" @@ -52320,11 +49256,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR043C" - eccodes: "3.1.3.37" - - references: "21663798; 22672422" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.37" - kegg.pathway: - "sce00010" - "sce00260" @@ -52334,11 +49266,11 @@ - "sce01230" - kegg.reaction: "R01845" - metanetx.reaction: "MNXR104279" - - pmid: + - pubmed: - "21663798" - "22672422" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2131" - name: "isocitrate dehydrogenase" @@ -52352,11 +49284,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL066W" - eccodes: "1.1.1.42" - - references: "1989987; 8099357" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.42" - bigg.reaction: "ICDHym" - kegg.pathway: - "sce00020" @@ -52369,11 +49297,11 @@ - "sce04146" - kegg.reaction: "R00267" - metanetx.reaction: "MNXR100781" - - pmid: + - pubmed: - "1989987" - "8099357" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2140" - name: "fatty-acyl-CoA synthase (n-C16:0CoA)" @@ -52391,17 +49319,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL182W and YPL231W" - eccodes: "2.3.1.86" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.86" - kegg.pathway: - "sce00061" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2141" - name: "fatty-acyl-CoA synthase (n-C18:0CoA)" @@ -52419,17 +49343,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL182W and YPL231W" - eccodes: "2.3.1.86" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.86" - kegg.pathway: - "sce00061" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2142" - name: "B-ketoacyl-ACP synthase (acetoacetyl-ACP)" @@ -52444,20 +49364,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YER061C and YKL192C" - eccodes: "2.3.1.41" - - references: "8412701" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.41" - bigg.reaction: "3OAS40_m" - kegg.pathway: - "sce00061" - "sce00190" - "sce00780" - "sce01212" - - pmid: "8412701" + - pubmed: "8412701" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2143" - name: "B-ketoacyl-ACP synthase (3-oxo-hexanoyl-ACP)" @@ -52472,19 +49388,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YER061C and YKL192C" - eccodes: "2.3.1.41" - - references: "8412701" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.41" - kegg.pathway: - "sce00061" - "sce00190" - "sce00780" - "sce01212" - - pmid: "8412701" + - pubmed: "8412701" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2144" - name: "B-ketoacyl-ACP synthase (3-oxo-octanoyl-ACP)" @@ -52499,19 +49411,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YER061C and YKL192C" - eccodes: "2.3.1.41" - - references: "8412701" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.41" - kegg.pathway: - "sce00061" - "sce00190" - "sce00780" - "sce01212" - - pmid: "8412701" + - pubmed: "8412701" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2145" - name: "3-oxoacyl-ACP reductase (3-hydroxybutanoyl-ACP)" @@ -52525,11 +49433,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL055C" - eccodes: "1.1.1.100" - - references: "9388293" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.100" - bigg.reaction: "3OAR40_m" - kegg.pathway: - "sce00061" @@ -52537,9 +49441,9 @@ - "sce01040" - "sce01130" - "sce01212" - - pmid: "9388293" + - pubmed: "9388293" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2146" - name: "3-oxoacyl-ACP reductase (3-hydroxyhexanoyl-ACP)" @@ -52553,11 +49457,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL055C" - eccodes: "1.1.1.100" - - references: "9388293" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.100" - bigg.reaction: "3OAR60_m" - kegg.pathway: - "sce00061" @@ -52565,9 +49465,9 @@ - "sce01040" - "sce01130" - "sce01212" - - pmid: "9388293" + - pubmed: "9388293" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2147" - name: "3-oxoacyl-ACP reductase (3-hydroxyoctanoyl-ACP)" @@ -52581,11 +49481,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL055C" - eccodes: "1.1.1.100" - - references: "9388293" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.100" - kegg.pathway: - "sce00061" - "sce00780" @@ -52593,9 +49489,9 @@ - "sce01130" - "sce01212" - metanetx.reaction: "MNXR137225" - - pmid: "9388293" + - pubmed: "9388293" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2148" - name: "3-hydroxyacyl-thioester dehydratase (trans-but-2-enoyl-ACP)" @@ -52607,14 +49503,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR067W" - eccodes: "4.2.1.-" - - references: "15387819" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.-" - - pmid: "15387819" + - pubmed: "15387819" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2149" - name: "3-hydroxyacyl-thioester dehydratase (trans-hex-2-enoyl-ACP)" @@ -52626,15 +49518,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR067W" - eccodes: "4.2.1.-" - - references: "15387819" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.-" - bigg.reaction: "3HAD61_m" - - pmid: "15387819" + - pubmed: "15387819" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2150" - name: "3-hydroxyacyl-thioester dehydratase (trans-oct-2-enoyl-ACP)" @@ -52646,15 +49534,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR067W" - eccodes: "4.2.1.-" - - references: "15387819" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.-" - metanetx.reaction: "MNXR137214" - - pmid: "15387819" + - pubmed: "15387819" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2151" - name: "enoyl-ACP reductase (butanoyl-ACP)" @@ -52668,17 +49552,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR026C" - eccodes: "1.3.1.104" - - references: "11509667" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.104" - kegg.pathway: - "sce00062" - "sce01212" - - pmid: "11509667" + - pubmed: "11509667" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2152" - name: "enoyl-ACP reductase (hexanoyl-ACP)" @@ -52692,17 +49572,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR026C" - eccodes: "1.3.1.104" - - references: "11509667" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.104" - kegg.pathway: - "sce00062" - "sce01212" - - pmid: "11509667" + - pubmed: "11509667" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2153" - name: "enoyl-ACP reductase (octanoyl-ACP)" @@ -52716,17 +49592,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR026C" - eccodes: "1.3.1.104" - - references: "11509667" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.104" - kegg.pathway: - "sce00062" - "sce01212" - - pmid: "11509667" + - pubmed: "11509667" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2154" - name: "elongase I (3-oxotetradecanoyl-CoA)" @@ -52741,20 +49613,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL196C" - eccodes: "2.3.1.199" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.199" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - metanetx.reaction: "MNXR122920" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2155" - name: "elongase I (3-oxopalmitoyl-CoA)" @@ -52769,20 +49637,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL196C" - eccodes: "2.3.1.199" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.199" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - metanetx.reaction: "MNXR122921" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2156" - name: "elongase II (3-oxooctadecanoyl-CoA)" @@ -52797,11 +49661,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR034W" - eccodes: "2.3.1.199" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.199" - kegg.pathway: - "sce00062" - "sce01040" @@ -52809,9 +49669,9 @@ - "sce01212" - kegg.reaction: "R07758" - metanetx.reaction: "MNXR94939" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2157" - name: "elongase II or III (3-oxoicosanoyl-CoA)" @@ -52826,20 +49686,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR034W or YLR372W" - eccodes: "2.3.1.199" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.199" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - metanetx.reaction: "MNXR103450" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2158" - name: "elongase II or III (3-oxodocosanoyl-CoA)" @@ -52854,19 +49710,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR034W or YLR372W" - eccodes: "2.3.1.199" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.199" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2159" - name: "elongase II or III (3-oxotetracosanoyl-CoA)" @@ -52881,19 +49733,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR034W or YLR372W" - eccodes: "2.3.1.199" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.199" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2160" - name: "elongase III (3-oxohexacosanoyl-CoA)" @@ -52908,20 +49756,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR372W" - eccodes: "2.3.1.199" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.199" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - metanetx.reaction: "MNXR118002" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2161" - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxytetradecanoyl-CoA)" @@ -52935,19 +49779,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - eccodes: "1.1.1.330" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.330" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2162" - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxypalmitoyl-CoA)" @@ -52961,19 +49801,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - eccodes: "1.1.1.330" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.330" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2163" - name: "B-ketoacyl-CoA reductase (3-hydroxyoctadecanoyl-CoA)" @@ -52987,11 +49823,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - eccodes: "1.1.1.330" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.330" - kegg.pathway: - "sce00062" - "sce01040" @@ -52999,9 +49831,9 @@ - "sce01212" - kegg.reaction: "R07759" - metanetx.reaction: "MNXR103465" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2164" - name: "B-ketoacyl-CoA reductase (3-hydroxyicosanoyl-CoA)" @@ -53015,20 +49847,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - eccodes: "1.1.1.330" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.330" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - metanetx.reaction: "MNXR103451" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2165" - name: "B-ketoacyl-CoA reductase (3-hydroxydocosanoyl-CoA)" @@ -53042,20 +49870,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - eccodes: "1.1.1.330" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.330" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - metanetx.reaction: "MNXR103455" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2166" - name: "B-ketoacyl-CoA reductase (3-hydroxytetracosanoyl-CoA)" @@ -53069,20 +49893,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - eccodes: "1.1.1.330" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.330" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - metanetx.reaction: "MNXR118005" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2167" - name: "B-ketoacyl-CoA reductase ((S)-3-hydroxyhexacosanoyl-CoA)" @@ -53096,19 +49916,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR159W" - eccodes: "1.1.1.330" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.330" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2168" - name: "B-hydroxyacyl-CoA dehydratase (trans-tetradec-2-enoyl-CoA)" @@ -53120,11 +49936,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - eccodes: "4.2.1.134" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.134" - kegg.pathway: - "sce00062" - "sce01040" @@ -53132,9 +49944,9 @@ - "sce01212" - kegg.reaction: "R04740" - metanetx.reaction: "MNXR97891" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2169" - name: "B-hydroxyacyl-CoA dehydratase (trans-hexadec-2-enoyl-CoA)" @@ -53146,19 +49958,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - eccodes: "4.2.1.134" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.134" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2170" - name: "B-hydroxyacyl-CoA dehydratase (trans-octadec-2-enoyl-CoA)" @@ -53170,11 +49978,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - eccodes: "4.2.1.134" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.134" - kegg.pathway: - "sce00062" - "sce01040" @@ -53182,9 +49986,9 @@ - "sce01212" - kegg.reaction: "R07760" - metanetx.reaction: "MNXR103466" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2171" - name: "B-hydroxyacyl-CoA dehydratase (trans-icos-2-enoyl-CoA)" @@ -53196,19 +50000,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - eccodes: "4.2.1.134" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.134" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2172" - name: "B-hydroxyacyl-CoA dehydratase (trans-docos-2-enoyl-CoA)" @@ -53220,19 +50020,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - eccodes: "4.2.1.134" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.134" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2173" - name: "B-hydroxyacyl-CoA dehydratase (trans-tetracos-2-enoyl-CoA)" @@ -53244,20 +50040,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - eccodes: "4.2.1.134" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.134" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - metanetx.reaction: "MNXR118009" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2174" - name: "B-hydroxyacyl-CoA dehydratase (trans-hexacos-2-enoyl-CoA)" @@ -53269,19 +50061,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL097W" - eccodes: "4.2.1.134" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.134" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2175" - name: "trans-2-enoyl-CoA reductase (n-C14:0CoA)" @@ -53295,11 +50083,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - eccodes: "1.3.1.93" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.93" - kegg.pathway: - "sce00062" - "sce01040" @@ -53307,9 +50091,9 @@ - "sce01212" - kegg.reaction: "R03989" - metanetx.reaction: "MNXR95374" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2176" - name: "trans-2-enoyl-CoA reductase (n-C16:0CoA)" @@ -53323,19 +50107,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - eccodes: "1.3.1.93" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.93" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2177" - name: "trans-2-enoyl-CoA reductase (n-C18:0CoA)" @@ -53349,11 +50129,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - eccodes: "1.3.1.93" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.93" - kegg.pathway: - "sce00062" - "sce01040" @@ -53361,9 +50137,9 @@ - "sce01212" - kegg.reaction: "R07761" - metanetx.reaction: "MNXR97895" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2178" - name: "trans-2-enoyl-CoA reductase (n-C20:0CoA)" @@ -53377,19 +50153,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - eccodes: "1.3.1.93" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.93" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2179" - name: "trans-2-enoyl-CoA reductase (n-C22:0CoA)" @@ -53403,19 +50175,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - eccodes: "1.3.1.93" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.93" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2180" - name: "trans-2-enoyl-CoA reductase (n-C24:0CoA)" @@ -53429,19 +50197,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - eccodes: "1.3.1.93" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.93" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2181" - name: "trans-2-enoyl-CoA reductase (n-C26:0CoA)" @@ -53455,20 +50219,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL015C" - eccodes: "1.3.1.93" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.93" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - "sce01212" - metanetx.reaction: "MNXR118013" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2182" - name: "palmitoyl-CoA desaturase (n-C16:0CoA -> n-C16:1CoA), ER membrane" @@ -53484,17 +50244,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL055W" - eccodes: "1.14.19.1" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.19.1" - kegg.pathway: - "sce01040" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2183" - name: "stearoyl-CoA desaturase (n-C18:0CoA -> n-C18:1CoA), ER membrane" @@ -53510,17 +50266,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL055W" - eccodes: "1.14.19.1" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.19.1" - kegg.pathway: - "sce01040" - "sce01212" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2194" - name: "fatty-acid--CoA ligase (dodecanoate), ER membrane" @@ -53535,20 +50287,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR317W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR120051" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2195" - name: "fatty-acid--CoA ligase (tetradecanoate), ER membrane" @@ -53563,20 +50311,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR126663" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2196" - name: "fatty-acid--CoA ligase (hexadecanoate), ER membrane" @@ -53591,11 +50335,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" @@ -53603,9 +50343,9 @@ - "sce04146" - kegg.reaction: "R01280" - metanetx.reaction: "MNXR99153" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2197" - name: "fatty-acid--CoA ligase (hexadecenoate), ER membrane" @@ -53620,20 +50360,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR126667" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2198" - name: "fatty-acid--CoA ligase (octadecanoate), ER membrane" @@ -53648,20 +50384,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR99164" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2199" - name: "fatty-acid--CoA ligase (octadecenoate), ER membrane" @@ -53676,20 +50408,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR122919" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2200" - name: "fatty-acid--CoA ligase (dodecanoate), lipid particle" @@ -53704,20 +50432,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR317W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR120051" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2201" - name: "fatty-acid--CoA ligase (tetradecanoate), lipid particle" @@ -53732,20 +50456,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR126663" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2202" - name: "fatty-acid--CoA ligase (hexadecanoate), lipid particle" @@ -53760,11 +50480,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" @@ -53772,9 +50488,9 @@ - "sce04146" - kegg.reaction: "R01280" - metanetx.reaction: "MNXR99153" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2203" - name: "fatty-acid--CoA ligase (hexadecenoate), lipid particle" @@ -53789,20 +50505,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR126667" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2204" - name: "fatty-acid--CoA ligase (octadecanoate), lipid particle" @@ -53817,20 +50529,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR99164" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2205" - name: "fatty-acid--CoA ligase (octadecenoate), lipid particle" @@ -53845,20 +50553,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR246W or YOR317W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR122919" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2206" - name: "fatty-acid--CoA ligase (hexadecenoate), peroxisome" @@ -53873,11 +50577,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YER015W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL161p" - kegg.pathway: - "sce00061" @@ -53885,9 +50585,9 @@ - "sce01212" - "sce04146" - metanetx.reaction: "MNXR126667" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2207" - name: "fatty-acid--CoA ligase (octadecanoate), peroxisome" @@ -53902,20 +50602,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YER015W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR99164" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2208" - name: "fatty-acid--CoA ligase (octadecenoate), peroxisome" @@ -53930,20 +50626,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YER015W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR122919" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2209" - name: "fatty-acid--CoA ligase (arachidate), cell envelope" @@ -53958,19 +50650,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL009W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2210" - name: "fatty-acid--CoA ligase (behenate), cell envelope" @@ -53985,19 +50673,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL009W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2211" - name: "fatty-acid--CoA ligase (lignoceric acid), cell envelope" @@ -54012,20 +50696,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL009W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR126665" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2212" - name: "fatty-acid--CoA ligase (cerotic acid), cell envelope" @@ -54040,20 +50720,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL009W" - eccodes: "6.2.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - metanetx.reaction: "MNXR128076" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2213" - name: "fatty-acid--CoA ligase (behenate), ER membrane" @@ -54067,15 +50743,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR041W" - - eccodes: "" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2214" - name: "fatty-acid--CoA ligase (lignoceric acid), ER membrane" @@ -54089,16 +50760,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR041W" - - eccodes: "" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR126665" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2215" - name: "fatty-acid--CoA ligase (cerotic acid), ER membrane" @@ -54112,16 +50778,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR041W" - - eccodes: "" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR128076" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2216" - name: "fatty-acid--CoA ligase (behenate), lipid particle" @@ -54135,15 +50796,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR041W" - - eccodes: "" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2217" - name: "fatty-acid--CoA ligase (lignoceric acid), lipid particle" @@ -54157,16 +50813,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR041W" - - eccodes: "" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR126665" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2218" - name: "fatty-acid--CoA ligase (cerotic acid), lipid particle" @@ -54180,16 +50831,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR041W" - - eccodes: "" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR128076" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2232" - name: "peroxisomal acyl-CoA thioesterase (4:0)" @@ -54203,18 +50849,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - eccodes: "3.1.2.2" - - references: "16490786" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.2" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - - pmid: "16490786" + - pubmed: "16490786" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2233" - name: "peroxisomal acyl-CoA thioesterase (6:0)" @@ -54228,20 +50870,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - eccodes: "3.1.2.2" - - references: "16490786" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.2" - bigg.reaction: "HXCOAx" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - metanetx.reaction: "MNXR127520" - - pmid: "16490786" + - pubmed: "16490786" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2234" - name: "peroxisomal acyl-CoA thioesterase (16:1)" @@ -54255,19 +50893,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - eccodes: "3.1.2.2" - - references: "16490786" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.2" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - metanetx.reaction: "MNXR116444" - - pmid: "16490786" + - pubmed: "16490786" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2235" - name: "peroxisomal acyl-CoA thioesterase (18:1)" @@ -54281,20 +50915,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR019C" - eccodes: "3.1.2.2" - - references: "16490786" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.2" - kegg.pathway: - "sce00062" - "sce01040" - "sce01110" - kegg.reaction: "R08176" - metanetx.reaction: "MNXR111750" - - pmid: "16490786" + - pubmed: "16490786" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2236" - name: "acyl-CoA oxidase (butanoyl-CoA)" @@ -54307,11 +50937,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - bigg.reaction: "HMR_3102" - kegg.pathway: - "sce00071" @@ -54320,9 +50946,9 @@ - "sce01212" - "sce04146" - metanetx.reaction: "MNXR127857" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2237" - name: "acyl-CoA oxidase (hexanoyl-CoA)" @@ -54335,11 +50961,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - bigg.reaction: "HMR_3098" - kegg.pathway: - "sce00071" @@ -54348,9 +50970,9 @@ - "sce01212" - "sce04146" - metanetx.reaction: "MNXR127546" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2238" - name: "acyl-CoA oxidase (octanoyl-CoA)" @@ -54363,20 +50985,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - kegg.pathway: - "sce00071" - "sce01040" - "sce01110" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2239" - name: "acyl-CoA oxidase (icosanoyl-CoA)" @@ -54389,20 +51007,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - kegg.pathway: - "sce00071" - "sce01040" - "sce01110" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2240" - name: "acyl-CoA oxidase (docosanoyl-CoA)" @@ -54415,20 +51029,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - kegg.pathway: - "sce00071" - "sce01040" - "sce01110" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2241" - name: "acyl-CoA oxidase (tetracosanoyl-CoA)" @@ -54441,11 +51051,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - bigg.reaction: "HMR_3062" - kegg.pathway: - "sce00071" @@ -54454,9 +51060,9 @@ - "sce01212" - "sce04146" - metanetx.reaction: "MNXR127548" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2242" - name: "acyl-CoA oxidase (palmitoleoyl-CoA)" @@ -54470,20 +51076,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - kegg.pathway: - "sce00071" - "sce01040" - "sce01110" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2243" - name: "acyl-CoA oxidase (cis-tetradec-7-enoyl-CoA)" @@ -54496,20 +51098,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - kegg.pathway: - "sce00071" - "sce01040" - "sce01110" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2244" - name: "acyl-CoA oxidase (cis-dodec-5-enoyl-CoA)" @@ -54522,20 +51120,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - kegg.pathway: - "sce00071" - "sce01040" - "sce01110" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2245" - name: "acyl-CoA oxidase (oleoyl-CoA)" @@ -54548,20 +51142,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - kegg.pathway: - "sce00071" - "sce01040" - "sce01110" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2246" - name: "acyl-CoA oxidase (cis-hexadec-7-enoyl-CoA)" @@ -54574,20 +51164,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - kegg.pathway: - "sce00071" - "sce01040" - "sce01110" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2247" - name: "acyl-CoA oxidase (cis-tetradec-5-enoyl-CoA)" @@ -54600,20 +51186,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL205W" - eccodes: "1.3.3.6" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.3.6" - kegg.pathway: - "sce00071" - "sce01040" - "sce01110" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2248" - name: "2-enoyl-CoA hydratase (3-hydroxydecanoyl-CoA)" @@ -54624,18 +51206,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "ECOAH4p" - kegg.reaction: "R04744" - metanetx.reaction: "MNXR97889" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2249" - name: "2-enoyl-CoA hydratase (3-hydroxydodecanoyl-CoA)" @@ -54646,18 +51226,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "ECOAH5p" - kegg.reaction: "R04170" - metanetx.reaction: "MNXR97890" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2250" - name: "2-enoyl-CoA hydratase (3-hydroxytetradecanoyl-CoA)" @@ -54668,18 +51246,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "ECOAH6p" - kegg.reaction: "R04740" - metanetx.reaction: "MNXR97891" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2251" - name: "2-enoyl-CoA hydratase (3-hydroxyhexadecanoyl-CoA)" @@ -54690,18 +51266,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "ECOAH7p" - kegg.reaction: "R04738" - metanetx.reaction: "MNXR97892" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2252" - name: "2-enoyl-CoA hydratase (3-hydroxyoctadecanoyl-CoA)" @@ -54712,18 +51286,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "HMR_3075" - kegg.reaction: "R07760" - metanetx.reaction: "MNXR103466" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2253" - name: "2-enoyl-CoA hydratase (3-hydroxyhexacosanoyl-CoA)" @@ -54734,15 +51306,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2254" - name: "2-enoyl-CoA hydratase (3-hydroxybutanoyl-CoA)" @@ -54754,15 +51324,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2255" - name: "2-enoyl-CoA hydratase (3-hydroxyhexanoyl-CoA)" @@ -54773,15 +51341,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2256" - name: "2-enoyl-CoA hydratase (3-hydroxyoctanoyl-CoA)" @@ -54793,16 +51359,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - metanetx.reaction: "MNXR118594" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2257" - name: "2-enoyl-CoA hydratase (3-hydroxyicosanoyl-CoA)" @@ -54813,15 +51377,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2258" - name: "2-enoyl-CoA hydratase (3-hydroxydocosanoyl-CoA)" @@ -54832,15 +51394,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2259" - name: "2-enoyl-CoA hydratase (3-hydroxytetracosanoyl-CoA)" @@ -54851,16 +51411,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - metanetx.reaction: "MNXR118009" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2260" - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-hexadec-9-enoyl-CoA)" @@ -54871,15 +51429,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2261" - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-tetradec-7-enoyl-CoA)" @@ -54890,15 +51446,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2262" - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-dodec-5-enoyl-CoA)" @@ -54909,15 +51463,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2263" - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-octadec-9-enoyl-CoA)" @@ -54929,15 +51481,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2264" - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-hexadec-7-enoyl-CoA)" @@ -54948,15 +51498,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2265" - name: "2-enoyl-CoA hydratase (3-hydroxy-cis-tetradec-5-enoyl-CoA)" @@ -54967,15 +51515,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2266" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxodecanoyl-CoA)" @@ -54988,18 +51534,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "HACD4p" - kegg.reaction: "R04743" - metanetx.reaction: "MNXR100545" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2267" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxododecanoyl-CoA)" @@ -55012,18 +51556,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "HACD5p" - kegg.reaction: "R04741" - metanetx.reaction: "MNXR100546" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2268" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexadecanoyl-CoA)" @@ -55036,18 +51578,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "HACD7p" - kegg.reaction: "R04737" - metanetx.reaction: "MNXR100548" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2269" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxooctadecanoyl-CoA)" @@ -55060,17 +51600,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - bigg.reaction: "HMR_3076" - metanetx.reaction: "MNXR126787" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2270" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexacosanoyl-CoA)" @@ -55083,15 +51621,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2271" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxobutanoyl-CoA)" @@ -55104,15 +51640,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2272" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxohexanoyl-CoA)" @@ -55125,15 +51659,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2273" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxooctanoyl-CoA)" @@ -55146,15 +51678,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2274" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxoicosanoyl-CoA)" @@ -55167,15 +51697,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2275" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxodocosanoyl-CoA)" @@ -55188,15 +51716,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2276" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxotetracosanoyl-CoA)" @@ -55209,15 +51735,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2277" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-hexadec-9-enoyl-CoA)" @@ -55230,15 +51754,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2278" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-tetradec-7-enoyl-CoA)" @@ -55251,15 +51773,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2279" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-dodec-5-enoyl-CoA)" @@ -55272,15 +51792,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2280" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-octadec-9-enoyl-CoA)" @@ -55293,15 +51811,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2281" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-hexadec-7-enoyl-CoA)" @@ -55314,15 +51830,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2282" - name: "3-hydroxyacyl-CoA dehydrogenase (3-oxo-cis-tetradec-5-enoyl-CoA)" @@ -55335,15 +51849,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR009C" - - eccodes: "1.1.1.n12; 4.2.1.119" - - references: "12697341" - - subsystem: - - "" + - eccodes: + - "1.1.1.n12" + - "4.2.1.119" - annotation: !!omap - - ec-code: "1.1.1.n12; 4.2.1.119" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2283" - name: "acetyl-CoA C-acyltransferase (acetyl-CoA)" @@ -55355,11 +51867,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - bigg.reaction: "ACACT1x" - kegg.pathway: - "sce00071" @@ -55371,9 +51879,9 @@ - "sce04146" - kegg.reaction: "R00238" - metanetx.reaction: "MNXR95194" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2284" - name: "acetyl-CoA C-acyltransferase (butanoyl-CoA)" @@ -55386,11 +51894,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - bigg.reaction: "ACACT2" - kegg.pathway: - "sce00071" @@ -55400,9 +51904,9 @@ - "sce01130" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2285" - name: "acetyl-CoA C-acyltransferase (hexanoyl-CoA)" @@ -55415,11 +51919,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - bigg.reaction: "ACACT3" - kegg.pathway: - "sce00071" @@ -55429,9 +51929,9 @@ - "sce01130" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2286" - name: "acetyl-CoA C-acyltransferase (stearoyl-CoA)" @@ -55444,11 +51944,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - bigg.reaction: "HMR_3073" - kegg.pathway: - "sce00071" @@ -55458,9 +51954,9 @@ - "sce01130" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2287" - name: "acetyl-CoA C-acyltransferase (icosanoyl-CoA)" @@ -55473,11 +51969,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - bigg.reaction: "HMR_3069" - kegg.pathway: - "sce00071" @@ -55487,9 +51979,9 @@ - "sce01130" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2288" - name: "acetyl-CoA C-acyltransferase (docosanoyl-CoA)" @@ -55502,11 +51994,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - bigg.reaction: "HMR_3065" - kegg.pathway: - "sce00071" @@ -55516,9 +52004,9 @@ - "sce01130" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2289" - name: "acetyl-CoA C-acyltransferase (cis-tetradec-7-enoyl-CoA)" @@ -55531,11 +52019,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - kegg.pathway: - "sce00071" - "sce00280" @@ -55544,9 +52028,9 @@ - "sce01130" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2290" - name: "acetyl-CoA C-acyltransferase (cis-dodec-5-enoyl-CoA)" @@ -55559,11 +52043,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - kegg.pathway: - "sce00071" - "sce00280" @@ -55572,9 +52052,9 @@ - "sce01130" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2291" - name: "acetyl-CoA C-acyltransferase (cis-dec-3-enoyl-CoA)" @@ -55587,11 +52067,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - kegg.pathway: - "sce00071" - "sce00280" @@ -55600,9 +52076,9 @@ - "sce01130" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2292" - name: "acetyl-CoA C-acyltransferase (cis-hexadec-7-enoyl-CoA)" @@ -55615,11 +52091,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - kegg.pathway: - "sce00071" - "sce00280" @@ -55628,9 +52100,9 @@ - "sce01130" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2293" - name: "acetyl-CoA C-acyltransferase (cis-tetradec-5-enoyl-CoA)" @@ -55643,11 +52115,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - kegg.pathway: - "sce00071" - "sce00280" @@ -55656,9 +52124,9 @@ - "sce01130" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2294" - name: "acetyl-CoA C-acyltransferase (cis-dodec-3-enoyl-CoA)" @@ -55671,11 +52139,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL160C" - eccodes: "2.3.1.16" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.16" - kegg.pathway: - "sce00071" - "sce00280" @@ -55684,9 +52148,9 @@ - "sce01130" - "sce01212" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2295" - name: "delta3,delta2-enoyl-CoA isomerase (cis-dec-3-enoyl-CoA)" @@ -55698,17 +52162,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR284C" - eccodes: "5.3.3.8" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.3.8" - kegg.pathway: - "sce00071" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2296" - name: "delta3,delta2-enoyl-CoA isomerase (trans-2,cis-5-dodecadienoyl-CoA)" @@ -55719,17 +52179,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR284C" - eccodes: "5.3.3.8" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.3.8" - kegg.pathway: - "sce00071" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2297" - name: "delta3,delta2-enoyl-CoA isomerase (trans-dodec-3-enoyl-CoA)" @@ -55741,18 +52197,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR284C" - eccodes: "5.3.3.8" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.3.8" - bigg.reaction: "FAOXC121x" - kegg.pathway: - "sce00071" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2298" - name: "delta3,delta2-enoyl-CoA isomerase (cis-dodec-3-enoyl-CoA)" @@ -55764,17 +52216,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR284C" - eccodes: "5.3.3.8" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.3.8" - kegg.pathway: - "sce00071" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2299" - name: "delta3,delta2-enoyl-CoA isomerase (trans-2,cis-5-tetradecadienoyl-CoA)" @@ -55785,17 +52233,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR284C" - eccodes: "5.3.3.8" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.3.8" - kegg.pathway: - "sce00071" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2300" - name: "delta3,delta2-enoyl-CoA isomerase (trans-tetradec-3-enoyl-CoA)" @@ -55807,17 +52251,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR284C" - eccodes: "5.3.3.8" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.3.8" - kegg.pathway: - "sce00071" - "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2301" - name: "delta(3,5)-delta(2,4)-dienoyl-CoA isomerase (trans-3,cis-5-dodecadienoyl-CoA)" @@ -55828,14 +52268,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR180C" - eccodes: "5.3.3.-" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.3.-" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2302" - name: "delta(3,5)-delta(2,4)-dienoyl-CoA isomerase (trans-3,cis-5-tetradecadienoyl-CoA)" @@ -55846,14 +52282,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR180C" - eccodes: "5.3.3.-" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.3.3.-" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2303" - name: "2,4-dienoyl-CoA reductase (trans-2,trans-4-dodecadienoyl-CoA)" @@ -55867,15 +52299,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL202W" - eccodes: "1.3.1.34" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.34" - kegg.pathway: "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2304" - name: "2,4-dienoyl-CoA reductase (trans-2,trans-4-tetradecadienoyl-CoA)" @@ -55889,15 +52317,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL202W" - eccodes: "1.3.1.34" - - references: "12697341" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.34" - kegg.pathway: "sce04146" - - pmid: "12697341" + - pubmed: "12697341" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2305" - name: "cis-aconitate(3-) to isocitrate" @@ -55909,11 +52333,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR304C" - eccodes: "4.2.1.3" - - references: "15975908" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.3" - bigg.reaction: "ACONTb" - kegg.pathway: - "sce00020" @@ -55925,9 +52345,9 @@ - "sce01230" - kegg.reaction: "R01900" - metanetx.reaction: "MNXR95387" - - pmid: "15975908" + - pubmed: "15975908" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2308" - name: "glycerol-3-phosphate acyltransferase (16:0), ER membrane" @@ -55940,19 +52360,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL011W or YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2309" - name: "glycerol-3-phosphate acyltransferase (16:1), ER membrane" @@ -55965,19 +52383,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL011W or YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2310" - name: "glycerol-3-phosphate acyltransferase (18:0), ER membrane" @@ -55990,19 +52406,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2311" - name: "glycerol-3-phosphate acyltransferase (18:1), ER membrane" @@ -56015,19 +52429,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2312" - name: "dihydroxyacetone phosphate acyltransferase (16:0), ER membrane" @@ -56040,19 +52452,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL011W or YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2313" - name: "dihydroxyacetone phosphate acyltransferase (16:1), ER membrane" @@ -56065,19 +52475,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL011W or YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2314" - name: "dihydroxyacetone phosphate acyltransferase (18:0), ER membrane" @@ -56090,19 +52498,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2315" - name: "dihydroxyacetone phosphate acyltransferase (18:1), ER membrane" @@ -56115,19 +52521,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2316" - name: "glycerol-3-phosphate acyltransferase (16:0), lipid particle" @@ -56140,19 +52544,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2317" - name: "glycerol-3-phosphate acyltransferase (16:1), lipid particle" @@ -56165,19 +52567,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2318" - name: "glycerol-3-phosphate acyltransferase (18:0), lipid particle" @@ -56190,19 +52590,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2319" - name: "glycerol-3-phosphate acyltransferase (18:1), lipid particle" @@ -56215,19 +52613,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2320" - name: "dihydroxyacetone phosphate acyltransferase (16:0), lipid particle" @@ -56240,19 +52636,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2321" - name: "dihydroxyacetone phosphate acyltransferase (16:1), lipid particle" @@ -56265,19 +52659,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2322" - name: "dihydroxyacetone phosphate acyltransferase (18:0), lipid particle" @@ -56290,19 +52682,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2323" - name: "dihydroxyacetone phosphate acyltransferase (18:1), lipid particle" @@ -56315,19 +52705,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKR067W" - - eccodes: "2.3.1.15; 2.3.1.42" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.15" + - "2.3.1.42" - annotation: !!omap - - ec-code: "2.3.1.15; 2.3.1.42" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2324" - name: "acyl dhap reductase (16:0), ER membrane" @@ -56341,15 +52729,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - eccodes: "1.1.1.101" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2325" - name: "acyl dhap reductase (16:1), ER membrane" @@ -56363,15 +52747,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - eccodes: "1.1.1.101" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2326" - name: "acyl dhap reductase (18:0), ER membrane" @@ -56385,15 +52765,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - eccodes: "1.1.1.101" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2327" - name: "acyl dhap reductase (18:1), ER membrane" @@ -56407,15 +52783,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - eccodes: "1.1.1.101" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2328" - name: "acyl dhap reductase (16:0), lipid particle" @@ -56429,15 +52801,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - eccodes: "1.1.1.101" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2329" - name: "acyl dhap reductase (16:1), lipid particle" @@ -56451,15 +52819,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - eccodes: "1.1.1.101" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2330" - name: "acyl dhap reductase (18:0), lipid particle" @@ -56473,15 +52837,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - eccodes: "1.1.1.101" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2331" - name: "acyl dhap reductase (18:1), lipid particle" @@ -56495,15 +52855,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL124W" - eccodes: "1.1.1.101" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.101" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2332" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-16:1), ER membrane" @@ -56515,19 +52871,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR175C" - - eccodes: "2.3.1.23; 2.3.1.51" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.23" + - "2.3.1.51" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2333" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-18:1), ER membrane" @@ -56539,19 +52893,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YOR175C" - - eccodes: "2.3.1.23; 2.3.1.51" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.23" + - "2.3.1.51" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2334" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-16:1), ER membrane" @@ -56563,19 +52915,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR175C" - - eccodes: "2.3.1.23; 2.3.1.51" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.23" + - "2.3.1.51" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2335" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-18:1), ER membrane" @@ -56587,19 +52937,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YOR175C" - - eccodes: "2.3.1.23; 2.3.1.51" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.23" + - "2.3.1.51" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2336" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-16:1), ER membrane" @@ -56611,19 +52959,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR175C" - - eccodes: "2.3.1.23; 2.3.1.51" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.23" + - "2.3.1.51" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2337" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-18:1), ER membrane" @@ -56635,19 +52981,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YOR175C" - - eccodes: "2.3.1.23; 2.3.1.51" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.23" + - "2.3.1.51" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2338" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-16:1), ER membrane" @@ -56659,19 +53003,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR175C" - - eccodes: "2.3.1.23; 2.3.1.51" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.23" + - "2.3.1.51" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2339" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-18:1), ER membrane" @@ -56683,19 +53025,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YOR175C" - - eccodes: "2.3.1.23; 2.3.1.51" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.23" + - "2.3.1.51" - annotation: !!omap - - ec-code: "2.3.1.23; 2.3.1.51" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2340" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:0, 2-18:1), lipid particle" @@ -56707,20 +53047,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - - eccodes: "2.3.1.51; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.51" + - "3.1.1.3" - annotation: !!omap - - ec-code: "2.3.1.51; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2341" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-16:1, 2-18:1), lipid particle" @@ -56732,20 +53070,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - - eccodes: "2.3.1.51; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.51" + - "3.1.1.3" - annotation: !!omap - - ec-code: "2.3.1.51; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2342" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:0, 2-18:1), lipid particle" @@ -56757,20 +53093,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - - eccodes: "2.3.1.51; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.51" + - "3.1.1.3" - annotation: !!omap - - ec-code: "2.3.1.51; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2343" - name: "1-acyl-sn-glycerol-3-phosphate acyltransferase (1-18:1, 2-18:1), lipid particle" @@ -56782,20 +53116,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL052C or YKR089C or YOR081C" - - eccodes: "2.3.1.51; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.51" + - "3.1.1.3" - annotation: !!omap - - ec-code: "2.3.1.51; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2344" - name: "PA phosphatase (1-16:0, 2-16:1), ER membrane" @@ -56809,18 +53141,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - eccodes: "3.1.3.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.4" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2345" - name: "PA phosphatase (1-16:0, 2-18:1), ER membrane" @@ -56834,18 +53162,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - eccodes: "3.1.3.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.4" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2346" - name: "PA phosphatase (1-16:1, 2-16:1), ER membrane" @@ -56859,18 +53183,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - eccodes: "3.1.3.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.4" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2347" - name: "PA phosphatase (1-16:1, 2-18:1), ER membrane" @@ -56884,18 +53204,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - eccodes: "3.1.3.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.4" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2348" - name: "PA phosphatase (1-18:0, 2-16:1), ER membrane" @@ -56909,18 +53225,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - eccodes: "3.1.3.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.4" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2349" - name: "PA phosphatase (1-18:0, 2-18:1), ER membrane" @@ -56934,18 +53246,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - eccodes: "3.1.3.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.4" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2350" - name: "PA phosphatase (1-18:1, 2-16:1), ER membrane" @@ -56959,18 +53267,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - eccodes: "3.1.3.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.4" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2351" - name: "PA phosphatase (1-18:1, 2-18:1), ER membrane" @@ -56984,18 +53288,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR165C" - eccodes: "3.1.3.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.4" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2352" - name: "PA phosphatase (1-16:0, 2-16:1), vacuolar membrane" @@ -57008,19 +53308,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2353" - name: "PA phosphatase (1-16:0, 2-18:1), vacuolar membrane" @@ -57033,19 +53331,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2354" - name: "PA phosphatase (1-16:1, 2-16:1), vacuolar membrane" @@ -57058,19 +53354,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2355" - name: "PA phosphatase (1-16:1, 2-18:1), vacuolar membrane" @@ -57083,19 +53377,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2356" - name: "PA phosphatase (1-18:0, 2-16:1), vacuolar membrane" @@ -57108,19 +53400,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2357" - name: "PA phosphatase (1-18:0, 2-18:1), vacuolar membrane" @@ -57133,19 +53423,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2358" - name: "PA phosphatase (1-18:1, 2-16:1), vacuolar membrane" @@ -57158,19 +53446,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2359" - name: "PA phosphatase (1-18:1, 2-18:1), vacuolar membrane" @@ -57183,19 +53469,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2360" - name: "PA phosphatase (1-16:0, 2-16:1), Golgi membrane" @@ -57208,15 +53492,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2361" - name: "PA phosphatase (1-16:0, 2-18:1), Golgi membrane" @@ -57229,15 +53511,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2362" - name: "PA phosphatase (1-16:1, 2-16:1), Golgi membrane" @@ -57250,15 +53530,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2363" - name: "PA phosphatase (1-16:1, 2-18:1), Golgi membrane" @@ -57271,15 +53549,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2364" - name: "PA phosphatase (1-18:0, 2-16:1), Golgi membrane" @@ -57292,15 +53568,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2365" - name: "PA phosphatase (1-18:0, 2-18:1), Golgi membrane" @@ -57313,15 +53587,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2366" - name: "PA phosphatase (1-18:1, 2-16:1), Golgi membrane" @@ -57334,15 +53606,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2367" - name: "PA phosphatase (1-18:1, 2-18:1), Golgi membrane" @@ -57355,15 +53625,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2368" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:0), ER membrane" @@ -57375,18 +53643,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2369" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:0), ER membrane" @@ -57398,18 +53665,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2370" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:0), ER membrane" @@ -57421,18 +53687,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2371" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:0), ER membrane" @@ -57444,18 +53709,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2372" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:0), ER membrane" @@ -57467,18 +53731,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2373" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:0), ER membrane" @@ -57490,18 +53753,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2374" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:0), ER membrane" @@ -57513,18 +53775,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2375" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:0), ER membrane" @@ -57536,18 +53797,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2376" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:1), ER membrane" @@ -57559,18 +53819,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2377" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:1), ER membrane" @@ -57582,18 +53841,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2378" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:1), ER membrane" @@ -57605,18 +53863,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2379" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:1), ER membrane" @@ -57628,18 +53885,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2380" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:1), ER membrane" @@ -57651,18 +53907,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2381" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:1), ER membrane" @@ -57674,18 +53929,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2382" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:1), ER membrane" @@ -57697,18 +53951,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2383" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:1), ER membrane" @@ -57720,18 +53973,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2384" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:0), ER membrane" @@ -57743,18 +53995,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2385" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:0), ER membrane" @@ -57766,18 +54017,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2386" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:0), ER membrane" @@ -57789,18 +54039,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2387" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:0), ER membrane" @@ -57812,18 +54061,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2388" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:0), ER membrane" @@ -57835,18 +54083,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2389" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:0), ER membrane" @@ -57858,18 +54105,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2390" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:0), ER membrane" @@ -57881,18 +54127,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2391" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:0), ER membrane" @@ -57904,18 +54149,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2392" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:1), ER membrane" @@ -57927,18 +54171,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2393" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:1), ER membrane" @@ -57950,18 +54193,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2394" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:1), ER membrane" @@ -57973,18 +54215,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2395" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:1), ER membrane" @@ -57996,18 +54237,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2396" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:1), ER membrane" @@ -58019,18 +54259,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2397" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:1), ER membrane" @@ -58042,18 +54281,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2398" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:1), ER membrane" @@ -58065,18 +54303,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2399" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:1), ER membrane" @@ -58088,18 +54325,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR048W or YNR019W or YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22; 2.3.1.26" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" + - "2.3.1.26" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22; 2.3.1.26" - kegg.pathway: - "sce00100" - "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2400" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:0), lipid particle" @@ -58111,16 +54347,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2401" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:0), lipid particle" @@ -58132,16 +54366,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2402" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:0), lipid particle" @@ -58153,16 +54385,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2403" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:0), lipid particle" @@ -58174,16 +54404,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2404" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:0), lipid particle" @@ -58195,16 +54423,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2405" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:0), lipid particle" @@ -58216,16 +54442,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2406" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:0), lipid particle" @@ -58237,16 +54461,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2407" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:0), lipid particle" @@ -58258,16 +54480,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2408" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-16:1), lipid particle" @@ -58279,16 +54499,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2409" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-16:1), lipid particle" @@ -58300,16 +54518,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2410" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-16:1), lipid particle" @@ -58321,16 +54537,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2411" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-16:1), lipid particle" @@ -58342,16 +54556,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2412" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-16:1), lipid particle" @@ -58363,16 +54575,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2413" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-16:1), lipid particle" @@ -58384,16 +54594,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2414" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-16:1), lipid particle" @@ -58405,16 +54613,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2415" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-16:1), lipid particle" @@ -58426,16 +54632,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2416" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:0), lipid particle" @@ -58447,16 +54651,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2417" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:0), lipid particle" @@ -58468,16 +54670,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2418" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:0), lipid particle" @@ -58489,16 +54689,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2419" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:0), lipid particle" @@ -58510,16 +54708,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2420" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:0), lipid particle" @@ -58531,16 +54727,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2421" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:0), lipid particle" @@ -58552,16 +54746,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2422" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:0), lipid particle" @@ -58573,16 +54765,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2423" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:0), lipid particle" @@ -58594,16 +54784,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2424" - name: "diacylglycerol acyltransferase (1-16:0, 2-16:1, 3-18:1), lipid particle" @@ -58615,16 +54803,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2425" - name: "diacylglycerol acyltransferase (1-16:0, 2-18:1, 3-18:1), lipid particle" @@ -58636,16 +54822,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2426" - name: "diacylglycerol acyltransferase (1-16:1, 2-16:1, 3-18:1), lipid particle" @@ -58657,16 +54841,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2427" - name: "diacylglycerol acyltransferase (1-16:1, 2-18:1, 3-18:1), lipid particle" @@ -58678,16 +54860,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2428" - name: "diacylglycerol acyltransferase (1-18:0, 2-16:1, 3-18:1), lipid particle" @@ -58699,16 +54879,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2429" - name: "diacylglycerol acyltransferase (1-18:0, 2-18:1, 3-18:1), lipid particle" @@ -58720,16 +54898,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2430" - name: "diacylglycerol acyltransferase (1-18:1, 2-16:1, 3-18:1), lipid particle" @@ -58741,16 +54917,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2431" - name: "diacylglycerol acyltransferase (1-18:1, 2-18:1, 3-18:1), lipid particle" @@ -58762,16 +54936,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR245C" - - eccodes: "2.3.1.20; 2.3.1.22" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.3.1.20" + - "2.3.1.22" - annotation: !!omap - - ec-code: "2.3.1.20; 2.3.1.22" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2432" - name: "CDP-diacylglycerol synthase (1-16:0, 2-16:1), ER membrane" @@ -58785,18 +54957,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2433" - name: "CDP-diacylglycerol synthase (1-16:1, 2-16:1), ER membrane" @@ -58810,18 +54978,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2434" - name: "CDP-diacylglycerol synthase (1-18:0, 2-16:1), ER membrane" @@ -58835,18 +54999,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2435" - name: "CDP-diacylglycerol synthase (1-18:1, 2-16:1), ER membrane" @@ -58860,18 +55020,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2436" - name: "CDP-diacylglycerol synthase (1-16:0, 2-18:1), ER membrane" @@ -58885,18 +55041,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2437" - name: "CDP-diacylglycerol synthase (1-16:1, 2-18:1), ER membrane" @@ -58910,18 +55062,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2438" - name: "CDP-diacylglycerol synthase (1-18:0, 2-18:1), ER membrane" @@ -58935,18 +55083,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2439" - name: "CDP-diacylglycerol synthase (1-18:1, 2-18:1), ER membrane" @@ -58960,18 +55104,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2440" - name: "CDP-diacylglycerol synthase (1-16:0, 2-16:1), mitochondrial membrane" @@ -58985,18 +55125,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2441" - name: "CDP-diacylglycerol synthase (1-16:1, 2-16:1), mitochondrial membrane" @@ -59010,18 +55146,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2442" - name: "CDP-diacylglycerol synthase (1-18:0, 2-16:1), mitochondrial membrane" @@ -59035,18 +55167,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2443" - name: "CDP-diacylglycerol synthase (1-18:1, 2-16:1), mitochondrial membrane" @@ -59060,18 +55188,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2444" - name: "CDP-diacylglycerol synthase (1-16:0, 2-18:1), mitochondrial membrane" @@ -59085,18 +55209,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2445" - name: "CDP-diacylglycerol synthase (1-16:1, 2-18:1), mitochondrial membrane" @@ -59110,18 +55230,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR029C" - eccodes: "2.7.7.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.pathway: - "sce00564" - "sce01110" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2446" - name: "PS synthase (1-16:0, 2-16:1), ER membrane" @@ -59135,18 +55251,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YER026C" - eccodes: "2.7.8.8" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.8" - kegg.pathway: - "sce00260" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2447" - name: "PS synthase (1-16:1, 2-16:1), ER membrane" @@ -59160,18 +55272,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YER026C" - eccodes: "2.7.8.8" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.8" - kegg.pathway: - "sce00260" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2448" - name: "PS synthase (1-18:0, 2-16:1), ER membrane" @@ -59185,18 +55293,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YER026C" - eccodes: "2.7.8.8" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.8" - kegg.pathway: - "sce00260" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2449" - name: "PS synthase (1-18:1, 2-16:1), ER membrane" @@ -59210,18 +55314,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YER026C" - eccodes: "2.7.8.8" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.8" - kegg.pathway: - "sce00260" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2450" - name: "PS synthase (1-16:0, 2-18:1), ER membrane" @@ -59235,18 +55335,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YER026C" - eccodes: "2.7.8.8" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.8" - kegg.pathway: - "sce00260" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2451" - name: "PS synthase (1-16:1, 2-18:1), ER membrane" @@ -59260,18 +55356,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YER026C" - eccodes: "2.7.8.8" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.8" - kegg.pathway: - "sce00260" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2452" - name: "PS synthase (1-18:0, 2-18:1), ER membrane" @@ -59285,18 +55377,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YER026C" - eccodes: "2.7.8.8" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.8" - kegg.pathway: - "sce00260" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2453" - name: "PS synthase (1-18:1, 2-18:1), ER membrane" @@ -59310,18 +55398,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YER026C" - eccodes: "2.7.8.8" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.8" - kegg.pathway: - "sce00260" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2454" - name: "PI synthase (1-16:0, 2-16:1), ER membrane" @@ -59335,18 +55419,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - eccodes: "2.7.8.11" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.11" - kegg.pathway: - "sce00562" - "sce00564" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2455" - name: "PI synthase (1-16:1, 2-16:1), ER membrane" @@ -59360,18 +55440,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - eccodes: "2.7.8.11" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.11" - kegg.pathway: - "sce00562" - "sce00564" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2456" - name: "PI synthase (1-18:0, 2-16:1), ER membrane" @@ -59385,18 +55461,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - eccodes: "2.7.8.11" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.11" - kegg.pathway: - "sce00562" - "sce00564" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2457" - name: "PI synthase (1-18:1, 2-16:1), ER membrane" @@ -59410,18 +55482,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - eccodes: "2.7.8.11" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.11" - kegg.pathway: - "sce00562" - "sce00564" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2458" - name: "PI synthase (1-16:0, 2-18:1), ER membrane" @@ -59435,18 +55503,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - eccodes: "2.7.8.11" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.11" - kegg.pathway: - "sce00562" - "sce00564" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2459" - name: "PI synthase (1-16:1, 2-18:1), ER membrane" @@ -59460,18 +55524,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - eccodes: "2.7.8.11" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.11" - kegg.pathway: - "sce00562" - "sce00564" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2460" - name: "PI synthase (1-18:0, 2-18:1), ER membrane" @@ -59485,18 +55545,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - eccodes: "2.7.8.11" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.11" - kegg.pathway: - "sce00562" - "sce00564" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2461" - name: "PI synthase (1-18:1, 2-18:1), ER membrane" @@ -59510,18 +55566,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR113W" - eccodes: "2.7.8.11" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.11" - kegg.pathway: - "sce00562" - "sce00564" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2462" - name: "lysoPI acyltransferase (1-18:0, 2-16:1), ER membrane" @@ -59534,14 +55586,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR042C" - eccodes: "2.3.-.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.-.-" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2463" - name: "lysoPI acyltransferase (1-18:0, 2-18:1), ER membrane" @@ -59554,14 +55602,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR042C" - eccodes: "2.3.-.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.-.-" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2464" - name: "PS decarboxylase (1-16:0, 2-16:1), mitochondrial membrane" @@ -59573,17 +55617,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2465" - name: "PS decarboxylase (1-16:1, 2-16:1), mitochondrial membrane" @@ -59595,17 +55635,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2466" - name: "PS decarboxylase (1-18:0, 2-16:1), mitochondrial membrane" @@ -59617,17 +55653,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2467" - name: "PS decarboxylase (1-18:1, 2-16:1), mitochondrial membrane" @@ -59639,17 +55671,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2468" - name: "PS decarboxylase (1-16:0, 2-18:1), mitochondrial membrane" @@ -59661,17 +55689,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2469" - name: "PS decarboxylase (1-16:1, 2-18:1), mitochondrial membrane" @@ -59683,17 +55707,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2470" - name: "PS decarboxylase (1-18:0, 2-18:1), mitochondrial membrane" @@ -59705,17 +55725,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2471" - name: "PS decarboxylase (1-18:1, 2-18:1), mitochondrial membrane" @@ -59727,17 +55743,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL169C" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2472" - name: "PS decarboxylase (1-16:0, 2-16:1), Golgi membrane" @@ -59749,17 +55761,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2473" - name: "PS decarboxylase (1-16:1, 2-16:1), Golgi membrane" @@ -59771,17 +55779,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2474" - name: "PS decarboxylase (1-18:0, 2-16:1), Golgi membrane" @@ -59793,17 +55797,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2475" - name: "PS decarboxylase (1-18:1, 2-16:1), Golgi membrane" @@ -59815,17 +55815,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2476" - name: "PS decarboxylase (1-16:0, 2-18:1), Golgi membrane" @@ -59837,17 +55833,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2477" - name: "PS decarboxylase (1-16:1, 2-18:1), Golgi membrane" @@ -59859,17 +55851,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2478" - name: "PS decarboxylase (1-18:0, 2-18:1), Golgi membrane" @@ -59881,17 +55869,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2479" - name: "PS decarboxylase (1-18:1, 2-18:1), Golgi membrane" @@ -59903,17 +55887,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2480" - name: "PS decarboxylase (1-16:0, 2-16:1), vacuolar membrane" @@ -59925,17 +55905,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2481" - name: "PS decarboxylase (1-16:1, 2-16:1), vacuolar membrane" @@ -59947,17 +55923,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2482" - name: "PS decarboxylase (1-18:0, 2-16:1), vacuolar membrane" @@ -59969,17 +55941,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2483" - name: "PS decarboxylase (1-18:1, 2-16:1), vacuolar membrane" @@ -59991,17 +55959,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2484" - name: "PS decarboxylase (1-16:0, 2-18:1), vacuolar membrane" @@ -60013,17 +55977,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2485" - name: "PS decarboxylase (1-16:1, 2-18:1), vacuolar membrane" @@ -60035,17 +55995,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2486" - name: "PS decarboxylase (1-18:0, 2-18:1), vacuolar membrane" @@ -60057,17 +56013,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2487" - name: "PS decarboxylase (1-18:1, 2-18:1), vacuolar membrane" @@ -60079,17 +56031,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR170W" - eccodes: "4.1.1.65" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.65" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2488" - name: "PE methyltransferase (1-16:0, 2-16:1), ER membrane" @@ -60102,18 +56050,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2489" - name: "PE methyltransferase (1-16:1, 2-16:1), ER membrane" @@ -60126,18 +56072,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2490" - name: "PE methyltransferase (1-18:0, 2-16:1), ER membrane" @@ -60150,18 +56094,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2491" - name: "PE methyltransferase (1-18:1, 2-16:1), ER membrane" @@ -60174,18 +56116,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2492" - name: "PE methyltransferase (1-16:0, 2-18:1), ER membrane" @@ -60198,18 +56138,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2493" - name: "PE methyltransferase (1-16:1, 2-18:1), ER membrane" @@ -60222,18 +56160,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2494" - name: "PE methyltransferase (1-18:0, 2-18:1), ER membrane" @@ -60246,18 +56182,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2495" - name: "PE methyltransferase (1-18:1, 2-18:1), ER membrane" @@ -60270,18 +56204,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR157W or YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2496" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:0, 2-16:1), ER membrane" @@ -60294,18 +56226,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2497" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:1, 2-16:1), ER membrane" @@ -60318,18 +56248,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2498" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:0, 2-16:1), ER membrane" @@ -60342,18 +56270,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2499" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:1, 2-16:1), ER membrane" @@ -60366,18 +56292,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2500" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:0, 2-18:1), ER membrane" @@ -60390,18 +56314,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2501" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-16:1, 2-18:1), ER membrane" @@ -60414,18 +56336,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2502" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:0, 2-18:1), ER membrane" @@ -60438,18 +56358,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2503" - name: "phosphatidyl-N-methylethanolamine methyltransferase (1-18:1, 2-18:1), ER membrane" @@ -60462,18 +56380,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2504" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:0, 2-16:1), ER membrane" @@ -60486,18 +56402,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2505" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:1, 2-16:1), ER membrane" @@ -60510,18 +56424,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2506" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:0, 2-16:1), ER membrane" @@ -60534,18 +56446,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2507" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:1, 2-16:1), ER membrane" @@ -60558,18 +56468,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2508" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:0, 2-18:1), ER membrane" @@ -60582,18 +56490,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2509" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-16:1, 2-18:1), ER membrane" @@ -60606,18 +56512,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2510" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:0, 2-18:1), ER membrane" @@ -60630,18 +56534,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2511" - name: "phosphatidyl-N,N-dimethylethanolamine methyltransferase (1-18:1, 2-18:1), ER membrane" @@ -60654,18 +56556,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR073C" - - eccodes: "2.1.1.17; 2.1.1.71" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.1.1.17" + - "2.1.1.71" - annotation: !!omap - - ec-code: "2.1.1.17; 2.1.1.71" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2512" - name: "DAG kinase (1-16:0, 2-16:1), ER membrane" @@ -60679,17 +56579,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - eccodes: "2.7.1.174" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.174" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2513" - name: "DAG kinase (1-16:1, 2-16:1), ER membrane" @@ -60703,17 +56599,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - eccodes: "2.7.1.174" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.174" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2514" - name: "DAG kinase (1-18:0, 2-16:1), ER membrane" @@ -60727,17 +56619,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - eccodes: "2.7.1.174" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.174" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2515" - name: "DAG kinase (1-18:1, 2-16:1), ER membrane" @@ -60751,17 +56639,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - eccodes: "2.7.1.174" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.174" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2516" - name: "DAG kinase (1-16:0, 2-18:1), ER membrane" @@ -60775,17 +56659,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - eccodes: "2.7.1.174" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.174" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2517" - name: "DAG kinase (1-16:1, 2-18:1), ER membrane" @@ -60799,17 +56679,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - eccodes: "2.7.1.174" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.174" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2518" - name: "DAG kinase (1-18:0, 2-18:1), ER membrane" @@ -60823,17 +56699,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - eccodes: "2.7.1.174" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.174" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2519" - name: "DAG kinase (1-18:1, 2-18:1), ER membrane" @@ -60847,17 +56719,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR311C" - eccodes: "2.7.1.174" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.174" - kegg.pathway: - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2520" - name: "ethanolaminephosphotransferase (1-16:0, 2-16:1), ER membrane" @@ -60870,19 +56738,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2521" - name: "ethanolaminephosphotransferase (1-16:1, 2-16:1), ER membrane" @@ -60895,19 +56761,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2522" - name: "ethanolaminephosphotransferase (1-18:0, 2-16:1), ER membrane" @@ -60920,19 +56784,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2523" - name: "ethanolaminephosphotransferase (1-18:1, 2-16:1), ER membrane" @@ -60945,19 +56807,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2524" - name: "ethanolaminephosphotransferase (1-16:0, 2-18:1), ER membrane" @@ -60970,19 +56830,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2525" - name: "ethanolaminephosphotransferase (1-16:1, 2-18:1), ER membrane" @@ -60995,19 +56853,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2526" - name: "ethanolaminephosphotransferase (1-18:0, 2-18:1), ER membrane" @@ -61020,19 +56876,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2527" - name: "ethanolaminephosphotransferase (1-18:1, 2-18:1), ER membrane" @@ -61045,19 +56899,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2528" - name: "cholinephosphotransferase (1-16:0, 2-16:1), ER membrane" @@ -61070,19 +56922,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2529" - name: "cholinephosphotransferase (1-16:1, 2-16:1), ER membrane" @@ -61095,19 +56945,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2530" - name: "cholinephosphotransferase (1-18:0, 2-16:1), ER membrane" @@ -61120,19 +56968,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2531" - name: "cholinephosphotransferase (1-18:1, 2-16:1), ER membrane" @@ -61145,19 +56991,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2532" - name: "cholinephosphotransferase (1-16:0, 2-18:1), ER membrane" @@ -61170,19 +57014,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2533" - name: "cholinephosphotransferase (1-16:1, 2-18:1), ER membrane" @@ -61195,19 +57037,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2534" - name: "cholinephosphotransferase (1-18:0, 2-18:1), ER membrane" @@ -61220,19 +57060,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2535" - name: "cholinephosphotransferase (1-18:1, 2-18:1), ER membrane" @@ -61245,19 +57083,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR123W or YNL130C" - - eccodes: "2.7.8.1; 2.7.8.2" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.8.1" + - "2.7.8.2" - annotation: !!omap - - ec-code: "2.7.8.1; 2.7.8.2" - kegg.pathway: - "sce00440" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2536" - name: "phosphatidylglycerolphosphate synthase (1-16:0, 2-16:1), mitochondrial membrane" @@ -61270,15 +57106,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCL004W" - eccodes: "2.7.8.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2537" - name: "phosphatidylglycerolphosphate synthase (1-16:1, 2-16:1), mitochondrial membrane" @@ -61291,15 +57123,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCL004W" - eccodes: "2.7.8.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2538" - name: "phosphatidylglycerolphosphate synthase (1-18:0, 2-16:1), mitochondrial membrane" @@ -61312,15 +57140,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCL004W" - eccodes: "2.7.8.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2539" - name: "phosphatidylglycerolphosphate synthase (1-18:1, 2-16:1), mitochondrial membrane" @@ -61333,15 +57157,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCL004W" - eccodes: "2.7.8.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2540" - name: "phosphatidylglycerolphosphate synthase (1-16:0, 2-18:1), mitochondrial membrane" @@ -61354,15 +57174,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCL004W" - eccodes: "2.7.8.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2541" - name: "phosphatidylglycerolphosphate synthase (1-16:1, 2-18:1), mitochondrial membrane" @@ -61375,15 +57191,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCL004W" - eccodes: "2.7.8.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2542" - name: "PGP phosphatase (1-16:0, 2-16:1), mitochondrial membrane" @@ -61397,15 +57209,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR100C" - eccodes: "3.1.3.27" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.27" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2543" - name: "PGP phosphatase (1-16:1, 2-16:1), mitochondrial membrane" @@ -61419,15 +57227,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR100C" - eccodes: "3.1.3.27" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.27" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2544" - name: "PGP phosphatase (1-18:0, 2-16:1), mitochondrial membrane" @@ -61441,15 +57245,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR100C" - eccodes: "3.1.3.27" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.27" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2545" - name: "PGP phosphatase (1-18:1, 2-16:1), mitochondrial membrane" @@ -61463,15 +57263,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR100C" - eccodes: "3.1.3.27" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.27" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2546" - name: "PGP phosphatase (1-16:0, 2-18:1), mitochondrial membrane" @@ -61485,15 +57281,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR100C" - eccodes: "3.1.3.27" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.27" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2547" - name: "PGP phosphatase (1-16:1, 2-18:1), mitochondrial membrane" @@ -61507,15 +57299,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR100C" - eccodes: "3.1.3.27" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.27" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2548" - name: "CL synthase (1-16:0, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" @@ -61529,15 +57317,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2549" - name: "CL synthase (1-16:0, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" @@ -61551,15 +57335,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2550" - name: "CL synthase (1-16:0, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" @@ -61573,15 +57353,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2551" - name: "CL synthase (1-16:0, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" @@ -61595,15 +57371,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2552" - name: "CL synthase (1-16:0, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" @@ -61617,15 +57389,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2553" - name: "CL synthase (1-16:0, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" @@ -61639,15 +57407,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2554" - name: "CL synthase (1-16:1, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" @@ -61661,15 +57425,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2555" - name: "CL synthase (1-16:1, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" @@ -61683,15 +57443,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2556" - name: "CL synthase (1-16:1, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" @@ -61705,15 +57461,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2557" - name: "CL synthase (1-16:1, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" @@ -61727,15 +57479,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2558" - name: "CL synthase (1-16:1, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" @@ -61749,15 +57497,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2559" - name: "CL synthase (1-16:1, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" @@ -61771,15 +57515,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2560" - name: "CL synthase (1-18:0, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" @@ -61793,15 +57533,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2561" - name: "CL synthase (1-18:0, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" @@ -61815,15 +57551,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2562" - name: "CL synthase (1-18:0, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" @@ -61837,15 +57569,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2563" - name: "CL synthase (1-18:0, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" @@ -61859,15 +57587,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2564" - name: "CL synthase (1-18:0, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" @@ -61881,15 +57605,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2565" - name: "CL synthase (1-18:0, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" @@ -61903,15 +57623,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2566" - name: "CL synthase (1-18:1, 2-16:1, 3-16:0, 4-16:1), mitochondrial membrane" @@ -61925,15 +57641,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2567" - name: "CL synthase (1-18:1, 2-16:1, 3-16:1, 4-16:1), mitochondrial membrane" @@ -61947,15 +57659,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2568" - name: "CL synthase (1-18:1, 2-16:1, 3-18:0, 4-16:1), mitochondrial membrane" @@ -61969,15 +57677,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2569" - name: "CL synthase (1-18:1, 2-16:1, 3-18:1, 4-16:1), mitochondrial membrane" @@ -61991,15 +57695,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2570" - name: "CL synthase (1-18:1, 2-16:1, 3-16:0, 4-18:1), mitochondrial membrane" @@ -62013,15 +57713,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2571" - name: "CL synthase (1-18:1, 2-16:1, 3-16:1, 4-18:1), mitochondrial membrane" @@ -62035,15 +57731,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2572" - name: "CL synthase (1-16:0, 2-18:1, 3-16:0, 4-16:1), mitochondrial membrane" @@ -62057,15 +57749,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2573" - name: "CL synthase (1-16:0, 2-18:1, 3-16:1, 4-16:1), mitochondrial membrane" @@ -62079,15 +57767,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2574" - name: "CL synthase (1-16:0, 2-18:1, 3-18:0, 4-16:1), mitochondrial membrane" @@ -62101,15 +57785,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2575" - name: "CL synthase (1-16:0, 2-18:1, 3-18:1, 4-16:1), mitochondrial membrane" @@ -62123,15 +57803,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2576" - name: "CL synthase (1-16:0, 2-18:1, 3-16:0, 4-18:1), mitochondrial membrane" @@ -62145,15 +57821,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2577" - name: "CL synthase (1-16:0, 2-18:1, 3-16:1, 4-18:1), mitochondrial membrane" @@ -62167,15 +57839,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2578" - name: "CL synthase (1-16:1, 2-18:1, 3-16:0, 4-16:1), mitochondrial membrane" @@ -62189,15 +57857,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2579" - name: "CL synthase (1-16:1, 2-18:1, 3-16:1, 4-16:1), mitochondrial membrane" @@ -62211,15 +57875,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2580" - name: "CL synthase (1-16:1, 2-18:1, 3-18:0, 4-16:1), mitochondrial membrane" @@ -62233,15 +57893,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2581" - name: "CL synthase (1-16:1, 2-18:1, 3-18:1, 4-16:1), mitochondrial membrane" @@ -62255,15 +57911,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2582" - name: "CL synthase (1-16:1, 2-18:1, 3-16:0, 4-18:1), mitochondrial membrane" @@ -62277,15 +57929,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2583" - name: "CL synthase (1-16:1, 2-18:1, 3-16:1, 4-18:1), mitochondrial membrane" @@ -62299,15 +57947,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL142C" - eccodes: "2.7.8.41" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.41" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2584" - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62321,15 +57965,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2585" - name: "CL (1-16:0, 2-16:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62343,15 +57983,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2586" - name: "CL (1-16:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62365,15 +58001,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2587" - name: "CL (1-16:0, 2-16:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62387,15 +58019,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2588" - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" @@ -62409,15 +58037,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2589" - name: "CL (1-16:0, 2-16:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" @@ -62431,15 +58055,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2590" - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62453,15 +58073,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2591" - name: "CL (1-18:0, 2-16:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62475,15 +58091,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2592" - name: "CL (1-18:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62497,15 +58109,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2593" - name: "CL (1-18:0, 2-16:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62519,15 +58127,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2594" - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" @@ -62541,15 +58145,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2595" - name: "CL (1-18:0, 2-16:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" @@ -62563,15 +58163,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2596" - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62585,15 +58181,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2597" - name: "CL (1-16:0, 2-18:1, 3-16:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62607,15 +58199,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2598" - name: "CL (1-16:0, 2-18:1, 3-18:0, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62629,15 +58217,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2599" - name: "CL (1-16:0, 2-18:1, 3-18:1, 4-16:1) phospholipase (1-position), mitochondrial membrane" @@ -62651,15 +58235,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2600" - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-18:1) phospholipase (1-position), mitochondrial membrane" @@ -62673,15 +58253,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2601" - name: "CL (1-16:0, 2-18:1, 3-16:1, 4-18:1) phospholipase (1-position), mitochondrial membrane" @@ -62695,15 +58271,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2602" - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62717,15 +58289,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2603" - name: "CL (1-16:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62739,15 +58307,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2604" - name: "CL (1-16:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" @@ -62761,15 +58325,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2605" - name: "CL (1-16:1, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62783,15 +58343,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2606" - name: "CL (1-16:1, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62805,15 +58361,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2607" - name: "CL (1-16:1, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" @@ -62827,15 +58379,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2608" - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62849,15 +58397,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2609" - name: "CL (1-18:0, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62871,15 +58415,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2610" - name: "CL (1-18:0, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" @@ -62893,15 +58433,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2611" - name: "CL (1-18:1, 2-16:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62915,15 +58451,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2612" - name: "CL (1-18:1, 2-16:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62937,15 +58469,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2613" - name: "CL (1-18:1, 2-16:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" @@ -62959,15 +58487,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2614" - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -62981,15 +58505,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2615" - name: "CL (1-16:0, 2-18:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -63003,15 +58523,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2616" - name: "CL (1-16:0, 2-18:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" @@ -63025,15 +58541,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2617" - name: "CL (1-16:1, 2-18:1, 3-16:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -63047,15 +58559,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2618" - name: "CL (1-16:1, 2-18:1, 3-18:0, 4-16:1) phospholipase (3-position), mitochondrial membrane" @@ -63069,15 +58577,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2619" - name: "CL (1-16:1, 2-18:1, 3-16:0, 4-18:1) phospholipase (3-position), mitochondrial membrane" @@ -63091,15 +58595,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR110W" - eccodes: "3.5.1.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2620" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63112,15 +58612,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2621" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63133,15 +58629,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2622" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63154,15 +58646,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2623" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63175,15 +58663,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2624" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63196,15 +58680,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2625" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63217,15 +58697,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2626" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63238,15 +58714,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2627" - name: "MLCL (2-16:1, 3-16:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63259,15 +58731,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2628" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63280,15 +58748,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2629" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63301,15 +58765,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2630" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63322,15 +58782,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2631" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63343,15 +58799,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2632" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63364,15 +58816,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2633" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63385,15 +58833,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2634" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63406,15 +58850,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2635" - name: "MLCL (2-16:1, 3-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63427,15 +58867,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2636" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63448,15 +58884,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2637" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63469,15 +58901,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2638" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63490,15 +58918,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2639" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63511,15 +58935,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2640" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63532,15 +58952,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2641" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63553,15 +58969,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2642" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63574,15 +58986,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2643" - name: "MLCL (2-16:1, 3-18:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63595,15 +59003,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2644" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63616,15 +59020,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2645" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63637,15 +59037,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2646" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63658,15 +59054,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2647" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63679,15 +59071,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2648" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63700,15 +59088,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2649" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63721,15 +59105,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2650" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63742,15 +59122,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2651" - name: "MLCL (2-16:1, 3-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63763,15 +59139,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2652" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63784,15 +59156,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2653" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63805,15 +59173,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2654" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63826,15 +59190,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2655" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63847,15 +59207,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2656" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63868,15 +59224,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2657" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63889,15 +59241,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2658" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63910,15 +59258,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2659" - name: "MLCL (2-16:1, 3-16:0, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -63931,15 +59275,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2660" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63952,15 +59292,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2661" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63973,15 +59309,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2662" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -63994,15 +59326,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2663" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64015,15 +59343,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2664" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64036,15 +59360,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2665" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64057,15 +59377,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2666" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64078,15 +59394,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2667" - name: "MLCL (2-16:1, 3-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64099,15 +59411,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2668" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64120,15 +59428,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2669" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64141,15 +59445,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2670" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64162,15 +59462,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2671" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64183,15 +59479,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2672" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64204,15 +59496,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2673" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64225,15 +59513,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2674" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64246,15 +59530,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2675" - name: "MLCL (2-18:1, 3-16:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64267,15 +59547,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2676" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64288,15 +59564,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2677" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64309,15 +59581,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2678" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64330,15 +59598,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2679" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64351,15 +59615,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2680" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64372,15 +59632,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2681" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64393,15 +59649,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2682" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64414,15 +59666,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2683" - name: "MLCL (2-18:1, 3-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64435,15 +59683,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2684" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64456,15 +59700,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2685" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64477,15 +59717,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2686" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64498,15 +59734,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2687" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64519,15 +59751,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2688" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64540,15 +59768,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2689" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64561,15 +59785,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2690" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64582,15 +59802,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2691" - name: "MLCL (2-18:1, 3-18:0, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64603,15 +59819,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2692" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64624,15 +59836,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2693" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64645,15 +59853,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2694" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64666,15 +59870,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2695" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64687,15 +59887,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2696" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64708,15 +59904,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2697" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64729,15 +59921,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2698" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64750,15 +59938,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2699" - name: "MLCL (2-18:1, 3-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64771,15 +59955,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2700" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64792,15 +59972,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2701" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64813,15 +59989,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2702" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64834,15 +60006,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2703" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64855,15 +60023,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2704" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64876,15 +60040,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2705" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64897,15 +60057,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2706" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64918,15 +60074,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2707" - name: "MLCL (2-18:1, 3-16:0, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -64939,15 +60091,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2708" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64960,15 +60108,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2709" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -64981,15 +60125,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2710" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65002,15 +60142,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2711" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65023,15 +60159,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2712" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65044,15 +60176,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2713" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65065,15 +60193,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2714" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65086,15 +60210,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2715" - name: "MLCL (2-18:1, 3-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65107,15 +60227,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2716" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65128,15 +60244,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2717" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65149,15 +60261,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2718" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65170,15 +60278,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2719" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65191,15 +60295,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2720" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65212,15 +60312,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2721" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65233,15 +60329,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2722" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65254,15 +60346,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2723" - name: "MLCL (1-16:0, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65275,15 +60363,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2724" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65296,15 +60380,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2725" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65317,15 +60397,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2726" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65338,15 +60414,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2727" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65359,15 +60431,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2728" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65380,15 +60448,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2729" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65401,15 +60465,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2730" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65422,15 +60482,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2731" - name: "MLCL (1-16:0, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65443,15 +60499,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2732" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65464,15 +60516,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2733" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65485,15 +60533,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2734" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65506,15 +60550,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2735" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65527,15 +60567,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2736" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65548,15 +60584,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2737" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65569,15 +60601,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2738" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65590,15 +60618,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2739" - name: "MLCL (1-16:1, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65611,15 +60635,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2740" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65632,15 +60652,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2741" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65653,15 +60669,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2742" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65674,15 +60686,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2743" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65695,15 +60703,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2744" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65716,15 +60720,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2745" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65737,15 +60737,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2746" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65758,15 +60754,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2747" - name: "MLCL (1-16:1, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65779,15 +60771,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2748" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65800,15 +60788,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2749" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65821,15 +60805,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2750" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65842,15 +60822,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2751" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65863,15 +60839,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2752" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65884,15 +60856,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2753" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65905,15 +60873,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2754" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65926,15 +60890,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2755" - name: "MLCL (1-18:0, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -65947,15 +60907,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2756" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65968,15 +60924,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2757" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -65989,15 +60941,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2758" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66010,15 +60958,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2759" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66031,15 +60975,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2760" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66052,15 +60992,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2761" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66073,15 +61009,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2762" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66094,15 +61026,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2763" - name: "MLCL (1-18:0, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66115,15 +61043,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2764" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66136,15 +61060,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2765" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66157,15 +61077,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2766" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66178,15 +61094,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2767" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66199,15 +61111,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2768" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66220,15 +61128,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2769" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66241,15 +61145,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2770" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66262,15 +61162,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2771" - name: "MLCL (1-18:1, 2-16:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66283,15 +61179,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2772" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66304,15 +61196,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2773" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66325,15 +61213,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2774" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66346,15 +61230,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2775" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66367,15 +61247,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2776" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66388,15 +61264,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2777" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66409,15 +61281,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2778" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66430,15 +61298,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2779" - name: "MLCL (1-18:1, 2-16:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66451,15 +61315,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2780" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66472,15 +61332,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2781" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66493,15 +61349,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2782" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66514,15 +61366,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2783" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66535,15 +61383,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2784" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66556,15 +61400,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2785" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66577,15 +61417,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2786" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66598,15 +61434,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2787" - name: "MLCL (1-16:0, 2-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66619,15 +61451,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2788" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66640,15 +61468,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2789" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66661,15 +61485,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2790" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66682,15 +61502,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2791" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66703,15 +61519,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2792" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66724,15 +61536,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2793" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66745,15 +61553,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2794" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66766,15 +61570,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2795" - name: "MLCL (1-16:0, 2-18:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66787,15 +61587,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2796" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66808,15 +61604,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2797" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66829,15 +61621,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2798" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66850,15 +61638,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2799" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66871,15 +61655,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2800" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66892,15 +61672,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2801" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66913,15 +61689,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2802" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66934,15 +61706,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2803" - name: "MLCL (1-16:1, 2-18:1, 4-16:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -66955,15 +61723,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2804" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66976,15 +61740,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2805" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -66997,15 +61757,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2806" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:0, 2-16:1) acyltransferase, mitochondrial membrane" @@ -67018,15 +61774,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2807" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:1, 2-16:1) acyltransferase, mitochondrial membrane" @@ -67039,15 +61791,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2808" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -67060,15 +61808,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2809" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-16:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -67081,15 +61825,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2810" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:0, 2-18:1) acyltransferase, mitochondrial membrane" @@ -67102,15 +61842,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2811" - name: "MLCL (1-16:1, 2-18:1, 4-18:1):PC (1-18:1, 2-18:1) acyltransferase, mitochondrial membrane" @@ -67123,15 +61859,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR140W" - eccodes: "2.3.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.23" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2820" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), cell envelope" @@ -67145,18 +61877,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2821" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), cell envelope" @@ -67170,18 +61898,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2822" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), cell envelope" @@ -67195,18 +61919,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2823" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), cell envelope" @@ -67220,18 +61940,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2824" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), cell envelope" @@ -67245,18 +61961,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2825" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), cell envelope" @@ -67270,18 +61982,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2826" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), cell envelope" @@ -67295,18 +62003,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2827" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), cell envelope" @@ -67320,18 +62024,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W or YLR305C" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2828" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), vacuolar membrane" @@ -67345,17 +62045,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2829" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), vacuolar membrane" @@ -67369,17 +62065,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2830" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), vacuolar membrane" @@ -67393,17 +62085,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2831" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), vacuolar membrane" @@ -67417,17 +62105,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2832" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), vacuolar membrane" @@ -67441,17 +62125,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2833" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), vacuolar membrane" @@ -67465,17 +62145,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2834" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), vacuolar membrane" @@ -67489,17 +62165,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2835" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), vacuolar membrane" @@ -67513,17 +62185,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL100W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2836" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), Golgi membrane" @@ -67537,17 +62205,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2837" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), Golgi membrane" @@ -67561,17 +62225,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2838" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), Golgi membrane" @@ -67585,17 +62245,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2839" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), Golgi membrane" @@ -67609,17 +62265,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2840" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), Golgi membrane" @@ -67633,17 +62285,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2841" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), Golgi membrane" @@ -67657,17 +62305,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2842" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), Golgi membrane" @@ -67681,17 +62325,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2843" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), Golgi membrane" @@ -67705,17 +62345,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR373W and YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2844" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-16:1), nucleus" @@ -67729,17 +62365,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2845" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-16:1), nucleus" @@ -67753,17 +62385,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2846" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-16:1), nucleus" @@ -67777,17 +62405,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2847" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-16:1), nucleus" @@ -67801,17 +62425,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2848" - name: "phosphatidylinositol 4-kinase (1-16:0, 2-18:1), nucleus" @@ -67825,17 +62445,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2849" - name: "phosphatidylinositol 4-kinase (1-16:1, 2-18:1), nucleus" @@ -67849,17 +62465,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2850" - name: "phosphatidylinositol 4-kinase (1-18:0, 2-18:1), nucleus" @@ -67873,17 +62485,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2851" - name: "phosphatidylinositol 4-kinase (1-18:1, 2-18:1), nucleus" @@ -67897,17 +62505,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL267W" - eccodes: "2.7.1.67" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.67" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2852" - name: "phosphatidylinositol 3-kinase (1-16:0, 2-16:1), vacuolar membrane" @@ -67920,21 +62524,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - eccodes: "2.7.1.137; 2.7.11.1" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.1.137" + - "2.7.11.1" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - kegg.pathway: - "sce00562" - "sce04070" - "sce04136" - "sce04138" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2853" - name: "phosphatidylinositol 3-kinase (1-16:1, 2-16:1), vacuolar membrane" @@ -67947,21 +62549,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - eccodes: "2.7.1.137; 2.7.11.1" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.1.137" + - "2.7.11.1" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - kegg.pathway: - "sce00562" - "sce04070" - "sce04136" - "sce04138" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2854" - name: "phosphatidylinositol 3-kinase (1-18:0, 2-16:1), vacuolar membrane" @@ -67974,21 +62574,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - eccodes: "2.7.1.137; 2.7.11.1" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.1.137" + - "2.7.11.1" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - kegg.pathway: - "sce00562" - "sce04070" - "sce04136" - "sce04138" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2855" - name: "phosphatidylinositol 3-kinase (1-18:1, 2-16:1), vacuolar membrane" @@ -68001,21 +62599,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - eccodes: "2.7.1.137; 2.7.11.1" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.1.137" + - "2.7.11.1" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - kegg.pathway: - "sce00562" - "sce04070" - "sce04136" - "sce04138" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2856" - name: "phosphatidylinositol 3-kinase (1-16:0, 2-18:1), vacuolar membrane" @@ -68028,21 +62624,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - eccodes: "2.7.1.137; 2.7.11.1" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.1.137" + - "2.7.11.1" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - kegg.pathway: - "sce00562" - "sce04070" - "sce04136" - "sce04138" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2857" - name: "phosphatidylinositol 3-kinase (1-16:1, 2-18:1), vacuolar membrane" @@ -68055,21 +62649,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - eccodes: "2.7.1.137; 2.7.11.1" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.1.137" + - "2.7.11.1" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - kegg.pathway: - "sce00562" - "sce04070" - "sce04136" - "sce04138" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2858" - name: "phosphatidylinositol 3-kinase (1-18:0, 2-18:1), vacuolar membrane" @@ -68082,21 +62674,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - eccodes: "2.7.1.137; 2.7.11.1" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.1.137" + - "2.7.11.1" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - kegg.pathway: - "sce00562" - "sce04070" - "sce04136" - "sce04138" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2859" - name: "phosphatidylinositol 3-kinase (1-18:1, 2-18:1), vacuolar membrane" @@ -68109,21 +62699,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR097W and YLR240W" - - eccodes: "2.7.1.137; 2.7.11.1" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "2.7.1.137" + - "2.7.11.1" - annotation: !!omap - - ec-code: "2.7.1.137; 2.7.11.1" - kegg.pathway: - "sce00562" - "sce04070" - "sce04136" - "sce04138" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2860" - name: "PI 4-P 5-kinase (1-16:0, 2-16:1), nucleus" @@ -68137,20 +62725,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2861" - name: "PI 4-P 5-kinase (1-16:1, 2-16:1), nucleus" @@ -68164,20 +62748,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2862" - name: "PI 4-P 5-kinase (1-18:0, 2-16:1), nucleus" @@ -68191,20 +62771,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2863" - name: "PI 4-P 5-kinase (1-18:1, 2-16:1), nucleus" @@ -68218,20 +62794,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2864" - name: "PI 4-P 5-kinase (1-16:0, 2-18:1), nucleus" @@ -68245,20 +62817,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2865" - name: "PI 4-P 5-kinase (1-16:1, 2-18:1), nucleus" @@ -68272,20 +62840,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2866" - name: "PI 4-P 5-kinase (1-18:0, 2-18:1), nucleus" @@ -68299,20 +62863,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2867" - name: "PI 4-P 5-kinase (1-18:1, 2-18:1), nucleus" @@ -68326,20 +62886,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2868" - name: "PI 4-P 5-kinase (1-16:0, 2-16:1), cell envelope" @@ -68353,20 +62909,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2869" - name: "PI 4-P 5-kinase (1-16:1, 2-16:1), cell envelope" @@ -68380,20 +62932,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2870" - name: "PI 4-P 5-kinase (1-18:0, 2-16:1), cell envelope" @@ -68407,20 +62955,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2871" - name: "PI 4-P 5-kinase (1-18:1, 2-16:1), cell envelope" @@ -68434,20 +62978,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2872" - name: "PI 4-P 5-kinase (1-16:0, 2-18:1), cell envelope" @@ -68461,20 +63001,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2873" - name: "PI 4-P 5-kinase (1-16:1, 2-18:1), cell envelope" @@ -68488,20 +63024,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2874" - name: "PI 4-P 5-kinase (1-18:0, 2-18:1), cell envelope" @@ -68515,20 +63047,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2875" - name: "PI 4-P 5-kinase (1-18:1, 2-18:1), cell envelope" @@ -68542,20 +63070,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR208W" - eccodes: "2.7.1.68" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.68" - kegg.pathway: - "sce00562" - "sce04011" - "sce04070" - "sce04139" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2876" - name: "PI 3-P 5-kinase (1-16:0, 2-16:1), vacuolar membrane" @@ -68569,18 +63093,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - eccodes: "2.7.1.150" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.150" - kegg.pathway: - "sce00562" - "sce04070" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2877" - name: "PI 3-P 5-kinase (1-16:1, 2-16:1), vacuolar membrane" @@ -68594,18 +63114,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - eccodes: "2.7.1.150" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.150" - kegg.pathway: - "sce00562" - "sce04070" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2878" - name: "PI 3-P 5-kinase (1-18:0, 2-16:1), vacuolar membrane" @@ -68619,18 +63135,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - eccodes: "2.7.1.150" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.150" - kegg.pathway: - "sce00562" - "sce04070" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2879" - name: "PI 3-P 5-kinase (1-18:1, 2-16:1), vacuolar membrane" @@ -68644,18 +63156,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - eccodes: "2.7.1.150" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.150" - kegg.pathway: - "sce00562" - "sce04070" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2880" - name: "PI 3-P 5-kinase (1-16:0, 2-18:1), vacuolar membrane" @@ -68669,18 +63177,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - eccodes: "2.7.1.150" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.150" - kegg.pathway: - "sce00562" - "sce04070" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2881" - name: "PI 3-P 5-kinase (1-16:1, 2-18:1), vacuolar membrane" @@ -68694,18 +63198,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - eccodes: "2.7.1.150" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.150" - kegg.pathway: - "sce00562" - "sce04070" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2882" - name: "PI 3-P 5-kinase (1-18:0, 2-18:1), vacuolar membrane" @@ -68719,18 +63219,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - eccodes: "2.7.1.150" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.150" - kegg.pathway: - "sce00562" - "sce04070" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2883" - name: "PI 3-P 5-kinase (1-18:1, 2-18:1), vacuolar membrane" @@ -68744,18 +63240,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR019W" - eccodes: "2.7.1.150" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.150" - kegg.pathway: - "sce00562" - "sce04070" - "sce04145" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2884" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68768,15 +63260,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2885" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68789,15 +63277,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2886" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68810,15 +63294,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2887" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68831,15 +63311,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2888" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68852,15 +63328,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2889" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68873,15 +63345,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2890" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68894,15 +63362,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2891" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -68915,15 +63379,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2892" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -68936,15 +63396,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2893" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -68957,15 +63413,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2894" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -68978,15 +63430,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2895" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -68999,15 +63447,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2896" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -69020,15 +63464,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2897" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -69041,15 +63481,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2898" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -69062,15 +63498,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2899" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -69083,15 +63515,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2900" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69104,15 +63532,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2901" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69125,15 +63549,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2902" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69146,15 +63566,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2903" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69167,15 +63583,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2904" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69188,15 +63600,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2905" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69209,15 +63617,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2906" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69230,15 +63634,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2907" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -69251,15 +63651,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2908" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69272,15 +63668,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2909" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69293,15 +63685,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2910" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69314,15 +63702,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2911" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69335,15 +63719,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2912" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69356,15 +63736,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2913" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69377,15 +63753,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2914" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69398,15 +63770,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2915" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -69419,15 +63787,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2916" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69440,15 +63804,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2917" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69461,15 +63821,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2918" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69482,15 +63838,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2919" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69503,15 +63855,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2920" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69524,15 +63872,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2921" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69545,15 +63889,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2922" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69566,15 +63906,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2923" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -69587,15 +63923,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2924" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69608,15 +63940,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2925" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69629,15 +63957,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2926" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69650,15 +63974,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2927" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69671,15 +63991,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2928" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69692,15 +64008,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2929" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69713,15 +64025,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2930" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69734,15 +64042,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2931" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -69755,15 +64059,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2932" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69776,15 +64076,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2933" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69797,15 +64093,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2934" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69818,15 +64110,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2935" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69839,15 +64127,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2936" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69860,15 +64144,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2937" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69881,15 +64161,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2938" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69902,15 +64178,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2939" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -69923,15 +64195,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2940" - name: "PE (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -69944,15 +64212,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2941" - name: "PE (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -69965,15 +64229,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2942" - name: "PE (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -69986,15 +64246,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2943" - name: "PE (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -70007,15 +64263,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2944" - name: "PE (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -70028,15 +64280,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2945" - name: "PE (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -70049,15 +64297,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2946" - name: "PE (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -70070,15 +64314,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2947" - name: "PE (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -70091,15 +64331,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2948" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70112,15 +64348,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2949" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70133,15 +64365,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2950" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70154,15 +64382,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2951" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70175,15 +64399,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2952" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70196,15 +64416,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2953" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70217,15 +64433,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2954" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70238,15 +64450,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2955" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-16:1) acyltransferase, ER membrane" @@ -70259,15 +64467,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2956" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70280,15 +64484,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2957" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70301,15 +64501,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2958" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70322,15 +64518,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2959" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70343,15 +64535,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2960" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70364,15 +64552,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2961" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70385,15 +64569,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2962" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70406,15 +64586,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2963" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-16:1) acyltransferase, ER membrane" @@ -70427,15 +64603,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2964" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70448,15 +64620,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2965" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70469,15 +64637,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2966" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70490,15 +64654,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2967" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70511,15 +64671,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2968" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70532,15 +64688,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2969" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70553,15 +64705,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2970" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70574,15 +64722,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2971" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-16:1) acyltransferase, ER membrane" @@ -70595,15 +64739,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2972" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70616,15 +64756,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2973" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70637,15 +64773,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2974" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70658,15 +64790,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2975" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70679,15 +64807,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2976" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70700,15 +64824,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2977" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70721,15 +64841,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2978" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70742,15 +64858,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2979" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-16:1) acyltransferase, ER membrane" @@ -70763,15 +64875,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2980" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70784,15 +64892,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2981" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70805,15 +64909,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2982" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70826,15 +64926,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2983" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70847,15 +64943,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2984" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70868,15 +64960,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2985" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70889,15 +64977,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2986" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70910,15 +64994,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2987" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:0, 2-18:1) acyltransferase, ER membrane" @@ -70931,15 +65011,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2988" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -70952,15 +65028,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2989" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -70973,15 +65045,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2990" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -70994,15 +65062,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2991" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -71015,15 +65079,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2992" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -71036,15 +65096,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2993" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -71057,15 +65113,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2994" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -71078,15 +65130,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2995" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-16:1, 2-18:1) acyltransferase, ER membrane" @@ -71099,15 +65147,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2996" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71120,15 +65164,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2997" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71141,15 +65181,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2998" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71162,15 +65198,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2999" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71183,15 +65215,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3000" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71204,15 +65232,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3001" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71225,15 +65249,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3002" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71246,15 +65266,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3003" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:0, 2-18:1) acyltransferase, ER membrane" @@ -71267,15 +65283,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3004" - name: "PC (1-16:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71288,15 +65300,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3005" - name: "PC (1-16:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71309,15 +65317,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3006" - name: "PC (1-18:0, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71330,15 +65334,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3007" - name: "PC (1-18:1, 2-16:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71351,15 +65351,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3008" - name: "PC (1-16:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71372,15 +65368,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3009" - name: "PC (1-16:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71393,15 +65385,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3010" - name: "PC (1-18:0, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71414,15 +65402,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3011" - name: "PC (1-18:1, 2-18:1) diacylglycerol (1-18:1, 2-18:1) acyltransferase, ER membrane" @@ -71435,15 +65419,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR008W" - eccodes: "2.3.1.158" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.158" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3022" - name: "PC phospholipase B (1-16:0, 2-16:1), ER membrane" @@ -71457,15 +65437,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML059C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3023" - name: "PC phospholipase B (1-16:1, 2-16:1), ER membrane" @@ -71479,15 +65455,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML059C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3024" - name: "PC phospholipase B (1-18:0, 2-16:1), ER membrane" @@ -71501,15 +65473,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML059C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3025" - name: "PC phospholipase B (1-18:1, 2-16:1), ER membrane" @@ -71523,15 +65491,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML059C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3026" - name: "PC phospholipase B (1-16:0, 2-18:1), ER membrane" @@ -71545,15 +65509,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML059C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3027" - name: "PC phospholipase B (1-16:1, 2-18:1), ER membrane" @@ -71567,15 +65527,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML059C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3028" - name: "PC phospholipase B (1-18:0, 2-18:1), ER membrane" @@ -71589,15 +65545,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML059C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3029" - name: "PC phospholipase B (1-18:1, 2-18:1), ER membrane" @@ -71611,15 +65563,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML059C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3030" - name: "LPC phospholipase B (16:0), ER membrane" @@ -71633,15 +65581,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML059C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3031" - name: "LPC phospholipase B (16:1), ER membrane" @@ -71655,15 +65599,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML059C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3032" - name: "LPC phospholipase B (18:0), ER membrane" @@ -71677,15 +65617,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML059C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3033" - name: "LPC phospholipase B (18:1), ER membrane" @@ -71699,15 +65635,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YML059C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3034" - name: "PC phospholipase B (1-16:0, 2-16:1), cell envelope" @@ -71721,15 +65653,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3035" - name: "PC phospholipase B (1-16:1, 2-16:1), cell envelope" @@ -71743,15 +65671,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3036" - name: "PC phospholipase B (1-18:0, 2-16:1), cell envelope" @@ -71765,15 +65689,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3037" - name: "PC phospholipase B (1-18:1, 2-16:1), cell envelope" @@ -71787,15 +65707,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3038" - name: "PC phospholipase B (1-16:0, 2-18:1), cell envelope" @@ -71809,15 +65725,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3039" - name: "PC phospholipase B (1-16:1, 2-18:1), cell envelope" @@ -71831,15 +65743,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3040" - name: "PC phospholipase B (1-18:0, 2-18:1), cell envelope" @@ -71853,15 +65761,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3041" - name: "PC phospholipase B (1-18:1, 2-18:1), cell envelope" @@ -71875,15 +65779,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3042" - name: "LPC phospholipase B (16:0), cell envelope" @@ -71897,15 +65797,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3043" - name: "LPC phospholipase B (16:1), cell envelope" @@ -71919,15 +65815,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3044" - name: "LPC phospholipase B (18:0), cell envelope" @@ -71941,15 +65833,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3045" - name: "LPC phospholipase B (18:1), cell envelope" @@ -71963,15 +65851,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3046" - name: "PE phospholipase B (1-16:0, 2-16:1), cell envelope" @@ -71985,15 +65869,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3047" - name: "PE phospholipase B (1-16:1, 2-16:1), cell envelope" @@ -72007,15 +65887,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3048" - name: "PE phospholipase B (1-18:0, 2-16:1), cell envelope" @@ -72029,15 +65905,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3049" - name: "PE phospholipase B (1-18:1, 2-16:1), cell envelope" @@ -72051,15 +65923,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3050" - name: "PE phospholipase B (1-16:0, 2-18:1), cell envelope" @@ -72073,15 +65941,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3051" - name: "PE phospholipase B (1-16:1, 2-18:1), cell envelope" @@ -72095,15 +65959,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3052" - name: "PE phospholipase B (1-18:0, 2-18:1), cell envelope" @@ -72117,15 +65977,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3053" - name: "PE phospholipase B (1-18:1, 2-18:1), cell envelope" @@ -72139,15 +65995,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3054" - name: "LPE phospholipase B (16:0), cell envelope" @@ -72161,15 +66013,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3055" - name: "LPE phospholipase B (16:1), cell envelope" @@ -72183,15 +66031,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3056" - name: "LPE phospholipase B (18:0), cell envelope" @@ -72205,15 +66049,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3057" - name: "LPE phospholipase B (18:1), cell envelope" @@ -72227,15 +66067,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YMR008C" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3058" - name: "PS phospholipase B (1-16:0, 2-16:1), cell envelope" @@ -72249,15 +66085,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3059" - name: "PS phospholipase B (1-16:1, 2-16:1), cell envelope" @@ -72271,15 +66103,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3060" - name: "PS phospholipase B (1-18:0, 2-16:1), cell envelope" @@ -72293,15 +66121,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3061" - name: "PS phospholipase B (1-18:1, 2-16:1), cell envelope" @@ -72315,15 +66139,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3062" - name: "PS phospholipase B (1-16:0, 2-18:1), cell envelope" @@ -72337,15 +66157,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3063" - name: "PS phospholipase B (1-16:1, 2-18:1), cell envelope" @@ -72359,15 +66175,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3064" - name: "PS phospholipase B (1-18:0, 2-18:1), cell envelope" @@ -72381,15 +66193,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3065" - name: "PS phospholipase B (1-18:1, 2-18:1), cell envelope" @@ -72403,15 +66211,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3066" - name: "LPS phospholipase B (16:0), cell envelope" @@ -72425,15 +66229,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3067" - name: "LPS phospholipase B (16:1), cell envelope" @@ -72447,15 +66247,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3068" - name: "LPS phospholipase B (18:0), cell envelope" @@ -72469,15 +66265,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3069" - name: "LPS phospholipase B (18:1), cell envelope" @@ -72491,15 +66283,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR006C or YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3070" - name: "PI phospholipase B (1-16:0, 2-16:1), cell envelope" @@ -72513,15 +66301,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3071" - name: "PI phospholipase B (1-16:1, 2-16:1), cell envelope" @@ -72535,15 +66319,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3072" - name: "PI phospholipase B (1-18:0, 2-16:1), cell envelope" @@ -72557,15 +66337,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3073" - name: "PI phospholipase B (1-18:1, 2-16:1), cell envelope" @@ -72579,15 +66355,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3074" - name: "PI phospholipase B (1-16:0, 2-18:1), cell envelope" @@ -72601,15 +66373,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3075" - name: "PI phospholipase B (1-16:1, 2-18:1), cell envelope" @@ -72623,15 +66391,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3076" - name: "PI phospholipase B (1-18:0, 2-18:1), cell envelope" @@ -72645,15 +66409,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3077" - name: "PI phospholipase B (1-18:1, 2-18:1), cell envelope" @@ -72667,15 +66427,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3078" - name: "LPI phospholipase B (16:0), cell envelope" @@ -72689,15 +66445,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3079" - name: "LPI phospholipase B (16:1), cell envelope" @@ -72711,15 +66463,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3080" - name: "LPI phospholipase B (18:0), cell envelope" @@ -72733,15 +66481,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3081" - name: "LPI phospholipase B (18:1), cell envelope" @@ -72755,15 +66499,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL011W" - eccodes: "3.1.1.5" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.5" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3082" - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-16:1), cytoplasm" @@ -72777,18 +66517,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3083" - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-16:1), cytoplasm" @@ -72802,18 +66538,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3084" - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-16:1), cytoplasm" @@ -72827,18 +66559,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3085" - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-16:1), cytoplasm" @@ -72852,18 +66580,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3086" - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-18:1), cytoplasm" @@ -72877,18 +66601,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3087" - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-18:1), cytoplasm" @@ -72902,18 +66622,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3088" - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-18:1), cytoplasm" @@ -72927,18 +66643,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3089" - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-18:1), cytoplasm" @@ -72952,18 +66664,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3090" - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-16:1), nucleus" @@ -72977,18 +66685,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3091" - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-16:1), nucleus" @@ -73002,18 +66706,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3092" - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-16:1), nucleus" @@ -73027,18 +66727,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3093" - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-16:1), nucleus" @@ -73052,18 +66748,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3094" - name: "PI 4,5-P2 phospholipase C (1-16:0, 2-18:1), nucleus" @@ -73077,18 +66769,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3095" - name: "PI 4,5-P2 phospholipase C (1-16:1, 2-18:1), nucleus" @@ -73102,18 +66790,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3096" - name: "PI 4,5-P2 phospholipase C (1-18:0, 2-18:1), nucleus" @@ -73127,18 +66811,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3097" - name: "PI 4,5-P2 phospholipase C (1-18:1, 2-18:1), nucleus" @@ -73152,18 +66832,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL268W" - eccodes: "3.1.4.11" - - references: "17382260" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.11" - kegg.pathway: - "sce00562" - "sce04070" - "sce04933" - - pmid: "17382260" + - pubmed: "17382260" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3098" - name: "PG phospholipase C (1-16:0, 2-16:1), mitochondrial membrane" @@ -73177,15 +66853,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL206C" - eccodes: "3.1.4.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3099" - name: "PG phospholipase C (1-16:1, 2-16:1), mitochondrial membrane" @@ -73199,15 +66871,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL206C" - eccodes: "3.1.4.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3100" - name: "PG phospholipase C (1-18:0, 2-16:1), mitochondrial membrane" @@ -73221,15 +66889,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL206C" - eccodes: "3.1.4.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3101" - name: "PG phospholipase C (1-18:1, 2-16:1), mitochondrial membrane" @@ -73243,15 +66907,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL206C" - eccodes: "3.1.4.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3102" - name: "PG phospholipase C (1-16:0, 2-18:1), mitochondrial membrane" @@ -73265,15 +66925,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL206C" - eccodes: "3.1.4.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3103" - name: "PG phospholipase C (1-16:1, 2-18:1), mitochondrial membrane" @@ -73287,15 +66943,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL206C" - eccodes: "3.1.4.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.-" - kegg.pathway: "sce00564" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3104" - name: "PC phospholipase D (1-16:0, 2-16:1), cell envelope" @@ -73309,18 +66961,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - eccodes: "3.1.4.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.4" - kegg.pathway: - "sce00564" - "sce01110" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3105" - name: "PC phospholipase D (1-16:1, 2-16:1), cell envelope" @@ -73334,18 +66982,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - eccodes: "3.1.4.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.4" - kegg.pathway: - "sce00564" - "sce01110" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3106" - name: "PC phospholipase D (1-18:0, 2-16:1), cell envelope" @@ -73359,18 +67003,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - eccodes: "3.1.4.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.4" - kegg.pathway: - "sce00564" - "sce01110" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3107" - name: "PC phospholipase D (1-18:1, 2-16:1), cell envelope" @@ -73384,18 +67024,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - eccodes: "3.1.4.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.4" - kegg.pathway: - "sce00564" - "sce01110" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3108" - name: "PC phospholipase D (1-16:0, 2-18:1), cell envelope" @@ -73409,18 +67045,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - eccodes: "3.1.4.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.4" - kegg.pathway: - "sce00564" - "sce01110" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3109" - name: "PC phospholipase D (1-16:1, 2-18:1), cell envelope" @@ -73434,18 +67066,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - eccodes: "3.1.4.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.4" - kegg.pathway: - "sce00564" - "sce01110" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3110" - name: "PC phospholipase D (1-18:0, 2-18:1), cell envelope" @@ -73459,18 +67087,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - eccodes: "3.1.4.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.4" - kegg.pathway: - "sce00564" - "sce01110" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3111" - name: "PC phospholipase D (1-18:1, 2-18:1), cell envelope" @@ -73484,18 +67108,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR031C" - eccodes: "3.1.4.4" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.4" - kegg.pathway: - "sce00564" - "sce01110" - "sce04144" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3112" - name: "PI 3-P phosphatase (1-16:0, 2-16:1), cell envelope" @@ -73508,18 +67128,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3113" - name: "PI 3-P phosphatase (1-16:1, 2-16:1), cell envelope" @@ -73532,18 +67150,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3114" - name: "PI 3-P phosphatase (1-18:0, 2-16:1), cell envelope" @@ -73556,18 +67172,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3115" - name: "PI 3-P phosphatase (1-18:1, 2-16:1), cell envelope" @@ -73580,18 +67194,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3116" - name: "PI 3-P phosphatase (1-16:0, 2-18:1), cell envelope" @@ -73604,18 +67216,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3117" - name: "PI 3-P phosphatase (1-16:1, 2-18:1), cell envelope" @@ -73628,18 +67238,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3118" - name: "PI 3-P phosphatase (1-18:0, 2-18:1), cell envelope" @@ -73652,18 +67260,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3119" - name: "PI 3-P phosphatase (1-18:1, 2-18:1), cell envelope" @@ -73676,18 +67282,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3120" - name: "PI 3-P phosphatase (1-16:0, 2-16:1), cytoplasm" @@ -73700,19 +67304,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - kegg.pathway: - "sce00562" - "sce04070" - "sce04138" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3121" - name: "PI 3-P phosphatase (1-16:1, 2-16:1), cytoplasm" @@ -73725,20 +67328,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - bigg.reaction: "PIP3P_HDE_HDE_c" - kegg.pathway: - "sce00562" - "sce04070" - "sce04138" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3122" - name: "PI 3-P phosphatase (1-18:0, 2-16:1), cytoplasm" @@ -73751,19 +67353,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - kegg.pathway: - "sce00562" - "sce04070" - "sce04138" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3123" - name: "PI 3-P phosphatase (1-18:1, 2-16:1), cytoplasm" @@ -73776,19 +67377,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - kegg.pathway: - "sce00562" - "sce04070" - "sce04138" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3124" - name: "PI 3-P phosphatase (1-16:0, 2-18:1), cytoplasm" @@ -73801,19 +67401,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - kegg.pathway: - "sce00562" - "sce04070" - "sce04138" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3125" - name: "PI 3-P phosphatase (1-16:1, 2-18:1), cytoplasm" @@ -73826,19 +67425,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - kegg.pathway: - "sce00562" - "sce04070" - "sce04138" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3126" - name: "PI 3-P phosphatase (1-18:0, 2-18:1), cytoplasm" @@ -73851,19 +67449,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - kegg.pathway: - "sce00562" - "sce04070" - "sce04138" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3127" - name: "PI 3-P phosphatase (1-18:1, 2-18:1), cytoplasm" @@ -73876,19 +67473,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR110W or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36; 3.1.3.64" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" + - "3.1.3.64" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36; 3.1.3.64" - kegg.pathway: - "sce00562" - "sce04070" - "sce04138" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3128" - name: "PI 3-P phosphatase (1-16:0, 2-16:1), ER membrane" @@ -73902,17 +67498,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3129" - name: "PI 3-P phosphatase (1-16:1, 2-16:1), ER membrane" @@ -73926,17 +67518,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3130" - name: "PI 3-P phosphatase (1-18:0, 2-16:1), ER membrane" @@ -73950,17 +67538,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3131" - name: "PI 3-P phosphatase (1-18:1, 2-16:1), ER membrane" @@ -73974,17 +67558,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3132" - name: "PI 3-P phosphatase (1-16:0, 2-18:1), ER membrane" @@ -73998,17 +67578,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3133" - name: "PI 3-P phosphatase (1-16:1, 2-18:1), ER membrane" @@ -74022,17 +67598,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3134" - name: "PI 3-P phosphatase (1-18:0, 2-18:1), ER membrane" @@ -74046,17 +67618,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3135" - name: "PI 3-P phosphatase (1-18:1, 2-18:1), ER membrane" @@ -74070,17 +67638,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3136" - name: "PI 3-P phosphatase (1-16:0, 2-16:1), Golgi membrane" @@ -74094,17 +67658,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3137" - name: "PI 3-P phosphatase (1-16:1, 2-16:1), Golgi membrane" @@ -74118,17 +67678,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3138" - name: "PI 3-P phosphatase (1-18:0, 2-16:1), Golgi membrane" @@ -74142,17 +67698,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3139" - name: "PI 3-P phosphatase (1-18:1, 2-16:1), Golgi membrane" @@ -74166,17 +67718,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3140" - name: "PI 3-P phosphatase (1-16:0, 2-18:1), Golgi membrane" @@ -74190,17 +67738,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3141" - name: "PI 3-P phosphatase (1-16:1, 2-18:1), Golgi membrane" @@ -74214,17 +67758,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3142" - name: "PI 3-P phosphatase (1-18:0, 2-18:1), Golgi membrane" @@ -74238,17 +67778,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3143" - name: "PI 3-P phosphatase (1-18:1, 2-18:1), Golgi membrane" @@ -74262,17 +67798,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3144" - name: "PI 4-P phosphatase (1-16:0, 2-16:1), cell envelope" @@ -74285,18 +67817,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3145" - name: "PI 4-P phosphatase (1-16:1, 2-16:1), cell envelope" @@ -74309,18 +67839,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3146" - name: "PI 4-P phosphatase (1-18:0, 2-16:1), cell envelope" @@ -74333,18 +67861,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3147" - name: "PI 4-P phosphatase (1-18:1, 2-16:1), cell envelope" @@ -74357,18 +67883,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3148" - name: "PI 4-P phosphatase (1-16:0, 2-18:1), cell envelope" @@ -74381,18 +67905,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3149" - name: "PI 4-P phosphatase (1-16:1, 2-18:1), cell envelope" @@ -74405,18 +67927,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3150" - name: "PI 4-P phosphatase (1-18:0, 2-18:1), cell envelope" @@ -74429,18 +67949,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3151" - name: "PI 4-P phosphatase (1-18:1, 2-18:1), cell envelope" @@ -74453,18 +67971,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3152" - name: "PI 4-P phosphatase (1-16:0, 2-16:1), cytoplasm" @@ -74477,18 +67993,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3153" - name: "PI 4-P phosphatase (1-16:1, 2-16:1), cytoplasm" @@ -74501,18 +68015,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3154" - name: "PI 4-P phosphatase (1-18:0, 2-16:1), cytoplasm" @@ -74525,18 +68037,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3155" - name: "PI 4-P phosphatase (1-18:1, 2-16:1), cytoplasm" @@ -74549,18 +68059,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3156" - name: "PI 4-P phosphatase (1-16:0, 2-18:1), cytoplasm" @@ -74573,18 +68081,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3157" - name: "PI 4-P phosphatase (1-16:1, 2-18:1), cytoplasm" @@ -74597,18 +68103,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3158" - name: "PI 4-P phosphatase (1-18:0, 2-18:1), cytoplasm" @@ -74621,18 +68125,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3159" - name: "PI 4-P phosphatase (1-18:1, 2-18:1), cytoplasm" @@ -74645,18 +68147,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3160" - name: "PI 4-P phosphatase (1-16:0, 2-16:1), ER membrane" @@ -74670,17 +68170,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3161" - name: "PI 4-P phosphatase (1-16:1, 2-16:1), ER membrane" @@ -74694,17 +68190,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3162" - name: "PI 4-P phosphatase (1-18:0, 2-16:1), ER membrane" @@ -74718,17 +68210,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3163" - name: "PI 4-P phosphatase (1-18:1, 2-16:1), ER membrane" @@ -74742,17 +68230,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3164" - name: "PI 4-P phosphatase (1-16:0, 2-18:1), ER membrane" @@ -74766,17 +68250,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3165" - name: "PI 4-P phosphatase (1-16:1, 2-18:1), ER membrane" @@ -74790,17 +68270,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3166" - name: "PI 4-P phosphatase (1-18:0, 2-18:1), ER membrane" @@ -74814,17 +68290,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3167" - name: "PI 4-P phosphatase (1-18:1, 2-18:1), ER membrane" @@ -74838,17 +68310,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3168" - name: "PI 4-P phosphatase (1-16:0, 2-16:1), Golgi membrane" @@ -74862,17 +68330,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3169" - name: "PI 4-P phosphatase (1-16:1, 2-16:1), Golgi membrane" @@ -74886,17 +68350,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3170" - name: "PI 4-P phosphatase (1-18:0, 2-16:1), Golgi membrane" @@ -74910,17 +68370,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3171" - name: "PI 4-P phosphatase (1-18:1, 2-16:1), Golgi membrane" @@ -74934,17 +68390,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3172" - name: "PI 4-P phosphatase (1-16:0, 2-18:1), Golgi membrane" @@ -74958,17 +68410,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3173" - name: "PI 4-P phosphatase (1-16:1, 2-18:1), Golgi membrane" @@ -74982,17 +68430,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3174" - name: "PI 4-P phosphatase (1-18:0, 2-18:1), Golgi membrane" @@ -75006,17 +68450,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3175" - name: "PI 4-P phosphatase (1-18:1, 2-18:1), Golgi membrane" @@ -75030,17 +68470,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL212W" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3176" - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), cell envelope" @@ -75053,18 +68489,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3177" - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), cell envelope" @@ -75077,18 +68511,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3178" - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), cell envelope" @@ -75101,18 +68533,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3179" - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), cell envelope" @@ -75125,18 +68555,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3180" - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), cell envelope" @@ -75149,18 +68577,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3181" - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), cell envelope" @@ -75173,18 +68599,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3182" - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), cell envelope" @@ -75197,18 +68621,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3183" - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), cell envelope" @@ -75221,18 +68643,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3184" - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), cytoplasm" @@ -75245,18 +68665,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3185" - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), cytoplasm" @@ -75269,18 +68687,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3186" - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), cytoplasm" @@ -75293,18 +68709,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3187" - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), cytoplasm" @@ -75317,18 +68731,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3188" - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), cytoplasm" @@ -75341,18 +68753,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3189" - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), cytoplasm" @@ -75365,18 +68775,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3190" - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), cytoplasm" @@ -75389,18 +68797,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3191" - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), cytoplasm" @@ -75413,18 +68819,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3192" - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), cell envelope" @@ -75437,18 +68841,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3193" - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), cell envelope" @@ -75461,18 +68863,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3194" - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), cell envelope" @@ -75485,18 +68885,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3195" - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), cell envelope" @@ -75509,18 +68907,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3196" - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), cell envelope" @@ -75533,18 +68929,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3197" - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), cell envelope" @@ -75557,18 +68951,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3198" - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), cell envelope" @@ -75581,18 +68973,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3199" - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), cell envelope" @@ -75605,18 +68995,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3200" - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), cytoplasm" @@ -75629,18 +69017,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3201" - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), cytoplasm" @@ -75653,18 +69039,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3202" - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), cytoplasm" @@ -75677,18 +69061,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3203" - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), cytoplasm" @@ -75701,18 +69083,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3204" - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), cytoplasm" @@ -75725,18 +69105,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3205" - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), cytoplasm" @@ -75749,18 +69127,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3206" - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), cytoplasm" @@ -75773,18 +69149,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3207" - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), cytoplasm" @@ -75797,18 +69171,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL002C or YNL106C or YOR109W" - - eccodes: "3.1.3.-; 3.1.3.36" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.36" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3208" - name: "PI 4,5-P2 phosphatase (1-16:0, 2-16:1), ER membrane" @@ -75822,17 +69194,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - eccodes: "3.1.3.36" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3209" - name: "PI 4,5-P2 phosphatase (1-16:1, 2-16:1), ER membrane" @@ -75846,17 +69214,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - eccodes: "3.1.3.36" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3210" - name: "PI 4,5-P2 phosphatase (1-18:0, 2-16:1), ER membrane" @@ -75870,17 +69234,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - eccodes: "3.1.3.36" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3211" - name: "PI 4,5-P2 phosphatase (1-18:1, 2-16:1), ER membrane" @@ -75894,17 +69254,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - eccodes: "3.1.3.36" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3212" - name: "PI 4,5-P2 phosphatase (1-16:0, 2-18:1), ER membrane" @@ -75918,17 +69274,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - eccodes: "3.1.3.36" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3213" - name: "PI 4,5-P2 phosphatase (1-16:1, 2-18:1), ER membrane" @@ -75942,17 +69294,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - eccodes: "3.1.3.36" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3214" - name: "PI 4,5-P2 phosphatase (1-18:0, 2-18:1), ER membrane" @@ -75966,17 +69314,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - eccodes: "3.1.3.36" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3215" - name: "PI 4,5-P2 phosphatase (1-18:1, 2-18:1), ER membrane" @@ -75990,17 +69334,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL065C" - eccodes: "3.1.3.36" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.36" - kegg.pathway: - "sce00562" - "sce04070" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3216" - name: "PI 3,5-P2 phosphatase (1-16:0, 2-16:1), vacuolar membrane" @@ -76014,14 +69354,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR386W and YNL325C" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3217" - name: "PI 3,5-P2 phosphatase (1-16:1, 2-16:1), vacuolar membrane" @@ -76035,14 +69371,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR386W and YNL325C" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3218" - name: "PI 3,5-P2 phosphatase (1-18:0, 2-16:1), vacuolar membrane" @@ -76056,14 +69388,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR386W and YNL325C" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3219" - name: "PI 3,5-P2 phosphatase (1-18:1, 2-16:1), vacuolar membrane" @@ -76077,14 +69405,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR386W and YNL325C" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3220" - name: "PI 3,5-P2 phosphatase (1-16:0, 2-18:1), vacuolar membrane" @@ -76098,14 +69422,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR386W and YNL325C" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3221" - name: "PI 3,5-P2 phosphatase (1-16:1, 2-18:1), vacuolar membrane" @@ -76119,14 +69439,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR386W and YNL325C" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3222" - name: "PI 3,5-P2 phosphatase (1-18:0, 2-18:1), vacuolar membrane" @@ -76140,14 +69456,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR386W and YNL325C" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3223" - name: "PI 3,5-P2 phosphatase (1-18:1, 2-18:1), vacuolar membrane" @@ -76161,14 +69473,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR386W and YNL325C" - eccodes: "3.1.3.-" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3224" - name: "DGPP phosphatase (1-16:0, 2-16:1), vacuolar membrane" @@ -76181,19 +69489,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3225" - name: "DGPP phosphatase (1-16:1, 2-16:1), vacuolar membrane" @@ -76206,19 +69512,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3226" - name: "DGPP phosphatase (1-18:0, 2-16:1), vacuolar membrane" @@ -76231,19 +69535,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3227" - name: "DGPP phosphatase (1-18:1, 2-16:1), vacuolar membrane" @@ -76256,19 +69558,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3228" - name: "DGPP phosphatase (1-16:0, 2-18:1), vacuolar membrane" @@ -76281,19 +69581,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3229" - name: "DGPP phosphatase (1-16:1, 2-18:1), vacuolar membrane" @@ -76306,19 +69604,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3230" - name: "DGPP phosphatase (1-18:0, 2-18:1), vacuolar membrane" @@ -76331,19 +69627,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3231" - name: "DGPP phosphatase (1-18:1, 2-18:1), vacuolar membrane" @@ -76356,19 +69650,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3232" - name: "DGPP phosphatase (1-16:0, 2-16:1), Golgi membrane" @@ -76381,15 +69673,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3233" - name: "DGPP phosphatase (1-16:1, 2-16:1), Golgi membrane" @@ -76402,15 +69692,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3234" - name: "DGPP phosphatase (1-18:0, 2-16:1), Golgi membrane" @@ -76423,15 +69711,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3235" - name: "DGPP phosphatase (1-18:1, 2-16:1), Golgi membrane" @@ -76444,15 +69730,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3236" - name: "DGPP phosphatase (1-16:0, 2-18:1), Golgi membrane" @@ -76465,15 +69749,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3237" - name: "DGPP phosphatase (1-16:1, 2-18:1), Golgi membrane" @@ -76486,15 +69768,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3238" - name: "DGPP phosphatase (1-18:0, 2-18:1), Golgi membrane" @@ -76507,15 +69787,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3239" - name: "DGPP phosphatase (1-18:1, 2-18:1), Golgi membrane" @@ -76528,15 +69806,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3240" - name: "lysoPA phosphatase (16:0), cytoplasm" @@ -76549,15 +69825,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER037W" - - eccodes: "" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3241" - name: "lysoPA phosphatase (16:1), cytoplasm" @@ -76570,15 +69841,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER037W" - - eccodes: "" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3242" - name: "lysoPA phosphatase (18:0), cytoplasm" @@ -76591,15 +69857,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER037W" - - eccodes: "" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3243" - name: "lysoPA phosphatase (18:1), cytoplasm" @@ -76612,15 +69873,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER037W" - - eccodes: "" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3244" - name: "lysoPA phosphatase (16:0), vacuolar membrane" @@ -76633,19 +69889,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3245" - name: "lysoPA phosphatase (16:1), vacuolar membrane" @@ -76658,19 +69912,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3246" - name: "lysoPA phosphatase (18:0), vacuolar membrane" @@ -76683,19 +69935,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3247" - name: "lysoPA phosphatase (18:1), vacuolar membrane" @@ -76708,19 +69958,17 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR284C" - - eccodes: "3.1.3.4; 3.1.3.81" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.4" + - "3.1.3.81" - annotation: !!omap - - ec-code: "3.1.3.4; 3.1.3.81" - kegg.pathway: - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3248" - name: "lysoPA phosphatase (16:0), Golgi membrane" @@ -76733,15 +69981,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3249" - name: "lysoPA phosphatase (16:1), Golgi membrane" @@ -76754,15 +70000,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3250" - name: "lysoPA phosphatase (18:0), Golgi membrane" @@ -76775,15 +70019,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3251" - name: "lysoPA phosphatase (18:1), Golgi membrane" @@ -76796,15 +70038,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR503C" - - eccodes: "3.1.3.-; 3.1.3.4" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.4" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.4" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3252" - name: "ergosteryl ester hydrolase (16:1), lipid particle" @@ -76818,17 +70058,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL140W or YLL012W" - eccodes: "3.1.1.13" - - references: "16835446; 14640980" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.13" - kegg.pathway: "sce00100" - - pmid: + - pubmed: - "16835446" - "14640980" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3253" - name: "ergosteryl ester hydrolase (18:1), lipid particle" @@ -76842,18 +70078,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL140W or YLL012W" - eccodes: "3.1.1.13" - - references: "16835446; 14640980" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.13" - kegg.pathway: "sce00100" - metanetx.reaction: "MNXR119162" - - pmid: + - pubmed: - "16835446" - "14640980" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3254" - name: "episteryl ester hydrolase (16:1), lipid particle" @@ -76867,14 +70099,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL012W" - eccodes: "3.1.1.13" - - references: "16835446" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" + - pubmed: "16835446" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3255" - name: "episteryl ester hydrolase (18:1), lipid particle" @@ -76888,14 +70116,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL012W" - eccodes: "3.1.1.13" - - references: "16835446" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" + - pubmed: "16835446" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3256" - name: "fecosteryl ester hydrolase (16:1), lipid particle" @@ -76909,14 +70133,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL012W" - eccodes: "3.1.1.13" - - references: "16835446" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" + - pubmed: "16835446" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3257" - name: "fecosteryl ester hydrolase (18:1), lipid particle" @@ -76930,14 +70150,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL012W" - eccodes: "3.1.1.13" - - references: "16835446" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" + - pubmed: "16835446" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3258" - name: "lanosteryl ester hydrolase (16:1), lipid particle" @@ -76951,14 +70167,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL012W" - eccodes: "3.1.1.13" - - references: "16835446" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" + - pubmed: "16835446" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3259" - name: "lanosteryl ester hydrolase (18:1), lipid particle" @@ -76972,15 +70184,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL012W" - eccodes: "3.1.1.13" - - references: "16835446" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.13" - metanetx.reaction: "MNXR119160" - - pmid: "16835446" + - pubmed: "16835446" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3260" - name: "zymosteryl ester hydrolase (16:1), lipid particle" @@ -76994,14 +70202,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL012W" - eccodes: "3.1.1.13" - - references: "16835446" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" + - pubmed: "16835446" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3261" - name: "zymosteryl ester hydrolase (18:1), lipid particle" @@ -77015,14 +70219,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL012W" - eccodes: "3.1.1.13" - - references: "16835446" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "16835446" + - pubmed: "16835446" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3262" - name: "zymosteryl ester hydrolase (16:1), cell envelope" @@ -77036,14 +70236,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR020C" - eccodes: "3.1.1.13" - - references: "15632184" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "15632184" + - pubmed: "15632184" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3263" - name: "zymosteryl ester hydrolase (18:1), cell envelope" @@ -77057,14 +70253,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR020C" - eccodes: "3.1.1.13" - - references: "15632184" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.13" - - pmid: "15632184" + - pubmed: "15632184" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3264" - name: "TAG lipase (1-16:0, 2-16:1, 3-16:0), lipid particle" @@ -77077,20 +70269,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C or YCR068W" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3265" - name: "TAG lipase (1-16:0, 2-16:1, 3-16:1), lipid particle" @@ -77103,20 +70293,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3266" - name: "TAG lipase (1-16:0, 2-16:1, 3-18:0), lipid particle" @@ -77129,20 +70317,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3267" - name: "TAG lipase (1-16:0, 2-16:1, 3-18:1), lipid particle" @@ -77155,20 +70341,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3268" - name: "TAG lipase (1-16:1, 2-16:1, 3-16:0), lipid particle" @@ -77181,20 +70365,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3269" - name: "TAG lipase (1-16:1, 2-16:1, 3-16:1), lipid particle" @@ -77207,20 +70389,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3270" - name: "TAG lipase (1-16:1, 2-16:1, 3-18:0), lipid particle" @@ -77233,20 +70413,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3271" - name: "TAG lipase (1-16:1, 2-16:1, 3-18:1), lipid particle" @@ -77259,20 +70437,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3272" - name: "TAG lipase (1-18:0, 2-16:1, 3-16:0), lipid particle" @@ -77285,20 +70461,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3273" - name: "TAG lipase (1-18:0, 2-16:1, 3-16:1), lipid particle" @@ -77311,20 +70485,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3274" - name: "TAG lipase (1-18:0, 2-16:1, 3-18:0), lipid particle" @@ -77337,20 +70509,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3275" - name: "TAG lipase (1-18:0, 2-16:1, 3-18:1), lipid particle" @@ -77363,20 +70533,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3276" - name: "TAG lipase (1-18:1, 2-16:1, 3-16:0), lipid particle" @@ -77389,20 +70557,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3277" - name: "TAG lipase (1-18:1, 2-16:1, 3-16:1), lipid particle" @@ -77415,20 +70581,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3278" - name: "TAG lipase (1-18:1, 2-16:1, 3-18:0), lipid particle" @@ -77441,20 +70605,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3279" - name: "TAG lipase (1-18:1, 2-16:1, 3-18:1), lipid particle" @@ -77467,20 +70629,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3280" - name: "TAG lipase (1-16:0, 2-18:1, 3-16:0), lipid particle" @@ -77493,20 +70653,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3281" - name: "TAG lipase (1-16:0, 2-18:1, 3-16:1), lipid particle" @@ -77519,20 +70677,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3282" - name: "TAG lipase (1-16:0, 2-18:1, 3-18:0), lipid particle" @@ -77545,20 +70701,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3283" - name: "TAG lipase (1-16:0, 2-18:1, 3-18:1), lipid particle" @@ -77571,20 +70725,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3284" - name: "TAG lipase (1-16:1, 2-18:1, 3-16:0), lipid particle" @@ -77597,20 +70749,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3285" - name: "TAG lipase (1-16:1, 2-18:1, 3-16:1), lipid particle" @@ -77623,20 +70773,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3286" - name: "TAG lipase (1-16:1, 2-18:1, 3-18:0), lipid particle" @@ -77649,20 +70797,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3287" - name: "TAG lipase (1-16:1, 2-18:1, 3-18:1), lipid particle" @@ -77675,20 +70821,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3288" - name: "TAG lipase (1-18:0, 2-18:1, 3-16:0), lipid particle" @@ -77701,20 +70845,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3289" - name: "TAG lipase (1-18:0, 2-18:1, 3-16:1), lipid particle" @@ -77727,20 +70869,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3290" - name: "TAG lipase (1-18:0, 2-18:1, 3-18:0), lipid particle" @@ -77753,20 +70893,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3291" - name: "TAG lipase (1-18:0, 2-18:1, 3-18:1), lipid particle" @@ -77779,20 +70917,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3292" - name: "TAG lipase (1-18:1, 2-18:1, 3-16:0), lipid particle" @@ -77805,20 +70941,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3293" - name: "TAG lipase (1-18:1, 2-18:1, 3-16:1), lipid particle" @@ -77831,20 +70965,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3294" - name: "TAG lipase (1-18:1, 2-18:1, 3-18:0), lipid particle" @@ -77857,20 +70989,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3295" - name: "TAG lipase (1-18:1, 2-18:1, 3-18:1), lipid particle" @@ -77883,20 +71013,18 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR204C or YKR089C or YMR313C or YOR081C" - - eccodes: "3.1.1.-; 3.1.1.3" - - references: "22345606" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.3" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3296" - name: "DAG lipase (1-16:0, 2-16:1), lipid particle" @@ -77910,15 +71038,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3297" - name: "DAG lipase (1-16:1, 2-16:1), lipid particle" @@ -77932,15 +71056,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR068W or YMR313C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3298" - name: "DAG lipase (1-18:0, 2-16:1), lipid particle" @@ -77954,15 +71074,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3299" - name: "DAG lipase (1-18:1, 2-16:1), lipid particle" @@ -77976,15 +71092,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3300" - name: "DAG lipase (1-16:0, 2-18:1), lipid particle" @@ -77998,15 +71110,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3301" - name: "DAG lipase (1-16:1, 2-18:1), lipid particle" @@ -78020,15 +71128,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3302" - name: "DAG lipase (1-18:0, 2-18:1), lipid particle" @@ -78042,15 +71146,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3303" - name: "DAG lipase (1-18:1, 2-18:1), lipid particle" @@ -78064,15 +71164,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3304" - name: "DAG lipase (1-16:0, 2-18:1), mitochondrion" @@ -78086,15 +71182,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR058C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3305" - name: "DAG lipase (1-16:1, 2-18:1), mitochondrion" @@ -78108,15 +71200,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR058C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3306" - name: "DAG lipase (1-18:0, 2-18:1), mitochondrion" @@ -78130,15 +71218,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR058C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3307" - name: "DAG lipase (1-18:1, 2-18:1), mitochondrion" @@ -78152,15 +71236,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR058C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3308" - name: "MAG lipase (1-16:0), lipid particle" @@ -78174,15 +71254,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL094W" - eccodes: "3.1.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.23" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3309" - name: "MAG lipase (1-16:1), lipid particle" @@ -78196,15 +71272,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL094W" - eccodes: "3.1.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.23" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3310" - name: "MAG lipase (1-18:0), lipid particle" @@ -78218,15 +71290,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL094W" - eccodes: "3.1.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.23" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3311" - name: "MAG lipase (1-18:1), lipid particle" @@ -78240,15 +71308,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL094W" - eccodes: "3.1.1.23" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.23" - kegg.pathway: "sce00561" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3312" - name: "lysoPE (1-16:0) oleoyl-CoA acyltransferase, lipid particle" @@ -78261,15 +71325,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - eccodes: "3.1.1.3" - - references: "20016004" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "20016004" + - pubmed: "20016004" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3313" - name: "lysoPE (1-16:1) oleoyl-CoA acyltransferase, lipid particle" @@ -78282,15 +71342,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - eccodes: "3.1.1.3" - - references: "20016004" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "20016004" + - pubmed: "20016004" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3314" - name: "lysoPE (1-18:0) oleoyl-CoA acyltransferase, lipid particle" @@ -78303,15 +71359,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - eccodes: "3.1.1.3" - - references: "20016004" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "20016004" + - pubmed: "20016004" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3315" - name: "lysoPE (1-18:1) oleoyl-CoA acyltransferase, lipid particle" @@ -78324,15 +71376,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR313C" - eccodes: "3.1.1.3" - - references: "20016004" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: "sce00561" - - pmid: "20016004" + - pubmed: "20016004" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3316" - name: "PC phospholipase A2 (1-16:0, 2-16:1), lipid particle" @@ -78346,19 +71394,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3317" - name: "PC phospholipase A2 (1-16:1, 2-16:1), lipid particle" @@ -78372,19 +71416,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3318" - name: "PC phospholipase A2 (1-18:0, 2-16:1), lipid particle" @@ -78398,19 +71438,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3319" - name: "PC phospholipase A2 (1-18:1, 2-16:1), lipid particle" @@ -78424,19 +71460,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3320" - name: "PC phospholipase A2 (1-16:0, 2-18:1), lipid particle" @@ -78450,19 +71482,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3321" - name: "PC phospholipase A2 (1-16:1, 2-18:1), lipid particle" @@ -78476,19 +71504,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3322" - name: "PC phospholipase A2 (1-18:0, 2-18:1), lipid particle" @@ -78502,19 +71526,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3323" - name: "PC phospholipase A2 (1-18:1, 2-18:1), lipid particle" @@ -78528,19 +71548,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3324" - name: "PE phospholipase A2 (1-16:0, 2-16:1), lipid particle" @@ -78554,19 +71570,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3325" - name: "PE phospholipase A2 (1-16:1, 2-16:1), lipid particle" @@ -78580,19 +71592,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3326" - name: "PE phospholipase A2 (1-18:0, 2-16:1), lipid particle" @@ -78606,19 +71614,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3327" - name: "PE phospholipase A2 (1-18:1, 2-16:1), lipid particle" @@ -78632,19 +71636,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3328" - name: "PE phospholipase A2 (1-16:0, 2-18:1), lipid particle" @@ -78658,19 +71658,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3329" - name: "PE phospholipase A2 (1-16:1, 2-18:1), lipid particle" @@ -78684,19 +71680,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3330" - name: "PE phospholipase A2 (1-18:0, 2-18:1), lipid particle" @@ -78710,19 +71702,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3331" - name: "PE phospholipase A2 (1-18:1, 2-18:1), lipid particle" @@ -78736,19 +71724,15 @@ - upper_bound: 1000 - gene_reaction_rule: "YKR089C" - eccodes: "3.1.1.3" - - references: "22345606" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.3" - kegg.pathway: - "sce00100" - "sce00561" - "sce00564" - "sce01110" - - pmid: "22345606" + - pubmed: "22345606" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_4039" - name: "succinyl-CoA:acetate CoA transferase" @@ -78761,17 +71745,13 @@ - upper_bound: 1000 - gene_reaction_rule: "YBL015W" - eccodes: "3.1.2.1" - - references: "19298859" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.1" - kegg.pathway: "sce00620" - kegg.reaction: "R10343" - metanetx.reaction: "MNXR104636" - - pmid: "19298859" + - pubmed: "19298859" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_4042" - name: "raffinose invertase" @@ -78783,17 +71763,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "4967422" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R02410" - metanetx.reaction: "MNXR103420" - - pmid: "4967422" + - pubmed: "4967422" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_4045" - name: "uridine hydrolase" @@ -78806,20 +71781,16 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR400W" - eccodes: "3.2.2.3" - - references: "23670538" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.2.3" - bigg.reaction: "URIH" - kegg.pathway: - "sce00240" - "sce00760" - kegg.reaction: "R01080" - metanetx.reaction: "MNXR105161" - - pmid: "23670538" + - pubmed: "23670538" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_0964" - name: "reduced glutathione via ABC system" @@ -78834,16 +71805,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR135C" - - eccodes: "" - - references: "9729482" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100447" - - pmid: "9729482" + - pubmed: "9729482" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1028" - name: "taurcholate via ABC system" @@ -78858,16 +71824,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLL048C" - - eccodes: "" - - references: "9182565" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104744" - - pmid: "9182565" + - pubmed: "9182565" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1085" - name: "V-ATPase, Golgi" @@ -78881,21 +71842,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR127C and YDL185W and YEL027W and YEL051W and YGR020C and YHR026W and YHR039C-A and YKL080W and YLR447C and YMR054W and YOR332W and YPL234C and YPR036W" - - eccodes: "3.1.-.-; 3.6.3.14" - - references: "11278748; 11836511" - - subsystem: - - "" + - eccodes: + - "3.1.-.-" + - "3.6.3.14" - annotation: !!omap - - ec-code: "3.1.-.-; 3.6.3.14" - kegg.pathway: - "sce00190" - "sce04145" - metanetx.reaction: "MNXR96133" - - pmid: + - pubmed: - "11278748" - "11836511" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1086" - name: "V-ATPase, vacuole" @@ -78909,21 +71868,19 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR127C and YDL185W and YEL027W and YEL051W and YGR020C and YHR026W and YHR039C-A and YKL080W and YLR447C and YOR270C and YOR332W and YPL234C and YPR036W" - - eccodes: "3.1.-.-; 3.6.3.14" - - references: "11278748; 11836511" - - subsystem: - - "" + - eccodes: + - "3.1.-.-" + - "3.6.3.14" - annotation: !!omap - - ec-code: "3.1.-.-; 3.6.3.14" - kegg.pathway: - "sce00190" - "sce04145" - metanetx.reaction: "MNXR96133" - - pmid: + - pubmed: - "11278748" - "11836511" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1096" - name: "(R)-mevalonate transport" @@ -78933,17 +71890,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "15215118" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MEV_Rt" - metanetx.reaction: "MNXR105406" - - pmid: "15215118" + - pubmed: "15215118" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1097" - name: "(R,R)-butanediol transport" @@ -78953,17 +71905,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "10938079" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "BTDt_RR" - metanetx.reaction: "MNXR136615" - - pmid: "10938079" + - pubmed: "10938079" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1098" - name: "2-methylbutyl transport" @@ -78973,17 +71920,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "10653746" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2MBACt" - metanetx.reaction: "MNXR94808" - - pmid: "10653746" + - pubmed: "10653746" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1099" - name: "2-oxoadipate and 2-oxoglutarate transport" @@ -78995,19 +71937,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOR222W or YPL134C" - - eccodes: "" - - references: "16844075; 11013234" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2OXOADPTm" - metanetx.reaction: "MNXR94819" - - pmid: + - pubmed: - "16844075" - "11013234" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1100" - name: "3-hexaprenyl-4,5-dihydroxybenzoate transport" @@ -79017,17 +71954,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "11583838" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3DH5HPBtm" - metanetx.reaction: "MNXR94863" - - pmid: "11583838" + - pubmed: "11583838" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1101" - name: "4-aminobutyrate transport" @@ -79039,16 +71971,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL210W or YOR348C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ABUTt2r" - metanetx.reaction: "MNXR94994" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1102" - name: "5-aminolevulinate transport" @@ -79060,16 +71987,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL210W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "5AOPt2" - metanetx.reaction: "MNXR95061" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1103" - name: "5-formyltetrahydrofolic acid transport" @@ -79079,16 +72001,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "8573145" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95074" - - pmid: "8573145" + - pubmed: "8573145" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1104" - name: "8-Amino-7-oxononanoate transport" @@ -79100,17 +72017,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR056C" - - eccodes: "" - - references: "10333520" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "8AONNt2" - metanetx.reaction: "MNXR95113" - - pmid: "10333520" + - pubmed: "10333520" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1106" - name: "acetate transport" @@ -79120,17 +72032,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR010C" - - eccodes: "" - - references: "14968426" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ACtr" - metanetx.reaction: "MNXR95431" - - pmid: "14968426" + - pubmed: "14968426" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1107" - name: "acetic ester transport" @@ -79140,15 +72047,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "10653746" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "10653746" + - pubmed: "10653746" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1108" - name: "adenine transport" @@ -79160,16 +72062,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER056C or YER060W or YER060W-A or YGL186C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ADEt2" - metanetx.reaction: "MNXR95446" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1109" - name: "adenosine transport" @@ -79181,17 +72078,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL022C" - - eccodes: "" - - references: "10827169" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ADNt2" - metanetx.reaction: "MNXR95461" - - pmid: "10827169" + - pubmed: "10827169" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1110" - name: "ADP/ATP transporter" @@ -79203,21 +72095,16 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBL030C or YBR085W or YMR056C" - - eccodes: "" - - references: "22672422; 7003152; 14998997" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ATPtm" - kegg.reaction: "R00124" - metanetx.reaction: "MNXR96123" - - pmid: + - pubmed: - "22672422" - "7003152" - "14998997" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1111" - name: "ADP/ATP transporter" @@ -79231,16 +72118,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR128C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ATPtp_H" - metanetx.reaction: "MNXR96139" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1112" - name: "AKG transporter, mitochonrial" @@ -79252,17 +72134,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR241W" - - eccodes: "" - - references: "20371607" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AKGCITtm" - metanetx.reaction: "MNXR95654" - - pmid: "20371607" + - pubmed: "20371607" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1113" - name: "allantoate uniport" @@ -79272,16 +72149,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR152W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ALLTTti" - metanetx.reaction: "MNXR95773" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1114" - name: "allantoin uniport" @@ -79291,16 +72163,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIR028W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ALLTNti" - metanetx.reaction: "MNXR95771" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1115" - name: "ammonia transport" @@ -79310,17 +72177,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR384C or YGR121C or YNL142W or YPR138C" - - eccodes: "" - - references: "12966084" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NH4t" - metanetx.reaction: "MNXR101950" - - pmid: "12966084" + - pubmed: "12966084" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1116" - name: "AMP/ATP transporter" @@ -79334,16 +72196,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR128C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ATP2tp_H" - metanetx.reaction: "MNXR96125" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1118" - name: "aspartate-glutamate transporter" @@ -79355,17 +72212,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR021C" - - eccodes: "" - - references: "14622413" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ASPGLU2m" - metanetx.reaction: "MNXR96083" - - pmid: "14622413" + - pubmed: "14622413" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1119" - name: "biotin uptake" @@ -79377,16 +72229,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR065C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "BTNt2i" - metanetx.reaction: "MNXR96334" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1120" - name: "carnithine-acetylcarnithine carrier" @@ -79398,16 +72245,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR100C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CRNCARtm" - metanetx.reaction: "MNXR96898" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1121" - name: "ceramide-2' (sphinganine:n-C24:0OH) transport" @@ -79417,15 +72259,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "12484746" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "12484746" + - pubmed: "12484746" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1122" - name: "ceramide-2' (sphinganine:n-C26:0OH) transport" @@ -79435,15 +72272,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "12484746" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "12484746" + - pubmed: "12484746" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1123" - name: "ceramide-3 (Phytosphingosine:n-C24:0OH) transport" @@ -79453,15 +72285,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "12484746" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "12484746" + - pubmed: "12484746" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1124" - name: "ceramide-3 (Phytosphingosine:n-C26:0OH) transport" @@ -79471,15 +72298,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "12484746" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "12484746" + - pubmed: "12484746" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1125" - name: "choline transport" @@ -79491,16 +72313,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL077C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CHLt2" - metanetx.reaction: "MNXR96692" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1126" - name: "citrate transport" @@ -79512,16 +72329,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR291C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CITtam" - metanetx.reaction: "MNXR96753" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1127" - name: "citrate transport" @@ -79533,16 +72345,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR291C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CITtbm" - metanetx.reaction: "MNXR96754" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1128" - name: "citrate transport" @@ -79554,16 +72361,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR291C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CITtcm" - metanetx.reaction: "MNXR96755" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1129" - name: "coenzyme A transport" @@ -79573,17 +72375,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YHR002W" - - eccodes: "" - - references: "11158296" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "COAtim" - metanetx.reaction: "MNXR96815" - - pmid: "11158296" + - pubmed: "11158296" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1130" - name: "CTP transport" @@ -79597,15 +72394,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR192W" - - eccodes: "" - - references: "16844075" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "16844075" + - pubmed: "16844075" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1131" - name: "CTP/CMP antiport" @@ -79619,17 +72411,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR192W" - - eccodes: "" - - references: "16194150" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CTPtm" - metanetx.reaction: "MNXR96947" - - pmid: "16194150" + - pubmed: "16194150" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1132" - name: "cytidine transport" @@ -79641,17 +72428,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YAL022C" - - eccodes: "" - - references: "10827170" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CYTDt2" - metanetx.reaction: "MNXR97044" - - pmid: "10827170" + - pubmed: "10827170" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1133" - name: "cytosine transport" @@ -79663,16 +72445,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER056C or YER060W or YER060W-A or YGL186C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CSNt2" - metanetx.reaction: "MNXR96929" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1134" - name: "D-fructose transport" @@ -79684,17 +72461,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FRUt2" - kegg.pathway: "sce04113" - metanetx.reaction: "MNXR99664" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1135" - name: "D-galactose transport" @@ -79706,17 +72478,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR536W or YFL011W or YJL219W or YLR081W or YNL318C or YOL156W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GALt2" - kegg.pathway: "sce04113" - metanetx.reaction: "MNXR100026" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1136" - name: "D-lactate transport" @@ -79728,16 +72495,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL217W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "D_LACt2" - metanetx.reaction: "MNXR97838" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1137" - name: "D-lactate transport" @@ -79749,17 +72511,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "14871487" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "D_LACtm" - metanetx.reaction: "MNXR97838" - - pmid: "14871487" + - pubmed: "14871487" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1138" - name: "D-lactate/pyruvate antiport" @@ -79771,17 +72528,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "14871487" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "D_LACt2m" - metanetx.reaction: "MNXR97839" - - pmid: "14871487" + - pubmed: "14871487" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1139" - name: "D-mannose transport" @@ -79793,17 +72545,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MANt2" - kegg.pathway: "sce04113" - metanetx.reaction: "MNXR101403" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1146" - name: "episterol transport" @@ -79813,17 +72560,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL013C or YOR011W" - - eccodes: "" - - references: "12077145" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EPISTt" - metanetx.reaction: "MNXR97944" - - pmid: "12077145" + - pubmed: "12077145" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1147" - name: "ergosterol transport" @@ -79833,17 +72575,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL013C or YOR011W" - - eccodes: "" - - references: "12077145" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ERGSTt" - metanetx.reaction: "MNXR97950" - - pmid: "12077145" + - pubmed: "12077145" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1148" - name: "ergosterol transport" @@ -79853,16 +72590,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL013C or YOR011W" - - eccodes: "" - - references: "17434796" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR97950" - - pmid: "17434796" + - pubmed: "17434796" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1149" - name: "ethanolamine transport" @@ -79872,17 +72604,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL077C" - - eccodes: "" - - references: "15201274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ETHAt" - metanetx.reaction: "MNXR97974" - - pmid: "15201274" + - pubmed: "15201274" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1151" - name: "fadH2 transport" @@ -79892,17 +72619,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL134W" - - eccodes: "" - - references: "8631763" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FADH2tm" - metanetx.reaction: "MNXR99212" - - pmid: "8631763" + - pubmed: "8631763" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1161" - name: "fecosterol transport" @@ -79912,17 +72634,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL013C or YOR011W" - - eccodes: "" - - references: "12077145" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FECOSTt" - metanetx.reaction: "MNXR99529" - - pmid: "12077145" + - pubmed: "12077145" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1162" - name: "fecosterol transport" @@ -79932,16 +72649,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL013C or YOR011W" - - eccodes: "" - - references: "17434796" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99529" - - pmid: "17434796" + - pubmed: "17434796" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1164" - name: "folic acid transport" @@ -79951,17 +72663,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "15215118" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "r0963" - metanetx.reaction: "MNXR105408" - - pmid: "15215118" + - pubmed: "15215118" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1165" - name: "GDP-mannose antiport" @@ -79973,17 +72680,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGL225W" - - eccodes: "" - - references: "9395539" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GDPMANNtg" - metanetx.reaction: "MNXR100090" - - pmid: "9395539" + - pubmed: "9395539" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1166" - name: "glucose transport" @@ -79993,18 +72695,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL245C or YDL247W or YDR342C or YDR343C or YDR345C or YDR536W or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YJR160C or YLR081W or YMR011W or YNR072W or YOL156W or YDR387C" - - eccodes: "" - - references: "10618490" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLCt1" - kegg.pathway: "sce04113" - metanetx.reaction: "MNXR100188" - - pmid: "10618490" + - pubmed: "10618490" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1167" - name: "glutathione transport" @@ -80014,17 +72711,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL212C" - - eccodes: "" - - references: "10788431" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GTHRDt2" - metanetx.reaction: "MNXR100449" - - pmid: "10788431" + - pubmed: "10788431" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1168" - name: "glutathione transport" @@ -80034,16 +72726,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR135C or YLL015W" - - eccodes: "" - - references: "10790694" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100449" - - pmid: "10790694" + - pubmed: "10790694" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1169" - name: "glycero-3-phospho-1-inositol transport" @@ -80053,17 +72740,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR098C" - - eccodes: "" - - references: "15145930" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "G3PIt" - metanetx.reaction: "MNXR99888" - - pmid: "15145930" + - pubmed: "15145930" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1170" - name: "glycero-3-phosphocholine transport" @@ -80073,17 +72755,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR098C" - - eccodes: "" - - references: "15145930" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "G3PCt" - metanetx.reaction: "MNXR99874" - - pmid: "15145930" + - pubmed: "15145930" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1171" - name: "glycerol transport" @@ -80095,19 +72772,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR536W or YGL084C or YPL189W" - - eccodes: "" - - references: "15703210; 21623372" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLYCt2" - metanetx.reaction: "MNXR100344" - - pmid: + - pubmed: - "15703210" - "21623372" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1172" - name: "glycerol transport via channel" @@ -80117,16 +72789,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFL054C or YLL043W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLYCt" - metanetx.reaction: "MNXR100343" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1173" - name: "glycine transport" @@ -80138,17 +72805,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCL025C or YKR039W or YOL020W or YOR348C or YPL265W" - - eccodes: "" - - references: "9573211" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLYt2r" - metanetx.reaction: "MNXR100368" - - pmid: "9573211" + - pubmed: "9573211" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1174" - name: "glycogen vacuolar 'transport' via autophagy" @@ -80158,17 +72820,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "11486014" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLCNtv" - metanetx.reaction: "MNXR100211" - - pmid: "11486014" + - pubmed: "11486014" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1175" - name: "GTP/GDP translocase" @@ -80182,17 +72839,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL198C" - - eccodes: "" - - references: "14998997" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GTPt2m" - metanetx.reaction: "MNXR100461" - - pmid: "14998997" + - pubmed: "14998997" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1176" - name: "guanine transport" @@ -80204,16 +72856,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER056C or YER060W or YER060W-A or YGL186C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GUAt2r" - metanetx.reaction: "MNXR100466" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1177" - name: "inositol transport" @@ -80225,16 +72872,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR497C or YOL103W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "INSTt2" - metanetx.reaction: "MNXR100841" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1178" - name: "iron (II) transport" @@ -80244,17 +72886,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YMR319C or YMR058W" - - eccodes: "" - - references: "9115232" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FE2t" - metanetx.reaction: "MNXR99505" - - pmid: "9115232" + - pubmed: "9115232" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1179" - name: "iron (II) transport" @@ -80264,17 +72901,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL133W or YKR052C" - - eccodes: "" - - references: "9660806" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FE2utm" - metanetx.reaction: "MNXR99505" - - pmid: "9660806" + - pubmed: "9660806" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1180" - name: "isoamyl acetate transport" @@ -80284,17 +72916,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "10653746" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "IAMACt" - metanetx.reaction: "MNXR100774" - - pmid: "10653746" + - pubmed: "10653746" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1181" - name: "isobutyl acetate transport" @@ -80304,17 +72931,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "10653746" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "IBUTACt" - metanetx.reaction: "MNXR100779" - - pmid: "10653746" + - pubmed: "10653746" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1182" - name: "isopentenyl diphosphate transport" @@ -80324,17 +72946,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "11583838" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "IPDPtm" - metanetx.reaction: "MNXR100876" - - pmid: "11583838" + - pubmed: "11583838" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1183" - name: "L-alanine transport" @@ -80346,19 +72963,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR068C or YCL025C or YDR046C or YKR039W or YOL020W or YOR348C or YPL265W" - - eccodes: "" - - references: "7495881; 9489675" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ALAt2r" - metanetx.reaction: "MNXR95704" - - pmid: + - pubmed: - "7495881" - "9489675" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1184" - name: "L-arganine transport" @@ -80370,16 +72982,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YEL063C or YKR039W or YNL270C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ARGt2r" - metanetx.reaction: "MNXR95953" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1185" - name: "L-arganine transport" @@ -80391,17 +72998,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL092W or YBR293W" - - eccodes: "" - - references: "15572352" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ARGt6" - metanetx.reaction: "MNXR95954" - - pmid: "15572352" + - pubmed: "15572352" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1186" - name: "L-asparagine transport" @@ -80413,17 +73015,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCL025C or YDR508C or YKR039W or YPL265W" - - eccodes: "" - - references: "8660458" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ASNt2r" - metanetx.reaction: "MNXR96066" - - pmid: "8660458" + - pubmed: "8660458" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1187" - name: "L-asparagine transport" @@ -80435,17 +73032,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR001W" - - eccodes: "" - - references: "11274162" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ASNt6" - metanetx.reaction: "MNXR96067" - - pmid: "11274162" + - pubmed: "11274162" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1188" - name: "L-aspartate transport" @@ -80457,18 +73049,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL146W or YNL101W" - - eccodes: "" - - references: "11274162" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ASNt7" - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR96066" - - pmid: "11274162" + - pubmed: "11274162" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1189" - name: "L-aspartate transport" @@ -80480,17 +73067,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER119C" - - eccodes: "" - - references: "11274162" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ASPt7" - metanetx.reaction: "MNXR96106" - - pmid: "11274162" + - pubmed: "11274162" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1190" - name: "L-aspartate transport" @@ -80502,16 +73084,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YFL055W or YKR039W or YPL265W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ASPt2r" - metanetx.reaction: "MNXR96106" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1191" - name: "L-carnitine transport" @@ -80521,16 +73098,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR132C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CRNt" - metanetx.reaction: "MNXR96906" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1192" - name: "L-cystine transport" @@ -80542,17 +73114,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YDR508C or YKR039W or YOL020W" - - eccodes: "" - - references: "9573211" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CYSt2r" - metanetx.reaction: "MNXR97027" - - pmid: "9573211" + - pubmed: "9573211" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1193" - name: "L-cystine transport" @@ -80564,17 +73131,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR075C" - - eccodes: "" - - references: "11689434" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "LCYSTintv" - metanetx.reaction: "MNXR101034" - - pmid: "11689434" + - pubmed: "11689434" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1194" - name: "L-glutamate transport" @@ -80584,17 +73146,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPR021C" - - eccodes: "" - - references: "14622413" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLUt7m" - metanetx.reaction: "MNXR100301" - - pmid: "14622413" + - pubmed: "14622413" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1195" - name: "L-glutamate transport" @@ -80606,17 +73163,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER119C" - - eccodes: "" - - references: "11274162" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLUt7" - metanetx.reaction: "MNXR100300" - - pmid: "11274162" + - pubmed: "11274162" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1196" - name: "L-glutamate transport" @@ -80628,16 +73180,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCL025C or YFL055W or YKR039W or YPL265W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLUt2r" - metanetx.reaction: "MNXR100300" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1197" - name: "L-glutamine transport" @@ -80649,17 +73196,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR001W" - - eccodes: "" - - references: "11274162" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLNt6" - metanetx.reaction: "MNXR100262" - - pmid: "11274162" + - pubmed: "11274162" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1198" - name: "L-glutamine transport" @@ -80671,18 +73213,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL146W or YNL101W" - - eccodes: "" - - references: "11274162" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLNt7" - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR100260" - - pmid: "11274162" + - pubmed: "11274162" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1199" - name: "L-glutamine transport" @@ -80694,16 +73231,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCL025C or YDR508C or YKR039W or YPL265W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLNt2r" - metanetx.reaction: "MNXR100260" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1200" - name: "L-histidine transport, vacuolar" @@ -80715,17 +73247,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL092W or YBR293W or YCL069W or YMR088C" - - eccodes: "" - - references: "15572352" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HISt6" - metanetx.reaction: "MNXR100647" - - pmid: "15572352" + - pubmed: "15572352" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1201" - name: "L-histidine transport" @@ -80737,16 +73264,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR069C or YGR191W or YKR039W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HISt2r" - metanetx.reaction: "MNXR100645" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1202" - name: "L-isoleucine transport" @@ -80756,17 +73278,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCL038C" - - eccodes: "" - - references: "17021250" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR100824" - - pmid: "17021250" + - pubmed: "17021250" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1203" - name: "L-isoleucine transport" @@ -80778,17 +73295,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR001W" - - eccodes: "" - - references: "11274162" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ILEt6" - metanetx.reaction: "MNXR100825" - - pmid: "11274162" + - pubmed: "11274162" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1204" - name: "L-isoleucine transport" @@ -80800,18 +73312,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL146W or YNL101W" - - eccodes: "" - - references: "11274162" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ILEt7" - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR100822" - - pmid: "11274162" + - pubmed: "11274162" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1205" - name: "L-isoleucine transport" @@ -80823,16 +73330,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YKR039W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ILEt2r" - metanetx.reaction: "MNXR100822" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1206" - name: "L-lactate transport" @@ -80842,17 +73344,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL217W" - - eccodes: "" - - references: "17761666" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "L_LACtcm" - metanetx.reaction: "MNXR100999" - - pmid: "17761666" + - pubmed: "17761666" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1207" - name: "L-lactate transport" @@ -80864,17 +73361,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL217W" - - eccodes: "" - - references: "10198029" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "L_LACt2r" - metanetx.reaction: "MNXR101277" - - pmid: "10198029" + - pubmed: "10198029" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1208" - name: "L-leucine transport, vacuoluar" @@ -80884,17 +73376,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCL038C" - - eccodes: "" - - references: "17021250" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR101057" - - pmid: "17021250" + - pubmed: "17021250" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1209" - name: "L-leucine transport, vacuoluar" @@ -80906,17 +73393,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR001W" - - eccodes: "" - - references: "11274162" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "LEUt6" - metanetx.reaction: "MNXR101058" - - pmid: "11274162" + - pubmed: "11274162" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1210" - name: "L-leucine transport, vacuoluar" @@ -80928,18 +73410,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL146W or YNL101W" - - eccodes: "" - - references: "11274162" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "LEUt7" - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR101055" - - pmid: "11274162" + - pubmed: "11274162" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1211" - name: "L-leucine transport" @@ -80951,16 +73428,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YDR508C or YKR039W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "LEUt2r" - metanetx.reaction: "MNXR101055" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1212" - name: "L-lysine transport" @@ -80972,17 +73444,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOL092W or YBR293W or YCL069W or YMR088C" - - eccodes: "" - - references: "15572352" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "LYSt6" - metanetx.reaction: "MNXR101267" - - pmid: "15572352" + - pubmed: "15572352" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1213" - name: "L-lysine transport" @@ -80994,16 +73461,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKR039W or YNL268W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "LYSt2r" - metanetx.reaction: "MNXR101266" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1214" - name: "L-methionine transport" @@ -81015,16 +73477,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR068C or YCL025C or YDR046C or YDR508C or YGR055W or YHL036W or YKR039W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "METt2r" - metanetx.reaction: "MNXR101490" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1215" - name: "L-phenylalanine transport" @@ -81036,16 +73493,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR068C or YCL025C or YDR046C or YKR039W or YOL020W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PHEt2r" - metanetx.reaction: "MNXR102635" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1216" - name: "L-proline transport" @@ -81057,16 +73509,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKR039W or YOR348C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PROt2r" - metanetx.reaction: "MNXR103211" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1217" - name: "L-serine transport" @@ -81078,16 +73525,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCL025C or YDR508C or YFL055W or YKR039W or YPL265W or YDR105C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SERt2r" - metanetx.reaction: "MNXR104352" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1218" - name: "L-threonine transport" @@ -81099,17 +73541,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR069C or YCL025C or YDR046C or YDR508C or YKR039W" - - eccodes: "" - - references: "9489675" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "THRt2r" - metanetx.reaction: "MNXR104850" - - pmid: "9489675" + - pubmed: "9489675" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1219" - name: "L-tryptophan transport" @@ -81121,17 +73558,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR068C or YBR069C or YDR046C or YKR039W or YOL020W" - - eccodes: "" - - references: "9573211" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TRPt2r" - metanetx.reaction: "MNXR104950" - - pmid: "9573211" + - pubmed: "9573211" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1220" - name: "L-tyrosine transport" @@ -81141,17 +73573,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCL038C" - - eccodes: "" - - references: "17021250" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR105002" - - pmid: "17021250" + - pubmed: "17021250" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1221" - name: "L-tyrosine transport" @@ -81163,17 +73590,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR293W or YJR001W" - - eccodes: "" - - references: "15572352" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TYRt6" - metanetx.reaction: "MNXR105005" - - pmid: "15572352" + - pubmed: "15572352" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1222" - name: "L-tyrosine transport" @@ -81185,18 +73607,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL146W or YNL101W" - - eccodes: "" - - references: "11274162" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TYRt7" - kegg.pathway: "sce04138" - metanetx.reaction: "MNXR105003" - - pmid: "11274162" + - pubmed: "11274162" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1223" - name: "L-tyrosine transport" @@ -81208,16 +73625,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YKR039W or YOL020W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TYRt2r" - metanetx.reaction: "MNXR105003" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1224" - name: "L-valine transport" @@ -81229,16 +73641,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR068C or YBR069C or YCL025C or YDR046C or YKR039W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "VALt2r" - metanetx.reaction: "MNXR105188" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1225" - name: "lanosterol transport" @@ -81248,17 +73655,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL013C or YOR011W" - - eccodes: "" - - references: "12077145" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "LANOSTt" - metanetx.reaction: "MNXR101014" - - pmid: "12077145" + - pubmed: "12077145" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1226" - name: "malate transport" @@ -81270,16 +73672,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR348C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MALtm" - metanetx.reaction: "MNXR101374" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1227" - name: "maltose transport" @@ -81291,17 +73688,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR298C or YDL247W or YGR289C or YJR160C" - - eccodes: "" - - references: "7483839" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MALTt2" - metanetx.reaction: "MNXR101365" - - pmid: "7483839" + - pubmed: "7483839" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1228" - name: "N,N'-diformyldityrosine transport" @@ -81311,15 +73703,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR180W" - - eccodes: "" - - references: "12455697" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "12455697" + - pubmed: "12455697" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1229" - name: "NAD transport" @@ -81329,19 +73716,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YEL006W or YIL006W" - - eccodes: "" - - references: "16291748; 9169870" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NADtm" - metanetx.reaction: "MNXR101900" - - pmid: + - pubmed: - "16291748" - "9169870" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1230" - name: "NAD transport" @@ -81353,15 +73735,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL006W" - - eccodes: "" - - references: "16291748" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "16291748" + - pubmed: "16291748" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1231" - name: "NAD transport" @@ -81373,15 +73750,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL006W" - - eccodes: "" - - references: "16291748" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "16291748" + - pubmed: "16291748" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1232" - name: "NAD transport" @@ -81393,15 +73765,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL006W" - - eccodes: "" - - references: "16291748" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "16291748" + - pubmed: "16291748" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1235" - name: "nicotinate transport" @@ -81411,17 +73778,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR260W" - - eccodes: "" - - references: "10869563" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NACt" - metanetx.reaction: "MNXR101808" - - pmid: "10869563" + - pubmed: "10869563" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1236" - name: "octadecanoate (n-C18:0) transport" @@ -81431,16 +73793,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "8993619" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99109" - - pmid: "8993619" + - pubmed: "8993619" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1237" - name: "ornithine transport" @@ -81452,17 +73809,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR130C" - - eccodes: "" - - references: "10428783" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ORNt3m" - metanetx.reaction: "MNXR102225" - - pmid: "10428783" + - pubmed: "10428783" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1238" - name: "orntithine transport" @@ -81474,16 +73826,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YEL063C or YKR039W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ORNt2r" - metanetx.reaction: "MNXR102224" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1239" - name: "oxaloacetate transport" @@ -81495,16 +73842,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL120W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "OAAt2m" - metanetx.reaction: "MNXR102102" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1241" - name: "pantothenate transport" @@ -81516,16 +73858,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR028C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PNTOt2" - metanetx.reaction: "MNXR103053" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1242" - name: "pentaprenyl diphosphate transport" @@ -81535,17 +73872,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "11583838" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PENDPtm" - metanetx.reaction: "MNXR102483" - - pmid: "11583838" + - pubmed: "11583838" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1243" - name: "phenethyl acetate transport" @@ -81555,17 +73887,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "10653746" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PHEACt" - metanetx.reaction: "MNXR102622" - - pmid: "10653746" + - pubmed: "10653746" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1244" - name: "phosphate transport" @@ -81577,16 +73904,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR296C or YCR037C or YJL198W or YML123C or YNR013C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PIt2r" - metanetx.reaction: "MNXR102872" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1245" - name: "phosphate transport" @@ -81598,16 +73920,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER053C or YJR077C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PIt2m" - metanetx.reaction: "MNXR102872" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1249" - name: "potassium transport" @@ -81619,16 +73936,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR456W or YJL129C" - - eccodes: "" - - references: "3043197" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "Kt2r" - - pmid: "3043197" + - pubmed: "3043197" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1250" - name: "putrescine excretion" @@ -81638,17 +73950,12 @@ - lower_bound: 0 - upper_bound: 0 - gene_reaction_rule: "YKL174C" - - eccodes: "" - - references: "15668236" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PTRCtex2" - metanetx.reaction: "MNXR103339" - - pmid: "15668236" + - pubmed: "15668236" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1251" - name: "putrescine transport" @@ -81660,17 +73967,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLL028W or YOR273C" - - eccodes: "" - - references: "9920864" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PTRCt3i" - metanetx.reaction: "MNXR103341" - - pmid: "9920864" + - pubmed: "9920864" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1252" - name: "putrescine transport" @@ -81682,16 +73984,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLL028W or YOR273C" - - eccodes: "" - - references: "11171066" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR103341" - - pmid: "11171066" + - pubmed: "11171066" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1253" - name: "pyridoxine symport" @@ -81703,15 +74000,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL186C" - - eccodes: "" - - references: "12649274" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "12649274" + - pubmed: "12649274" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1254" - name: "pyruvate transport" @@ -81723,16 +74015,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL217W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PYRt2" - metanetx.reaction: "MNXR103385" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1255" - name: "S-adenosyl-L-methionine transport" @@ -81744,16 +74031,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL274W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AMETt2" - metanetx.reaction: "MNXR95810" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1256" - name: "S-adenosyl-L-methionine transport" @@ -81763,17 +74045,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNL003C" - - eccodes: "" - - references: "14609944" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AMETtm" - metanetx.reaction: "MNXR95809" - - pmid: "14609944" + - pubmed: "14609944" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1257" - name: "S-methylmethionine permease" @@ -81785,16 +74062,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLL061W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MMETt2" - metanetx.reaction: "MNXR101658" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1258" - name: "sodium proton antiporter" @@ -81806,15 +74078,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR456W or YLR138W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NAt3_1" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1259" - name: "spermidine excretion" @@ -81824,17 +74091,12 @@ - lower_bound: 0 - upper_bound: 0 - gene_reaction_rule: "YKL174C" - - eccodes: "" - - references: "15668236" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SPMDtex2" - metanetx.reaction: "MNXR104495" - - pmid: "15668236" + - pubmed: "15668236" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1260" - name: "spermidine transport" @@ -81846,19 +74108,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR132C or YHL016C or YKR039W or YLL028W or YOR273C or YPL274W" - - eccodes: "" - - references: "17218313; 9920864" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SPMDt3i" - metanetx.reaction: "MNXR104497" - - pmid: + - pubmed: - "17218313" - "9920864" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1261" - name: "spermidine transport" @@ -81870,16 +74127,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLL028W or YOR273C" - - eccodes: "" - - references: "11171066" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104497" - - pmid: "11171066" + - pubmed: "11171066" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1262" - name: "spermine transport" @@ -81891,17 +74143,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR138C or YLL028W or YOR273C or YPR156C" - - eccodes: "" - - references: "9920864" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SPRMt2i" - metanetx.reaction: "MNXR104501" - - pmid: "9920864" + - pubmed: "9920864" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1263" - name: "spermine transport" @@ -81913,16 +74160,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR138C or YLL028W or YOR273C or YPR156C" - - eccodes: "" - - references: "11171066" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104501" - - pmid: "11171066" + - pubmed: "11171066" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1264" - name: "succinate transport" @@ -81934,16 +74176,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR348C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SUCCtm" - metanetx.reaction: "MNXR104626" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1265" - name: "succinate-fumarate transport" @@ -81955,17 +74192,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJR095W" - - eccodes: "" - - references: "9395087" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SUCFUMtm" - metanetx.reaction: "MNXR104633" - - pmid: "9395087" + - pubmed: "9395087" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1266" - name: "sulfate uniport" @@ -81975,16 +74207,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR294W or YLR092W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SO4ti" - metanetx.reaction: "MNXR104469" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1267" - name: "sulfite transport" @@ -81994,17 +74221,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL092W" - - eccodes: "" - - references: "10870099" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SO3ti" - metanetx.reaction: "MNXR104460" - - pmid: "10870099" + - pubmed: "10870099" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1268" - name: "taurine transport" @@ -82014,17 +74236,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "8293962" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TAURt" - metanetx.reaction: "MNXR104733" - - pmid: "8293962" + - pubmed: "8293962" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1269" - name: "thiamine diphosphate transport" @@ -82034,17 +74251,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YGR096W" - - eccodes: "" - - references: "12411483" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "THMPPt2m" - metanetx.reaction: "MNXR104824" - - pmid: "12411483" + - pubmed: "12411483" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1270" - name: "thiamine transport" @@ -82056,16 +74268,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR237W or YOR071C or YOR192C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "THMt2" - metanetx.reaction: "MNXR138863" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1271" - name: "UDPgalactose transport" @@ -82075,17 +74282,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YPL244C" - - eccodes: "" - - references: "11284009" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "UDPGALt2g" - metanetx.reaction: "MNXR105061" - - pmid: "11284009" + - pubmed: "11284009" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1272" - name: "uracil transport" @@ -82097,16 +74299,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR021W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "URAt2" - metanetx.reaction: "MNXR105148" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1273" - name: "urea transport" @@ -82118,16 +74315,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHL016C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "UREA2t2" - metanetx.reaction: "MNXR105154" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1274" - name: "uridine transport" @@ -82139,17 +74331,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL042C" - - eccodes: "" - - references: "10827169" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "URIt2" - metanetx.reaction: "MNXR105166" - - pmid: "10827169" + - pubmed: "10827169" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1275" - name: "UTP transport" @@ -82165,15 +74352,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR192W" - - eccodes: "" - - references: "16844075" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "16844075" + - pubmed: "16844075" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1276" - name: "UTP/UMP antiport" @@ -82187,17 +74369,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR192W" - - eccodes: "" - - references: "16194150" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "UTPtm" - metanetx.reaction: "MNXR105175" - - pmid: "16194150" + - pubmed: "16194150" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1277" - name: "water diffusion" @@ -82207,17 +74384,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLL052C or YPR192W" - - eccodes: "" - - references: "9765289" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "H2Ot" - metanetx.reaction: "MNXR98641" - - pmid: "9765289" + - pubmed: "9765289" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1278" - name: "zymosterol transport" @@ -82227,16 +74399,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL013C or YOR011W" - - eccodes: "" - - references: "12077145" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR105285" - - pmid: "12077145" + - pubmed: "12077145" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1657" - name: "arginine transport" @@ -82248,17 +74415,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR147W" - - eccodes: "" - - references: "9874237" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ARGt2m" - metanetx.reaction: "MNXR95953" - - pmid: "9874237" + - pubmed: "9874237" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2034" - name: "pyruvate transport" @@ -82270,17 +74432,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "(YGL080W and YGR243W) or (YGL080W and YHR162W)" - - eccodes: "" - - references: "22628558" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PYRt2m" - metanetx.reaction: "MNXR103385" - - pmid: "22628558" + - pubmed: "22628558" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2079" - name: "trehalose transporter" @@ -82292,17 +74449,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR289C" - - eccodes: "" - - references: "10957961" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TREt2" - metanetx.reaction: "MNXR104932" - - pmid: "10957961" + - pubmed: "10957961" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2132" - name: "oxoglutarate/malate exchange" @@ -82314,17 +74466,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR222W or YPL134C" - - eccodes: "" - - references: "16844075" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AKGMALtm" - metanetx.reaction: "MNXR95659" - - pmid: "16844075" + - pubmed: "16844075" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2219" - name: "fatty acyl-CoA transport via ABC system (C12:0)" @@ -82339,18 +74486,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "17010456" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.pathway: - "sce02010" - "sce04146" - - pmid: "17010456" + - pubmed: "17010456" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2220" - name: "fatty acyl-CoA transport via ABC system (C14:0)" @@ -82365,18 +74507,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "17010456" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.pathway: - "sce02010" - "sce04146" - - pmid: "17010456" + - pubmed: "17010456" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2221" - name: "fatty acyl-CoA transport via ABC system (C16:0)" @@ -82391,20 +74528,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "17010456" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FA160COAabcp_1" - kegg.pathway: - "sce02010" - "sce04146" - metanetx.reaction: "MNXR99100" - - pmid: "17010456" + - pubmed: "17010456" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2222" - name: "fatty acyl-CoA transport via ABC system (C16:1)" @@ -82419,18 +74551,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "17010456" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.pathway: - "sce02010" - "sce04146" - - pmid: "17010456" + - pubmed: "17010456" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2223" - name: "fatty acyl-CoA transport via ABC system (C18:0)" @@ -82445,20 +74572,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "17010456" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "STCOATxc" - kegg.pathway: - "sce02010" - "sce04146" - metanetx.reaction: "MNXR104597" - - pmid: "17010456" + - pubmed: "17010456" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2224" - name: "fatty acyl-CoA transport via ABC system (C18:1)" @@ -82473,18 +74595,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "17010456" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.pathway: - "sce02010" - "sce04146" - - pmid: "17010456" + - pubmed: "17010456" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2225" - name: "fatty acyl-CoA transport via ABC system (C20:0)" @@ -82499,18 +74616,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "17010456" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.pathway: - "sce02010" - "sce04146" - - pmid: "17010456" + - pubmed: "17010456" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2226" - name: "fatty acyl-CoA transport via ABC system (C22:0)" @@ -82525,19 +74637,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "17010456" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DOCOSCOAtxc" - kegg.pathway: - "sce02010" - "sce04146" - - pmid: "17010456" + - pubmed: "17010456" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2227" - name: "fatty acyl-CoA transport via ABC system (C24:0)" @@ -82552,19 +74659,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "17010456" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "LGNCCOAtcx_1" - kegg.pathway: - "sce02010" - "sce04146" - - pmid: "17010456" + - pubmed: "17010456" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_2228" - name: "fatty acyl-CoA transport via ABC system (C26:0)" @@ -82579,18 +74681,13 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "17010456" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.pathway: - "sce02010" - "sce04146" - - pmid: "17010456" + - pubmed: "17010456" - sbo: "SBO:0000655" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3348" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-A (C24))" @@ -82603,16 +74700,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3349" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-A (C24))" @@ -82625,16 +74718,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3350" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-A (C24))" @@ -82647,16 +74736,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3351" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-A (C24))" @@ -82669,16 +74754,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3352" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-A (C24))" @@ -82691,16 +74772,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3353" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-A (C24))" @@ -82713,16 +74790,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3354" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-A (C24))" @@ -82735,16 +74808,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3355" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-A (C24))" @@ -82757,16 +74826,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3356" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-A (C26))" @@ -82779,16 +74844,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3357" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-A (C26))" @@ -82801,16 +74862,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3358" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-A (C26))" @@ -82823,16 +74880,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3359" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-A (C26))" @@ -82845,16 +74898,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3360" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-A (C26))" @@ -82867,16 +74916,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3361" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-A (C26))" @@ -82889,16 +74934,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3362" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-A (C26))" @@ -82911,16 +74952,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3363" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-A (C26))" @@ -82933,16 +74970,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3364" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B' (C24))" @@ -82955,16 +74988,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3365" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B' (C24))" @@ -82977,16 +75006,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3366" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B' (C24))" @@ -82999,16 +75024,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3367" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B' (C24))" @@ -83021,16 +75042,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3368" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B' (C24))" @@ -83043,16 +75060,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3369" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B' (C24))" @@ -83065,16 +75078,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3370" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B' (C24))" @@ -83087,16 +75096,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3371" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B' (C24))" @@ -83109,16 +75114,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3372" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B' (C26))" @@ -83131,16 +75132,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3373" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B' (C26))" @@ -83153,16 +75150,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3374" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B' (C26))" @@ -83175,16 +75168,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3375" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B' (C26))" @@ -83197,16 +75186,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3376" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B' (C26))" @@ -83219,16 +75204,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3377" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B' (C26))" @@ -83241,16 +75222,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3378" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B' (C26))" @@ -83263,16 +75240,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3379" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B' (C26))" @@ -83285,16 +75258,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3380" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B (C24))" @@ -83307,16 +75276,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3381" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B (C24))" @@ -83329,16 +75294,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3382" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B (C24))" @@ -83351,16 +75312,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3383" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B (C24))" @@ -83373,16 +75330,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3384" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B (C24))" @@ -83395,16 +75348,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3385" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B (C24))" @@ -83417,16 +75366,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3386" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B (C24))" @@ -83439,16 +75384,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3387" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B (C24))" @@ -83461,16 +75402,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3388" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-B (C26))" @@ -83483,16 +75420,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3389" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-B (C26))" @@ -83505,16 +75438,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3390" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-B (C26))" @@ -83527,16 +75456,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3391" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-B (C26))" @@ -83549,16 +75474,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3392" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-B (C26))" @@ -83571,16 +75492,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3393" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-B (C26))" @@ -83593,16 +75510,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3394" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-B (C26))" @@ -83615,16 +75528,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3395" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-B (C26))" @@ -83637,16 +75546,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3396" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-C (C24))" @@ -83659,16 +75564,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3397" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-C (C24))" @@ -83681,16 +75582,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3398" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-C (C24))" @@ -83703,16 +75600,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3399" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-C (C24))" @@ -83725,16 +75618,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3400" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-C (C24))" @@ -83747,16 +75636,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3401" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-C (C24))" @@ -83769,16 +75654,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3402" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-C (C24))" @@ -83791,16 +75672,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3403" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-C (C24))" @@ -83813,16 +75690,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3404" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-C (C26))" @@ -83835,16 +75708,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3405" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-C (C26))" @@ -83857,16 +75726,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3406" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-C (C26))" @@ -83879,16 +75744,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3407" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-C (C26))" @@ -83901,16 +75762,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3408" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-C (C26))" @@ -83923,16 +75780,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3409" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-C (C26))" @@ -83945,16 +75798,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3410" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-C (C26))" @@ -83967,16 +75816,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3411" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-C (C26))" @@ -83989,16 +75834,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3412" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-D (C24))" @@ -84011,16 +75852,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3413" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-D (C24))" @@ -84033,16 +75870,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3414" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-D (C24))" @@ -84055,16 +75888,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3415" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-D (C24))" @@ -84077,16 +75906,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3416" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-D (C24))" @@ -84099,16 +75924,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3417" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-D (C24))" @@ -84121,16 +75942,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3418" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-D (C24))" @@ -84143,16 +75960,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3419" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-D (C24))" @@ -84165,16 +75978,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3420" - name: "inositolphosphotransferase (PI (1-16:0, 2-16:1) MIPC-D (C26))" @@ -84187,16 +75996,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3421" - name: "inositolphosphotransferase (PI (1-16:1, 2-16:1) MIPC-D (C26))" @@ -84209,16 +76014,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3422" - name: "inositolphosphotransferase (PI (1-18:0, 2-16:1) MIPC-D (C26))" @@ -84231,16 +76032,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3423" - name: "inositolphosphotransferase (PI (1-18:1, 2-16:1) MIPC-D (C26))" @@ -84253,16 +76050,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3424" - name: "inositolphosphotransferase (PI (1-16:0, 2-18:1) MIPC-D (C26))" @@ -84275,16 +76068,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3425" - name: "inositolphosphotransferase (PI (1-16:1, 2-18:1) MIPC-D (C26))" @@ -84297,16 +76086,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3426" - name: "inositolphosphotransferase (PI (1-18:0, 2-18:1) MIPC-D (C26))" @@ -84319,16 +76104,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3427" - name: "inositolphosphotransferase (PI (1-18:1, 2-18:1) MIPC-D (C26))" @@ -84341,16 +76122,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR072C" - eccodes: "2.-.-.-" - - references: "18296751; 9368028" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9368028" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3428" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-1 (C24))" @@ -84363,16 +76140,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3429" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-1 (C24))" @@ -84385,16 +76158,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3430" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-1 (C24))" @@ -84407,16 +76176,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3431" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-1 (C24))" @@ -84429,16 +76194,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3432" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-1 (C24))" @@ -84451,16 +76212,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3433" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-1 (C24))" @@ -84473,16 +76230,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3434" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-1 (C24))" @@ -84495,16 +76248,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3435" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-1 (C24))" @@ -84517,16 +76266,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3436" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-1 (C26))" @@ -84539,16 +76284,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3437" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-1 (C26))" @@ -84561,16 +76302,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3438" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-1 (C26))" @@ -84583,16 +76320,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3439" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-1 (C26))" @@ -84605,16 +76338,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3440" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-1 (C26))" @@ -84627,16 +76356,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3441" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-1 (C26))" @@ -84649,16 +76374,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3442" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-1 (C26))" @@ -84671,16 +76392,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3443" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-1 (C26))" @@ -84693,16 +76410,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3444" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2' (C24))" @@ -84715,16 +76428,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3445" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2' (C24))" @@ -84737,16 +76446,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3446" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2' (C24))" @@ -84759,16 +76464,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3447" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2' (C24))" @@ -84781,16 +76482,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3448" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2' (C24))" @@ -84803,16 +76500,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3449" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2' (C24))" @@ -84825,16 +76518,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3450" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2' (C24))" @@ -84847,16 +76536,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3451" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2' (C24))" @@ -84869,16 +76554,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3452" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2' (C26))" @@ -84891,16 +76572,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3453" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2' (C26))" @@ -84913,16 +76590,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3454" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2' (C26))" @@ -84935,16 +76608,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3455" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2' (C26))" @@ -84957,16 +76626,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3456" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2' (C26))" @@ -84979,16 +76644,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3457" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2' (C26))" @@ -85001,16 +76662,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3458" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2' (C26))" @@ -85023,16 +76680,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3459" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2' (C26))" @@ -85045,16 +76698,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3460" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2 (C24))" @@ -85067,16 +76716,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3461" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2 (C24))" @@ -85089,16 +76734,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3462" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2 (C24))" @@ -85111,16 +76752,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3463" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2 (C24))" @@ -85133,16 +76770,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3464" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2 (C24))" @@ -85155,16 +76788,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3465" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2 (C24))" @@ -85177,16 +76806,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3466" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2 (C24))" @@ -85199,16 +76824,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3467" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2 (C24))" @@ -85221,16 +76842,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3468" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-2 (C26))" @@ -85243,16 +76860,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3469" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-2 (C26))" @@ -85265,16 +76878,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3470" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-2 (C26))" @@ -85287,16 +76896,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3471" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-2 (C26))" @@ -85309,16 +76914,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3472" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-2 (C26))" @@ -85331,16 +76932,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3473" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-2 (C26))" @@ -85353,16 +76950,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3474" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-2 (C26))" @@ -85375,16 +76968,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3475" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-2 (C26))" @@ -85397,16 +76986,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3476" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-3 (C24))" @@ -85419,16 +77004,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3477" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-3 (C24))" @@ -85441,16 +77022,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3478" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-3 (C24))" @@ -85463,16 +77040,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3479" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-3 (C24))" @@ -85485,16 +77058,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3480" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-3 (C24))" @@ -85507,16 +77076,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3481" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-3 (C24))" @@ -85529,16 +77094,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3482" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-3 (C24))" @@ -85551,16 +77112,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3483" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-3 (C24))" @@ -85573,16 +77130,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3484" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-3 (C26))" @@ -85595,16 +77148,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3485" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-3 (C26))" @@ -85617,16 +77166,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3486" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-3 (C26))" @@ -85639,16 +77184,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3487" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-3 (C26))" @@ -85661,16 +77202,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3488" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-3 (C26))" @@ -85683,16 +77220,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3489" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-3 (C26))" @@ -85705,16 +77238,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3490" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-3 (C26))" @@ -85727,16 +77256,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3491" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-3 (C26))" @@ -85749,16 +77274,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3492" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-4 (C24))" @@ -85771,16 +77292,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3493" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-4 (C24))" @@ -85793,16 +77310,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3494" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-4 (C24))" @@ -85815,16 +77328,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3495" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-4 (C24))" @@ -85837,16 +77346,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3496" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-4 (C24))" @@ -85859,16 +77364,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3497" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-4 (C24))" @@ -85881,16 +77382,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3498" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-4 (C24))" @@ -85903,16 +77400,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3499" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-4 (C24))" @@ -85925,16 +77418,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3500" - name: "IPC synthase (PI (1-16:0, 2-16:1) ceramide-4 (C26))" @@ -85947,16 +77436,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3501" - name: "IPC synthase (PI (1-16:1, 2-16:1) ceramide-4 (C26))" @@ -85969,16 +77454,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3502" - name: "IPC synthase (PI (1-18:0, 2-16:1) ceramide-4 (C26))" @@ -85991,16 +77472,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3503" - name: "IPC synthase (PI (1-18:1, 2-16:1) ceramide-4 (C26))" @@ -86013,16 +77490,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3504" - name: "IPC synthase (PI (1-16:0, 2-18:1) ceramide-4 (C26))" @@ -86035,16 +77508,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3505" - name: "IPC synthase (PI (1-16:1, 2-18:1) ceramide-4 (C26))" @@ -86057,16 +77526,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3506" - name: "IPC synthase (PI (1-18:0, 2-18:1) ceramide-4 (C26))" @@ -86079,16 +77544,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_3507" - name: "IPC synthase (PI (1-18:1, 2-18:1) ceramide-4 (C26))" @@ -86101,16 +77562,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR367W and YKL004W" - eccodes: "2.-.-.-" - - references: "18296751; 9092515" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.-.-.-" - - pmid: + - pubmed: - "18296751" - "9092515" - sbo: "SBO:0000176" - - confidence_score: 3 + - confidence_score: 3 - !!omap - id: "r_1449" - name: "inositol-P-ceramide B' (C24) [Golgi] SLIME rxn" @@ -86122,14 +77579,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1450" - name: "inositol-P-ceramide B' (C26) [Golgi] SLIME rxn" @@ -86141,14 +77593,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1451" - name: "inositol-P-ceramide C (C24) [Golgi] SLIME rxn" @@ -86160,14 +77607,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1452" - name: "inositol-P-ceramide C (C26) [Golgi] SLIME rxn" @@ -86179,14 +77621,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1453" - name: "inositol-P-ceramide A (C24) [Golgi] SLIME rxn" @@ -86198,14 +77635,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1454" - name: "inositol-P-ceramide A (C26) [Golgi] SLIME rxn" @@ -86217,14 +77649,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1455" - name: "inositol-P-ceramide B (C24) [Golgi] SLIME rxn" @@ -86236,14 +77663,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1456" - name: "inositol-P-ceramide B (C26) [Golgi] SLIME rxn" @@ -86255,14 +77677,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1457" - name: "inositol-P-ceramide D (C24) [Golgi] SLIME rxn" @@ -86274,14 +77691,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1458" - name: "inositol-P-ceramide D (C26) [Golgi] SLIME rxn" @@ -86293,14 +77705,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1479" - name: "inositol phosphomannosylinositol phosphoceramide A (C24) [Golgi] SLIME rxn" @@ -86312,14 +77719,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1480" - name: "inositol phosphomannosylinositol phosphoceramide A (C26) [Golgi] SLIME rxn" @@ -86331,14 +77733,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1481" - name: "inositol phosphomannosylinositol phosphoceramide B' (C24) [Golgi] SLIME rxn" @@ -86350,14 +77747,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1482" - name: "inositol phosphomannosylinositol phosphoceramide B' (C26) [Golgi] SLIME rxn" @@ -86369,14 +77761,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1483" - name: "inositol phosphomannosylinositol phosphoceramide B (C24) [Golgi] SLIME rxn" @@ -86388,14 +77775,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1484" - name: "inositol phosphomannosylinositol phosphoceramide B (C26) [Golgi] SLIME rxn" @@ -86407,14 +77789,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1485" - name: "inositol phosphomannosylinositol phosphoceramide C (C24) [Golgi] SLIME rxn" @@ -86426,14 +77803,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1486" - name: "inositol phosphomannosylinositol phosphoceramide C (C26) [Golgi] SLIME rxn" @@ -86445,14 +77817,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1487" - name: "inositol phosphomannosylinositol phosphoceramide D (C24) [Golgi] SLIME rxn" @@ -86464,14 +77831,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1488" - name: "inositol phosphomannosylinositol phosphoceramide D (C26) [Golgi] SLIME rxn" @@ -86483,14 +77845,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1509" - name: "mannosylinositol phosphorylceramide B' (C24) [Golgi] SLIME rxn" @@ -86502,14 +77859,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1510" - name: "mannosylinositol phosphorylceramide B' (C26) [Golgi] SLIME rxn" @@ -86521,14 +77873,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1511" - name: "mannosylinositol phosphorylceramide C (C24) [Golgi] SLIME rxn" @@ -86540,14 +77887,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1512" - name: "mannosylinositol phosphorylceramide C (C26) [Golgi] SLIME rxn" @@ -86559,14 +77901,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1513" - name: "mannosylinositol phosphorylceramide A (C24) [Golgi] SLIME rxn" @@ -86578,14 +77915,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1514" - name: "mannosylinositol phosphorylceramide A (C26) [Golgi] SLIME rxn" @@ -86597,14 +77929,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1515" - name: "mannosylinositol phosphorylceramide B (C24) [Golgi] SLIME rxn" @@ -86616,14 +77943,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1516" - name: "mannosylinositol phosphorylceramide B (C26) [Golgi] SLIME rxn" @@ -86635,14 +77957,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1517" - name: "mannosylinositol phosphorylceramide D (C24) [Golgi] SLIME rxn" @@ -86654,14 +77971,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1518" - name: "mannosylinositol phosphorylceramide D (C26) [Golgi] SLIME rxn" @@ -86673,14 +77985,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3963" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) [cytoplasm] SLIME rxn" @@ -86692,14 +77999,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3964" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) [cytoplasm] SLIME rxn" @@ -86710,14 +78012,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3965" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) [cytoplasm] SLIME rxn" @@ -86729,14 +78026,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3966" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) [cytoplasm] SLIME rxn" @@ -86748,14 +78040,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3967" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) [cytoplasm] SLIME rxn" @@ -86767,14 +78054,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3968" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) [cytoplasm] SLIME rxn" @@ -86786,14 +78068,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3969" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) [cytoplasm] SLIME rxn" @@ -86805,14 +78082,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3970" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) [cytoplasm] SLIME rxn" @@ -86823,14 +78095,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3971" - name: "ergosteryl palmitoleate [endoplasmic reticulum membrane] SLIME rxn" @@ -86841,14 +78108,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3972" - name: "ergosteryl oleate [endoplasmic reticulum membrane] SLIME rxn" @@ -86859,14 +78121,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3975" - name: "palmitate [cytoplasm] SLIME rxn" @@ -86877,14 +78134,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3976" - name: "palmitoleate [cytoplasm] SLIME rxn" @@ -86895,14 +78147,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3977" - name: "stearate [cytoplasm] SLIME rxn" @@ -86913,14 +78160,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3978" - name: "oleate [cytoplasm] SLIME rxn" @@ -86931,14 +78173,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3979" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -86950,14 +78187,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3980" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -86968,14 +78200,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3981" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -86987,14 +78214,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3982" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87006,14 +78228,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3983" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87025,14 +78242,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3984" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87044,14 +78256,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3985" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87063,14 +78270,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3986" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87081,14 +78283,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3988" - name: "phosphatidylcholine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87100,14 +78297,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3989" - name: "phosphatidylcholine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87118,14 +78310,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3990" - name: "phosphatidylcholine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87137,14 +78324,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3991" - name: "phosphatidylcholine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87156,14 +78338,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3992" - name: "phosphatidylcholine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87175,14 +78352,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3993" - name: "phosphatidylcholine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87194,14 +78366,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3994" - name: "phosphatidylcholine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87213,14 +78380,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3995" - name: "phosphatidylcholine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87231,14 +78393,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3997" - name: "phosphatidylethanolamine (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87250,14 +78407,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3998" - name: "phosphatidylethanolamine (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87268,14 +78420,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3999" - name: "phosphatidylethanolamine (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87287,14 +78434,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4000" - name: "phosphatidylethanolamine (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87306,14 +78448,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4001" - name: "phosphatidylethanolamine (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87325,14 +78462,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4002" - name: "phosphatidylethanolamine (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87344,14 +78476,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4003" - name: "phosphatidylethanolamine (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87363,14 +78490,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4004" - name: "phosphatidylethanolamine (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87381,14 +78503,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4006" - name: "triglyceride (1-16:0, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87400,14 +78517,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4007" - name: "triglyceride (1-16:0, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87419,14 +78531,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4008" - name: "triglyceride (1-16:1, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87438,14 +78545,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4009" - name: "triglyceride (1-16:1, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87458,14 +78560,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4010" - name: "triglyceride (1-18:0, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87478,14 +78575,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4011" - name: "triglyceride (1-18:0, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87498,14 +78590,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4012" - name: "triglyceride (1-18:1, 2-16:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87518,14 +78605,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4013" - name: "triglyceride (1-18:1, 2-18:1, 3-16:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87537,14 +78619,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4014" - name: "triglyceride (1-16:0, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87556,14 +78633,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4015" - name: "triglyceride (1-16:0, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87576,14 +78648,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4016" - name: "triglyceride (1-16:1, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87594,14 +78661,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4017" - name: "triglyceride (1-16:1, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87613,14 +78675,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4018" - name: "triglyceride (1-18:0, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87632,14 +78689,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4019" - name: "triglyceride (1-18:0, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87652,14 +78704,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4020" - name: "triglyceride (1-18:1, 2-16:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87671,14 +78718,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4021" - name: "triglyceride (1-18:1, 2-18:1, 3-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87690,14 +78732,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4022" - name: "triglyceride (1-16:0, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87710,14 +78747,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4023" - name: "triglyceride (1-16:0, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87730,14 +78762,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4024" - name: "triglyceride (1-16:1, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87749,14 +78776,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4025" - name: "triglyceride (1-16:1, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87769,14 +78791,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4026" - name: "triglyceride (1-18:0, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87788,14 +78805,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4027" - name: "triglyceride (1-18:0, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87807,14 +78819,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4028" - name: "triglyceride (1-18:1, 2-16:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87827,14 +78834,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4029" - name: "triglyceride (1-18:1, 2-18:1, 3-18:0) [endoplasmic reticulum membrane] SLIME rxn" @@ -87846,14 +78848,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4030" - name: "triglyceride (1-16:0, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87866,14 +78863,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4031" - name: "triglyceride (1-16:0, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87885,14 +78877,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4032" - name: "triglyceride (1-16:1, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87904,14 +78891,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4033" - name: "triglyceride (1-16:1, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87923,14 +78905,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4034" - name: "triglyceride (1-18:0, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87943,14 +78920,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4035" - name: "triglyceride (1-18:0, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87962,14 +78934,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4036" - name: "triglyceride (1-18:1, 2-16:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87981,14 +78948,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4037" - name: "triglyceride (1-18:1, 2-18:1, 3-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -87999,14 +78961,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_1542" - name: "(1->3)-beta-D-glucan exchange" @@ -88015,12 +78972,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_13BDglcn_e" - sbo: "SBO:0000627" - !!omap @@ -88032,14 +78984,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1545" - name: "(R)-carnitine exchange" @@ -88048,12 +78995,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_crn_e" - sbo: "SBO:0000627" - !!omap @@ -88064,12 +79006,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_lac__D_e" - sbo: "SBO:0000627" - !!omap @@ -88080,12 +79017,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_mev__R_e" - sbo: "SBO:0000627" - !!omap @@ -88096,12 +79028,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pnto__R_e" - sbo: "SBO:0000627" - !!omap @@ -88112,12 +79039,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_btd_RR_e" - sbo: "SBO:0000627" - !!omap @@ -88128,12 +79050,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_3mop_e" - sbo: "SBO:0000627" - !!omap @@ -88144,12 +79061,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_lac__L_e" - sbo: "SBO:0000627" - !!omap @@ -88160,12 +79072,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_mal__L_e" - sbo: "SBO:0000627" - !!omap @@ -88176,12 +79083,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_g3pi_e" - sbo: "SBO:0000627" - !!omap @@ -88192,12 +79094,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pchol_cho_e" - sbo: "SBO:0000627" - !!omap @@ -88209,15 +79106,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR125284" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1562" - name: "1D-myo-inositol 1-phosphate transport" @@ -88227,15 +79119,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101573" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1563" - name: "2'-deoxyadenosine exchange" @@ -88244,12 +79131,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_dad_2_e" - sbo: "SBO:0000627" - !!omap @@ -88260,12 +79142,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_dgsn_e" - sbo: "SBO:0000627" - !!omap @@ -88276,12 +79153,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_din_e" - sbo: "SBO:0000627" - !!omap @@ -88292,12 +79164,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_duri_e" - sbo: "SBO:0000627" - !!omap @@ -88309,16 +79176,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2DDA7Ptm" - metanetx.reaction: "MNXR94782" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1568" - name: "2-dehydropantoate transport" @@ -88328,16 +79190,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2DHPtm" - metanetx.reaction: "MNXR94793" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1572" - name: "2-isopropylmalate exchange" @@ -88346,12 +79203,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_3c3hmp_e" - sbo: "SBO:0000627" - !!omap @@ -88363,15 +79215,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3C3HMPt" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1574" - name: "2-isopropylmalate transport" @@ -88381,15 +79228,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL120W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3C3HMPtm" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1575" - name: "2-methyl-1-butanol transport" @@ -88399,16 +79241,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2MBTOHt" - metanetx.reaction: "MNXR94810" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1576" - name: "2-methyl-1-butanol transport" @@ -88418,16 +79255,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2MBTOHtm" - metanetx.reaction: "MNXR94810" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1577" - name: "2-methylbutanal exchange" @@ -88436,12 +79268,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_2mbald_e" - sbo: "SBO:0000627" - !!omap @@ -88453,16 +79280,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2MBALDt" - metanetx.reaction: "MNXR94809" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1579" - name: "2-methylbutanal transport" @@ -88472,16 +79294,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2MBALDtm" - metanetx.reaction: "MNXR94809" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1580" - name: "2-methylbutanol exchange" @@ -88490,12 +79307,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_2mbtoh_e" - sbo: "SBO:0000627" - !!omap @@ -88506,12 +79318,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_2mbac_e" - sbo: "SBO:0000627" - !!omap @@ -88523,16 +79330,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2MPPALt" - metanetx.reaction: "MNXR94812" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1583" - name: "2-methylpropanal transport" @@ -88542,16 +79344,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2MPPALtm" - metanetx.reaction: "MNXR94812" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1585" - name: "2-oxobutanoate transporter" @@ -88561,16 +79358,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2OBUTtm" - metanetx.reaction: "MNXR94814" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1586" - name: "2-oxoglutarate exchange" @@ -88579,12 +79371,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_akg_e" - sbo: "SBO:0000627" - !!omap @@ -88596,15 +79383,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95663" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1588" - name: "2-oxoglutarate transport" @@ -88614,15 +79396,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95663" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1589" - name: "2-phenylethanol exchange" @@ -88631,12 +79408,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_2phetoh_e" - sbo: "SBO:0000627" - !!omap @@ -88648,16 +79420,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2PHETOHt" - metanetx.reaction: "MNXR94828" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1591" - name: "2-phenylethanol transport" @@ -88667,16 +79434,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2PHETOHtm" - metanetx.reaction: "MNXR94828" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1595" - name: "3-carboxy-4-methyl-2-oxopentanoate transport" @@ -88686,16 +79448,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3C4MOPtm" - metanetx.reaction: "MNXR94859" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1596" - name: "3-methyl-2-oxopentanoate transport" @@ -88705,16 +79462,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3MOPtm" - metanetx.reaction: "MNXR94926" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1597" - name: "3-methyl-oxopentanoate trasport" @@ -88724,16 +79476,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3MOPt" - metanetx.reaction: "MNXR94926" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1598" - name: "3-methylbutanal exchange" @@ -88742,12 +79489,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_3mbald_e" - sbo: "SBO:0000627" - !!omap @@ -88759,16 +79501,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3MBALDt" - metanetx.reaction: "MNXR137944" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1600" - name: "3-methylbutanal transport" @@ -88778,16 +79515,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3MBALDtm" - metanetx.reaction: "MNXR137944" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1601" - name: "3-octaprenyl-4-hydroxybenzoate transport" @@ -88797,16 +79529,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3OPHB_5tm" - metanetx.reaction: "MNXR94966" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1603" - name: "4-amino-5-hydroxymethyl-2-methylpyrimidine synthetase" @@ -88819,16 +79546,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YFL058W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AHMMPS" - metanetx.reaction: "MNXR95632" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1604" - name: "4-aminobenzoate exchange" @@ -88837,12 +79559,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_4abz_e" - sbo: "SBO:0000627" - !!omap @@ -88854,16 +79571,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "4ABZt" - metanetx.reaction: "MNXR94995" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1606" - name: "4-aminobenzoate transport" @@ -88873,16 +79585,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "4ABZtm" - metanetx.reaction: "MNXR94995" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1607" - name: "4-aminobutanal transport" @@ -88892,16 +79599,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "4ABUTNtm" - metanetx.reaction: "MNXR94992" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1608" - name: "4-aminobutyrate transport" @@ -88911,16 +79613,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "4ABUTtm" - metanetx.reaction: "MNXR94993" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1609" - name: "4-hydroxy-2-oxoglutarate transport" @@ -88930,16 +79627,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "4H2OGLTtm" - metanetx.reaction: "MNXR95001" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1610" - name: "4-hydroxy-2-oxoglutarate transport" @@ -88949,16 +79641,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "4H2OGLTtp" - metanetx.reaction: "MNXR95001" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1611" - name: "4-hydroxybenzoate transport" @@ -88968,16 +79655,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "4HBZtm" - metanetx.reaction: "MNXR95013" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1613" - name: "5'-nucleotidase (AMP)" @@ -88989,17 +79671,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NTD7" - kegg.reaction: "R00183" - metanetx.reaction: "MNXR102037" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1614" - name: "5'-nucleotidase (dAMP)" @@ -89011,17 +79688,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NTD6" - kegg.reaction: "R02088" - metanetx.reaction: "MNXR102036" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1615" - name: "5'-nucleotidase (dCMP)" @@ -89033,17 +79705,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NTD3" - kegg.reaction: "R01664" - metanetx.reaction: "MNXR102033" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1616" - name: "5'-nucleotidase (dGMP)" @@ -89055,17 +79722,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NTD8" - kegg.reaction: "R01968" - metanetx.reaction: "MNXR102038" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1617" - name: "5'-nucleotidase (dTMP)" @@ -89077,17 +79739,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NTD5" - kegg.reaction: "R01569" - metanetx.reaction: "MNXR102035" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1618" - name: "5'-nucleotidase (dUMP)" @@ -89099,17 +79756,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NTD1" - kegg.reaction: "R02102" - metanetx.reaction: "MNXR102028" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1620" - name: "5'-nucleotidase (XMP)" @@ -89121,17 +79773,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NTD10" - kegg.reaction: "R02719" - metanetx.reaction: "MNXR102029" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1621" - name: "5-aminolevulinate exchange" @@ -89140,12 +79787,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_5aop_e" - sbo: "SBO:0000627" - !!omap @@ -89157,16 +79799,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "5AOPtm" - metanetx.reaction: "MNXR95062" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1623" - name: "5-formethyltetrahydrofolate cyclo-ligase" @@ -89179,17 +79816,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER183C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FTHFCLm" - kegg.reaction: "R02301" - metanetx.reaction: "MNXR99668" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1624" - name: "5-formyltetrahydrofolate:10-formyltetrahydrofolate isomerase" @@ -89204,16 +79836,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER183C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FTHFI" - metanetx.reaction: "MNXR99671" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1625" - name: "5-formyltetrahydrofolic acid exchange" @@ -89222,12 +79849,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_5fthf_e" - sbo: "SBO:0000627" - !!omap @@ -89238,12 +79860,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_dann_e" - sbo: "SBO:0000627" - !!omap @@ -89255,14 +79872,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1629" - name: "8-amino-7-oxononanoate exchange" @@ -89271,12 +79883,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_8aonn_e" - sbo: "SBO:0000627" - !!omap @@ -89287,12 +79894,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_xan_e" - sbo: "SBO:0000627" - !!omap @@ -89303,12 +79905,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_acald_e" - sbo: "SBO:0000627" - !!omap @@ -89320,16 +79917,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ACALDtm" - metanetx.reaction: "MNXR95212" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1633" - name: "acetaldehyde transport" @@ -89339,16 +79931,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ACALDt" - metanetx.reaction: "MNXR95212" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1634" - name: "acetate exchange" @@ -89357,12 +79944,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ac_e" - sbo: "SBO:0000627" - !!omap @@ -89374,15 +79956,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95431" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1637" - name: "acetyl-CoA transport" @@ -89392,16 +79969,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ACCOAtn" - metanetx.reaction: "MNXR95223" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1638" - name: "acetylcarnitine transport" @@ -89411,16 +79983,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ACRNtp" - metanetx.reaction: "MNXR95412" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1639" - name: "adenine exchange" @@ -89429,12 +79996,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ade_e" - sbo: "SBO:0000627" - !!omap @@ -89446,16 +80008,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ADEtm" - metanetx.reaction: "MNXR95445" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1641" - name: "adenosine 3',5'-bismonophosphate exchange" @@ -89464,12 +80021,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pap_e" - sbo: "SBO:0000627" - !!omap @@ -89481,16 +80033,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR011C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PAPtm" - metanetx.reaction: "MNXR102382" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1643" - name: "adenosine exchange" @@ -89499,12 +80046,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_adn_e" - sbo: "SBO:0000627" - !!omap @@ -89516,15 +80058,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1645" - name: "ADP transport" @@ -89534,15 +80071,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1647" - name: "AKG transporter, peroxisome" @@ -89552,16 +80084,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AKGtp" - metanetx.reaction: "MNXR95663" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1648" - name: "allantoate exchange" @@ -89570,12 +80097,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_alltt_e" - sbo: "SBO:0000627" - !!omap @@ -89586,12 +80108,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_alltn_e" - sbo: "SBO:0000627" - !!omap @@ -89602,12 +80119,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_tre_e" - sbo: "SBO:0000627" - !!omap @@ -89618,12 +80130,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gam6p_e" - sbo: "SBO:0000627" - !!omap @@ -89637,16 +80144,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AKGMAL" - metanetx.reaction: "MNXR95659" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1654" - name: "ammonium exchange" @@ -89655,12 +80157,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_nh4_e" - metanetx.reaction: "MNXR101948" - sbo: "SBO:0000627" @@ -89673,16 +80170,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AMPtn" - metanetx.reaction: "MNXR95830" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1658" - name: "asparagine transport" @@ -89692,16 +80184,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR508C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ASNtm" - metanetx.reaction: "MNXR96069" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1659" - name: "aspartate-glutamate transporter" @@ -89713,16 +80200,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ASPGLUtp" - metanetx.reaction: "MNXR96083" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1660" - name: "ATP diffusion" @@ -89732,16 +80214,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ATPtn" - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1661" - name: "ATP transport" @@ -89751,15 +80228,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1663" - name: "bicarbonate exchange" @@ -89768,12 +80240,7 @@ - lower_bound: 0 - upper_bound: 0 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_hco3_e" - metanetx.reaction: "MNXR100483" - sbo: "SBO:0000627" @@ -89788,17 +80255,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HCO3Em" - kegg.reaction: "R00132" - metanetx.reaction: "MNXR100482" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1665" - name: "bicarbonate formation" @@ -89810,17 +80272,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HCO3En" - kegg.reaction: "R00132" - metanetx.reaction: "MNXR100482" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1667" - name: "bicarbonate formation" @@ -89832,17 +80289,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNL036W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HCO3E" - kegg.reaction: "R00132" - metanetx.reaction: "MNXR100482" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1668" - name: "bicarbonate formation" @@ -89854,17 +80306,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HCO3Ee" - kegg.reaction: "R00132" - metanetx.reaction: "MNXR100482" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1669" - name: "bicarbonate transport" @@ -89874,16 +80321,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HCO3tn" - metanetx.reaction: "MNXR100484" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1671" - name: "biotin exchange" @@ -89892,12 +80334,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_btn_e" - sbo: "SBO:0000627" - !!omap @@ -89908,12 +80345,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_co2_e" - sbo: "SBO:0000627" - !!omap @@ -89925,16 +80357,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CRNtp" - metanetx.reaction: "MNXR96906" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1674" - name: "carnitine-acetylcarnitine carrier" @@ -89946,16 +80373,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CRNCARtp" - metanetx.reaction: "MNXR96898" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1675" - name: "CDP transport" @@ -89965,16 +80387,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CDPtn" - metanetx.reaction: "MNXR96562" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1676" - name: "ceramide transport" @@ -89984,15 +80401,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137412" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1677" - name: "ceramide transport" @@ -90002,15 +80414,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137414" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1678" - name: "ceramide transport" @@ -90020,14 +80427,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1679" - name: "ceramide transport" @@ -90037,15 +80439,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137413" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1680" - name: "ceramide transport" @@ -90055,15 +80452,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137415" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1681" - name: "ceramide transport" @@ -90073,14 +80465,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1682" - name: "cholestenol delta-isomerase, lumped reaction" @@ -90095,16 +80482,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CHLSTI" - metanetx.reaction: "MNXR96688" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1683" - name: "choline exchange" @@ -90113,12 +80495,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_chol_e" - sbo: "SBO:0000627" - !!omap @@ -90130,15 +80507,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL077C or YOR161C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96693" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1685" - name: "chorismate pyruvate lyase" @@ -90149,17 +80521,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CHRPL" - kegg.reaction: "R01302" - metanetx.reaction: "MNXR96711" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1686" - name: "citrate transport" @@ -90169,15 +80536,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96756" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1687" - name: "citrate exchange" @@ -90186,12 +80548,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_cit_e" - sbo: "SBO:0000627" - !!omap @@ -90205,16 +80562,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CITtcp" - metanetx.reaction: "MNXR96755" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1689" - name: "citrate/malate antiport" @@ -90226,16 +80578,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CITtap" - metanetx.reaction: "MNXR96753" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1690" - name: "CMP nucleosidase" @@ -90247,16 +80594,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CMPN" - metanetx.reaction: "MNXR96804" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1691" - name: "CO2 transport" @@ -90266,16 +80608,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CO2ter" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1694" - name: "CO2 transport" @@ -90285,16 +80622,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CO2tn" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1695" - name: "CO2 transport" @@ -90304,16 +80636,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CO2tp" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1696" - name: "CO2 transport" @@ -90323,16 +80650,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CO2tm" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1697" - name: "CO2 transport" @@ -90342,16 +80664,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CO2t" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1698" - name: "coenzyme A transport" @@ -90361,16 +80678,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "COAtr" - metanetx.reaction: "MNXR96815" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1699" - name: "coenzyme A transport" @@ -90380,16 +80692,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "COAtn" - metanetx.reaction: "MNXR96815" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1700" - name: "coenzyme A transport" @@ -90399,16 +80706,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "COAtp" - metanetx.reaction: "MNXR96815" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1702" - name: "cytidine exchange" @@ -90417,12 +80719,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_cytd_e" - sbo: "SBO:0000627" - !!omap @@ -90436,17 +80733,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CYTK1" - kegg.reaction: "R00512" - metanetx.reaction: "MNXR97047" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1704" - name: "cytidylate kinase (dCMP)" @@ -90458,17 +80750,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CYTK2" - kegg.reaction: "R01665" - metanetx.reaction: "MNXR97053" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1705" - name: "cytosine exchange" @@ -90477,12 +80764,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_csn_e" - sbo: "SBO:0000627" - !!omap @@ -90493,12 +80775,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_arab__D_e" - sbo: "SBO:0000627" - !!omap @@ -90510,15 +80787,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR342C or YHR092C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ARAB_Dt" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1708" - name: "D-erythrose 4-phosphate transport" @@ -90528,16 +80800,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "E4Ptm" - metanetx.reaction: "MNXR97843" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1709" - name: "D-fructose exchange" @@ -90546,12 +80813,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_fru_e" - sbo: "SBO:0000627" - !!omap @@ -90562,12 +80824,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gal_e" - kegg.reaction: "R10619" - metanetx.reaction: "MNXR113944" @@ -90580,12 +80837,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_galur_e" - sbo: "SBO:0000627" - !!omap @@ -90596,12 +80848,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_sbt__D_e" - sbo: "SBO:0000627" - !!omap @@ -90613,15 +80860,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GAM6Pt" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1714" - name: "D-glucose exchange" @@ -90630,12 +80872,7 @@ - lower_bound: -1 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_glc__D_e" - metanetx.reaction: "MNXR138465" - sbo: "SBO:0000627" @@ -90647,12 +80884,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_man_e" - sbo: "SBO:0000627" - !!omap @@ -90663,12 +80895,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_rib__D_e" - sbo: "SBO:0000627" - !!omap @@ -90680,16 +80907,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDL245C or YEL069C or YJR158W or YNR072W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SBT_Dt" - metanetx.reaction: "MNXR104288" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1718" - name: "D-xylose exchange" @@ -90698,12 +80920,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_xyl__D_e" - sbo: "SBO:0000627" - !!omap @@ -90715,15 +80932,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR092C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "XYLt" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1720" - name: "dADP transport" @@ -90733,16 +80945,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DADPtn" - metanetx.reaction: "MNXR97082" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1721" - name: "dCDP transport" @@ -90752,16 +80959,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DCDPtn" - metanetx.reaction: "MNXR97182" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1722" - name: "ATP deamination" @@ -90774,17 +80976,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ATPHs" - kegg.reaction: "R00088" - metanetx.reaction: "MNXR96130" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1723" - name: "dATP deamination" @@ -90797,16 +80994,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DATPHs" - metanetx.reaction: "MNXR97174" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1724" - name: "ADP deamination" @@ -90819,16 +81011,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R00123" - metanetx.reaction: "MNXR106399" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1725" - name: "dADP deamination" @@ -90841,14 +81028,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1726" - name: "deamino-NAD+ diffusion" @@ -90858,16 +81040,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DNADtn" - metanetx.reaction: "MNXR97625" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1727" - name: "decanoate exchange" @@ -90876,12 +81053,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_dca_e" - sbo: "SBO:0000627" - !!omap @@ -90893,16 +81065,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DADNt4" - metanetx.reaction: "MNXR97081" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1729" - name: "deoxyadenylate kinase" @@ -90914,17 +81081,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDL166C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DADK" - kegg.reaction: "R01547" - metanetx.reaction: "MNXR96117" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1730" - name: "deoxycytidine exchange" @@ -90933,12 +81095,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_dcyt_e" - sbo: "SBO:0000627" - !!omap @@ -90950,16 +81107,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DCYTt" - metanetx.reaction: "MNXR97208" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1732" - name: "deoxyguanosine transport" @@ -90969,16 +81121,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DGSNt" - metanetx.reaction: "MNXR97324" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1733" - name: "deoxyinosine transport" @@ -90988,16 +81135,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DINt" - metanetx.reaction: "MNXR97466" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1734" - name: "deoxyuridine kinase (ATP:deoxyuridine)" @@ -91010,17 +81152,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DURIK1" - kegg.reaction: "R02099" - metanetx.reaction: "MNXR97817" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1735" - name: "deoxyuridine transport" @@ -91030,16 +81167,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBL042C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DURIt" - metanetx.reaction: "MNXR97819" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1736" - name: "dephospho-CoA kinase" @@ -91052,17 +81184,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DPCOAK" - kegg.reaction: "R00130" - metanetx.reaction: "MNXR97762" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1737" - name: "dGDP transport" @@ -91072,16 +81199,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DGDPtn" - metanetx.reaction: "MNXR97314" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1738" - name: "dhnpt transport" @@ -91091,15 +81213,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DHNPTtm" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1739" - name: "diamine transaminase" @@ -91112,16 +81229,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR071C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DIAT" - metanetx.reaction: "MNXR97455" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1743" - name: "dihydrofolate transport" @@ -91131,16 +81243,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DHFtm" - metanetx.reaction: "MNXR97404" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1744" - name: "dihydroneopterin triphosphate pyrophosphatase" @@ -91153,17 +81260,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DNTPPA" - kegg.reaction: "R04638" - metanetx.reaction: "MNXR97680" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1745" - name: "dihydropteroate transport" @@ -91173,16 +81275,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DHPTtm" - metanetx.reaction: "MNXR142733" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1746" - name: "dihydroxyacetone phosphate transport" @@ -91192,17 +81289,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "22672422" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DHAPtm" - metanetx.reaction: "MNXR97366" - - pmid: "22672422" + - pubmed: "22672422" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1747" - name: "diphosphate transport" @@ -91212,16 +81304,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PPItx" - metanetx.reaction: "MNXR103112" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1748" - name: "dolichol phosphate transport" @@ -91231,15 +81318,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DOLP_ter" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1749" - name: "dTTP exchange" @@ -91248,12 +81330,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_dttp_e" - sbo: "SBO:0000627" - !!omap @@ -91265,16 +81342,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DTTPt" - metanetx.reaction: "MNXR97810" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1751" - name: "dUDP diffusion" @@ -91284,16 +81356,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DUDPtn" - metanetx.reaction: "MNXR97812" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1752" - name: "dUMP transport" @@ -91303,16 +81370,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DUMPtn" - metanetx.reaction: "MNXR97813" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1753" - name: "episterol exchange" @@ -91321,12 +81383,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_epist_e" - sbo: "SBO:0000627" - !!omap @@ -91338,16 +81395,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ERGTETROLter" - metanetx.reaction: "MNXR97951" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1757" - name: "ergosterol exchange" @@ -91356,12 +81408,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ergst_e" - sbo: "SBO:0000627" - !!omap @@ -91373,16 +81420,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ERGSTter" - metanetx.reaction: "MNXR97950" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1759" - name: "ergosterol transport" @@ -91392,15 +81434,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR97950" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1761" - name: "ethanol exchange" @@ -91409,12 +81446,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_etoh_e" - sbo: "SBO:0000627" - !!omap @@ -91426,16 +81458,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ETOHt" - metanetx.reaction: "MNXR97980" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1763" - name: "ethanol transport, mitochondrial" @@ -91445,16 +81472,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ETOHtm" - metanetx.reaction: "MNXR97980" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1764" - name: "ethanolamine exchange" @@ -91463,12 +81485,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_etha_e" - sbo: "SBO:0000627" - !!omap @@ -91479,12 +81496,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_1766" @@ -91495,16 +81507,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FRDPtm" - metanetx.reaction: "MNXR99646" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1770" - name: "fatty acid transport" @@ -91514,16 +81521,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FA100tp" - metanetx.reaction: "MNXR135772" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1771" - name: "fatty acid transport" @@ -91533,16 +81535,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FA120tp" - metanetx.reaction: "MNXR135773" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1772" - name: "fatty acid transport" @@ -91552,16 +81549,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FA140tp" - metanetx.reaction: "MNXR128297" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1774" - name: "fatty acid transport" @@ -91571,16 +81563,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FA160tp" - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1775" - name: "fatty acid transport" @@ -91590,15 +81577,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FA161tp" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1776" - name: "fatty acid transport" @@ -91608,16 +81590,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FA80tp" - metanetx.reaction: "MNXR99126" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1777" - name: "myristate (n-C14:0) transport" @@ -91627,16 +81604,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TTDCAtr" - metanetx.reaction: "MNXR128297" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1788" - name: "fecosterol exchange" @@ -91645,12 +81617,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_fecost_e" - sbo: "SBO:0000627" - !!omap @@ -91665,17 +81632,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL045C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FMNATm" - kegg.reaction: "R00161" - metanetx.reaction: "MNXR95501" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1791" - name: "FMN exchange" @@ -91684,12 +81646,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_fmn_e" - sbo: "SBO:0000627" - !!omap @@ -91700,12 +81657,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_fol_e" - sbo: "SBO:0000627" - !!omap @@ -91716,12 +81668,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_for_e" - sbo: "SBO:0000627" - !!omap @@ -91733,16 +81680,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FORtm" - metanetx.reaction: "MNXR99620" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1795" - name: "formate transport" @@ -91752,16 +81694,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNL065W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FORt" - metanetx.reaction: "MNXR99620" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1796" - name: "formate transport" @@ -91771,16 +81708,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FUMtr" - metanetx.reaction: "MNXR99715" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1797" - name: "fructose-1-phosphate kinase" @@ -91793,15 +81725,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "FRUK" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1798" - name: "fumarate exchange" @@ -91810,12 +81737,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_fum_e" - sbo: "SBO:0000627" - !!omap @@ -91826,12 +81748,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_4abut_e" - sbo: "SBO:0000627" - !!omap @@ -91843,16 +81760,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GDPtg" - metanetx.reaction: "MNXR100096" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1802" - name: "GDP transport" @@ -91862,16 +81774,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GDPtn" - metanetx.reaction: "MNXR100096" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1803" - name: "GDP-alpha-D-mannose transport" @@ -91881,15 +81788,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL225W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR131177" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1805" - name: "glucose transport, vacuolar" @@ -91899,16 +81801,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR241C or YGL104C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLCtv" - metanetx.reaction: "MNXR100188" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1806" - name: "glutathione disulfide exchange" @@ -91917,12 +81814,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gthox_e" - sbo: "SBO:0000627" - !!omap @@ -91933,12 +81825,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gthrd_e" - sbo: "SBO:0000627" - !!omap @@ -91949,12 +81836,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_glyc_e" - sbo: "SBO:0000627" - !!omap @@ -91966,17 +81848,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "22672422" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLYC3Ptm" - metanetx.reaction: "MNXR100308" - - pmid: "22672422" + - pubmed: "22672422" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1810" - name: "L-glycine exchange" @@ -91985,12 +81862,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gly_e" - sbo: "SBO:0000627" - !!omap @@ -92002,16 +81874,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR058W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLYtm" - metanetx.reaction: "MNXR100371" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1812" - name: "glycoaldehyde transport" @@ -92021,16 +81888,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GCALDtm" - metanetx.reaction: "MNXR100061" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1813" - name: "glycoaldehyde transport" @@ -92040,16 +81902,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GCALDt" - metanetx.reaction: "MNXR100061" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1814" - name: "glycolaldehyde exchange" @@ -92058,12 +81915,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gcald_e" - sbo: "SBO:0000627" - !!omap @@ -92074,12 +81926,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_glx_e" - sbo: "SBO:0000627" - !!omap @@ -92091,16 +81938,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNL065W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLXt" - metanetx.reaction: "MNXR100306" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1817" - name: "glyoxylate transport" @@ -92110,16 +81952,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLXtp" - metanetx.reaction: "MNXR100306" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1818" - name: "guanine exchange" @@ -92128,12 +81965,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gua_e" - sbo: "SBO:0000627" - !!omap @@ -92145,16 +81977,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GUAtm" - metanetx.reaction: "MNXR100465" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1820" - name: "guanosine exchange" @@ -92163,12 +81990,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gsn_e" - sbo: "SBO:0000627" - !!omap @@ -92183,17 +82005,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GSNK" - kegg.reaction: "R01228" - metanetx.reaction: "MNXR100432" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1822" - name: "guanosine transport" @@ -92203,16 +82020,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GSNtm" - metanetx.reaction: "MNXR100433" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1823" - name: "guanosine transport" @@ -92222,16 +82034,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GSNt" - metanetx.reaction: "MNXR100433" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1824" - name: "H+ diffusion" @@ -92241,16 +82048,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "Ht" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1825" - name: "H+ diffusion" @@ -92260,16 +82062,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "Htr" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1826" - name: "H+ diffusion" @@ -92279,16 +82076,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "Htg" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1827" - name: "H+ diffusion" @@ -92298,15 +82090,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1829" - name: "H+ diffusion" @@ -92316,16 +82103,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HMR_1095" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1830" - name: "H+ diffusion" @@ -92335,16 +82117,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "Htx" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1831" - name: "H+ diffusion" @@ -92354,15 +82131,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1832" - name: "H+ exchange" @@ -92371,12 +82143,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_h_e" - sbo: "SBO:0000627" - !!omap @@ -92388,15 +82155,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR124347" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1834" - name: "hexadecanal exchange" @@ -92405,12 +82167,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_1835" @@ -92421,16 +82178,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HDCAt" - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1836" - name: "hexadecenoate (n-C16:1) transport" @@ -92440,15 +82192,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HDCEAt" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1837" - name: "L-histidine transport, mitochondrial" @@ -92458,15 +82205,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR147W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100649" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1839" - name: "hydrogen peroxide transport" @@ -92476,16 +82218,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "H2O2tn" - metanetx.reaction: "MNXR98640" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1840" - name: "hydroxymethylglutaryl-CoA transport" @@ -92495,16 +82232,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HMGCOAtm" - metanetx.reaction: "MNXR100661" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1841" - name: "hypoxanthine exchange" @@ -92513,12 +82245,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_hxan_e" - sbo: "SBO:0000627" - !!omap @@ -92530,16 +82257,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HYXNt" - metanetx.reaction: "MNXR100749" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1843" - name: "indol-3-ylacetaldehyde exchange" @@ -92548,12 +82270,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_id3acald_e" - sbo: "SBO:0000627" - !!omap @@ -92565,16 +82282,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ID3ACALDtm" - metanetx.reaction: "MNXR100791" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1845" - name: "indole-3-acetaldehyde transport" @@ -92584,16 +82296,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ID3ACALDt" - metanetx.reaction: "MNXR100791" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1846" - name: "indole-3-acetate transport" @@ -92603,16 +82310,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "IND3ACtm" - metanetx.reaction: "MNXR100833" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1847" - name: "inosine exchange" @@ -92621,12 +82323,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ins_e" - sbo: "SBO:0000627" - !!omap @@ -92638,16 +82335,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "INSt" - metanetx.reaction: "MNXR100849" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1849" - name: "inositol hexakisphosphate transport" @@ -92657,16 +82349,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MINOHPtn" - metanetx.reaction: "MNXR101585" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1850" - name: "insosine kinase" @@ -92679,17 +82366,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "INSK" - kegg.reaction: "R01131" - metanetx.reaction: "MNXR100845" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1851" - name: "IPC transport" @@ -92699,14 +82381,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1852" - name: "IPC transport" @@ -92716,14 +82393,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1853" - name: "IPC transport" @@ -92733,14 +82405,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1854" - name: "IPC transport" @@ -92750,14 +82417,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1855" - name: "IPC transport" @@ -92767,14 +82429,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1856" - name: "IPC transport" @@ -92784,14 +82441,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1857" - name: "IPC transport" @@ -92801,14 +82453,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1858" - name: "IPC transport" @@ -92818,14 +82465,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1859" - name: "IPC transport" @@ -92835,14 +82477,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1860" - name: "IPC transport" @@ -92852,14 +82489,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1861" - name: "iron(2+) exchange" @@ -92868,12 +82500,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_fe2_e" - sbo: "SBO:0000627" - !!omap @@ -92884,12 +82511,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_iamac_e" - sbo: "SBO:0000627" - !!omap @@ -92901,16 +82523,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "IAMOHt" - metanetx.reaction: "MNXR100775" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1864" - name: "isoamyl alcohol transport" @@ -92920,16 +82537,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "IAMOHtm" - metanetx.reaction: "MNXR100775" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1865" - name: "isoamylol exchange" @@ -92938,12 +82550,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_iamoh_e" - sbo: "SBO:0000627" - !!omap @@ -92954,12 +82561,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ibutoh_e" - sbo: "SBO:0000627" - !!omap @@ -92970,12 +82572,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ibutac_e" - sbo: "SBO:0000627" - !!omap @@ -92987,16 +82584,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "IBUTOHt" - metanetx.reaction: "MNXR100780" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1869" - name: "isobutyl alcohol transport" @@ -93006,16 +82598,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "IBUTOHtm" - metanetx.reaction: "MNXR100780" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1870" - name: "isobutyraldehyde exchange" @@ -93024,12 +82611,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_2mppal_e" - sbo: "SBO:0000627" - !!omap @@ -93043,15 +82625,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PHCHGSm" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1872" - name: "L-2-amino-3-oxobutanoate decarboxylation (spontaneous)" @@ -93063,17 +82640,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AOBUTDs" - kegg.reaction: "R03758" - metanetx.reaction: "MNXR95851" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1873" - name: "L-alanine exchange" @@ -93082,12 +82654,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ala__L_e" - sbo: "SBO:0000627" - !!omap @@ -93099,16 +82666,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ALAtmi" - metanetx.reaction: "MNXR95706" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1875" - name: "L-arabinitol exchange" @@ -93117,12 +82679,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_abt_e" - sbo: "SBO:0000627" - !!omap @@ -93134,16 +82691,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ABTt" - metanetx.reaction: "MNXR95190" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1877" - name: "L-arabinoase transport" @@ -93153,16 +82705,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR342C or YHR092C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ARAB_Lt" - metanetx.reaction: "MNXR135734" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1878" - name: "L-arabinose exchange" @@ -93171,12 +82718,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_arab__L_e" - sbo: "SBO:0000627" - !!omap @@ -93187,12 +82729,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_arg__L_e" - sbo: "SBO:0000627" - !!omap @@ -93203,12 +82740,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_asn__L_e" - sbo: "SBO:0000627" - !!omap @@ -93219,12 +82751,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_asp__L_e" - sbo: "SBO:0000627" - !!omap @@ -93236,16 +82763,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR100C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CRNtim" - metanetx.reaction: "MNXR96906" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1883" - name: "L-cysteine exchange" @@ -93254,12 +82776,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_cys__L_e" - sbo: "SBO:0000627" - !!omap @@ -93271,16 +82788,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "E4HGLUtm" - metanetx.reaction: "MNXR97841" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1885" - name: "L-erythro-4-hydroxyglutamate transport" @@ -93290,16 +82802,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "E4HGLUtp" - metanetx.reaction: "MNXR97841" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1886" - name: "L-glucitol exchange" @@ -93308,12 +82815,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_sbt__L_e" - sbo: "SBO:0000627" - !!omap @@ -93327,17 +82829,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "G5SADs" - kegg.reaction: "R03314" - metanetx.reaction: "MNXR99897" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1889" - name: "L-glutamate exchange" @@ -93346,12 +82843,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_glu__L_e" - sbo: "SBO:0000627" - !!omap @@ -93363,15 +82855,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100301" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1891" - name: "L-glutamine exchange" @@ -93380,12 +82867,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gln__L_e" - sbo: "SBO:0000627" - !!omap @@ -93397,15 +82879,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100259" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1893" - name: "L-histidine exchange" @@ -93414,12 +82891,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_his__L_e" - sbo: "SBO:0000627" - !!omap @@ -93431,16 +82903,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "r2535" - metanetx.reaction: "MNXR100678" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1896" - name: "L-homoserine exchange" @@ -93449,12 +82916,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_hom__L_e" - sbo: "SBO:0000627" - !!omap @@ -93465,12 +82927,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ile__L_e" - sbo: "SBO:0000627" - !!omap @@ -93482,16 +82939,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ILEtmi" - metanetx.reaction: "MNXR100824" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1899" - name: "L-leucine exchange" @@ -93500,12 +82952,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_leu__L_e" - sbo: "SBO:0000627" - !!omap @@ -93516,12 +82963,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_lys__L_e" - sbo: "SBO:0000627" - !!omap @@ -93533,16 +82975,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MALt" - metanetx.reaction: "MNXR101367" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1902" - name: "L-methionine exchange" @@ -93551,12 +82988,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_met__L_e" - sbo: "SBO:0000627" - !!omap @@ -93567,12 +82999,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_phe__L_e" - sbo: "SBO:0000627" - !!omap @@ -93583,12 +83010,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pro__L_e" - sbo: "SBO:0000627" - !!omap @@ -93600,16 +83022,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PROtm" - metanetx.reaction: "MNXR103213" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1906" - name: "L-serine exchange" @@ -93618,12 +83035,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ser__L_e" - sbo: "SBO:0000627" - !!omap @@ -93635,15 +83047,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKR039W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104354" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1908" - name: "L-sorbitol transport" @@ -93653,16 +83060,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDL245C or YEL069C or YJR158W or YNR072W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SBT_Lt" - metanetx.reaction: "MNXR104289" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1909" - name: "L-sorbose exchange" @@ -93671,12 +83073,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_srb__L_e" - sbo: "SBO:0000627" - !!omap @@ -93688,16 +83085,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SRB_Lt" - metanetx.reaction: "MNXR104533" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1911" - name: "L-threonine exchange" @@ -93706,12 +83098,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_thr__L_e" - sbo: "SBO:0000627" - !!omap @@ -93722,12 +83109,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_trp__L_e" - sbo: "SBO:0000627" - !!omap @@ -93738,12 +83120,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_tyr__L_e" - sbo: "SBO:0000627" - !!omap @@ -93754,12 +83131,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_val__L_e" - sbo: "SBO:0000627" - !!omap @@ -93770,12 +83142,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_lanost_e" - sbo: "SBO:0000627" - !!omap @@ -93786,12 +83153,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ddca_e" - sbo: "SBO:0000627" - !!omap @@ -93803,15 +83165,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR147W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101269" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1920" - name: "M(IP)2C transport" @@ -93821,14 +83178,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1921" - name: "M(IP)2C transport" @@ -93838,14 +83190,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1922" - name: "M(IP)2C transport" @@ -93855,14 +83202,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1923" - name: "M(IP)2C transport" @@ -93872,14 +83214,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1924" - name: "M(IP)2C transport" @@ -93889,14 +83226,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1925" - name: "M(IP)2C transport" @@ -93906,14 +83238,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1926" - name: "M(IP)2C transport" @@ -93923,14 +83250,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1927" - name: "M(IP)2C transport" @@ -93940,14 +83262,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1928" - name: "M(IP)2C transport" @@ -93957,14 +83274,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1929" - name: "M(IP)2C transport" @@ -93974,14 +83286,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1930" - name: "malate/oxaloacetate shuttle" @@ -93993,16 +83300,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MALOAAtp" - metanetx.reaction: "MNXR101346" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1931" - name: "maltose exchange" @@ -94011,12 +83313,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_malt_e" - metanetx.reaction: "MNXR123950" - sbo: "SBO:0000627" @@ -94029,16 +83326,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MANNANter" - metanetx.reaction: "MNXR101396" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1935" - name: "methionine transport" @@ -94048,16 +83340,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR508C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "METtm" - metanetx.reaction: "MNXR101493" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1936" - name: "methylglyoxal synthase" @@ -94068,17 +83355,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MGSA" - kegg.reaction: "R01016" - metanetx.reaction: "MNXR101551" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1937" - name: "MIPC transport" @@ -94088,14 +83370,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1938" - name: "MIPC transport" @@ -94105,14 +83382,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1939" - name: "MIPC transport" @@ -94122,14 +83394,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1940" - name: "MIPC transport" @@ -94139,14 +83406,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1941" - name: "MIPC transport" @@ -94156,14 +83418,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1942" - name: "MIPC transport" @@ -94173,14 +83430,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1943" - name: "MIPC transport" @@ -94190,14 +83442,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1944" - name: "MIPC transport" @@ -94207,14 +83454,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1945" - name: "MIPC transport" @@ -94224,14 +83466,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1946" - name: "MIPC transport" @@ -94241,14 +83478,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1947" - name: "myo-inositol exchange" @@ -94257,12 +83489,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_inost_e" - sbo: "SBO:0000627" - !!omap @@ -94273,12 +83500,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_1963" @@ -94289,16 +83511,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NADPtru" - metanetx.reaction: "MNXR101896" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1964" - name: "NADPH transport" @@ -94308,16 +83525,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NADPHtru" - metanetx.reaction: "MNXR101894" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1965" - name: "NH3 transport" @@ -94327,16 +83539,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NH4tm" - metanetx.reaction: "MNXR101950" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1966" - name: "nicotinamide diffusion" @@ -94346,15 +83553,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101918" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1967" - name: "nicotinate exchange" @@ -94363,12 +83565,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_nac_e" - sbo: "SBO:0000627" - !!omap @@ -94379,12 +83576,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_nmn_e" - sbo: "SBO:0000627" - !!omap @@ -94396,16 +83588,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NMNtn" - metanetx.reaction: "MNXR101972" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1971" - name: "NMN transport" @@ -94415,15 +83602,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101972" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1972" - name: "NMN transport" @@ -94433,16 +83615,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NMNP" - metanetx.reaction: "MNXR101972" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1974" - name: "nucleoside-diphosphatase (dGDP)" @@ -94455,16 +83632,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NDP4" - metanetx.reaction: "MNXR101929" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1975" - name: "nucleoside-triphosphatase (dGTP)" @@ -94477,16 +83649,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "NTP4" - metanetx.reaction: "MNXR102044" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1976" - name: "O-acetylcarnintine transport into mitochondria" @@ -94496,16 +83663,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR100C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ACRNtm" - metanetx.reaction: "MNXR95412" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1977" - name: "O2 transport" @@ -94515,16 +83677,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "O2ter" - metanetx.reaction: "MNXR102090" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1978" - name: "O2 transport" @@ -94534,16 +83691,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "O2tm" - metanetx.reaction: "MNXR102090" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1979" - name: "O2 transport" @@ -94553,16 +83705,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "O2t" - metanetx.reaction: "MNXR102090" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1980" - name: "O2 transport" @@ -94572,16 +83719,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "O2tp" - metanetx.reaction: "MNXR102090" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1981" - name: "octadecanoate (n-C18:0) transport" @@ -94591,16 +83733,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "OCDCAt" - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1984" - name: "octanoate exchange" @@ -94609,12 +83746,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_octa_e" - sbo: "SBO:0000627" - !!omap @@ -94625,12 +83757,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_orn_e" - sbo: "SBO:0000627" - !!omap @@ -94642,16 +83769,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "OAAt" - metanetx.reaction: "MNXR102100" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1989" - name: "oxaloacetate(2-) exchange" @@ -94660,12 +83782,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_oaa_e" - kegg.reaction: "R00363" - metanetx.reaction: "MNXR125856" @@ -94679,16 +83796,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YJL212C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GTHOXti" - metanetx.reaction: "MNXR100443" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_1991" - name: "oxidized thioredoxin transport" @@ -94698,16 +83810,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TRDOXtp" - metanetx.reaction: "MNXR104921" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1992" - name: "oxygen exchange" @@ -94716,12 +83823,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_o2_e" - sbo: "SBO:0000627" - !!omap @@ -94732,12 +83834,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_hdca_e" - sbo: "SBO:0000627" - !!omap @@ -94748,12 +83845,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_hdcea_e" - sbo: "SBO:0000627" - !!omap @@ -94765,16 +83857,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PMTCOAFABP1tc" - metanetx.reaction: "MNXR103046" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1996" - name: "panthetheine 4'-phosphate transport" @@ -94784,16 +83871,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PAN4Ptm" - metanetx.reaction: "MNXR102344" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1997" - name: "panthetheine-phosphate adenylyltransferase" @@ -94806,17 +83888,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PTPATim" - kegg.reaction: "R03035" - metanetx.reaction: "MNXR95892" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1998" - name: "PAP uniport" @@ -94826,16 +83903,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PAPt" - metanetx.reaction: "MNXR102382" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_1999" - name: "pectin exchange" @@ -94844,12 +83916,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pectin_e" - sbo: "SBO:0000627" - !!omap @@ -94860,12 +83927,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pheac_e" - sbo: "SBO:0000627" - !!omap @@ -94876,12 +83938,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pacald_e" - sbo: "SBO:0000627" - !!omap @@ -94893,16 +83950,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PACALDt" - metanetx.reaction: "MNXR102312" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2003" - name: "phenylacetaldehyde transport" @@ -94912,16 +83964,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PACALDtm" - metanetx.reaction: "MNXR102312" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2004" - name: "phenylalanine transport" @@ -94931,15 +83978,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR102637" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2005" - name: "phosphate exchange" @@ -94948,12 +83990,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pi_e" - sbo: "SBO:0000627" - !!omap @@ -94965,15 +84002,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR013C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2020" - name: "potassium exchange" @@ -94982,12 +84014,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_k_e" - sbo: "SBO:0000627" - !!omap @@ -94999,16 +84026,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PPPG9tm" - metanetx.reaction: "MNXR103127" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2023" - name: "PRPP transport" @@ -95018,16 +84040,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PRPPtm" - metanetx.reaction: "MNXR103216" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2024" - name: "putrescine exchange" @@ -95036,12 +84053,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ptrc_e" - sbo: "SBO:0000627" - !!omap @@ -95056,17 +84068,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YNR027W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PYDXK" - kegg.reaction: "R00174" - metanetx.reaction: "MNXR103361" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2026" - name: "pyridoxamine kinase" @@ -95079,17 +84086,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PYDAMK" - kegg.reaction: "R02493" - metanetx.reaction: "MNXR103357" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2027" - name: "pyridoxamine phosphatase" @@ -95101,17 +84103,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HYPOE" - kegg.reaction: "R02494" - metanetx.reaction: "MNXR100763" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2028" - name: "pyridoxine exchange" @@ -95120,12 +84117,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pydxn_e" - sbo: "SBO:0000627" - !!omap @@ -95139,17 +84131,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PMDPHT" - kegg.reaction: "R07280" - metanetx.reaction: "MNXR96145" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2031" - name: "pyrimidine-nucleoside phosphorylase (uracil)" @@ -95161,17 +84148,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PYNP2r" - kegg.reaction: "R01876" - metanetx.reaction: "MNXR103377" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2032" - name: "pyrophosphate transport" @@ -95181,16 +84163,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PPItm" - metanetx.reaction: "MNXR103112" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2033" - name: "pyruvate exchange" @@ -95199,12 +84176,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pyr_e" - sbo: "SBO:0000627" - !!omap @@ -95216,16 +84188,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "QULNtm" - metanetx.reaction: "MNXR103401" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2037" - name: "reduced thioredoxin transport" @@ -95235,15 +84202,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TRDRDtp" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2038" - name: "riboflavin exchange" @@ -95252,12 +84214,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ribflv_e" - sbo: "SBO:0000627" - !!omap @@ -95269,16 +84226,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "RIBFLVtm" - metanetx.reaction: "MNXR104033" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2040" - name: "riboflavin transport" @@ -95288,16 +84240,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR306C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "r1106" - metanetx.reaction: "MNXR104033" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2041" - name: "ribose transporter" @@ -95307,16 +84254,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR342C or YHR092C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "RIBt" - metanetx.reaction: "MNXR104036" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2042" - name: "S-adenosyl-L-homocysteine transport" @@ -95326,16 +84268,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AHCYStm" - metanetx.reaction: "MNXR95626" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2043" - name: "S-adenosyl-L-methionine exchange" @@ -95344,12 +84281,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_amet_e" - sbo: "SBO:0000627" - !!omap @@ -95360,12 +84292,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_mmet_e" - sbo: "SBO:0000627" - !!omap @@ -95377,16 +84304,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR508C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "r1435" - metanetx.reaction: "MNXR104354" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2046" - name: "sn-glycero-3-phosphocholine exchange" @@ -95395,12 +84317,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_g3pc_e" - sbo: "SBO:0000627" - !!omap @@ -95411,12 +84328,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_na1_e" - sbo: "SBO:0000627" - !!omap @@ -95431,16 +84343,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SPMDAT1" - metanetx.reaction: "MNXR104491" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2051" - name: "spermidine exchange" @@ -95449,12 +84356,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_spmd_e" - sbo: "SBO:0000627" - !!omap @@ -95465,12 +84367,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_sprm_e" - sbo: "SBO:0000627" - !!omap @@ -95482,16 +84379,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SQLter" - metanetx.reaction: "MNXR104530" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2054" - name: "squalene-2,3-epoxide transport" @@ -95501,16 +84393,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SQ23EPXter" - metanetx.reaction: "MNXR104505" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2055" - name: "stearate exchange" @@ -95519,12 +84406,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ocdca_e" - sbo: "SBO:0000627" - !!omap @@ -95535,12 +84417,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_succ_e" - sbo: "SBO:0000627" - !!omap @@ -95552,16 +84429,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "SUCCt" - metanetx.reaction: "MNXR104619" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2058" - name: "sucrose exchange" @@ -95570,12 +84442,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_sucr_e" - sbo: "SBO:0000627" - !!omap @@ -95586,12 +84453,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_so4_e" - sbo: "SBO:0000627" - !!omap @@ -95602,12 +84464,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_so3_e" - metanetx.reaction: "MNXR122251" - sbo: "SBO:0000627" @@ -95619,12 +84476,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_taur_e" - sbo: "SBO:0000627" - !!omap @@ -95636,15 +84488,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137463" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2064" - name: "thiamin phosphatase" @@ -95656,17 +84503,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDL024C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "THMP" - kegg.reaction: "R02135" - metanetx.reaction: "MNXR104823" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2065" - name: "thiaminase" @@ -95679,17 +84521,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TMN" - kegg.reaction: "R02133" - metanetx.reaction: "MNXR104901" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2066" - name: "thiamine(1+) diphosphate(1-) exchange" @@ -95698,12 +84535,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_thmpp_e" - sbo: "SBO:0000627" - !!omap @@ -95714,12 +84546,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_thm_e" - sbo: "SBO:0000627" - !!omap @@ -95730,12 +84557,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_thmmp_e" - sbo: "SBO:0000627" - !!omap @@ -95749,17 +84571,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TMPK" - kegg.reaction: "R00617" - metanetx.reaction: "MNXR104907" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2070" - name: "thiazole phosphate synthesis (ribose 5-phosphate)" @@ -95779,16 +84596,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "THZPSN2_SC" - metanetx.reaction: "MNXR104860" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2071" - name: "thiazole phosphate synthesis (xylulose 5-phosphate)" @@ -95808,16 +84620,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "THZPSN1_SC" - metanetx.reaction: "MNXR104859" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2072" - name: "threonine transport" @@ -95827,16 +84634,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR508C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "thr_mt" - metanetx.reaction: "MNXR104852" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2073" - name: "thymidine exchange" @@ -95845,12 +84647,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_thymd_e" - sbo: "SBO:0000627" - !!omap @@ -95865,17 +84662,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TMDK1" - kegg.reaction: "R01567" - metanetx.reaction: "MNXR104885" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2075" - name: "thymidine transport" @@ -95885,16 +84677,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "THYMDt1" - metanetx.reaction: "MNXR104821" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2080" - name: "trehalose vacuolar transport" @@ -95904,15 +84691,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104933" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2082" - name: "tryptophan transport" @@ -95922,15 +84704,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104949" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2083" - name: "tryptophol exchange" @@ -95939,12 +84716,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ind3eth_e" - sbo: "SBO:0000627" - !!omap @@ -95956,16 +84728,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "IND3ETHt" - metanetx.reaction: "MNXR100834" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2085" - name: "tryptophol transport" @@ -95975,16 +84742,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "IND3ETHtm" - metanetx.reaction: "MNXR100834" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2086" - name: "tyrosine transport" @@ -95994,16 +84756,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "r1078" - metanetx.reaction: "MNXR105002" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2087" - name: "tyrosine transport" @@ -96013,15 +84770,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR105002" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2089" - name: "UMP transport" @@ -96031,16 +84783,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "UMPtn" - metanetx.reaction: "MNXR105127" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2090" - name: "uracil exchange" @@ -96049,12 +84796,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ura_e" - sbo: "SBO:0000627" - !!omap @@ -96065,12 +84807,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_urea_e" - sbo: "SBO:0000627" - !!omap @@ -96081,12 +84818,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_uri_e" - sbo: "SBO:0000627" - !!omap @@ -96098,16 +84830,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "VALt5m" - metanetx.reaction: "MNXR105190" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2094" - name: "water diffusion" @@ -96117,16 +84844,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLL052C or YPR192W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "H2Oter" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2095" - name: "water diffusion" @@ -96136,16 +84858,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "H2Otg" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2096" - name: "water diffusion" @@ -96155,16 +84872,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "H2Otm" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2097" - name: "water diffusion" @@ -96174,16 +84886,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "H2Otn" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2098" - name: "water diffusion" @@ -96193,16 +84900,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "H2Otp" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2099" - name: "water diffusion" @@ -96212,16 +84914,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "H2Otv" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2100" - name: "water exchange" @@ -96230,12 +84927,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_h2o_e" - sbo: "SBO:0000627" - !!omap @@ -96247,16 +84939,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "XANt" - metanetx.reaction: "MNXR105226" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2102" - name: "xanthosine exchange" @@ -96265,12 +84952,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_xtsn_e" - sbo: "SBO:0000627" - !!omap @@ -96282,16 +84964,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "XTSNtr" - metanetx.reaction: "MNXR105247" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2104" - name: "xylitol exchange" @@ -96300,12 +84977,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_xylt_e" - sbo: "SBO:0000627" - !!omap @@ -96317,16 +84989,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDL245C or YLL043W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "XYLTt" - metanetx.reaction: "MNXR105264" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2106" - name: "zymosterol exchange" @@ -96335,12 +85002,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_zymst_e" - sbo: "SBO:0000627" - !!omap @@ -96352,15 +85014,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL013C or YOR011W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR105285" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2108" - name: "lipid pseudoreaction - merge" @@ -96371,15 +85028,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "18687109" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - - pmid: "18687109" + - pubmed: "18687109" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_2111" - name: "growth" @@ -96389,15 +85041,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - objective_coefficient: 1 - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137261" - sbo: "SBO:0000632" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2125" - name: "coenzyme A: cytoplasm to LP" @@ -96407,17 +85054,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "22672422" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R00197" - metanetx.reaction: "MNXR138960" - - pmid: "22672422" + - pubmed: "22672422" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2129" - name: "proton leak" @@ -96427,17 +85069,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "22672422" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "Htm" - metanetx.reaction: "MNXR100765" - - pmid: "22672422" + - pubmed: "22672422" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2134" - name: "14-demethyllanosterol exchange" @@ -96446,12 +85083,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_2136" @@ -96462,15 +85094,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137169" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2137" - name: "ergosta-5,7,22,24(28)-tetraen-3beta-ol exchange" @@ -96479,12 +85106,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_2139" @@ -96495,15 +85117,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR97951" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2184" - name: "octanoate (n-C8:0) transport" @@ -96513,16 +85130,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "OCTAt" - metanetx.reaction: "MNXR99126" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2185" - name: "decanoate (n-C10:0) transport" @@ -96532,16 +85144,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DCATDc" - metanetx.reaction: "MNXR135772" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2186" - name: "laurate (n-C12:0) transport" @@ -96551,16 +85158,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "r2444" - metanetx.reaction: "MNXR135773" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2187" - name: "butyrate exchange" @@ -96569,12 +85171,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_but_e" - sbo: "SBO:0000627" - !!omap @@ -96585,12 +85182,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_hxa_e" - sbo: "SBO:0000627" - !!omap @@ -96601,12 +85193,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ocdcea_e" - sbo: "SBO:0000627" - !!omap @@ -96618,15 +85205,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNL065W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "BUTt" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2191" - name: "hexanoate (n-C6:0) transport" @@ -96636,16 +85218,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNL065W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HXAt3" - metanetx.reaction: "MNXR100750" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2192" - name: "octadecenoate (n-C18:1) transport" @@ -96655,16 +85232,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "OCDCEAt" - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2193" - name: "myristate exchange" @@ -96673,12 +85245,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ttdca_e" - sbo: "SBO:0000627" - !!omap @@ -96690,14 +85257,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2230" - name: "hexanoate (n-C6:0) transport, cytoplasm-peroxisome" @@ -96707,16 +85269,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HXAt2" - metanetx.reaction: "MNXR100750" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2231" - name: "octadecenoate (n-C18:1) transport, cytoplasm-peroxisome" @@ -96726,15 +85283,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKL188C and YPL147W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_2812" - name: "lysoPC acyltransferase (1-16:0, 2-16:1), mitochondrial membrane" @@ -96746,14 +85298,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2813" - name: "lysoPC acyltransferase (1-16:0, 2-18:1), mitochondrial membrane" @@ -96765,14 +85312,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2814" - name: "lysoPC acyltransferase (1-16:1, 2-16:1), mitochondrial membrane" @@ -96784,14 +85326,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2815" - name: "lysoPC acyltransferase (1-16:1, 2-18:1), mitochondrial membrane" @@ -96803,14 +85340,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2816" - name: "lysoPC acyltransferase (1-18:0, 2-16:1), mitochondrial membrane" @@ -96822,14 +85354,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2817" - name: "lysoPC acyltransferase (1-18:0, 2-18:1), mitochondrial membrane" @@ -96841,14 +85368,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2818" - name: "lysoPC acyltransferase (1-18:1, 2-16:1), mitochondrial membrane" @@ -96860,14 +85382,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_2819" - name: "lysoPC acyltransferase (1-18:1, 2-18:1), mitochondrial membrane" @@ -96879,14 +85396,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3332" - name: "PA kinase (1-16:0, 2-16:1), Golgi membrane" @@ -96899,14 +85411,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3333" - name: "PA kinase (1-16:1, 2-16:1), Golgi membrane" @@ -96919,14 +85426,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3334" - name: "PA kinase (1-18:0, 2-16:1), Golgi membrane" @@ -96939,14 +85441,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3335" - name: "PA kinase (1-18:1, 2-16:1), Golgi membrane" @@ -96959,14 +85456,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3336" - name: "PA kinase (1-16:0, 2-18:1), Golgi membrane" @@ -96979,14 +85471,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3337" - name: "PA kinase (1-16:1, 2-18:1), Golgi membrane" @@ -96999,14 +85486,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3338" - name: "PA kinase (1-18:0, 2-18:1), Golgi membrane" @@ -97019,14 +85501,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3339" - name: "PA kinase (1-18:1, 2-18:1), Golgi membrane" @@ -97039,14 +85516,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3340" - name: "PA kinase (1-16:0, 2-16:1), vacuolar membrane" @@ -97059,14 +85531,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3341" - name: "PA kinase (1-16:1, 2-16:1), vacuolar membrane" @@ -97079,14 +85546,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3342" - name: "PA kinase (1-18:0, 2-16:1), vacuolar membrane" @@ -97099,14 +85561,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3343" - name: "PA kinase (1-18:1, 2-16:1), vacuolar membrane" @@ -97119,14 +85576,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3344" - name: "PA kinase (1-16:0, 2-18:1), vacuolar membrane" @@ -97139,14 +85591,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3345" - name: "PA kinase (1-16:1, 2-18:1), vacuolar membrane" @@ -97159,14 +85606,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3346" - name: "PA kinase (1-18:0, 2-18:1), vacuolar membrane" @@ -97179,14 +85621,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3347" - name: "PA kinase (1-18:1, 2-18:1), vacuolar membrane" @@ -97199,14 +85636,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3508" - name: "laurate transport, cytoplasm-ER membrane" @@ -97216,15 +85648,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR135773" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3509" - name: "myristate transport, cytoplasm-ER membrane" @@ -97234,15 +85661,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR128297" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3510" - name: "palmitate transport, cytoplasm-ER membrane" @@ -97252,15 +85674,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3511" - name: "palmitoleate transport, cytoplasm-ER membrane" @@ -97270,14 +85687,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3512" - name: "stearate transport, cytoplasm-ER membrane" @@ -97287,15 +85699,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3513" - name: "oleate transport, cytoplasm-ER membrane" @@ -97305,15 +85712,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3514" - name: "malonyl-CoA transport, cytoplasm-ER membrane" @@ -97323,14 +85725,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3515" - name: "lauroyl-CoA transport, cytoplasm-ER membrane" @@ -97340,14 +85737,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3516" - name: "myristoyl-CoA transport, cytoplasm-ER membrane" @@ -97357,14 +85749,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3517" - name: "palmitoyl-CoA transport, cytoplasm-ER membrane" @@ -97374,15 +85761,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR103046" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3518" - name: "palmitoleoyl-CoA transport, cytoplasm-ER membrane" @@ -97392,14 +85774,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3519" - name: "stearoyl-CoA transport, cytoplasm-ER membrane" @@ -97409,15 +85786,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104598" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3520" - name: "oleoyl-CoA transport, cytoplasm-ER membrane" @@ -97427,15 +85799,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR128426" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3521" - name: "icosanoyl-CoA transport, cytoplasm-ER membrane" @@ -97445,14 +85812,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3522" - name: "docosanoyl-CoA transport, cytoplasm-ER membrane" @@ -97462,14 +85824,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3523" - name: "tetracosanoyl-CoA transport, cytoplasm-ER membrane" @@ -97479,15 +85836,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137463" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3524" - name: "hexacosanoyl-CoA transport, cytoplasm-ER membrane" @@ -97497,15 +85849,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR124347" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3525" - name: "H+ transport, cytoplasm-ER membrane" @@ -97515,15 +85862,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3526" - name: "H2O transport, cytoplasm-ER membrane" @@ -97533,15 +85875,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLL052C or YPR192W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3527" - name: "CO2 transport, cytoplasm-ER membrane" @@ -97551,15 +85888,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3528" - name: "coenzyme A transport, cytoplasm-ER membrane" @@ -97569,15 +85901,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96815" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3529" - name: "NADPH transport, cytoplasm-ER membrane" @@ -97587,15 +85914,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101894" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3530" - name: "NADP(+) transport, cytoplasm-ER membrane" @@ -97605,15 +85927,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101896" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3531" - name: "O2 transport, cytoplasm-ER membrane" @@ -97623,15 +85940,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR102090" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3532" - name: "NADH transport, cytoplasm-ER membrane" @@ -97641,15 +85953,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101881" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3533" - name: "NAD transport, cytoplasm-ER membrane" @@ -97659,15 +85966,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101900" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3534" - name: "glycerol 3-phosphate transport, cytoplasm-ER membrane" @@ -97677,15 +85979,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100308" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3535" - name: "dihydroxyacetone phosphate transport, cytoplasm-ER membrane" @@ -97695,15 +85992,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR97366" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3536" - name: "diphosphate transport, cytoplasm-ER membrane" @@ -97713,15 +86005,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR103112" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3537" - name: "phosphate transport, cytoplasm-ER membrane" @@ -97731,15 +86018,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3538" - name: "CTP transport, cytoplasm-ER membrane" @@ -97749,15 +86031,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96946" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3539" - name: "CDP transport, cytoplasm-ER membrane" @@ -97767,15 +86044,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96562" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3540" - name: "CMP transport, cytoplasm-ER membrane" @@ -97785,15 +86057,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96806" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3541" - name: "CDP-ethanolamine transport, cytoplasm-ER membrane" @@ -97803,14 +86070,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3542" - name: "CDP-choline transport, cytoplasm-ER membrane" @@ -97820,15 +86082,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR105436" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3543" - name: "ATP transport, cytoplasm-ER membrane" @@ -97838,15 +86095,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3544" - name: "AMP transport, cytoplasm-ER membrane" @@ -97856,15 +86108,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95830" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3545" - name: "L-serine transport, cytoplasm-ER membrane" @@ -97874,15 +86121,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKR039W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104354" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3546" - name: "myo-inositol transport, cytoplasm-ER membrane" @@ -97892,15 +86134,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100848" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3547" - name: "S-adenosyl-L-methionine transport, cytoplasm-ER membrane" @@ -97910,15 +86147,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95809" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3548" - name: "S-adenosyl-L-homocysteine transport, cytoplasm-ER membrane" @@ -97928,15 +86160,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95626" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3549" - name: "episterol transport, cytoplasm-ER membrane" @@ -97946,15 +86173,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR97944" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3550" - name: "fecosterol transport, cytoplasm-ER membrane" @@ -97964,15 +86186,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99529" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3551" - name: "lanosterol transport, cytoplasm-ER membrane" @@ -97982,15 +86199,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101014" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3552" - name: "ergosterol transport, cytoplasm-ER membrane" @@ -98000,15 +86212,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR97950" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3553" - name: "zymosterol transport, cytoplasm-ER membrane" @@ -98018,15 +86225,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR105285" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3554" - name: "diglyceride (1-16:0, 2-16:1) transport, cytoplasm-ER membrane" @@ -98036,14 +86238,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3555" - name: "diglyceride (1-16:1, 2-16:1) transport, cytoplasm-ER membrane" @@ -98053,14 +86250,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3556" - name: "diglyceride (1-18:0, 2-16:1) transport, cytoplasm-ER membrane" @@ -98070,14 +86262,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3557" - name: "diglyceride (1-18:1, 2-16:1) transport, cytoplasm-ER membrane" @@ -98087,14 +86274,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3558" - name: "diglyceride (1-16:0, 2-18:1) transport, cytoplasm-ER membrane" @@ -98104,14 +86286,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3559" - name: "diglyceride (1-16:1, 2-18:1) transport, cytoplasm-ER membrane" @@ -98121,14 +86298,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3560" - name: "diglyceride (1-18:0, 2-18:1) transport, cytoplasm-ER membrane" @@ -98138,14 +86310,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3561" - name: "diglyceride (1-18:1, 2-18:1) transport, cytoplasm-ER membrane" @@ -98155,14 +86322,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3562" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, cytoplasm-ER membrane" @@ -98172,14 +86334,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3563" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, cytoplasm-ER membrane" @@ -98189,14 +86346,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3564" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, cytoplasm-ER membrane" @@ -98206,14 +86358,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3565" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, cytoplasm-ER membrane" @@ -98223,14 +86370,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3566" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, cytoplasm-ER membrane" @@ -98240,14 +86382,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3567" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, cytoplasm-ER membrane" @@ -98257,14 +86394,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3568" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, cytoplasm-ER membrane" @@ -98274,14 +86406,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3569" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, cytoplasm-ER membrane" @@ -98291,14 +86418,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3570" - name: "sn-glycero-3-phosphocholine transport, ER membrane-cytoplasm" @@ -98308,15 +86430,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99874" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3571" - name: "hexadecanoate (n-C16:0) transport, cytoplasm-lipid particle" @@ -98326,15 +86443,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3572" - name: "hexadecenoate (n-C16:1) transport, cytoplasm-lipid particle" @@ -98344,14 +86456,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3573" - name: "octadecanoate (n-C18:0) transport, cytoplasm-lipid particle" @@ -98361,15 +86468,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3574" - name: "octadecenoate (n-C18:1) transport, cytoplasm-lipid particle" @@ -98379,15 +86481,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3575" - name: "lauroyl-CoA transport, cytoplasm-lipid particle" @@ -98397,14 +86494,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3576" - name: "myristoyl-CoA transport, cytoplasm-lipid particle" @@ -98414,14 +86506,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3577" - name: "palmitoyl-CoA transport, cytoplasm-lipid particle" @@ -98431,15 +86518,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR103046" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3578" - name: "palmitoleoyl-CoA transport, cytoplasm-lipid particle" @@ -98449,14 +86531,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3579" - name: "stearoyl-CoA transport, cytoplasm-lipid particle" @@ -98466,15 +86543,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104598" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3580" - name: "oleoyl-CoA transport, cytoplasm-lipid particle" @@ -98484,15 +86556,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR128426" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3581" - name: "glycerol 3-phosphate transport, cytoplasm-lipid particle" @@ -98502,15 +86569,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100308" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3582" - name: "dihydroxyacetone phosphate transport, cytoplasm-lipid particle" @@ -98520,15 +86582,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR97366" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3583" - name: "NADPH transport, cytoplasm-lipid particle" @@ -98538,15 +86595,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101894" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3584" - name: "NADP(+) transport, cytoplasm-lipid particle" @@ -98556,15 +86608,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101896" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3585" - name: "ATP transport, cytoplasm-lipid particle" @@ -98574,15 +86621,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3586" - name: "AMP transport, cytoplasm-lipid particle" @@ -98592,15 +86634,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95830" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3587" - name: "diphosphate transport, cytoplasm-lipid particle" @@ -98610,15 +86647,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR103112" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3588" - name: "diglyceride (1-16:0, 2-16:1) transport, cytoplasm-lipid particle" @@ -98628,14 +86660,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3589" - name: "diglyceride (1-16:1, 2-16:1) transport, cytoplasm-lipid particle" @@ -98645,14 +86672,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3590" - name: "diglyceride (1-18:0, 2-16:1) transport, cytoplasm-lipid particle" @@ -98662,14 +86684,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3591" - name: "diglyceride (1-18:1, 2-16:1) transport, cytoplasm-lipid particle" @@ -98679,14 +86696,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3592" - name: "diglyceride (1-16:0, 2-18:1) transport, cytoplasm-lipid particle" @@ -98696,14 +86708,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3593" - name: "diglyceride (1-16:1, 2-18:1) transport, cytoplasm-lipid particle" @@ -98713,14 +86720,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3594" - name: "diglyceride (1-18:0, 2-18:1) transport, cytoplasm-lipid particle" @@ -98730,14 +86732,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3595" - name: "diglyceride (1-18:1, 2-18:1) transport, cytoplasm-lipid particle" @@ -98747,14 +86744,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3596" - name: "H2O transport, cytoplasm-lipid particle" @@ -98764,15 +86756,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3597" - name: "glycerol transport, lipid particle-cytoplasm" @@ -98782,15 +86769,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100343" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3598" - name: "docosanoyl-CoA transport, lipid particle-cytoplasm" @@ -98800,14 +86782,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3599" - name: "tetracosanoyl-CoA transport, lipid particle-cytoplasm" @@ -98817,15 +86794,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137463" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3600" - name: "hexacosanoyl-CoA transport, lipid particle-cytoplasm" @@ -98835,15 +86807,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR124347" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3601" - name: "ATP transport, cytoplasm-cell envelope" @@ -98853,15 +86820,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3602" - name: "ADP transport, cytoplasm-cell envelope" @@ -98871,15 +86833,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3603" - name: "H+ transport, cytoplasm-cell envelope" @@ -98889,15 +86846,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3604" - name: "H2O transport, cytoplasm-cell envelope" @@ -98907,15 +86859,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YLL052C or YLL053C or YPR192W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3605" - name: "phosphate transport, cytoplasm-cell envelope" @@ -98925,15 +86872,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR037C or YJL198W or YML123C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3606" - name: "sn-glycero-3-phosphocholine transport, cell envelope-cytoplasm" @@ -98943,15 +86885,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR098C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99874" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3607" - name: "1-(sn-glycero-3-phospho)-1D-myo-inositol transport, cell envelope-cytoplasm" @@ -98961,15 +86898,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR098C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99888" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3608" - name: "palmitate transport, cell envelope-cytoplasm" @@ -98979,15 +86911,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3609" - name: "palmitoleate transport, cell envelope-cytoplasm" @@ -98997,14 +86924,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3610" - name: "stearate transport, cell envelope-cytoplasm" @@ -99014,15 +86936,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3611" - name: "oleate transport, cell envelope-cytoplasm" @@ -99032,15 +86949,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3612" - name: "icosanoyl-CoA transport, cell envelope-cytoplasm" @@ -99050,14 +86962,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3613" - name: "docosanoyl-CoA transport, cell envelope-cytoplasm" @@ -99067,14 +86974,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3614" - name: "tetracosanoyl-CoA transport, cell envelope-cytoplasm" @@ -99084,15 +86986,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137463" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3615" - name: "hexacosanoyl-CoA transport, cell envelope-cytoplasm" @@ -99102,15 +86999,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR124347" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3616" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, cell envelope-cytoplasm" @@ -99120,14 +87012,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3617" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, cell envelope-cytoplasm" @@ -99137,14 +87024,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3618" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, cell envelope-cytoplasm" @@ -99154,14 +87036,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3619" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, cell envelope-cytoplasm" @@ -99171,14 +87048,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3620" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, cell envelope-cytoplasm" @@ -99188,14 +87060,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3621" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, cell envelope-cytoplasm" @@ -99205,14 +87072,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3622" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, cell envelope-cytoplasm" @@ -99222,14 +87084,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3623" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, cell envelope-cytoplasm" @@ -99239,14 +87096,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3624" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) transport, cell envelope-cytoplasm" @@ -99256,14 +87108,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3625" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) transport, cell envelope-cytoplasm" @@ -99273,14 +87120,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3626" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) transport, cell envelope-cytoplasm" @@ -99290,14 +87132,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3627" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) transport, cell envelope-cytoplasm" @@ -99307,14 +87144,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3628" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) transport, cell envelope-cytoplasm" @@ -99324,14 +87156,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3629" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) transport, cell envelope-cytoplasm" @@ -99341,14 +87168,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3630" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) transport, cell envelope-cytoplasm" @@ -99358,14 +87180,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3631" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) transport, cell envelope-cytoplasm" @@ -99375,14 +87192,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3632" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, nucleus-cytoplasm" @@ -99392,14 +87204,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3633" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, nucleus-cytoplasm" @@ -99409,14 +87216,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3634" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, nucleus-cytoplasm" @@ -99426,14 +87228,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3635" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, nucleus-cytoplasm" @@ -99443,14 +87240,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3636" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, nucleus-cytoplasm" @@ -99460,14 +87252,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3637" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, nucleus-cytoplasm" @@ -99477,14 +87264,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3638" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, nucleus-cytoplasm" @@ -99494,14 +87276,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3639" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, nucleus-cytoplasm" @@ -99511,14 +87288,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3640" - name: "diglyceride (1-16:0, 2-16:1) transport, nucleus-cytoplasm" @@ -99528,14 +87300,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3641" - name: "diglyceride (1-16:1, 2-16:1) transport, nucleus-cytoplasm" @@ -99545,14 +87312,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3642" - name: "diglyceride (1-18:0, 2-16:1) transport, nucleus-cytoplasm" @@ -99562,14 +87324,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3643" - name: "diglyceride (1-18:1, 2-16:1) transport, nucleus-cytoplasm" @@ -99579,14 +87336,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3644" - name: "diglyceride (1-16:0, 2-18:1) transport, nucleus-cytoplasm" @@ -99596,14 +87348,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3645" - name: "diglyceride (1-16:1, 2-18:1) transport, nucleus-cytoplasm" @@ -99613,14 +87360,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3646" - name: "diglyceride (1-18:0, 2-18:1) transport, nucleus-cytoplasm" @@ -99630,14 +87372,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3647" - name: "diglyceride (1-18:1, 2-18:1) transport, nucleus-cytoplasm" @@ -99647,14 +87384,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3648" - name: "H2O transport, cytoplasm-vacuolar membrane" @@ -99664,15 +87396,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3649" - name: "phosphate transport, cytoplasm-vacuolar membrane" @@ -99682,15 +87409,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNR013C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3650" - name: "H+ transport, cytoplasm-vacuolar membrane" @@ -99700,15 +87422,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3651" - name: "ATP transport, cytoplasm-vacuolar membrane" @@ -99718,15 +87435,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3652" - name: "ADP transport, cytoplasm-vacuolar membrane" @@ -99736,15 +87448,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3653" - name: "carbon dioxide transport, cytoplasm-vacuolar membrane" @@ -99754,15 +87461,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3654" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) transport, vacuolar membrane-cytoplasm" @@ -99772,14 +87474,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3655" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) transport, vacuolar membrane-cytoplasm" @@ -99789,14 +87486,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3656" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) transport, vacuolar membrane-cytoplasm" @@ -99806,14 +87498,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3657" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) transport, vacuolar membrane-cytoplasm" @@ -99823,14 +87510,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3658" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) transport, vacuolar membrane-cytoplasm" @@ -99840,14 +87522,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3659" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) transport, vacuolar membrane-cytoplasm" @@ -99857,14 +87534,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3660" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) transport, vacuolar membrane-cytoplasm" @@ -99874,14 +87546,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3661" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) transport, vacuolar membrane-cytoplasm" @@ -99891,14 +87558,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3662" - name: "H2O transport, cytoplasm-Golgi membrane" @@ -99908,15 +87570,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3663" - name: "phosphate transport, cytoplasm-Golgi membrane" @@ -99926,15 +87583,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3664" - name: "H+ transport, cytoplasm-Golgi membrane" @@ -99944,15 +87596,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3665" - name: "carbon dioxide transport, cytoplasm-Golgi membrane" @@ -99962,15 +87609,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3666" - name: "ATP transport, cytoplasm-Golgi membrane" @@ -99980,15 +87622,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3667" - name: "ADP transport, cytoplasm-Golgi membrane" @@ -99998,15 +87635,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3668" - name: "H2O transport, cytoplasm-mitochondrial membrane" @@ -100016,15 +87648,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3669" - name: "carbon dioxide transport, cytoplasm-mitochondrial membrane" @@ -100034,15 +87661,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3670" - name: "palmitoleoyl-CoA transport, cytoplasm-mitochondrial membrane" @@ -100052,14 +87674,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3671" - name: "oleoyl-CoA transport, cytoplasm-mitochondrial membrane" @@ -100069,15 +87686,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR128426" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3672" - name: "diglyceride (1-16:0, 2-16:1) transport, mitochondrial membrane-cytoplasm" @@ -100087,14 +87699,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3673" - name: "diglyceride (1-16:1, 2-16:1) transport, mitochondrial membrane-cytoplasm" @@ -100104,14 +87711,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3674" - name: "diglyceride (1-18:0, 2-16:1) transport, mitochondrial membrane-cytoplasm" @@ -100121,14 +87723,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3675" - name: "diglyceride (1-18:1, 2-16:1) transport, mitochondrial membrane-cytoplasm" @@ -100138,14 +87735,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3676" - name: "diglyceride (1-16:0, 2-18:1) transport, mitochondrial membrane-cytoplasm" @@ -100155,14 +87747,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3677" - name: "diglyceride (1-16:1, 2-18:1) transport, mitochondrial membrane-cytoplasm" @@ -100172,14 +87759,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3678" - name: "palmitate transport, mitochondrial membrane-cytoplasm" @@ -100189,15 +87771,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3679" - name: "stearate transport, mitochondrial membrane-cytoplasm" @@ -100207,15 +87784,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3680" - name: "coenzyme A transport, mitochondrial membrane-cytoplasm" @@ -100225,15 +87797,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR002W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96815" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3681" - name: "laurate transport, ER membrane-lipid particle" @@ -100243,15 +87810,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR135773" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3682" - name: "myristate transport, ER membrane-lipid particle" @@ -100261,15 +87823,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR128297" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3683" - name: "lignoceric acid transport, ER membrane-lipid particle" @@ -100279,15 +87836,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR128298" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3684" - name: "cerotic acid transport, ER membrane-lipid particle" @@ -100297,15 +87849,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR136128" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3685" - name: "TAG (1-16:0, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100315,14 +87862,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3686" - name: "TAG (1-16:0, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100332,14 +87874,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3687" - name: "TAG (1-16:0, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100349,14 +87886,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3688" - name: "TAG (1-16:0, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100366,14 +87898,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3689" - name: "TAG (1-16:1, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100383,14 +87910,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3690" - name: "TAG (1-16:1, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100400,14 +87922,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3691" - name: "TAG (1-16:1, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100417,14 +87934,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3692" - name: "TAG (1-16:1, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100434,14 +87946,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3693" - name: "TAG (1-18:0, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100451,14 +87958,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3694" - name: "TAG (1-18:0, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100468,14 +87970,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3695" - name: "TAG (1-18:0, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100485,14 +87982,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3696" - name: "TAG (1-18:0, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100502,14 +87994,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3697" - name: "TAG (1-18:1, 2-16:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100519,14 +88006,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3698" - name: "TAG (1-18:1, 2-16:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100536,14 +88018,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3699" - name: "TAG (1-18:1, 2-16:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100553,14 +88030,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3700" - name: "TAG (1-18:1, 2-16:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100570,14 +88042,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3701" - name: "TAG (1-16:0, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100587,14 +88054,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3702" - name: "TAG (1-16:0, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100604,14 +88066,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3703" - name: "TAG (1-16:0, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100621,14 +88078,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3704" - name: "TAG (1-16:0, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100638,14 +88090,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3705" - name: "TAG (1-16:1, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100655,14 +88102,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3706" - name: "TAG (1-16:1, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100672,14 +88114,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3707" - name: "TAG (1-16:1, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100689,14 +88126,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3708" - name: "TAG (1-16:1, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100706,14 +88138,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3709" - name: "TAG (1-18:0, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100723,14 +88150,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3710" - name: "TAG (1-18:0, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100740,14 +88162,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3711" - name: "TAG (1-18:0, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100757,14 +88174,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3712" - name: "TAG (1-18:0, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100774,14 +88186,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3713" - name: "TAG (1-18:1, 2-18:1, 3-16:0) transport, ER membrane-lipid particle" @@ -100791,14 +88198,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3714" - name: "TAG (1-18:1, 2-18:1, 3-16:1) transport, ER membrane-lipid particle" @@ -100808,14 +88210,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3715" - name: "TAG (1-18:1, 2-18:1, 3-18:0) transport, ER membrane-lipid particle" @@ -100825,14 +88222,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3716" - name: "TAG (1-18:1, 2-18:1, 3-18:1) transport, ER membrane-lipid particle" @@ -100842,14 +88234,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3717" - name: "episterol transport, ER membrane-lipid particle" @@ -100859,15 +88246,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR97944" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3718" - name: "fecosterol transport, ER membrane-lipid particle" @@ -100877,15 +88259,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99529" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3719" - name: "lanosterol transport, ER membrane-lipid particle" @@ -100895,15 +88272,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101014" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3720" - name: "zymosterol transport, ER membrane-lipid particle" @@ -100913,15 +88285,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR105285" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3721" - name: "ergosteryl palmitoleate transport, ER membrane-lipid particle" @@ -100931,14 +88298,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3722" - name: "ergosteryl oleate transport, ER membrane-lipid particle" @@ -100948,14 +88310,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3723" - name: "episteryl palmitoleate transport, ER membrane-lipid particle" @@ -100965,14 +88322,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3724" - name: "episteryl oleate transport, ER membrane-lipid particle" @@ -100982,14 +88334,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3725" - name: "fecosteryl palmitoleate transport, ER membrane-lipid particle" @@ -100999,14 +88346,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3726" - name: "fecosteryl oleate transport, ER membrane-lipid particle" @@ -101016,14 +88358,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3727" - name: "lanosteryl palmitoleate transport, ER membrane-lipid particle" @@ -101033,14 +88370,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3728" - name: "lanosteryl oleate transport, ER membrane-lipid particle" @@ -101050,14 +88382,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3729" - name: "zymosteryl palmitoleate transport, ER membrane-lipid particle" @@ -101067,14 +88394,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3730" - name: "zymosteryl oleate transport, ER membrane-lipid particle" @@ -101084,14 +88406,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3731" - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-lipid particle" @@ -101101,14 +88418,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3732" - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-lipid particle" @@ -101118,14 +88430,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3733" - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-lipid particle" @@ -101135,14 +88442,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3734" - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-lipid particle" @@ -101152,14 +88454,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3735" - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-lipid particle" @@ -101169,14 +88466,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3736" - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-lipid particle" @@ -101186,14 +88478,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3737" - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-lipid particle" @@ -101203,14 +88490,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3738" - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-lipid particle" @@ -101220,14 +88502,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3739" - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, ER membrane-lipid particle" @@ -101237,14 +88514,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3740" - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, ER membrane-lipid particle" @@ -101254,14 +88526,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3741" - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, ER membrane-lipid particle" @@ -101271,14 +88538,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3742" - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, ER membrane-lipid particle" @@ -101288,14 +88550,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3743" - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, ER membrane-lipid particle" @@ -101305,14 +88562,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3744" - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, ER membrane-lipid particle" @@ -101322,14 +88574,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3745" - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, ER membrane-lipid particle" @@ -101339,14 +88586,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3746" - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, ER membrane-lipid particle" @@ -101356,14 +88598,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3747" - name: "1-acylglycerophosphocholine (16:0) transport, ER membrane-lipid particle" @@ -101373,14 +88610,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3748" - name: "1-acylglycerophosphocholine (16:1) transport, ER membrane-lipid particle" @@ -101390,14 +88622,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3749" - name: "1-acylglycerophosphocholine (18:0) transport, ER membrane-lipid particle" @@ -101407,14 +88634,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3750" - name: "1-acylglycerophosphocholine (18:1) transport, ER membrane-lipid particle" @@ -101424,14 +88646,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3751" - name: "1-acylglycerophosphoethanolamine (16:0) transport, ER membrane-lipid particle" @@ -101441,14 +88658,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3752" - name: "1-acylglycerophosphoethanolamine (16:1) transport, ER membrane-lipid particle" @@ -101458,14 +88670,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3753" - name: "1-acylglycerophosphoethanolamine (18:0) transport, ER membrane-lipid particle" @@ -101475,14 +88682,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3754" - name: "1-acylglycerophosphoethanolamine (18:1) transport, ER membrane-lipid particle" @@ -101492,14 +88694,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3755" - name: "phosphatidate (1-16:0, 2-18:1) transport, lipid particle-ER membrane" @@ -101509,14 +88706,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3756" - name: "phosphatidate (1-16:1, 2-18:1) transport, lipid particle-ER membrane" @@ -101526,14 +88718,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3757" - name: "phosphatidate (1-18:0, 2-18:1) transport, lipid particle-ER membrane" @@ -101543,14 +88730,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3758" - name: "phosphatidate (1-18:1, 2-18:1) transport, lipid particle-ER membrane" @@ -101560,14 +88742,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3759" - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101577,14 +88754,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3760" - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101594,14 +88766,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3761" - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101611,14 +88778,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3762" - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101628,14 +88790,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3763" - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -101645,14 +88802,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3764" - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -101662,14 +88814,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3765" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101679,14 +88826,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3766" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101696,14 +88838,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3767" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101713,14 +88850,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3768" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101730,14 +88862,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3769" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -101747,14 +88874,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3770" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -101764,14 +88886,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3771" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -101781,14 +88898,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3772" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -101798,14 +88910,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3773" - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, mitochondrial membrane-ER membrane" @@ -101815,14 +88922,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3774" - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, mitochondrial membrane-ER membrane" @@ -101832,14 +88934,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3775" - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, mitochondrial membrane-ER membrane" @@ -101849,14 +88946,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3776" - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, mitochondrial membrane-ER membrane" @@ -101866,14 +88958,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3777" - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, mitochondrial membrane-ER membrane" @@ -101883,14 +88970,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3778" - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, mitochondrial membrane-ER membrane" @@ -101900,14 +88982,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3779" - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, mitochondrial membrane-ER membrane" @@ -101917,14 +88994,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3780" - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, mitochondrial membrane-ER membrane" @@ -101934,14 +89006,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3781" - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101951,14 +89018,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3782" - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101968,14 +89030,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3783" - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -101985,14 +89042,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3784" - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-mitochondrial membrane" @@ -102002,14 +89054,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3785" - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -102019,14 +89066,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3786" - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -102036,14 +89078,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3787" - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -102053,14 +89090,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3788" - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-mitochondrial membrane" @@ -102070,14 +89102,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3789" - name: "diglyceride (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102087,14 +89114,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3790" - name: "diglyceride (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102104,14 +89126,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3791" - name: "diglyceride (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102121,14 +89138,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3792" - name: "diglyceride (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102138,14 +89150,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3793" - name: "diglyceride (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102155,14 +89162,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3794" - name: "diglyceride (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102172,14 +89174,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3795" - name: "diglyceride (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102189,14 +89186,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3796" - name: "diglyceride (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102206,14 +89198,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3797" - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102223,14 +89210,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3798" - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102240,14 +89222,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3799" - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102257,14 +89234,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3800" - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102274,14 +89246,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3801" - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102291,14 +89258,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3802" - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102308,14 +89270,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3803" - name: "phosphatidate (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102325,14 +89282,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3804" - name: "phosphatidate (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102342,14 +89294,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3805" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102359,14 +89306,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3806" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102376,14 +89318,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3807" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102393,14 +89330,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3808" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102410,14 +89342,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3809" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102427,14 +89354,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3810" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102444,14 +89366,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3811" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102461,14 +89378,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3812" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102478,14 +89390,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3813" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102495,14 +89402,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W or YMR162C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3814" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102512,14 +89414,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W or YMR162C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3815" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102529,14 +89426,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W or YMR162C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3816" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-Golgi membrane" @@ -102546,14 +89438,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W or YMR162C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3817" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102563,14 +89450,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W or YMR162C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3818" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102580,14 +89462,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W or YMR162C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3819" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102597,14 +89474,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W or YMR162C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3820" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-Golgi membrane" @@ -102614,14 +89486,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W or YMR162C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3821" - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, Golgi membrane-ER membrane" @@ -102631,14 +89498,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3822" - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, Golgi membrane-ER membrane" @@ -102648,14 +89510,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3823" - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, Golgi membrane-ER membrane" @@ -102665,14 +89522,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3824" - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, Golgi membrane-ER membrane" @@ -102682,14 +89534,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3825" - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, Golgi membrane-ER membrane" @@ -102699,14 +89546,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3826" - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, Golgi membrane-ER membrane" @@ -102716,14 +89558,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3827" - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, Golgi membrane-ER membrane" @@ -102733,14 +89570,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3828" - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, Golgi membrane-ER membrane" @@ -102750,14 +89582,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3829" - name: "phosphatidate (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102767,14 +89594,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3830" - name: "phosphatidate (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102784,14 +89606,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3831" - name: "phosphatidate (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102801,14 +89618,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3832" - name: "phosphatidate (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102818,14 +89630,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3833" - name: "phosphatidate (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -102835,14 +89642,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3834" - name: "phosphatidate (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -102852,14 +89654,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3835" - name: "phosphatidate (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -102869,14 +89666,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3836" - name: "phosphatidate (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -102886,14 +89678,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3837" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102903,14 +89690,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3838" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102920,14 +89702,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3839" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102937,14 +89714,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3840" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -102954,14 +89726,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3841" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -102971,14 +89738,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3842" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -102988,14 +89750,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3843" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -103005,14 +89762,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3844" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -103022,14 +89774,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3845" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -103039,14 +89786,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3846" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -103056,14 +89798,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3847" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -103073,14 +89810,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3848" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-vacuolar membrane" @@ -103090,14 +89822,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3849" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -103107,14 +89834,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3850" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -103124,14 +89846,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3851" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -103141,14 +89858,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3852" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-vacuolar membrane" @@ -103158,14 +89870,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3853" - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103175,14 +89882,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3854" - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103192,14 +89894,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3855" - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103209,14 +89906,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3856" - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103226,14 +89918,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3857" - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103243,14 +89930,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3858" - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103260,14 +89942,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3859" - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103277,14 +89954,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3860" - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103294,14 +89966,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3861" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103311,14 +89978,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3862" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103328,14 +89990,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3863" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103345,14 +90002,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3864" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) transport, vacuolar membrane-ER membrane" @@ -103362,14 +90014,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3865" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103379,14 +90026,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3866" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103396,14 +90038,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3867" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103413,14 +90050,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3868" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) transport, vacuolar membrane-ER membrane" @@ -103430,14 +90062,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3869" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103447,14 +90074,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3870" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103464,14 +90086,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3871" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103481,14 +90098,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3872" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103498,14 +90110,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3873" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103515,14 +90122,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3874" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103532,14 +90134,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3875" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103549,14 +90146,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3876" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103566,14 +90158,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3877" - name: "phosphatidylcholine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103583,14 +90170,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3878" - name: "phosphatidylcholine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103600,14 +90182,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3879" - name: "phosphatidylcholine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103617,14 +90194,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3880" - name: "phosphatidylcholine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103634,14 +90206,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3881" - name: "phosphatidylcholine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103651,14 +90218,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3882" - name: "phosphatidylcholine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103668,14 +90230,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3883" - name: "phosphatidylcholine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103685,14 +90242,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3884" - name: "phosphatidylcholine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103702,14 +90254,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3885" - name: "phosphatidylethanolamine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103719,14 +90266,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3886" - name: "phosphatidylethanolamine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103736,14 +90278,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3887" - name: "phosphatidylethanolamine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103753,14 +90290,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3888" - name: "phosphatidylethanolamine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103770,14 +90302,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3889" - name: "phosphatidylethanolamine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103787,14 +90314,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3890" - name: "phosphatidylethanolamine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103804,14 +90326,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3891" - name: "phosphatidylethanolamine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103821,14 +90338,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3892" - name: "phosphatidylethanolamine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103838,14 +90350,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL026C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3893" - name: "phosphatidyl-L-serine (1-16:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103855,14 +90362,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3894" - name: "phosphatidyl-L-serine (1-16:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103872,14 +90374,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3895" - name: "phosphatidyl-L-serine (1-18:0, 2-16:1) transport, ER membrane-cell envelope" @@ -103889,14 +90386,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3896" - name: "phosphatidyl-L-serine (1-18:1, 2-16:1) transport, ER membrane-cell envelope" @@ -103906,14 +90398,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3897" - name: "phosphatidyl-L-serine (1-16:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103923,14 +90410,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3898" - name: "phosphatidyl-L-serine (1-16:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103940,14 +90422,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3899" - name: "phosphatidyl-L-serine (1-18:0, 2-18:1) transport, ER membrane-cell envelope" @@ -103957,14 +90434,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3900" - name: "phosphatidyl-L-serine (1-18:1, 2-18:1) transport, ER membrane-cell envelope" @@ -103974,14 +90446,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL048W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3901" - name: "lignoceric acid transport, cell envelope-ER membrane" @@ -103991,15 +90458,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR128298" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3902" - name: "cerotic acid transport, cell envelope-ER membrane" @@ -104009,15 +90471,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR136128" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3903" - name: "phosphatidate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" @@ -104027,14 +90484,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3904" - name: "phosphatidate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" @@ -104044,14 +90496,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3905" - name: "phosphatidate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" @@ -104061,14 +90508,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3906" - name: "phosphatidate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" @@ -104078,14 +90520,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3907" - name: "phosphatidate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" @@ -104095,14 +90532,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3908" - name: "phosphatidate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" @@ -104112,14 +90544,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3909" - name: "phosphatidate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" @@ -104129,14 +90556,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3910" - name: "phosphatidate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" @@ -104146,14 +90568,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3911" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" @@ -104163,14 +90580,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3912" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" @@ -104180,14 +90592,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3913" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" @@ -104197,14 +90604,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3914" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" @@ -104214,14 +90616,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3915" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" @@ -104231,14 +90628,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3916" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" @@ -104248,14 +90640,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3917" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" @@ -104265,14 +90652,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3918" - name: "1-phosphatidyl-1D-myo-inositol 4-phosphate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" @@ -104282,14 +90664,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3919" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-16:1) transport, cell envelope-ER membrane" @@ -104299,14 +90676,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3920" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-16:1) transport, cell envelope-ER membrane" @@ -104316,14 +90688,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3921" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-16:1) transport, cell envelope-ER membrane" @@ -104333,14 +90700,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3922" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-16:1) transport, cell envelope-ER membrane" @@ -104350,14 +90712,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3923" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:0, 2-18:1) transport, cell envelope-ER membrane" @@ -104367,14 +90724,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3924" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-16:1, 2-18:1) transport, cell envelope-ER membrane" @@ -104384,14 +90736,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3925" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:0, 2-18:1) transport, cell envelope-ER membrane" @@ -104401,14 +90748,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3926" - name: "1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate (1-18:1, 2-18:1) transport, cell envelope-ER membrane" @@ -104418,14 +90760,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3927" - name: "zymosteryl palmitoleate transport, ER membrane-cell envelope" @@ -104435,14 +90772,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3928" - name: "zymosteryl oleate transport, ER membrane-cell envelope" @@ -104452,14 +90784,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3929" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-16:1) transport, ER membrane-nucleus" @@ -104469,14 +90796,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3930" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-16:1) transport, ER membrane-nucleus" @@ -104486,14 +90808,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3931" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-16:1) transport, ER membrane-nucleus" @@ -104503,14 +90820,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3932" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-16:1) transport, ER membrane-nucleus" @@ -104520,14 +90832,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3933" - name: "1-phosphatidyl-1D-myo-inositol (1-16:0, 2-18:1) transport, ER membrane-nucleus" @@ -104537,14 +90844,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3934" - name: "1-phosphatidyl-1D-myo-inositol (1-16:1, 2-18:1) transport, ER membrane-nucleus" @@ -104554,14 +90856,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3935" - name: "1-phosphatidyl-1D-myo-inositol (1-18:0, 2-18:1) transport, ER membrane-nucleus" @@ -104571,14 +90868,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3936" - name: "1-phosphatidyl-1D-myo-inositol (1-18:1, 2-18:1) transport, ER membrane-nucleus" @@ -104588,14 +90880,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3937" - name: "lignoceric acid transport, ER membrane-ER" @@ -104605,15 +90892,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR128298" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3938" - name: "cerotic acid transport, ER membrane-ER" @@ -104623,15 +90905,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR136128" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3939" - name: "ergosterol transport, ER-ER membrane" @@ -104641,15 +90918,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR97950" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3940" - name: "phosphate transport, ER-ER membrane" @@ -104659,15 +90931,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3941" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-16:1) transport, vacuolar membrane-Golgi membrane" @@ -104677,14 +90944,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3942" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-16:1) transport, vacuolar membrane-Golgi membrane" @@ -104694,14 +90956,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3943" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-16:1) transport, vacuolar membrane-Golgi membrane" @@ -104711,14 +90968,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3944" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-16:1) transport, vacuolar membrane-Golgi membrane" @@ -104728,14 +90980,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3945" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:0, 2-18:1) transport, vacuolar membrane-Golgi membrane" @@ -104745,14 +90992,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3946" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-16:1, 2-18:1) transport, vacuolar membrane-Golgi membrane" @@ -104762,14 +91004,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3947" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:0, 2-18:1) transport, vacuolar membrane-Golgi membrane" @@ -104779,14 +91016,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3948" - name: "1-phosphatidyl-1D-myo-inositol 3-phosphate (1-18:1, 2-18:1) transport, vacuolar membrane-Golgi membrane" @@ -104796,14 +91028,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3949" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-16:1) transport, vacuolar membrane-cell envelope" @@ -104813,14 +91040,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3950" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-16:1) transport, vacuolar membrane-cell envelope" @@ -104830,14 +91052,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3951" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-16:1) transport, vacuolar membrane-cell envelope" @@ -104847,14 +91064,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3952" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-16:1) transport, vacuolar membrane-cell envelope" @@ -104864,14 +91076,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3953" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:0, 2-18:1) transport, vacuolar membrane-cell envelope" @@ -104881,14 +91088,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3954" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-16:1, 2-18:1) transport, vacuolar membrane-cell envelope" @@ -104898,14 +91100,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3955" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:0, 2-18:1) transport, vacuolar membrane-cell envelope" @@ -104915,14 +91112,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3956" - name: "1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate (1-18:1, 2-18:1) transport, vacuolar membrane-cell envelope" @@ -104932,14 +91124,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3957" - name: "H+ transport, mitochondrion-mitochondrial membrane" @@ -104949,15 +91136,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3958" - name: "glycerol 3-phosphate transport, mitochondrion-mitochondrial membrane" @@ -104967,15 +91149,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100308" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3959" - name: "CMP transport, mitochondrion-mitochondrial membrane" @@ -104985,15 +91162,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR192W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96806" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3960" - name: "CTP transport, mitochondrion-mitochondrial membrane" @@ -105003,15 +91175,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR192W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96946" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3961" - name: "phosphate transport, mitochondrion-mitochondrial membrane" @@ -105021,15 +91188,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER053C or YJR077C or YLR348C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_3962" - name: "diphosphate transport, mitochondrion-mitochondrial membrane" @@ -105039,15 +91201,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR103112" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_3973" - name: "ergosterol ester transport, ER membrane-cytoplasm" @@ -105057,14 +91214,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3987" - name: "phosphatidyl-L-serine transport, ER membrane-cytoplasm" @@ -105074,15 +91226,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR103315" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_3996" - name: "phosphatidylcholine transport, ER membrane-cytoplasm" @@ -105092,15 +91239,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR102406" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4005" - name: "phosphatidylethanolamine transport, ER membrane-cytoplasm" @@ -105110,15 +91252,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR102505" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4038" - name: "triglyceride transport, ER membrane-cytoplasm" @@ -105128,15 +91265,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104713" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4040" - name: "heme a transport" @@ -105146,14 +91278,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4043" - name: "raffinose exchange" @@ -105162,12 +91289,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_raffin_e" - sbo: "SBO:0000627" - !!omap @@ -105178,12 +91300,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_melib_e" - sbo: "SBO:0000627" - !!omap @@ -105206,14 +91323,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000629" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4046" - name: "non-growth associated maintenance reaction" @@ -105226,15 +91338,10 @@ - lower_bound: 0.7 - upper_bound: 0.7 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ATPM" - sbo: "SBO:0000630" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4047" - name: "protein pseudoreaction" @@ -105283,14 +91390,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4048" - name: "carbohydrate pseudoreaction" @@ -105304,14 +91406,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4049" - name: "RNA pseudoreaction" @@ -105324,14 +91421,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4050" - name: "DNA pseudoreaction" @@ -105344,14 +91436,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4051" - name: "ceramide transport" @@ -105361,14 +91448,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4052" - name: "inositol phosphomannosylinositol phosphoceramide transport" @@ -105378,14 +91460,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4053" - name: "inositol-P-ceramide transport" @@ -105395,14 +91472,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4054" - name: "mannosylinositol phosphorylceramide transport" @@ -105412,14 +91484,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4055" - name: "long-chain base transport" @@ -105429,14 +91496,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4056" - name: "long-chain base phosphate transport" @@ -105446,14 +91508,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4057" - name: "phosphatidate transport" @@ -105463,14 +91520,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4058" - name: "diglyceride transport" @@ -105480,14 +91532,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4059" - name: "sn-2-acyl-1-lysophosphatidylinositol transport" @@ -105497,14 +91544,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4060" - name: "phosphatidylglycerol transport" @@ -105514,14 +91556,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4061" - name: "cardiolipin transport" @@ -105531,14 +91568,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4062" - name: "lipid backbone exchange" @@ -105547,12 +91579,7 @@ - lower_bound: 0 - upper_bound: 0 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000632" - !!omap - id: "r_4063" @@ -105570,14 +91597,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4064" - name: "lipid chain exchange" @@ -105586,12 +91608,7 @@ - lower_bound: 0 - upper_bound: 0 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000632" - !!omap - id: "r_4065" @@ -105605,14 +91622,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4066" - name: "ceramide-1 (C24) [Golgi] SLIME rxn" @@ -105624,14 +91636,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4067" - name: "ceramide-1 (C26) [Golgi] SLIME rxn" @@ -105643,14 +91650,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4068" - name: "ceramide-2 (C24) [Golgi] SLIME rxn" @@ -105662,14 +91664,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4069" - name: "ceramide-2 (C26) [Golgi] SLIME rxn" @@ -105681,14 +91678,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4070" - name: "ceramide-2' (C24) [Golgi] SLIME rxn" @@ -105700,14 +91692,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4071" - name: "ceramide-2' (C26) [Golgi] SLIME rxn" @@ -105719,14 +91706,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4072" - name: "ceramide-3 (C24) [Golgi] SLIME rxn" @@ -105738,14 +91720,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4073" - name: "ceramide-3 (C26) [Golgi] SLIME rxn" @@ -105757,14 +91734,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4074" - name: "ceramide-4 (C24) [Golgi] SLIME rxn" @@ -105776,14 +91748,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4075" - name: "ceramide-4 (C26) [Golgi] SLIME rxn" @@ -105795,14 +91762,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4076" - name: "phytosphingosine [endoplasmic reticulum] SLIME rxn" @@ -105813,14 +91775,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4077" - name: "phytosphingosine 1-phosphate [endoplasmic reticulum] SLIME rxn" @@ -105831,14 +91788,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4078" - name: "sphinganine [endoplasmic reticulum] SLIME rxn" @@ -105849,14 +91801,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4079" - name: "sphinganine 1-phosphate [endoplasmic reticulum] SLIME rxn" @@ -105867,14 +91814,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4080" - name: "phosphatidate (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105886,14 +91828,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4081" - name: "phosphatidate (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105905,14 +91842,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4082" - name: "phosphatidate (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105923,14 +91855,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4083" - name: "phosphatidate (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105942,14 +91869,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4084" - name: "phosphatidate (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105961,14 +91883,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4085" - name: "phosphatidate (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105980,14 +91897,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4086" - name: "phosphatidate (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -105999,14 +91911,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4087" - name: "phosphatidate (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106017,14 +91924,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4088" - name: "diglyceride (1-16:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106036,14 +91938,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4089" - name: "diglyceride (1-16:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106055,14 +91952,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4090" - name: "diglyceride (1-16:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106073,14 +91965,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4091" - name: "diglyceride (1-16:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106092,14 +91979,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4092" - name: "diglyceride (1-18:0, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106111,14 +91993,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4093" - name: "diglyceride (1-18:0, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106130,14 +92007,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4094" - name: "diglyceride (1-18:1, 2-16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106149,14 +92021,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4095" - name: "diglyceride (1-18:1, 2-18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106167,14 +92034,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4096" - name: "sn-2-acyl-1-lysophosphatidylinositol (16:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106185,14 +92047,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4097" - name: "sn-2-acyl-1-lysophosphatidylinositol (18:1) [endoplasmic reticulum membrane] SLIME rxn" @@ -106203,14 +92060,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4098" - name: "phosphatidylglycerol (1-16:0, 2-16:1) [mitochondrial membrane] SLIME rxn" @@ -106222,14 +92074,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4099" - name: "phosphatidylglycerol (1-16:1, 2-16:1) [mitochondrial membrane] SLIME rxn" @@ -106240,14 +92087,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4100" - name: "phosphatidylglycerol (1-18:0, 2-16:1) [mitochondrial membrane] SLIME rxn" @@ -106259,14 +92101,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4101" - name: "phosphatidylglycerol (1-18:1, 2-16:1) [mitochondrial membrane] SLIME rxn" @@ -106278,14 +92115,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4102" - name: "phosphatidylglycerol (1-16:0, 2-18:1) [mitochondrial membrane] SLIME rxn" @@ -106297,14 +92129,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4103" - name: "phosphatidylglycerol (1-16:1, 2-18:1) [mitochondrial membrane] SLIME rxn" @@ -106316,14 +92143,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4104" - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106335,14 +92157,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4105" - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106354,14 +92171,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4106" - name: "cardiolipin (1-16:0, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106374,14 +92186,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4107" - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106394,14 +92201,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4108" - name: "cardiolipin (1-16:0, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106414,14 +92216,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4109" - name: "cardiolipin (1-16:0, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106434,14 +92231,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4110" - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106453,14 +92245,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4111" - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106471,14 +92258,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4112" - name: "cardiolipin (1-16:1, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106490,14 +92272,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4113" - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106509,14 +92286,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4114" - name: "cardiolipin (1-16:1, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106529,14 +92301,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4115" - name: "cardiolipin (1-16:1, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106548,14 +92315,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4116" - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106568,14 +92330,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4117" - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106587,14 +92344,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4118" - name: "cardiolipin (1-18:0, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106606,14 +92358,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4119" - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106626,14 +92373,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4120" - name: "cardiolipin (1-18:0, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106647,14 +92389,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4121" - name: "cardiolipin (1-18:0, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106667,14 +92404,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4122" - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106687,14 +92419,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4123" - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106706,14 +92433,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4124" - name: "cardiolipin (1-18:1, 2-16:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106726,14 +92448,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4125" - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106745,14 +92462,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4126" - name: "cardiolipin (1-18:1, 2-16:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106765,14 +92477,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4127" - name: "cardiolipin (1-18:1, 2-16:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106784,14 +92491,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4128" - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106804,14 +92506,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4129" - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106824,14 +92521,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4130" - name: "cardiolipin (1-16:0, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106845,14 +92537,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4131" - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106865,14 +92552,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4132" - name: "cardiolipin (1-16:0, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106884,14 +92566,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4133" - name: "cardiolipin (1-16:0, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -106904,14 +92581,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4134" - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106924,14 +92596,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4135" - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106943,14 +92610,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4136" - name: "cardiolipin (1-16:1, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106963,14 +92625,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4137" - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -106982,14 +92639,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4138" - name: "cardiolipin (1-16:1, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107002,14 +92654,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4139" - name: "cardiolipin (1-16:1, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107021,14 +92668,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4140" - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -107041,14 +92683,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4141" - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -107060,14 +92697,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4142" - name: "cardiolipin (1-18:1, 2-18:1, 3-18:0, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -107080,14 +92712,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4143" - name: "cardiolipin (1-18:1, 2-18:1, 3-18:1, 4-16:1) [mitochondrial membrane] SLIME rxn" @@ -107099,14 +92726,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4144" - name: "cardiolipin (1-18:1, 2-18:1, 3-16:0, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107118,14 +92740,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4145" - name: "cardiolipin (1-18:1, 2-18:1, 3-16:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107137,14 +92754,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4146" - name: "cardiolipin (1-16:0, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107157,14 +92769,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4147" - name: "cardiolipin (1-16:1, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107176,14 +92783,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4148" - name: "cardiolipin (1-18:0, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107196,14 +92798,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4149" - name: "cardiolipin (1-18:1, 2-16:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107215,14 +92812,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4150" - name: "cardiolipin (1-16:0, 2-18:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107234,14 +92826,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4151" - name: "cardiolipin (1-16:1, 2-18:1, 3-18:1, 4-18:1) [mitochondrial membrane] SLIME rxn" @@ -107253,14 +92840,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4152" - name: "Cytochrome c apocytochrome-c-lyase" @@ -107271,17 +92853,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YAL039C or YKL087C" - - eccodes: "4.4.1.17; 4.4.1.-" - - references: "" - - subsystem: - - "" + - eccodes: + - "4.4.1.17" + - "4.4.1.-" - annotation: !!omap - - ec-code: "4.4.1.17; 4.4.1.-" - bigg.reaction: "HEMELm" - kegg.reaction: "R02480" - metanetx.reaction: "MNXR138510" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4153" - name: "(R)-Acetoin:NAD+ oxidoreductase" @@ -107295,16 +92875,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YAL061W" - eccodes: "1.1.1.303" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.303" - bigg.reaction: "ACTD" - kegg.reaction: "R02855" - metanetx.reaction: "MNXR95419" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4154" - name: "Probable diacetyl reductase [(R)-acetoin forming] 2 (EC 1.1.1.303)" @@ -107318,15 +92894,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YAL061W" - eccodes: "1.1.1.303" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.303" - kegg.reaction: "R02855" - metanetx.reaction: "MNXR95419" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4155" - name: "Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial (Glu-AdT subunit B) (EC 6.3.5.-) (Cytochrome c oxidase assembly factor PET112)" @@ -107344,13 +92916,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YBL080C" - eccodes: "6.3.5.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.5.-" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4156" - name: "Methionine aminopeptidase 2 (MAP 2) (MetAP 2) (EC 3.4.11.18) (Peptidase M)" @@ -107363,13 +92931,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YBL091C or YLR244C" - eccodes: "3.4.11.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.11.18" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4157" - name: "ADP-ribose 1''-phosphate phosphatase (EC 3.1.3.84) (EC 3.2.2.-) ([Protein ADP-ribosylglutamate] hydrolase)" @@ -107381,14 +92945,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR022W or YMR087W" - - eccodes: "3.1.3.84; 3.2.2.-" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.1.3.84" + - "3.2.2.-" - annotation: !!omap - - ec-code: "3.1.3.84; 3.2.2.-" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4158" - name: "NADPH2:quinone oxidoreductase" @@ -107402,15 +92964,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR046C" - eccodes: "1.6.5.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.6.5.5" - kegg.reaction: "R02364" - metanetx.reaction: "MNXR107466" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4159" - name: "UDP-N-acetylglucosamine transferase subunit ALG14 (Asparagine-linked glycosylation protein 14)" @@ -107424,15 +92982,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR070C and YGL047W" - eccodes: "2.4.1.141" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.141" - kegg.reaction: "R05970" - metanetx.reaction: "MNXR100208" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4160" - name: "ADP-ribose pyrophosphatase (EC 3.6.1.13) (ADP-ribose diphosphatase) (ADP-ribose phosphohydrolase) (Adenosine diphosphoribose pyrophosphatase) (ADPR-PPase)" @@ -107446,13 +93000,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR111C" - eccodes: "3.6.1.13" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.13" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4161" - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" @@ -107462,14 +93012,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR147W or YDR352W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4162" - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" @@ -107479,14 +93024,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR147W or YDR352W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4163" - name: "Probable vacuolar amino acid transporter YPQ3 (PQ-loop repeat-containing protein 3) (Protein RTC2) (Restriction of telomere capping protein 2)" @@ -107496,14 +93036,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR147W or YDR352W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4164" - name: "oxalate:CoA ligase (AMP-forming)" @@ -107518,15 +93053,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR222C" - eccodes: "6.-.-.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.-.-.-" - kegg.reaction: "R01558" - metanetx.reaction: "MNXR102232" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4165" - name: "Glucosidase 2 subunit alpha (EC 3.2.1.84) (Alpha-glucosidase II subunit alpha) (Glucosidase II subunit alpha) (Reversal of TOR2 lethality protein 2)" @@ -107539,15 +93070,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR229C" - eccodes: "3.2.1.84" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.84" - kegg.reaction: "R05980" - metanetx.reaction: "MNXR109971" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4166" - name: "Glucosidase 2 subunit alpha (EC 3.2.1.84) (Alpha-glucosidase II subunit alpha) (Glucosidase II subunit alpha) (Reversal of TOR2 lethality protein 2)" @@ -107560,15 +93087,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR229C" - eccodes: "3.2.1.84" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.84" - kegg.reaction: "R05981" - metanetx.reaction: "MNXR109972" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4167" - name: "Vacuolar cation-chloride cotransporter 1 (Vacuolar homolog of CCC family protein 1)" @@ -107583,13 +93106,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR235W" - eccodes: "3.6.3.7" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.3.7" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4168" - name: "Probable metabolite transport protein YBR241C" @@ -107599,14 +93118,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR241C or YGL104C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4169" - name: "Probable metabolite transport protein YBR241C" @@ -107616,14 +93130,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YBR241C or YGL104C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4170" - name: "UDP-N-acetyl-D-glucosamine:dolichyl-phosphate N-acetyl-D-glucosamine phosphotransferase" @@ -107636,15 +93145,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR243C" - eccodes: "2.7.8.15" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.8.15" - kegg.reaction: "R01007" - metanetx.reaction: "MNXR106786" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4171" - name: "(5-glutamyl)-peptide:amino-acid 5-glutamyltransferase" @@ -107657,16 +93162,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR281C and YNL191W" - eccodes: "3.4.-.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.-.-" - bigg.reaction: "GTHRDH_syn" - kegg.reaction: "R03916" - metanetx.reaction: "MNXR108524" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4172" - name: "P-type cation-transporting ATPase (EC 3.6.3.3) (Cadmium resistance protein 2) (Cadmium-translocating P-type ATPase) (Cd(2+)-exporting ATPase)" @@ -107682,14 +93183,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR295W" - eccodes: "3.6.3.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.3.3" - bigg.reaction: "CD2abc1" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4173" - name: "L-cysteine:sulfur-acceptor sulfurtransferase" @@ -107702,15 +93199,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YCL017C" - eccodes: "2.8.1.7" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.8.1.7" - kegg.reaction: "R11528" - metanetx.reaction: "MNXR114822" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4174" - name: "Probable ATP-dependent permease" @@ -107720,14 +93213,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YCR011C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4175" - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" @@ -107741,13 +93229,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - eccodes: "1.1.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.-" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4176" - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" @@ -107761,13 +93245,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - eccodes: "1.1.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.-" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4177" - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" @@ -107781,16 +93261,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - eccodes: "1.1.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.-" - bigg.reaction: "3MBZALDH" - kegg.reaction: "R05347" - metanetx.reaction: "MNXR94914" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4178" - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" @@ -107804,13 +93280,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - eccodes: "1.1.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.-" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4179" - name: "Putative aryl-alcohol dehydrogenase AAD3 (EC 1.1.1.-)" @@ -107824,14 +93296,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - eccodes: "1.1.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.-" - bigg.reaction: "4MBZALDH" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4180" - name: "Benzyl alcohol:NAD+ oxidoreductase" @@ -107845,16 +93313,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YCR107W or YDL243C or YJR155W or YNL331C or YOL165C or YPL088W" - eccodes: "1.1.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.-" - bigg.reaction: "BZALDH" - kegg.reaction: "R01763" - metanetx.reaction: "MNXR96362" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4181" - name: "Manganese-transporting ATPase 1 (EC 3.6.3.-)" @@ -107870,13 +93334,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL031W" - eccodes: "3.6.3.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.3.-" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4183" - name: "D-Mannitol:NAD+ 2-oxidoreductase" @@ -107890,16 +93350,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YEL070W or YNR073C" - eccodes: "1.1.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.-" - bigg.reaction: "MNLDH2" - kegg.reaction: "R00868" - metanetx.reaction: "MNXR101675" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4184" - name: "4-hydroxy-4-methyl-2-oxoglutarate pyruvate-lyase (pyruvate-forming)" @@ -107909,16 +93365,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YER010C" - - eccodes: "4.1.3.17; 4.1.1.3" - - references: "" - - subsystem: - - "" + - eccodes: + - "4.1.3.17" + - "4.1.1.3" - annotation: !!omap - - ec-code: "4.1.3.17; 4.1.1.3" - kegg.reaction: "R00008" - metanetx.reaction: "MNXR106336" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4185" - name: "oxaloacetate carboxy-lyase (pyruvate-forming)" @@ -107930,17 +93384,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YER010C" - - eccodes: "4.1.3.17; 4.1.1.3" - - references: "" - - subsystem: - - "" + - eccodes: + - "4.1.3.17" + - "4.1.1.3" - annotation: !!omap - - ec-code: "4.1.3.17; 4.1.1.3" - bigg.reaction: "OAADC" - kegg.reaction: "R00217" - metanetx.reaction: "MNXR102097" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4186" - name: "L-methionine:thioredoxin-disulfide S-oxidoreductase" @@ -107955,15 +93407,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YER042W" - eccodes: "1.8.4.11" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.8.4.11" - kegg.reaction: "R07606" - metanetx.reaction: "MNXR101484" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4187" - name: "L-proline:tRNA(Pro) ligase (AMP-forming)" @@ -107978,15 +93426,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YER087W" - eccodes: "6.1.1.15" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.1.1.15" - kegg.reaction: "R03661" - metanetx.reaction: "MNXR103208" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4188" - name: "Glutathione-specific gamma-glutamylcyclotransferase (Gamma-GCG) (EC 4.3.2.-)" @@ -107998,15 +93442,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YER163C" - eccodes: "4.3.2.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.3.2.-" - bigg.reaction: "GGCLUT2" - kegg.reaction: "R11861" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4189" - name: "4a-hydroxytetrahydrobiopterin hydro-lyase" @@ -108018,15 +93458,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YHL018W" - eccodes: "4.2.1.96" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.96" - kegg.reaction: "R04734" - metanetx.reaction: "MNXR143540" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4190" - name: "superoxide:superoxide oxidoreductase" @@ -108039,16 +93475,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR008C" - eccodes: "1.15.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.15.1.1" - bigg.reaction: "SPODMm" - kegg.reaction: "R00275" - metanetx.reaction: "MNXR104498" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4191" - name: "2-Deoxy-D-glucose 6-phosphate phosphohydrolase" @@ -108061,16 +93493,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR043C or YHR044C" - eccodes: "3.1.3.68" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.68" - bigg.reaction: "2DOXG6PP" - kegg.reaction: "R02587" - metanetx.reaction: "MNXR94794" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4192" - name: "Cytochrome c lysine N-methyltransferase 1 (EC 2.1.1.59)" @@ -108084,15 +93512,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR109W" - eccodes: "2.1.1.59" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.59" - kegg.reaction: "R03875" - metanetx.reaction: "MNXR108494" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4193" - name: "S-Adenosyl-L-methionine:histone-L-lysine N6-methyltransferase" @@ -108106,15 +93530,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR119W or YDR440W or YJL168C" - eccodes: "2.1.1.43" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.43" - kegg.reaction: "R03938" - metanetx.reaction: "MNXR108541" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4194" - name: "Zinc transporter YKE4" @@ -108124,14 +93544,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YIL023C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4195" - name: "Zinc transporter YKE4" @@ -108141,14 +93556,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR243C or YOR316C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4196" - name: "NADH:ferricytochrome-b5 oxidoreductase" @@ -108161,15 +93571,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL043C or YML125C" - eccodes: "1.6.2.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.6.2.2" - kegg.reaction: "R00100" - metanetx.reaction: "MNXR106388" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4197" - name: "NADH-cytochrome b5 reductase 1 (EC 1.6.2.2) (Microsomal cytochrome b reductase) (P35)" @@ -108183,16 +93589,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YIL043C or YKL150W or YML125C" - eccodes: "1.6.2.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.6.2.2" - bigg.reaction: "FCYTOB5OXR_m" - kegg.reaction: "R00100" - metanetx.reaction: "MNXR106388" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4198" - name: "Benzil reductase ((S)-benzoin forming) IRC24 (EC 1.1.1.320) (Increased recombination centers protein 24)" @@ -108206,13 +93608,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YIR036C" - eccodes: "1.1.1.320" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.320" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4199" - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" @@ -108225,15 +93623,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YIR038C" - eccodes: "2.5.1.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.18" - kegg.reaction: "R03522" - metanetx.reaction: "MNXR125877" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4200" - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" @@ -108246,15 +93640,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR251W or YKR076W" - eccodes: "2.5.1.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.18" - kegg.reaction: "R03522" - metanetx.reaction: "MNXR125877" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4201" - name: "Glutathione S-transferase 1 (EC 2.5.1.18) (GST-I)" @@ -108267,15 +93657,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL060C" - eccodes: "2.5.1.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.18" - kegg.reaction: "R03522" - metanetx.reaction: "MNXR125877" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4202" - name: "L-methionine:oxidized-thioredoxin S-oxidoreductase" @@ -108290,16 +93676,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL069W" - eccodes: "1.8.4.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.8.4.14" - bigg.reaction: "METSOXR1" - kegg.reaction: "R02025" - metanetx.reaction: "MNXR101484" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4203" - name: "Vacuolar aminopeptidase 1 (EC 3.4.11.22) (Aminopeptidase yscI) (Leucine aminopeptidase IV) (LAPIV) (Lysosomal aminopeptidase III) (Polypeptidase) (Vacuolar aminopeptidase I)" @@ -108312,13 +93694,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL103C" - eccodes: "3.4.11.22" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.11.22" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4204" - name: "Vacuolar aminopeptidase 1 (EC 3.4.11.22) (Aminopeptidase yscI) (Leucine aminopeptidase IV) (LAPIV) (Lysosomal aminopeptidase III) (Polypeptidase) (Vacuolar aminopeptidase I)" @@ -108331,13 +93709,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL103C" - eccodes: "3.4.11.22" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.11.22" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4205" - name: "5-oxo-L-proline amidohydrolase (ATP-hydrolysing)" @@ -108353,16 +93727,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL215C" - eccodes: "3.5.2.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.2.9" - bigg.reaction: "OPAH" - kegg.reaction: "R00251" - metanetx.reaction: "MNXR138674" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4206" - name: "threo-3-hydroxy-L-aspartate ammonia-lyase" @@ -108374,15 +93744,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YKL218C" - eccodes: "4.3.1.16" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.3.1.16" - kegg.reaction: "R05758" - metanetx.reaction: "MNXR109814" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4207" - name: "Glutathione S-transferase omega-like 2 (EC 2.5.1.18) (Extracellular mutant protein 4) (Glutathione-dependent dehydroascorbate reductase) (EC 1.8.5.1)" @@ -108395,15 +93761,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR154C" - eccodes: "2.5.1.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.18" - kegg.reaction: "R03522" - metanetx.reaction: "MNXR125877" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4208" - name: "glutathione:dehydroascorbate oxidoreductase" @@ -108415,17 +93777,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKR076W" - - eccodes: "2.5.1.18; 1.8.5.1" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.5.1.18" + - "1.8.5.1" - annotation: !!omap - - ec-code: "2.5.1.18; 1.8.5.1" - bigg.reaction: "GTHDH" - kegg.reaction: "R01108" - metanetx.reaction: "MNXR138490" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4209" - name: "Glutathione S-transferase omega-like 2 (EC 2.5.1.18) (Extracellular mutant protein 4) (Glutathione-dependent dehydroascorbate reductase) (EC 1.8.5.1)" @@ -108437,16 +93797,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR154C" - - eccodes: "2.5.1.18; 1.8.5.1" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.5.1.18" + - "1.8.5.1" - annotation: !!omap - - ec-code: "2.5.1.18; 1.8.5.1" - kegg.reaction: "R01108" - metanetx.reaction: "MNXR138490" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4210" - name: "urea hydro-lyase (cyanamide-forming)" @@ -108458,15 +93816,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YFL061W or YNL335W" - eccodes: "4.2.1.69" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.69" - kegg.reaction: "R00778" - metanetx.reaction: "MNXR106683" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4211" - name: "D-ribose 5-phosphate,D-glyceraldehyde 3-phosphate pyridoxal 5-phosphate-lyase (glutamine-hydrolyzing)" @@ -108482,16 +93836,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YFL060C or YNL334C" - - eccodes: "4.3.3.6; 3.5.1.2" - - references: "" - - subsystem: - - "" + - eccodes: + - "4.3.3.6" + - "3.5.1.2" - annotation: !!omap - - ec-code: "4.3.3.6; 3.5.1.2" - kegg.reaction: "R10089" - metanetx.reaction: "MNXR140225" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4212" - name: "D-ribulose 5-phosphate,D-glyceraldehyde 3-phosphate pyridoxal 5-phosphate-lyase" @@ -108507,17 +93859,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YFL059W or YNL333W" - - eccodes: "4.3.3.6; 3.5.1.2" - - references: "" - - subsystem: - - "" + - eccodes: + - "4.3.3.6" + - "3.5.1.2" - annotation: !!omap - - ec-code: "4.3.3.6; 3.5.1.2" - bigg.reaction: "PYDXS" - kegg.reaction: "R07456" - metanetx.reaction: "MNXR103369" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4214" - name: "L-cysteinylglycine dipeptidase" @@ -108530,16 +93880,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR044C" - eccodes: "3.4.13.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.13.-" - bigg.reaction: "AMPTASECG" - kegg.reaction: "R00899" - metanetx.reaction: "MNXR95828" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4215" - name: "Cys-Gly metallodipeptidase DUG1 (EC 3.4.13.-) (Deficient in utilization of glutathione protein 1) (GSH degradosomal complex subunit DUG1)" @@ -108552,15 +93898,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YFR044C" - eccodes: "3.4.13.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.13.-" - kegg.reaction: "R04951" - metanetx.reaction: "MNXR109244" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4216" - name: "riboflavin-5-phosphate phosphohydrolase" @@ -108573,16 +93915,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL024C" - eccodes: "3.1.3.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.2" - bigg.reaction: "ACP1_FMN" - kegg.reaction: "R00548" - metanetx.reaction: "MNXR95393" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4217" - name: "Fe(II):oxygen oxidoreductase; Fe2+:oxygen oxidoreductase" @@ -108596,15 +93934,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL120W" - eccodes: "1.16.3.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.16.3.1" - kegg.reaction: "R00078" - metanetx.reaction: "MNXR99561" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4218" - name: "D-aminoacyl-tRNA deacylase (DTD) (EC 3.1.1.96) (D-tyrosyl-tRNA(Tyr) deacylase) (Gly-tRNA(Ala) deacylase) (EC 3.1.1.-)" @@ -108617,14 +93951,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDL219W" - - eccodes: "3.1.1.96; 3.1.1.-" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.1.1.96" + - "3.1.1.-" - annotation: !!omap - - ec-code: "3.1.1.96; 3.1.1.-" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4219" - name: "D-aminoacyl-tRNA deacylase (DTD) (EC 3.1.1.96) (D-tyrosyl-tRNA(Tyr) deacylase) (Gly-tRNA(Ala) deacylase) (EC 3.1.1.-)" @@ -108637,14 +93969,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDL219W" - - eccodes: "3.1.1.96; 3.1.1.-" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.1.1.96" + - "3.1.1.-" - annotation: !!omap - - ec-code: "3.1.1.96; 3.1.1.-" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4220" - name: "4-nitrophenyl phosphate phosphohydrolase" @@ -108658,15 +93988,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL236W" - eccodes: "3.1.3.41" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.41" - kegg.reaction: "R03024" - metanetx.reaction: "MNXR107896" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4221" - name: "D-Iditol:NAD+ 2-oxidoreductase" @@ -108680,16 +94006,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDL246C" - eccodes: "1.1.1.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.14" - bigg.reaction: "RE1317C" - kegg.reaction: "R02896" - metanetx.reaction: "MNXR107809" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4222" - name: "ATP:alpha-D-galactose 1-phosphotransferase" @@ -108702,17 +94024,12 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR009W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GALK2" - kegg.reaction: "R01092" - metanetx.reaction: "MNXR99985" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4223" - name: "3-Hydroxy-2-methylpropanoyl-CoA hydrolase" @@ -108726,15 +94043,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR036C" - eccodes: "3.1.2.4" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.2.4" - kegg.reaction: "R03352" - metanetx.reaction: "MNXR108112" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4224" - name: "Sodium transport ATPase 5 (EC 3.6.3.7)" @@ -108750,14 +94063,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR038C or YDR039C or YDR040C" - eccodes: "3.6.3.7" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.3.7" - bigg.reaction: "NAabcO" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4225" - name: "Broad-range acid phosphatase DET1 (EC 3.1.3.-) (Decreased ergosterol transport protein 1)" @@ -108773,13 +94082,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR051C or YOL075C" - eccodes: "3.1.3.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4226" - name: "L-Alanine:2-oxoglutarate aminotransferase" @@ -108792,16 +94097,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR111C" - eccodes: "2.6.1.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.2" - bigg.reaction: "ALATA_L" - kegg.reaction: "R00258" - metanetx.reaction: "MNXR95698" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4227" - name: "2-phenylacetamide amidohydrolase" @@ -108814,16 +94115,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR242W" - eccodes: "3.5.1.4" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.4" - bigg.reaction: "AMID2" - kegg.reaction: "R02540" - metanetx.reaction: "MNXR95813" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4228" - name: "Indole-3-acetamide amidohydrolase" @@ -108836,16 +94133,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR242W" - eccodes: "3.5.1.4" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.4" - bigg.reaction: "AMID3" - kegg.reaction: "R03096" - metanetx.reaction: "MNXR95814" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4230" - name: "Probable amidase (EC 3.5.1.4)" @@ -108858,16 +94151,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR242W" - eccodes: "3.5.1.4" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.4" - bigg.reaction: "AMID5" - kegg.reaction: "R05551" - metanetx.reaction: "MNXR95816" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4231" - name: "Acylamide aminohydrolase" @@ -108880,13 +94169,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR242W" - eccodes: "3.5.1.4" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.4" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4232" - name: "ATP:D-Gluconate 6-phosphotransferase" @@ -108900,16 +94185,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR248C" - eccodes: "2.7.1.12" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.12" - bigg.reaction: "GNK" - kegg.reaction: "R01737" - metanetx.reaction: "MNXR100390" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4233" - name: "S-Adenosyl-L-methionine:protein-C-terminal-S-farnesyl-L-cysteine O-methyltransferase" @@ -108922,15 +94203,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR410C" - eccodes: "2.1.1.100" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.100" - kegg.reaction: "R04496" - metanetx.reaction: "MNXR108926" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4234" - name: "Phosphatidylinositol N-acetylglucosaminyltransferase subunit GPI19 (GPI-GlcNAc transferase complex subunit GPI19) (GPI-GnT subunit GPI19) (EC 2.4.1.198)" @@ -108944,15 +94221,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR437W and YGR216C and YNL038W and YPL076W and YPL175W and YPL096C-A" - eccodes: "2.4.1.198" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.198" - kegg.reaction: "R05916" - metanetx.reaction: "MNXR109940" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4236" - name: "(R)-lactate hydro-lyase" @@ -108965,16 +94238,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR533C or YMR322C or YOR391C or YPL280W" - eccodes: "4.2.1.130" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.130" - bigg.reaction: "GLYOX3" - kegg.reaction: "R09796" - metanetx.reaction: "MNXR100354" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4237" - name: "Calcium-transporting ATPase 2 (EC 3.6.3.8) (Vacuolar Ca(2+)-ATPase)" @@ -108990,13 +94259,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL006W" - eccodes: "3.6.3.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.3.8" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4238" - name: "Calcium-transporting ATPase 2 (EC 3.6.3.8) (Golgi Ca(2+)-ATPase)" @@ -109012,13 +94277,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL167C" - eccodes: "3.6.3.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.3.8" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4239" - name: "L-arginyl-tRNA(Arg):protein arginyltransferase" @@ -109032,15 +94293,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL017W" - eccodes: "2.3.2.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.2.8" - kegg.reaction: "R03862" - metanetx.reaction: "MNXR108483" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4240" - name: "Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3 (Oligosaccharyl transferase subunit STT3) (EC 2.4.99.18)" @@ -109054,15 +94311,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL022W" - eccodes: "2.4.99.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.99.18" - kegg.reaction: "R05976" - metanetx.reaction: "MNXR109968" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4241" - name: "Mannosyl-oligosaccharide glucosidase (EC 3.2.1.106) (Processing A-glucosidase I) (Glucosidase I)" @@ -109075,15 +94328,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL027C" - eccodes: "3.2.1.106" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.106" - kegg.reaction: "R05979" - metanetx.reaction: "MNXR109970" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4242" - name: "Initiation-specific alpha-1,6-mannosyltransferase (EC 2.4.1.232) (Outer chain elongation protein 1)" @@ -109097,15 +94346,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL038C" - eccodes: "2.4.1.232" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.232" - kegg.reaction: "R08599" - metanetx.reaction: "MNXR112120" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4243" - name: "Alpha-1,3/1,6-mannosyltransferase ALG2 (EC 2.4.1.132) (EC 2.4.1.257) (Asparagine-linked glycosylation protein 2) (GDP-Man:Man(1)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase) (GDP-Man:Man(1)GlcNAc(2)-PP-dolichol mannosyltransferase) (GDP-Man:Man(2)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase)" @@ -109118,16 +94363,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL065C" - - eccodes: "2.4.1.132; 2.4.1.257" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.4.1.132" + - "2.4.1.257" - annotation: !!omap - - ec-code: "2.4.1.132; 2.4.1.257" - kegg.reaction: "R05973" - metanetx.reaction: "MNXR109280" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4244" - name: "GDP-D-mannose:D-Man-alpha-(1->3)-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-6-mannosyltransferase" @@ -109140,16 +94383,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL065C" - - eccodes: "2.4.1.132; 2.4.1.257" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.4.1.132" + - "2.4.1.257" - annotation: !!omap - - ec-code: "2.4.1.132; 2.4.1.257" - kegg.reaction: "R06238" - metanetx.reaction: "MNXR110084" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4245" - name: "2-O-(6-phospho-alpha-D-mannosyl)-D-glycerate 6-phosphomannohydrolase" @@ -109162,15 +94403,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL156W" - eccodes: "3.2.1.24" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.24" - kegg.reaction: "R09645" - metanetx.reaction: "MNXR101397" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4246" - name: "Alpha-mannosidase (EC 3.2.1.24) (Alpha-D-mannoside mannohydrolase)" @@ -109183,13 +94420,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL156W" - eccodes: "3.2.1.24" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.24" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4247" - name: "ATP:L-threonyl,bicarbonate adenylyltransferase" @@ -109204,15 +94437,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL169W" - eccodes: "2.7.7.87" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.87" - kegg.reaction: "R10463" - metanetx.reaction: "MNXR113802" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4248" - name: "D-serine ammonia-lyase" @@ -109224,16 +94453,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL196W" - eccodes: "4.3.1.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.3.1.18" - bigg.reaction: "SERD_D" - kegg.reaction: "R00221" - metanetx.reaction: "MNXR104338" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4249" - name: "O3-acetyl-L-serine:hydrogen-sulfide 2-amino-2-carboxyethyltransferase; O3-acetyl-L-serine acetate-lyase (adding hydrogen sulfide)" @@ -109246,16 +94471,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR012W" - eccodes: "2.5.1.47" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.47" - bigg.reaction: "CYSS_m" - kegg.reaction: "R00897" - metanetx.reaction: "MNXR97007" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4250" - name: "Dolichyl-diphosphate phosphohydrolase" @@ -109269,15 +94490,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR036C" - eccodes: "3.6.1.43" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.43" - kegg.reaction: "R01004" - metanetx.reaction: "MNXR106783" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4251" - name: "CTP:phosphatidate cytidyltransferase" @@ -109291,15 +94508,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR046W" - eccodes: "2.7.7.41" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.7.41" - kegg.reaction: "R01799" - metanetx.reaction: "MNXR107177" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4252" - name: "Thiamine thiazole synthase (Thiazole biosynthetic enzyme)" @@ -109313,16 +94526,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR144W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R10685" - metanetx.reaction: "MNXR139808" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4253" - name: "dolichyl beta-D-glucosyl phosphate:D-Glc-alpha-(1->3)-D-Glc-alpha-(1->3)-D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,2-glucosyltransferase" @@ -109336,15 +94544,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR227W" - eccodes: "2.4.1.256" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.256" - kegg.reaction: "R06264" - metanetx.reaction: "MNXR110098" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4254" - name: "nitric oxide, NADH2:oxygen oxidoreductase" @@ -109359,16 +94563,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR234W" - eccodes: "1.14.12.17" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.12.17" - bigg.reaction: "NODOx" - kegg.reaction: "R05724" - metanetx.reaction: "MNXR101996" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4255" - name: "nitric oxide, NADPH2:oxygen oxidoreductase" @@ -109383,16 +94583,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR234W" - eccodes: "1.14.12.17" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.12.17" - bigg.reaction: "NODOy" - kegg.reaction: "R05725" - metanetx.reaction: "MNXR101997" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4256" - name: "Putative lipoate-protein ligase A (EC 6.3.1.20) (Altered inheritance rate of mitochondria protein 22)" @@ -109406,15 +94602,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL046W" - eccodes: "6.3.1.20" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.1.20" - kegg.reaction: "R07770" - metanetx.reaction: "MNXR101081" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4258" - name: "[lipoyl-carrier protein]-L-lysine:lipoate ligase (AMP-forming)" @@ -109429,15 +94621,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL046W" - eccodes: "6.3.1.20" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.1.20" - kegg.reaction: "R11143" - metanetx.reaction: "MNXR114442" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4260" - name: "Deaminated glutathione amidase (dGSH amidase) (EC 3.5.1.-) (Nitrilase homolog 1)" @@ -109450,14 +94638,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL126W" - eccodes: "3.5.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.reaction: "R12024" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4261" - name: "Deaminated glutathione amidase (dGSH amidase) (EC 3.5.1.-) (Nitrilase homolog 1)" @@ -109470,14 +94654,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL126W" - eccodes: "3.5.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.-" - kegg.reaction: "R12024" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4262" - name: "citrate hydroxymutase" @@ -109488,16 +94668,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YJL200C" - eccodes: "4.2.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.2.1.-" - bigg.reaction: "ACONTm" - kegg.reaction: "R01324" - metanetx.reaction: "MNXR95384" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4263" - name: "Anion/proton exchange transporter GEF1 (CLC protein GEF1) (ClC-A) (ClC-Y1) (Voltage-gated chloride channel) [Cleaved into: GEF1 N-terminal; GEF1 C-terminal]" @@ -109507,14 +94683,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR040W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4264" - name: "succinate:NAD+ oxidoreductase" @@ -109528,15 +94699,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR051W" - eccodes: "1.3.1.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.3.1.6" - kegg.reaction: "R00402" - metanetx.reaction: "MNXR106516" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4265" - name: "nucleoside-triphosphate diphosphohydrolase" @@ -109550,15 +94717,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR069C" - eccodes: "3.6.1.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.9" - kegg.reaction: "R01532" - metanetx.reaction: "MNXR107043" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4266" - name: "Inosine triphosphate pyrophosphatase (ITPase) (Inosine triphosphatase) (EC 3.6.1.9) (Hydroxylaminopurine sensitivity protein 1) (Non-canonical purine NTP pyrophosphatase) (Non-standard purine NTP pyrophosphatase) (Nucleoside-triphosphate diphosphatase) (Nucleoside-triphosphate pyrophosphatase) (NTPase)" @@ -109572,14 +94735,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR069C" - eccodes: "3.6.1.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.9" - bigg.reaction: "NTPP5" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4267" - name: "2'-Deoxyguanosine 5'-triphosphate diphosphohydrolase" @@ -109593,16 +94752,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR069C" - eccodes: "3.6.1.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.9" - bigg.reaction: "NTPP1" - kegg.reaction: "R01855" - metanetx.reaction: "MNXR102049" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4268" - name: "dTTP diphosphohydrolase" @@ -109616,16 +94771,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR069C" - eccodes: "3.6.1.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.9" - bigg.reaction: "NTPP7" - kegg.reaction: "R11323" - metanetx.reaction: "MNXR97809" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4269" - name: "Inosine triphosphate pyrophosphatase (ITPase) (Inosine triphosphatase) (EC 3.6.1.9) (Hydroxylaminopurine sensitivity protein 1) (Non-canonical purine NTP pyrophosphatase) (Non-standard purine NTP pyrophosphatase) (Nucleoside-triphosphate diphosphatase) (Nucleoside-triphosphate pyrophosphatase) (NTPase)" @@ -109639,13 +94790,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR069C" - eccodes: "3.6.1.9" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.9" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4270" - name: "superoxide:superoxide oxidoreductase" @@ -109658,16 +94805,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR104C" - eccodes: "1.15.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.15.1.1" - bigg.reaction: "SPODM" - kegg.reaction: "R00275" - metanetx.reaction: "MNXR104498" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4271" - name: "Endoplasmic reticulum mannosyl-oligosaccharide 1,2-alpha-mannosidase (EC 3.2.1.113) (ER alpha-1,2-mannosidase) (Man(9)-alpha-mannosidase)" @@ -109679,16 +94822,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR131W or YLR057W" - - eccodes: "3.2.1.113; 3.2.1.-" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.2.1.113" + - "3.2.1.-" - annotation: !!omap - - ec-code: "3.2.1.113; 3.2.1.-" - kegg.reaction: "R05982" - metanetx.reaction: "MNXR109973" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4272" - name: "alpha 1,2-mannosyloligosaccharide alpha-D-mannohydrolase" @@ -109700,16 +94841,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR131W or YLR057W" - - eccodes: "3.2.1.113; 3.2.1.-" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.2.1.113" + - "3.2.1.-" - annotation: !!omap - - ec-code: "3.2.1.113; 3.2.1.-" - kegg.reaction: "R06722" - metanetx.reaction: "MNXR110483" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4273" - name: "ethylnitronate:oxygen 2-oxidoreductase (nitrite-forming)" @@ -109726,15 +94865,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YJR149W" - eccodes: "1.13.12.16" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.13.12.16" - kegg.reaction: "R00025" - metanetx.reaction: "MNXR106342" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4274" - name: "O-Succinyl-L-homoserine succinate-lyase (deaminating; 2-oxobutanoate-forming)" @@ -109749,16 +94884,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL058W or YML082W" - eccodes: "2.5.1.48" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.5.1.48" - bigg.reaction: "SHSL4r" - kegg.reaction: "R00999" - metanetx.reaction: "MNXR104384" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4275" - name: "Fe(II):NADP+ oxidoreductase" @@ -109772,15 +94903,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR047C or YKL220C or YLR214W or YNR060W or YOL152W or YOR381W or YOR384W" - eccodes: "1.16.1.7" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.16.1.7" - kegg.reaction: "R09541" - metanetx.reaction: "MNXR112960" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4276" - name: "Fe(II):NADP+ oxidoreductase" @@ -109794,15 +94921,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YLL051C" - eccodes: "1.16.1.7" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.16.1.7" - kegg.reaction: "R09541" - metanetx.reaction: "MNXR112960" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4277" - name: "acyl-CoA:sn-glycerol-3-phosphate 1-O-acyltransferase" @@ -109815,15 +94938,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR099C or YPR139C" - eccodes: "2.3.1.51" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.51" - kegg.reaction: "R00851" - metanetx.reaction: "MNXR106715" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4278" - name: "diphthine:ammonia ligase (AMP-forming)" @@ -109839,15 +94958,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR143W" - eccodes: "6.3.1.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.3.1.14" - kegg.reaction: "R03613" - metanetx.reaction: "MNXR108295" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4279" - name: "8-oxo-dGTP diphosphohydrolase" @@ -109861,15 +94976,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR151C" - eccodes: "3.6.1.55" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.55" - kegg.reaction: "R09832" - metanetx.reaction: "MNXR113234" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4280" - name: "octanoyl-[acp]:protein N6-octanoyltransferase" @@ -109882,15 +94993,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR239C" - eccodes: "2.3.1.181" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.181" - kegg.reaction: "R07766" - metanetx.reaction: "MNXR111354" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4281" - name: "lipoyl-[acp]:protein N6-lipoyltransferase" @@ -109903,15 +95010,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR239C" - eccodes: "2.3.1.181" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.181" - kegg.reaction: "R07769" - metanetx.reaction: "MNXR111357" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4282" - name: "ATP:D-fructose-6-phosphate 2-phosphotransferase" @@ -109924,17 +95027,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YLR345W" - - eccodes: "2.7.1.105; 3.1.3.46" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.7.1.105" + - "3.1.3.46" - annotation: !!omap - - ec-code: "2.7.1.105; 3.1.3.46" - bigg.reaction: "PFK26_1" - kegg.reaction: "R02732" - metanetx.reaction: "MNXR102508" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4283" - name: "ATP:D-fructose 6-phosphotransferase" @@ -109948,15 +95049,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR446W" - eccodes: "2.7.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.1" - kegg.reaction: "R00867" - metanetx.reaction: "MNXR100614" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4284" - name: "ATP:beta-D-glucose 6-phosphotransferase" @@ -109970,16 +95067,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR446W" - eccodes: "2.7.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.1" - bigg.reaction: "GLUK_syn" - kegg.reaction: "R01600" - metanetx.reaction: "MNXR107081" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4285" - name: "ATP:alpha-D-glucose 6-phosphotransferase" @@ -109993,16 +95086,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR446W" - eccodes: "2.7.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.1" - bigg.reaction: "GLUKA" - kegg.reaction: "R01786" - metanetx.reaction: "MNXR100284" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4286" - name: "ATP:D-glucosamine 6-phosphotransferase" @@ -110016,16 +95105,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR446W" - eccodes: "2.7.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.1" - bigg.reaction: "HEX10" - kegg.reaction: "R01961" - metanetx.reaction: "MNXR100613" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4287" - name: "ATP:D-fructose 6-phosphotransferase" @@ -110039,16 +95124,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR446W" - eccodes: "2.7.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.1" - bigg.reaction: "ABFPT" - kegg.reaction: "R03920" - metanetx.reaction: "MNXR95167" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4288" - name: "alpha-D-Glucose 6-phosphate ketol-isomerase" @@ -110059,16 +95140,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR099C" - eccodes: "5.1.3.15" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.1.3.15" - bigg.reaction: "G6PI_1" - kegg.reaction: "R02739" - metanetx.reaction: "MNXR99911" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4291" - name: "D-Glyceraldehyde:NAD+ oxidoreductase" @@ -110083,16 +95160,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - bigg.reaction: "GLYALDDr" - kegg.reaction: "R01752" - metanetx.reaction: "MNXR100310" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4292" - name: "4-Aminobutyraldehyde:NAD+ oxidoreductase" @@ -110107,16 +95180,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - bigg.reaction: "4ABUTD" - kegg.reaction: "R01986" - metanetx.reaction: "MNXR94991" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4293" - name: "4-aminobutanal:NAD+ 1-oxidoreductase; 4-aminobutyraldehyde:NAD+ oxidoreductase" @@ -110131,16 +95200,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - bigg.reaction: "ABUTD" - kegg.reaction: "R02549" - metanetx.reaction: "MNXR95191" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4294" - name: "Indole-3-acetaldehyde:NAD+ oxidoreductase" @@ -110155,16 +95220,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - bigg.reaction: "ALDD20x" - kegg.reaction: "R02678" - metanetx.reaction: "MNXR95744" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4295" - name: "2-Propyn-1-al:NAD+ oxidoreductase" @@ -110179,15 +95240,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - kegg.reaction: "R02940" - metanetx.reaction: "MNXR107839" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4296" - name: "D-Glucuronolactone:NAD+ oxidoreductase" @@ -110202,16 +95259,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - bigg.reaction: "ALDD32" - kegg.reaction: "R02957" - metanetx.reaction: "MNXR95753" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4297" - name: "4-Trimethylammoniobutanal:NAD+ 1-oxidoreductase; 4-Trimethylammoniobutanal:NAD+ oxidoreductase" @@ -110226,15 +95279,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - kegg.reaction: "R03283" - metanetx.reaction: "MNXR108074" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4298" - name: "(S)-Methylmalonate semialdehyde:NAD+ oxidoreductase" @@ -110249,15 +95298,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - kegg.reaction: "R03869" - metanetx.reaction: "MNXR95762" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4299" - name: "Imidazole acetaldehyde:NAD+ oxidoreductase" @@ -110272,15 +95317,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - kegg.reaction: "R04065" - metanetx.reaction: "MNXR95745" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4300" - name: "3alpha,7alpha-Dihydroxy-5beta-cholestan-26-al:NAD+ oxidoreductase" @@ -110295,16 +95336,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - bigg.reaction: "r0688" - kegg.reaction: "R04506" - metanetx.reaction: "MNXR108934" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4301" - name: "5-Hydroxyindoleacetaldehyde:NAD+ oxidoreductase" @@ -110319,15 +95356,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - kegg.reaction: "R04903" - metanetx.reaction: "MNXR109205" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4302" - name: "N4-Acetylaminobutanal:NAD+ oxidoreductase" @@ -110342,16 +95375,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - bigg.reaction: "NABTNO" - kegg.reaction: "R05050" - metanetx.reaction: "MNXR101805" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4303" - name: "Fatty aldehyde dehydrogenase HFD1 (EC 1.2.1.3)" @@ -110366,15 +95395,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - kegg.reaction: "R05237" - metanetx.reaction: "MNXR109413" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4304" - name: "Fatty aldehyde dehydrogenase HFD1 (EC 1.2.1.3)" @@ -110389,15 +95414,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - kegg.reaction: "R05238" - metanetx.reaction: "MNXR109414" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4305" - name: "Chloroacetaldehyde:NAD+ oxidoreductase" @@ -110412,15 +95433,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - kegg.reaction: "R05286" - metanetx.reaction: "MNXR109457" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4306" - name: "Aldehyde:NAD+ oxidoreductase" @@ -110435,15 +95452,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - kegg.reaction: "R06366" - metanetx.reaction: "MNXR110183" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4307" - name: "farnesal:NAD+ oxidoreductase" @@ -110458,15 +95471,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR110C" - eccodes: "1.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.3" - kegg.reaction: "R08146" - metanetx.reaction: "MNXR111724" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4308" - name: "Probable phospholipid-transporting ATPase DNF3 (EC 3.6.3.1) (Aminophospholipid translocase) (APT) (Phospholipid translocase) (PLT)" @@ -110482,13 +95491,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR162C" - eccodes: "3.6.3.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.3.1" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4309" - name: "Putative esterase YMR210W (EC 3.1.1.-)" @@ -110502,13 +95507,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR210W" - eccodes: "3.1.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.1.-" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4310" - name: "GDP-mannose:glycolipid 1,2-alpha-D-mannosyltransferase" @@ -110522,15 +95523,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL048W" - eccodes: "2.4.1.131" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.131" - kegg.reaction: "R06127" - metanetx.reaction: "MNXR110030" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4311" - name: "GDP-mannose:glycolipid 1,2-alpha-D-mannosyltransferase" @@ -110544,15 +95541,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL048W" - eccodes: "2.4.1.131" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.131" - kegg.reaction: "R06128" - metanetx.reaction: "MNXR110031" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4312" - name: "S-adenosyl-L-methionine:carnosine N-methyltransferase" @@ -110566,15 +95559,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL092W" - eccodes: "2.1.1.22" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.1.1.22" - kegg.reaction: "R02144" - metanetx.reaction: "MNXR107333" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4313" - name: "Alpha-1,2-mannosyltransferase ALG9 (EC 2.4.1.259) (EC 2.4.1.261) (Asparagine-linked glycosylation protein 9) (Dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) (Dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase)" @@ -110586,16 +95575,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNL219C" - - eccodes: "2.4.1.259; 2.4.1.261" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.4.1.259" + - "2.4.1.261" - annotation: !!omap - - ec-code: "2.4.1.259; 2.4.1.261" - kegg.reaction: "R06259" - metanetx.reaction: "MNXR110093" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4314" - name: "Alpha-1,2-mannosyltransferase ALG9 (EC 2.4.1.259) (EC 2.4.1.261) (Asparagine-linked glycosylation protein 9) (Dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase) (Dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase)" @@ -110607,16 +95594,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNL219C" - - eccodes: "2.4.1.259; 2.4.1.261" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.4.1.259" + - "2.4.1.261" - annotation: !!omap - - ec-code: "2.4.1.259; 2.4.1.261" - kegg.reaction: "R06261" - metanetx.reaction: "MNXR110095" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4315" - name: "Glycolate:NAD+ oxidoreductase" @@ -110630,16 +95615,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YNL274C" - eccodes: "1.1.1.26" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.26" - bigg.reaction: "GLYCLTDx" - kegg.reaction: "R00717" - metanetx.reaction: "MNXR100331" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4316" - name: "Dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase (EC 2.4.1.260) (Asparagine-linked glycosylation protein 12) (Dolichyl-P-Man:Man(7)GlcNAc(2)-PP-dolichyl-alpha-1,6-mannosyltransferase) (Extracellular mutant protein 39) (Mannosyltransferase ALG12)" @@ -110652,15 +95633,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YNR030W" - eccodes: "2.4.1.260" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.260" - kegg.reaction: "R06260" - metanetx.reaction: "MNXR110094" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4317" - name: "sucrose glucohydrolase" @@ -110673,16 +95650,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL157C" - eccodes: "3.2.1.10" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.10" - bigg.reaction: "SUCR" - kegg.reaction: "R00801" - metanetx.reaction: "MNXR104638" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4318" - name: "Isomaltose 6-alpha-D-glucanohydrolase" @@ -110695,15 +95668,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL157C" - eccodes: "3.2.1.10" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.10" - kegg.reaction: "R01718" - metanetx.reaction: "MNXR107140" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4319" - name: "Dextrin 6-alpha-D-glucanohydrolase" @@ -110715,15 +95684,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL157C" - eccodes: "3.2.1.10" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.10" - kegg.reaction: "R01791" - metanetx.reaction: "MNXR107171" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4320" - name: "dolichyl beta-D-glucosyl phosphate:D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,3-glucosyltransferase" @@ -110737,15 +95702,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR002W" - eccodes: "2.4.1.267" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.267" - kegg.reaction: "R06262" - metanetx.reaction: "MNXR110096" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4321" - name: "dolichyl beta-D-glucosyl phosphate:D-Glc-alpha-(1->3)-D-Man-alpha-(1->2)-D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->3)-[D-Man-alpha-(1->2)-D-Man-alpha-(1->6)]-D-Man-alpha-(1->6)]-D-Man-beta-(1->4)-D-GlcNAc-beta-(1->4)-D-GlcNAc-diphosphodolichol alpha-1,3-glucosyltransferase" @@ -110759,15 +95720,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR067C" - eccodes: "2.4.1.265" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.265" - kegg.reaction: "R06263" - metanetx.reaction: "MNXR110097" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4322" - name: "GPI mannosyltransferase 4 (EC 2.4.1.-) (GPI mannosyltransferase IV) (GPI-MT-IV)" @@ -110781,15 +95738,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR149C" - eccodes: "2.4.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.-" - kegg.reaction: "R07129" - metanetx.reaction: "MNXR110833" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4323" - name: "protein N6-(octanoyl)lysine:sulfur sulfurtransferase" @@ -110804,15 +95757,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR196C" - eccodes: "2.8.1.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.8.1.8" - kegg.reaction: "R07767" - metanetx.reaction: "MNXR111355" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4324" - name: "octanoyl-[acp]:sulfur sulfurtransferase" @@ -110827,15 +95776,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR196C" - eccodes: "2.8.1.8" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.8.1.8" - kegg.reaction: "R07768" - metanetx.reaction: "MNXR111356" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4325" - name: "Iron sulfur cluster assembly protein 2, mitochondrial (Iron sulfur cluster scaffold protein 2)" @@ -110846,14 +95791,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YOR226C or YPL135W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4326" - name: "thiosulfate:cyanide sulfurtranserase" @@ -110866,17 +95806,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOR251C or YOR285W or YOR286W" - - eccodes: "2.8.1.1; 2.8.1.-" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.8.1.1" + - "2.8.1.-" - annotation: !!omap - - ec-code: "2.8.1.1; 2.8.1.-" - bigg.reaction: "CYANSTm" - kegg.reaction: "R01931" - metanetx.reaction: "MNXR138187" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4327" - name: "Magnesium transporter MRS2, mitochondrial (RNA-splicing protein MRS2)" @@ -110886,14 +95824,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOR334W or YPL060W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4328" - name: "UDPglucose:dolichyl-phosphate beta-D-glucosyltransferase" @@ -110907,15 +95840,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YPL227C" - eccodes: "2.4.1.117" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.117" - kegg.reaction: "R01005" - metanetx.reaction: "MNXR143462" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4329" - name: "Putative sulfate transporter YPR003C" @@ -110925,15 +95854,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YPR003C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "HMR_9626" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4330" - name: "Pyridoxine:NADP+ 4-oxidoreductase" @@ -110947,16 +95871,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YPR127W" - eccodes: "1.1.1.65" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.65" - bigg.reaction: "PYDXOR" - kegg.reaction: "R01708" - metanetx.reaction: "MNXR103366" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4331" - name: "[1,4-(N-Acetyl-beta-D-glucosaminyl)]n glycanohydrolase" @@ -110968,15 +95888,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR371W or YLR286C" - eccodes: "3.2.1.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.14" - kegg.reaction: "R01206" - metanetx.reaction: "MNXR106866" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4332" - name: "Protein PNS1 (pH nine-sensitive protein 1)" @@ -110986,15 +95902,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOR161C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CHOLtu" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4333" - name: "Polyphosphate phosphohydrolase" @@ -111006,16 +95917,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YHR201C or YDR452W" - - eccodes: "3.6.1.10; 3.6.1.-; 3.6.1.11" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.6.1.10" + - "3.6.1.-" + - "3.6.1.11" - annotation: !!omap - - ec-code: "3.6.1.10; 3.6.1.-; 3.6.1.11" - kegg.reaction: "R03042" - metanetx.reaction: "MNXR107906" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4334" - name: "Copper-transporting ATPase (EC 3.6.3.54) (Cu(2+)-ATPase)" @@ -111031,13 +95941,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YDR270W" - eccodes: "3.6.3.54" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.3.54" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4335" - name: "Endopolyphosphatase (EC 3.6.1.10) (Deoxyadenosine triphosphate phosphohydrolase) (dATP phosphohydrolase) (EC 3.6.1.-) (Exopolyphosphatase) (EC 3.6.1.11) (Phosphate metabolism protein 5)" @@ -111050,15 +95956,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YDR452W" - - eccodes: "3.6.1.10; 3.6.1.-; 3.6.1.11" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.6.1.10" + - "3.6.1.-" + - "3.6.1.11" - annotation: !!omap - - ec-code: "3.6.1.10; 3.6.1.-; 3.6.1.11" - bigg.reaction: "NTP2" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4336" - name: "Monoamide of a dicarboxylic acid amidohydrolase" @@ -111071,16 +95976,12 @@ - upper_bound: 1000 - gene_reaction_rule: "YLR351C" - eccodes: "3.5.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.3" - bigg.reaction: "r0085" - kegg.reaction: "R03804" - metanetx.reaction: "MNXR108439" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4337" - name: "Iron-sulfur clusters transporter ATM1, mitochondrial" @@ -111095,14 +95996,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YMR301C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4338" - name: "Oligo-1,6-glucosidase IMA2 (EC 3.2.1.10) (Alpha-glucosidase) (Isomaltase 2)" @@ -111114,15 +96010,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YOL157C" - eccodes: "3.2.1.10" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.10" - kegg.reaction: "R06199" - metanetx.reaction: "MNXR110064" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4339" - name: "UDP-N-acetylglucosamine transporter YEA4" @@ -111132,14 +96024,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YEL004W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4340" - name: "D-amino-acid N-acetyltransferase HPA3 (DNT) (EC 2.3.1.36) (EC 2.3.1.48) (Histone and other protein acetyltransferase 3)" @@ -111152,14 +96039,12 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YEL066W" - - eccodes: "2.3.1.36; 2.3.1.48" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.3.1.36" + - "2.3.1.48" - annotation: !!omap - - ec-code: "2.3.1.36; 2.3.1.48" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4341" - name: "glycerol 2-phosphate(2-) transport" @@ -111169,15 +96054,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100319" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4342" - name: "Glycerol-2-phosphate phosphohydrolase" @@ -111190,16 +96070,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.19" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.19" - bigg.reaction: "G2PP" - kegg.reaction: "R01043" - metanetx.reaction: "MNXR99852" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4343" - name: "L-Threonine phosphate transport in via proton symport" @@ -111211,15 +96087,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR136678" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4344" - name: "acid phosphatase / phosphotransferase" @@ -111232,14 +96103,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - metanetx.reaction: "MNXR103332" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4345" - name: "alkaline phosphatase" @@ -111252,14 +96119,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - metanetx.reaction: "MNXR118732" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4346" - name: "Guanosine transport via proton symport" @@ -111271,14 +96134,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4347" - name: "Guanosine 3'-phosphate phosphohydrolase" @@ -111291,16 +96149,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.6" - bigg.reaction: "3NUCLE4" - kegg.reaction: "R02148" - metanetx.reaction: "MNXR94936" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4348" - name: "Guanosine transport via proton symport(for 3'-GMP)" @@ -111312,15 +96166,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3GMPt6" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4349" - name: "2-Phosphoglycolate transport in/out via proton symport" @@ -111332,16 +96181,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2PGLYCt6" - metanetx.reaction: "MNXR94822" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4350" - name: "2-phosphoglycolate phosphohydrolase" @@ -111354,16 +96198,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.18" - bigg.reaction: "PGLYCP" - kegg.reaction: "R01334" - metanetx.reaction: "MNXR102543" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4351" - name: "alkaline phosphatase" @@ -111376,14 +96216,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - metanetx.reaction: "MNXR118734" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4352" - name: "cysteamine S-phosphate transport via proton symport" @@ -111393,14 +96229,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4353" - name: "Cysteamine:oxygen oxidoreductase" @@ -111413,15 +96244,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "1.13.11.19" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.13.11.19" - kegg.reaction: "R02467" - metanetx.reaction: "MNXR107528" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4354" - name: "hypotaurine:NAD+ oxidoreductase" @@ -111436,15 +96263,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "1.8.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.8.1.3" - kegg.reaction: "R01681" - metanetx.reaction: "MNXR107116" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4355" - name: "2-aminobutanoate:2-oxoglutarate aminotransferase" @@ -111457,16 +96280,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "2.6.1.42" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.6.1.42" - bigg.reaction: "RE2034C" - kegg.reaction: "R10991" - metanetx.reaction: "MNXR103594" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4356" - name: "2-aminobutyrate transport" @@ -111478,14 +96297,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4357" - name: "alkaline phosphatase" @@ -111498,14 +96312,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - metanetx.reaction: "MNXR118730" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4358" - name: "Uridine 2'-phosphate transport in via proton symport" @@ -111517,15 +96327,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR136675" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4359" - name: "Uridine 3'-monophosphate phosphohydrolase" @@ -111538,16 +96343,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.6" - bigg.reaction: "3NUCLE2" - kegg.reaction: "R01877" - metanetx.reaction: "MNXR94932" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4360" - name: "3'-UMP transport in via proton symport" @@ -111559,16 +96360,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3UMPt6" - metanetx.reaction: "MNXR94982" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4361" - name: "Gly-Met transport via proton symport" @@ -111580,15 +96376,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR152W or YKR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137072" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4362" - name: "dipeptidase" @@ -111601,14 +96392,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.4.13.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123343" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4363" - name: "R07420" @@ -111619,16 +96406,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R07420" - metanetx.reaction: "MNXR111061" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4364" - name: "N-phosphocreatine transport" @@ -111640,14 +96422,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4365" - name: "creatinine transport" @@ -111659,14 +96436,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4366" - name: "ATP:L-arginine Nomega-phosphotransferase" @@ -111680,16 +96452,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "2.7.3.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.3.3" - bigg.reaction: "ARGKr" - kegg.reaction: "R00554" - metanetx.reaction: "MNXR95943" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4367" - name: "L-arginine phosphate transport in/out via proton symport" @@ -111701,16 +96469,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ARGPt6" - metanetx.reaction: "MNXR95947" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4368" - name: "acid phosphatase / phosphotransferase" @@ -111722,15 +96485,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104998" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4369" - name: "Tripolyphosphate transport in via proton symport" @@ -111742,15 +96500,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR135003" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4370" - name: "alkaline phosphatase" @@ -111763,14 +96516,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - metanetx.reaction: "MNXR118731" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4371" - name: "Cytidine- 2'- Monophosphate transport in via proton symport" @@ -111782,15 +96531,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR135010" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4372" - name: "cyclic phosphodiesterase" @@ -111803,14 +96547,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.4.37" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.37" - metanetx.reaction: "MNXR117327" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4373" - name: "2',3'-Cyclic UMP transport in via proton symport" @@ -111822,15 +96562,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR136674" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4374" - name: "3-Sulfino-L-alanine 4-carboxy-lyase" @@ -111844,15 +96579,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.13.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.13.1.-" - kegg.reaction: "R00863" - metanetx.reaction: "MNXR123155" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4375" - name: "3-Sulfino-L-alanine transport via proton antiport" @@ -111864,15 +96595,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137086" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4376" - name: "adenosine 3'-phosphate phosphohydrolase" @@ -111885,16 +96611,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.6" - bigg.reaction: "3NUCLE1" - kegg.reaction: "R01562" - metanetx.reaction: "MNXR94935" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4377" - name: "3AMP transport via diffusion (extracellular to periplasm)" @@ -111904,15 +96626,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR94857" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4378" - name: "alpha-glucosidase" @@ -111925,14 +96642,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.2.1.20" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.20" - metanetx.reaction: "MNXR130717" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4379" - name: "Palatinose transport in via proton symport" @@ -111944,16 +96657,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PALAt2" - metanetx.reaction: "MNXR102339" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4380" - name: "Amino-Acid N-Acetyltransferase" @@ -111966,15 +96674,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR103637" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4381" - name: "Acetylcysteine transport via proton symport" @@ -111986,15 +96689,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137052" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4382" - name: "thiosulfate:ferricytochrome-c oxidoreductase" @@ -112007,15 +96705,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "1.8.2.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.8.2.2" - kegg.reaction: "R00029" - metanetx.reaction: "MNXR138952" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4383" - name: "etrathionate transport via diffusion" @@ -112025,15 +96719,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104796" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4384" - name: "D-Gluconate:NADP+ 5-oxidoreductase" @@ -112046,17 +96735,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "1.1.1.-; 1.1.1.69" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.69" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.69" - bigg.reaction: "5DGLCNR" - kegg.reaction: "R01740" - metanetx.reaction: "MNXR95065" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4385" - name: "5-Dehydro-D-gluconate transport via proton symport" @@ -112068,15 +96755,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95066" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4386" - name: "dipeptidase" @@ -112089,14 +96771,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.4.13.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123344" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4387" - name: "ala-L-asp-L transport via proton symport" @@ -112108,15 +96786,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR152W or YKR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137135" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4388" - name: "cyclic phosphodiesterase" @@ -112129,14 +96802,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.4.37" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.37" - metanetx.reaction: "MNXR117326" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4389" - name: "2',3'-Cyclic CMP transport in via proton symport" @@ -112148,15 +96817,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR136673" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4390" - name: "beta-glucosidase (methyl-alpha-D-glucoside)" @@ -112169,14 +96833,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.2.1.21" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.21" - metanetx.reaction: "MNXR142673" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4391" - name: "Methanol diffusion" @@ -112186,16 +96846,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MEOHt2" - metanetx.reaction: "MNXR101464" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4392" - name: "alpha-Methyl-D-glucoside transport via proton symport" @@ -112207,15 +96862,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR144815" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4393" - name: "ATP:D-tagatose 6-phosphotransferase" @@ -112229,15 +96879,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "2.7.1.101" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.101" - kegg.reaction: "R02927" - metanetx.reaction: "MNXR107830" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4394" - name: "D-tagatose 6-phosphate 4-epimerase" @@ -112247,14 +96893,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4395" - name: "D-tagatose uptake via diffusion" @@ -112264,16 +96905,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDL245C or YDR342C or YDR343C or YDR345C or YEL069C or YFL011W or YHR092C or YHR094C or YHR096C or YJL214W or YJL219W or YJR158W or YMR011W or YNR072W or YOL156W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TAGAT_Dt" - metanetx.reaction: "MNXR104707" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4396" - name: "Acetoacetate:CoA ligase (AMP-forming)" @@ -112288,16 +96924,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "6.2.1.16" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.16" - bigg.reaction: "AACOAT" - kegg.reaction: "R01357" - metanetx.reaction: "MNXR95136" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4397" - name: "N-Acyl-Aliphatic-L-Amino Acid Amidohydrolase" @@ -112310,15 +96942,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.5.1.14" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.5.1.14" - bigg.reaction: "RE2640C" - metanetx.reaction: "MNXR103709" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4398" - name: "Ala-Gln transport via proton symport" @@ -112330,15 +96958,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR152W or YKR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137087" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4399" - name: "L-alanyl-L-glutamate transport in via proton symport" @@ -112350,15 +96973,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101006" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4400" - name: "Maltodextrin glucosidase (maltotriose)" @@ -112371,16 +96989,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.2.1.20" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.20" - bigg.reaction: "MLTG1e" - kegg.reaction: "R05196" - metanetx.reaction: "MNXR101619" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4401" - name: "Ala-Thr transport via proton symport" @@ -112392,14 +97006,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4402" - name: "Ala-Thr transport via proton symport (extracellular to cytosol)" @@ -112411,14 +97020,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR152W or YKR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4403" - name: "Triphosphate phosphohydrolase" @@ -112431,15 +97035,11 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR201C or YDR452W" - eccodes: "3.6.1.25" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.6.1.25" - kegg.reaction: "R00138" - metanetx.reaction: "MNXR103069" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4404" - name: "Gly-Asn transport via proton symport (extracellular to cytosol)" @@ -112451,14 +97051,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR152W or YKR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4405" - name: "glycerol 1-phosphate transport" @@ -112468,14 +97063,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4406" - name: "D-O-Phosphoserine transport in/out via proton symport" @@ -112487,16 +97077,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PSER_Dt6" - metanetx.reaction: "MNXR103244" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4407" - name: "D-O-Phosphoserine phosphohydrolase" @@ -112509,16 +97094,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.3" - bigg.reaction: "PSP_D" - kegg.reaction: "R02853" - metanetx.reaction: "MNXR103265" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4408" - name: "L-alanyl-L-glutamate transport in via proton symport" @@ -112530,15 +97111,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR152W or YKR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101006" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4409" - name: "L-alanyl-gamma-L-glutamate peptidase" @@ -112551,14 +97127,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.4.13.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR101011" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4410" - name: "3-oxalomalate glyoxylate-lyase (oxaloacetate-forming)" @@ -112570,15 +97142,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "4.1.3.13" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.3.13" - kegg.reaction: "R00477" - metanetx.reaction: "MNXR106549" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4411" - name: "L-cysteate bisulfite-lyase (deaminating)" @@ -112593,15 +97161,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "4.4.1.25" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.4.1.25" - kegg.reaction: "R07634" - metanetx.reaction: "MNXR111236" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4412" - name: "cyclic phosphodiesterase" @@ -112614,14 +97178,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.4.37" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.4.37" - metanetx.reaction: "MNXR117325" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4413" - name: "deoxynucleotide 3'-phosphatase" @@ -112634,14 +97194,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.34" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.34" - metanetx.reaction: "MNXR118741" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4414" - name: "cytosol nonspecific dipeptidase" @@ -112654,14 +97210,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.4.13.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123345" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4415" - name: "Cytosol non-specific dipeptidase" @@ -112674,14 +97226,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.4.13.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123347" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4416" - name: "Cytosol non-specific dipeptidase" @@ -112694,14 +97242,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.4.13.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123349" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4417" - name: "Cytosol non-specific dipeptidase" @@ -112714,14 +97258,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.4.13.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123350" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4418" - name: "Cytosol non-specific dipeptidase" @@ -112734,14 +97274,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.4.13.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123351" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4419" - name: "L-Cysteate transport via proton symport" @@ -112753,15 +97289,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR124424" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4420" - name: "alpha-glucosidase" @@ -112774,14 +97305,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.2.1.20" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.20" - metanetx.reaction: "MNXR130716" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4421" - name: "2-Hydroxyethanesulfonate transport via proton symport" @@ -112793,15 +97320,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137058" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4422" - name: "3-Oxalomalate transport via proton symport" @@ -112813,15 +97335,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137067" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4423" - name: "Gly-Met transport via proton symport" @@ -112833,15 +97350,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137072" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4424" - name: "Gly-Gln transport via proton symport" @@ -112853,15 +97365,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR152W or YKR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137074" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4425" - name: "Gly-Gln transport via proton symport" @@ -112873,15 +97380,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137074" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4426" - name: "Ala-Gln transport via proton symport" @@ -112893,15 +97395,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137087" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4427" - name: "N-Acetylmethionine transport via proton symport" @@ -112913,15 +97410,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137089" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4428" - name: "Phosphotyrosine transport via proton symport" @@ -112933,15 +97425,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137095" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4429" - name: "Ala-His transport via proton symport" @@ -112953,15 +97440,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR152W or YKR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137107" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4430" - name: "Ala-His transport via proton symport" @@ -112973,15 +97455,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137107" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4431" - name: "ala-L-asp-L transport via proton symport" @@ -112993,15 +97470,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137135" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4432" - name: "FMNH2-dependent alkanesulfonate monooxygenase" @@ -113018,15 +97490,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "1.14.14.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.14.14.5" - bigg.reaction: "FDMO" - metanetx.reaction: "MNXR99485" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4433" - name: "thymidine 3-monophosphate transport" @@ -113036,14 +97504,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4434" - name: "thymidine 5-monophosphate transport" @@ -113053,14 +97516,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4435" - name: "glycerol-1-phosphate phosphohydrolase" @@ -113072,16 +97530,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YIL053W or YER062C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R08658" - metanetx.reaction: "MNXR112173" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4436" - name: "nucleotide-specific phosphatase (thymidine 5'-monophosphate)" @@ -113093,14 +97546,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4437" - name: "Gly-Glu transport via proton symport (extracellular to cytosol)" @@ -113112,14 +97560,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR152W or YKR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4438" - name: "Gly-Glu transport via proton symport (cytosol to vacuole)" @@ -113131,14 +97574,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4439" - name: "cytosol nonspecific dipeptidase" @@ -113151,14 +97589,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.4.13.18" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.4.13.18" - metanetx.reaction: "MNXR123352" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4440" - name: "L-methionine transport, vacuoluar" @@ -113168,14 +97602,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4441" - name: "L-threonine transport, vacuoluar" @@ -113185,14 +97614,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4442" - name: "cysteamine exchange" @@ -113201,12 +97625,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_cysam_e" - sbo: "SBO:0000627" - !!omap @@ -113218,15 +97637,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR94721" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4444" - name: "D-Glycerate 2-phosphate transport in/out via proton symport" @@ -113238,16 +97652,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "2PGt6" - metanetx.reaction: "MNXR94824" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4445" - name: "3-Phospho-D-glycerate transport in/out via proton symport" @@ -113259,16 +97668,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "3PGt6" - metanetx.reaction: "MNXR94973" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4446" - name: "D-glucose 1-phosphate transport via diffusion" @@ -113278,15 +97682,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99849" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4447" - name: "carbamoyl phosphate nuclear transport via diffusion" @@ -113296,15 +97695,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96488" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4448" - name: "Met-Ala transport via proton symport (extracellular to cytosol)" @@ -113316,14 +97710,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR152W or YKR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4449" - name: "Met-Ala transport via proton symport (cytosol to vacuole)" @@ -113335,14 +97724,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4450" - name: "O-Phospho-L-serine transport in via proton symport" @@ -113354,16 +97738,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PSER_Lt6" - metanetx.reaction: "MNXR103245" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4451" - name: "GMP transport via proton symport" @@ -113375,16 +97754,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GMPt6" - metanetx.reaction: "MNXR100385" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4452" - name: "myo-inositol phosphate transport via diffusion (extracellular to periplasm)" @@ -113394,15 +97768,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101585" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4453" - name: "D-glucose 6-phosphate transport" @@ -113412,15 +97781,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99915" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4454" - name: "UMP transport" @@ -113430,15 +97794,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR105127" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4455" - name: "Phosphoenolpyruvate transport in via proton symport" @@ -113450,16 +97809,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PEPt6" - metanetx.reaction: "MNXR102493" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4456" - name: "Mannose 6-phosphate transport via diffusion (extracellular to periplasm)" @@ -113469,15 +97823,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101385" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4457" - name: "O-Phosphoryl-Ethanolamine transport in via proton symport" @@ -113489,15 +97838,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR135002" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4458" - name: "6-Phospho-D-gluconate transport in/out via proton symport" @@ -113509,16 +97853,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "6PGCt6" - metanetx.reaction: "MNXR95102" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4459" - name: "MAN1P transport in/out via proton symport" @@ -113530,16 +97869,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MAN1Pt6" - metanetx.reaction: "MNXR101377" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4460" - name: "Pyrophosphate transport in via proton symport" @@ -113551,15 +97885,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR136667" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4461" - name: "Choline phosphate intracellular transport" @@ -113569,16 +97898,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CHOLPtr" - metanetx.reaction: "MNXR96703" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4462" - name: "thiosulfate transport" @@ -113588,16 +97912,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "TSULt" - metanetx.reaction: "MNXR104966" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4463" - name: "AMP transport in/out via proton symport" @@ -113609,16 +97928,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AMPt6" - metanetx.reaction: "MNXR95831" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4464" - name: "23cAMP transport via diffusion (extracellular to periplasm)" @@ -113628,15 +97942,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR94718" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4465" - name: "Adenosine- 2'-Monophosphate transport in via proton symport" @@ -113648,15 +97957,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR135007" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4466" - name: "CMP transport in/out via proton symport" @@ -113668,16 +97972,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CMPt6" - metanetx.reaction: "MNXR96805" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4467" - name: "D-glucosamine transport via diffusion (extracellular to periplasm)" @@ -113687,16 +97986,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GAMt1r" - metanetx.reaction: "MNXR100035" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4468" - name: "2-deoxy-D-ribose transport" @@ -113706,15 +98000,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YDR342C or YHR092C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DRIBt" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4469" - name: "L-Citrulline transport in via proton symport" @@ -113726,16 +98015,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YKR039W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "CITRt2r" - metanetx.reaction: "MNXR96737" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4470" - name: "Dihydroxyacetone transport via facilitated diffusion" @@ -113745,16 +98029,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "DHAt" - metanetx.reaction: "MNXR97367" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4471" - name: "Ala-Leu transport via proton symport (extracellular to cytosol)" @@ -113766,14 +98045,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR152W or YKR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4472" - name: "Ala-Leu transport via proton symport (cytosol to vacuole)" @@ -113785,14 +98059,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4473" - name: "L-alanylglycine transport via proton antiport" @@ -113804,15 +98073,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR152W or YKR093W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137133" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4474" - name: "L-alanylglycine transport via proton antiport" @@ -113824,15 +98088,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137133" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4475" - name: "N-acetyl-L-glutamate transport" @@ -113842,15 +98101,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ACGLUtd" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4476" - name: "N-acetyl-L-glutamate transport" @@ -113860,15 +98114,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ACGLUtm" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4477" - name: "Lipoamide transport via proton symport" @@ -113880,16 +98129,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "LPAMt" - metanetx.reaction: "MNXR137094" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4478" - name: "L-methionine S-oxide transport via diffusion (extracellular)" @@ -113899,15 +98143,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101483" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4479" - name: "Gly-Asn transport via proton symport" @@ -113919,14 +98158,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4480" - name: "Cysteamine transport via proton antiport" @@ -113938,15 +98172,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137130" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4481" - name: "Hydrogen sulfide oxidation" @@ -113958,14 +98187,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4482" - name: "L-alanine transport in via proton symport" @@ -113977,15 +98201,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95704" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4483" - name: "Glycine transport (vacuole)" @@ -113997,15 +98216,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100368" - sbo: "SBO:0000655" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4484" - name: "O4-succinyl-L-homoserine:hydrogen sulfide S-(3-amino-3-carboxypropyl)transferase; O-succinyl-L-homoserine succinate-lyase (adding hydrogen sulfide)" @@ -114017,17 +98231,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YJR130C or YLL058W or YML082W" - - eccodes: "2.5.1.-; 2.5.1.48" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.5.1.-" + - "2.5.1.48" - annotation: !!omap - - ec-code: "2.5.1.-; 2.5.1.48" - bigg.reaction: "SHSL2" - kegg.reaction: "R01288" - metanetx.reaction: "MNXR104382" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4485" - name: "4-Hydroxyphenylpyruvate:oxygen oxidoreductase (hydroxylating,decarboxylating)" @@ -114040,16 +98252,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "1.13.11.27" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.13.11.27" - bigg.reaction: "34HPPOR" - kegg.reaction: "R02521" - metanetx.reaction: "MNXR94843" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4486" - name: "Homogentisate:oxygen 1,2-oxidoreductase (decyclizing)" @@ -114062,16 +98270,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "1.13.11.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.13.11.5" - bigg.reaction: "HGNTOR" - kegg.reaction: "R02519" - metanetx.reaction: "MNXR100628" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4487" - name: "4-Maleylacetoacetate cis-trans-isomerase" @@ -114082,16 +98286,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "5.2.1.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "5.2.1.2" - bigg.reaction: "MACACI" - kegg.reaction: "R03181" - metanetx.reaction: "MNXR101325" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4488" - name: "4-fumarylacetoacetate fumarylhydrolase" @@ -114105,16 +98305,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.7.1.2" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.7.1.2" - bigg.reaction: "FUMAC" - kegg.reaction: "R01364" - metanetx.reaction: "MNXR99706" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4489" - name: "L-arabinitol:NAD+ 4-oxidoreductase (L-xylulose-forming)" @@ -114128,16 +98324,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "1.1.1.12" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.12" - bigg.reaction: "ABTD" - kegg.reaction: "R01903" - metanetx.reaction: "MNXR137988" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4490" - name: "Xylitol:NADP+ 4-oxidoreductase (L-xylulose-forming)" @@ -114151,16 +98343,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "1.1.1.10" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.10" - bigg.reaction: "XYLUR" - kegg.reaction: "R01904" - metanetx.reaction: "MNXR105265" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4491" - name: "arabinose reductase (D-arabinose)" @@ -114173,14 +98361,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4492" - name: "D-arabinitol:NAT 4-oxidoreductase" @@ -114194,16 +98377,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "1.1.1.11" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.11" - bigg.reaction: "ABTDG" - kegg.reaction: "R05604" - metanetx.reaction: "MNXR95188" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4493" - name: "Acetoacetate transport via diffusion" @@ -114213,15 +98392,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNL065W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95208" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4494" - name: "methanol exchange" @@ -114230,12 +98404,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_meoh_e" - metanetx.reaction: "MNXR101464" - sbo: "SBO:0000627" @@ -114251,14 +98420,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.1.3.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.1.3.-" - metanetx.reaction: "MNXR118733" - sbo: "SBO:0000176" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4496" - name: "Ala-Gly exchange" @@ -114267,12 +98432,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_L_alagly_e" - sbo: "SBO:0000627" - !!omap @@ -114283,12 +98443,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4498" @@ -114298,12 +98453,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pala_e" - sbo: "SBO:0000627" - !!omap @@ -114314,12 +98464,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_5dglcn_e" - sbo: "SBO:0000627" - !!omap @@ -114330,12 +98475,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_tag__D_e" - sbo: "SBO:0000627" - !!omap @@ -114346,12 +98486,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4502" @@ -114361,12 +98496,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_g6p_e" - sbo: "SBO:0000627" - !!omap @@ -114377,12 +98507,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_malttr_e" - sbo: "SBO:0000627" - !!omap @@ -114393,12 +98518,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_g1p_e" - sbo: "SBO:0000627" - !!omap @@ -114409,12 +98529,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_madg_e" - sbo: "SBO:0000627" - !!omap @@ -114425,12 +98540,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gam_e" - sbo: "SBO:0000627" - !!omap @@ -114441,12 +98551,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_dha_e" - sbo: "SBO:0000627" - !!omap @@ -114457,12 +98562,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ala_L_gln__L_e" - sbo: "SBO:0000627" - !!omap @@ -114473,12 +98573,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4510" @@ -114488,12 +98583,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gly_gln__L_e" - sbo: "SBO:0000627" - !!omap @@ -114504,12 +98594,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ala_L_his__L_e" - sbo: "SBO:0000627" - !!omap @@ -114520,12 +98605,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gly_asn__L_e" - sbo: "SBO:0000627" - !!omap @@ -114536,12 +98616,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_LalaLglu_e" - sbo: "SBO:0000627" - !!omap @@ -114552,12 +98627,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gly_met__L_e" - sbo: "SBO:0000627" - !!omap @@ -114568,12 +98638,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ala_L_asp__L_e" - sbo: "SBO:0000627" - !!omap @@ -114584,12 +98649,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gly_glu__L_e" - sbo: "SBO:0000627" - !!omap @@ -114600,12 +98660,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ala_L_Thr__L_e" - sbo: "SBO:0000627" - !!omap @@ -114616,12 +98671,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_met_L_ala__L_e" - sbo: "SBO:0000627" - !!omap @@ -114632,12 +98682,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_citr__L_e" - sbo: "SBO:0000627" - !!omap @@ -114648,12 +98693,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_C02356_e" - sbo: "SBO:0000627" - !!omap @@ -114664,12 +98704,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_cholp_e" - sbo: "SBO:0000627" - !!omap @@ -114680,12 +98715,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4523" @@ -114695,12 +98725,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_2pg_e" - sbo: "SBO:0000627" - !!omap @@ -114711,12 +98736,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_gmp_e" - sbo: "SBO:0000627" - !!omap @@ -114727,12 +98747,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pser__L_e" - sbo: "SBO:0000627" - !!omap @@ -114743,12 +98758,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pser__D_e" - sbo: "SBO:0000627" - !!omap @@ -114759,12 +98769,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ppi_e" - sbo: "SBO:0000627" - !!omap @@ -114775,12 +98780,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4529" @@ -114790,12 +98790,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_pep_e" - sbo: "SBO:0000627" - !!omap @@ -114806,12 +98801,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_argp_e" - sbo: "SBO:0000627" - !!omap @@ -114822,12 +98812,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4532" @@ -114837,12 +98822,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ethamp_e" - sbo: "SBO:0000627" - !!omap @@ -114853,12 +98833,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4534" @@ -114868,12 +98843,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4535" @@ -114883,12 +98853,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_glyc2p_e" - sbo: "SBO:0000627" - !!omap @@ -114899,12 +98864,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_3gmp_e" - sbo: "SBO:0000627" - !!omap @@ -114915,12 +98875,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_2pglyc_e" - sbo: "SBO:0000627" - !!omap @@ -114931,12 +98886,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_6pgc_e" - sbo: "SBO:0000627" - !!omap @@ -114947,12 +98897,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_man6p_e" - sbo: "SBO:0000627" - !!omap @@ -114963,12 +98908,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_23cgmp_e" - sbo: "SBO:0000627" - !!omap @@ -114979,12 +98919,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_tyrp_e" - sbo: "SBO:0000627" - !!omap @@ -114995,12 +98930,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_thrp_e" - sbo: "SBO:0000627" - !!omap @@ -115011,12 +98941,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_3pg_e" - sbo: "SBO:0000627" - !!omap @@ -115027,12 +98952,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4545" @@ -115042,12 +98962,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_3amp_e" - sbo: "SBO:0000627" - !!omap @@ -115058,12 +98973,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_23camp_e" - sbo: "SBO:0000627" - !!omap @@ -115074,12 +98984,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_man1p_e" - sbo: "SBO:0000627" - !!omap @@ -115090,12 +98995,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_amp_e" - sbo: "SBO:0000627" - !!omap @@ -115106,12 +99006,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_C02712_e" - sbo: "SBO:0000627" - !!omap @@ -115122,12 +99017,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_metsox_S__L_e" - sbo: "SBO:0000627" - !!omap @@ -115138,12 +99028,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4552" @@ -115153,12 +99038,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_CE1310_e" - sbo: "SBO:0000627" - !!omap @@ -115169,12 +99049,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_Lcyst_e" - sbo: "SBO:0000627" - !!omap @@ -115185,12 +99060,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_isetac_e" - sbo: "SBO:0000627" - !!omap @@ -115201,12 +99071,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_acac_e" - sbo: "SBO:0000627" - !!omap @@ -115217,12 +99082,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_acglu_e" - sbo: "SBO:0000627" - !!omap @@ -115233,12 +99093,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ump_e" - sbo: "SBO:0000627" - !!omap @@ -115249,12 +99104,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_cmp_e" - sbo: "SBO:0000627" - !!omap @@ -115265,12 +99115,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4560" @@ -115280,12 +99125,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4561" @@ -115295,12 +99135,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4562" @@ -115310,12 +99145,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - !!omap - id: "r_4563" @@ -115325,12 +99155,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_3ump_e" - sbo: "SBO:0000627" - !!omap @@ -115341,12 +99166,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_23ccmp_e" - sbo: "SBO:0000627" - !!omap @@ -115357,12 +99177,7 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_23cump_e" - sbo: "SBO:0000627" - !!omap @@ -115378,15 +99193,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "2.7.1.12" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.1.12" - kegg.reaction: "R01737" - metanetx.reaction: "MNXR100390" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4567" - name: "6-phosphogluconate phosphatase" @@ -115398,15 +99209,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "3.1.3.-; 3.1.3.2; 3.1.3.29" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.1.3.-" + - "3.1.3.2" + - "3.1.3.29" - annotation: !!omap - - ec-code: "3.1.3.-; 3.1.3.2; 3.1.3.29" - metanetx.reaction: "MNXR123213" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4568" - name: "R06790" @@ -115417,16 +99227,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R06790" - metanetx.reaction: "MNXR139469" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4569" - name: "Carboxylic ester hydrolases" @@ -115439,16 +99244,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "3.1.1.-; 3.1.1.2" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.1.1.-" + - "3.1.1.2" - annotation: !!omap - - ec-code: "3.1.1.-; 3.1.1.2" - kegg.reaction: "R06893" - metanetx.reaction: "MNXR110621" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4570" - name: "phosphoglycerate dehydrogenase" @@ -115462,15 +99265,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "1.1.1.95" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.95" - kegg.reaction: "R08198" - metanetx.reaction: "MNXR111769" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4571" - name: "seed:rxn00681" @@ -115484,15 +99283,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR134240" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4572" - name: "beta-alanine:2-oxoglutarate aminotransferase" @@ -115504,16 +99298,14 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "2.6.1.19; 2.6.1.55" - - references: "" - - subsystem: - - "" + - eccodes: + - "2.6.1.19" + - "2.6.1.55" - annotation: !!omap - - ec-code: "2.6.1.19; 2.6.1.55" - kegg.reaction: "R00908" - metanetx.reaction: "MNXR95862" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4573" - name: "3-Oxopropanoate:NAD+ oxidoreductase (decarboxylating, CoA-acetylating)" @@ -115527,17 +99319,16 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "1.2.1.-; 1.2.1.18; 1.2.1.27" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.2.1.-" + - "1.2.1.18" + - "1.2.1.27" - annotation: !!omap - - ec-code: "1.2.1.-; 1.2.1.18; 1.2.1.27" - bigg.reaction: "MMSAD3" - kegg.reaction: "R00705" - metanetx.reaction: "MNXR101665" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4574" - name: "3-Oxopropanoate:NADP+ oxidoreductase (decarboxylating, CoA-acetylating)" @@ -115551,16 +99342,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "1.2.1.-; 1.2.1.18" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.2.1.-" + - "1.2.1.18" - annotation: !!omap - - ec-code: "1.2.1.-; 1.2.1.18" - kegg.reaction: "R00706" - metanetx.reaction: "MNXR106650" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4575" - name: "3-oxopropanoate carboxy-lyase" @@ -115572,16 +99361,14 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "4.1.1.-; 4.2.1.155" - - references: "" - - subsystem: - - "" + - eccodes: + - "4.1.1.-" + - "4.2.1.155" - annotation: !!omap - - ec-code: "4.1.1.-; 4.2.1.155" - kegg.reaction: "R06973" - metanetx.reaction: "MNXR110693" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4576" - name: "(R)-2,3-Dihydroxy-3-methylbutanoate:NADP+ oxidoreductase (isomerizing)" @@ -115595,15 +99382,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "1.1.1.86" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.86" - kegg.reaction: "R04440" - metanetx.reaction: "MNXR100904" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4577" - name: "Dihydroxy-acid dehydratase, mitochondrial" @@ -115614,16 +99397,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - kegg.reaction: "R01209" - metanetx.reaction: "MNXR106867" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4578" - name: "Ketol-acid reductoisomerase, mitochondrial" @@ -115636,15 +99414,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR137279" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4579" - name: "pyruvate:pyruvate acetaldehydetransferase (decarboxylating); (S)-2-acetolactate pyruvate-lyase (carboxylating)" @@ -115657,16 +99430,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "2.2.1.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.2.1.6" - bigg.reaction: "ACLS" - kegg.reaction: "R00226" - metanetx.reaction: "MNXR95271" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4580" - name: "(R)-2,3-dihydroxy-3-methylbutanoate:NADP+ oxidoreductase (isomerizing)" @@ -115679,17 +99448,15 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "1.1.1.383; 1.1.1.86" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.383" + - "1.1.1.86" - annotation: !!omap - - ec-code: "1.1.1.383; 1.1.1.86" - bigg.reaction: "KARA1" - kegg.reaction: "R04439" - metanetx.reaction: "MNXR97523" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4581" - name: "(2R,3S)-3-methylmalate:NAD+ oxidoreductase" @@ -115702,17 +99469,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "1.1.1.-; 1.1.1.85" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.85" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.85" - bigg.reaction: "ERTHMMOR" - kegg.reaction: "R00994" - metanetx.reaction: "MNXR106779" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4582" - name: "malate/beta-methylmalate synthase" @@ -115727,14 +99492,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "2.3.3.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.3.-" - metanetx.reaction: "MNXR121603" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4583" - name: "palmitoyl-CoA hydrolase" @@ -115747,17 +99508,15 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "3.1.2.-; 3.1.2.2" - - references: "" - - subsystem: - - "" + - eccodes: + - "3.1.2.-" + - "3.1.2.2" - annotation: !!omap - - ec-code: "3.1.2.-; 3.1.2.2" - bigg.reaction: "FACOAE1829Z12Z" - kegg.reaction: "R08177" - metanetx.reaction: "MNXR99136" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4584" - name: "long-chain-fatty-acid---CoA ligase" @@ -115772,15 +99531,11 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "6.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - bigg.reaction: "FACOAL1821" - metanetx.reaction: "MNXR99175" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4585" - name: "a-galactosidase (stachyose)" @@ -115793,16 +99548,12 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "3.2.1.22" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "3.2.1.22" - bigg.reaction: "STACHGALACT" - kegg.reaction: "R03634" - metanetx.reaction: "MNXR100010" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4586" - name: "stachyose synthase" @@ -115814,14 +99565,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "2.4.1.-" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.4.1.-" - metanetx.reaction: "MNXR122225" - sbo: "SBO:0000176" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4587" - name: "Ca(2+) transport" @@ -115833,15 +99580,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOL122C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR96437" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4588" - name: "chloride transport" @@ -115851,16 +99593,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YNL275W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "Clt" - metanetx.reaction: "MNXR96797" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4589" - name: "Cu2(+) transport" @@ -115872,15 +99609,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOL122C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR126350" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4590" - name: "Mn(2+) transport" @@ -115892,16 +99624,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YOL130W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "MNt2" - metanetx.reaction: "MNXR101669" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4591" - name: "Zn(2+) transport" @@ -115913,16 +99640,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGL255W or YLR130C" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "r2073_1" - metanetx.reaction: "MNXR105278" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4592" - name: "Mg(2+) transport" @@ -115934,15 +99656,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "YGR191W or YOL130W" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101553" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4593" - name: "chloride exchange" @@ -115951,12 +99668,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_cl_e" - sbo: "SBO:0000627" - !!omap @@ -115967,12 +99679,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_cu2_e" - sbo: "SBO:0000627" - !!omap @@ -115983,12 +99690,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_mn2_e" - sbo: "SBO:0000627" - !!omap @@ -115999,12 +99701,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_zn2_e" - sbo: "SBO:0000627" - !!omap @@ -116015,12 +99712,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_mg2_e" - sbo: "SBO:0000627" - !!omap @@ -116041,14 +99733,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4599" - name: "ion pseudoreaction" @@ -116067,14 +99754,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000395" - - confidence_score: 1 + - confidence_score: 1 - !!omap - id: "r_4600" - name: "Ca(2+) exchange" @@ -116083,12 +99765,7 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "EX_ca2_e" - sbo: "SBO:0000627" - !!omap @@ -116102,15 +99779,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR94845" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4602" - name: "acetate transport" @@ -116120,15 +99792,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR95431" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4603" - name: "ADP-ribose transport" @@ -116138,16 +99805,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ADPRIBt" - metanetx.reaction: "MNXR95481" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4604" - name: "farnesyl diphosphate transport" @@ -116157,15 +99819,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99646" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4605" - name: "nicotinate transport" @@ -116177,15 +99834,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101858" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4606" - name: "O-phosphoethanolamine transport" @@ -116197,15 +99849,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR135002" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4607" - name: "phosphate transport" @@ -116215,16 +99862,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "PItg" - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4608" - name: "propionyl-CoA transport" @@ -116239,16 +99881,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "r2499" - metanetx.reaction: "MNXR106312" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4609" - name: "UDP transport" @@ -116258,16 +99895,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "UDPtg" - metanetx.reaction: "MNXR105076" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4610" - name: "UDP transport" @@ -116277,16 +99909,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "UDPtg" - metanetx.reaction: "MNXR105076" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4611" - name: "UMP transport" @@ -116296,15 +99923,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR105127" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4612" - name: "TRX1 disulphide transport" @@ -116314,15 +99936,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104921" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4613" - name: "oleate transport" @@ -116332,15 +99949,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4614" - name: "(R)-acetoin transport" @@ -116352,16 +99964,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ACTNt2r" - metanetx.reaction: "MNXR95426" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4615" - name: "L-glutamine transport" @@ -116371,16 +99978,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "GLNtm" - metanetx.reaction: "MNXR100259" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4616" - name: "UMP transport" @@ -116390,15 +99992,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR105127" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4617" - name: "S-adenosyl-L-methionine transport" @@ -116408,16 +100005,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "AMETtn" - metanetx.reaction: "MNXR95809" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4618" - name: "glutathione transport" @@ -116427,15 +100019,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100449" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4619" - name: "ATP transport" @@ -116448,14 +100035,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "2.7.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.6" - metanetx.reaction: "MNXR96123" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4620" - name: "D-mannose 6-phosphate transport" @@ -116465,15 +100048,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR101385" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4621" - name: "O-acetyl-L-serine transport" @@ -116483,16 +100061,11 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - bigg.reaction: "ACSERtmi" - metanetx.reaction: "MNXR95416" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4622" - name: "hydrogen sulfide transport" @@ -116502,15 +100075,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR100494" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4623" - name: "L-cysteinylglycine transport" @@ -116522,15 +100090,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR97002" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4624" - name: "ATP transport" @@ -116543,14 +100106,10 @@ - upper_bound: 1000 - gene_reaction_rule: "" - eccodes: "2.7.4.6" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.7.4.6" - metanetx.reaction: "MNXR96123" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4625" - name: "thiosulfate transport" @@ -116560,15 +100119,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104966" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4626" - name: "sulphite transport" @@ -116578,15 +100132,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR104460" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4627" - name: "UDP-D-glucose transport" @@ -116596,15 +100145,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR105071" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4628" - name: "UDP-N-acetyl-alpha-D-glucosamine transport" @@ -116614,15 +100158,10 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - metanetx.reaction: "MNXR105021" - sbo: "SBO:0000655" - - confidence_score: 0 + - confidence_score: 0 - !!omap - id: "r_4629" - name: "alcohol acyltransferase (hexanoyl-CoA)" @@ -116635,14 +100174,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR177C or YPL095C" - eccodes: "2.3.1.84" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - kegg.reaction: "R00627" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4630" - name: "alcohol acyltransferase (octanoyl-CoA)" @@ -116655,14 +100190,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR177C or YPL095C" - eccodes: "2.3.1.84" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - kegg.reaction: "R00627" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4631" - name: "alcohol acyltransferase (butyryl-CoA)" @@ -116675,14 +100206,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR177C or YPL095C" - eccodes: "2.3.1.84" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - kegg.reaction: "R00627" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4632" - name: "alcohol acetyltransferase (hexanol)" @@ -116695,14 +100222,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" - eccodes: "2.3.1.84" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - kegg.reaction: "R00627" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4633" - name: "alcohol acyltransferase (decanoyl-CoA)" @@ -116715,14 +100238,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR177C or YPL095C" - eccodes: "2.3.1.84" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - kegg.reaction: "R00627" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4634" - name: "ethyl hexanoate transport, mitochondrial" @@ -116732,14 +100251,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4635" - name: "ethyl octanoate transport, mitochondrial" @@ -116749,14 +100263,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4636" - name: "ethyl butanoate transport, mitochondrial" @@ -116766,14 +100275,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4637" - name: "hexyl acetate transport, mitochondrial" @@ -116783,14 +100287,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4638" - name: "ethyl decanoate transport, mitochondrial" @@ -116800,14 +100299,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4639" - name: "ethyl hexanoate transport" @@ -116817,14 +100311,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4640" - name: "ethyl octanoate transport" @@ -116834,14 +100323,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4641" - name: "ethyl butanoate transport" @@ -116851,14 +100335,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4642" - name: "hexyl acetate transport" @@ -116868,14 +100347,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4643" - name: "ethyl decanoate transport" @@ -116885,14 +100359,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4644" - name: "ethyl hexanoate exchange" @@ -116901,14 +100370,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4645" - name: "ethyl octanoate exchange" @@ -116917,14 +100381,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4646" - name: "ethyl butanoate exchange" @@ -116933,14 +100392,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4647" - name: "hexyl acetate exchange" @@ -116949,14 +100403,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4648" - name: "ethyl decanoate exchange" @@ -116965,14 +100414,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4649" - name: "mitochondrial ethanol O-acetyltransferase" @@ -116985,14 +100429,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR015C" - eccodes: "2.3.1.268" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.268" - kegg.reaction: "R11957" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4650" - name: "ethyl acetate transport, mitochondrial" @@ -117002,14 +100442,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4651" - name: "pyruvate decarboxylase (aldedyde-forming)" @@ -117022,14 +100457,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - eccodes: "4.1.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.1" - kegg.reaction: "R00636" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4652" - name: "aldehyde dehydrogenase (1-propanol, NAD)" @@ -117042,12 +100473,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - kegg.pathway: - "sce00010" - "sce00071" @@ -117056,7 +100486,7 @@ - "sce01130" - kegg.reaction: "R00754" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4653" - name: "aldehyde dehydrogenase (1-propanol, NAD)" @@ -117070,11 +100500,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - eccodes: "1.1.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.1" - kegg.pathway: - "sce00010" - "sce00071" @@ -117082,7 +100508,7 @@ - "sce01110" - "sce01130" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4654" - name: "aldehyde dehydrogenase (1-propanol, NADP)" @@ -117095,12 +100521,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - - eccodes: "1.1.1.-; 1.1.1.2" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.2" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.2" - kegg.pathway: - "sce00010" - "sce00071" @@ -117108,7 +100532,7 @@ - "sce01110" - "sce01130" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4655" - name: "1-propyl alcohol transport, mitochondrial" @@ -117118,14 +100542,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4656" - name: "propanal transport, cytosol" @@ -117135,14 +100554,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4657" - name: "1-propyl alcohol transport, cytosol" @@ -117152,14 +100566,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4658" - name: "propanal exchange" @@ -117168,14 +100577,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4659" - name: "propanol exchange" @@ -117184,14 +100588,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4660" - name: "2-oxo acid decarboxylase" @@ -117204,14 +100603,10 @@ - upper_bound: 1000 - gene_reaction_rule: "YHR137W" - eccodes: "4.1.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.1" - kegg.reaction: "R00636" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4661" - name: "aldehyde dehydrogenase (methionol, NAD)" @@ -117224,12 +100619,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - kegg.pathway: - "sce00010" - "sce00071" @@ -117238,7 +100632,7 @@ - "sce01130" - kegg.reaction: "R00754" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4662" - name: "aldehyde dehydrogenase (methionol, NAD)" @@ -117252,11 +100646,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - eccodes: "1.1.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.1" - kegg.pathway: - "sce00010" - "sce00071" @@ -117264,7 +100654,7 @@ - "sce01110" - "sce01130" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4663" - name: "aldehyde dehydrogenase (methionol, NADP)" @@ -117277,12 +100667,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - - eccodes: "1.1.1.-; 1.1.1.2" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.2" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.2" - kegg.pathway: - "sce00010" - "sce00071" @@ -117290,7 +100678,7 @@ - "sce01110" - "sce01130" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4664" - name: "methionol transport, mitochondrial" @@ -117300,14 +100688,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4665" - name: "methional transport, cytosol" @@ -117317,14 +100700,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4666" - name: "methionol transport, cytosol" @@ -117334,14 +100712,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4667" - name: "methional exchange" @@ -117350,14 +100723,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4668" - name: "methionol exchange" @@ -117366,14 +100734,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4669" - name: "pyruvate decarboxylase (hydroxy-phenyl)" @@ -117386,13 +100749,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR087C or YLR044C or YLR134W" - eccodes: "4.1.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "4.1.1.1" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4670" - name: "aldehyde dehydrogenase (tyrosol, NAD)" @@ -117405,12 +100764,11 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YBR145W or YDL168W or YOL086C" - - eccodes: "1.1.1.-; 1.1.1.1; 1.1.1.284" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.1" + - "1.1.1.284" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.1; 1.1.1.284" - kegg.pathway: - "sce00010" - "sce00071" @@ -117418,7 +100776,7 @@ - "sce01110" - "sce01130" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4671" - name: "aldehyde dehydrogenase (tyrosol, NAD)" @@ -117432,11 +100790,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YGL256W or YMR083W" - eccodes: "1.1.1.1" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.1.1.1" - kegg.pathway: - "sce00010" - "sce00071" @@ -117444,7 +100798,7 @@ - "sce01110" - "sce01130" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4672" - name: "aldehyde dehydrogenase (tyrosol, NADP)" @@ -117457,12 +100811,10 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "YCR105W or YDR368W or YMR318C" - - eccodes: "1.1.1.-; 1.1.1.2" - - references: "" - - subsystem: - - "" + - eccodes: + - "1.1.1.-" + - "1.1.1.2" - annotation: !!omap - - ec-code: "1.1.1.-; 1.1.1.2" - kegg.pathway: - "sce00010" - "sce00071" @@ -117470,7 +100822,7 @@ - "sce01110" - "sce01130" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4673" - name: "tyrosol transport, mitochondrial" @@ -117480,14 +100832,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4674" - name: "(4-hydroxyphenyl)acetaldehyde transport, cytosol" @@ -117497,14 +100844,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4675" - name: "tyrosol transport, cytosol" @@ -117514,14 +100856,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4676" - name: "(4-hydroxyphenyl)acetaldehyde exchange" @@ -117530,14 +100867,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4677" - name: "tyrosol exchange" @@ -117546,14 +100878,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4678" - name: "aldehyde dehydrogenase" @@ -117568,11 +100895,7 @@ - upper_bound: 1000 - gene_reaction_rule: "YMR170C or YMR169C or YOR374W" - eccodes: "1.2.1.5" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "1.2.1.5" - kegg.pathway: - "sce00010" - "sce00071" @@ -117580,7 +100903,7 @@ - "sce01110" - "sce01130" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4679" - name: "short-chain-fatty-acid-CoA ligase (propionate)" @@ -117595,18 +100918,14 @@ - upper_bound: 1000 - gene_reaction_rule: "YOR317W or YER015W or YIL009W or YMR246W" - eccodes: "6.2.1.3" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "6.2.1.3" - kegg.pathway: - "sce00061" - "sce00071" - "sce01212" - "sce04146" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4680" - name: "alcohol acyltransferase (propionyl-CoA)" @@ -117619,13 +100938,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YBR177C or YPL095C" - eccodes: "2.3.1.84" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4681" - name: "propionyl-CoA transport, mitochondrial" @@ -117635,14 +100950,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4682" - name: "butyryl-CoA transport, mitochondrial" @@ -117652,14 +100962,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4683" - name: "hexanoyl-CoA transport, mitochondrial" @@ -117669,14 +100974,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4684" - name: "octanoyl-CoA transport, mitochondrial" @@ -117686,14 +100986,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4685" - name: "decanoyl-CoA transport, mitochondrial" @@ -117703,14 +100998,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4686" - name: "propionate transport, cytosol" @@ -117720,14 +101010,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4687" - name: "alcohol acetyltransferase (tyrosol)" @@ -117740,13 +101025,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" - eccodes: "2.3.1.84" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4688" - name: "tyrosyl acetate transport" @@ -117756,14 +101037,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4689" - name: "tyrosyl acetate exchange" @@ -117772,14 +101048,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4690" - name: "alcohol acetyltransferase (methionol)" @@ -117792,13 +101063,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" - eccodes: "2.3.1.84" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4691" - name: "methionyl acetate transport" @@ -117808,14 +101075,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4692" - name: "methionyl acetate exchange" @@ -117824,14 +101086,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4693" - name: "alcohol acetyltransferase (propanol)" @@ -117844,13 +101101,9 @@ - upper_bound: 1000 - gene_reaction_rule: "YGR177C or YOR377W or YGR015C" - eccodes: "2.3.1.84" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "2.3.1.84" - sbo: "SBO:0000176" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4694" - name: "propyl acetate transport" @@ -117860,14 +101113,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4695" - name: "propyl acetate exchange" @@ -117876,14 +101124,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4697" - name: "ethyl propionate transport, mitochondrial" @@ -117893,14 +101136,9 @@ - lower_bound: -1000 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4698" - name: "ethyl propionate transport" @@ -117910,14 +101148,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000655" - - confidence_score: 2 + - confidence_score: 2 - !!omap - id: "r_4699" - name: "ethyl propionate exchange" @@ -117926,14 +101159,9 @@ - lower_bound: 0 - upper_bound: 1000 - gene_reaction_rule: "" - - eccodes: "" - - references: "" - - subsystem: - - "" - annotation: !!omap - - ec-code: "" - sbo: "SBO:0000627" - - confidence_score: 2 + - confidence_score: 2 - genes: - !!omap - id: "Q0045" From 077d7163f9e6502f9162f916d35f85c3980dd652 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Tue, 27 Apr 2021 14:27:07 +0200 Subject: [PATCH 40/56] refactor: memote history without re-writing SBML --- .github/workflows/memote-history.yml | 19 +++++++++---------- .github/workflows/memote-run.yml | 5 +---- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/.github/workflows/memote-history.yml b/.github/workflows/memote-history.yml index 2da654cd..131ecd18 100644 --- a/.github/workflows/memote-history.yml +++ b/.github/workflows/memote-history.yml @@ -25,7 +25,6 @@ jobs: run: | echo "::set-output name=history::history_report.html" echo "::set-output name=deployment::$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /deployment/) print $2}' memote.ini | tr -d ' ')" - echo "::set-output name=location::$(awk -F '=' '{if (! ($0 ~ /^;/) && $0 ~ /location/) print $2}' memote.ini | tr -d ' ')" echo "::set-output name=other-repo::gh-pages-repo" - name: Checkout repo for gh-pages branch @@ -35,19 +34,19 @@ jobs: ref: ${{ steps.setup.outputs.deployment }} path: ${{ steps.setup.outputs.other-repo }} - - name: Convert model - run: | - touch .env - python -c \ - 'import ComplementaryScripts.io as io; \ - model = io.read_yeast_model(make_bigg_compliant=True); \ - io.write_yeast_model(model)' + # - name: Convert model + # run: | + # touch .env + # python -c 'import ComplementaryScripts.io as io; model = io.read_yeast_model(make_bigg_compliant=True); io.write_yeast_model(model)' - - name: Memote on push + - name: Memote short run run: | memote run --skip-unchanged --solver-timeout 30 + + - name: Compute Memote history on push + run: | # Generate the history report on the deployment branch - memote report history --filename="${{ steps.setup.outputs.other-repo }}/${{ steps.setup.outputs.history }}" --solver-timeout 30 + memote report history --filename="${{ steps.setup.outputs.other-repo }}/${{ steps.setup.outputs.history }}" - name: Auto-commit results uses: stefanzweifel/git-auto-commit-action@v4.4.0 diff --git a/.github/workflows/memote-run.yml b/.github/workflows/memote-run.yml index cc1ff207..54ef70b9 100644 --- a/.github/workflows/memote-run.yml +++ b/.github/workflows/memote-run.yml @@ -21,10 +21,7 @@ jobs: - name: Convert model run: | touch .env - python -c \ - 'import ComplementaryScripts.io as io; \ - model = io.read_yeast_model(make_bigg_compliant=True); \ - io.write_yeast_model(model)' + python -c 'import ComplementaryScripts.io as io; model = io.read_yeast_model(make_bigg_compliant=True); io.write_yeast_model(model)' - name: Memote on PR run: | From c953006592ce73edb92a812b86461abb8f6c183b Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Fri, 9 Apr 2021 23:32:02 +0200 Subject: [PATCH 41/56] refactor: restructure most folders --- {ComplementaryScripts => code}/deprecated/README.md | 0 .../deprecated/modelCuration/addiSce926changes.m | 0 .../deprecated/modelCuration/fixBiomassComp.m | 0 .../deprecated/modelCuration/makeFormulasCompliant.m | 0 .../deprecated/modelCuration/modelCorrections.m | 0 .../deprecated/modelCuration/takeOutFromFormula.m | 0 .../deprecated/modelCuration/updateMetaboliteFormula.m | 0 .../deprecated/otherChanges/addSLIMErxns.m | 0 .../deprecated/otherChanges/clusterBiomass.m | 0 .../deprecated/otherChanges/convertYmn2FBC2.m | 0 .../missingFields/BiGGidsCompliance.ipynb | 0 {ComplementaryScripts => code}/missingFields/GetMNXID.m | 0 {ComplementaryScripts => code}/missingFields/README.md | 0 {ComplementaryScripts => code}/missingFields/addBiGGidentifiers.m | 0 .../missingFields/addConfidenceScores.m | 0 {ComplementaryScripts => code}/missingFields/addGeneNames.m | 0 {ComplementaryScripts => code}/missingFields/addSBOterms.m | 0 {ComplementaryScripts => code}/missingFields/changeRules.m | 0 {ComplementaryScripts => code}/missingFields/deleteRepeated.m | 0 {ComplementaryScripts => code}/missingFields/findInDB.m | 0 {ComplementaryScripts => code}/missingFields/findSubSystem.m | 0 {ComplementaryScripts => code}/missingFields/getAllPath.m | 0 {ComplementaryScripts => code}/missingFields/getMissingFields.m | 0 {ComplementaryScripts => code}/missingFields/mapIDsViaMNXref.m | 0 {ComplementaryScripts => code}/modelCuration/CheckBalanceforSce.m | 0 .../modelCuration/CheckEnergyProduction.m | 0 .../modelCuration/MissingTransDeadEnd.m | 0 {ComplementaryScripts => code}/modelCuration/README.md | 0 {ComplementaryScripts => code}/modelCuration/SubstrateUsage.m | 0 {ComplementaryScripts => code}/modelCuration/UpdateDBnewRxn.m | 0 {ComplementaryScripts => code}/modelCuration/addBiologRxnToGEM.m | 0 {ComplementaryScripts => code}/modelCuration/addBiomassUpdate.m | 0 .../modelCuration/addDBNewGeneAnnotation.m | 0 {ComplementaryScripts => code}/modelCuration/addDBnewRxn.m | 0 {ComplementaryScripts => code}/modelCuration/addFAEnewRxn.m | 0 .../modelCuration/addGapfillingRxnToGEM.m | 0 .../modelCuration/addMetabolomicsRxnToGEM.m | 0 {ComplementaryScripts => code}/modelCuration/addTransNewGPR.m | 0 {ComplementaryScripts => code}/modelCuration/changerxn.m | 0 {ComplementaryScripts => code}/modelCuration/changerxnDirection.m | 0 {ComplementaryScripts => code}/modelCuration/checkMetBalance.m | 0 {ComplementaryScripts => code}/modelCuration/checkRxnBalance.m | 0 {ComplementaryScripts => code}/modelCuration/checkSmatrixMNX.m | 0 {ComplementaryScripts => code}/modelCuration/checkrxnDirection.m | 0 {ComplementaryScripts => code}/modelCuration/curationsOnV8_4_2.m | 0 {ComplementaryScripts => code}/modelCuration/display_rxnMetInfo.m | 0 {ComplementaryScripts => code}/modelCuration/downloadMNXdb.m | 0 {ComplementaryScripts => code}/modelCuration/get_lnRevIdx.m | 0 {ComplementaryScripts => code}/modelCuration/mapKEGGID.m | 0 {ComplementaryScripts => code}/modelCuration/mapMNXMID.m | 0 {ComplementaryScripts => code}/modelCuration/minimal_Y6.m | 0 {ComplementaryScripts => code}/modelCuration/modMetsandSmatrix.m | 0 {ComplementaryScripts => code}/modelCuration/modifyID.m | 0 .../modelCuration/updateMetaboliteAnnotation.m | 0 {ComplementaryScripts => code}/modelTests/README.md | 0 .../modelTests/cobrapy-compliance.ipynb | 0 {ComplementaryScripts => code}/modelTests/essentialGenes.m | 0 {ComplementaryScripts => code}/modelTests/findDuplicatedRxns.m | 0 {ComplementaryScripts => code}/modelTests/growth.m | 0 {ComplementaryScripts => code}/otherChanges/README.md | 0 {ComplementaryScripts => code}/otherChanges/anaerobicModel.m | 0 {ComplementaryScripts => code}/otherChanges/fitGAM.m | 0 {ComplementaryScripts => code}/otherChanges/getNewIndex.m | 0 {ComplementaryScripts => code}/otherChanges/migrateKEGGpathways.m | 0 .../otherChanges/rescalePseudoReaction.m | 0 {ComplementaryScripts => code}/otherChanges/scaleBioMass.m | 0 {ComplementaryScripts => code}/otherChanges/sumBioMass.m | 0 {ComplementaryData => data}/databases/BiGGmetDictionary.csv | 0 .../databases/BiGGmetDictionary_newIDs.csv | 0 {ComplementaryData => data}/databases/BiGGrxnDictionary.csv | 0 .../databases/BiGGrxnDictionary_newIDs.csv | 0 {ComplementaryData => data}/databases/DBnewGeneAnnotation.tsv | 0 {ComplementaryData => data}/databases/FAEgeneNames.tsv | 0 {ComplementaryData => data}/databases/README.md | 0 {ComplementaryData => data}/databases/SGDgeneNames.tsv | 0 {ComplementaryData => data}/databases/TransRxnGeneAnnotation.tsv | 0 .../databases/Yeast7.6MNXMetMappingList.tsv | 0 .../databases/Yeast7.6MNXRxnMappingList.tsv | 0 {ComplementaryData => data}/databases/kegg.tsv | 0 {ComplementaryData => data}/databases/lipidAbbreviations.csv | 0 {ComplementaryData => data}/databases/swissprot.tsv | 0 {ComplementaryData => data}/modelCuration/Biolog_newRxnMatrix.tsv | 0 .../modelCuration/Biolog_newRxnMetAnnotation.tsv | 0 {ComplementaryData => data}/modelCuration/Biolog_newRxnProp.tsv | 0 .../modelCuration/Biomass_newRxnMatrix.tsv | 0 {ComplementaryData => data}/modelCuration/Biomass_newRxnMet.tsv | 0 {ComplementaryData => data}/modelCuration/Biomass_newRxnProp.tsv | 0 .../modelCuration/DBnewRxnIDmappinglist.tsv | 0 .../modelCuration/DBnewRxnMetAnnotation.tsv | 0 {ComplementaryData => data}/modelCuration/DBnewRxnProp.tsv | 0 {ComplementaryData => data}/modelCuration/DBnewrRxnMatrix.tsv | 0 {ComplementaryData => data}/modelCuration/FAEnewRxnMatrix.tsv | 0 .../modelCuration/FAEnewRxnMetAnnotation.tsv | 0 {ComplementaryData => data}/modelCuration/FAEnewRxnProp.tsv | 0 .../modelCuration/GapfillingnewRxnMatrix.tsv | 0 .../modelCuration/GapfillingnewRxnProp.tsv | 0 {ComplementaryData => data}/modelCuration/MetaCyc_deltaG.tsv | 0 .../modelCuration/Metabolomics_newRxnMatrix.tsv | 0 .../modelCuration/Metabolomics_newRxnMetAnnotation.tsv | 0 .../modelCuration/Metabolomics_newRxnProp.tsv | 0 .../modelCuration/Missingmetaboliteformulas.tsv | 0 {ComplementaryData => data}/modelCuration/README.md | 0 {ComplementaryData => data}/modelCuration/TransRxnNewGPR.tsv | 0 {ComplementaryData => data}/modelCuration/databasenewGPR.tsv | 0 .../modelCuration/grpContribution_deltaG.tsv | 0 .../modelCuration/iSce926curatedGeneRules.tsv | 0 {ComplementaryData => data}/modelCuration/iSce926newGenes.tsv | 0 {ComplementaryData => data}/modelCuration/memote_revIdx.tsv | 0 .../modelCuration/metabolite_manual_curation.tsv | 0 {ComplementaryData => data}/modelCuration/modMetsandSmatrix.tsv | 0 {ComplementaryData => data}/modelCuration/modifyID.tsv | 0 {ComplementaryData => data}/modelCuration/rxnDirectionInfo.tsv | 0 {ComplementaryData => data}/physiology/Biolog_Substrate.tsv | 0 {ComplementaryData => data}/physiology/README.md | 0 .../physiology/biomassComposition_Cofactor_Ion.tsv | 0 .../physiology/biomassComposition_Forster2003.tsv | 0 .../physiology/biomassComposition_Lahtvee2017.tsv | 0 .../physiology/chemostatData_Tobias2013.tsv | 0 .../physiology/chemostatData_VanHoek1998.tsv | 0 {ModelFiles => model}/boundaryMets.txt | 0 {ModelFiles => model}/dependencies.txt | 0 {ModelFiles/txt => model}/yeastGEM.txt | 0 {ModelFiles/xml => model}/yeastGEM.xml | 0 {ModelFiles/yml => model}/yeastGEM.yml | 0 124 files changed, 0 insertions(+), 0 deletions(-) rename {ComplementaryScripts => code}/deprecated/README.md (100%) rename {ComplementaryScripts => code}/deprecated/modelCuration/addiSce926changes.m (100%) rename {ComplementaryScripts => code}/deprecated/modelCuration/fixBiomassComp.m (100%) rename {ComplementaryScripts => code}/deprecated/modelCuration/makeFormulasCompliant.m (100%) rename {ComplementaryScripts => code}/deprecated/modelCuration/modelCorrections.m (100%) rename {ComplementaryScripts => code}/deprecated/modelCuration/takeOutFromFormula.m (100%) rename {ComplementaryScripts => code}/deprecated/modelCuration/updateMetaboliteFormula.m (100%) rename {ComplementaryScripts => code}/deprecated/otherChanges/addSLIMErxns.m (100%) rename {ComplementaryScripts => code}/deprecated/otherChanges/clusterBiomass.m (100%) rename {ComplementaryScripts => code}/deprecated/otherChanges/convertYmn2FBC2.m (100%) rename {ComplementaryScripts => code}/missingFields/BiGGidsCompliance.ipynb (100%) rename {ComplementaryScripts => code}/missingFields/GetMNXID.m (100%) rename {ComplementaryScripts => code}/missingFields/README.md (100%) rename {ComplementaryScripts => code}/missingFields/addBiGGidentifiers.m (100%) rename {ComplementaryScripts => code}/missingFields/addConfidenceScores.m (100%) rename {ComplementaryScripts => code}/missingFields/addGeneNames.m (100%) rename {ComplementaryScripts => code}/missingFields/addSBOterms.m (100%) rename {ComplementaryScripts => code}/missingFields/changeRules.m (100%) rename {ComplementaryScripts => code}/missingFields/deleteRepeated.m (100%) rename {ComplementaryScripts => code}/missingFields/findInDB.m (100%) rename {ComplementaryScripts => code}/missingFields/findSubSystem.m (100%) rename {ComplementaryScripts => code}/missingFields/getAllPath.m (100%) rename {ComplementaryScripts => code}/missingFields/getMissingFields.m (100%) rename {ComplementaryScripts => code}/missingFields/mapIDsViaMNXref.m (100%) rename {ComplementaryScripts => code}/modelCuration/CheckBalanceforSce.m (100%) mode change 100755 => 100644 rename {ComplementaryScripts => code}/modelCuration/CheckEnergyProduction.m (100%) mode change 100755 => 100644 rename {ComplementaryScripts => code}/modelCuration/MissingTransDeadEnd.m (100%) rename {ComplementaryScripts => code}/modelCuration/README.md (100%) rename {ComplementaryScripts => code}/modelCuration/SubstrateUsage.m (100%) rename {ComplementaryScripts => code}/modelCuration/UpdateDBnewRxn.m (100%) mode change 100755 => 100644 rename {ComplementaryScripts => code}/modelCuration/addBiologRxnToGEM.m (100%) rename {ComplementaryScripts => code}/modelCuration/addBiomassUpdate.m (100%) rename {ComplementaryScripts => code}/modelCuration/addDBNewGeneAnnotation.m (100%) rename {ComplementaryScripts => code}/modelCuration/addDBnewRxn.m (100%) mode change 100755 => 100644 rename {ComplementaryScripts => code}/modelCuration/addFAEnewRxn.m (100%) rename {ComplementaryScripts => code}/modelCuration/addGapfillingRxnToGEM.m (100%) rename {ComplementaryScripts => code}/modelCuration/addMetabolomicsRxnToGEM.m (100%) rename {ComplementaryScripts => code}/modelCuration/addTransNewGPR.m (100%) rename {ComplementaryScripts => code}/modelCuration/changerxn.m (100%) rename {ComplementaryScripts => code}/modelCuration/changerxnDirection.m (100%) rename {ComplementaryScripts => code}/modelCuration/checkMetBalance.m (100%) rename {ComplementaryScripts => code}/modelCuration/checkRxnBalance.m (100%) rename {ComplementaryScripts => code}/modelCuration/checkSmatrixMNX.m (100%) rename {ComplementaryScripts => code}/modelCuration/checkrxnDirection.m (100%) rename {ComplementaryScripts => code}/modelCuration/curationsOnV8_4_2.m (100%) rename {ComplementaryScripts => code}/modelCuration/display_rxnMetInfo.m (100%) rename {ComplementaryScripts => code}/modelCuration/downloadMNXdb.m (100%) rename {ComplementaryScripts => code}/modelCuration/get_lnRevIdx.m (100%) rename {ComplementaryScripts => code}/modelCuration/mapKEGGID.m (100%) rename {ComplementaryScripts => code}/modelCuration/mapMNXMID.m (100%) rename {ComplementaryScripts => code}/modelCuration/minimal_Y6.m (100%) mode change 100755 => 100644 rename {ComplementaryScripts => code}/modelCuration/modMetsandSmatrix.m (100%) rename {ComplementaryScripts => code}/modelCuration/modifyID.m (100%) rename {ComplementaryScripts => code}/modelCuration/updateMetaboliteAnnotation.m (100%) rename {ComplementaryScripts => code}/modelTests/README.md (100%) rename {ComplementaryScripts => code}/modelTests/cobrapy-compliance.ipynb (100%) rename {ComplementaryScripts => code}/modelTests/essentialGenes.m (100%) rename {ComplementaryScripts => code}/modelTests/findDuplicatedRxns.m (100%) rename {ComplementaryScripts => code}/modelTests/growth.m (100%) rename {ComplementaryScripts => code}/otherChanges/README.md (100%) rename {ComplementaryScripts => code}/otherChanges/anaerobicModel.m (100%) rename {ComplementaryScripts => code}/otherChanges/fitGAM.m (100%) rename {ComplementaryScripts => code}/otherChanges/getNewIndex.m (100%) rename {ComplementaryScripts => code}/otherChanges/migrateKEGGpathways.m (100%) rename {ComplementaryScripts => code}/otherChanges/rescalePseudoReaction.m (100%) rename {ComplementaryScripts => code}/otherChanges/scaleBioMass.m (100%) rename {ComplementaryScripts => code}/otherChanges/sumBioMass.m (100%) rename {ComplementaryData => data}/databases/BiGGmetDictionary.csv (100%) rename {ComplementaryData => data}/databases/BiGGmetDictionary_newIDs.csv (100%) rename {ComplementaryData => data}/databases/BiGGrxnDictionary.csv (100%) rename {ComplementaryData => data}/databases/BiGGrxnDictionary_newIDs.csv (100%) rename {ComplementaryData => data}/databases/DBnewGeneAnnotation.tsv (100%) rename {ComplementaryData => data}/databases/FAEgeneNames.tsv (100%) rename {ComplementaryData => data}/databases/README.md (100%) rename {ComplementaryData => data}/databases/SGDgeneNames.tsv (100%) rename {ComplementaryData => data}/databases/TransRxnGeneAnnotation.tsv (100%) rename {ComplementaryData => data}/databases/Yeast7.6MNXMetMappingList.tsv (100%) rename {ComplementaryData => data}/databases/Yeast7.6MNXRxnMappingList.tsv (100%) rename {ComplementaryData => data}/databases/kegg.tsv (100%) rename {ComplementaryData => data}/databases/lipidAbbreviations.csv (100%) rename {ComplementaryData => data}/databases/swissprot.tsv (100%) rename {ComplementaryData => data}/modelCuration/Biolog_newRxnMatrix.tsv (100%) rename {ComplementaryData => data}/modelCuration/Biolog_newRxnMetAnnotation.tsv (100%) rename {ComplementaryData => data}/modelCuration/Biolog_newRxnProp.tsv (100%) rename {ComplementaryData => data}/modelCuration/Biomass_newRxnMatrix.tsv (100%) rename {ComplementaryData => data}/modelCuration/Biomass_newRxnMet.tsv (100%) rename {ComplementaryData => data}/modelCuration/Biomass_newRxnProp.tsv (100%) rename {ComplementaryData => data}/modelCuration/DBnewRxnIDmappinglist.tsv (100%) rename {ComplementaryData => data}/modelCuration/DBnewRxnMetAnnotation.tsv (100%) mode change 100755 => 100644 rename {ComplementaryData => data}/modelCuration/DBnewRxnProp.tsv (100%) mode change 100755 => 100644 rename {ComplementaryData => data}/modelCuration/DBnewrRxnMatrix.tsv (100%) rename {ComplementaryData => data}/modelCuration/FAEnewRxnMatrix.tsv (100%) rename {ComplementaryData => data}/modelCuration/FAEnewRxnMetAnnotation.tsv (100%) rename {ComplementaryData => data}/modelCuration/FAEnewRxnProp.tsv (100%) rename {ComplementaryData => data}/modelCuration/GapfillingnewRxnMatrix.tsv (100%) rename {ComplementaryData => data}/modelCuration/GapfillingnewRxnProp.tsv (100%) rename {ComplementaryData => data}/modelCuration/MetaCyc_deltaG.tsv (100%) rename {ComplementaryData => data}/modelCuration/Metabolomics_newRxnMatrix.tsv (100%) rename {ComplementaryData => data}/modelCuration/Metabolomics_newRxnMetAnnotation.tsv (100%) rename {ComplementaryData => data}/modelCuration/Metabolomics_newRxnProp.tsv (100%) rename {ComplementaryData => data}/modelCuration/Missingmetaboliteformulas.tsv (100%) rename {ComplementaryData => data}/modelCuration/README.md (100%) rename {ComplementaryData => data}/modelCuration/TransRxnNewGPR.tsv (100%) rename {ComplementaryData => data}/modelCuration/databasenewGPR.tsv (100%) rename {ComplementaryData => data}/modelCuration/grpContribution_deltaG.tsv (100%) rename {ComplementaryData => data}/modelCuration/iSce926curatedGeneRules.tsv (100%) rename {ComplementaryData => data}/modelCuration/iSce926newGenes.tsv (100%) rename {ComplementaryData => data}/modelCuration/memote_revIdx.tsv (100%) rename {ComplementaryData => data}/modelCuration/metabolite_manual_curation.tsv (100%) rename {ComplementaryData => data}/modelCuration/modMetsandSmatrix.tsv (100%) rename {ComplementaryData => data}/modelCuration/modifyID.tsv (100%) rename {ComplementaryData => data}/modelCuration/rxnDirectionInfo.tsv (100%) rename {ComplementaryData => data}/physiology/Biolog_Substrate.tsv (100%) rename {ComplementaryData => data}/physiology/README.md (100%) rename {ComplementaryData => data}/physiology/biomassComposition_Cofactor_Ion.tsv (100%) rename {ComplementaryData => data}/physiology/biomassComposition_Forster2003.tsv (100%) rename {ComplementaryData => data}/physiology/biomassComposition_Lahtvee2017.tsv (100%) rename {ComplementaryData => data}/physiology/chemostatData_Tobias2013.tsv (100%) rename {ComplementaryData => data}/physiology/chemostatData_VanHoek1998.tsv (100%) rename {ModelFiles => model}/boundaryMets.txt (100%) rename {ModelFiles => model}/dependencies.txt (100%) rename {ModelFiles/txt => model}/yeastGEM.txt (100%) rename {ModelFiles/xml => model}/yeastGEM.xml (100%) rename {ModelFiles/yml => model}/yeastGEM.yml (100%) diff --git a/ComplementaryScripts/deprecated/README.md b/code/deprecated/README.md similarity index 100% rename from ComplementaryScripts/deprecated/README.md rename to code/deprecated/README.md diff --git a/ComplementaryScripts/deprecated/modelCuration/addiSce926changes.m b/code/deprecated/modelCuration/addiSce926changes.m similarity index 100% rename from ComplementaryScripts/deprecated/modelCuration/addiSce926changes.m rename to code/deprecated/modelCuration/addiSce926changes.m diff --git a/ComplementaryScripts/deprecated/modelCuration/fixBiomassComp.m b/code/deprecated/modelCuration/fixBiomassComp.m similarity index 100% rename from ComplementaryScripts/deprecated/modelCuration/fixBiomassComp.m rename to code/deprecated/modelCuration/fixBiomassComp.m diff --git a/ComplementaryScripts/deprecated/modelCuration/makeFormulasCompliant.m b/code/deprecated/modelCuration/makeFormulasCompliant.m similarity index 100% rename from ComplementaryScripts/deprecated/modelCuration/makeFormulasCompliant.m rename to code/deprecated/modelCuration/makeFormulasCompliant.m diff --git a/ComplementaryScripts/deprecated/modelCuration/modelCorrections.m b/code/deprecated/modelCuration/modelCorrections.m similarity index 100% rename from ComplementaryScripts/deprecated/modelCuration/modelCorrections.m rename to code/deprecated/modelCuration/modelCorrections.m diff --git a/ComplementaryScripts/deprecated/modelCuration/takeOutFromFormula.m b/code/deprecated/modelCuration/takeOutFromFormula.m similarity index 100% rename from ComplementaryScripts/deprecated/modelCuration/takeOutFromFormula.m rename to code/deprecated/modelCuration/takeOutFromFormula.m diff --git a/ComplementaryScripts/deprecated/modelCuration/updateMetaboliteFormula.m b/code/deprecated/modelCuration/updateMetaboliteFormula.m similarity index 100% rename from ComplementaryScripts/deprecated/modelCuration/updateMetaboliteFormula.m rename to code/deprecated/modelCuration/updateMetaboliteFormula.m diff --git a/ComplementaryScripts/deprecated/otherChanges/addSLIMErxns.m b/code/deprecated/otherChanges/addSLIMErxns.m similarity index 100% rename from ComplementaryScripts/deprecated/otherChanges/addSLIMErxns.m rename to code/deprecated/otherChanges/addSLIMErxns.m diff --git a/ComplementaryScripts/deprecated/otherChanges/clusterBiomass.m b/code/deprecated/otherChanges/clusterBiomass.m similarity index 100% rename from ComplementaryScripts/deprecated/otherChanges/clusterBiomass.m rename to code/deprecated/otherChanges/clusterBiomass.m diff --git a/ComplementaryScripts/deprecated/otherChanges/convertYmn2FBC2.m b/code/deprecated/otherChanges/convertYmn2FBC2.m similarity index 100% rename from ComplementaryScripts/deprecated/otherChanges/convertYmn2FBC2.m rename to code/deprecated/otherChanges/convertYmn2FBC2.m diff --git a/ComplementaryScripts/missingFields/BiGGidsCompliance.ipynb b/code/missingFields/BiGGidsCompliance.ipynb similarity index 100% rename from ComplementaryScripts/missingFields/BiGGidsCompliance.ipynb rename to code/missingFields/BiGGidsCompliance.ipynb diff --git a/ComplementaryScripts/missingFields/GetMNXID.m b/code/missingFields/GetMNXID.m similarity index 100% rename from ComplementaryScripts/missingFields/GetMNXID.m rename to code/missingFields/GetMNXID.m diff --git a/ComplementaryScripts/missingFields/README.md b/code/missingFields/README.md similarity index 100% rename from ComplementaryScripts/missingFields/README.md rename to code/missingFields/README.md diff --git a/ComplementaryScripts/missingFields/addBiGGidentifiers.m b/code/missingFields/addBiGGidentifiers.m similarity index 100% rename from ComplementaryScripts/missingFields/addBiGGidentifiers.m rename to code/missingFields/addBiGGidentifiers.m diff --git a/ComplementaryScripts/missingFields/addConfidenceScores.m b/code/missingFields/addConfidenceScores.m similarity index 100% rename from ComplementaryScripts/missingFields/addConfidenceScores.m rename to code/missingFields/addConfidenceScores.m diff --git a/ComplementaryScripts/missingFields/addGeneNames.m b/code/missingFields/addGeneNames.m similarity index 100% rename from ComplementaryScripts/missingFields/addGeneNames.m rename to code/missingFields/addGeneNames.m diff --git a/ComplementaryScripts/missingFields/addSBOterms.m b/code/missingFields/addSBOterms.m similarity index 100% rename from ComplementaryScripts/missingFields/addSBOterms.m rename to code/missingFields/addSBOterms.m diff --git a/ComplementaryScripts/missingFields/changeRules.m b/code/missingFields/changeRules.m similarity index 100% rename from ComplementaryScripts/missingFields/changeRules.m rename to code/missingFields/changeRules.m diff --git a/ComplementaryScripts/missingFields/deleteRepeated.m b/code/missingFields/deleteRepeated.m similarity index 100% rename from ComplementaryScripts/missingFields/deleteRepeated.m rename to code/missingFields/deleteRepeated.m diff --git a/ComplementaryScripts/missingFields/findInDB.m b/code/missingFields/findInDB.m similarity index 100% rename from ComplementaryScripts/missingFields/findInDB.m rename to code/missingFields/findInDB.m diff --git a/ComplementaryScripts/missingFields/findSubSystem.m b/code/missingFields/findSubSystem.m similarity index 100% rename from ComplementaryScripts/missingFields/findSubSystem.m rename to code/missingFields/findSubSystem.m diff --git a/ComplementaryScripts/missingFields/getAllPath.m b/code/missingFields/getAllPath.m similarity index 100% rename from ComplementaryScripts/missingFields/getAllPath.m rename to code/missingFields/getAllPath.m diff --git a/ComplementaryScripts/missingFields/getMissingFields.m b/code/missingFields/getMissingFields.m similarity index 100% rename from ComplementaryScripts/missingFields/getMissingFields.m rename to code/missingFields/getMissingFields.m diff --git a/ComplementaryScripts/missingFields/mapIDsViaMNXref.m b/code/missingFields/mapIDsViaMNXref.m similarity index 100% rename from ComplementaryScripts/missingFields/mapIDsViaMNXref.m rename to code/missingFields/mapIDsViaMNXref.m diff --git a/ComplementaryScripts/modelCuration/CheckBalanceforSce.m b/code/modelCuration/CheckBalanceforSce.m old mode 100755 new mode 100644 similarity index 100% rename from ComplementaryScripts/modelCuration/CheckBalanceforSce.m rename to code/modelCuration/CheckBalanceforSce.m diff --git a/ComplementaryScripts/modelCuration/CheckEnergyProduction.m b/code/modelCuration/CheckEnergyProduction.m old mode 100755 new mode 100644 similarity index 100% rename from ComplementaryScripts/modelCuration/CheckEnergyProduction.m rename to code/modelCuration/CheckEnergyProduction.m diff --git a/ComplementaryScripts/modelCuration/MissingTransDeadEnd.m b/code/modelCuration/MissingTransDeadEnd.m similarity index 100% rename from ComplementaryScripts/modelCuration/MissingTransDeadEnd.m rename to code/modelCuration/MissingTransDeadEnd.m diff --git a/ComplementaryScripts/modelCuration/README.md b/code/modelCuration/README.md similarity index 100% rename from ComplementaryScripts/modelCuration/README.md rename to code/modelCuration/README.md diff --git a/ComplementaryScripts/modelCuration/SubstrateUsage.m b/code/modelCuration/SubstrateUsage.m similarity index 100% rename from ComplementaryScripts/modelCuration/SubstrateUsage.m rename to code/modelCuration/SubstrateUsage.m diff --git a/ComplementaryScripts/modelCuration/UpdateDBnewRxn.m b/code/modelCuration/UpdateDBnewRxn.m old mode 100755 new mode 100644 similarity index 100% rename from ComplementaryScripts/modelCuration/UpdateDBnewRxn.m rename to code/modelCuration/UpdateDBnewRxn.m diff --git a/ComplementaryScripts/modelCuration/addBiologRxnToGEM.m b/code/modelCuration/addBiologRxnToGEM.m similarity index 100% rename from ComplementaryScripts/modelCuration/addBiologRxnToGEM.m rename to code/modelCuration/addBiologRxnToGEM.m diff --git a/ComplementaryScripts/modelCuration/addBiomassUpdate.m b/code/modelCuration/addBiomassUpdate.m similarity index 100% rename from ComplementaryScripts/modelCuration/addBiomassUpdate.m rename to code/modelCuration/addBiomassUpdate.m diff --git a/ComplementaryScripts/modelCuration/addDBNewGeneAnnotation.m b/code/modelCuration/addDBNewGeneAnnotation.m similarity index 100% rename from ComplementaryScripts/modelCuration/addDBNewGeneAnnotation.m rename to code/modelCuration/addDBNewGeneAnnotation.m diff --git a/ComplementaryScripts/modelCuration/addDBnewRxn.m b/code/modelCuration/addDBnewRxn.m old mode 100755 new mode 100644 similarity index 100% rename from ComplementaryScripts/modelCuration/addDBnewRxn.m rename to code/modelCuration/addDBnewRxn.m diff --git a/ComplementaryScripts/modelCuration/addFAEnewRxn.m b/code/modelCuration/addFAEnewRxn.m similarity index 100% rename from ComplementaryScripts/modelCuration/addFAEnewRxn.m rename to code/modelCuration/addFAEnewRxn.m diff --git a/ComplementaryScripts/modelCuration/addGapfillingRxnToGEM.m b/code/modelCuration/addGapfillingRxnToGEM.m similarity index 100% rename from ComplementaryScripts/modelCuration/addGapfillingRxnToGEM.m rename to code/modelCuration/addGapfillingRxnToGEM.m diff --git a/ComplementaryScripts/modelCuration/addMetabolomicsRxnToGEM.m b/code/modelCuration/addMetabolomicsRxnToGEM.m similarity index 100% rename from ComplementaryScripts/modelCuration/addMetabolomicsRxnToGEM.m rename to code/modelCuration/addMetabolomicsRxnToGEM.m diff --git a/ComplementaryScripts/modelCuration/addTransNewGPR.m b/code/modelCuration/addTransNewGPR.m similarity index 100% rename from ComplementaryScripts/modelCuration/addTransNewGPR.m rename to code/modelCuration/addTransNewGPR.m diff --git a/ComplementaryScripts/modelCuration/changerxn.m b/code/modelCuration/changerxn.m similarity index 100% rename from ComplementaryScripts/modelCuration/changerxn.m rename to code/modelCuration/changerxn.m diff --git a/ComplementaryScripts/modelCuration/changerxnDirection.m b/code/modelCuration/changerxnDirection.m similarity index 100% rename from ComplementaryScripts/modelCuration/changerxnDirection.m rename to code/modelCuration/changerxnDirection.m diff --git a/ComplementaryScripts/modelCuration/checkMetBalance.m b/code/modelCuration/checkMetBalance.m similarity index 100% rename from ComplementaryScripts/modelCuration/checkMetBalance.m rename to code/modelCuration/checkMetBalance.m diff --git a/ComplementaryScripts/modelCuration/checkRxnBalance.m b/code/modelCuration/checkRxnBalance.m similarity index 100% rename from ComplementaryScripts/modelCuration/checkRxnBalance.m rename to code/modelCuration/checkRxnBalance.m diff --git a/ComplementaryScripts/modelCuration/checkSmatrixMNX.m b/code/modelCuration/checkSmatrixMNX.m similarity index 100% rename from ComplementaryScripts/modelCuration/checkSmatrixMNX.m rename to code/modelCuration/checkSmatrixMNX.m diff --git a/ComplementaryScripts/modelCuration/checkrxnDirection.m b/code/modelCuration/checkrxnDirection.m similarity index 100% rename from ComplementaryScripts/modelCuration/checkrxnDirection.m rename to code/modelCuration/checkrxnDirection.m diff --git a/ComplementaryScripts/modelCuration/curationsOnV8_4_2.m b/code/modelCuration/curationsOnV8_4_2.m similarity index 100% rename from ComplementaryScripts/modelCuration/curationsOnV8_4_2.m rename to code/modelCuration/curationsOnV8_4_2.m diff --git a/ComplementaryScripts/modelCuration/display_rxnMetInfo.m b/code/modelCuration/display_rxnMetInfo.m similarity index 100% rename from ComplementaryScripts/modelCuration/display_rxnMetInfo.m rename to code/modelCuration/display_rxnMetInfo.m diff --git a/ComplementaryScripts/modelCuration/downloadMNXdb.m b/code/modelCuration/downloadMNXdb.m similarity index 100% rename from ComplementaryScripts/modelCuration/downloadMNXdb.m rename to code/modelCuration/downloadMNXdb.m diff --git a/ComplementaryScripts/modelCuration/get_lnRevIdx.m b/code/modelCuration/get_lnRevIdx.m similarity index 100% rename from ComplementaryScripts/modelCuration/get_lnRevIdx.m rename to code/modelCuration/get_lnRevIdx.m diff --git a/ComplementaryScripts/modelCuration/mapKEGGID.m b/code/modelCuration/mapKEGGID.m similarity index 100% rename from ComplementaryScripts/modelCuration/mapKEGGID.m rename to code/modelCuration/mapKEGGID.m diff --git a/ComplementaryScripts/modelCuration/mapMNXMID.m b/code/modelCuration/mapMNXMID.m similarity index 100% rename from ComplementaryScripts/modelCuration/mapMNXMID.m rename to code/modelCuration/mapMNXMID.m diff --git a/ComplementaryScripts/modelCuration/minimal_Y6.m b/code/modelCuration/minimal_Y6.m old mode 100755 new mode 100644 similarity index 100% rename from ComplementaryScripts/modelCuration/minimal_Y6.m rename to code/modelCuration/minimal_Y6.m diff --git a/ComplementaryScripts/modelCuration/modMetsandSmatrix.m b/code/modelCuration/modMetsandSmatrix.m similarity index 100% rename from ComplementaryScripts/modelCuration/modMetsandSmatrix.m rename to code/modelCuration/modMetsandSmatrix.m diff --git a/ComplementaryScripts/modelCuration/modifyID.m b/code/modelCuration/modifyID.m similarity index 100% rename from ComplementaryScripts/modelCuration/modifyID.m rename to code/modelCuration/modifyID.m diff --git a/ComplementaryScripts/modelCuration/updateMetaboliteAnnotation.m b/code/modelCuration/updateMetaboliteAnnotation.m similarity index 100% rename from ComplementaryScripts/modelCuration/updateMetaboliteAnnotation.m rename to code/modelCuration/updateMetaboliteAnnotation.m diff --git a/ComplementaryScripts/modelTests/README.md b/code/modelTests/README.md similarity index 100% rename from ComplementaryScripts/modelTests/README.md rename to code/modelTests/README.md diff --git a/ComplementaryScripts/modelTests/cobrapy-compliance.ipynb b/code/modelTests/cobrapy-compliance.ipynb similarity index 100% rename from ComplementaryScripts/modelTests/cobrapy-compliance.ipynb rename to code/modelTests/cobrapy-compliance.ipynb diff --git a/ComplementaryScripts/modelTests/essentialGenes.m b/code/modelTests/essentialGenes.m similarity index 100% rename from ComplementaryScripts/modelTests/essentialGenes.m rename to code/modelTests/essentialGenes.m diff --git a/ComplementaryScripts/modelTests/findDuplicatedRxns.m b/code/modelTests/findDuplicatedRxns.m similarity index 100% rename from ComplementaryScripts/modelTests/findDuplicatedRxns.m rename to code/modelTests/findDuplicatedRxns.m diff --git a/ComplementaryScripts/modelTests/growth.m b/code/modelTests/growth.m similarity index 100% rename from ComplementaryScripts/modelTests/growth.m rename to code/modelTests/growth.m diff --git a/ComplementaryScripts/otherChanges/README.md b/code/otherChanges/README.md similarity index 100% rename from ComplementaryScripts/otherChanges/README.md rename to code/otherChanges/README.md diff --git a/ComplementaryScripts/otherChanges/anaerobicModel.m b/code/otherChanges/anaerobicModel.m similarity index 100% rename from ComplementaryScripts/otherChanges/anaerobicModel.m rename to code/otherChanges/anaerobicModel.m diff --git a/ComplementaryScripts/otherChanges/fitGAM.m b/code/otherChanges/fitGAM.m similarity index 100% rename from ComplementaryScripts/otherChanges/fitGAM.m rename to code/otherChanges/fitGAM.m diff --git a/ComplementaryScripts/otherChanges/getNewIndex.m b/code/otherChanges/getNewIndex.m similarity index 100% rename from ComplementaryScripts/otherChanges/getNewIndex.m rename to code/otherChanges/getNewIndex.m diff --git a/ComplementaryScripts/otherChanges/migrateKEGGpathways.m b/code/otherChanges/migrateKEGGpathways.m similarity index 100% rename from ComplementaryScripts/otherChanges/migrateKEGGpathways.m rename to code/otherChanges/migrateKEGGpathways.m diff --git a/ComplementaryScripts/otherChanges/rescalePseudoReaction.m b/code/otherChanges/rescalePseudoReaction.m similarity index 100% rename from ComplementaryScripts/otherChanges/rescalePseudoReaction.m rename to code/otherChanges/rescalePseudoReaction.m diff --git a/ComplementaryScripts/otherChanges/scaleBioMass.m b/code/otherChanges/scaleBioMass.m similarity index 100% rename from ComplementaryScripts/otherChanges/scaleBioMass.m rename to code/otherChanges/scaleBioMass.m diff --git a/ComplementaryScripts/otherChanges/sumBioMass.m b/code/otherChanges/sumBioMass.m similarity index 100% rename from ComplementaryScripts/otherChanges/sumBioMass.m rename to code/otherChanges/sumBioMass.m diff --git a/ComplementaryData/databases/BiGGmetDictionary.csv b/data/databases/BiGGmetDictionary.csv similarity index 100% rename from ComplementaryData/databases/BiGGmetDictionary.csv rename to data/databases/BiGGmetDictionary.csv diff --git a/ComplementaryData/databases/BiGGmetDictionary_newIDs.csv b/data/databases/BiGGmetDictionary_newIDs.csv similarity index 100% rename from ComplementaryData/databases/BiGGmetDictionary_newIDs.csv rename to data/databases/BiGGmetDictionary_newIDs.csv diff --git a/ComplementaryData/databases/BiGGrxnDictionary.csv b/data/databases/BiGGrxnDictionary.csv similarity index 100% rename from ComplementaryData/databases/BiGGrxnDictionary.csv rename to data/databases/BiGGrxnDictionary.csv diff --git a/ComplementaryData/databases/BiGGrxnDictionary_newIDs.csv b/data/databases/BiGGrxnDictionary_newIDs.csv similarity index 100% rename from ComplementaryData/databases/BiGGrxnDictionary_newIDs.csv rename to data/databases/BiGGrxnDictionary_newIDs.csv diff --git a/ComplementaryData/databases/DBnewGeneAnnotation.tsv b/data/databases/DBnewGeneAnnotation.tsv similarity index 100% rename from ComplementaryData/databases/DBnewGeneAnnotation.tsv rename to data/databases/DBnewGeneAnnotation.tsv diff --git a/ComplementaryData/databases/FAEgeneNames.tsv b/data/databases/FAEgeneNames.tsv similarity index 100% rename from ComplementaryData/databases/FAEgeneNames.tsv rename to data/databases/FAEgeneNames.tsv diff --git a/ComplementaryData/databases/README.md b/data/databases/README.md similarity index 100% rename from ComplementaryData/databases/README.md rename to data/databases/README.md diff --git a/ComplementaryData/databases/SGDgeneNames.tsv b/data/databases/SGDgeneNames.tsv similarity index 100% rename from ComplementaryData/databases/SGDgeneNames.tsv rename to data/databases/SGDgeneNames.tsv diff --git a/ComplementaryData/databases/TransRxnGeneAnnotation.tsv b/data/databases/TransRxnGeneAnnotation.tsv similarity index 100% rename from ComplementaryData/databases/TransRxnGeneAnnotation.tsv rename to data/databases/TransRxnGeneAnnotation.tsv diff --git a/ComplementaryData/databases/Yeast7.6MNXMetMappingList.tsv b/data/databases/Yeast7.6MNXMetMappingList.tsv similarity index 100% rename from ComplementaryData/databases/Yeast7.6MNXMetMappingList.tsv rename to data/databases/Yeast7.6MNXMetMappingList.tsv diff --git a/ComplementaryData/databases/Yeast7.6MNXRxnMappingList.tsv b/data/databases/Yeast7.6MNXRxnMappingList.tsv similarity index 100% rename from ComplementaryData/databases/Yeast7.6MNXRxnMappingList.tsv rename to data/databases/Yeast7.6MNXRxnMappingList.tsv diff --git a/ComplementaryData/databases/kegg.tsv b/data/databases/kegg.tsv similarity index 100% rename from ComplementaryData/databases/kegg.tsv rename to data/databases/kegg.tsv diff --git a/ComplementaryData/databases/lipidAbbreviations.csv b/data/databases/lipidAbbreviations.csv similarity index 100% rename from ComplementaryData/databases/lipidAbbreviations.csv rename to data/databases/lipidAbbreviations.csv diff --git a/ComplementaryData/databases/swissprot.tsv b/data/databases/swissprot.tsv similarity index 100% rename from ComplementaryData/databases/swissprot.tsv rename to data/databases/swissprot.tsv diff --git a/ComplementaryData/modelCuration/Biolog_newRxnMatrix.tsv b/data/modelCuration/Biolog_newRxnMatrix.tsv similarity index 100% rename from ComplementaryData/modelCuration/Biolog_newRxnMatrix.tsv rename to data/modelCuration/Biolog_newRxnMatrix.tsv diff --git a/ComplementaryData/modelCuration/Biolog_newRxnMetAnnotation.tsv b/data/modelCuration/Biolog_newRxnMetAnnotation.tsv similarity index 100% rename from ComplementaryData/modelCuration/Biolog_newRxnMetAnnotation.tsv rename to data/modelCuration/Biolog_newRxnMetAnnotation.tsv diff --git a/ComplementaryData/modelCuration/Biolog_newRxnProp.tsv b/data/modelCuration/Biolog_newRxnProp.tsv similarity index 100% rename from ComplementaryData/modelCuration/Biolog_newRxnProp.tsv rename to data/modelCuration/Biolog_newRxnProp.tsv diff --git a/ComplementaryData/modelCuration/Biomass_newRxnMatrix.tsv b/data/modelCuration/Biomass_newRxnMatrix.tsv similarity index 100% rename from ComplementaryData/modelCuration/Biomass_newRxnMatrix.tsv rename to data/modelCuration/Biomass_newRxnMatrix.tsv diff --git a/ComplementaryData/modelCuration/Biomass_newRxnMet.tsv b/data/modelCuration/Biomass_newRxnMet.tsv similarity index 100% rename from ComplementaryData/modelCuration/Biomass_newRxnMet.tsv rename to data/modelCuration/Biomass_newRxnMet.tsv diff --git a/ComplementaryData/modelCuration/Biomass_newRxnProp.tsv b/data/modelCuration/Biomass_newRxnProp.tsv similarity index 100% rename from ComplementaryData/modelCuration/Biomass_newRxnProp.tsv rename to data/modelCuration/Biomass_newRxnProp.tsv diff --git a/ComplementaryData/modelCuration/DBnewRxnIDmappinglist.tsv b/data/modelCuration/DBnewRxnIDmappinglist.tsv similarity index 100% rename from ComplementaryData/modelCuration/DBnewRxnIDmappinglist.tsv rename to data/modelCuration/DBnewRxnIDmappinglist.tsv diff --git a/ComplementaryData/modelCuration/DBnewRxnMetAnnotation.tsv b/data/modelCuration/DBnewRxnMetAnnotation.tsv old mode 100755 new mode 100644 similarity index 100% rename from ComplementaryData/modelCuration/DBnewRxnMetAnnotation.tsv rename to data/modelCuration/DBnewRxnMetAnnotation.tsv diff --git a/ComplementaryData/modelCuration/DBnewRxnProp.tsv b/data/modelCuration/DBnewRxnProp.tsv old mode 100755 new mode 100644 similarity index 100% rename from ComplementaryData/modelCuration/DBnewRxnProp.tsv rename to data/modelCuration/DBnewRxnProp.tsv diff --git a/ComplementaryData/modelCuration/DBnewrRxnMatrix.tsv b/data/modelCuration/DBnewrRxnMatrix.tsv similarity index 100% rename from ComplementaryData/modelCuration/DBnewrRxnMatrix.tsv rename to data/modelCuration/DBnewrRxnMatrix.tsv diff --git a/ComplementaryData/modelCuration/FAEnewRxnMatrix.tsv b/data/modelCuration/FAEnewRxnMatrix.tsv similarity index 100% rename from ComplementaryData/modelCuration/FAEnewRxnMatrix.tsv rename to data/modelCuration/FAEnewRxnMatrix.tsv diff --git a/ComplementaryData/modelCuration/FAEnewRxnMetAnnotation.tsv b/data/modelCuration/FAEnewRxnMetAnnotation.tsv similarity index 100% rename from ComplementaryData/modelCuration/FAEnewRxnMetAnnotation.tsv rename to data/modelCuration/FAEnewRxnMetAnnotation.tsv diff --git a/ComplementaryData/modelCuration/FAEnewRxnProp.tsv b/data/modelCuration/FAEnewRxnProp.tsv similarity index 100% rename from ComplementaryData/modelCuration/FAEnewRxnProp.tsv rename to data/modelCuration/FAEnewRxnProp.tsv diff --git a/ComplementaryData/modelCuration/GapfillingnewRxnMatrix.tsv b/data/modelCuration/GapfillingnewRxnMatrix.tsv similarity index 100% rename from ComplementaryData/modelCuration/GapfillingnewRxnMatrix.tsv rename to data/modelCuration/GapfillingnewRxnMatrix.tsv diff --git a/ComplementaryData/modelCuration/GapfillingnewRxnProp.tsv b/data/modelCuration/GapfillingnewRxnProp.tsv similarity index 100% rename from ComplementaryData/modelCuration/GapfillingnewRxnProp.tsv rename to data/modelCuration/GapfillingnewRxnProp.tsv diff --git a/ComplementaryData/modelCuration/MetaCyc_deltaG.tsv b/data/modelCuration/MetaCyc_deltaG.tsv similarity index 100% rename from ComplementaryData/modelCuration/MetaCyc_deltaG.tsv rename to data/modelCuration/MetaCyc_deltaG.tsv diff --git a/ComplementaryData/modelCuration/Metabolomics_newRxnMatrix.tsv b/data/modelCuration/Metabolomics_newRxnMatrix.tsv similarity index 100% rename from ComplementaryData/modelCuration/Metabolomics_newRxnMatrix.tsv rename to data/modelCuration/Metabolomics_newRxnMatrix.tsv diff --git a/ComplementaryData/modelCuration/Metabolomics_newRxnMetAnnotation.tsv b/data/modelCuration/Metabolomics_newRxnMetAnnotation.tsv similarity index 100% rename from ComplementaryData/modelCuration/Metabolomics_newRxnMetAnnotation.tsv rename to data/modelCuration/Metabolomics_newRxnMetAnnotation.tsv diff --git a/ComplementaryData/modelCuration/Metabolomics_newRxnProp.tsv b/data/modelCuration/Metabolomics_newRxnProp.tsv similarity index 100% rename from ComplementaryData/modelCuration/Metabolomics_newRxnProp.tsv rename to data/modelCuration/Metabolomics_newRxnProp.tsv diff --git a/ComplementaryData/modelCuration/Missingmetaboliteformulas.tsv b/data/modelCuration/Missingmetaboliteformulas.tsv similarity index 100% rename from ComplementaryData/modelCuration/Missingmetaboliteformulas.tsv rename to data/modelCuration/Missingmetaboliteformulas.tsv diff --git a/ComplementaryData/modelCuration/README.md b/data/modelCuration/README.md similarity index 100% rename from ComplementaryData/modelCuration/README.md rename to data/modelCuration/README.md diff --git a/ComplementaryData/modelCuration/TransRxnNewGPR.tsv b/data/modelCuration/TransRxnNewGPR.tsv similarity index 100% rename from ComplementaryData/modelCuration/TransRxnNewGPR.tsv rename to data/modelCuration/TransRxnNewGPR.tsv diff --git a/ComplementaryData/modelCuration/databasenewGPR.tsv b/data/modelCuration/databasenewGPR.tsv similarity index 100% rename from ComplementaryData/modelCuration/databasenewGPR.tsv rename to data/modelCuration/databasenewGPR.tsv diff --git a/ComplementaryData/modelCuration/grpContribution_deltaG.tsv b/data/modelCuration/grpContribution_deltaG.tsv similarity index 100% rename from ComplementaryData/modelCuration/grpContribution_deltaG.tsv rename to data/modelCuration/grpContribution_deltaG.tsv diff --git a/ComplementaryData/modelCuration/iSce926curatedGeneRules.tsv b/data/modelCuration/iSce926curatedGeneRules.tsv similarity index 100% rename from ComplementaryData/modelCuration/iSce926curatedGeneRules.tsv rename to data/modelCuration/iSce926curatedGeneRules.tsv diff --git a/ComplementaryData/modelCuration/iSce926newGenes.tsv b/data/modelCuration/iSce926newGenes.tsv similarity index 100% rename from ComplementaryData/modelCuration/iSce926newGenes.tsv rename to data/modelCuration/iSce926newGenes.tsv diff --git a/ComplementaryData/modelCuration/memote_revIdx.tsv b/data/modelCuration/memote_revIdx.tsv similarity index 100% rename from ComplementaryData/modelCuration/memote_revIdx.tsv rename to data/modelCuration/memote_revIdx.tsv diff --git a/ComplementaryData/modelCuration/metabolite_manual_curation.tsv b/data/modelCuration/metabolite_manual_curation.tsv similarity index 100% rename from ComplementaryData/modelCuration/metabolite_manual_curation.tsv rename to data/modelCuration/metabolite_manual_curation.tsv diff --git a/ComplementaryData/modelCuration/modMetsandSmatrix.tsv b/data/modelCuration/modMetsandSmatrix.tsv similarity index 100% rename from ComplementaryData/modelCuration/modMetsandSmatrix.tsv rename to data/modelCuration/modMetsandSmatrix.tsv diff --git a/ComplementaryData/modelCuration/modifyID.tsv b/data/modelCuration/modifyID.tsv similarity index 100% rename from ComplementaryData/modelCuration/modifyID.tsv rename to data/modelCuration/modifyID.tsv diff --git a/ComplementaryData/modelCuration/rxnDirectionInfo.tsv b/data/modelCuration/rxnDirectionInfo.tsv similarity index 100% rename from ComplementaryData/modelCuration/rxnDirectionInfo.tsv rename to data/modelCuration/rxnDirectionInfo.tsv diff --git a/ComplementaryData/physiology/Biolog_Substrate.tsv b/data/physiology/Biolog_Substrate.tsv similarity index 100% rename from ComplementaryData/physiology/Biolog_Substrate.tsv rename to data/physiology/Biolog_Substrate.tsv diff --git a/ComplementaryData/physiology/README.md b/data/physiology/README.md similarity index 100% rename from ComplementaryData/physiology/README.md rename to data/physiology/README.md diff --git a/ComplementaryData/physiology/biomassComposition_Cofactor_Ion.tsv b/data/physiology/biomassComposition_Cofactor_Ion.tsv similarity index 100% rename from ComplementaryData/physiology/biomassComposition_Cofactor_Ion.tsv rename to data/physiology/biomassComposition_Cofactor_Ion.tsv diff --git a/ComplementaryData/physiology/biomassComposition_Forster2003.tsv b/data/physiology/biomassComposition_Forster2003.tsv similarity index 100% rename from ComplementaryData/physiology/biomassComposition_Forster2003.tsv rename to data/physiology/biomassComposition_Forster2003.tsv diff --git a/ComplementaryData/physiology/biomassComposition_Lahtvee2017.tsv b/data/physiology/biomassComposition_Lahtvee2017.tsv similarity index 100% rename from ComplementaryData/physiology/biomassComposition_Lahtvee2017.tsv rename to data/physiology/biomassComposition_Lahtvee2017.tsv diff --git a/ComplementaryData/physiology/chemostatData_Tobias2013.tsv b/data/physiology/chemostatData_Tobias2013.tsv similarity index 100% rename from ComplementaryData/physiology/chemostatData_Tobias2013.tsv rename to data/physiology/chemostatData_Tobias2013.tsv diff --git a/ComplementaryData/physiology/chemostatData_VanHoek1998.tsv b/data/physiology/chemostatData_VanHoek1998.tsv similarity index 100% rename from ComplementaryData/physiology/chemostatData_VanHoek1998.tsv rename to data/physiology/chemostatData_VanHoek1998.tsv diff --git a/ModelFiles/boundaryMets.txt b/model/boundaryMets.txt similarity index 100% rename from ModelFiles/boundaryMets.txt rename to model/boundaryMets.txt diff --git a/ModelFiles/dependencies.txt b/model/dependencies.txt similarity index 100% rename from ModelFiles/dependencies.txt rename to model/dependencies.txt diff --git a/ModelFiles/txt/yeastGEM.txt b/model/yeastGEM.txt similarity index 100% rename from ModelFiles/txt/yeastGEM.txt rename to model/yeastGEM.txt diff --git a/ModelFiles/xml/yeastGEM.xml b/model/yeastGEM.xml similarity index 100% rename from ModelFiles/xml/yeastGEM.xml rename to model/yeastGEM.xml diff --git a/ModelFiles/yml/yeastGEM.yml b/model/yeastGEM.yml similarity index 100% rename from ModelFiles/yml/yeastGEM.yml rename to model/yeastGEM.yml From 15b100fb7af83201b6dc244e1ef5c4750f5762eb Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Fri, 9 Apr 2021 23:38:55 +0200 Subject: [PATCH 42/56] refactor: update io scripts to new folders --- {ComplementaryScripts => code}/__init__.py | 0 {ComplementaryScripts => code}/increaseVersion.m | 10 +++++----- {ComplementaryScripts => code}/io.py | 4 ++-- {ComplementaryScripts => code}/loadYeastModel.m | 2 +- {ComplementaryScripts => code}/saveYeastModel.m | 13 ++++++------- 5 files changed, 14 insertions(+), 15 deletions(-) rename {ComplementaryScripts => code}/__init__.py (100%) rename {ComplementaryScripts => code}/increaseVersion.m (92%) rename {ComplementaryScripts => code}/io.py (97%) rename {ComplementaryScripts => code}/loadYeastModel.m (89%) rename {ComplementaryScripts => code}/saveYeastModel.m (91%) diff --git a/ComplementaryScripts/__init__.py b/code/__init__.py similarity index 100% rename from ComplementaryScripts/__init__.py rename to code/__init__.py diff --git a/ComplementaryScripts/increaseVersion.m b/code/increaseVersion.m similarity index 92% rename from ComplementaryScripts/increaseVersion.m rename to code/increaseVersion.m index 07c9d8a6..6dd39396 100644 --- a/ComplementaryScripts/increaseVersion.m +++ b/code/increaseVersion.m @@ -20,7 +20,7 @@ function increaseVersion(bumpType) end %Bump version number: -oldModel = load('../ModelFiles/mat/yeastGEM.mat'); +oldModel = load('../model/yeastGEM.mat'); oldVersion = oldModel.model.modelID; oldVersion = oldVersion(strfind(oldVersion,'_v')+2:end); oldVersion = str2double(strsplit(oldVersion,'.')); @@ -50,7 +50,7 @@ function increaseVersion(bumpType) %Load model: initCobraToolbox -model = readCbModel('../ModelFiles/xml/yeastGEM.xml'); +model = readCbModel('../model/yeastGEM.xml'); %Include tag and save model: model.modelID = ['yeastGEM_v' newVersion]; @@ -64,7 +64,7 @@ function increaseVersion(bumpType) diff_i = strsplit(diff{i},'\t'); if length(diff_i) == 3 %.xml file: 1 line should be added & 1 line should be deleted - if strcmp(diff_i{3},'ModelFiles/xml/yeastGEM.xml') + if strcmp(diff_i{3},'model/yeastGEM.xml') if eval([diff_i{1} ' > 1']) || eval([diff_i{2} ' > 1']) disp(['NOTE: File ' diff_i{3} ' is changing more than expected']) change = true; @@ -98,7 +98,7 @@ function increaseVersion(bumpType) delete('backup'); %Store model as .mat: -save('../ModelFiles/mat/yeastGEM.mat','model'); +save('../model/yeastGEM.mat','model'); %Convert to RAVEN format and store model as .xlsx: model = ravenCobraWrapper(model); @@ -110,7 +110,7 @@ function increaseVersion(bumpType) model.annotation.email = 'bensan@chalmers.se'; model.annotation.organization = 'Chalmers University of Technology'; model.annotation.note = 'Saccharomyces cerevisiae - strain S288C'; -exportToExcelFormat(model,'../ModelFiles/xlsx/yeastGEM.xlsx'); +exportToExcelFormat(model,'../model/yeastGEM.xlsx'); %Update version file: fid = fopen('../version.txt','wt'); diff --git a/ComplementaryScripts/io.py b/code/io.py similarity index 97% rename from ComplementaryScripts/io.py rename to code/io.py index 27b31c9a..656480db 100644 --- a/ComplementaryScripts/io.py +++ b/code/io.py @@ -11,7 +11,7 @@ # find .env + define paths: dotenv_path = find_dotenv() REPO_PATH = dirname(dotenv_path) -MODEL_PATH = f"{REPO_PATH}/ModelFiles/xml/yeastGEM.xml" +MODEL_PATH = f"{REPO_PATH}/model/yeastGEM.xml" def read_yeast_model(make_bigg_compliant=False): """Reads the SBML file of the yeast model using COBRA. @@ -43,7 +43,7 @@ def load_bigg_dict(bigg_file_path): for row in bigg_reader: bigg_dict[row[0]] = row[1] return bigg_dict - data_path = f"{REPO_PATH}/ComplementaryData/databases" + data_path = f"{REPO_PATH}/data/databases" met_bigg_dict = load_bigg_dict(f"{data_path}/BiGGmetDictionary_newIDs.csv") rxn_bigg_dict = load_bigg_dict(f"{data_path}/BiGGrxnDictionary_newIDs.csv") diff --git a/ComplementaryScripts/loadYeastModel.m b/code/loadYeastModel.m similarity index 89% rename from ComplementaryScripts/loadYeastModel.m rename to code/loadYeastModel.m index bd1247c4..2a43c0e5 100644 --- a/ComplementaryScripts/loadYeastModel.m +++ b/code/loadYeastModel.m @@ -7,7 +7,7 @@ scriptFolder = fileparts(which(mfilename)); currentDir = cd(scriptFolder); -model = readCbModel('../ModelFiles/xml/yeastGEM.xml'); +model = readCbModel('../model/yeastGEM.xml'); model = buildRxnGeneMat(model); cd(currentDir) diff --git a/ComplementaryScripts/saveYeastModel.m b/code/saveYeastModel.m similarity index 91% rename from ComplementaryScripts/saveYeastModel.m rename to code/saveYeastModel.m index 75fae7b5..38abd6eb 100644 --- a/ComplementaryScripts/saveYeastModel.m +++ b/code/saveYeastModel.m @@ -57,14 +57,13 @@ function saveYeastModel(model,upDATE,allowNoGrowth) checkGrowth(model,'anaerobic',allowNoGrowth) %Update .xml, .txt and .yml models: -copyfile('tempModel.xml','../ModelFiles/xml/yeastGEM.xml') +copyfile('tempModel.xml','../model/yeastGEM.xml') delete('tempModel.xml'); -writeCbModel(model,'text','../ModelFiles/txt/yeastGEM.txt'); -exportForGit(model,'yeastGEM','../ModelFiles',{'yml'},false,false); % temporal -movefile ../ModelFiles/yeastGEM.yml ../ModelFiles/yml/ % temporal +writeCbModel(model,'text','../model/yeastGEM.txt'); +exportForGit(model,'yeastGEM','../model',{'yml'},false,false); %Detect boundary metabolites and save them in a .txt file: -fid = fopen('../ModelFiles/boundaryMets.txt','wt'); +fid = fopen('../model/boundaryMets.txt','wt'); for i = 1:length(model.rxns) pos = find(model.S(:,i) ~= 0); if length(pos) == 1 %Exchange rxn @@ -101,9 +100,9 @@ function saveYeastModel(model,upDATE,allowNoGrowth) %Convert notation "e-005" to "e-05 " in stoich. coeffs. to avoid %inconsistencies between Windows and MAC: -copyfile('../ModelFiles/xml/yeastGEM.xml','backup.xml') +copyfile('../model/yeastGEM.xml','backup.xml') fin = fopen('backup.xml','r'); -fout = fopen('../ModelFiles/xml/yeastGEM.xml','w'); +fout = fopen('../model/yeastGEM.xml','w'); still_reading = true; while still_reading inline = fgets(fin); From e7f2eb2663ffd817e69e351d915b9297eaaae791 Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Fri, 14 May 2021 23:29:23 +0200 Subject: [PATCH 43/56] refactor: update folder tree in all files --- .github/CONTRIBUTING.md | 8 ++--- .github/workflows/yaml-validation.yml | 4 +-- README.md | 4 +-- .../modelCuration/addiSce926changes.m | 8 ++--- .../deprecated/modelCuration/fixBiomassComp.m | 6 ++-- .../modelCuration/updateMetaboliteFormula.m | 2 +- code/deprecated/otherChanges/addSLIMErxns.m | 2 +- code/missingFields/BiGGidsCompliance.ipynb | 34 +++++++++---------- code/missingFields/GetMNXID.m | 6 ++-- code/missingFields/addBiGGidentifiers.m | 4 +-- code/missingFields/addGeneNames.m | 2 +- code/missingFields/getMissingFields.m | 4 +-- code/modelCuration/SubstrateUsage.m | 6 ++-- code/modelCuration/UpdateDBnewRxn.m | 12 +++---- code/modelCuration/addBiologRxnToGEM.m | 6 ++-- code/modelCuration/addBiomassUpdate.m | 8 ++--- code/modelCuration/addDBNewGeneAnnotation.m | 6 ++-- code/modelCuration/addDBnewRxn.m | 10 +++--- code/modelCuration/addFAEnewRxn.m | 8 ++--- code/modelCuration/addGapfillingRxnToGEM.m | 4 +-- code/modelCuration/addMetabolomicsRxnToGEM.m | 6 ++-- code/modelCuration/addTransNewGPR.m | 6 ++-- code/modelCuration/changerxnDirection.m | 2 +- code/modelCuration/checkrxnDirection.m | 6 ++-- code/modelCuration/modMetsandSmatrix.m | 2 +- code/modelCuration/modifyID.m | 2 +- .../updateMetaboliteAnnotation.m | 2 +- code/modelTests/cobrapy-compliance.ipynb | 2 +- code/modelTests/growth.m | 2 +- code/otherChanges/fitGAM.m | 2 +- code/otherChanges/sumBioMass.m | 4 +-- 31 files changed, 90 insertions(+), 90 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 1c0473e5..cf8c85cf 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -58,10 +58,10 @@ Here's how to set up yeast-GEM for local development to contribute smaller featu * If your changes are not so small and require several steps, create a script that loads the model, reads data (if applicable), changes the model accordingly, and saves the model back. * Each script should start with a commented section describing the script, explaining the parameters, and indicating your name and the date it was written. Existing functions can clarify what style should be used. * As much as possible follow the model conventions: - - For new metabolites and/or reactions, please use `/ComplementaryScripts/otherChanges/getNewIndex.m` for obtaining new ids. + - For new metabolites and/or reactions, please use `/code/otherChanges/getNewIndex.m` for obtaining new ids. - For metabolite and/or reaction names, please avoid any unconventional characters (e.g. Greek letters). - For new genes, please use as id the [systematic names from SGD](http://seq.yeastgenome.org/help/community/nomenclature-conventions). - * Store scripts in the appropriate folder in `/ComplementaryScripts` and data (as `.tsv` files) in the appropriate folder in `/ComplementaryData`. If you think no folder is adequate for your script/data, feel free to create your own folder. Note that binary data such as `.mat` structures or `.xls` tables cannot be stored in the repo (as they cannot be version-controlled, and they increment too much the size of the repo). + * Store scripts in the appropriate folder in `/code` and data (as `.tsv` files) in the appropriate folder in `/data`. If you think no folder is adequate for your script/data, feel free to create your own folder. Note that binary data such as `.mat` structures or `.xls` tables cannot be stored in the repo (as they cannot be version-controlled, and they increment too much the size of the repo). * When you are done making changes, review locally your changes with `git diff` or any git client, to make sure you are modifying the model as you intended. 7. Commit your changes and push your branch to GitHub. @@ -150,8 +150,8 @@ Follow all other steps in the same way. Also, when creating your pull request (o ### Reviewing pull requests Every pull request must be approved by at least one reviewer before it can be merged. When reviewing someone else's pull request, keep in mind the following aspects: -* **Compatibility:** First of all, make sure that the model is still compatible with the loading/saving wrappers (`loadYeastModel.m` & `saveYeastModel.m`) and that no errors appear. Check also that [`dependencies.txt`](https://github.com/SysBioChalmers/yeast-GEM/blob/master/ModelFiles/dependencies.txt) does not change in any unexpected ways (e.g. an "unknown" toolbox version). Finally, ensure that the SBML fields `model metaid`, `model id` and `model name` never change, as if they change it would create a conflict in the next release. -* **Documentation:** Every change should be justified with a reference/link/argument. This can be provided as data in `/ComplementaryData`, or directly as a comment in the pull request. +* **Compatibility:** First of all, make sure that the model is still compatible with the loading/saving wrappers (`loadYeastModel.m` & `saveYeastModel.m`) and that no errors appear. Check also that [`dependencies.txt`](https://github.com/SysBioChalmers/yeast-GEM/blob/master/model/dependencies.txt) does not change in any unexpected ways (e.g. an "unknown" toolbox version). Finally, ensure that the SBML fields `model metaid`, `model id` and `model name` never change, as if they change it would create a conflict in the next release. +* **Documentation:** Every change should be justified with a reference/link/argument. This can be provided as data in `/data`, or directly as a comment in the pull request. * **Reproducibility:** If there are any added scripts, make sure that if you run them, the model gets updated from how it was in `devel` to how it is in the pull request. For this, you may _locally_ switch to the corresponding branch, replace the `.xml` file with the one from `devel` before the changes, and run the associated scripts. Remember to stash any undesired changes afterwards. * **Style:** Ensure that the changes to the model are compliant with the model's rxn/met/gene naming conventions (when unsure, take a look at a similar field in the model). Also, make sure that scripts have a compliant style, and datasets are straight-forward to understand. * When commenting in the review, please comply with our [code of conduct](https://github.com/SysBioChalmers/yeast-GEM/blob/master/.github/CODE_OF_CONDUCT.md). diff --git a/.github/workflows/yaml-validation.yml b/.github/workflows/yaml-validation.yml index de97fcfb..615895eb 100644 --- a/.github/workflows/yaml-validation.yml +++ b/.github/workflows/yaml-validation.yml @@ -20,7 +20,7 @@ jobs: uses: ibiqlik/action-yamllint@v1.0.0 with: ## File(s) or Directory, separate by space if multiple files or folder are specified - file_or_dir: ModelFiles/ + file_or_dir: model/ ## Custom configuration (as YAML source) config_data: "{extends: default, rules: {line-length: disable}}" ## Format for parsing output [parsable,standard,colored,auto] @@ -36,4 +36,4 @@ jobs: - name: Import with cobrapy run: | pip install -r requirements/ci-requirements.txt - python -c "import cobra ; cobra.io.load_yaml_model('ModelFiles/yml/yeastGEM.yml')" + python -c "import cobra ; cobra.io.load_yaml_model('model/yeastGEM.yml')" diff --git a/README.md b/README.md index 6cef6900..14cb848e 100644 --- a/README.md +++ b/README.md @@ -52,13 +52,13 @@ This repository is administered by Benjamín J. Sánchez ([@BenjaSanchez](https: Make sure to load/save the model with the corresponding wrapper functions! * In Matlab: ```matlab - cd ./ComplementaryScripts + cd ./code model = loadYeastModel(); % loading saveYeastModel(model); % saving ``` * In Python: ```python - import ComplementaryScripts.io as io + import code.io as io model = io.read_yeast_model() # loading io.write_yeast_model(model) # saving ``` diff --git a/code/deprecated/modelCuration/addiSce926changes.m b/code/deprecated/modelCuration/addiSce926changes.m index 728aa863..e9ef6436 100644 --- a/code/deprecated/modelCuration/addiSce926changes.m +++ b/code/deprecated/modelCuration/addiSce926changes.m @@ -7,10 +7,10 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %Load model: -model = readCbModel('../../ModelFiles/xml/yeastGEM.xml'); +model = readCbModel('../../model/yeastGEM.xml'); %Correct some gene relations based on isce926: -fid = fopen('../../ComplementaryData/modelCuration/iSce926curatedGeneRules.tsv'); +fid = fopen('../../data/modelCuration/iSce926curatedGeneRules.tsv'); newRules = textscan(fid,'%s %s %s %s %s','Delimiter','\t','HeaderLines',1); fclose(fid); @@ -23,7 +23,7 @@ end %Add new genes based on isce926: -fid1 = fopen('../../ComplementaryData/modelCuration/iSce926newGenes.tsv'); +fid1 = fopen('../../data/modelCuration/iSce926newGenes.tsv'); newGenes = textscan(fid1,'%s %s %s %s %s','Delimiter','\t','HeaderLines',1); fclose(fid1); @@ -36,7 +36,7 @@ end %Add gene standard name for new gene from isce926: -fid2 = fopen('../../ComplementaryData/databases/SGDgeneNames.tsv'); +fid2 = fopen('../../data/databases/SGDgeneNames.tsv'); SGD = textscan(fid2,'%s %s','Delimiter','\t','HeaderLines',1); fclose(fid2); diff --git a/code/deprecated/modelCuration/fixBiomassComp.m b/code/deprecated/modelCuration/fixBiomassComp.m index 859c0c3f..b961dcb2 100644 --- a/code/deprecated/modelCuration/fixBiomassComp.m +++ b/code/deprecated/modelCuration/fixBiomassComp.m @@ -21,7 +21,7 @@ cd otherChanges %Load data from Forster 2003: -fid = fopen('../../ComplementaryData/physiology/biomassComposition_Forster2003.tsv'); +fid = fopen('../../data/physiology/biomassComposition_Forster2003.tsv'); Forster2003 = textscan(fid,'%s %s %f32 %f32 %s','Delimiter','\t','HeaderLines',1); data.mets = Forster2003{1}; data.abundances = double(Forster2003{3}); @@ -56,7 +56,7 @@ %Correct with data from biomassComposition_Cofactor_Ion: data_original = data; -fid = fopen('../../ComplementaryData/physiology/biomassComposition_Cofactor_Ion.tsv'); +fid = fopen('../../data/physiology/biomassComposition_Cofactor_Ion.tsv'); Cofactors = textscan(fid,'%s %s %f32 %f32 %s %s','Delimiter','\t','HeaderLines',1); data.mets = Cofactors{1}; data.abundances = double(Cofactors{3}); @@ -79,7 +79,7 @@ [X,P,C,R,~,~,~,~] = sumBioMass(model); %Correct with data from Lahtvee 2017: -fid = fopen('../../ComplementaryData/physiology/biomassComposition_Lahtvee2017.tsv'); +fid = fopen('../../data/physiology/biomassComposition_Lahtvee2017.tsv'); Lahtvee2017 = textscan(fid,'%s %s %f32 %f32 %s','Delimiter','\t','HeaderLines',1); data2.mets = Lahtvee2017{1}; data2.names = Lahtvee2017{2}; diff --git a/code/deprecated/modelCuration/updateMetaboliteFormula.m b/code/deprecated/modelCuration/updateMetaboliteFormula.m index ab8010d8..05f3c0c4 100644 --- a/code/deprecated/modelCuration/updateMetaboliteFormula.m +++ b/code/deprecated/modelCuration/updateMetaboliteFormula.m @@ -9,7 +9,7 @@ model = loadYeastModel; %Load data: -fid = fopen('../ComplementaryData/modelCuration/Missingmetaboliteformulas.tsv','r'); +fid = fopen('../data/modelCuration/Missingmetaboliteformulas.tsv','r'); metaboliteData = textscan(fid,'%s %s %s %s %f32 %s','Delimiter','\t','HeaderLines',1); fclose(fid); diff --git a/code/deprecated/otherChanges/addSLIMErxns.m b/code/deprecated/otherChanges/addSLIMErxns.m index 41951f9c..4040bc97 100644 --- a/code/deprecated/otherChanges/addSLIMErxns.m +++ b/code/deprecated/otherChanges/addSLIMErxns.m @@ -60,7 +60,7 @@ model_SLIMEr.S(Ppos,bioRxn) = +GAM; %Save model & return to origin: -cd ../../yeast-GEM/complementaryScripts +cd ../../yeast-GEM/code saveYeastModel(model_SLIMEr); cd otherChanges diff --git a/code/missingFields/BiGGidsCompliance.ipynb b/code/missingFields/BiGGidsCompliance.ipynb index c4ebf619..5c76e88b 100644 --- a/code/missingFields/BiGGidsCompliance.ipynb +++ b/code/missingFields/BiGGidsCompliance.ipynb @@ -48,8 +48,8 @@ " os.rename(in_file_name, old_file_name)\n", "\n", "# Split both metabolite and reaction files:\n", - "split_in_two('../../ComplementaryData/databases/BiGGmetDictionary.csv', '../../ComplementaryData/databases/mets_already_in_bigg.txt')\n", - "split_in_two('../../ComplementaryData/databases/BiGGrxnDictionary.csv', '../../ComplementaryData/databases/rxns_already_in_bigg.txt')" + "split_in_two('../../data/databases/BiGGmetDictionary.csv', '../../data/databases/mets_already_in_bigg.txt')\n", + "split_in_two('../../data/databases/BiGGrxnDictionary.csv', '../../data/databases/rxns_already_in_bigg.txt')" ] }, { @@ -87,8 +87,8 @@ " os.rename(new_file_name, file_name)\n", "\n", "#Remove compartment from both BiGG met files:\n", - "remove_comp_info('../../ComplementaryData/databases/BiGGmetDictionary.csv')\n", - "remove_comp_info('../../ComplementaryData/databases/BiGGmetDictionary_newIds.csv')" + "remove_comp_info('../../data/databases/BiGGmetDictionary.csv')\n", + "remove_comp_info('../../data/databases/BiGGmetDictionary_newIds.csv')" ] }, { @@ -117,7 +117,7 @@ "# Load dictionary with traditional abbreviations:\n", "import csv\n", "lip_id_dict = {}\n", - "with open('../../ComplementaryData/databases/lipidAbbreviations.csv') as lip_id_file:\n", + "with open('../../data/databases/lipidAbbreviations.csv') as lip_id_file:\n", " lip_id_reader = csv.reader(lip_id_file, delimiter=';')\n", " for row in lip_id_reader:\n", " lip_id_dict[row[1]] = row[0]\n", @@ -125,8 +125,8 @@ "\n", "# Create new BiGG ids compliant with lipid standards:\n", "import cobra\n", - "model = cobra.io.read_sbml_model(\"../../ModelFiles/xml/yeastGEM.xml\")\n", - "file_name = '../../ComplementaryData/databases/BiGGmetDictionary_newIDs.csv'\n", + "model = cobra.io.read_sbml_model(\"../../model/yeastGEM.xml\")\n", + "file_name = '../../data/databases/BiGGmetDictionary_newIDs.csv'\n", "new_file_name = file_name.replace(\".csv\",\"_new.csv\")\n", "with open(file_name) as old_file:\n", " with open(new_file_name, 'w', newline='') as new_file:\n", @@ -184,8 +184,8 @@ " for row in met_reader:\n", " met_bigg_dict[row[0]] = row[1]\n", " return met_bigg_dict\n", - "met_bigg_dict = add_to_bigg_dict('../../ComplementaryData/databases/BiGGmetDictionary.csv', {})\n", - "met_bigg_dict = add_to_bigg_dict('../../ComplementaryData/databases/BiGGmetDictionary_newIDs.csv', met_bigg_dict)" + "met_bigg_dict = add_to_bigg_dict('../../data/databases/BiGGmetDictionary.csv', {})\n", + "met_bigg_dict = add_to_bigg_dict('../../data/databases/BiGGmetDictionary_newIDs.csv', met_bigg_dict)" ] }, { @@ -196,8 +196,8 @@ "source": [ "# Create new BiGG ids for SLIME rxns compliant with lipid standards:\n", "import cobra\n", - "model = cobra.io.read_sbml_model(\"../../ModelFiles/xml/yeastGEM.xml\")\n", - "file_name = '../../ComplementaryData/databases/BiGGrxnDictionary_newIDs.csv'\n", + "model = cobra.io.read_sbml_model(\"../../model/yeastGEM.xml\")\n", + "file_name = '../../data/databases/BiGGrxnDictionary_newIDs.csv'\n", "new_file_name = file_name.replace(\".csv\",\"_new.csv\")\n", "with open(file_name) as old_file:\n", " with open(new_file_name, 'w', newline='') as new_file:\n", @@ -237,8 +237,8 @@ "source": [ "# Create new BiGG ids for exchange rxns:\n", "import cobra\n", - "model = cobra.io.read_sbml_model(\"../../ModelFiles/xml/yeastGEM.xml\")\n", - "file_name = '../../ComplementaryData/databases/BiGGrxnDictionary_newIDs.csv'\n", + "model = cobra.io.read_sbml_model(\"../../model/yeastGEM.xml\")\n", + "file_name = '../../data/databases/BiGGrxnDictionary_newIDs.csv'\n", "new_file_name = file_name.replace(\".csv\",\"_new.csv\")\n", "with open(file_name) as old_file:\n", " with open(new_file_name, 'w', newline='') as new_file:\n", @@ -291,8 +291,8 @@ "\n", "# Create new BiGG ids for exchange rxns:\n", "import cobra\n", - "model = cobra.io.read_sbml_model(\"../../ModelFiles/xml/yeastGEM.xml\")\n", - "file_name = '../../ComplementaryData/databases/BiGGrxnDictionary_newIDs.csv'\n", + "model = cobra.io.read_sbml_model(\"../../model/yeastGEM.xml\")\n", + "file_name = '../../data/databases/BiGGrxnDictionary_newIDs.csv'\n", "new_file_name = file_name.replace(\".csv\",\"_new.csv\")\n", "with open(file_name) as old_file:\n", " with open(new_file_name, 'w', newline='') as new_file:\n", @@ -341,8 +341,8 @@ "import csv\n", "from copy import copy\n", "from re import findall\n", - "model = cobra.io.read_sbml_model(\"../../ModelFiles/xml/yeastGEM.xml\")\n", - "file_name = '../../ComplementaryData/databases/BiGGrxnDictionary_newIDs.csv'\n", + "model = cobra.io.read_sbml_model(\"../../model/yeastGEM.xml\")\n", + "file_name = '../../data/databases/BiGGrxnDictionary_newIDs.csv'\n", "new_file_name = file_name.replace(\".csv\",\"_new.csv\")\n", "with open(file_name) as old_file:\n", " with open(new_file_name, 'w', newline='') as new_file:\n", diff --git a/code/missingFields/GetMNXID.m b/code/missingFields/GetMNXID.m index 8d801d14..44c71464 100644 --- a/code/missingFields/GetMNXID.m +++ b/code/missingFields/GetMNXID.m @@ -1,7 +1,7 @@ function model = GetMNXID(model,type,level) % GetMNXID % mapping the model into metanetxID -% In this function, we call the function 'mapIDsViaMNXref.m' from /ComplementaryScripts/missingFields, which is orginiated from +% In this function, we call the function 'mapIDsViaMNXref.m' from /code/missingFields, which is orginiated from % HMR3, and the part 'Load MNXref data structure' is modified to read the reference data from RAVEN. % % model a model structure;please load yeast model using function 'loadYeastModel.m' from @@ -46,7 +46,7 @@ elseif level == 2 %load mapping list for yeast7.6MNXmodel from mnx website - fid = fopen('../../ComplementaryData/databases/Yeast7.6MNXMetMappingList.tsv','r'); + fid = fopen('../../data/databases/Yeast7.6MNXMetMappingList.tsv','r'); MNX = textscan(fid,'%s %s','Delimiter','\t','HeaderLines',1); MNXmodel.mets = MNX{1}; MNXmodel.MetMNXid = MNX{2}; @@ -76,7 +76,7 @@ elseif level == 2 %load mapping list for yeast7.6MNXmodel from mnx website - fid = fopen('../../ComplementaryData/databases/Yeast7.6MNXRxnMappingList.tsv','r'); + fid = fopen('../../data/databases/Yeast7.6MNXRxnMappingList.tsv','r'); MNX = textscan(fid,'%s %s','Delimiter','\t','HeaderLines',1); MNXmodel.rxns = MNX{1}; MNXmodel.rxnMNXid = MNX{2}; diff --git a/code/missingFields/addBiGGidentifiers.m b/code/missingFields/addBiGGidentifiers.m index c1736df7..e025bbd2 100644 --- a/code/missingFields/addBiGGidentifiers.m +++ b/code/missingFields/addBiGGidentifiers.m @@ -10,14 +10,14 @@ model = loadYeastModel; % Add metabolite ids: -[~,met_dic] = xlsread('../ComplementaryData/databases/BiGGmetDictionary.csv'); +[~,met_dic] = xlsread('../data/databases/BiGGmetDictionary.csv'); model.metBiGGID = cell(size(model.mets)); for i = 1:size(met_dic,1) model.metBiGGID(strcmp(model.mets,met_dic{i,1})) = met_dic(i,2); end % Add reaction ids: -[~,rxn_dic] = xlsread('../ComplementaryData/databases/BiGGrxnDictionary.csv'); +[~,rxn_dic] = xlsread('../data/databases/BiGGrxnDictionary.csv'); model.rxnBiGGID = cell(size(model.rxns)); for i = 1:size(rxn_dic,1) model.rxnBiGGID(strcmp(model.rxns,rxn_dic{i,1})) = rxn_dic(i,2); diff --git a/code/missingFields/addGeneNames.m b/code/missingFields/addGeneNames.m index 65661e71..6685afbe 100644 --- a/code/missingFields/addGeneNames.m +++ b/code/missingFields/addGeneNames.m @@ -9,7 +9,7 @@ %Load data: -fid = fopen('../../ComplementaryData/databases/swissprot.tsv','r'); +fid = fopen('../../data/databases/swissprot.tsv','r'); data = textscan(fid,'%s %s %s %s %f32 %s','Delimiter','\t','HeaderLines',1); fclose(fid); swiss.genes = data{3}; diff --git a/code/missingFields/getMissingFields.m b/code/missingFields/getMissingFields.m index 5f575cb6..63ca077d 100644 --- a/code/missingFields/getMissingFields.m +++ b/code/missingFields/getMissingFields.m @@ -9,13 +9,13 @@ model = changeRules(model); %Load swissprot: -fid = fopen('../../ComplementaryData/databases/swissprot.tsv','r'); +fid = fopen('../../data/databases/swissprot.tsv','r'); swissprot = textscan(fid,'%s %s %s %s %f32 %s','Delimiter','\t','HeaderLines',1); swissprot = standardizeDatabase(swissprot); fclose(fid); %Load kegg: -fid = fopen('../../ComplementaryData/databases/kegg.tsv','r'); +fid = fopen('../../data/databases/kegg.tsv','r'); kegg = textscan(fid,'%s %s %s %s %f32 %s %s','Delimiter','\t','HeaderLines',1); kegg = standardizeDatabase(kegg); fclose(fid); diff --git a/code/modelCuration/SubstrateUsage.m b/code/modelCuration/SubstrateUsage.m index 8b045612..f9fe2571 100644 --- a/code/modelCuration/SubstrateUsage.m +++ b/code/modelCuration/SubstrateUsage.m @@ -2,7 +2,7 @@ % SubstrateUsage % % Automatically adds exchange reactions for every metabolite in -% ComplementaryData/physiology/Biolog_substrate.tsv and checks whether +% data/physiology/Biolog_substrate.tsv and checks whether % it can be used as a "solo" substrate. % % NOTE: requires COBRA @@ -13,7 +13,7 @@ model = loadYeastModel; % Load data: -fid2 = fopen('../ComplementaryData/physiology/Biolog_substrate.tsv'); +fid2 = fopen('../data/physiology/Biolog_substrate.tsv'); substrate = textscan(fid2,'%s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); SubBiologName = substrate{1}; SubModelName = substrate{2}; @@ -138,7 +138,7 @@ % Update results from model: cd .. -fid2 = fopen('../ComplementaryData/physiology/Biolog_substrate.tsv','w'); +fid2 = fopen('../data/physiology/Biolog_substrate.tsv','w'); formatSpec = '%s\t%s\t%s\t%s\t%s\n'; fprintf(fid2,formatSpec,'Substrate','Name_in_Model','Substrate_type','Growth_Biolog','Growth_Model'); for i = 1:length(FBAresult) diff --git a/code/modelCuration/UpdateDBnewRxn.m b/code/modelCuration/UpdateDBnewRxn.m index 386297cc..76dd08f0 100644 --- a/code/modelCuration/UpdateDBnewRxn.m +++ b/code/modelCuration/UpdateDBnewRxn.m @@ -1,7 +1,7 @@ % This Function is for updating new database annotated metabolites/reactions of model. % Add changes from the database new anotation for new reactions and new metabolites and new genes related + manual curation on those changes % Input: model, DBnewrRxnMatrix.tsv,DBnewRxnMetAnnotation.tsv,SGDgeneNames.tsv, DBnewRxnIDmappinglist.tsv. . -% As for the reference of new genes and reactions related, please find detailed information in the /ComplementaryData/databases/DBnewGeneAnnotation.tsv +% As for the reference of new genes and reactions related, please find detailed information in the /data/databases/DBnewGeneAnnotation.tsv % NOTE: changeGeneAssociation.m is a function from cobra % Extract model info from .tsv format. % Before run the codes below, the file should be manually editted. @@ -14,14 +14,14 @@ model = loadYeastModel; %mapping list: -fid = fopen('../ComplementaryData/modelCuration/DBnewRxnIDmappinglist.tsv'); +fid = fopen('../data/modelCuration/DBnewRxnIDmappinglist.tsv'); map = textscan(fid,'%s %s','Delimiter','\t','HeaderLines',1); mappinglist(:,1) = map{1}; mappinglist(:,2) = map{2}; fclose(fid); %newreaction: -fid = fopen('../ComplementaryData/modelCuration/DBnewrRxnMatrix.tsv'); +fid = fopen('../data/modelCuration/DBnewrRxnMatrix.tsv'); newreaction = textscan(fid,'%s %s %s %s %s','Delimiter','\t','HeaderLines',1); matrix.rxnIDs = newreaction{1}; matrix.metcoef = cellfun(@str2num, newreaction{2}); @@ -75,7 +75,7 @@ end % add met annotation -fid = fopen('../../ComplementaryData/modelCuration/DBnewRxnMetAnnotation.tsv'); +fid = fopen('../../data/modelCuration/DBnewRxnMetAnnotation.tsv'); newmet_annot = textscan(fid,'%s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newmet.metNames = newmet_annot{1}; newmet.metFormulas = newmet_annot{2}; @@ -97,7 +97,7 @@ end %Load rxnProp(rev and GPR) -fid = fopen('../../ComplementaryData/modelCuration/DBnewRxnProp.tsv'); +fid = fopen('../../data/modelCuration/DBnewRxnProp.tsv'); rev = textscan(fid,'%s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newrxn.ID = rev{1}; newrxn.Rev = cellfun(@str2num, rev{2}); @@ -142,7 +142,7 @@ end % add gene standard name for new genes -fid = fopen('../../ComplementaryData/databases/SGDgeneNames.tsv'); +fid = fopen('../../data/databases/SGDgeneNames.tsv'); yeast_gene_annotation = textscan(fid,'%s %s','Delimiter','\t','HeaderLines',1); fclose(fid); diff --git a/code/modelCuration/addBiologRxnToGEM.m b/code/modelCuration/addBiologRxnToGEM.m index 406d0159..d2687320 100644 --- a/code/modelCuration/addBiologRxnToGEM.m +++ b/code/modelCuration/addBiologRxnToGEM.m @@ -13,7 +13,7 @@ model = loadYeastModel; % Load stoichiometry data: -fid = fopen('../ComplementaryData/modelCuration/Biolog_newRxnMatrix.tsv'); +fid = fopen('../data/modelCuration/Biolog_newRxnMatrix.tsv'); newreaction = textscan(fid,'%s %s %s %s %s','Delimiter','\t','HeaderLines',1); matrix.rxnIDs = newreaction{1}; matrix.metcoef = cellfun(@str2num, newreaction{2}); @@ -23,7 +23,7 @@ fclose(fid); % Load rxn properties data: -fid = fopen('../ComplementaryData/modelCuration/Biolog_newRxnProp.tsv','r'); +fid = fopen('../data/modelCuration/Biolog_newRxnProp.tsv','r'); rev = textscan(fid,'%s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newrxn.ID = rev{1}; newrxn.Rev = cellfun(@str2num, rev{2}); @@ -86,7 +86,7 @@ end % Add metabolite data: -fid = fopen('../../ComplementaryData/modelCuration/Biolog_newRxnMetAnnotation.tsv'); +fid = fopen('../../data/modelCuration/Biolog_newRxnMetAnnotation.tsv'); newmet_annot = textscan(fid,'%s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newmet.metNames = newmet_annot{1}; newmet.metFormulas = newmet_annot{2}; diff --git a/code/modelCuration/addBiomassUpdate.m b/code/modelCuration/addBiomassUpdate.m index f494ce11..789c9bbe 100644 --- a/code/modelCuration/addBiomassUpdate.m +++ b/code/modelCuration/addBiomassUpdate.m @@ -11,7 +11,7 @@ % Load stoichiometry data: cd .. -fid = fopen('../ComplementaryData/modelCuration/Biomass_newRxnMatrix.tsv'); +fid = fopen('../data/modelCuration/Biomass_newRxnMatrix.tsv'); newreaction = textscan(fid,'%s %s %s %s %s','Delimiter','\t','HeaderLines',1); matrix.rxnIDs = newreaction{1}; matrix.metcoef = cellfun(@str2num, newreaction{2}); @@ -21,7 +21,7 @@ fclose(fid); % Load rxn properties data: -fid = fopen('../ComplementaryData/modelCuration/Biomass_newRxnProp.tsv','r'); +fid = fopen('../data/modelCuration/Biomass_newRxnProp.tsv','r'); rev = textscan(fid,'%s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newrxn.ID = rev{1}; newrxn.Rev = cellfun(@str2num, rev{2}); @@ -83,7 +83,7 @@ end % Add metabolite data: -fid = fopen('../../ComplementaryData/modelCuration/Biomass_newRxnMet.tsv'); +fid = fopen('../../data/modelCuration/Biomass_newRxnMet.tsv'); newmet_annot = textscan(fid,'%s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newmet.metNames = newmet_annot{1}; newmet.metFormulas = newmet_annot{2}; @@ -148,7 +148,7 @@ end % add gene standard name for new genes -fid = fopen('../../ComplementaryData/databases/SGDgeneNames.tsv'); +fid = fopen('../../data/databases/SGDgeneNames.tsv'); yeast_gene_annotation = textscan(fid,'%s %s','Delimiter','\t','HeaderLines',1); fclose(fid); diff --git a/code/modelCuration/addDBNewGeneAnnotation.m b/code/modelCuration/addDBNewGeneAnnotation.m index 5532e873..c35b3ec9 100644 --- a/code/modelCuration/addDBNewGeneAnnotation.m +++ b/code/modelCuration/addDBNewGeneAnnotation.m @@ -3,7 +3,7 @@ % Add changes from the database new anootation for new genes + manual curation on those changes % Input: model, databasenewGPR.tsv,SGDgeneNames.tsv. % As for the reference of new GPR, please find detailed information in: -% ComplementaryData/databases/DBnewGeneAnnotation.tsv +% data/databases/DBnewGeneAnnotation.tsv % NOTE: changeGeneAssociation.m is a function from cobra %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -12,7 +12,7 @@ model = loadYeastModel; % Change GPR relations -fid = fopen('../ComplementaryData/modelCuration/databasenewGPR.tsv'); +fid = fopen('../data/modelCuration/databasenewGPR.tsv'); changegpr = textscan(fid,'%s %s %s','Delimiter','\t','HeaderLines',1); newGPR.ID = changegpr{1}; newGPR.oldGPR = changegpr{2}; @@ -27,7 +27,7 @@ model = removeUnusedGenes(model); % Add gene standard name for new genes -fid = fopen('../ComplementaryData/databases/SGDgeneNames.tsv'); +fid = fopen('../data/databases/SGDgeneNames.tsv'); yeast_gene_annotation = textscan(fid,'%s %s','Delimiter','\t','HeaderLines',1); fclose(fid); for i = 1: length(model.genes) diff --git a/code/modelCuration/addDBnewRxn.m b/code/modelCuration/addDBnewRxn.m index 8ae6ad07..cf3a6f2b 100644 --- a/code/modelCuration/addDBnewRxn.m +++ b/code/modelCuration/addDBnewRxn.m @@ -1,7 +1,7 @@ % This Function is for adding new database annotated metabolites/reactions into model. % Add changes from the database new anootation for new reactions and new metabolites and new genes related + manual curation on those changes % Input: model, DBnewrRxnMatrix.tsv,DBnewRxnMetAnnotation.tsv,SGDgeneNames.tsv. -% As for the reference of new genes and reactions related, please find detailed information in the /ComplementaryData/databases/DBnewGeneAnnotation.tsv +% As for the reference of new genes and reactions related, please find detailed information in the /data/databases/DBnewGeneAnnotation.tsv % NOTE: changeGeneAssociation.m is a function from cobra % Extract model info from .tsv format. % Before run the codes below, the file should be manually editted. @@ -14,7 +14,7 @@ model = loadYeastModel; %newreaction: -fid = fopen('../ComplementaryData/modelCuration/DBnewrRxnMatrix.tsv'); +fid = fopen('../data/modelCuration/DBnewrRxnMatrix.tsv'); newreaction = textscan(fid,'%s %s %s %s %s','Delimiter','\t','HeaderLines',1); matrix.rxnIDs = newreaction{1}; matrix.metcoef = cellfun(@str2num, newreaction{2}); @@ -69,7 +69,7 @@ end % add met annotation -fid = fopen('../../ComplementaryData/modelCuration/DBnewRxnMetAnnotation.tsv'); +fid = fopen('../../data/modelCuration/DBnewRxnMetAnnotation.tsv'); newmet_annot = textscan(fid,'%s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newmet.metNames = newmet_annot{1}; newmet.metFormulas = newmet_annot{2}; @@ -91,7 +91,7 @@ end %Load rxnProp(rev and GPR) -fid = fopen('../../ComplementaryData/modelCuration/DBnewRxnProp.tsv'); +fid = fopen('../../data/modelCuration/DBnewRxnProp.tsv'); rev = textscan(fid,'%s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newrxn.ID = rev{1}; newrxn.Rev = cellfun(@str2num, rev{2}); @@ -138,7 +138,7 @@ % add gene standard name for new genes -fid = fopen('../../ComplementaryData/databases/SGDgeneNames.tsv'); +fid = fopen('../../data/databases/SGDgeneNames.tsv'); yeast_gene_annotation = textscan(fid,'%s %s','Delimiter','\t','HeaderLines',1); fclose(fid); diff --git a/code/modelCuration/addFAEnewRxn.m b/code/modelCuration/addFAEnewRxn.m index b6ff0d77..f0c4944d 100644 --- a/code/modelCuration/addFAEnewRxn.m +++ b/code/modelCuration/addFAEnewRxn.m @@ -12,7 +12,7 @@ model = loadYeastModel; %newreaction: -fid = fopen('../ComplementaryData/modelCuration/FAEnewRxnMatrix.tsv'); +fid = fopen('../data/modelCuration/FAEnewRxnMatrix.tsv'); newreaction = textscan(fid,'%s %s %s %s %s','Delimiter','\t','HeaderLines',1); matrix.rxnIDs = newreaction{1}; matrix.metcoef = cellfun(@str2num, newreaction{2}); @@ -64,7 +64,7 @@ cd ../modelCuration/ % add met annotation -fid = fopen('../../ComplementaryData/modelCuration/FAEnewRxnMetAnnotation.tsv'); +fid = fopen('../../data/modelCuration/FAEnewRxnMetAnnotation.tsv'); newmet_annot = textscan(fid,'%s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newmet.metNames = newmet_annot{1}; newmet.metFormulas = newmet_annot{2}; @@ -89,7 +89,7 @@ end %Load rxnProp(rev and GPR) -fid = fopen('../../ComplementaryData/modelCuration/FAEnewRxnProp.tsv'); +fid = fopen('../../data/modelCuration/FAEnewRxnProp.tsv'); rev = textscan(fid,'%s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newrxn.ID = rev{1}; newrxn.Rev = cellfun(@str2num, rev{2}); @@ -135,7 +135,7 @@ % add gene standard name for new genes -fid = fopen('../../ComplementaryData/databases/FAEgeneNames.tsv'); +fid = fopen('../../data/databases/FAEgeneNames.tsv'); yeast_gene_annotation = textscan(fid,'%s %s','Delimiter','\t','HeaderLines',1); fclose(fid); diff --git a/code/modelCuration/addGapfillingRxnToGEM.m b/code/modelCuration/addGapfillingRxnToGEM.m index b7915d6e..2fb54ac0 100644 --- a/code/modelCuration/addGapfillingRxnToGEM.m +++ b/code/modelCuration/addGapfillingRxnToGEM.m @@ -10,7 +10,7 @@ model = loadYeastModel; % Load stoichiometry data: -fid = fopen('../ComplementaryData/modelCuration/GapfillingnewRxnMatrix.tsv'); +fid = fopen('../data/modelCuration/GapfillingnewRxnMatrix.tsv'); newreaction = textscan(fid,'%s %s %s %s %s','Delimiter','\t','HeaderLines',1); matrix.rxnIDs = newreaction{1}; matrix.metcoef = cellfun(@str2num, newreaction{2}); @@ -20,7 +20,7 @@ fclose(fid); % Load rxn properties data: -fid = fopen('../ComplementaryData/modelCuration/GapfillingnewRxnProp.tsv','r'); +fid = fopen('../data/modelCuration/GapfillingnewRxnProp.tsv','r'); rev = textscan(fid,'%s %s %s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newrxn.ID = rev{1}; newrxn.Rev = cellfun(@str2num, rev{2}); diff --git a/code/modelCuration/addMetabolomicsRxnToGEM.m b/code/modelCuration/addMetabolomicsRxnToGEM.m index 32630697..146577ff 100644 --- a/code/modelCuration/addMetabolomicsRxnToGEM.m +++ b/code/modelCuration/addMetabolomicsRxnToGEM.m @@ -9,7 +9,7 @@ cd .. model = loadYeastModel; %load rxn matrix -fid = fopen('../ComplementaryData/modelCuration/Metabolomics_newRxnMatrix.tsv'); +fid = fopen('../data/modelCuration/Metabolomics_newRxnMatrix.tsv'); newreaction = textscan(fid,'%s %s %s %s %s','Delimiter','\t','HeaderLines',1); matrix.rxnIDs = newreaction{1}; matrix.metcoef = cellfun(@str2num, newreaction{2}); @@ -19,7 +19,7 @@ fclose(fid); %load rxn prop, which include rxn rev, rxn names, rxn ec numbers, rxn %KEGGID and rxn notes. -fid = fopen('../ComplementaryData/modelCuration/Metabolomics_newRxnProp.tsv','r'); +fid = fopen('../data/modelCuration/Metabolomics_newRxnProp.tsv','r'); rev = textscan(fid,'%s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newrxn.ID = rev{1}; newrxn.Rev = cellfun(@str2num, rev{2}); @@ -82,7 +82,7 @@ % Add metabolite data: -fid = fopen('../../ComplementaryData/modelCuration/Metabolomics_newRxnMetAnnotation.tsv'); +fid = fopen('../../data/modelCuration/Metabolomics_newRxnMetAnnotation.tsv'); newmet_annot = textscan(fid,'%s %s %s %s %s %s %s %s','Delimiter','\t','HeaderLines',1); newmet.metNames = newmet_annot{1}; newmet.metFormulas = newmet_annot{2}; diff --git a/code/modelCuration/addTransNewGPR.m b/code/modelCuration/addTransNewGPR.m index 489b59e6..353660ec 100644 --- a/code/modelCuration/addTransNewGPR.m +++ b/code/modelCuration/addTransNewGPR.m @@ -3,7 +3,7 @@ % Add changes from the database new anootation for new genes + manual curation on those changes % Input: model, databasenewGPR.tsv,SGDgeneNames.tsv. % As for the reference of new GPR, please find detailed information in: -% ComplementaryData/databases/DBnewGeneAnnotation.tsv +% data/databases/DBnewGeneAnnotation.tsv % NOTE: changeGeneAssociation.m is a function from cobra %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -12,7 +12,7 @@ model = loadYeastModel; % Change GPR relations -fid = fopen('../ComplementaryData/modelCuration/TransRxnNewGPR.tsv'); +fid = fopen('../data/modelCuration/TransRxnNewGPR.tsv'); changegpr = textscan(fid,'%s %s','Delimiter','\t','HeaderLines',1); newGPR.ID = changegpr{1}; newGPR.GPR = changegpr{2}; @@ -26,7 +26,7 @@ model = removeUnusedGenes(model); % Add gene standard name for new genes -fid = fopen('../ComplementaryData/databases/SGDgeneNames.tsv'); +fid = fopen('../data/databases/SGDgeneNames.tsv'); yeast_gene_annotation = textscan(fid,'%s %s','Delimiter','\t','HeaderLines',1); fclose(fid); for i = 1: length(model.genes) diff --git a/code/modelCuration/changerxnDirection.m b/code/modelCuration/changerxnDirection.m index bd43a823..4a6423ed 100644 --- a/code/modelCuration/changerxnDirection.m +++ b/code/modelCuration/changerxnDirection.m @@ -15,7 +15,7 @@ model = loadYeastModel; %Load rxnDirectionInfo.tsv files -fid = fopen('../ComplementaryData/modelcuration/rxnDirectionInfo.tsv'); +fid = fopen('../data/modelcuration/rxnDirectionInfo.tsv'); format = repmat('%s ',1,16); format = strtrim(format); temp = textscan(fid,format,'Delimiter','\t','HeaderLines',0); diff --git a/code/modelCuration/checkrxnDirection.m b/code/modelCuration/checkrxnDirection.m index bd16a8af..f6ac535e 100644 --- a/code/modelCuration/checkrxnDirection.m +++ b/code/modelCuration/checkrxnDirection.m @@ -40,7 +40,7 @@ checkRxns = setdiff(model.rxns,excl_rxns); %Categorize reactions via deltaG from group contribution method -fid2 = fopen('../ComplementaryData/modelCuration/grpContribution_deltaG.tsv'); +fid2 = fopen('../data/modelCuration/grpContribution_deltaG.tsv'); format = repmat('%s ',1,4); format = strtrim(format); rxn_temp = textscan(fid2,format,'Delimiter','\t','HeaderLines',0); @@ -142,7 +142,7 @@ %load MetaCyc_deltaG.tsv as getRxnsFromMetaCyc does not include deltaG data cd .. -fid2 = fopen('../ComplementaryData/modelCuration/MetaCyc_deltaG.tsv'); +fid2 = fopen('../data/modelCuration/MetaCyc_deltaG.tsv'); format = repmat('%s ',1,2); format = strtrim(format); rxn_temp = textscan(fid2,format,'Delimiter','\t','HeaderLines',0); @@ -849,7 +849,7 @@ %Load reversibility index extracted from report in Memote %Categorize reactions via deltaG from group contribution method -fid2 = fopen('../ComplementaryData/modelCuration/memote_revIdx.tsv'); +fid2 = fopen('../data/modelCuration/memote_revIdx.tsv'); format = repmat('%s ',1,2); format = strtrim(format); rxn_temp = textscan(fid2,format,'Delimiter','\t','HeaderLines',0); diff --git a/code/modelCuration/modMetsandSmatrix.m b/code/modelCuration/modMetsandSmatrix.m index 0f2a7088..6997cc7d 100644 --- a/code/modelCuration/modMetsandSmatrix.m +++ b/code/modelCuration/modMetsandSmatrix.m @@ -13,7 +13,7 @@ model = loadYeastModel; %Load modMetsandSmatrix.tsv -fid = fopen('../ComplementaryData/modelCuration/modMetsandSmatrix.tsv'); +fid = fopen('../data/modelCuration/modMetsandSmatrix.tsv'); format = repmat('%s ',1,14); format = strtrim(format); temp = textscan(fid,format,'Delimiter','\t','HeaderLines',0); diff --git a/code/modelCuration/modifyID.m b/code/modelCuration/modifyID.m index f3ab2926..335c729f 100644 --- a/code/modelCuration/modifyID.m +++ b/code/modelCuration/modifyID.m @@ -12,7 +12,7 @@ model = loadYeastModel; %Load modifyID.tsv files -fid = fopen('../ComplementaryData/modelcuration/modifyID.tsv'); +fid = fopen('../data/modelcuration/modifyID.tsv'); format = repmat('%s ',1,16); format = strtrim(format); temp = textscan(fid,format,'Delimiter','\t','HeaderLines',0); diff --git a/code/modelCuration/updateMetaboliteAnnotation.m b/code/modelCuration/updateMetaboliteAnnotation.m index e24b8c65..fe045353 100644 --- a/code/modelCuration/updateMetaboliteAnnotation.m +++ b/code/modelCuration/updateMetaboliteAnnotation.m @@ -6,7 +6,7 @@ function model = updateMetaboliteAnnotation(model) %Load data: -fid = fopen('../../ComplementaryData/modelCuration/metabolite_manual_curation.tsv','r'); +fid = fopen('../../data/modelCuration/metabolite_manual_curation.tsv','r'); metaboliteData = textscan(fid,'%s %s %s %s %f32 %s','Delimiter','\t','HeaderLines',1); fclose(fid); diff --git a/code/modelTests/cobrapy-compliance.ipynb b/code/modelTests/cobrapy-compliance.ipynb index 88062177..ae6e2e2b 100644 --- a/code/modelTests/cobrapy-compliance.ipynb +++ b/code/modelTests/cobrapy-compliance.ipynb @@ -25,7 +25,7 @@ ], "source": [ "import cobra\n", - "model = cobra.io.read_sbml_model(\"../../ModelFiles/xml/yeastGEM.xml\")" + "model = cobra.io.read_sbml_model(\"../../model/yeastGEM.xml\")" ] }, { diff --git a/code/modelTests/growth.m b/code/modelTests/growth.m index 0ddf94a6..9c5f3fb3 100644 --- a/code/modelTests/growth.m +++ b/code/modelTests/growth.m @@ -12,7 +12,7 @@ cd otherChanges/ %Load chemostat data: -fid = fopen('../../ComplementaryData/physiology/chemostatData_Tobias2013.tsv','r'); +fid = fopen('../../data/physiology/chemostatData_Tobias2013.tsv','r'); exp_data = textscan(fid,'%f32 %f32 %f32 %f32','Delimiter','\t','HeaderLines',1); exp_data = [exp_data{1} exp_data{2} exp_data{3} exp_data{4}]; fclose(fid); diff --git a/code/otherChanges/fitGAM.m b/code/otherChanges/fitGAM.m index 6f8d1506..b7d8372e 100644 --- a/code/otherChanges/fitGAM.m +++ b/code/otherChanges/fitGAM.m @@ -5,7 +5,7 @@ function model = fitGAM(model) %Load chemostat data: -fid = fopen('../../ComplementaryData/physiology/chemostatData_VanHoek1998.tsv','r'); +fid = fopen('../../data/physiology/chemostatData_VanHoek1998.tsv','r'); exp_data = textscan(fid,'%f32 %f32 %f32 %f32','Delimiter','\t','HeaderLines',1); exp_data = [exp_data{1} exp_data{2} exp_data{3} exp_data{4}]; fclose(fid); diff --git a/code/otherChanges/sumBioMass.m b/code/otherChanges/sumBioMass.m index 6aa50f98..2a996547 100644 --- a/code/otherChanges/sumBioMass.m +++ b/code/otherChanges/sumBioMass.m @@ -25,14 +25,14 @@ %Load original biomass component MWs: %TODO: compute MW automatically from chemical formulas (check that all components have them first) -fid = fopen('../../ComplementaryData/physiology/biomassComposition_Forster2003.tsv'); +fid = fopen('../../data/physiology/biomassComposition_Forster2003.tsv'); Forster2003 = textscan(fid,'%s %s %f32 %f32 %s','Delimiter','\t','HeaderLines',1); data.mets = Forster2003{1}; data.MWs = double(Forster2003{4}); fclose(fid); %load additional cofactor/ion MWs: -fid = fopen('../../ComplementaryData/physiology/biomassComposition_Cofactor_Ion.tsv'); +fid = fopen('../../data/physiology/biomassComposition_Cofactor_Ion.tsv'); CofactorsIons = textscan(fid,'%s %s %f32 %f32 %s %s','Delimiter','\t','HeaderLines',1); data_new.mets = CofactorsIons{1}; data_new.MWs = double(CofactorsIons{4}); From 7e9d0016d692215f8c28d31aa7c98afa121dcddc Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Sat, 15 May 2021 00:27:33 +0200 Subject: [PATCH 44/56] refactor: update README.md --- README.md | 67 ++++++++++++++++++++++++++++++------------------------- 1 file changed, 37 insertions(+), 30 deletions(-) diff --git a/README.md b/README.md index 14cb848e..d9713a44 100644 --- a/README.md +++ b/README.md @@ -1,45 +1,63 @@ + @@ -0,0 +1,94 @@ # yeast-GEM: The consensus genome-scale metabolic model of _Saccharomyces cerevisiae_ [![DOI](https://zenodo.org/badge/52777598.svg)](https://zenodo.org/badge/latestdoi/52777598) [![GitHub version](https://badge.fury.io/gh/sysbiochalmers%2Fyeast-gem.svg)](https://badge.fury.io/gh/sysbiochalmers%2Fyeast-gem) [![Join the chat at https://gitter.im/SysBioChalmers/yeast-GEM](https://badges.gitter.im/SysBioChalmers/yeast-GEM.svg)](https://gitter.im/SysBioChalmers/yeast-GEM?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -* Brief Model Description: +## Description This repository contains the current consensus genome-scale metabolic model of _Saccharomyces cerevisiae_. It is the continuation of the legacy project [yeastnet](https://sourceforge.net/projects/yeast/). For the latest release please [click here](https://github.com/SysBioChalmers/yeast-GEM/releases). -* Model KeyWords: - -**GEM Category:** species; **Utilisation:** experimental data reconstruction, multi-omics integrative analysis, _in silico_ strain design, model template; **Field:** metabolic-network reconstruction; **Type of Model:** reconstruction, curated; **Model Source:** YeastMetabolicNetwork; **Omic Source:** genomics, metabolomics; **Taxonomy:** _Saccharomyces cerevisiae_; **Metabolic System:** general metabolism; **Bioreactor**; **Strain:** S288C; **Condition:** aerobic, glucose-limited, defined media; - -* Last update: 2021-04-07 +## Citation -* Main Model Descriptors: +* If you use yeast-GEM please cite the yeast8 paper: + > Lu, H. et al. _A consensus S. cerevisiae metabolic model Yeast8 and its ecosystem for comprehensively probing cellular metabolism._ Nature Communications 10, 3586 (2019). https://doi.org/10.1038/s41467-019-11581-3. +* Additionally, all yeast-GEM releases are archived in [Zenodo](https://zenodo.org/badge/latestdoi/52777598), for you to cite the specific version of yeast-GEM that you used in your study, to ensure reproducibility. You should always cite the original publication + the specific version, for instance: + > _The yeast consensus genome-scale model [Lu et al. 2019], version 8.3.4 [Sánchez et al. 2019], was used._ -|Taxonomy | Template Model | Reactions | Metabolites| Genes | + Find the citation details for your specific version [here](https://zenodo.org/search?page=1&size=20&q=conceptrecid:%221494182%22&sort=-publication_date&all_versions=True). + +## Keywords: + +**Utilisation:** experimental data reconstruction; multi-omics integrative analysis; _in silico_ strain design; model template +**Field:** metabolic-network reconstruction +**Type of model:** reconstruction; curated +**Model source:** [YeastMetabolicNetwork](http://doi.org/10.1038/nbt1492) +**Omic source:** genomics; metabolomics +**Taxonomic name:** _Saccharomyces cerevisiae_ +**Taxonomy ID:** [taxonomy:559292](https://identifiers.org/taxonomy:559292) +**Genome ID:** [insdc.gca:GCA_000146045.2](https://identifiers.org/insdc.gca:GCA_000146045.2) +**Metabolic system:** general metabolism +**Strain:** S288C +**Condition:** aerobic, glucose-limited, defined media + +## Model overview + +|Taxonomy | Template model | Reactions | Metabolites| Genes | |:-------:|:--------------:|:---------:|:----------:|:-----:| |_Saccharomyces cerevisiae_|[Yeast 7.6](https://sourceforge.net/projects/yeast/)|4058|2742|1150| -This repository is administered by Benjamín J. Sánchez ([@BenjaSanchez](https://github.com/benjasanchez)), Division of Systems and Synthetic Biology, Department of Biology and Biological Engineering, Chalmers University of Technology. +**Last update:** 2021-04-07 ## Installation -### Required Software - User: +### Required software - User: * Matlab user: * A functional Matlab installation (MATLAB 7.3 or higher). * The [COBRA toolbox for MATLAB](https://github.com/opencobra/cobratoolbox). * Python user: Python 3.4, 3.5, 3.6 or 3.7 -### Required Software - Contributor: +### Required software - Contributor: * Both of the previous Matlab requirements. * The [RAVEN toolbox for MATLAB](https://github.com/SysBioChalmers/RAVEN). * A [git wrapper](https://github.com/manur/MATLAB-git) added to the search path. -### Dependencies - Recommended Software: +### Dependencies - Recommended software: * For Matlab, the [libSBML MATLAB API](https://sourceforge.net/projects/sbml/files/libsbml/MATLAB%20Interface/) (version 5.17.0 is recommended). * [Gurobi Optimizer](http://www.gurobi.com/registration/download-reg) for any simulations. -### Installation Instructions +### Installation instructions * For users: Clone it from [`master`](https://github.com/SysBioChalmers/yeast-GEM) in the Github repo, or just download [the latest release](https://github.com/SysBioChalmers/yeast-GEM/releases). If you work in python, please create an environment with all requirements: ```bash pip install -r requirements/requirements.txt # installs all dependencies @@ -63,27 +81,16 @@ Make sure to load/save the model with the corresponding wrapper functions! io.write_yeast_model(model) # saving ``` -### Online Visualization/Simulation +### Online visualization/simulation * You can visualize selected pathways of yeast-GEM and perform online constraint-based simulations using [Caffeine](https://caffeine.dd-decaf.eu/interactive-map), by creating a simulation with the latest yeast-GEM version available, and choosing any _S. cerevisiae_ map (currently only `iMM904` maps are available). Learn more [about Caffeine](https://caffeine.dd-decaf.eu). * Additionally, you can interactively navigate model components and visualize 3D representations of all compartments and subsystems of yeast-GEM at [Metabolic Atlas](https://metabolicatlas.org/explore?selected=Yeast-GEM). Learn more [about Metabolic Atlas](https://www.metabolicatlas.org/about). -## Model Files - -The model is available in `.xml`, `.txt`, `.yml`, `.mat` and `.xlsx` (the last 2 extensions only in `master`). Additionally, the following 2 files are available: -* `dependencies.txt`: Tracks versions of toolboxes & SBML used for saving the model. -* `boundaryMets.txt`: Contains a list of all boundary metabolites in model, listing the id and name. - -## Citation - -* If you use yeast-GEM please cite the yeast8 paper: - > Lu, H. et al. _A consensus S. cerevisiae metabolic model Yeast8 and its ecosystem for comprehensively probing cellular metabolism._ Nature Communications 10, 3586 (2019). https://doi.org/10.1038/s41467-019-11581-3. - -* Additionally, all yeast-GEM releases are archived in [Zenodo](https://zenodo.org/badge/latestdoi/52777598), for you to cite the specific version of yeast-GEM that you used in your study, to ensure reproducibility. You should always cite the original publication + the specific version, for instance: - > _The yeast consensus genome-scale model [Lu et al. 2019], version 8.3.4 [Sánchez et al. 2019], was used._ - - Find the citation details for your specific version [here](https://zenodo.org/search?page=1&size=20&q=conceptrecid:%221494182%22&sort=-publication_date&all_versions=True). - ## Contributing Contributions are always welcome! Please read the [contributions guideline](https://github.com/SysBioChalmers/yeast-GEM/blob/master/.github/CONTRIBUTING.md) to get started. + +## Contributors + +Code contributors are reported automatically by GitHub under [Contributors](https://github.com/SysBioChalmers/yeast-GEM/graphs/contributors), while other contributions come in as [Issues](https://github.com/SysBioChalmers/yeast-GEM/issues). +No newline at end of file From c0113a1c5c971029af87d539fa7ff0c152fa3826 Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Tue, 15 Jun 2021 16:59:51 +0200 Subject: [PATCH 45/56] fix: saveYeastModel recognize last update date - run model=rmfield(model,'subSystems') before running saveYeastModel, until subSystems are added (see #11) --- README.md | 2 +- code/saveYeastModel.m | 4 +- model/dependencies.txt | 6 +- model/yeastGEM.xml | 3 - model/yeastGEM.yml | 1454 +--------------------------------------- 5 files changed, 7 insertions(+), 1462 deletions(-) diff --git a/README.md b/README.md index d9713a44..8ed47a5a 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ This repository contains the current consensus genome-scale metabolic model of _ |:-------:|:--------------:|:---------:|:----------:|:-----:| |_Saccharomyces cerevisiae_|[Yeast 7.6](https://sourceforge.net/projects/yeast/)|4058|2742|1150| -**Last update:** 2021-04-07 +**Last update:** 2021-06-15 ## Installation diff --git a/code/saveYeastModel.m b/code/saveYeastModel.m index 38abd6eb..556f902e 100644 --- a/code/saveYeastModel.m +++ b/code/saveYeastModel.m @@ -82,8 +82,8 @@ function saveYeastModel(model,upDATE,allowNoGrowth) if ~ischar(inline) still_reading = false; else - if startsWith(inline,'* Last update: ') && upDATE - inline = ['* Last update: ' datestr(datetime,'yyyy-mm-dd') newline]; + if startsWith(inline,'**Last update:** ') && upDATE + inline = ['**Last update:** ' datestr(datetime,'yyyy-mm-dd') newline]; elseif startsWith(inline,'|_Saccharomyces cerevisiae_|') inline = ['|_Saccharomyces cerevisiae_|[Yeast 7.6]' ... '(https://sourceforge.net/projects/yeast/)|' ... diff --git a/model/dependencies.txt b/model/dependencies.txt index c9db5a5b..7cc62468 100644 --- a/model/dependencies.txt +++ b/model/dependencies.txt @@ -1,7 +1,7 @@ -MATLAB 9.9.0.1524771 (R2020b) Update 2 +MATLAB 9.10.0.1602886 (R2021a) libSBML 5.17.0 -RAVEN_toolbox commit 5061381 -COBRA_toolbox commit 800dcfe +RAVEN_toolbox commit 3b821c2 +COBRA_toolbox commit 25dbea4 SBML_level 3 SBML_version 1 fbc_version 2 diff --git a/model/yeastGEM.xml b/model/yeastGEM.xml index d28a2259..85511034 100644 --- a/model/yeastGEM.xml +++ b/model/yeastGEM.xml @@ -218932,8 +218932,5 @@ - - - diff --git a/model/yeastGEM.yml b/model/yeastGEM.yml index a6b65b88..95d6364b 100644 --- a/model/yeastGEM.yml +++ b/model/yeastGEM.yml @@ -3,7 +3,7 @@ - metaData: id: "yeastGEM_devel" name: "The Consensus Genome-Scale Metabolic Model of Yeast" - date: "2021-04-13" + date: "2021-06-15" - metabolites: - !!omap - id: "s_0001" @@ -2842,7 +2842,6 @@ - id: "s_0330" - name: "6-(alpha-D-glucosaminyl)-O-acyl-1-phosphatidyl-1D-myo-inositol" - compartment: "er" - - formula: "" - charge: 0 - annotation: !!omap - chebi: "CHEBI:53055" @@ -2885,7 +2884,6 @@ - id: "s_0334" - name: "6-O-[alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl]-O-acyl-1-phosphatidyl-1D-myo-inositol" - compartment: "er" - - formula: "" - charge: 0 - annotation: !!omap - chebi: "CHEBI:53056" @@ -2907,7 +2905,6 @@ - id: "s_0337" - name: "6-O-{2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" - compartment: "er" - - formula: "" - charge: 0 - annotation: !!omap - chebi: "CHEBI:53057" @@ -2917,7 +2914,6 @@ - id: "s_0338" - name: "6-O-{alpha-D-mannosyl-(1->2)-alpha-D-mannosyl-(1->6)-2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" - compartment: "er" - - formula: "" - charge: 0 - annotation: !!omap - chebi: "CHEBI:53059" @@ -2927,7 +2923,6 @@ - id: "s_0339" - name: "6-O-{alpha-D-mannosyl-(1->6)-2-O-[(2-aminoethyl)phosphoryl]-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl}-O-acyl-1-phosphatidyl-1D-myo-inositol" - compartment: "er" - - formula: "" - charge: 0 - annotation: !!omap - chebi: "CHEBI:53058" @@ -4004,7 +3999,6 @@ - id: "s_0450" - name: "biomass" - compartment: "c" - - formula: "" - charge: 0 - annotation: !!omap - bigg.metabolite: "biomass" @@ -6272,7 +6266,6 @@ - id: "s_0694" - name: "fatty acid backbone" - compartment: "c" - - formula: "" - charge: 0 - annotation: !!omap - chebi: "CHEBI:35366" @@ -10123,7 +10116,6 @@ - id: "s_1096" - name: "lipid" - compartment: "c" - - formula: "" - charge: 0 - annotation: !!omap - chebi: "CHEBI:18059" @@ -14834,7 +14826,6 @@ - id: "s_1845" - name: "ACP1" - compartment: "m" - - formula: "" - charge: 0 - annotation: !!omap - bigg.metabolite: "ACP" @@ -24065,7 +24056,6 @@ - id: "s_3717" - name: "protein" - compartment: "c" - - formula: "" - annotation: !!omap - bigg.metabolite: "protein" - kegg.compound: "C00492" @@ -24075,7 +24065,6 @@ - id: "s_3718" - name: "carbohydrate" - compartment: "c" - - formula: "" - annotation: !!omap - kegg.compound: "C05402" - metanetx.chemical: "MNXM1434" @@ -24084,7 +24073,6 @@ - id: "s_3719" - name: "RNA" - compartment: "c" - - formula: "" - annotation: !!omap - bigg.metabolite: "rna" - sbo: "SBO:0000649" @@ -24092,7 +24080,6 @@ - id: "s_3720" - name: "DNA" - compartment: "c" - - formula: "" - annotation: !!omap - bigg.metabolite: "dna" - sbo: "SBO:0000649" @@ -24275,14 +24262,12 @@ - id: "s_3746" - name: "lipid backbone" - compartment: "c" - - formula: "" - annotation: !!omap - sbo: "SBO:0000649" - !!omap - id: "s_3747" - name: "lipid chain" - compartment: "c" - - formula: "" - annotation: !!omap - sbo: "SBO:0000649" - !!omap @@ -26016,7 +26001,6 @@ - id: "s_3909" - name: "Sulfur donor" - compartment: "c" - - formula: "" - charge: 0 - annotation: !!omap - chebi: "CHEBI:80867" @@ -26977,7 +26961,6 @@ - id: "s_4002" - name: "G00149" - compartment: "er" - - formula: "" - charge: 0 - annotation: !!omap - metanetx.chemical: "MNXM7903" @@ -26986,7 +26969,6 @@ - id: "s_4003" - name: "G00140" - compartment: "er" - - formula: "" - charge: 0 - annotation: !!omap - metanetx.chemical: "MNXM9266" @@ -26995,7 +26977,6 @@ - id: "s_4004" - name: "Sulfur donor" - compartment: "m" - - formula: "" - charge: 0 - annotation: !!omap - chebi: "CHEBI:80867" @@ -27018,7 +26999,6 @@ - id: "s_4006" - name: "S-sulfanyl-[L-cysteine desulfurase]" - compartment: "m" - - formula: "" - charge: 0 - annotation: !!omap - sbo: "SBO:0000247" @@ -27026,7 +27006,6 @@ - id: "s_4007" - name: "[disordered-form [Fe-S] cluster scaffold protein]" - compartment: "m" - - formula: "" - charge: 0 - annotation: !!omap - sbo: "SBO:0000247" @@ -27034,7 +27013,6 @@ - id: "s_4008" - name: "S-sulfanyl-[cysteine desulfurase]-[disordered-form scaffold protein] complex" - compartment: "m" - - formula: "" - charge: 0 - annotation: !!omap - sbo: "SBO:0000247" @@ -29317,14 +29295,12 @@ - id: "s_4205" - name: "cofactor" - compartment: "c" - - formula: "" - annotation: !!omap - sbo: "SBO:0000649" - !!omap - id: "s_4206" - name: "ion" - compartment: "c" - - formula: "" - annotation: !!omap - sbo: "SBO:0000649" - !!omap @@ -29353,21 +29329,18 @@ - id: "s_4209" - name: "Ferrocytochrome b5" - compartment: "erm" - - formula: "" - annotation: !!omap - sbo: "SBO:0000247" - !!omap - id: "s_4210" - name: "Ferricytochrome b5" - compartment: "erm" - - formula: "" - annotation: !!omap - sbo: "SBO:0000247" - !!omap - id: "s_4211" - name: "hexanoyl-CoA" - compartment: "m" - - formula: "" - annotation: !!omap - sbo: "SBO:0000247" - !!omap @@ -31054,7 +31027,6 @@ - s_0807: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "4HBZFm" - kegg.reaction: "R01301" @@ -31542,7 +31514,6 @@ - s_1368: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - kegg.reaction: "R03210" - metanetx.reaction: "MNXR95854" @@ -33898,7 +33869,6 @@ - s_1275: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "AACTOOR" - kegg.reaction: "R02529" @@ -37908,7 +37878,6 @@ - s_1311: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GGTT" - kegg.reaction: "R07475" @@ -37990,7 +37959,6 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "G6PDA" - metanetx.reaction: "MNXR125024" @@ -38656,7 +38624,6 @@ - s_1003: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GLYAT" - kegg.reaction: "R00371" @@ -47429,7 +47396,6 @@ - s_1504: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - kegg.reaction: "R02244" - metanetx.reaction: "MNXR95382" @@ -47444,7 +47410,6 @@ - s_1503: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ACONIs" - kegg.reaction: "R02244" @@ -49083,7 +49048,6 @@ - s_2764: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - kegg.reaction: "R03687" - metanetx.reaction: "MNXR108341" @@ -49100,7 +49064,6 @@ - s_1403: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - kegg.reaction: "R04293" - metanetx.reaction: "MNXR103396" @@ -71762,7 +71725,6 @@ - s_3716: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - kegg.reaction: "R02410" - metanetx.reaction: "MNXR103420" @@ -71889,7 +71851,6 @@ - s_0029: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "MEV_Rt" - metanetx.reaction: "MNXR105406" @@ -71904,7 +71865,6 @@ - s_0036: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "BTDt_RR" - metanetx.reaction: "MNXR136615" @@ -71919,7 +71879,6 @@ - s_0173: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2MBACt" - metanetx.reaction: "MNXR94808" @@ -71953,7 +71912,6 @@ - s_0213: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "3DH5HPBtm" - metanetx.reaction: "MNXR94863" @@ -72000,7 +71958,6 @@ - s_0320: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95074" - pubmed: "8573145" @@ -72046,7 +72003,6 @@ - s_0686: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - pubmed: "10653746" - sbo: "SBO:0000655" @@ -72258,7 +72214,6 @@ - s_0488: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - pubmed: "12484746" - sbo: "SBO:0000655" @@ -72271,7 +72226,6 @@ - s_0491: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - pubmed: "12484746" - sbo: "SBO:0000655" @@ -72284,7 +72238,6 @@ - s_0494: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - pubmed: "12484746" - sbo: "SBO:0000655" @@ -72297,7 +72250,6 @@ - s_0497: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - pubmed: "12484746" - sbo: "SBO:0000655" @@ -72510,7 +72462,6 @@ - s_0799: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "D_LACtm" - metanetx.reaction: "MNXR97838" @@ -72527,7 +72478,6 @@ - s_1401: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "D_LACt2m" - metanetx.reaction: "MNXR97839" @@ -72662,7 +72612,6 @@ - s_0720: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "r0963" - metanetx.reaction: "MNXR105408" @@ -72819,7 +72768,6 @@ - s_0774: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GLCNtv" - metanetx.reaction: "MNXR100211" @@ -72915,7 +72863,6 @@ - s_0928: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "IAMACt" - metanetx.reaction: "MNXR100774" @@ -72930,7 +72877,6 @@ - s_0936: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "IBUTACt" - metanetx.reaction: "MNXR100779" @@ -72945,7 +72891,6 @@ - s_0945: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "IPDPtm" - metanetx.reaction: "MNXR100876" @@ -73871,7 +73816,6 @@ - s_1313: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PENDPtm" - metanetx.reaction: "MNXR102483" @@ -73886,7 +73830,6 @@ - s_1317: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PHEACt" - metanetx.reaction: "MNXR102622" @@ -74235,7 +74178,6 @@ - s_1472: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "TAURt" - metanetx.reaction: "MNXR104733" @@ -77578,7 +77520,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77592,7 +77533,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77606,7 +77546,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77620,7 +77559,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77634,7 +77572,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77648,7 +77585,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77662,7 +77598,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77676,7 +77611,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77690,7 +77624,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77704,7 +77637,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77718,7 +77650,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77732,7 +77663,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77746,7 +77676,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77760,7 +77689,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77774,7 +77702,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77788,7 +77715,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77802,7 +77728,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77816,7 +77741,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77830,7 +77754,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77844,7 +77767,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77858,7 +77780,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77872,7 +77793,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77886,7 +77806,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77900,7 +77819,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77914,7 +77832,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77928,7 +77845,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77942,7 +77858,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77956,7 +77871,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77970,7 +77884,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77984,7 +77897,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -77998,7 +77910,6 @@ - s_3741: 0.254413 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78011,7 +77922,6 @@ - s_3741: 0.508826 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78025,7 +77935,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78039,7 +77948,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78053,7 +77961,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78067,7 +77974,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78081,7 +77987,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78094,7 +77999,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78107,7 +78011,6 @@ - s_3741: 0.254413 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78120,7 +78023,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78133,7 +78035,6 @@ - s_3740: 0.25642888 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78146,7 +78047,6 @@ - s_3741: 0.254413 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78159,7 +78059,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78172,7 +78071,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78186,7 +78084,6 @@ - s_3741: 0.254413 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78199,7 +78096,6 @@ - s_3741: 0.508826 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78213,7 +78109,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78227,7 +78122,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78241,7 +78135,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78255,7 +78148,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78269,7 +78161,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78282,7 +78173,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78296,7 +78186,6 @@ - s_3741: 0.254413 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78309,7 +78198,6 @@ - s_3741: 0.508826 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78323,7 +78211,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78337,7 +78224,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78351,7 +78237,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78365,7 +78250,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78379,7 +78263,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78392,7 +78275,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78406,7 +78288,6 @@ - s_3741: 0.254413 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78419,7 +78300,6 @@ - s_3741: 0.508826 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78433,7 +78313,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78447,7 +78326,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78461,7 +78339,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78475,7 +78352,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78489,7 +78365,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78502,7 +78377,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78516,7 +78390,6 @@ - s_3741: 0.254413 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78530,7 +78403,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78544,7 +78416,6 @@ - s_3741: 0.508826 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78559,7 +78430,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78574,7 +78444,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78589,7 +78458,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78604,7 +78472,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78618,7 +78485,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78632,7 +78498,6 @@ - s_3741: 0.508826 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78647,7 +78512,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78660,7 +78524,6 @@ - s_3741: 0.763239 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78674,7 +78537,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78688,7 +78550,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78703,7 +78564,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78717,7 +78577,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78731,7 +78590,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78746,7 +78604,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78761,7 +78618,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78775,7 +78631,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78790,7 +78645,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78804,7 +78658,6 @@ - s_3742: 0.56896528 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78818,7 +78671,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78833,7 +78685,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78847,7 +78698,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78862,7 +78712,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78876,7 +78725,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78890,7 +78738,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78904,7 +78751,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78919,7 +78765,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78933,7 +78778,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78947,7 +78791,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78960,7 +78803,6 @@ - s_3743: 0.84740028 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -78971,7 +78813,6 @@ - s_0003: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_13BDglcn_e" - sbo: "SBO:0000627" @@ -78983,7 +78824,6 @@ - s_0002: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -78994,7 +78834,6 @@ - s_0022: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_crn_e" - sbo: "SBO:0000627" @@ -79005,7 +78844,6 @@ - s_0026: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_lac__D_e" - sbo: "SBO:0000627" @@ -79016,7 +78854,6 @@ - s_0029: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_mev__R_e" - sbo: "SBO:0000627" @@ -79027,7 +78864,6 @@ - s_0032: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pnto__R_e" - sbo: "SBO:0000627" @@ -79038,7 +78874,6 @@ - s_0036: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_btd_RR_e" - sbo: "SBO:0000627" @@ -79049,7 +78884,6 @@ - s_0058: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_3mop_e" - sbo: "SBO:0000627" @@ -79060,7 +78894,6 @@ - s_0064: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_lac__L_e" - sbo: "SBO:0000627" @@ -79071,7 +78904,6 @@ - s_0067: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_mal__L_e" - sbo: "SBO:0000627" @@ -79082,7 +78914,6 @@ - s_0080: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_g3pi_e" - sbo: "SBO:0000627" @@ -79093,7 +78924,6 @@ - s_0084: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pchol_cho_e" - sbo: "SBO:0000627" @@ -79105,7 +78935,6 @@ - s_1157: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR125284" - sbo: "SBO:0000655" @@ -79118,7 +78947,6 @@ - s_0127: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101573" - sbo: "SBO:0000655" @@ -79130,7 +78958,6 @@ - s_0133: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_dad_2_e" - sbo: "SBO:0000627" @@ -79141,7 +78968,6 @@ - s_0135: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_dgsn_e" - sbo: "SBO:0000627" @@ -79152,7 +78978,6 @@ - s_0137: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_din_e" - sbo: "SBO:0000627" @@ -79163,7 +78988,6 @@ - s_0139: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_duri_e" - sbo: "SBO:0000627" @@ -79175,7 +78999,6 @@ - s_0350: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2DDA7Ptm" - metanetx.reaction: "MNXR94782" @@ -79189,7 +79012,6 @@ - s_0150: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2DHPtm" - metanetx.reaction: "MNXR94793" @@ -79202,7 +79024,6 @@ - s_0163: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_3c3hmp_e" - sbo: "SBO:0000627" @@ -79214,7 +79035,6 @@ - s_0163: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "3C3HMPt" - sbo: "SBO:0000655" @@ -79240,7 +79060,6 @@ - s_0170: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2MBTOHt" - metanetx.reaction: "MNXR94810" @@ -79254,7 +79073,6 @@ - s_0171: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2MBTOHtm" - metanetx.reaction: "MNXR94810" @@ -79267,7 +79085,6 @@ - s_0167: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_2mbald_e" - sbo: "SBO:0000627" @@ -79279,7 +79096,6 @@ - s_0167: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2MBALDt" - metanetx.reaction: "MNXR94809" @@ -79293,7 +79109,6 @@ - s_0168: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2MBALDtm" - metanetx.reaction: "MNXR94809" @@ -79306,7 +79121,6 @@ - s_0170: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_2mbtoh_e" - sbo: "SBO:0000627" @@ -79317,7 +79131,6 @@ - s_0173: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_2mbac_e" - sbo: "SBO:0000627" @@ -79329,7 +79142,6 @@ - s_0938: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2MPPALt" - metanetx.reaction: "MNXR94812" @@ -79343,7 +79155,6 @@ - s_0939: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2MPPALtm" - metanetx.reaction: "MNXR94812" @@ -79357,7 +79168,6 @@ - s_0179: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2OBUTtm" - metanetx.reaction: "MNXR94814" @@ -79370,7 +79180,6 @@ - s_0181: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_akg_e" - sbo: "SBO:0000627" @@ -79382,7 +79191,6 @@ - s_0183: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95663" - sbo: "SBO:0000655" @@ -79395,7 +79203,6 @@ - s_0181: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95663" - sbo: "SBO:0000655" @@ -79407,7 +79214,6 @@ - s_0186: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_2phetoh_e" - sbo: "SBO:0000627" @@ -79419,7 +79225,6 @@ - s_0186: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2PHETOHt" - metanetx.reaction: "MNXR94828" @@ -79433,7 +79238,6 @@ - s_0187: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2PHETOHtm" - metanetx.reaction: "MNXR94828" @@ -79447,7 +79251,6 @@ - s_0011: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "3C4MOPtm" - metanetx.reaction: "MNXR94859" @@ -79461,7 +79264,6 @@ - s_0060: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "3MOPtm" - metanetx.reaction: "MNXR94926" @@ -79475,7 +79277,6 @@ - s_0058: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "3MOPt" - metanetx.reaction: "MNXR94926" @@ -79488,7 +79289,6 @@ - s_0235: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_3mbald_e" - sbo: "SBO:0000627" @@ -79500,7 +79300,6 @@ - s_0235: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "3MBALDt" - metanetx.reaction: "MNXR137944" @@ -79514,7 +79313,6 @@ - s_0236: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "3MBALDtm" - metanetx.reaction: "MNXR137944" @@ -79528,7 +79326,6 @@ - s_0216: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "3OPHB_5tm" - metanetx.reaction: "MNXR94966" @@ -79558,7 +79355,6 @@ - s_0272: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_4abz_e" - sbo: "SBO:0000627" @@ -79570,7 +79366,6 @@ - s_0272: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "4ABZt" - metanetx.reaction: "MNXR94995" @@ -79584,7 +79379,6 @@ - s_0273: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "4ABZtm" - metanetx.reaction: "MNXR94995" @@ -79598,7 +79392,6 @@ - s_0275: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "4ABUTNtm" - metanetx.reaction: "MNXR94992" @@ -79612,7 +79405,6 @@ - s_0738: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "4ABUTtm" - metanetx.reaction: "MNXR94993" @@ -79626,7 +79418,6 @@ - s_0283: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "4H2OGLTtm" - metanetx.reaction: "MNXR95001" @@ -79640,7 +79431,6 @@ - s_0284: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "4H2OGLTtp" - metanetx.reaction: "MNXR95001" @@ -79654,7 +79444,6 @@ - s_0287: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "4HBZtm" - metanetx.reaction: "MNXR95013" @@ -79670,7 +79459,6 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NTD7" - kegg.reaction: "R00183" @@ -79687,7 +79475,6 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NTD6" - kegg.reaction: "R02088" @@ -79704,7 +79491,6 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NTD3" - kegg.reaction: "R01664" @@ -79721,7 +79507,6 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NTD8" - kegg.reaction: "R01968" @@ -79738,7 +79523,6 @@ - s_1493: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NTD5" - kegg.reaction: "R01569" @@ -79755,7 +79539,6 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NTD1" - kegg.reaction: "R02102" @@ -79772,7 +79555,6 @@ - s_1565: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NTD10" - kegg.reaction: "R02719" @@ -79786,7 +79568,6 @@ - s_0316: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_5aop_e" - sbo: "SBO:0000627" @@ -79798,7 +79579,6 @@ - s_0317: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "5AOPtm" - metanetx.reaction: "MNXR95062" @@ -79848,7 +79628,6 @@ - s_0320: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_5fthf_e" - sbo: "SBO:0000627" @@ -79859,7 +79638,6 @@ - s_0342: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_dann_e" - sbo: "SBO:0000627" @@ -79871,7 +79649,6 @@ - s_0342: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -79882,7 +79659,6 @@ - s_0354: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_8aonn_e" - sbo: "SBO:0000627" @@ -79893,7 +79669,6 @@ - s_0358: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_xan_e" - sbo: "SBO:0000627" @@ -79904,7 +79679,6 @@ - s_0360: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_acald_e" - sbo: "SBO:0000627" @@ -79916,7 +79690,6 @@ - s_0361: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ACALDtm" - metanetx.reaction: "MNXR95212" @@ -79930,7 +79703,6 @@ - s_0360: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ACALDt" - metanetx.reaction: "MNXR95212" @@ -79943,7 +79715,6 @@ - s_0364: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ac_e" - sbo: "SBO:0000627" @@ -79955,7 +79726,6 @@ - s_0366: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95431" - sbo: "SBO:0000655" @@ -79968,7 +79738,6 @@ - s_0377: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ACCOAtn" - metanetx.reaction: "MNXR95223" @@ -79982,7 +79751,6 @@ - s_1237: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ACRNtp" - metanetx.reaction: "MNXR95412" @@ -79995,7 +79763,6 @@ - s_0384: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ade_e" - sbo: "SBO:0000627" @@ -80007,7 +79774,6 @@ - s_0385: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ADEtm" - metanetx.reaction: "MNXR95445" @@ -80020,7 +79786,6 @@ - s_0391: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pap_e" - sbo: "SBO:0000627" @@ -80045,7 +79810,6 @@ - s_0387: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_adn_e" - sbo: "SBO:0000627" @@ -80057,7 +79821,6 @@ - s_0398: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" @@ -80070,7 +79833,6 @@ - s_0395: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" @@ -80083,7 +79845,6 @@ - s_0184: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "AKGtp" - metanetx.reaction: "MNXR95663" @@ -80096,7 +79857,6 @@ - s_0406: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_alltt_e" - sbo: "SBO:0000627" @@ -80107,7 +79867,6 @@ - s_0408: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_alltn_e" - sbo: "SBO:0000627" @@ -80118,7 +79877,6 @@ - s_1521: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_tre_e" - sbo: "SBO:0000627" @@ -80129,7 +79887,6 @@ - s_0413: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gam6p_e" - sbo: "SBO:0000627" @@ -80143,7 +79900,6 @@ - s_0181: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "AKGMAL" - metanetx.reaction: "MNXR95659" @@ -80156,7 +79912,6 @@ - s_0420: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_nh4_e" - metanetx.reaction: "MNXR101948" @@ -80169,7 +79924,6 @@ - s_0425: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "AMPtn" - metanetx.reaction: "MNXR95830" @@ -80199,7 +79953,6 @@ - s_0995: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ASPGLUtp" - metanetx.reaction: "MNXR96083" @@ -80213,7 +79966,6 @@ - s_0438: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ATPtn" - metanetx.reaction: "MNXR96140" @@ -80227,7 +79979,6 @@ - s_0435: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" @@ -80239,7 +79990,6 @@ - s_0446: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_hco3_e" - metanetx.reaction: "MNXR100483" @@ -80254,7 +80004,6 @@ - s_0807: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "HCO3Em" - kegg.reaction: "R00132" @@ -80271,7 +80020,6 @@ - s_0808: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "HCO3En" - kegg.reaction: "R00132" @@ -80305,7 +80053,6 @@ - s_0805: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "HCO3Ee" - kegg.reaction: "R00132" @@ -80320,7 +80067,6 @@ - s_0448: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "HCO3tn" - metanetx.reaction: "MNXR100484" @@ -80333,7 +80079,6 @@ - s_0452: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_btn_e" - sbo: "SBO:0000627" @@ -80344,7 +80089,6 @@ - s_0458: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_co2_e" - sbo: "SBO:0000627" @@ -80356,7 +80100,6 @@ - s_0024: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CRNtp" - metanetx.reaction: "MNXR96906" @@ -80372,7 +80115,6 @@ - s_1237: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CRNCARtp" - metanetx.reaction: "MNXR96898" @@ -80386,7 +80128,6 @@ - s_0468: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CDPtn" - metanetx.reaction: "MNXR96562" @@ -80400,7 +80141,6 @@ - s_0476: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137412" - sbo: "SBO:0000655" @@ -80413,7 +80153,6 @@ - s_0482: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137414" - sbo: "SBO:0000655" @@ -80426,7 +80165,6 @@ - s_0500: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -80438,7 +80176,6 @@ - s_0479: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137413" - sbo: "SBO:0000655" @@ -80451,7 +80188,6 @@ - s_0485: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137415" - sbo: "SBO:0000655" @@ -80464,7 +80200,6 @@ - s_0503: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -80481,7 +80216,6 @@ - s_1569: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CHLSTI" - metanetx.reaction: "MNXR96688" @@ -80494,7 +80228,6 @@ - s_0513: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_chol_e" - sbo: "SBO:0000627" @@ -80520,7 +80253,6 @@ - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CHRPL" - kegg.reaction: "R01302" @@ -80535,7 +80267,6 @@ - s_0523: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96756" - sbo: "SBO:0000655" @@ -80547,7 +80278,6 @@ - s_0523: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_cit_e" - sbo: "SBO:0000627" @@ -80561,7 +80291,6 @@ - s_0942: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CITtcp" - metanetx.reaction: "MNXR96755" @@ -80577,7 +80306,6 @@ - s_0525: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CITtap" - metanetx.reaction: "MNXR96753" @@ -80593,7 +80321,6 @@ - s_1408: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CMPN" - metanetx.reaction: "MNXR96804" @@ -80607,7 +80334,6 @@ - s_0457: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CO2ter" - metanetx.reaction: "MNXR96810" @@ -80621,7 +80347,6 @@ - s_0461: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CO2tn" - metanetx.reaction: "MNXR96810" @@ -80635,7 +80360,6 @@ - s_0462: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CO2tp" - metanetx.reaction: "MNXR96810" @@ -80649,7 +80373,6 @@ - s_0460: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CO2tm" - metanetx.reaction: "MNXR96810" @@ -80663,7 +80386,6 @@ - s_0458: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CO2t" - metanetx.reaction: "MNXR96810" @@ -80677,7 +80399,6 @@ - s_0530: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "COAtr" - metanetx.reaction: "MNXR96815" @@ -80691,7 +80412,6 @@ - s_0533: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "COAtn" - metanetx.reaction: "MNXR96815" @@ -80705,7 +80425,6 @@ - s_0534: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "COAtp" - metanetx.reaction: "MNXR96815" @@ -80718,7 +80437,6 @@ - s_0544: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_cytd_e" - sbo: "SBO:0000627" @@ -80732,7 +80450,6 @@ - s_0526: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CYTK1" - kegg.reaction: "R00512" @@ -80749,7 +80466,6 @@ - s_0589: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CYTK2" - kegg.reaction: "R01665" @@ -80763,7 +80479,6 @@ - s_0546: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_csn_e" - sbo: "SBO:0000627" @@ -80774,7 +80489,6 @@ - s_0549: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_arab__D_e" - sbo: "SBO:0000627" @@ -80799,7 +80513,6 @@ - s_0552: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "E4Ptm" - metanetx.reaction: "MNXR97843" @@ -80812,7 +80525,6 @@ - s_0554: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_fru_e" - sbo: "SBO:0000627" @@ -80823,7 +80535,6 @@ - s_0559: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gal_e" - kegg.reaction: "R10619" @@ -80836,7 +80547,6 @@ - s_0560: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_galur_e" - sbo: "SBO:0000627" @@ -80847,7 +80557,6 @@ - s_0562: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_sbt__D_e" - sbo: "SBO:0000627" @@ -80859,7 +80568,6 @@ - s_0413: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GAM6Pt" - sbo: "SBO:0000655" @@ -80871,7 +80579,6 @@ - s_0565: -1 - lower_bound: -1 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_glc__D_e" - metanetx.reaction: "MNXR138465" @@ -80883,7 +80590,6 @@ - s_0572: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_man_e" - sbo: "SBO:0000627" @@ -80894,7 +80600,6 @@ - s_0576: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_rib__D_e" - sbo: "SBO:0000627" @@ -80919,7 +80624,6 @@ - s_0579: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_xyl__D_e" - sbo: "SBO:0000627" @@ -80944,7 +80648,6 @@ - s_0583: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DADPtn" - metanetx.reaction: "MNXR97082" @@ -80958,7 +80661,6 @@ - s_0588: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DCDPtn" - metanetx.reaction: "MNXR97182" @@ -80975,7 +80677,6 @@ - s_0950: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ATPHs" - kegg.reaction: "R00088" @@ -80993,7 +80694,6 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DATPHs" - metanetx.reaction: "MNXR97174" @@ -81010,7 +80710,6 @@ - s_0846: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - kegg.reaction: "R00123" - metanetx.reaction: "MNXR106399" @@ -81027,7 +80726,6 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -81039,7 +80737,6 @@ - s_0593: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DNADtn" - metanetx.reaction: "MNXR97625" @@ -81052,7 +80749,6 @@ - s_0597: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_dca_e" - sbo: "SBO:0000627" @@ -81064,7 +80760,6 @@ - s_0133: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DADNt4" - metanetx.reaction: "MNXR97081" @@ -81094,7 +80789,6 @@ - s_0611: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_dcyt_e" - sbo: "SBO:0000627" @@ -81106,7 +80800,6 @@ - s_0611: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DCYTt" - metanetx.reaction: "MNXR97208" @@ -81120,7 +80813,6 @@ - s_0135: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DGSNt" - metanetx.reaction: "MNXR97324" @@ -81134,7 +80826,6 @@ - s_0137: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DINt" - metanetx.reaction: "MNXR97466" @@ -81151,7 +80842,6 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DURIK1" - kegg.reaction: "R02099" @@ -81183,7 +80873,6 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DPCOAK" - kegg.reaction: "R00130" @@ -81198,7 +80887,6 @@ - s_0614: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DGDPtn" - metanetx.reaction: "MNXR97314" @@ -81212,7 +80900,6 @@ - s_0344: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DHNPTtm" - sbo: "SBO:0000655" @@ -81242,7 +80929,6 @@ - s_0626: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DHFtm" - metanetx.reaction: "MNXR97404" @@ -81259,7 +80945,6 @@ - s_0803: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DNTPPA" - kegg.reaction: "R04638" @@ -81274,7 +80959,6 @@ - s_0348: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DHPTtm" - metanetx.reaction: "MNXR142733" @@ -81288,7 +80972,6 @@ - s_0632: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DHAPtm" - metanetx.reaction: "MNXR97366" @@ -81303,7 +80986,6 @@ - s_0638: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PPItx" - metanetx.reaction: "MNXR103112" @@ -81317,7 +80999,6 @@ - s_0646: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DOLP_ter" - sbo: "SBO:0000655" @@ -81329,7 +81010,6 @@ - s_0651: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_dttp_e" - sbo: "SBO:0000627" @@ -81341,7 +81021,6 @@ - s_0651: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DTTPt" - metanetx.reaction: "MNXR97810" @@ -81355,7 +81034,6 @@ - s_0653: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DUDPtn" - metanetx.reaction: "MNXR97812" @@ -81369,7 +81047,6 @@ - s_0655: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DUMPtn" - metanetx.reaction: "MNXR97813" @@ -81382,7 +81059,6 @@ - s_0659: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_epist_e" - sbo: "SBO:0000627" @@ -81394,7 +81070,6 @@ - s_0663: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ERGTETROLter" - metanetx.reaction: "MNXR97951" @@ -81407,7 +81082,6 @@ - s_0668: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ergst_e" - sbo: "SBO:0000627" @@ -81419,7 +81093,6 @@ - s_0667: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ERGSTter" - metanetx.reaction: "MNXR97950" @@ -81433,7 +81106,6 @@ - s_0669: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR97950" - sbo: "SBO:0000655" @@ -81445,7 +81117,6 @@ - s_0681: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_etoh_e" - sbo: "SBO:0000627" @@ -81457,7 +81128,6 @@ - s_0681: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ETOHt" - metanetx.reaction: "MNXR97980" @@ -81471,7 +81141,6 @@ - s_0682: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ETOHtm" - metanetx.reaction: "MNXR97980" @@ -81484,7 +81153,6 @@ - s_0684: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_etha_e" - sbo: "SBO:0000627" @@ -81495,7 +81163,6 @@ - s_0686: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -81506,7 +81173,6 @@ - s_0191: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "FRDPtm" - metanetx.reaction: "MNXR99646" @@ -81520,7 +81186,6 @@ - s_0600: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "FA100tp" - metanetx.reaction: "MNXR135772" @@ -81576,7 +81241,6 @@ - s_1298: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "FA161tp" - sbo: "SBO:0000655" @@ -81589,7 +81253,6 @@ - s_1253: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "FA80tp" - metanetx.reaction: "MNXR99126" @@ -81603,7 +81266,6 @@ - s_1163: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "TTDCAtr" - metanetx.reaction: "MNXR128297" @@ -81616,7 +81278,6 @@ - s_0702: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_fecost_e" - sbo: "SBO:0000627" @@ -81645,7 +81306,6 @@ - s_0715: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_fmn_e" - sbo: "SBO:0000627" @@ -81656,7 +81316,6 @@ - s_0720: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_fol_e" - sbo: "SBO:0000627" @@ -81667,7 +81326,6 @@ - s_0723: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_for_e" - sbo: "SBO:0000627" @@ -81679,7 +81337,6 @@ - s_0724: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "FORtm" - metanetx.reaction: "MNXR99620" @@ -81707,7 +81364,6 @@ - s_0726: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "FUMtr" - metanetx.reaction: "MNXR99715" @@ -81724,7 +81380,6 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "FRUK" - sbo: "SBO:0000176" @@ -81736,7 +81391,6 @@ - s_0726: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_fum_e" - sbo: "SBO:0000627" @@ -81747,7 +81401,6 @@ - s_0736: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_4abut_e" - sbo: "SBO:0000627" @@ -81759,7 +81412,6 @@ - s_0740: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GDPtg" - metanetx.reaction: "MNXR100096" @@ -81773,7 +81425,6 @@ - s_0742: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GDPtn" - metanetx.reaction: "MNXR100096" @@ -81813,7 +81464,6 @@ - s_0755: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gthox_e" - sbo: "SBO:0000627" @@ -81824,7 +81474,6 @@ - s_0751: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gthrd_e" - sbo: "SBO:0000627" @@ -81835,7 +81484,6 @@ - s_0766: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_glyc_e" - sbo: "SBO:0000627" @@ -81847,7 +81495,6 @@ - s_0770: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GLYC3Ptm" - metanetx.reaction: "MNXR100308" @@ -81861,7 +81508,6 @@ - s_1004: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gly_e" - sbo: "SBO:0000627" @@ -81887,7 +81533,6 @@ - s_0777: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GCALDtm" - metanetx.reaction: "MNXR100061" @@ -81901,7 +81546,6 @@ - s_0776: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GCALDt" - metanetx.reaction: "MNXR100061" @@ -81914,7 +81558,6 @@ - s_0776: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gcald_e" - sbo: "SBO:0000627" @@ -81925,7 +81568,6 @@ - s_0780: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_glx_e" - sbo: "SBO:0000627" @@ -81951,7 +81593,6 @@ - s_0781: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GLXtp" - metanetx.reaction: "MNXR100306" @@ -81964,7 +81605,6 @@ - s_0788: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gua_e" - sbo: "SBO:0000627" @@ -81976,7 +81616,6 @@ - s_0789: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GUAtm" - metanetx.reaction: "MNXR100465" @@ -81989,7 +81628,6 @@ - s_0791: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gsn_e" - sbo: "SBO:0000627" @@ -82004,7 +81642,6 @@ - s_0794: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GSNK" - kegg.reaction: "R01228" @@ -82019,7 +81656,6 @@ - s_0792: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GSNtm" - metanetx.reaction: "MNXR100433" @@ -82033,7 +81669,6 @@ - s_0791: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GSNt" - metanetx.reaction: "MNXR100433" @@ -82047,7 +81682,6 @@ - s_0796: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "Ht" - metanetx.reaction: "MNXR100765" @@ -82061,7 +81695,6 @@ - s_0795: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "Htr" - metanetx.reaction: "MNXR100765" @@ -82075,7 +81708,6 @@ - s_0797: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "Htg" - metanetx.reaction: "MNXR100765" @@ -82089,7 +81721,6 @@ - s_0798: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" @@ -82102,7 +81733,6 @@ - s_0800: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "HMR_1095" - metanetx.reaction: "MNXR100765" @@ -82116,7 +81746,6 @@ - s_0801: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "Htx" - metanetx.reaction: "MNXR100765" @@ -82130,7 +81759,6 @@ - s_0802: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" @@ -82142,7 +81770,6 @@ - s_0796: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_h_e" - sbo: "SBO:0000627" @@ -82154,7 +81781,6 @@ - s_0817: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR124347" - sbo: "SBO:0000655" @@ -82166,7 +81792,6 @@ - s_0826: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -82177,7 +81802,6 @@ - s_1288: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "HDCAt" - metanetx.reaction: "MNXR99101" @@ -82191,7 +81815,6 @@ - s_1295: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "HDCEAt" - sbo: "SBO:0000655" @@ -82217,7 +81840,6 @@ - s_0839: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "H2O2tn" - metanetx.reaction: "MNXR98640" @@ -82231,7 +81853,6 @@ - s_0221: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "HMGCOAtm" - metanetx.reaction: "MNXR100661" @@ -82244,7 +81865,6 @@ - s_0844: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_hxan_e" - sbo: "SBO:0000627" @@ -82256,7 +81876,6 @@ - s_0844: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "HYXNt" - metanetx.reaction: "MNXR100749" @@ -82269,7 +81888,6 @@ - s_0851: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_id3acald_e" - sbo: "SBO:0000627" @@ -82281,7 +81899,6 @@ - s_0852: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ID3ACALDtm" - metanetx.reaction: "MNXR100791" @@ -82295,7 +81912,6 @@ - s_0851: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ID3ACALDt" - metanetx.reaction: "MNXR100791" @@ -82309,7 +81925,6 @@ - s_0854: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "IND3ACtm" - metanetx.reaction: "MNXR100833" @@ -82322,7 +81937,6 @@ - s_0857: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ins_e" - sbo: "SBO:0000627" @@ -82334,7 +81948,6 @@ - s_0857: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "INSt" - metanetx.reaction: "MNXR100849" @@ -82348,7 +81961,6 @@ - s_1159: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "MINOHPtn" - metanetx.reaction: "MNXR101585" @@ -82365,7 +81977,6 @@ - s_0856: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "INSK" - kegg.reaction: "R01131" @@ -82380,7 +81991,6 @@ - s_0895: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -82392,7 +82002,6 @@ - s_0901: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -82404,7 +82013,6 @@ - s_0907: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -82416,7 +82024,6 @@ - s_0913: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -82428,7 +82035,6 @@ - s_0919: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -82440,7 +82046,6 @@ - s_0898: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -82452,7 +82057,6 @@ - s_0904: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -82464,7 +82068,6 @@ - s_0910: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -82476,7 +82079,6 @@ - s_0916: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -82488,7 +82090,6 @@ - s_0922: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -82499,7 +82100,6 @@ - s_0925: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_fe2_e" - sbo: "SBO:0000627" @@ -82510,7 +82110,6 @@ - s_0928: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_iamac_e" - sbo: "SBO:0000627" @@ -82522,7 +82121,6 @@ - s_0930: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "IAMOHt" - metanetx.reaction: "MNXR100775" @@ -82536,7 +82134,6 @@ - s_0931: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "IAMOHtm" - metanetx.reaction: "MNXR100775" @@ -82549,7 +82146,6 @@ - s_0930: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_iamoh_e" - sbo: "SBO:0000627" @@ -82560,7 +82156,6 @@ - s_0933: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ibutoh_e" - sbo: "SBO:0000627" @@ -82571,7 +82166,6 @@ - s_0936: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ibutac_e" - sbo: "SBO:0000627" @@ -82583,7 +82177,6 @@ - s_0933: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "IBUTOHt" - metanetx.reaction: "MNXR100780" @@ -82597,7 +82190,6 @@ - s_0934: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "IBUTOHtm" - metanetx.reaction: "MNXR100780" @@ -82610,7 +82202,6 @@ - s_0938: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_2mppal_e" - sbo: "SBO:0000627" @@ -82624,7 +82215,6 @@ - s_0954: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PHCHGSm" - sbo: "SBO:0000176" @@ -82639,7 +82229,6 @@ - s_0952: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "AOBUTDs" - kegg.reaction: "R03758" @@ -82653,7 +82242,6 @@ - s_0956: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ala__L_e" - sbo: "SBO:0000627" @@ -82665,7 +82253,6 @@ - s_0957: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ALAtmi" - metanetx.reaction: "MNXR95706" @@ -82678,7 +82265,6 @@ - s_0962: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_abt_e" - sbo: "SBO:0000627" @@ -82690,7 +82276,6 @@ - s_0962: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ABTt" - metanetx.reaction: "MNXR95190" @@ -82717,7 +82302,6 @@ - s_0964: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_arab__L_e" - sbo: "SBO:0000627" @@ -82728,7 +82312,6 @@ - s_0966: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_arg__L_e" - sbo: "SBO:0000627" @@ -82739,7 +82322,6 @@ - s_0970: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_asn__L_e" - sbo: "SBO:0000627" @@ -82750,7 +82332,6 @@ - s_0974: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_asp__L_e" - sbo: "SBO:0000627" @@ -82775,7 +82356,6 @@ - s_0982: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_cys__L_e" - sbo: "SBO:0000627" @@ -82787,7 +82367,6 @@ - s_0678: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "E4HGLUtm" - metanetx.reaction: "MNXR97841" @@ -82801,7 +82380,6 @@ - s_0679: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "E4HGLUtp" - metanetx.reaction: "MNXR97841" @@ -82814,7 +82392,6 @@ - s_0990: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_sbt__L_e" - sbo: "SBO:0000627" @@ -82828,7 +82405,6 @@ - s_0997: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "G5SADs" - kegg.reaction: "R03314" @@ -82842,7 +82418,6 @@ - s_0992: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_glu__L_e" - sbo: "SBO:0000627" @@ -82854,7 +82429,6 @@ - s_0994: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100301" - sbo: "SBO:0000655" @@ -82866,7 +82440,6 @@ - s_1000: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gln__L_e" - sbo: "SBO:0000627" @@ -82878,7 +82451,6 @@ - s_1001: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100259" - sbo: "SBO:0000655" @@ -82890,7 +82462,6 @@ - s_1007: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_his__L_e" - sbo: "SBO:0000627" @@ -82902,7 +82473,6 @@ - s_1015: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "r2535" - metanetx.reaction: "MNXR100678" @@ -82915,7 +82485,6 @@ - s_1015: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_hom__L_e" - sbo: "SBO:0000627" @@ -82926,7 +82495,6 @@ - s_1017: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ile__L_e" - sbo: "SBO:0000627" @@ -82938,7 +82506,6 @@ - s_1018: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ILEtmi" - metanetx.reaction: "MNXR100824" @@ -82951,7 +82518,6 @@ - s_1022: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_leu__L_e" - sbo: "SBO:0000627" @@ -82962,7 +82528,6 @@ - s_1026: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_lys__L_e" - sbo: "SBO:0000627" @@ -82974,7 +82539,6 @@ - s_0067: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "MALt" - metanetx.reaction: "MNXR101367" @@ -82987,7 +82551,6 @@ - s_1030: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_met__L_e" - sbo: "SBO:0000627" @@ -82998,7 +82561,6 @@ - s_1033: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_phe__L_e" - sbo: "SBO:0000627" @@ -83009,7 +82571,6 @@ - s_1036: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pro__L_e" - sbo: "SBO:0000627" @@ -83021,7 +82582,6 @@ - s_1037: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PROtm" - metanetx.reaction: "MNXR103213" @@ -83034,7 +82594,6 @@ - s_1041: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ser__L_e" - sbo: "SBO:0000627" @@ -83072,7 +82631,6 @@ - s_1044: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_srb__L_e" - sbo: "SBO:0000627" @@ -83097,7 +82655,6 @@ - s_1046: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_thr__L_e" - sbo: "SBO:0000627" @@ -83108,7 +82665,6 @@ - s_1049: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_trp__L_e" - sbo: "SBO:0000627" @@ -83119,7 +82675,6 @@ - s_1052: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_tyr__L_e" - sbo: "SBO:0000627" @@ -83130,7 +82685,6 @@ - s_1057: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_val__L_e" - sbo: "SBO:0000627" @@ -83141,7 +82695,6 @@ - s_1061: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_lanost_e" - sbo: "SBO:0000627" @@ -83152,7 +82705,6 @@ - s_1067: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ddca_e" - sbo: "SBO:0000627" @@ -83177,7 +82729,6 @@ - s_0862: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83189,7 +82740,6 @@ - s_0868: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83201,7 +82751,6 @@ - s_0874: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83213,7 +82762,6 @@ - s_0880: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83225,7 +82773,6 @@ - s_0886: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83237,7 +82784,6 @@ - s_0865: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83249,7 +82795,6 @@ - s_0871: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83261,7 +82806,6 @@ - s_0877: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83273,7 +82817,6 @@ - s_0883: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83285,7 +82828,6 @@ - s_0889: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83299,7 +82841,6 @@ - s_1274: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "MALOAAtp" - metanetx.reaction: "MNXR101346" @@ -83312,7 +82853,6 @@ - s_1106: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_malt_e" - metanetx.reaction: "MNXR123950" @@ -83325,7 +82865,6 @@ - s_1108: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "MANNANter" - metanetx.reaction: "MNXR101396" @@ -83354,7 +82893,6 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "MGSA" - kegg.reaction: "R01016" @@ -83369,7 +82907,6 @@ - s_1117: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83381,7 +82918,6 @@ - s_1123: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83393,7 +82929,6 @@ - s_1129: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83405,7 +82940,6 @@ - s_1135: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83417,7 +82951,6 @@ - s_1141: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83429,7 +82962,6 @@ - s_1120: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83441,7 +82973,6 @@ - s_1126: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83453,7 +82984,6 @@ - s_1132: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83465,7 +82995,6 @@ - s_1138: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83477,7 +83006,6 @@ - s_1144: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -83488,7 +83016,6 @@ - s_1154: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_inost_e" - sbo: "SBO:0000627" @@ -83499,7 +83026,6 @@ - s_1186: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -83510,7 +83036,6 @@ - s_1208: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NADPtru" - metanetx.reaction: "MNXR101896" @@ -83524,7 +83049,6 @@ - s_1213: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NADPHtru" - metanetx.reaction: "MNXR101894" @@ -83538,7 +83062,6 @@ - s_0421: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NH4tm" - metanetx.reaction: "MNXR101950" @@ -83552,7 +83075,6 @@ - s_1217: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101918" - sbo: "SBO:0000655" @@ -83564,7 +83086,6 @@ - s_1220: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_nac_e" - sbo: "SBO:0000627" @@ -83575,7 +83096,6 @@ - s_1225: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_nmn_e" - sbo: "SBO:0000627" @@ -83587,7 +83107,6 @@ - s_1227: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NMNtn" - metanetx.reaction: "MNXR101972" @@ -83601,7 +83120,6 @@ - s_1228: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101972" - sbo: "SBO:0000655" @@ -83614,7 +83132,6 @@ - s_1225: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NMNP" - metanetx.reaction: "MNXR101972" @@ -83631,7 +83148,6 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NDP4" - metanetx.reaction: "MNXR101929" @@ -83648,7 +83164,6 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "NTP4" - metanetx.reaction: "MNXR102044" @@ -83676,7 +83191,6 @@ - s_1276: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "O2ter" - metanetx.reaction: "MNXR102090" @@ -83690,7 +83204,6 @@ - s_1278: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "O2tm" - metanetx.reaction: "MNXR102090" @@ -83704,7 +83217,6 @@ - s_1277: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "O2t" - metanetx.reaction: "MNXR102090" @@ -83718,7 +83230,6 @@ - s_1279: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "O2tp" - metanetx.reaction: "MNXR102090" @@ -83732,7 +83243,6 @@ - s_1450: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "OCDCAt" - metanetx.reaction: "MNXR99109" @@ -83745,7 +83255,6 @@ - s_1250: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_octa_e" - sbo: "SBO:0000627" @@ -83756,7 +83265,6 @@ - s_1267: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_orn_e" - sbo: "SBO:0000627" @@ -83768,7 +83276,6 @@ - s_1272: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "OAAt" - metanetx.reaction: "MNXR102100" @@ -83781,7 +83288,6 @@ - s_1272: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_oaa_e" - kegg.reaction: "R00363" @@ -83809,7 +83315,6 @@ - s_1623: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "TRDOXtp" - metanetx.reaction: "MNXR104921" @@ -83822,7 +83327,6 @@ - s_1277: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_o2_e" - sbo: "SBO:0000627" @@ -83833,7 +83337,6 @@ - s_1288: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_hdca_e" - sbo: "SBO:0000627" @@ -83844,7 +83347,6 @@ - s_1295: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_hdcea_e" - sbo: "SBO:0000627" @@ -83856,7 +83358,6 @@ - s_1303: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PMTCOAFABP1tc" - metanetx.reaction: "MNXR103046" @@ -83870,7 +83371,6 @@ - s_1308: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PAN4Ptm" - metanetx.reaction: "MNXR102344" @@ -83887,7 +83387,6 @@ - s_1308: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PTPATim" - kegg.reaction: "R03035" @@ -83902,7 +83401,6 @@ - s_0391: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PAPt" - metanetx.reaction: "MNXR102382" @@ -83915,7 +83413,6 @@ - s_1309: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pectin_e" - sbo: "SBO:0000627" @@ -83926,7 +83423,6 @@ - s_1317: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pheac_e" - sbo: "SBO:0000627" @@ -83937,7 +83433,6 @@ - s_1319: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pacald_e" - sbo: "SBO:0000627" @@ -83949,7 +83444,6 @@ - s_1319: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PACALDt" - metanetx.reaction: "MNXR102312" @@ -83963,7 +83457,6 @@ - s_1320: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PACALDtm" - metanetx.reaction: "MNXR102312" @@ -83977,7 +83470,6 @@ - s_1034: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR102637" - sbo: "SBO:0000655" @@ -83989,7 +83481,6 @@ - s_1324: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pi_e" - sbo: "SBO:0000627" @@ -84013,7 +83504,6 @@ - s_1374: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_k_e" - sbo: "SBO:0000627" @@ -84025,7 +83515,6 @@ - s_1385: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PPPG9tm" - metanetx.reaction: "MNXR103127" @@ -84039,7 +83528,6 @@ - s_1387: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PRPPtm" - metanetx.reaction: "MNXR103216" @@ -84052,7 +83540,6 @@ - s_1390: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ptrc_e" - sbo: "SBO:0000627" @@ -84085,7 +83572,6 @@ - s_1395: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PYDAMK" - kegg.reaction: "R02493" @@ -84102,7 +83588,6 @@ - s_1395: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "HYPOE" - kegg.reaction: "R02494" @@ -84116,7 +83601,6 @@ - s_1397: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pydxn_e" - sbo: "SBO:0000627" @@ -84130,7 +83614,6 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PMDPHT" - kegg.reaction: "R07280" @@ -84147,7 +83630,6 @@ - s_1556: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PYNP2r" - kegg.reaction: "R01876" @@ -84162,7 +83644,6 @@ - s_0636: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PPItm" - metanetx.reaction: "MNXR103112" @@ -84175,7 +83656,6 @@ - s_1400: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pyr_e" - sbo: "SBO:0000627" @@ -84187,7 +83667,6 @@ - s_1404: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "QULNtm" - metanetx.reaction: "MNXR103401" @@ -84201,7 +83680,6 @@ - s_1619: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "TRDRDtp" - sbo: "SBO:0000655" @@ -84213,7 +83691,6 @@ - s_1406: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ribflv_e" - sbo: "SBO:0000627" @@ -84225,7 +83702,6 @@ - s_1407: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "RIBFLVtm" - metanetx.reaction: "MNXR104033" @@ -84267,7 +83743,6 @@ - s_1415: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "AHCYStm" - metanetx.reaction: "MNXR95626" @@ -84280,7 +83755,6 @@ - s_1418: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_amet_e" - sbo: "SBO:0000627" @@ -84291,7 +83765,6 @@ - s_1425: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_mmet_e" - sbo: "SBO:0000627" @@ -84316,7 +83789,6 @@ - s_1435: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_g3pc_e" - sbo: "SBO:0000627" @@ -84327,7 +83799,6 @@ - s_1438: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_na1_e" - sbo: "SBO:0000627" @@ -84342,7 +83813,6 @@ - s_1439: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "SPMDAT1" - metanetx.reaction: "MNXR104491" @@ -84355,7 +83825,6 @@ - s_1440: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_spmd_e" - sbo: "SBO:0000627" @@ -84366,7 +83835,6 @@ - s_1443: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_sprm_e" - sbo: "SBO:0000627" @@ -84378,7 +83846,6 @@ - s_1448: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "SQLter" - metanetx.reaction: "MNXR104530" @@ -84392,7 +83859,6 @@ - s_0038: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "SQ23EPXter" - metanetx.reaction: "MNXR104505" @@ -84405,7 +83871,6 @@ - s_1450: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ocdca_e" - sbo: "SBO:0000627" @@ -84416,7 +83881,6 @@ - s_1459: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_succ_e" - sbo: "SBO:0000627" @@ -84428,7 +83892,6 @@ - s_1459: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "SUCCt" - metanetx.reaction: "MNXR104619" @@ -84441,7 +83904,6 @@ - s_1466: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_sucr_e" - sbo: "SBO:0000627" @@ -84452,7 +83914,6 @@ - s_1468: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_so4_e" - sbo: "SBO:0000627" @@ -84463,7 +83924,6 @@ - s_1470: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_so3_e" - metanetx.reaction: "MNXR122251" @@ -84475,7 +83935,6 @@ - s_1472: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_taur_e" - sbo: "SBO:0000627" @@ -84487,7 +83946,6 @@ - s_1480: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137463" - sbo: "SBO:0000655" @@ -84520,7 +83978,6 @@ - s_1489: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "TMN" - kegg.reaction: "R02133" @@ -84534,7 +83991,6 @@ - s_1476: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_thmpp_e" - sbo: "SBO:0000627" @@ -84545,7 +84001,6 @@ - s_1490: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_thm_e" - sbo: "SBO:0000627" @@ -84556,7 +84011,6 @@ - s_1498: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_thmmp_e" - sbo: "SBO:0000627" @@ -84570,7 +84024,6 @@ - s_1497: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "TMPK" - kegg.reaction: "R00617" @@ -84595,7 +84048,6 @@ - s_1408: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "THZPSN2_SC" - metanetx.reaction: "MNXR104860" @@ -84619,7 +84071,6 @@ - s_1399: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "THZPSN1_SC" - metanetx.reaction: "MNXR104859" @@ -84646,7 +84097,6 @@ - s_1494: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_thymd_e" - sbo: "SBO:0000627" @@ -84661,7 +84111,6 @@ - s_1493: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "TMDK1" - kegg.reaction: "R01567" @@ -84676,7 +84125,6 @@ - s_1494: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "THYMDt1" - metanetx.reaction: "MNXR104821" @@ -84690,7 +84138,6 @@ - s_1522: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR104933" - sbo: "SBO:0000655" @@ -84703,7 +84150,6 @@ - s_1050: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR104949" - sbo: "SBO:0000655" @@ -84715,7 +84161,6 @@ - s_1530: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ind3eth_e" - sbo: "SBO:0000627" @@ -84727,7 +84172,6 @@ - s_1530: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "IND3ETHt" - metanetx.reaction: "MNXR100834" @@ -84741,7 +84185,6 @@ - s_1531: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "IND3ETHtm" - metanetx.reaction: "MNXR100834" @@ -84755,7 +84198,6 @@ - s_1053: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "r1078" - metanetx.reaction: "MNXR105002" @@ -84769,7 +84211,6 @@ - s_1054: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR105002" - sbo: "SBO:0000655" @@ -84782,7 +84223,6 @@ - s_1548: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "UMPtn" - metanetx.reaction: "MNXR105127" @@ -84795,7 +84235,6 @@ - s_1551: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ura_e" - sbo: "SBO:0000627" @@ -84806,7 +84245,6 @@ - s_1553: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_urea_e" - sbo: "SBO:0000627" @@ -84817,7 +84255,6 @@ - s_1557: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_uri_e" - sbo: "SBO:0000627" @@ -84829,7 +84266,6 @@ - s_1058: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "VALt5m" - metanetx.reaction: "MNXR105190" @@ -84857,7 +84293,6 @@ - s_0806: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "H2Otg" - metanetx.reaction: "MNXR98641" @@ -84871,7 +84306,6 @@ - s_0807: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "H2Otm" - metanetx.reaction: "MNXR98641" @@ -84885,7 +84319,6 @@ - s_0808: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "H2Otn" - metanetx.reaction: "MNXR98641" @@ -84899,7 +84332,6 @@ - s_0809: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "H2Otp" - metanetx.reaction: "MNXR98641" @@ -84913,7 +84345,6 @@ - s_0810: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "H2Otv" - metanetx.reaction: "MNXR98641" @@ -84926,7 +84357,6 @@ - s_0805: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_h2o_e" - sbo: "SBO:0000627" @@ -84938,7 +84368,6 @@ - s_0358: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "XANt" - metanetx.reaction: "MNXR105226" @@ -84951,7 +84380,6 @@ - s_1564: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_xtsn_e" - sbo: "SBO:0000627" @@ -84963,7 +84391,6 @@ - s_1564: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "XTSNtr" - metanetx.reaction: "MNXR105247" @@ -84976,7 +84403,6 @@ - s_1567: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_xylt_e" - sbo: "SBO:0000627" @@ -85001,7 +84427,6 @@ - s_1571: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_zymst_e" - sbo: "SBO:0000627" @@ -85027,7 +84452,6 @@ - s_3747: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - pubmed: "18687109" - sbo: "SBO:0000395" @@ -85039,7 +84463,6 @@ - s_0450: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - objective_coefficient: 1 - annotation: !!omap - metanetx.reaction: "MNXR137261" @@ -85053,7 +84476,6 @@ - s_0531: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - kegg.reaction: "R00197" - metanetx.reaction: "MNXR138960" @@ -85068,7 +84490,6 @@ - s_0799: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "Htm" - metanetx.reaction: "MNXR100765" @@ -85082,7 +84503,6 @@ - s_2766: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -85093,7 +84513,6 @@ - s_2766: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137169" - sbo: "SBO:0000655" @@ -85105,7 +84524,6 @@ - s_2768: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -85116,7 +84534,6 @@ - s_2768: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR97951" - sbo: "SBO:0000655" @@ -85129,7 +84546,6 @@ - s_1250: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "OCTAt" - metanetx.reaction: "MNXR99126" @@ -85143,7 +84559,6 @@ - s_0597: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DCATDc" - metanetx.reaction: "MNXR135772" @@ -85157,7 +84572,6 @@ - s_1067: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "r2444" - metanetx.reaction: "MNXR135773" @@ -85170,7 +84584,6 @@ - s_2822: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_but_e" - sbo: "SBO:0000627" @@ -85181,7 +84594,6 @@ - s_2824: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_hxa_e" - sbo: "SBO:0000627" @@ -85192,7 +84604,6 @@ - s_2826: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ocdcea_e" - sbo: "SBO:0000627" @@ -85231,7 +84642,6 @@ - s_2826: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "OCDCEAt" - metanetx.reaction: "MNXR99110" @@ -85244,7 +84654,6 @@ - s_1163: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ttdca_e" - sbo: "SBO:0000627" @@ -85256,7 +84665,6 @@ - s_2882: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -85268,7 +84676,6 @@ - s_2883: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "HXAt2" - metanetx.reaction: "MNXR100750" @@ -85297,7 +84704,6 @@ - s_3321: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85311,7 +84717,6 @@ - s_3322: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85325,7 +84730,6 @@ - s_3321: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85339,7 +84743,6 @@ - s_3322: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85353,7 +84756,6 @@ - s_3321: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85367,7 +84769,6 @@ - s_3322: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85381,7 +84782,6 @@ - s_3321: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85395,7 +84795,6 @@ - s_3322: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85410,7 +84809,6 @@ - s_3624: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85425,7 +84823,6 @@ - s_3625: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85440,7 +84837,6 @@ - s_3626: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85455,7 +84851,6 @@ - s_3627: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85470,7 +84865,6 @@ - s_3628: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85485,7 +84879,6 @@ - s_3629: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85500,7 +84893,6 @@ - s_3630: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85515,7 +84907,6 @@ - s_3631: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85530,7 +84921,6 @@ - s_3616: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85545,7 +84935,6 @@ - s_3617: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85560,7 +84949,6 @@ - s_3618: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85575,7 +84963,6 @@ - s_3619: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85590,7 +84977,6 @@ - s_3620: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85605,7 +84991,6 @@ - s_3621: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85620,7 +85005,6 @@ - s_3622: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85635,7 +85019,6 @@ - s_3623: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 0 @@ -85647,7 +85030,6 @@ - s_2832: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR135773" - sbo: "SBO:0000655" @@ -85660,7 +85042,6 @@ - s_2835: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR128297" - sbo: "SBO:0000655" @@ -85673,7 +85054,6 @@ - s_2836: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" @@ -85686,7 +85066,6 @@ - s_2837: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -85698,7 +85077,6 @@ - s_2838: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" @@ -85711,7 +85089,6 @@ - s_2839: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" @@ -85724,7 +85101,6 @@ - s_2782: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -85736,7 +85112,6 @@ - s_2781: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -85748,7 +85123,6 @@ - s_2787: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -85760,7 +85134,6 @@ - s_2789: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR103046" - sbo: "SBO:0000655" @@ -85773,7 +85146,6 @@ - s_2877: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -85785,7 +85157,6 @@ - s_2791: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR104598" - sbo: "SBO:0000655" @@ -85798,7 +85169,6 @@ - s_2821: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR128426" - sbo: "SBO:0000655" @@ -85811,7 +85181,6 @@ - s_2878: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -85823,7 +85192,6 @@ - s_2880: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -85835,7 +85203,6 @@ - s_2797: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137463" - sbo: "SBO:0000655" @@ -85848,7 +85215,6 @@ - s_2816: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR124347" - sbo: "SBO:0000655" @@ -85861,7 +85227,6 @@ - s_2783: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" @@ -85887,7 +85252,6 @@ - s_2784: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" @@ -85900,7 +85264,6 @@ - s_2785: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96815" - sbo: "SBO:0000655" @@ -85913,7 +85276,6 @@ - s_2799: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101894" - sbo: "SBO:0000655" @@ -85926,7 +85288,6 @@ - s_2800: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101896" - sbo: "SBO:0000655" @@ -85939,7 +85300,6 @@ - s_2817: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR102090" - sbo: "SBO:0000655" @@ -85952,7 +85312,6 @@ - s_2818: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101881" - sbo: "SBO:0000655" @@ -85965,7 +85324,6 @@ - s_2820: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101900" - sbo: "SBO:0000655" @@ -85978,7 +85336,6 @@ - s_2934: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100308" - sbo: "SBO:0000655" @@ -85991,7 +85348,6 @@ - s_2939: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR97366" - sbo: "SBO:0000655" @@ -86004,7 +85360,6 @@ - s_2834: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR103112" - sbo: "SBO:0000655" @@ -86017,7 +85372,6 @@ - s_2966: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" @@ -86030,7 +85384,6 @@ - s_3083: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96946" - sbo: "SBO:0000655" @@ -86043,7 +85396,6 @@ - s_3215: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96562" - sbo: "SBO:0000655" @@ -86056,7 +85408,6 @@ - s_3108: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96806" - sbo: "SBO:0000655" @@ -86069,7 +85420,6 @@ - s_3216: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86081,7 +85431,6 @@ - s_3217: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR105436" - sbo: "SBO:0000655" @@ -86094,7 +85443,6 @@ - s_2831: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" @@ -86107,7 +85455,6 @@ - s_2833: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95830" - sbo: "SBO:0000655" @@ -86133,7 +85480,6 @@ - s_3117: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100848" - sbo: "SBO:0000655" @@ -86146,7 +85492,6 @@ - s_3182: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95809" - sbo: "SBO:0000655" @@ -86159,7 +85504,6 @@ - s_3183: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95626" - sbo: "SBO:0000655" @@ -86172,7 +85516,6 @@ - s_3432: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR97944" - sbo: "SBO:0000655" @@ -86185,7 +85528,6 @@ - s_3435: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99529" - sbo: "SBO:0000655" @@ -86198,7 +85540,6 @@ - s_3438: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101014" - sbo: "SBO:0000655" @@ -86211,7 +85552,6 @@ - s_3441: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR97950" - sbo: "SBO:0000655" @@ -86224,7 +85564,6 @@ - s_3444: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR105285" - sbo: "SBO:0000655" @@ -86237,7 +85576,6 @@ - s_3497: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86249,7 +85587,6 @@ - s_3500: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86261,7 +85598,6 @@ - s_3502: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86273,7 +85609,6 @@ - s_3504: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86285,7 +85620,6 @@ - s_3506: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86297,7 +85631,6 @@ - s_3508: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86309,7 +85642,6 @@ - s_3510: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86321,7 +85653,6 @@ - s_3512: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86333,7 +85664,6 @@ - s_3545: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86345,7 +85675,6 @@ - s_3547: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86357,7 +85686,6 @@ - s_3549: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86369,7 +85697,6 @@ - s_3551: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86381,7 +85708,6 @@ - s_3553: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86393,7 +85719,6 @@ - s_3555: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86405,7 +85730,6 @@ - s_3557: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86417,7 +85741,6 @@ - s_3559: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86429,7 +85752,6 @@ - s_3447: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99874" - sbo: "SBO:0000655" @@ -86442,7 +85764,6 @@ - s_2846: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" @@ -86455,7 +85776,6 @@ - s_2848: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86467,7 +85787,6 @@ - s_2850: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" @@ -86480,7 +85799,6 @@ - s_2852: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" @@ -86493,7 +85811,6 @@ - s_2843: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86505,7 +85822,6 @@ - s_2845: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86517,7 +85833,6 @@ - s_2847: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR103046" - sbo: "SBO:0000655" @@ -86530,7 +85845,6 @@ - s_2877: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86542,7 +85856,6 @@ - s_2851: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR104598" - sbo: "SBO:0000655" @@ -86555,7 +85868,6 @@ - s_2853: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR128426" - sbo: "SBO:0000655" @@ -86568,7 +85880,6 @@ - s_0769: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100308" - sbo: "SBO:0000655" @@ -86581,7 +85892,6 @@ - s_0631: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR97366" - sbo: "SBO:0000655" @@ -86594,7 +85904,6 @@ - s_2952: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101894" - sbo: "SBO:0000655" @@ -86607,7 +85916,6 @@ - s_2953: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101896" - sbo: "SBO:0000655" @@ -86620,7 +85928,6 @@ - s_2840: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" @@ -86633,7 +85940,6 @@ - s_2842: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95830" - sbo: "SBO:0000655" @@ -86646,7 +85952,6 @@ - s_0635: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR103112" - sbo: "SBO:0000655" @@ -86659,7 +85964,6 @@ - s_3497: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86671,7 +85975,6 @@ - s_3500: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86683,7 +85986,6 @@ - s_3502: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86695,7 +85997,6 @@ - s_3504: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86707,7 +86008,6 @@ - s_3506: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86719,7 +86019,6 @@ - s_3508: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86731,7 +86030,6 @@ - s_3510: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86743,7 +86041,6 @@ - s_3512: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86755,7 +86052,6 @@ - s_3657: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" @@ -86768,7 +86064,6 @@ - s_3684: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100343" - sbo: "SBO:0000655" @@ -86781,7 +86076,6 @@ - s_2880: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86793,7 +86087,6 @@ - s_2874: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137463" - sbo: "SBO:0000655" @@ -86806,7 +86099,6 @@ - s_2876: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR124347" - sbo: "SBO:0000655" @@ -86819,7 +86111,6 @@ - s_2856: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" @@ -86832,7 +86123,6 @@ - s_3324: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" @@ -86845,7 +86135,6 @@ - s_0794: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" @@ -86910,7 +86199,6 @@ - s_3463: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" @@ -86923,7 +86211,6 @@ - s_3451: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86935,7 +86222,6 @@ - s_3464: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" @@ -86948,7 +86234,6 @@ - s_3459: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" @@ -86961,7 +86246,6 @@ - s_2878: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86973,7 +86257,6 @@ - s_2880: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -86985,7 +86268,6 @@ - s_2865: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137463" - sbo: "SBO:0000655" @@ -86998,7 +86280,6 @@ - s_2867: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR124347" - sbo: "SBO:0000655" @@ -87011,7 +86292,6 @@ - s_3496: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87023,7 +86303,6 @@ - s_3499: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87035,7 +86314,6 @@ - s_3501: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87047,7 +86325,6 @@ - s_3503: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87059,7 +86336,6 @@ - s_3505: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87071,7 +86347,6 @@ - s_3507: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87083,7 +86358,6 @@ - s_3509: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87095,7 +86369,6 @@ - s_3511: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87107,7 +86380,6 @@ - s_3576: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87119,7 +86391,6 @@ - s_3577: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87131,7 +86402,6 @@ - s_3578: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87143,7 +86413,6 @@ - s_3579: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87155,7 +86424,6 @@ - s_3580: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87167,7 +86435,6 @@ - s_3581: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87179,7 +86446,6 @@ - s_3582: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87191,7 +86457,6 @@ - s_3583: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87203,7 +86468,6 @@ - s_3496: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87215,7 +86479,6 @@ - s_3499: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87227,7 +86490,6 @@ - s_3501: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87239,7 +86501,6 @@ - s_3503: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87251,7 +86512,6 @@ - s_3505: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87263,7 +86523,6 @@ - s_3507: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87275,7 +86534,6 @@ - s_3509: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87287,7 +86545,6 @@ - s_3511: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87299,7 +86556,6 @@ - s_3513: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87311,7 +86567,6 @@ - s_3514: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87323,7 +86578,6 @@ - s_3515: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87335,7 +86589,6 @@ - s_3516: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87347,7 +86600,6 @@ - s_3517: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87359,7 +86611,6 @@ - s_3518: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87371,7 +86622,6 @@ - s_3519: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87383,7 +86633,6 @@ - s_3520: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87395,7 +86644,6 @@ - s_2976: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" @@ -87421,7 +86669,6 @@ - s_3164: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" @@ -87434,7 +86681,6 @@ - s_3341: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" @@ -87447,7 +86693,6 @@ - s_3342: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" @@ -87460,7 +86705,6 @@ - s_3165: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" @@ -87473,7 +86717,6 @@ - s_3600: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87485,7 +86728,6 @@ - s_3601: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87497,7 +86739,6 @@ - s_3602: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87509,7 +86750,6 @@ - s_3603: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87521,7 +86761,6 @@ - s_3604: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87533,7 +86772,6 @@ - s_3605: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87545,7 +86783,6 @@ - s_3606: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87557,7 +86794,6 @@ - s_3607: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87569,7 +86805,6 @@ - s_2994: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" @@ -87582,7 +86817,6 @@ - s_2995: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" @@ -87595,7 +86829,6 @@ - s_3146: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" @@ -87608,7 +86841,6 @@ - s_3147: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" @@ -87621,7 +86853,6 @@ - s_3359: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96140" - sbo: "SBO:0000655" @@ -87634,7 +86865,6 @@ - s_3360: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95484" - sbo: "SBO:0000655" @@ -87647,7 +86877,6 @@ - s_3226: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR98641" - sbo: "SBO:0000655" @@ -87660,7 +86889,6 @@ - s_3129: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96810" - sbo: "SBO:0000655" @@ -87673,7 +86901,6 @@ - s_3320: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87685,7 +86912,6 @@ - s_3322: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR128426" - sbo: "SBO:0000655" @@ -87698,7 +86924,6 @@ - s_3521: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87710,7 +86935,6 @@ - s_3522: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87722,7 +86946,6 @@ - s_3523: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87734,7 +86957,6 @@ - s_3524: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87746,7 +86968,6 @@ - s_3525: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87758,7 +86979,6 @@ - s_3526: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87770,7 +86990,6 @@ - s_3271: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99101" - sbo: "SBO:0000655" @@ -87783,7 +87002,6 @@ - s_3277: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99109" - sbo: "SBO:0000655" @@ -87809,7 +87027,6 @@ - s_2841: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR135773" - sbo: "SBO:0000655" @@ -87822,7 +87039,6 @@ - s_2844: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR128297" - sbo: "SBO:0000655" @@ -87835,7 +87051,6 @@ - s_2873: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR128298" - sbo: "SBO:0000655" @@ -87848,7 +87063,6 @@ - s_2875: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR136128" - sbo: "SBO:0000655" @@ -87861,7 +87075,6 @@ - s_3044: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87873,7 +87086,6 @@ - s_3059: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87885,7 +87097,6 @@ - s_3067: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87897,7 +87108,6 @@ - s_3075: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87909,7 +87119,6 @@ - s_3048: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87921,7 +87130,6 @@ - s_3061: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87933,7 +87141,6 @@ - s_3069: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87945,7 +87152,6 @@ - s_3077: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87957,7 +87163,6 @@ - s_3052: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87969,7 +87174,6 @@ - s_3063: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87981,7 +87185,6 @@ - s_3071: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -87993,7 +87196,6 @@ - s_3079: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88005,7 +87207,6 @@ - s_3056: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88017,7 +87218,6 @@ - s_3065: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88029,7 +87229,6 @@ - s_3073: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88041,7 +87240,6 @@ - s_3081: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88053,7 +87251,6 @@ - s_3046: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88065,7 +87262,6 @@ - s_3060: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88077,7 +87273,6 @@ - s_3068: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88089,7 +87284,6 @@ - s_3076: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88101,7 +87295,6 @@ - s_3050: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88113,7 +87306,6 @@ - s_3062: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88125,7 +87317,6 @@ - s_3070: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88137,7 +87328,6 @@ - s_3078: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88149,7 +87339,6 @@ - s_3054: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88161,7 +87350,6 @@ - s_3064: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88173,7 +87361,6 @@ - s_3072: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88185,7 +87372,6 @@ - s_3080: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88197,7 +87383,6 @@ - s_3058: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88209,7 +87394,6 @@ - s_3066: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88221,7 +87405,6 @@ - s_3074: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88233,7 +87416,6 @@ - s_3082: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88245,7 +87427,6 @@ - s_3660: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR97944" - sbo: "SBO:0000655" @@ -88258,7 +87439,6 @@ - s_3435: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99529" - sbo: "SBO:0000655" @@ -88271,7 +87451,6 @@ - s_3665: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101014" - sbo: "SBO:0000655" @@ -88284,7 +87463,6 @@ - s_3444: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR105285" - sbo: "SBO:0000655" @@ -88297,7 +87475,6 @@ - s_3656: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88309,7 +87486,6 @@ - s_3658: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88321,7 +87497,6 @@ - s_3659: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88333,7 +87508,6 @@ - s_3661: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88345,7 +87519,6 @@ - s_3662: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88357,7 +87530,6 @@ - s_3663: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88369,7 +87541,6 @@ - s_3664: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88381,7 +87552,6 @@ - s_3666: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88393,7 +87563,6 @@ - s_3667: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88405,7 +87574,6 @@ - s_3668: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88417,7 +87585,6 @@ - s_3693: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88429,7 +87596,6 @@ - s_3695: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88441,7 +87607,6 @@ - s_3697: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88453,7 +87618,6 @@ - s_3699: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88465,7 +87629,6 @@ - s_3701: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88477,7 +87640,6 @@ - s_3702: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88489,7 +87651,6 @@ - s_3703: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88501,7 +87662,6 @@ - s_3704: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88513,7 +87673,6 @@ - s_3705: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88525,7 +87684,6 @@ - s_3706: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88537,7 +87695,6 @@ - s_3707: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88549,7 +87706,6 @@ - s_3708: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88561,7 +87717,6 @@ - s_3686: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88573,7 +87728,6 @@ - s_3688: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88585,7 +87739,6 @@ - s_3690: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88597,7 +87750,6 @@ - s_3692: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88609,7 +87761,6 @@ - s_3694: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88621,7 +87772,6 @@ - s_3696: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88633,7 +87783,6 @@ - s_3698: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88645,7 +87794,6 @@ - s_3700: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88657,7 +87805,6 @@ - s_3685: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88669,7 +87816,6 @@ - s_3687: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88681,7 +87827,6 @@ - s_3689: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88693,7 +87838,6 @@ - s_3691: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88705,7 +87849,6 @@ - s_2962: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88717,7 +87860,6 @@ - s_2963: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88729,7 +87871,6 @@ - s_2964: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88741,7 +87882,6 @@ - s_2965: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88753,7 +87893,6 @@ - s_3092: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88765,7 +87904,6 @@ - s_3097: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88777,7 +87915,6 @@ - s_3099: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88789,7 +87926,6 @@ - s_3101: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88801,7 +87937,6 @@ - s_3103: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88813,7 +87948,6 @@ - s_3105: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88825,7 +87959,6 @@ - s_3128: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88837,7 +87970,6 @@ - s_3131: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88849,7 +87981,6 @@ - s_3133: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88861,7 +87992,6 @@ - s_3135: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88873,7 +88003,6 @@ - s_3137: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88885,7 +88014,6 @@ - s_3139: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88897,7 +88025,6 @@ - s_3141: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88909,7 +88036,6 @@ - s_3143: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88921,7 +88047,6 @@ - s_3181: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88933,7 +88058,6 @@ - s_3185: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88945,7 +88069,6 @@ - s_3187: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88957,7 +88080,6 @@ - s_3189: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88969,7 +88091,6 @@ - s_3191: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88981,7 +88102,6 @@ - s_3193: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -88993,7 +88113,6 @@ - s_3195: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89005,7 +88124,6 @@ - s_3197: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89017,7 +88135,6 @@ - s_3296: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89029,7 +88146,6 @@ - s_3298: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89041,7 +88157,6 @@ - s_3300: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89053,7 +88168,6 @@ - s_3302: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89065,7 +88179,6 @@ - s_3304: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89077,7 +88190,6 @@ - s_3305: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89089,7 +88201,6 @@ - s_3306: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89101,7 +88212,6 @@ - s_3307: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89113,7 +88223,6 @@ - s_2996: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89125,7 +88234,6 @@ - s_3000: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89137,7 +88245,6 @@ - s_3004: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89149,7 +88256,6 @@ - s_3008: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89161,7 +88267,6 @@ - s_2998: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89173,7 +88278,6 @@ - s_3002: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89185,7 +88289,6 @@ - s_3006: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89197,7 +88300,6 @@ - s_3010: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89209,7 +88311,6 @@ - s_2993: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89221,7 +88322,6 @@ - s_2999: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89233,7 +88333,6 @@ - s_3003: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89245,7 +88344,6 @@ - s_3007: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89257,7 +88355,6 @@ - s_2997: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89269,7 +88366,6 @@ - s_3001: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89281,7 +88377,6 @@ - s_3005: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89293,7 +88388,6 @@ - s_3009: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89305,7 +88399,6 @@ - s_3358: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89317,7 +88410,6 @@ - s_3362: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89329,7 +88421,6 @@ - s_3364: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89341,7 +88432,6 @@ - s_3366: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89353,7 +88443,6 @@ - s_3368: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89365,7 +88454,6 @@ - s_3370: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89377,7 +88465,6 @@ - s_3372: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89389,7 +88476,6 @@ - s_3374: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89593,7 +88679,6 @@ - s_2975: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89605,7 +88690,6 @@ - s_2981: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89617,7 +88701,6 @@ - s_2985: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89629,7 +88712,6 @@ - s_2989: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89641,7 +88723,6 @@ - s_2979: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89653,7 +88734,6 @@ - s_2983: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89665,7 +88745,6 @@ - s_2987: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89677,7 +88756,6 @@ - s_2991: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89689,7 +88767,6 @@ - s_3340: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89701,7 +88778,6 @@ - s_3344: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89713,7 +88789,6 @@ - s_3346: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89725,7 +88800,6 @@ - s_3348: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89737,7 +88811,6 @@ - s_3350: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89749,7 +88822,6 @@ - s_3352: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89761,7 +88833,6 @@ - s_3354: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89773,7 +88844,6 @@ - s_3356: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89785,7 +88855,6 @@ - s_3163: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89797,7 +88866,6 @@ - s_3167: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89809,7 +88877,6 @@ - s_3169: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89821,7 +88888,6 @@ - s_3171: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89833,7 +88899,6 @@ - s_3173: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89845,7 +88910,6 @@ - s_3175: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89857,7 +88921,6 @@ - s_3177: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89869,7 +88932,6 @@ - s_3179: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89881,7 +88943,6 @@ - s_3181: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89893,7 +88954,6 @@ - s_3185: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89905,7 +88965,6 @@ - s_3187: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89917,7 +88976,6 @@ - s_3189: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89929,7 +88987,6 @@ - s_3191: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89941,7 +88998,6 @@ - s_3193: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89953,7 +89009,6 @@ - s_3195: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89965,7 +89020,6 @@ - s_3197: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89977,7 +89031,6 @@ - s_3560: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -89989,7 +89042,6 @@ - s_3561: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90001,7 +89053,6 @@ - s_3562: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90013,7 +89064,6 @@ - s_3563: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90025,7 +89075,6 @@ - s_3564: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90037,7 +89086,6 @@ - s_3565: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90049,7 +89097,6 @@ - s_3566: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90061,7 +89108,6 @@ - s_3567: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90073,7 +89119,6 @@ - s_3323: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90085,7 +89130,6 @@ - s_3326: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90097,7 +89141,6 @@ - s_3328: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90109,7 +89152,6 @@ - s_3330: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90121,7 +89163,6 @@ - s_3332: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90133,7 +89174,6 @@ - s_3334: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90145,7 +89185,6 @@ - s_3336: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90157,7 +89196,6 @@ - s_3338: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90169,7 +89207,6 @@ - s_3448: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90181,7 +89218,6 @@ - s_3452: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90193,7 +89229,6 @@ - s_3454: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90205,7 +89240,6 @@ - s_3456: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90217,7 +89251,6 @@ - s_3458: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90229,7 +89262,6 @@ - s_3460: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90241,7 +89273,6 @@ - s_3461: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90253,7 +89284,6 @@ - s_3462: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90457,7 +89487,6 @@ - s_2869: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR128298" - sbo: "SBO:0000655" @@ -90470,7 +89499,6 @@ - s_2870: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR136128" - sbo: "SBO:0000655" @@ -90483,7 +89511,6 @@ - s_3527: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90495,7 +89522,6 @@ - s_3528: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90507,7 +89533,6 @@ - s_3529: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90519,7 +89544,6 @@ - s_3530: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90531,7 +89555,6 @@ - s_3531: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90543,7 +89566,6 @@ - s_3532: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90555,7 +89577,6 @@ - s_3533: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90567,7 +89588,6 @@ - s_3534: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90579,7 +89599,6 @@ - s_3584: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90591,7 +89610,6 @@ - s_3585: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90603,7 +89621,6 @@ - s_3586: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90615,7 +89632,6 @@ - s_3587: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90627,7 +89643,6 @@ - s_3588: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90639,7 +89654,6 @@ - s_3589: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90651,7 +89665,6 @@ - s_3590: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90663,7 +89676,6 @@ - s_3591: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90675,7 +89687,6 @@ - s_3608: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90687,7 +89698,6 @@ - s_3609: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90699,7 +89709,6 @@ - s_3610: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90711,7 +89720,6 @@ - s_3611: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90723,7 +89731,6 @@ - s_3612: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90735,7 +89742,6 @@ - s_3613: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90747,7 +89753,6 @@ - s_3614: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90759,7 +89764,6 @@ - s_3615: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90771,7 +89775,6 @@ - s_3669: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90783,7 +89786,6 @@ - s_3670: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90795,7 +89797,6 @@ - s_3376: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90807,7 +89808,6 @@ - s_3378: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90819,7 +89819,6 @@ - s_3380: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90831,7 +89830,6 @@ - s_3382: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90843,7 +89841,6 @@ - s_3384: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90855,7 +89852,6 @@ - s_3386: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90867,7 +89863,6 @@ - s_3388: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90879,7 +89874,6 @@ - s_3390: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90891,7 +89885,6 @@ - s_2869: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR128298" - sbo: "SBO:0000655" @@ -90904,7 +89897,6 @@ - s_2870: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR136128" - sbo: "SBO:0000655" @@ -90917,7 +89909,6 @@ - s_3441: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR97950" - sbo: "SBO:0000655" @@ -90930,7 +89921,6 @@ - s_2966: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR102871" - sbo: "SBO:0000655" @@ -90943,7 +89933,6 @@ - s_3568: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90955,7 +89944,6 @@ - s_3569: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90967,7 +89955,6 @@ - s_3570: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90979,7 +89966,6 @@ - s_3571: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -90991,7 +89977,6 @@ - s_3572: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91003,7 +89988,6 @@ - s_3573: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91015,7 +89999,6 @@ - s_3574: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91027,7 +90010,6 @@ - s_3575: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91039,7 +90021,6 @@ - s_3592: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91051,7 +90032,6 @@ - s_3593: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91063,7 +90043,6 @@ - s_3594: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91075,7 +90054,6 @@ - s_3595: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91087,7 +90065,6 @@ - s_3596: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91099,7 +90076,6 @@ - s_3597: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91111,7 +90087,6 @@ - s_3598: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91123,7 +90098,6 @@ - s_3599: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91135,7 +90109,6 @@ - s_3094: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100765" - sbo: "SBO:0000655" @@ -91148,7 +90121,6 @@ - s_3218: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100308" - sbo: "SBO:0000655" @@ -91200,7 +90172,6 @@ - s_3095: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR103112" - sbo: "SBO:0000655" @@ -91213,7 +90184,6 @@ - s_3709: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -91225,7 +90195,6 @@ - s_3710: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR103315" - sbo: "SBO:0000655" @@ -91238,7 +90207,6 @@ - s_3711: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR102406" - sbo: "SBO:0000655" @@ -91251,7 +90219,6 @@ - s_3712: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR102505" - sbo: "SBO:0000655" @@ -91264,7 +90231,6 @@ - s_3713: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR104713" - sbo: "SBO:0000655" @@ -91277,7 +90243,6 @@ - s_3714: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 0 @@ -91288,7 +90253,6 @@ - s_3715: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_raffin_e" - sbo: "SBO:0000627" @@ -91299,7 +90263,6 @@ - s_3716: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_melib_e" - sbo: "SBO:0000627" @@ -91322,7 +90285,6 @@ - s_4206: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000629" - confidence_score: 1 @@ -91337,7 +90299,6 @@ - s_1322: 1 - lower_bound: 0.7 - upper_bound: 0.7 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ATPM" - sbo: "SBO:0000630" @@ -91389,7 +90350,6 @@ - s_3717: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91405,7 +90365,6 @@ - s_3718: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91420,7 +90379,6 @@ - s_3719: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91435,7 +90393,6 @@ - s_3720: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91447,7 +90404,6 @@ - s_3722: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -91459,7 +90415,6 @@ - s_3723: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -91471,7 +90426,6 @@ - s_3724: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -91483,7 +90437,6 @@ - s_3725: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -91495,7 +90448,6 @@ - s_3727: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -91507,7 +90459,6 @@ - s_3729: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -91519,7 +90470,6 @@ - s_3731: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -91531,7 +90481,6 @@ - s_3733: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -91543,7 +90492,6 @@ - s_3735: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -91555,7 +90503,6 @@ - s_3737: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -91567,7 +90514,6 @@ - s_3739: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -91578,7 +90524,6 @@ - s_3746: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000632" - !!omap @@ -91596,7 +90541,6 @@ - s_3746: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91607,7 +90551,6 @@ - s_3747: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000632" - !!omap @@ -91621,7 +90564,6 @@ - s_3747: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91635,7 +90577,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91649,7 +90590,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91663,7 +90603,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91677,7 +90616,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91691,7 +90629,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91705,7 +90642,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91719,7 +90655,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91733,7 +90668,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91747,7 +90681,6 @@ - s_3744: 0.36864392 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91761,7 +90694,6 @@ - s_3745: 0.39669768 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91774,7 +90706,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91787,7 +90718,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91800,7 +90730,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91813,7 +90742,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91827,7 +90755,6 @@ - s_3741: 0.254413 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91841,7 +90768,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91854,7 +90780,6 @@ - s_3741: 0.508826 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91868,7 +90793,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91882,7 +90806,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91896,7 +90819,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91910,7 +90832,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91923,7 +90844,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91937,7 +90857,6 @@ - s_3741: 0.254413 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91951,7 +90870,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91964,7 +90882,6 @@ - s_3741: 0.508826 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91978,7 +90895,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -91992,7 +90908,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92006,7 +90921,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92020,7 +90934,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92033,7 +90946,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92046,7 +90958,6 @@ - s_3741: 0.254413 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92059,7 +90970,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92073,7 +90983,6 @@ - s_3741: 0.254413 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92086,7 +90995,6 @@ - s_3741: 0.508826 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92100,7 +91008,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92114,7 +91021,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92128,7 +91034,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92142,7 +91047,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92156,7 +91060,6 @@ - s_3741: 0.508826 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92170,7 +91073,6 @@ - s_3741: 0.763239 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92185,7 +91087,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92200,7 +91101,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92215,7 +91115,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92230,7 +91129,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92244,7 +91142,6 @@ - s_3741: 0.763239 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92257,7 +91154,6 @@ - s_3741: 1.017652 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92271,7 +91167,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92285,7 +91180,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92300,7 +91194,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92314,7 +91207,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92329,7 +91221,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92343,7 +91234,6 @@ - s_3742: 0.28448264 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92357,7 +91247,6 @@ - s_3742: 0.56896528 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92372,7 +91261,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92388,7 +91276,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92403,7 +91290,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92418,7 +91304,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92432,7 +91317,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92447,7 +91331,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92461,7 +91344,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92476,7 +91358,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92490,7 +91371,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92505,7 +91385,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92520,7 +91399,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92536,7 +91414,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92551,7 +91428,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92565,7 +91441,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92580,7 +91455,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92595,7 +91469,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92609,7 +91482,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92624,7 +91496,6 @@ - s_3743: 0.28246676 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92638,7 +91509,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92653,7 +91523,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92667,7 +91536,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92682,7 +91550,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92696,7 +91563,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92711,7 +91577,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92725,7 +91590,6 @@ - s_3743: 0.84740028 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92739,7 +91603,6 @@ - s_3743: 0.84740028 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92753,7 +91616,6 @@ - s_3743: 0.84740028 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92768,7 +91630,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92782,7 +91643,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92797,7 +91657,6 @@ - s_3743: 0.56493352 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92811,7 +91670,6 @@ - s_3743: 0.84740028 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92825,7 +91683,6 @@ - s_3743: 0.84740028 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -92839,7 +91696,6 @@ - s_3743: 0.84740028 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -96053,7 +94909,6 @@ - s_4063: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100319" - sbo: "SBO:0000655" @@ -96068,7 +94923,6 @@ - s_4062: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.19" - annotation: !!omap - bigg.reaction: "G2PP" @@ -96086,7 +94940,6 @@ - s_4065: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR136678" - sbo: "SBO:0000655" @@ -96101,7 +94954,6 @@ - s_4064: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.-" - annotation: !!omap - metanetx.reaction: "MNXR103332" @@ -96117,7 +94969,6 @@ - s_4066: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.-" - annotation: !!omap - metanetx.reaction: "MNXR118732" @@ -96133,7 +94984,6 @@ - s_4067: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -96147,7 +94997,6 @@ - s_4068: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.6" - annotation: !!omap - bigg.reaction: "3NUCLE4" @@ -96165,7 +95014,6 @@ - s_4069: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "3GMPt6" - sbo: "SBO:0000655" @@ -96180,7 +95028,6 @@ - s_4071: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2PGLYCt6" - metanetx.reaction: "MNXR94822" @@ -96196,7 +95043,6 @@ - s_4071: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.18" - annotation: !!omap - bigg.reaction: "PGLYCP" @@ -96214,7 +95060,6 @@ - s_4073: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.-" - annotation: !!omap - metanetx.reaction: "MNXR118734" @@ -96228,7 +95073,6 @@ - s_4075: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -96242,7 +95086,6 @@ - s_4076: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "1.13.11.19" - annotation: !!omap - kegg.reaction: "R02467" @@ -96261,7 +95104,6 @@ - s_4076: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "1.8.1.3" - annotation: !!omap - kegg.reaction: "R01681" @@ -96278,7 +95120,6 @@ - s_4079: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "2.6.1.42" - annotation: !!omap - bigg.reaction: "RE2034C" @@ -96296,7 +95137,6 @@ - s_4080: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -96310,7 +95150,6 @@ - s_4081: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.-" - annotation: !!omap - metanetx.reaction: "MNXR118730" @@ -96326,7 +95165,6 @@ - s_4082: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR136675" - sbo: "SBO:0000655" @@ -96341,7 +95179,6 @@ - s_4083: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.6" - annotation: !!omap - bigg.reaction: "3NUCLE2" @@ -96359,7 +95196,6 @@ - s_4084: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "3UMPt6" - metanetx.reaction: "MNXR94982" @@ -96390,7 +95226,6 @@ - s_4087: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.4.13.18" - annotation: !!omap - metanetx.reaction: "MNXR123343" @@ -96405,7 +95240,6 @@ - s_4089: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - kegg.reaction: "R07420" - metanetx.reaction: "MNXR111061" @@ -96421,7 +95255,6 @@ - s_4090: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -96435,7 +95268,6 @@ - s_4091: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -96450,7 +95282,6 @@ - s_4092: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "2.7.3.3" - annotation: !!omap - bigg.reaction: "ARGKr" @@ -96468,7 +95299,6 @@ - s_4093: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ARGPt6" - metanetx.reaction: "MNXR95947" @@ -96484,7 +95314,6 @@ - s_4096: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR104998" - sbo: "SBO:0000176" @@ -96499,7 +95328,6 @@ - s_4099: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR135003" - sbo: "SBO:0000655" @@ -96514,7 +95342,6 @@ - s_4100: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.-" - annotation: !!omap - metanetx.reaction: "MNXR118731" @@ -96530,7 +95357,6 @@ - s_4101: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR135010" - sbo: "SBO:0000655" @@ -96545,7 +95371,6 @@ - s_4102: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.4.37" - annotation: !!omap - metanetx.reaction: "MNXR117327" @@ -96561,7 +95386,6 @@ - s_4103: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR136674" - sbo: "SBO:0000655" @@ -96577,7 +95401,6 @@ - s_4104: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.13.1.-" - annotation: !!omap - kegg.reaction: "R00863" @@ -96594,7 +95417,6 @@ - s_4105: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137086" - sbo: "SBO:0000655" @@ -96609,7 +95431,6 @@ - s_4106: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.6" - annotation: !!omap - bigg.reaction: "3NUCLE1" @@ -96625,7 +95446,6 @@ - s_4107: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR94857" - sbo: "SBO:0000655" @@ -96640,7 +95460,6 @@ - s_4108: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.2.1.20" - annotation: !!omap - metanetx.reaction: "MNXR130717" @@ -96656,7 +95475,6 @@ - s_4109: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PALAt2" - metanetx.reaction: "MNXR102339" @@ -96673,7 +95491,6 @@ - s_4110: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR103637" - sbo: "SBO:0000176" @@ -96688,7 +95505,6 @@ - s_4111: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137052" - sbo: "SBO:0000655" @@ -96703,7 +95519,6 @@ - s_4113: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "1.8.2.2" - annotation: !!omap - kegg.reaction: "R00029" @@ -96718,7 +95533,6 @@ - s_4114: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR104796" - sbo: "SBO:0000655" @@ -96734,7 +95548,6 @@ - s_4117: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: - "1.1.1.-" - "1.1.1.69" @@ -96754,7 +95567,6 @@ - s_4118: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95066" - sbo: "SBO:0000655" @@ -96769,7 +95581,6 @@ - s_4121: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.4.13.18" - annotation: !!omap - metanetx.reaction: "MNXR123344" @@ -96800,7 +95611,6 @@ - s_4126: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.4.37" - annotation: !!omap - metanetx.reaction: "MNXR117326" @@ -96816,7 +95626,6 @@ - s_4127: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR136673" - sbo: "SBO:0000655" @@ -96831,7 +95640,6 @@ - s_4123: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.2.1.21" - annotation: !!omap - metanetx.reaction: "MNXR142673" @@ -96845,7 +95653,6 @@ - s_4124: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "MEOHt2" - metanetx.reaction: "MNXR101464" @@ -96861,7 +95668,6 @@ - s_4125: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR144815" - sbo: "SBO:0000655" @@ -96877,7 +95683,6 @@ - s_4129: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "2.7.1.101" - annotation: !!omap - kegg.reaction: "R02927" @@ -96892,7 +95697,6 @@ - s_4129: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 1 @@ -96922,7 +95726,6 @@ - s_4132: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "6.2.1.16" - annotation: !!omap - bigg.reaction: "AACOAT" @@ -96940,7 +95743,6 @@ - s_4134: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.5.1.14" - annotation: !!omap - bigg.reaction: "RE2640C" @@ -96972,7 +95774,6 @@ - s_4039: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101006" - sbo: "SBO:0000655" @@ -96987,7 +95788,6 @@ - s_4140: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.2.1.20" - annotation: !!omap - bigg.reaction: "MLTG1e" @@ -97005,7 +95805,6 @@ - s_4042: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -97062,7 +95861,6 @@ - s_4049: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -97076,7 +95874,6 @@ - s_4078: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PSER_Dt6" - metanetx.reaction: "MNXR103244" @@ -97092,7 +95889,6 @@ - s_4077: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.3" - annotation: !!omap - bigg.reaction: "PSP_D" @@ -97125,7 +95921,6 @@ - s_4039: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.4.13.18" - annotation: !!omap - metanetx.reaction: "MNXR101011" @@ -97140,7 +95935,6 @@ - s_4136: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "4.1.3.13" - annotation: !!omap - kegg.reaction: "R00477" @@ -97159,7 +95953,6 @@ - s_4138: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "4.4.1.25" - annotation: !!omap - kegg.reaction: "R07634" @@ -97176,7 +95969,6 @@ - s_4094: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.4.37" - annotation: !!omap - metanetx.reaction: "MNXR117325" @@ -97192,7 +95984,6 @@ - s_4044: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.34" - annotation: !!omap - metanetx.reaction: "MNXR118741" @@ -97208,7 +95999,6 @@ - s_4036: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.4.13.18" - annotation: !!omap - metanetx.reaction: "MNXR123345" @@ -97224,7 +96014,6 @@ - s_4052: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.4.13.18" - annotation: !!omap - metanetx.reaction: "MNXR123347" @@ -97240,7 +96029,6 @@ - s_4043: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.4.13.18" - annotation: !!omap - metanetx.reaction: "MNXR123349" @@ -97256,7 +96044,6 @@ - s_4055: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.4.13.18" - annotation: !!omap - metanetx.reaction: "MNXR123350" @@ -97272,7 +96059,6 @@ - s_4058: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.4.13.18" - annotation: !!omap - metanetx.reaction: "MNXR123351" @@ -97288,7 +96074,6 @@ - s_4139: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR124424" - sbo: "SBO:0000655" @@ -97303,7 +96088,6 @@ - s_4131: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.2.1.20" - annotation: !!omap - metanetx.reaction: "MNXR130716" @@ -97319,7 +96103,6 @@ - s_4116: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137058" - sbo: "SBO:0000655" @@ -97334,7 +96117,6 @@ - s_4137: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137067" - sbo: "SBO:0000655" @@ -97349,7 +96131,6 @@ - s_4087: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137072" - sbo: "SBO:0000655" @@ -97379,7 +96160,6 @@ - s_4058: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137074" - sbo: "SBO:0000655" @@ -97394,7 +96174,6 @@ - s_4036: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137087" - sbo: "SBO:0000655" @@ -97409,7 +96188,6 @@ - s_4135: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137089" - sbo: "SBO:0000655" @@ -97424,7 +96202,6 @@ - s_4097: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137095" - sbo: "SBO:0000655" @@ -97454,7 +96231,6 @@ - s_4052: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137107" - sbo: "SBO:0000655" @@ -97469,7 +96245,6 @@ - s_4121: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137135" - sbo: "SBO:0000655" @@ -97488,7 +96263,6 @@ - s_4115: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "1.14.14.5" - annotation: !!omap - bigg.reaction: "FDMO" @@ -97503,7 +96277,6 @@ - s_4045: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -97515,7 +96288,6 @@ - s_4047: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -97545,7 +96317,6 @@ - s_4046: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 1 @@ -97573,7 +96344,6 @@ - s_4061: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -97587,7 +96357,6 @@ - s_4061: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.4.13.18" - annotation: !!omap - metanetx.reaction: "MNXR123352" @@ -97601,7 +96370,6 @@ - s_3758: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -97613,7 +96381,6 @@ - s_4043: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -97624,7 +96391,6 @@ - s_4074: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_cysam_e" - sbo: "SBO:0000627" @@ -97636,7 +96402,6 @@ - s_4095: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR94721" - sbo: "SBO:0000655" @@ -97651,7 +96416,6 @@ - s_4141: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "2PGt6" - metanetx.reaction: "MNXR94824" @@ -97667,7 +96431,6 @@ - s_4142: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "3PGt6" - metanetx.reaction: "MNXR94973" @@ -97681,7 +96444,6 @@ - s_4145: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99849" - sbo: "SBO:0000655" @@ -97694,7 +96456,6 @@ - s_4146: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR96488" - sbo: "SBO:0000655" @@ -97723,7 +96484,6 @@ - s_4144: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -97737,7 +96497,6 @@ - s_4147: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PSER_Lt6" - metanetx.reaction: "MNXR103245" @@ -97753,7 +96512,6 @@ - s_4148: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GMPt6" - metanetx.reaction: "MNXR100385" @@ -97767,7 +96525,6 @@ - s_4149: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101585" - sbo: "SBO:0000655" @@ -97780,7 +96537,6 @@ - s_4150: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99915" - sbo: "SBO:0000655" @@ -97793,7 +96549,6 @@ - s_4151: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR105127" - sbo: "SBO:0000655" @@ -97808,7 +96563,6 @@ - s_4152: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PEPt6" - metanetx.reaction: "MNXR102493" @@ -97822,7 +96576,6 @@ - s_4153: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101385" - sbo: "SBO:0000655" @@ -97852,7 +96605,6 @@ - s_4155: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "6PGCt6" - metanetx.reaction: "MNXR95102" @@ -97868,7 +96620,6 @@ - s_4156: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "MAN1Pt6" - metanetx.reaction: "MNXR101377" @@ -97884,7 +96635,6 @@ - s_4157: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR136667" - sbo: "SBO:0000655" @@ -97897,7 +96647,6 @@ - s_4158: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CHOLPtr" - metanetx.reaction: "MNXR96703" @@ -97911,7 +96660,6 @@ - s_4159: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "TSULt" - metanetx.reaction: "MNXR104966" @@ -97927,7 +96675,6 @@ - s_4160: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "AMPt6" - metanetx.reaction: "MNXR95831" @@ -97941,7 +96688,6 @@ - s_4161: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR94718" - sbo: "SBO:0000655" @@ -97956,7 +96702,6 @@ - s_4162: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR135007" - sbo: "SBO:0000655" @@ -97971,7 +96716,6 @@ - s_4163: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "CMPt6" - metanetx.reaction: "MNXR96805" @@ -97985,7 +96729,6 @@ - s_4164: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GAMt1r" - metanetx.reaction: "MNXR100035" @@ -98028,7 +96771,6 @@ - s_4167: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "DHAt" - metanetx.reaction: "MNXR97367" @@ -98058,7 +96800,6 @@ - s_4169: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -98087,7 +96828,6 @@ - s_4171: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137133" - sbo: "SBO:0000655" @@ -98100,7 +96840,6 @@ - s_4173: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ACGLUtd" - sbo: "SBO:0000655" @@ -98113,7 +96852,6 @@ - s_4173: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ACGLUtm" - sbo: "SBO:0000655" @@ -98128,7 +96866,6 @@ - s_4175: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "LPAMt" - metanetx.reaction: "MNXR137094" @@ -98142,7 +96879,6 @@ - s_4176: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101483" - sbo: "SBO:0000655" @@ -98157,7 +96893,6 @@ - s_4055: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 1 @@ -98171,7 +96906,6 @@ - s_4074: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137130" - sbo: "SBO:0000655" @@ -98186,7 +96920,6 @@ - s_1467: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 1 @@ -98200,7 +96933,6 @@ - s_3759: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95704" - sbo: "SBO:0000655" @@ -98215,7 +96947,6 @@ - s_3839: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100368" - sbo: "SBO:0000655" @@ -98250,7 +96981,6 @@ - s_4177: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "1.13.11.27" - annotation: !!omap - bigg.reaction: "34HPPOR" @@ -98268,7 +96998,6 @@ - s_4178: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "1.13.11.5" - annotation: !!omap - bigg.reaction: "HGNTOR" @@ -98284,7 +97013,6 @@ - s_4179: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "5.2.1.2" - annotation: !!omap - bigg.reaction: "MACACI" @@ -98303,7 +97031,6 @@ - s_4179: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.7.1.2" - annotation: !!omap - bigg.reaction: "FUMAC" @@ -98322,7 +97049,6 @@ - s_4180: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "1.1.1.12" - annotation: !!omap - bigg.reaction: "ABTD" @@ -98341,7 +97067,6 @@ - s_4180: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "1.1.1.10" - annotation: !!omap - bigg.reaction: "XYLUR" @@ -98360,7 +97085,6 @@ - s_4181: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000176" - confidence_score: 1 @@ -98375,7 +97099,6 @@ - s_4181: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "1.1.1.11" - annotation: !!omap - bigg.reaction: "ABTDG" @@ -98403,7 +97126,6 @@ - s_4124: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_meoh_e" - metanetx.reaction: "MNXR101464" @@ -98418,7 +97140,6 @@ - s_1322: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.1.3.-" - annotation: !!omap - metanetx.reaction: "MNXR118733" @@ -98431,7 +97152,6 @@ - s_4170: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_L_alagly_e" - sbo: "SBO:0000627" @@ -98442,7 +97162,6 @@ - s_4137: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -98452,7 +97171,6 @@ - s_4109: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pala_e" - sbo: "SBO:0000627" @@ -98463,7 +97181,6 @@ - s_4118: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_5dglcn_e" - sbo: "SBO:0000627" @@ -98474,7 +97191,6 @@ - s_4130: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_tag__D_e" - sbo: "SBO:0000627" @@ -98485,7 +97201,6 @@ - s_4131: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -98495,7 +97210,6 @@ - s_4150: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_g6p_e" - sbo: "SBO:0000627" @@ -98506,7 +97220,6 @@ - s_4140: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_malttr_e" - sbo: "SBO:0000627" @@ -98517,7 +97230,6 @@ - s_4145: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_g1p_e" - sbo: "SBO:0000627" @@ -98528,7 +97240,6 @@ - s_4125: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_madg_e" - sbo: "SBO:0000627" @@ -98539,7 +97250,6 @@ - s_4164: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gam_e" - sbo: "SBO:0000627" @@ -98550,7 +97260,6 @@ - s_4167: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_dha_e" - sbo: "SBO:0000627" @@ -98561,7 +97270,6 @@ - s_4034: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ala_L_gln__L_e" - sbo: "SBO:0000627" @@ -98572,7 +97280,6 @@ - s_4168: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -98582,7 +97289,6 @@ - s_4056: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gly_gln__L_e" - sbo: "SBO:0000627" @@ -98593,7 +97299,6 @@ - s_4050: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ala_L_his__L_e" - sbo: "SBO:0000627" @@ -98604,7 +97309,6 @@ - s_4053: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gly_asn__L_e" - sbo: "SBO:0000627" @@ -98615,7 +97319,6 @@ - s_4037: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_LalaLglu_e" - sbo: "SBO:0000627" @@ -98626,7 +97329,6 @@ - s_4085: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gly_met__L_e" - sbo: "SBO:0000627" @@ -98637,7 +97339,6 @@ - s_4119: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ala_L_asp__L_e" - sbo: "SBO:0000627" @@ -98648,7 +97349,6 @@ - s_4059: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gly_glu__L_e" - sbo: "SBO:0000627" @@ -98659,7 +97359,6 @@ - s_4040: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ala_L_Thr__L_e" - sbo: "SBO:0000627" @@ -98670,7 +97369,6 @@ - s_4143: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_met_L_ala__L_e" - sbo: "SBO:0000627" @@ -98681,7 +97379,6 @@ - s_4166: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_citr__L_e" - sbo: "SBO:0000627" @@ -98692,7 +97389,6 @@ - s_4080: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_C02356_e" - sbo: "SBO:0000627" @@ -98703,7 +97399,6 @@ - s_4158: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_cholp_e" - sbo: "SBO:0000627" @@ -98714,7 +97409,6 @@ - s_4049: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -98724,7 +97418,6 @@ - s_4141: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_2pg_e" - sbo: "SBO:0000627" @@ -98735,7 +97428,6 @@ - s_4148: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_gmp_e" - sbo: "SBO:0000627" @@ -98746,7 +97438,6 @@ - s_4147: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pser__L_e" - sbo: "SBO:0000627" @@ -98757,7 +97448,6 @@ - s_4078: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pser__D_e" - sbo: "SBO:0000627" @@ -98768,7 +97458,6 @@ - s_4157: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ppi_e" - sbo: "SBO:0000627" @@ -98779,7 +97468,6 @@ - s_4099: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -98789,7 +97477,6 @@ - s_4152: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_pep_e" - sbo: "SBO:0000627" @@ -98800,7 +97487,6 @@ - s_4093: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_argp_e" - sbo: "SBO:0000627" @@ -98811,7 +97497,6 @@ - s_4146: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -98821,7 +97506,6 @@ - s_4154: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ethamp_e" - sbo: "SBO:0000627" @@ -98832,7 +97516,6 @@ - s_4075: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -98842,7 +97525,6 @@ - s_4067: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -98852,7 +97534,6 @@ - s_4063: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_glyc2p_e" - sbo: "SBO:0000627" @@ -98863,7 +97544,6 @@ - s_4069: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_3gmp_e" - sbo: "SBO:0000627" @@ -98874,7 +97554,6 @@ - s_4070: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_2pglyc_e" - sbo: "SBO:0000627" @@ -98885,7 +97564,6 @@ - s_4155: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_6pgc_e" - sbo: "SBO:0000627" @@ -98896,7 +97574,6 @@ - s_4153: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_man6p_e" - sbo: "SBO:0000627" @@ -98907,7 +97584,6 @@ - s_4095: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_23cgmp_e" - sbo: "SBO:0000627" @@ -98918,7 +97594,6 @@ - s_4097: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_tyrp_e" - sbo: "SBO:0000627" @@ -98929,7 +97604,6 @@ - s_4065: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_thrp_e" - sbo: "SBO:0000627" @@ -98940,7 +97614,6 @@ - s_4142: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_3pg_e" - sbo: "SBO:0000627" @@ -98951,7 +97624,6 @@ - s_4162: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -98961,7 +97633,6 @@ - s_4107: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_3amp_e" - sbo: "SBO:0000627" @@ -98972,7 +97643,6 @@ - s_4161: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_23camp_e" - sbo: "SBO:0000627" @@ -98983,7 +97653,6 @@ - s_4156: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_man1p_e" - sbo: "SBO:0000627" @@ -98994,7 +97663,6 @@ - s_4160: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_amp_e" - sbo: "SBO:0000627" @@ -99005,7 +97673,6 @@ - s_4135: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_C02712_e" - sbo: "SBO:0000627" @@ -99016,7 +97683,6 @@ - s_4176: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_metsox_S__L_e" - sbo: "SBO:0000627" @@ -99027,7 +97693,6 @@ - s_4105: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -99037,7 +97702,6 @@ - s_4111: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_CE1310_e" - sbo: "SBO:0000627" @@ -99048,7 +97712,6 @@ - s_4139: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_Lcyst_e" - sbo: "SBO:0000627" @@ -99059,7 +97722,6 @@ - s_4116: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_isetac_e" - sbo: "SBO:0000627" @@ -99070,7 +97732,6 @@ - s_4133: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_acac_e" - sbo: "SBO:0000627" @@ -99081,7 +97742,6 @@ - s_4172: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_acglu_e" - sbo: "SBO:0000627" @@ -99092,7 +97752,6 @@ - s_4151: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ump_e" - sbo: "SBO:0000627" @@ -99103,7 +97762,6 @@ - s_4163: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_cmp_e" - sbo: "SBO:0000627" @@ -99114,7 +97772,6 @@ - s_4047: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -99124,7 +97781,6 @@ - s_4045: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -99134,7 +97790,6 @@ - s_4101: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -99144,7 +97799,6 @@ - s_4082: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - !!omap @@ -99154,7 +97808,6 @@ - s_4084: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_3ump_e" - sbo: "SBO:0000627" @@ -99165,7 +97818,6 @@ - s_4127: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_23ccmp_e" - sbo: "SBO:0000627" @@ -99176,7 +97828,6 @@ - s_4103: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_23cump_e" - sbo: "SBO:0000627" @@ -99191,7 +97842,6 @@ - s_3875: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "2.7.1.12" - annotation: !!omap - kegg.reaction: "R01737" @@ -99208,7 +97858,6 @@ - s_3875: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: - "3.1.3.-" - "3.1.3.2" @@ -99226,7 +97875,6 @@ - s_4194: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - kegg.reaction: "R06790" - metanetx.reaction: "MNXR139469" @@ -99243,7 +97891,6 @@ - s_4195: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: - "3.1.1.-" - "3.1.1.2" @@ -99263,7 +97910,6 @@ - s_4182: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "1.1.1.95" - annotation: !!omap - kegg.reaction: "R08198" @@ -99282,7 +97928,6 @@ - s_4183: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR134240" - sbo: "SBO:0000176" @@ -99297,7 +97942,6 @@ - s_4184: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: - "2.6.1.19" - "2.6.1.55" @@ -99318,7 +97962,6 @@ - s_4184: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: - "1.2.1.-" - "1.2.1.18" @@ -99341,7 +97984,6 @@ - s_4184: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: - "1.2.1.-" - "1.2.1.18" @@ -99360,7 +98002,6 @@ - s_4184: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: - "4.1.1.-" - "4.2.1.155" @@ -99380,7 +98021,6 @@ - s_4186: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "1.1.1.86" - annotation: !!omap - kegg.reaction: "R04440" @@ -99396,7 +98036,6 @@ - s_4208: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - kegg.reaction: "R01209" - metanetx.reaction: "MNXR106867" @@ -99413,7 +98052,6 @@ - s_4187: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR137279" - sbo: "SBO:0000176" @@ -99428,7 +98066,6 @@ - s_4188: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "2.2.1.6" - annotation: !!omap - bigg.reaction: "ACLS" @@ -99447,7 +98084,6 @@ - s_4188: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: - "1.1.1.383" - "1.1.1.86" @@ -99468,7 +98104,6 @@ - s_4189: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: - "1.1.1.-" - "1.1.1.85" @@ -99490,7 +98125,6 @@ - s_4189: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "2.3.3.-" - annotation: !!omap - metanetx.reaction: "MNXR121603" @@ -99507,7 +98141,6 @@ - s_4191: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: - "3.1.2.-" - "3.1.2.2" @@ -99529,7 +98162,6 @@ - s_4191: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "6.2.1.3" - annotation: !!omap - bigg.reaction: "FACOAL1821" @@ -99546,7 +98178,6 @@ - s_4193: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "3.2.1.22" - annotation: !!omap - bigg.reaction: "STACHGALACT" @@ -99563,7 +98194,6 @@ - s_4193: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "2.4.1.-" - annotation: !!omap - metanetx.reaction: "MNXR122225" @@ -99667,7 +98297,6 @@ - s_4200: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_cl_e" - sbo: "SBO:0000627" @@ -99678,7 +98307,6 @@ - s_4201: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_cu2_e" - sbo: "SBO:0000627" @@ -99689,7 +98317,6 @@ - s_4202: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_mn2_e" - sbo: "SBO:0000627" @@ -99700,7 +98327,6 @@ - s_4203: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_zn2_e" - sbo: "SBO:0000627" @@ -99711,7 +98337,6 @@ - s_4204: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_mg2_e" - sbo: "SBO:0000627" @@ -99732,7 +98357,6 @@ - s_4205: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -99753,7 +98377,6 @@ - s_4206: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000395" - confidence_score: 1 @@ -99764,7 +98387,6 @@ - s_4199: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "EX_ca2_e" - sbo: "SBO:0000627" @@ -99778,7 +98400,6 @@ - s_0801: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR94845" - sbo: "SBO:0000655" @@ -99791,7 +98412,6 @@ - s_0363: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR95431" - sbo: "SBO:0000655" @@ -99804,7 +98424,6 @@ - s_3761: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ADPRIBt" - metanetx.reaction: "MNXR95481" @@ -99818,7 +98437,6 @@ - s_0692: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99646" - sbo: "SBO:0000655" @@ -99833,7 +98451,6 @@ - s_1221: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101858" - sbo: "SBO:0000655" @@ -99848,7 +98465,6 @@ - s_1240: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR135002" - sbo: "SBO:0000655" @@ -99861,7 +98477,6 @@ - s_1325: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "PItg" - metanetx.reaction: "MNXR102871" @@ -99880,7 +98495,6 @@ - s_4183: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "r2499" - metanetx.reaction: "MNXR106312" @@ -99894,7 +98508,6 @@ - s_1539: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "UDPtg" - metanetx.reaction: "MNXR105076" @@ -99908,7 +98521,6 @@ - s_1540: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "UDPtg" - metanetx.reaction: "MNXR105076" @@ -99922,7 +98534,6 @@ - s_1546: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR105127" - sbo: "SBO:0000655" @@ -99935,7 +98546,6 @@ - s_1622: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR104921" - sbo: "SBO:0000655" @@ -99948,7 +98558,6 @@ - s_3677: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR99110" - sbo: "SBO:0000655" @@ -99963,7 +98572,6 @@ - s_3751: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ACTNt2r" - metanetx.reaction: "MNXR95426" @@ -99977,7 +98585,6 @@ - s_3755: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "GLNtm" - metanetx.reaction: "MNXR100259" @@ -99991,7 +98598,6 @@ - s_3781: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR105127" - sbo: "SBO:0000655" @@ -100004,7 +98610,6 @@ - s_3818: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "AMETtn" - metanetx.reaction: "MNXR95809" @@ -100018,7 +98623,6 @@ - s_3831: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100449" - sbo: "SBO:0000655" @@ -100033,7 +98637,6 @@ - s_3883: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "2.7.4.6" - annotation: !!omap - metanetx.reaction: "MNXR96123" @@ -100047,7 +98650,6 @@ - s_3898: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR101385" - sbo: "SBO:0000655" @@ -100060,7 +98662,6 @@ - s_3905: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - bigg.reaction: "ACSERtmi" - metanetx.reaction: "MNXR95416" @@ -100074,7 +98675,6 @@ - s_3906: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR100494" - sbo: "SBO:0000655" @@ -100089,7 +98689,6 @@ - s_3925: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR97002" - sbo: "SBO:0000655" @@ -100104,7 +98703,6 @@ - s_3987: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - eccodes: "2.7.4.6" - annotation: !!omap - metanetx.reaction: "MNXR96123" @@ -100118,7 +98716,6 @@ - s_4113: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR104966" - sbo: "SBO:0000655" @@ -100131,7 +98728,6 @@ - s_4011: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR104460" - sbo: "SBO:0000655" @@ -100144,7 +98740,6 @@ - s_4015: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR105071" - sbo: "SBO:0000655" @@ -100157,7 +98752,6 @@ - s_4025: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - metanetx.reaction: "MNXR105021" - sbo: "SBO:0000655" @@ -100250,7 +98844,6 @@ - s_4221: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100262,7 +98855,6 @@ - s_4222: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100274,7 +98866,6 @@ - s_4223: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100286,7 +98877,6 @@ - s_4224: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100298,7 +98888,6 @@ - s_4225: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100310,7 +98899,6 @@ - s_4226: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100322,7 +98910,6 @@ - s_4227: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100334,7 +98921,6 @@ - s_4228: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100346,7 +98932,6 @@ - s_4229: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100358,7 +98943,6 @@ - s_4230: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100369,7 +98953,6 @@ - s_4226: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -100380,7 +98963,6 @@ - s_4227: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -100391,7 +98973,6 @@ - s_4228: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -100402,7 +98983,6 @@ - s_4229: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -100413,7 +98993,6 @@ - s_4230: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -100441,7 +99020,6 @@ - s_4231: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100541,7 +99119,6 @@ - s_4235: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100553,7 +99130,6 @@ - s_4236: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100565,7 +99141,6 @@ - s_4237: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100576,7 +99151,6 @@ - s_4236: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -100587,7 +99161,6 @@ - s_4237: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -100687,7 +99260,6 @@ - s_4241: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100699,7 +99271,6 @@ - s_4242: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100711,7 +99282,6 @@ - s_4243: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100722,7 +99292,6 @@ - s_4242: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -100733,7 +99302,6 @@ - s_4243: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -100831,7 +99399,6 @@ - s_4247: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100843,7 +99410,6 @@ - s_4248: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100855,7 +99421,6 @@ - s_4249: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100866,7 +99431,6 @@ - s_4248: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -100877,7 +99441,6 @@ - s_4249: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -100949,7 +99512,6 @@ - s_4252: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100961,7 +99523,6 @@ - s_4215: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100973,7 +99534,6 @@ - s_4211: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100985,7 +99545,6 @@ - s_4213: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -100997,7 +99556,6 @@ - s_4219: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -101009,7 +99567,6 @@ - s_4251: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -101036,7 +99593,6 @@ - s_4255: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -101047,7 +99603,6 @@ - s_4255: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -101074,7 +99629,6 @@ - s_4257: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -101085,7 +99639,6 @@ - s_4257: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -101112,7 +99665,6 @@ - s_4259: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -101123,7 +99675,6 @@ - s_4259: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 @@ -101135,7 +99686,6 @@ - s_4261: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -101147,7 +99697,6 @@ - s_4262: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000655" - confidence_score: 2 @@ -101158,7 +99707,6 @@ - s_4262: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: "" - annotation: !!omap - sbo: "SBO:0000627" - confidence_score: 2 From 919d396719eb4aaa32d381d2d0ef13de29ed153e Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Thu, 24 Jun 2021 11:59:12 +0200 Subject: [PATCH 46/56] fix: rename model files to yeast-GEM --- .github/workflows/yaml-validation.yml | 2 +- README.md | 2 +- .../modelCuration/addiSce926changes.m | 2 +- code/increaseVersion.m | 14 ++++++------- code/io.py | 2 +- code/loadYeastModel.m | 2 +- code/missingFields/BiGGidsCompliance.ipynb | 10 +++++----- code/missingFields/GetMNXID.m | 2 +- code/modelTests/cobrapy-compliance.ipynb | 2 +- code/saveYeastModel.m | 10 +++++----- data/databases/BiGGrxnDictionary_newIDs.csv | 20 +++++++++---------- model/dependencies.txt | 2 +- model/{yeastGEM.txt => yeast-GEM.txt} | 0 model/{yeastGEM.xml => yeast-GEM.xml} | 2 +- model/{yeastGEM.yml => yeast-GEM.yml} | 4 ++-- 15 files changed, 38 insertions(+), 38 deletions(-) rename model/{yeastGEM.txt => yeast-GEM.txt} (100%) rename model/{yeastGEM.xml => yeast-GEM.xml} (99%) rename model/{yeastGEM.yml => yeast-GEM.yml} (99%) diff --git a/.github/workflows/yaml-validation.yml b/.github/workflows/yaml-validation.yml index 615895eb..4484e331 100644 --- a/.github/workflows/yaml-validation.yml +++ b/.github/workflows/yaml-validation.yml @@ -36,4 +36,4 @@ jobs: - name: Import with cobrapy run: | pip install -r requirements/ci-requirements.txt - python -c "import cobra ; cobra.io.load_yaml_model('model/yeastGEM.yml')" + python -c "import cobra ; cobra.io.load_yaml_model('model/yeast-GEM.yml')" diff --git a/README.md b/README.md index 8ed47a5a..99e9089d 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ This repository contains the current consensus genome-scale metabolic model of _ |:-------:|:--------------:|:---------:|:----------:|:-----:| |_Saccharomyces cerevisiae_|[Yeast 7.6](https://sourceforge.net/projects/yeast/)|4058|2742|1150| -**Last update:** 2021-06-15 +**Last update:** 2021-06-24 ## Installation diff --git a/code/deprecated/modelCuration/addiSce926changes.m b/code/deprecated/modelCuration/addiSce926changes.m index e9ef6436..e347b110 100644 --- a/code/deprecated/modelCuration/addiSce926changes.m +++ b/code/deprecated/modelCuration/addiSce926changes.m @@ -7,7 +7,7 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %Load model: -model = readCbModel('../../model/yeastGEM.xml'); +model = readCbModel('../../model/yeast-GEM.xml'); %Correct some gene relations based on isce926: fid = fopen('../../data/modelCuration/iSce926curatedGeneRules.tsv'); diff --git a/code/increaseVersion.m b/code/increaseVersion.m index 6dd39396..a39ab54a 100644 --- a/code/increaseVersion.m +++ b/code/increaseVersion.m @@ -20,7 +20,7 @@ function increaseVersion(bumpType) end %Bump version number: -oldModel = load('../model/yeastGEM.mat'); +oldModel = load('../model/yeast-GEM.mat'); oldVersion = oldModel.model.modelID; oldVersion = oldVersion(strfind(oldVersion,'_v')+2:end); oldVersion = str2double(strsplit(oldVersion,'.')); @@ -50,13 +50,13 @@ function increaseVersion(bumpType) %Load model: initCobraToolbox -model = readCbModel('../model/yeastGEM.xml'); +model = readCbModel('../model/yeast-GEM.xml'); %Include tag and save model: -model.modelID = ['yeastGEM_v' newVersion]; +model.modelID = ['yeast-GEM_v' newVersion]; saveYeastModel(model,false,false) %only save if model can grow -%Check if any file changed (except for history.md and 1 line in yeastGEM.xml): +%Check if any file changed (except for history.md and 1 line in yeast-GEM.xml): diff = git('diff --numstat'); diff = strsplit(diff,'\n'); change = false; @@ -64,7 +64,7 @@ function increaseVersion(bumpType) diff_i = strsplit(diff{i},'\t'); if length(diff_i) == 3 %.xml file: 1 line should be added & 1 line should be deleted - if strcmp(diff_i{3},'model/yeastGEM.xml') + if strcmp(diff_i{3},'model/yeast-GEM.xml') if eval([diff_i{1} ' > 1']) || eval([diff_i{2} ' > 1']) disp(['NOTE: File ' diff_i{3} ' is changing more than expected']) change = true; @@ -98,7 +98,7 @@ function increaseVersion(bumpType) delete('backup'); %Store model as .mat: -save('../model/yeastGEM.mat','model'); +save('../model/yeast-GEM.mat','model'); %Convert to RAVEN format and store model as .xlsx: model = ravenCobraWrapper(model); @@ -110,7 +110,7 @@ function increaseVersion(bumpType) model.annotation.email = 'bensan@chalmers.se'; model.annotation.organization = 'Chalmers University of Technology'; model.annotation.note = 'Saccharomyces cerevisiae - strain S288C'; -exportToExcelFormat(model,'../model/yeastGEM.xlsx'); +exportToExcelFormat(model,'../model/yeast-GEM.xlsx'); %Update version file: fid = fopen('../version.txt','wt'); diff --git a/code/io.py b/code/io.py index 656480db..34d79430 100644 --- a/code/io.py +++ b/code/io.py @@ -11,7 +11,7 @@ # find .env + define paths: dotenv_path = find_dotenv() REPO_PATH = dirname(dotenv_path) -MODEL_PATH = f"{REPO_PATH}/model/yeastGEM.xml" +MODEL_PATH = f"{REPO_PATH}/model/yeast-GEM.xml" def read_yeast_model(make_bigg_compliant=False): """Reads the SBML file of the yeast model using COBRA. diff --git a/code/loadYeastModel.m b/code/loadYeastModel.m index 2a43c0e5..f3720277 100644 --- a/code/loadYeastModel.m +++ b/code/loadYeastModel.m @@ -7,7 +7,7 @@ scriptFolder = fileparts(which(mfilename)); currentDir = cd(scriptFolder); -model = readCbModel('../model/yeastGEM.xml'); +model = readCbModel('../model/yeast-GEM.xml'); model = buildRxnGeneMat(model); cd(currentDir) diff --git a/code/missingFields/BiGGidsCompliance.ipynb b/code/missingFields/BiGGidsCompliance.ipynb index 5c76e88b..26e378fd 100644 --- a/code/missingFields/BiGGidsCompliance.ipynb +++ b/code/missingFields/BiGGidsCompliance.ipynb @@ -125,7 +125,7 @@ "\n", "# Create new BiGG ids compliant with lipid standards:\n", "import cobra\n", - "model = cobra.io.read_sbml_model(\"../../model/yeastGEM.xml\")\n", + "model = cobra.io.read_sbml_model(\"../../model/yeast-GEM.xml\")\n", "file_name = '../../data/databases/BiGGmetDictionary_newIDs.csv'\n", "new_file_name = file_name.replace(\".csv\",\"_new.csv\")\n", "with open(file_name) as old_file:\n", @@ -196,7 +196,7 @@ "source": [ "# Create new BiGG ids for SLIME rxns compliant with lipid standards:\n", "import cobra\n", - "model = cobra.io.read_sbml_model(\"../../model/yeastGEM.xml\")\n", + "model = cobra.io.read_sbml_model(\"../../model/yeast-GEM.xml\")\n", "file_name = '../../data/databases/BiGGrxnDictionary_newIDs.csv'\n", "new_file_name = file_name.replace(\".csv\",\"_new.csv\")\n", "with open(file_name) as old_file:\n", @@ -237,7 +237,7 @@ "source": [ "# Create new BiGG ids for exchange rxns:\n", "import cobra\n", - "model = cobra.io.read_sbml_model(\"../../model/yeastGEM.xml\")\n", + "model = cobra.io.read_sbml_model(\"../../model/yeast-GEM.xml\")\n", "file_name = '../../data/databases/BiGGrxnDictionary_newIDs.csv'\n", "new_file_name = file_name.replace(\".csv\",\"_new.csv\")\n", "with open(file_name) as old_file:\n", @@ -291,7 +291,7 @@ "\n", "# Create new BiGG ids for exchange rxns:\n", "import cobra\n", - "model = cobra.io.read_sbml_model(\"../../model/yeastGEM.xml\")\n", + "model = cobra.io.read_sbml_model(\"../../model/yeast-GEM.xml\")\n", "file_name = '../../data/databases/BiGGrxnDictionary_newIDs.csv'\n", "new_file_name = file_name.replace(\".csv\",\"_new.csv\")\n", "with open(file_name) as old_file:\n", @@ -341,7 +341,7 @@ "import csv\n", "from copy import copy\n", "from re import findall\n", - "model = cobra.io.read_sbml_model(\"../../model/yeastGEM.xml\")\n", + "model = cobra.io.read_sbml_model(\"../../model/yeast-GEM.xml\")\n", "file_name = '../../data/databases/BiGGrxnDictionary_newIDs.csv'\n", "new_file_name = file_name.replace(\".csv\",\"_new.csv\")\n", "with open(file_name) as old_file:\n", diff --git a/code/missingFields/GetMNXID.m b/code/missingFields/GetMNXID.m index 44c71464..a6bde14e 100644 --- a/code/missingFields/GetMNXID.m +++ b/code/missingFields/GetMNXID.m @@ -5,7 +5,7 @@ % HMR3, and the part 'Load MNXref data structure' is modified to read the reference data from RAVEN. % % model a model structure;please load yeast model using function 'loadYeastModel.m' from -% yeastGEM github repository. +% yeast-GEM github repository. % type type = 'mets' or 'rxns' % level level = 1:only compares MNXid FROM kegg and CHEBI % level =2 compares MNX from yeast7.6MNX model and CHEBI and KEGG diff --git a/code/modelTests/cobrapy-compliance.ipynb b/code/modelTests/cobrapy-compliance.ipynb index ae6e2e2b..8d299a07 100644 --- a/code/modelTests/cobrapy-compliance.ipynb +++ b/code/modelTests/cobrapy-compliance.ipynb @@ -25,7 +25,7 @@ ], "source": [ "import cobra\n", - "model = cobra.io.read_sbml_model(\"../../model/yeastGEM.xml\")" + "model = cobra.io.read_sbml_model(\"../../model/yeast-GEM.xml\")" ] }, { diff --git a/code/saveYeastModel.m b/code/saveYeastModel.m index 556f902e..07a9e26d 100644 --- a/code/saveYeastModel.m +++ b/code/saveYeastModel.m @@ -57,10 +57,10 @@ function saveYeastModel(model,upDATE,allowNoGrowth) checkGrowth(model,'anaerobic',allowNoGrowth) %Update .xml, .txt and .yml models: -copyfile('tempModel.xml','../model/yeastGEM.xml') +copyfile('tempModel.xml','../model/yeast-GEM.xml') delete('tempModel.xml'); -writeCbModel(model,'text','../model/yeastGEM.txt'); -exportForGit(model,'yeastGEM','../model',{'yml'},false,false); +writeCbModel(model,'text','../model/yeast-GEM.txt'); +exportForGit(model,'yeast-GEM','../model',{'yml'},false,false); %Detect boundary metabolites and save them in a .txt file: fid = fopen('../model/boundaryMets.txt','wt'); @@ -100,9 +100,9 @@ function saveYeastModel(model,upDATE,allowNoGrowth) %Convert notation "e-005" to "e-05 " in stoich. coeffs. to avoid %inconsistencies between Windows and MAC: -copyfile('../model/yeastGEM.xml','backup.xml') +copyfile('../model/yeast-GEM.xml','backup.xml') fin = fopen('backup.xml','r'); -fout = fopen('../model/yeastGEM.xml','w'); +fout = fopen('../model/yeast-GEM.xml','w'); still_reading = true; while still_reading inline = fgets(fin); diff --git a/data/databases/BiGGrxnDictionary_newIDs.csv b/data/databases/BiGGrxnDictionary_newIDs.csv index 49d4ca9c..e5527a33 100644 --- a/data/databases/BiGGrxnDictionary_newIDs.csv +++ b/data/databases/BiGGrxnDictionary_newIDs.csv @@ -1697,7 +1697,7 @@ r_2080,TREtv r_2082,TRP__Ltm r_2087,TYR__Ltx r_2107,ZYMSTtce -r_2108,BIOMASS_yeastGEM_LIP +r_2108,BIOMASS_yeast-GEM_LIP r_2111,GROWTH r_2125,COAtlp r_2134,EX_44mzym_e @@ -2191,11 +2191,11 @@ r_3996,PCHOL_CHOtrm r_4005,PE_HStrm r_4038,TAG_CHOtrm r_4040,HEMEAtm -r_4041,BIOMASS_yeastGEM -r_4047,BIOMASS_yeastGEM_PROT -r_4048,BIOMASS_yeastGEM_CARB -r_4049,BIOMASS_yeastGEM_RNA -r_4050,BIOMASS_yeastGEM_DNA +r_4041,BIOMASS_yeast-GEM +r_4047,BIOMASS_yeast-GEM_PROT +r_4048,BIOMASS_yeast-GEM_CARB +r_4049,BIOMASS_yeast-GEM_RNA +r_4050,BIOMASS_yeast-GEM_DNA r_4051,CERtg r_4052,MIP2Ctg r_4053,IPCtg @@ -2208,9 +2208,9 @@ r_4059,LPItrm r_4060,PGtmm r_4061,CLtmm r_4062,SINK_LIPBACK -r_4063,BIOMASS_yeastGEM_LIPBACK +r_4063,BIOMASS_yeast-GEM_LIPBACK r_4064,SINK_LIPCHAIN -r_4065,BIOMASS_yeastGEM_LIPCHAIN +r_4065,BIOMASS_yeast-GEM_LIPCHAIN r_4066,cer1_24SLIMEg r_4067,cer1_26SLIMEg r_4068,cer2_24SLIMEg @@ -2557,5 +2557,5 @@ r_4586,STASYN r_4587,CA2t3ec r_4589,CU2TRA r_4592,MGt2ec -r_4598,BIOMASS_yeastGEM_COFACTOR -r_4599,BIOMASS_yeastGEM_ION +r_4598,BIOMASS_yeast-GEM_COFACTOR +r_4599,BIOMASS_yeast-GEM_ION diff --git a/model/dependencies.txt b/model/dependencies.txt index 7cc62468..5e3c6be0 100644 --- a/model/dependencies.txt +++ b/model/dependencies.txt @@ -1,6 +1,6 @@ MATLAB 9.10.0.1602886 (R2021a) libSBML 5.17.0 -RAVEN_toolbox commit 3b821c2 +RAVEN_toolbox 2.5.1 COBRA_toolbox commit 25dbea4 SBML_level 3 SBML_version 1 diff --git a/model/yeastGEM.txt b/model/yeast-GEM.txt similarity index 100% rename from model/yeastGEM.txt rename to model/yeast-GEM.txt diff --git a/model/yeastGEM.xml b/model/yeast-GEM.xml similarity index 99% rename from model/yeastGEM.xml rename to model/yeast-GEM.xml index 85511034..426aee15 100644 --- a/model/yeastGEM.xml +++ b/model/yeast-GEM.xml @@ -1,6 +1,6 @@ - + diff --git a/model/yeastGEM.yml b/model/yeast-GEM.yml similarity index 99% rename from model/yeastGEM.yml rename to model/yeast-GEM.yml index 95d6364b..09811b61 100644 --- a/model/yeastGEM.yml +++ b/model/yeast-GEM.yml @@ -1,9 +1,9 @@ --- !!omap - metaData: - id: "yeastGEM_devel" + id: "yeast-GEM_devel" name: "The Consensus Genome-Scale Metabolic Model of Yeast" - date: "2021-06-15" + date: "2021-06-24" - metabolites: - !!omap - id: "s_0001" From 0ef8f3f6247d01d018e959aefcb97a8732cab54d Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Tue, 29 Jun 2021 13:40:41 +0200 Subject: [PATCH 47/56] Partial revert "fix: rename model files to yeast-GEM" This partially reverts commit 919d396719eb4aaa32d381d2d0ef13de29ed153e. Restores the model.id so it will not have the dash (so yeastGEM instead of yeast-GEM) --- code/increaseVersion.m | 2 +- model/{yeast-GEM.txt => yeastGEM.txt} | 0 model/{yeast-GEM.xml => yeastGEM.xml} | 2 +- model/{yeast-GEM.yml => yeastGEM.yml} | 4 ++-- 4 files changed, 4 insertions(+), 4 deletions(-) rename model/{yeast-GEM.txt => yeastGEM.txt} (100%) rename model/{yeast-GEM.xml => yeastGEM.xml} (99%) rename model/{yeast-GEM.yml => yeastGEM.yml} (99%) diff --git a/code/increaseVersion.m b/code/increaseVersion.m index a39ab54a..07200340 100644 --- a/code/increaseVersion.m +++ b/code/increaseVersion.m @@ -53,7 +53,7 @@ function increaseVersion(bumpType) model = readCbModel('../model/yeast-GEM.xml'); %Include tag and save model: -model.modelID = ['yeast-GEM_v' newVersion]; +model.modelID = ['yeastGEM_v' newVersion]; saveYeastModel(model,false,false) %only save if model can grow %Check if any file changed (except for history.md and 1 line in yeast-GEM.xml): diff --git a/model/yeast-GEM.txt b/model/yeastGEM.txt similarity index 100% rename from model/yeast-GEM.txt rename to model/yeastGEM.txt diff --git a/model/yeast-GEM.xml b/model/yeastGEM.xml similarity index 99% rename from model/yeast-GEM.xml rename to model/yeastGEM.xml index 426aee15..85511034 100644 --- a/model/yeast-GEM.xml +++ b/model/yeastGEM.xml @@ -1,6 +1,6 @@ - + diff --git a/model/yeast-GEM.yml b/model/yeastGEM.yml similarity index 99% rename from model/yeast-GEM.yml rename to model/yeastGEM.yml index 09811b61..95d6364b 100644 --- a/model/yeast-GEM.yml +++ b/model/yeastGEM.yml @@ -1,9 +1,9 @@ --- !!omap - metaData: - id: "yeast-GEM_devel" + id: "yeastGEM_devel" name: "The Consensus Genome-Scale Metabolic Model of Yeast" - date: "2021-06-24" + date: "2021-06-15" - metabolites: - !!omap - id: "s_0001" From aab4e8d7df74a80ce21a4936016754ebc62e205c Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Tue, 29 Jun 2021 13:51:03 +0200 Subject: [PATCH 48/56] fix: again rename model-files mistakingly reverted in last commit --- model/{yeastGEM.txt => yeast-GEM.txt} | 0 model/{yeastGEM.xml => yeast-GEM.xml} | 0 model/{yeastGEM.yml => yeast-GEM.yml} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename model/{yeastGEM.txt => yeast-GEM.txt} (100%) rename model/{yeastGEM.xml => yeast-GEM.xml} (100%) rename model/{yeastGEM.yml => yeast-GEM.yml} (100%) diff --git a/model/yeastGEM.txt b/model/yeast-GEM.txt similarity index 100% rename from model/yeastGEM.txt rename to model/yeast-GEM.txt diff --git a/model/yeastGEM.xml b/model/yeast-GEM.xml similarity index 100% rename from model/yeastGEM.xml rename to model/yeast-GEM.xml diff --git a/model/yeastGEM.yml b/model/yeast-GEM.yml similarity index 100% rename from model/yeastGEM.yml rename to model/yeast-GEM.yml From ddd61dc05aa4b45b1925f363f0dc23eae0301257 Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Tue, 29 Jun 2021 13:51:32 +0200 Subject: [PATCH 49/56] doc: replace email address Benjamin's email no longer active, replace with Eduard's --- .github/CODE_OF_CONDUCT.md | 2 +- code/increaseVersion.m | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md index 309f6d85..5a8a2d52 100644 --- a/.github/CODE_OF_CONDUCT.md +++ b/.github/CODE_OF_CONDUCT.md @@ -34,7 +34,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe ## Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at bensan@chalmers.se. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at eduardk@chalmers.se. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. diff --git a/code/increaseVersion.m b/code/increaseVersion.m index 07200340..35b36bdf 100644 --- a/code/increaseVersion.m +++ b/code/increaseVersion.m @@ -105,9 +105,9 @@ function increaseVersion(bumpType) model.annotation.defaultLB = -1000; model.annotation.defaultUB = +1000; model.annotation.taxonomy = 'taxonomy/559292'; -model.annotation.givenName = 'Benjamin'; -model.annotation.familyName = 'Sanchez'; -model.annotation.email = 'bensan@chalmers.se'; +model.annotation.givenName = 'Eduard'; +model.annotation.familyName = 'Kerkhoven'; +model.annotation.email = 'eduardk@chalmers.se'; model.annotation.organization = 'Chalmers University of Technology'; model.annotation.note = 'Saccharomyces cerevisiae - strain S288C'; exportToExcelFormat(model,'../model/yeast-GEM.xlsx'); From fdb54dc2597528966243c5bf51281dc971acd940 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Wed, 30 Jun 2021 17:14:32 +0200 Subject: [PATCH 50/56] refactor: rename ComplementaryScripts to code --- .github/workflows/memote-run.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/memote-run.yml b/.github/workflows/memote-run.yml index 54ef70b9..27571249 100644 --- a/.github/workflows/memote-run.yml +++ b/.github/workflows/memote-run.yml @@ -21,7 +21,7 @@ jobs: - name: Convert model run: | touch .env - python -c 'import ComplementaryScripts.io as io; model = io.read_yeast_model(make_bigg_compliant=True); io.write_yeast_model(model)' + python -c 'import code.io as io; model = io.read_yeast_model(make_bigg_compliant=True); io.write_yeast_model(model)' - name: Memote on PR run: | From 4dd4cf774948fc38381ee0991384c2135fd49d56 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Wed, 30 Jun 2021 17:24:23 +0200 Subject: [PATCH 51/56] refactor: update model path in memote config --- memote.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memote.ini b/memote.ini index d2a596d8..5760e21a 100644 --- a/memote.ini +++ b/memote.ini @@ -1,5 +1,5 @@ [memote] -model = ModelFiles/xml/yeastGEM.xml +model = model/yeast-GEM.xml location = sqlite:///results.db github_username = SysBioChalmers github_repository = yeast-GEM From 1d9c9eba5ae1f036d034a56d21fe429fa9997d50 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Thu, 1 Jul 2021 09:08:36 +0200 Subject: [PATCH 52/56] style: rename workflows --- .github/workflows/memote-history.yml | 6 +++--- .github/workflows/memote-run.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/memote-history.yml b/.github/workflows/memote-history.yml index 131ecd18..0393fd38 100644 --- a/.github/workflows/memote-history.yml +++ b/.github/workflows/memote-history.yml @@ -1,4 +1,4 @@ -name: Memote history +name: memote history on: push @@ -37,7 +37,7 @@ jobs: # - name: Convert model # run: | # touch .env - # python -c 'import ComplementaryScripts.io as io; model = io.read_yeast_model(make_bigg_compliant=True); io.write_yeast_model(model)' + # python -c 'import code.io as io; model = io.read_yeast_model(make_bigg_compliant=True); io.write_yeast_model(model)' - name: Memote short run run: | @@ -52,7 +52,7 @@ jobs: uses: stefanzweifel/git-auto-commit-action@v4.4.0 with: commit_user_name: memote-bot - commit_message: update memote history report + commit_message: "chore: update memote history report" file_pattern: ${{ steps.setup.outputs.history }} branch: ${{ steps.setup.outputs.deployment }} repository: ${{ steps.setup.outputs.other-repo }} diff --git a/.github/workflows/memote-run.yml b/.github/workflows/memote-run.yml index 27571249..2d0be14d 100644 --- a/.github/workflows/memote-run.yml +++ b/.github/workflows/memote-run.yml @@ -1,4 +1,4 @@ -name: Memote history +name: memote run on: pull_request From efa713a622827317bb2af8952d117660f4afcf9f Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Thu, 1 Jul 2021 15:49:07 +0200 Subject: [PATCH 53/56] chore: change branch names - master --> main - devel --> develop --- .github/CONTRIBUTING.md | 50 +++++++++---------- .github/issue_template.md | 4 +- .github/pull_request_template.md | 2 +- .github/workflows/yaml-validation.yml | 4 +- README.md | 6 +-- .../deprecated/otherChanges/convertYmn2FBC2.m | 2 +- code/increaseVersion.m | 12 ++--- code/missingFields/mapIDsViaMNXref.m | 8 +-- model/yeast-GEM.xml | 2 +- model/yeast-GEM.yml | 2 +- 10 files changed, 46 insertions(+), 46 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index cf8c85cf..ff3308e2 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -19,11 +19,11 @@ If you are unsure about the issue, consider asking first in our [Gitter chat roo When creating the issue, please make sure: * You tested your code (if any) with all requirements for running the model. -* You did your analysis in the `master` branch of the repository. +* You did your analysis in the `main` branch of the repository. * You provide any necessary files/links needed for understanding the issue. * You checked that a similar issue does not exist already -Feel free to also comment on any of the [open issues](https://github.com/SysBioChalmers/yeast-GEM/issues). When doing so, please comply with our [code of conduct](https://github.com/SysBioChalmers/yeast-GEM/blob/master/.github/CODE_OF_CONDUCT.md). +Feel free to also comment on any of the [open issues](https://github.com/SysBioChalmers/yeast-GEM/issues). When doing so, please comply with our [code of conduct](https://github.com/SysBioChalmers/yeast-GEM/blob/main/.github/CODE_OF_CONDUCT.md). Finally, if you like yeast-GEM please remember to 'star' our Github page (click on the star at top right corner), that way we also have an idea of who is using yeast-GEM! @@ -42,9 +42,9 @@ Here's how to set up yeast-GEM for local development to contribute smaller featu git clone https://github.com//yeast-GEM.git ``` -4. Check out the branch that you want to contribute to. Most likely that will be ``devel``: +4. Check out the branch that you want to contribute to. Most likely that will be ``develop``: ``` - git checkout devel + git checkout develop ``` 5. Create a branch for local development based on the previously checked out branch ([see below](#branching-model) for details on the branching model and how to name your branch): @@ -72,19 +72,19 @@ Here's how to set up yeast-GEM for local development to contribute smaller featu ``` [See below](#semantic-commits) for recommendations on how to name your commits. In case of larger updates, you can of course make several commits on a single contribution. However, if you need to do too many commits, consider if your contribution could be instead split into separate branches (making it easier for reviewing later). -8. Submit a pull request through the GitHub website (https://help.github.com/articles/creating-a-pull-request-from-a-fork/) to the `devel` branch of the original SysBioChalmers repo (not your fork). We recommend ticking the box "Allow edits from maintainers" if you wish for us to be able to contribute directly to your branch (speeding-up the reviewing process). +8. Submit a pull request through the GitHub website (https://help.github.com/articles/creating-a-pull-request-from-a-fork/) to the `develop` branch of the original SysBioChalmers repo (not your fork). We recommend ticking the box "Allow edits from maintainers" if you wish for us to be able to contribute directly to your branch (speeding-up the reviewing process). Note that steps 3, 4, 5 and 7 can be done, if you prefer, with any git client, such as [Github Desktop](https://desktop.github.com/). -Finally, and for larger features that you want to work on collaboratively, you may consider to first request to join our development team to get write access to the repository so that you can create a branch directly in the main repository (or simply ask the administrator to create a branch for you). Once you have a new branch, you can push your changes directly to the main repository and when finished, submit a pull request from that branch to ``devel``. [See below](#development-team-guidelines) for more details. +Finally, and for larger features that you want to work on collaboratively, you may consider to first request to join our development team to get write access to the repository so that you can create a branch directly in the main repository (or simply ask the administrator to create a branch for you). Once you have a new branch, you can push your changes directly to the main repository and when finished, submit a pull request from that branch to ``develop``. [See below](#development-team-guidelines) for more details. Thank you very much for contributing to yeast-GEM! #### Branching model -* `devel`: Is the branch all pull-requests should be based on. +* `develop`: Is the branch all pull-requests should be based on. -* `master`: Is only touched by the administrator and is the branch with the tested & reviewed model that is released or ready for the next release. +* `main`: Is only touched by the administrator and is the branch with the tested & reviewed model that is released or ready for the next release. * `gh-pages`: Is only touched by the administrator and for maintaining the [landing page](http://sysbiochalmers.github.io/yeast-GEM/) of yeast-GEM. @@ -126,7 +126,7 @@ Some examples: |Update documentation of function|`doc: addDBnewRxn.m`| |Update toolbox|`chore: update RAVEN version`| -More examples [here](https://github.com/SysBioChalmers/yeast-GEM/commits/master). A more detailed explanation or comments is encouraged to be left in the commit description. +More examples [here](https://github.com/SysBioChalmers/yeast-GEM/commits/main). A more detailed explanation or comments is encouraged to be left in the commit description. ## Development team guidelines @@ -134,7 +134,7 @@ This section is meant for the development team of yeast-GEM. As a member of the ### Creating pull requests -Changes to the model _cannot_ be directly committed to the `master` or `devel` branches (in fact they are protected). Commits are made to side-branches, after which pull requests are made for merging with `devel`. For this, follow the [instructions](#contributing-to-the-model) for contributors, but consider that as members of the development team have write access to the repository, you can create a branch directly in the main repository without needing to fork, for your convenience. This means that you can: +Changes to the model _cannot_ be directly committed to the `main` or `develop` branches (in fact they are protected). Commits are made to side-branches, after which pull requests are made for merging with `develop`. For this, follow the [instructions](#contributing-to-the-model) for contributors, but consider that as members of the development team have write access to the repository, you can create a branch directly in the main repository without needing to fork, for your convenience. This means that you can: * Skip step 2 of the contribution process. * In step 3 of the contribution process, clone directly the original repo: @@ -150,11 +150,11 @@ Follow all other steps in the same way. Also, when creating your pull request (o ### Reviewing pull requests Every pull request must be approved by at least one reviewer before it can be merged. When reviewing someone else's pull request, keep in mind the following aspects: -* **Compatibility:** First of all, make sure that the model is still compatible with the loading/saving wrappers (`loadYeastModel.m` & `saveYeastModel.m`) and that no errors appear. Check also that [`dependencies.txt`](https://github.com/SysBioChalmers/yeast-GEM/blob/master/model/dependencies.txt) does not change in any unexpected ways (e.g. an "unknown" toolbox version). Finally, ensure that the SBML fields `model metaid`, `model id` and `model name` never change, as if they change it would create a conflict in the next release. +* **Compatibility:** First of all, make sure that the model is still compatible with the loading/saving wrappers (`loadYeastModel.m` & `saveYeastModel.m`) and that no errors appear. Check also that [`dependencies.txt`](https://github.com/SysBioChalmers/yeast-GEM/blob/main/model/dependencies.txt) does not change in any unexpected ways (e.g. an "unknown" toolbox version). Finally, ensure that the SBML fields `model metaid`, `model id` and `model name` never change, as if they change it would create a conflict in the next release. * **Documentation:** Every change should be justified with a reference/link/argument. This can be provided as data in `/data`, or directly as a comment in the pull request. -* **Reproducibility:** If there are any added scripts, make sure that if you run them, the model gets updated from how it was in `devel` to how it is in the pull request. For this, you may _locally_ switch to the corresponding branch, replace the `.xml` file with the one from `devel` before the changes, and run the associated scripts. Remember to stash any undesired changes afterwards. +* **Reproducibility:** If there are any added scripts, make sure that if you run them, the model gets updated from how it was in `develop` to how it is in the pull request. For this, you may _locally_ switch to the corresponding branch, replace the `.xml` file with the one from `develop` before the changes, and run the associated scripts. Remember to stash any undesired changes afterwards. * **Style:** Ensure that the changes to the model are compliant with the model's rxn/met/gene naming conventions (when unsure, take a look at a similar field in the model). Also, make sure that scripts have a compliant style, and datasets are straight-forward to understand. -* When commenting in the review, please comply with our [code of conduct](https://github.com/SysBioChalmers/yeast-GEM/blob/master/.github/CODE_OF_CONDUCT.md). +* When commenting in the review, please comply with our [code of conduct](https://github.com/SysBioChalmers/yeast-GEM/blob/main/.github/CODE_OF_CONDUCT.md). * Avoid vague comments and try to be as explicit as possible (e.g.: _"Please include X here"_ instead of _"X could be included here"_). * As much as possible, try to keep the review process in the pull request discussion, and not in separate private emails. @@ -165,16 +165,16 @@ This section is meant for the administrator of this repo. The main duties of the * To keep the repository clean and organized, i.e. avoid redundancy in functions and/or data, and keep coherency in naming of files. * To manage package dependencies and regularly update them. * To help in the reviewing process of external pull requests by assigning reviewers, [labels](https://github.com/SysBioChalmers/yeast-GEM/issues/labels) and [projects](https://github.com/SysBioChalmers/yeast-GEM/projects), if applicable. -* To keep [issues](https://github.com/SysBioChalmers/yeast-GEM/issues) with the proper labels, and to close them once they are fixed in the `master` branch. +* To keep [issues](https://github.com/SysBioChalmers/yeast-GEM/issues) with the proper labels, and to close them once they are fixed in the `main` branch. * In cases of disagreement between contributors, to decide how to resolve the issue. -* To merge open pull requests into `devel` regularly (see [below](#merging-contributions)). +* To merge open pull requests into `develop` regularly (see [below](#merging-contributions)). * To generate new releases of the model regularly (see [below](#releasing-a-new-version)). ### Merging contributions -The following points should be considered when merging branches to `devel`: +The following points should be considered when merging branches to `develop`: * Make sure the branch gets accepted by at least one developer with writing access. * Wait at least a day before merging, to allow other developers to inspect the pull request. -* As soon as the branch is merged, check if `devel` is still possible to merge to `master` (this can be checked [here](https://github.com/SysBioChalmers/yeast-GEM/compare/devel)). If conflicts appear (which should rarely happen and only if the `.xml` file was changed in an unexpected way by a toolbox update), fix the conflict _locally_ as soon as possible in `devel` and then push it (note, **DO NOT** pull any other changes from `master` to `devel`, just the single file that is creating the conflict). +* As soon as the branch is merged, check if `develop` is still possible to merge to `main` (this can be checked [here](https://github.com/SysBioChalmers/yeast-GEM/compare/develop)). If conflicts appear (which should rarely happen and only if the `.xml` file was changed in an unexpected way by a toolbox update), fix the conflict _locally_ as soon as possible in `develop` and then push it (note, **DO NOT** pull any other changes from `main` to `develop`, just the single file that is creating the conflict). ### Managing python dependencies @@ -193,8 +193,8 @@ We use [pip-tools](https://github.com/jazzband/pip-tools) for managing dependenc ### Releasing a new version -* A merge of `devel` with `master` invokes a new release. -* A new release should be made as soon as there is substantial new work in `devel` (as rule of thumb, after around 3 pull request merges). +* A merge of `develop` with `main` invokes a new release. +* A new release should be made as soon as there is substantial new work in `develop` (as rule of thumb, after around 3 pull request merges). yeast-GEM follows [semantic versioning](https://semver.org/), adapted to GEMs: * A `major` release is seldom used and only meant for a new publication. Backwards compatibility should be, ideally, always preserved. @@ -211,14 +211,14 @@ yeast-GEM follows [semantic versioning](https://semver.org/), adapted to GEMs: * Refactoring of code. When releasing, please follow these steps: - 1. Make sure all dependencies in `devel` correspond to the setup from the local computer from which the release will be made. If not, make a single commit in `devel` updating this with a `loadYeastModel`/`saveYeastModel` cycle. - 2. Create a pull request from `devel` to `master`, indicating all new features/fixes/etc. and referencing every previous pull request included (examples [here](https://github.com/SysBioChalmers/yeast-GEM/releases)). Tip: if any [issue](https://github.com/SysBioChalmers/yeast-GEM/issues) gets solved in the release, write in the pull request description "Closes #X", where "X" is the issue number. That way the issue will be automatically closed after merge. + 1. Make sure all dependencies in `develop` correspond to the setup from the local computer from which the release will be made. If not, make a single commit in `develop` updating this with a `loadYeastModel`/`saveYeastModel` cycle. + 2. Create a pull request from `develop` to `main`, indicating all new features/fixes/etc. and referencing every previous pull request included (examples [here](https://github.com/SysBioChalmers/yeast-GEM/releases)). Tip: if any [issue](https://github.com/SysBioChalmers/yeast-GEM/issues) gets solved in the release, write in the pull request description "Closes #X", where "X" is the issue number. That way the issue will be automatically closed after merge. 3. Merge at least a day after (having at least one accepted review). - 4. Switch locally to `master`, pull changes and update `history.md`, by putting at the top the same description of the corresponding PR from step 2. - 5. Bump version with `increaseVersion.m`. **NOTE:** The function will error if unexpected changes are occurring. If this happens, probably step 1 was done incorrectly. To fix it, commit in `devel` any necessary changes and make a new pull request. + 4. Switch locally to `main`, pull changes and update `history.md`, by putting at the top the same description of the corresponding PR from step 2. + 5. Bump version with `increaseVersion.m`. **NOTE:** The function will error if unexpected changes are occurring. If this happens, probably step 1 was done incorrectly. To fix it, commit in `develop` any necessary changes and make a new pull request. 6. Commit changes from steps 4 and 5 with the message `chore: version X.Y.Z`, and push to the remote. 7. Make the new release at GitHub [here](https://github.com/SysBioChalmers/yeast-GEM/releases/new), using the proper tag "vX.Y.Z" and with the same description as the corresponding PR from step 2. - 8. Merge locally `master` into `gh-pages` and push to update the landing page. + 8. Merge locally `main` into `gh-pages` and push to update the landing page. 9. Review the [Zenodo](https://zenodo.org) release: Every new release from Github (step 7) automatically triggers a new release in Zenodo. However, so far it is not possible to fully customize this release, and some manual curation is needed. This includes: * Ensuring the title of the release has the format `SysBioChalmers/yeast-GEM: yeast X.Y.Z`. * Correcting author names to include all commit authors and PR reviewers that contributed to the release. @@ -230,4 +230,4 @@ When releasing, please follow these steps: ## Acknowledgments -These contribution guidelines were written based on the contribution guidelines of [opencobra/cobrapy](https://github.com/opencobra/cobrapy/blob/devel/.github/CONTRIBUTING.rst) and [SysBioChalmers/RAVEN](https://github.com/SysBioChalmers/RAVEN/wiki/DevGuidelines). +These contribution guidelines were written based on the contribution guidelines of [opencobra/cobrapy](https://github.com/opencobra/cobrapy/blob/develop/.github/CONTRIBUTING.rst) and [SysBioChalmers/RAVEN](https://github.com/SysBioChalmers/RAVEN/wiki/DevGuidelines). diff --git a/.github/issue_template.md b/.github/issue_template.md index 0f03b646..937357a4 100644 --- a/.github/issue_template.md +++ b/.github/issue_template.md @@ -7,7 +7,7 @@ #### Current feature/value/output: -*How the reaction/metabolite/gene/simulation actually looks in the `master` branch. PLEASE DELETE THIS LINE.* +*How the reaction/metabolite/gene/simulation actually looks in the `main` branch. PLEASE DELETE THIS LINE.* #### Reproducing these results: @@ -18,6 +18,6 @@ **I hereby confirm that I have:** - [ ] Tested my code with [all requirements](https://github.com/SysBioChalmers/yeast-GEM#required-software---user) for running the model -- [ ] Done this analysis in the `master` branch of the repository +- [ ] Done this analysis in the `main` branch of the repository - [ ] Checked that a similar issue does not exist already - [ ] If needed, asked first in the [Gitter chat room](https://gitter.im/SysBioChalmers/yeast-GEM) about the issue diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 98dc86d5..ebed3584 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -4,5 +4,5 @@ **I hereby confirm that I have:** - [ ] Tested my code with [all requirements](https://github.com/SysBioChalmers/yeast-GEM#required-software---contributor) for running the model -- [ ] Selected `devel` as a target branch (top left drop-down menu) +- [ ] Selected `develop` as a target branch (top left drop-down menu) - [ ] If needed, asked first in the [Gitter chat room](https://gitter.im/SysBioChalmers/yeast-GEM) about this PR diff --git a/.github/workflows/yaml-validation.yml b/.github/workflows/yaml-validation.yml index 4484e331..865723cd 100644 --- a/.github/workflows/yaml-validation.yml +++ b/.github/workflows/yaml-validation.yml @@ -2,9 +2,9 @@ name: YAML validation on: push: - branches: [ devel ] + branches: [ develop ] pull_request: - branches: [ master, devel ] + branches: [ main, develop ] jobs: yaml-validation: diff --git a/README.md b/README.md index 42fa7299..80955bb1 100644 --- a/README.md +++ b/README.md @@ -65,12 +65,12 @@ This is because `results.db` (the database that stores all memote results) is tr * [Gurobi Optimizer](http://www.gurobi.com/registration/download-reg) for any simulations. ### Installation instructions -* For users: Clone it from [`master`](https://github.com/SysBioChalmers/yeast-GEM) in the Github repo, or just download [the latest release](https://github.com/SysBioChalmers/yeast-GEM/releases). If you work in python, please create an environment with all requirements: +* For users: Clone it from [`main`](https://github.com/SysBioChalmers/yeast-GEM) in the Github repo, or just download [the latest release](https://github.com/SysBioChalmers/yeast-GEM/releases). If you work in python, please create an environment with all requirements: ```bash pip install -r requirements/requirements.txt # installs all dependencies touch .env # creates a .env file for locating the root ``` -* For contributors: Fork it to your Github account, and create a new branch from [`devel`](https://github.com/SysBioChalmers/yeast-GEM/tree/devel). +* For contributors: Fork it to your Github account, and create a new branch from [`develop`](https://github.com/SysBioChalmers/yeast-GEM/tree/develop). ## Usage @@ -95,7 +95,7 @@ Make sure to load/save the model with the corresponding wrapper functions! ## Contributing -Contributions are always welcome! Please read the [contributions guideline](https://github.com/SysBioChalmers/yeast-GEM/blob/master/.github/CONTRIBUTING.md) to get started. +Contributions are always welcome! Please read the [contributions guideline](https://github.com/SysBioChalmers/yeast-GEM/blob/main/.github/CONTRIBUTING.md) to get started. ## Contributors diff --git a/code/deprecated/otherChanges/convertYmn2FBC2.m b/code/deprecated/otherChanges/convertYmn2FBC2.m index c486f8bc..5f810c24 100644 --- a/code/deprecated/otherChanges/convertYmn2FBC2.m +++ b/code/deprecated/otherChanges/convertYmn2FBC2.m @@ -17,7 +17,7 @@ % So the last SBML2-compatible COBRA version can be downloaded from % https://github.com/opencobra/cobratoolbox/tree/10f98a0ab834118c6dfb943970c38d68c7e1ae70 % -% The whole idea of the script is to load curated Yeast 7.6 from 'master' +% The whole idea of the script is to load curated Yeast 7.6 from 'main' % branch, then load SBML3 format model from % https://sourceforge.net/projects/yeast/files/, add the missing % annotation to the former model, do some final changes and export it to diff --git a/code/increaseVersion.m b/code/increaseVersion.m index 35b36bdf..dbd4bcf2 100644 --- a/code/increaseVersion.m +++ b/code/increaseVersion.m @@ -1,7 +1,7 @@ function increaseVersion(bumpType) % increaseVersion % Upgrades the model to a new version. Run this function after merging -% changes to the master branch for making a new release. +% changes to the main branch for making a new release. % % bumpType One of the following 3 strings: "major", "minor" or % "patch", indicating the type of increase of version to be @@ -13,10 +13,10 @@ function increaseVersion(bumpType) % Usage: increaseVersion(bumpType) % -%Check if in master: +%Check if in main: currentBranch = git('rev-parse --abbrev-ref HEAD'); -if ~strcmp(currentBranch,'master') - error('ERROR: not in master') +if ~strcmp(currentBranch,'main') + error('ERROR: not in main') end %Bump version number: @@ -77,8 +77,8 @@ function increaseVersion(bumpType) end end if change - error(['Some files are changing from devel. To fix, first update devel, ' ... - 'then merge to master, and try again.']) + error(['Some files are changing from develop. To fix, first update develop, ' ... + 'then merge to main, and try again.']) end %Allow .mat & .xlsx storage: diff --git a/code/missingFields/mapIDsViaMNXref.m b/code/missingFields/mapIDsViaMNXref.m index e0d7228c..6881a940 100644 --- a/code/missingFields/mapIDsViaMNXref.m +++ b/code/missingFields/mapIDsViaMNXref.m @@ -35,9 +35,9 @@ % order to load data structure from RAVEN repository since the data is % stored in raven toolbox. %since right now, MNX reference structure only exist in the RAVEN branch: -%origin/feat/add_MetaNetX, we need to switch devel branch to that branch, load +%origin/feat/add_MetaNetX, we need to switch develop branch to that branch, load %the file and switch back. -%remember when this branch is merged to the master branch, change codes +%remember when this branch is merged to the main branch, change codes %below. IDfile = 'ravenCobraWrapper.m'; currentPath = pwd; @@ -69,8 +69,8 @@ end cd external/MetaNetX/ load('MNXref.mat'); -% swich back to the master branch of RAVEN -git checkout master +% swich back to the main branch of RAVEN +git checkout main cd(currentPath); %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/model/yeast-GEM.xml b/model/yeast-GEM.xml index 85511034..b6295189 100644 --- a/model/yeast-GEM.xml +++ b/model/yeast-GEM.xml @@ -1,6 +1,6 @@ - + diff --git a/model/yeast-GEM.yml b/model/yeast-GEM.yml index 95d6364b..7c7fc626 100644 --- a/model/yeast-GEM.yml +++ b/model/yeast-GEM.yml @@ -1,7 +1,7 @@ --- !!omap - metaData: - id: "yeastGEM_devel" + id: "yeastGEM_develop" name: "The Consensus Genome-Scale Metabolic Model of Yeast" date: "2021-06-15" - metabolites: From 3c59a4001d25fae82ddb44b4e6d7f7937ef8b3f8 Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Thu, 1 Jul 2021 22:20:00 +0200 Subject: [PATCH 54/56] doc: small fix README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 80955bb1..25a252f8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ - @@ -0,0 +1,94 @@ # yeast-GEM: The consensus genome-scale metabolic model of _Saccharomyces cerevisiae_ [![DOI](https://zenodo.org/badge/52777598.svg)](https://zenodo.org/badge/latestdoi/52777598) [![GitHub version](https://badge.fury.io/gh/sysbiochalmers%2Fyeast-gem.svg)](https://badge.fury.io/gh/sysbiochalmers%2Fyeast-gem) [![Join the chat at https://gitter.im/SysBioChalmers/yeast-GEM](https://badges.gitter.im/SysBioChalmers/yeast-GEM.svg)](https://gitter.im/SysBioChalmers/yeast-GEM?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)[![Memote history](https://github.com/SysBioChalmers/yeast-GEM/workflows/Memote%20history/badge.svg)](https://sysbiochalmers.github.io/yeast-GEM/history_report.html) From c897a25eef23ce6a054c5ee4943def7fda6549ee Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Fri, 2 Jul 2021 15:07:54 +0200 Subject: [PATCH 55/56] fix: memote ignore git repo status --- .github/workflows/memote-history.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/memote-history.yml b/.github/workflows/memote-history.yml index 0393fd38..b72d93be 100644 --- a/.github/workflows/memote-history.yml +++ b/.github/workflows/memote-history.yml @@ -41,7 +41,7 @@ jobs: - name: Memote short run run: | - memote run --skip-unchanged --solver-timeout 30 + memote run --ignore-git --skip-unchanged --solver-timeout 30 - name: Compute Memote history on push run: | From c6109ec4b77adc98470f1a40f9549e06780173b3 Mon Sep 17 00:00:00 2001 From: Eduard Kerkhoven Date: Fri, 2 Jul 2021 16:14:26 +0200 Subject: [PATCH 56/56] fix: git user name in workflow --- .github/workflows/memote-history.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/memote-history.yml b/.github/workflows/memote-history.yml index b72d93be..4dc1f5cf 100644 --- a/.github/workflows/memote-history.yml +++ b/.github/workflows/memote-history.yml @@ -41,7 +41,8 @@ jobs: - name: Memote short run run: | - memote run --ignore-git --skip-unchanged --solver-timeout 30 + git config --global user.name "memote-bot" + memote run --skip-unchanged --solver-timeout 30 - name: Compute Memote history on push run: |